diff --git a/.github/workflows/e2etest.yml b/.github/workflows/e2etest.yml index 89a9dadd..6b0186ca 100644 --- a/.github/workflows/e2etest.yml +++ b/.github/workflows/e2etest.yml @@ -13,7 +13,8 @@ jobs: tar -xzf geocache.tgz - name: Run geocoder run: | - poetry run ./generate-geocodes.py --ids_filter test/random200-ids.txt --images_ndjson data/images.ndjson --output_format id-location.txt --geocode > test/random200-geocoded.txt 2> test/random200.logs.txt + PYTHONPATH=. poetry run oldnyc/geocode/geocode.py --ids_filter test/random200-ids.txt --images_ndjson data/images.ndjson --output_format id-location.txt --geocode > >(tee test/random200-geocoded.txt) 2> >(tee test/random200.logs.txt >&2) + # See https://stackoverflow.com/a/692407/388951 for the stdout/stderr redirection - name: Check for diffs run: | git diff --exit-code test/ @@ -25,11 +26,11 @@ jobs: - uses: ./.github/actions/setup - name: Run cropper run: | - poetry run ocr/crop_morphology.py --beta 2 --overwrite test/721675b.jpg - poetry run ocr/crop_morphology.py --beta 2 --overwrite --border_only --output_pattern '%s.border.jpg' test/721675b.jpg + poetry run oldnyc/crop/crop_to_text.py --beta 2 --overwrite test/721675b.jpg + poetry run oldnyc/crop/crop_to_text.py --beta 2 --overwrite --border_only --output_pattern '%s.border.jpg' test/721675b.jpg - name: Run photo detector run: | - poetry run nyc/find_pictures.py test/*f.jpg > test/detected-photos.ndjson + poetry run oldnyc/crop/find_pictures.py test/*f.jpg > test/detected-photos.ndjson - name: Check for diffs run: | git diff --exit-code test/ @@ -45,17 +46,16 @@ jobs: git clone https://github.com/oldnyc/oldnyc.github.io.git - name: Run ingestion run: | - PYTHONPATH=. poetry run data/ingest.py + PYTHONPATH=. poetry run oldnyc/ingest/ingest.py - name: Check for diffs run: | git diff --exit-code data/ - name: Generate static site run: | export PYTHONPATH=. - poetry run ./nyc/crops-to-json.py nyc/crops.txt > /tmp/crops.json - poetry run ./nyc/records_to_photos.py data/images.ndjson /tmp/crops.json data/photos.ndjson - echo '{"fixes": {}}' > ocr/feedback/fixes.json - poetry run ./generate_static_site.py --leave-timestamps-unchanged + poetry run oldnyc/crop/records_to_photos.py data/images.ndjson data/crops.ndjson data/photos.ndjson + echo '{"fixes": {}}' > data/feedback/fixes.json + poetry run oldnyc/site/generate_static_site.py --leave-timestamps-unchanged - name: Check for diffs run: | cd ../oldnyc.github.io diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 0cfcad6a..e20f7a62 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -8,7 +8,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup - - run: poetry run pytest + - run: PYTHONPATH=. poetry run pytest - run: poetry run ruff check - run: poetry run ruff format --check - run: poetry run pyright diff --git a/.vscode/settings.json b/.vscode/settings.json index 3739ed4b..cedd2e91 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,5 +11,8 @@ "source.organizeImports.ruff": "always", }, // "editor.wordBasedSuggestions": "off" + }, + "markdownlint.config": { + "code-block-style": false } } \ No newline at end of file diff --git a/README.md b/README.md index c80f751e..f1d12727 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,10 @@ To get going on development: ```bash git clone git://github.com/danvk/oldnyc.git cd oldnyc -virtualenv env -source env/bin/activate -pip install -r requirements.txt +poetry install ``` -See [nyc/howto.md](nyc/howto.md) for more details on how to perform specific tasks. +See [howto.md](howto.md) for more details on how to perform specific tasks. If you're interested in building your own "Old" site using this code, check out [this great writeup][3] on Old Ravenna. diff --git a/analysis/__init__.py b/analysis/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/analysis/rotations/NOTES b/analysis/rotations/NOTES deleted file mode 100644 index 4b5e9839..00000000 --- a/analysis/rotations/NOTES +++ /dev/null @@ -1,19 +0,0 @@ -715426f-a, 720091f-a - --> one user rotates it through a full 360° - -708035f-a - --> two users rotate it through 360° - -714080f-c - --> one rotation, correct - -709406f-b - --> tons of rotation! - Seven IPs all rotated the photo to 270° - there are two IPs that did it twice, but in two bursts - -720441f-b - --> a ton of users rotate it 90° - nobody rotates it any other number of degrees - -There are 1652 photos with rotation data from more than one IP. diff --git a/coders/__init__.py b/coders/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/data/README.md b/data/README.md index 7e7847ce..1fa5183a 100644 --- a/data/README.md +++ b/data/README.md @@ -1,19 +1,20 @@ -# ETL (Extract, Transform, Load) +# OldNYC Ddata -Goal is to pull together disparate data sources into a single `images.ndjson` file. +All data comes together into a single `images.ndjson` file (see oldnyc/ingest). -Format should be similar to the one used in [OldTO]. +Input data (sources of truth) live in `data/originals`. Files in the top-level +`data` directory are derived from those and other sources. Inputs: -- `nyc/milstein.csv`: the vintage 2013 CSV file from the NYPL that started it all +- `data/originals/milstein.csv`: the vintage 2013 CSV file from the NYPL that started it all - Contains image ID (typically starts with "7" and ends with "f") - Contains title, alt_title - Contains dates - Contains creator - Contains source (corresponds to subcollection) - Contains Address and Full Address (unclear provenance) -- `Milstein_data_for_DV.csv`: the 2024 update to the CSV +- `data/originals/Milstein_data_for_DV.csv`: the 2024 update to the CSV - Contains image ID (with a capital "F" this time) - Contains title (which may have changed since 2013) - Contains two UUIDs, which can be used to construct a Digital Collections (DC) URL @@ -22,3 +23,6 @@ Inputs: - `data.json`: contains OCR text from 2015 (Ocropy) plus manual fixes - `gpt-text.json`: contains OCR text from 2024 via OpenAI +TODO: + +- Document provenance for all files. diff --git a/data/__init__.py b/data/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/nyc/crops.txt b/data/crops.ndjson similarity index 100% rename from nyc/crops.txt rename to data/crops.ndjson diff --git a/feedback/README.md b/data/feedback/README.md similarity index 71% rename from feedback/README.md rename to data/feedback/README.md index 3683ca8a..392782cb 100644 --- a/feedback/README.md +++ b/data/feedback/README.md @@ -2,8 +2,8 @@ OldNYC incorporates user feedback in a variety of ways, most notably: - * Detection of rotated images - * OCR correction +- Detection of rotated images +- OCR correction This document describes how to pull in new user feedback and push the changes to the site. @@ -15,8 +15,8 @@ side-by-side on the file system. Usage: - curl "https://brilliant-heat-1088.firebaseio.com/.json?print=pretty&auth=..." -o feedback/user-feedback.json - cp feedback/user-feedback.json feedback/user-feedback.$(date +%Y-%m-%dT%H:%M:%S).json + curl "https://brilliant-heat-1088.firebaseio.com/.json?print=pretty&auth=..." -o data/feedback/user-feedback.json + cp data/feedback/user-feedback.json data/feedback/user-feedback.$(date +%Y-%m-%dT%H:%M:%S).json This will update `feedback/user-feedback.json`. @@ -24,10 +24,9 @@ This will update `feedback/user-feedback.json`. Run: - cd analysis/rotations - ./extract_rotations.py + poetry run oldnyc/feedback/extract_rotations.py -This will update `analysis/rotations/corrections.json` +This will update `data/feedback/corrections.json` Commit all the rotations and you'll be able to review them via `git webdiff` when you run `generate_rotated_images.py` in the oldnyc.github.io repo. @@ -37,7 +36,7 @@ To review the changes before committing, use this [localturk] template: ```bash (echo 'photo_id,rotation'; git diff rotations.json | grep '^\+' | grep -v 'last_date' | sed 1d | sed 's/\+ *"//' | sed 's/,//' | sed 's/": /,/') > /tmp/new-rotations.txt -localturk template.html /tmp/new-rotations.txt checked-rotations.txt +localturk oldnyc/feedback/rotation-review.html /tmp/new-rotations.txt checked-rotations.txt ``` [localturk]: https://github.com/danvk/localturk @@ -46,16 +45,15 @@ localturk template.html /tmp/new-rotations.txt checked-rotations.txt Run: - cd ocr/feedback - ./extract_user_ocr.py - ./ocr_corrector.py + poetry run oldnyc/feedback/extract_user_ocr.py + poetry run oldnyc/feedback/ocr_corrector.py -This will update `ocr/feedback/{corrections,fixes}.json`. +This will update `data/feedback/{corrections,fixes}.json`. `corrections.json` is an exhaustive list of new OCR corrections, while `fixes.json` includes just one corrected version of the text for each image. -To manually review updates, open review/index.html in a browser. +To manually review updates, open `data/feedback/review/index.html` in a browser. To reject some changes, re-run `ocr_corrector.py` as it suggests. @@ -63,7 +61,7 @@ To reject some changes, re-run `ocr_corrector.py` as it suggests. Run: - ./generate_static_site.py + poetry run oldnyc/site/generate_static_site.py cd ../oldnyc.github.io git diff diff --git a/data/feedback/review/changes.js b/data/feedback/review/changes.js new file mode 100644 index 00000000..2c291c55 --- /dev/null +++ b/data/feedback/review/changes.js @@ -0,0 +1,2342 @@ +var changes = [ + { + "photo_id": "705161f-a", + "before": "Joralemon Street, at the SE corner of Clinton Street, showing the Haslett Garden. In the background, is St. Ann's Hall, a part of the St. Ann's P.E. Church. 1928. Eugene L. Armbruster Collection.", + "after": "(rotated)", + "metadata": { + "cookie": "eval", + "len_base": 197, + "len_exp": 9, + "distance": 188, + "score": 0.045685279187817285, + "back_id": "705161b", + "record": { + "id": "705161f", + "photo_url": "http://images.nypl.org/index.php?id=705161f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?705161f", + "location": "Joralemon Street & Clinton Street, Brooklyn, NY", + "date": "1928", + "title": "Brooklyn: Joralemon Street - Clinton Street", + "alt_title": "", + "back_id": "705161b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "1928.\nS. 6th St., P. H.'s Hall, a part of the\nHeights Garden. In the background, the\ncorner of Claremont Street, showing the\nJotawam Street, at the S. 6th St. corner.\nEugene L. Armbruster. Collection.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "721551f-a", + "before": "379 Madison Street, north side and northwest corner of Jackson Street, showing P.S. 12.\nBoard of Education, N.Y.C.\n\n1920\nNeg: 2870\n", + "after": "(rotated)", + "metadata": { + "cookie": "eval", + "len_base": 132, + "len_exp": 9, + "distance": 96, + "score": 0.2727272727272727, + "back_id": "721551b", + "record": { + "id": "721551f", + "photo_url": "http://images.nypl.org/index.php?id=721551f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?721551f", + "location": "Madison Street & Jackson Street, Manhattan, NY", + "date": "", + "title": "Manhattan: Madison Street - Jackson Street", + "alt_title": "", + "back_id": "721551b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "379 Madison Street, north side and north west corner of Jackson Street, showing P.S. 12.\n1920.\nBoard of Education, N.Y.C.\nCREDIT LINE IMPERATIVE.\nNEG: 2870" + } + }, + { + "photo_id": "728972f-b", + "before": "(1)\nHunter Avenue, at Hylan Boulevard.\nJuly 1, 1932.\nP. L. Sperr\n(2)\nThe same, at a later date.\nMay 26, 1935.\nP. L. Sperr\n", + "after": "(1)\nHunter Avenue, at Hylan Boulevard.\nP. L. Sperr\n\n(2)\nThe same, at a later date.\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 122, + "len_exp": 94, + "distance": 28, + "score": 0.7704918032786885, + "back_id": "728972b", + "record": { + "id": "728972f", + "photo_url": "http://images.nypl.org/index.php?id=728972f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?728972f", + "location": "Hunter Avenue & Hylan Boulevard, Staten Island, NY", + "date": "1932; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1935", + "title": "Richmond: Hunter Avenue - Hylan Boulevard", + "alt_title": "", + "back_id": "728972b", + "borough": "Staten Island", + "outside_nyc": false + }, + "raw_text": "(1)\nHunter Avenue, at Hylan Boulevard.\nP. L. Sperr\nNO REPRODUCTIONS\n\n(2)\nThe same, at a later date.\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "707247f-b", + "before": "Wallabout Street, west side, north of Harrison Ave., to Throop Ave. In the center of the view (wagon in front thereof) is the factory\nof S. Kolners and Sons, manufacturer of wagons.\nOctober 1928.\nEugene L. Armbruster Collection.\n\nView 2 Wallabout St east from, Harrison Ave. Brooklyn\nP.L. Sperr photographer Sept. 25, 1941\nNeg. No. A-971\n", + "after": "Wallabout Street, west side, north of Harrison Ave., to Throop Ave. In the center of the view (wagon in front thereof) is the factory of S. Kolners and Sons, manufacturer of wagons.\n\nEugene L. Armbruster Collection.\n\nview 2: Wallabout St. east from Harrison Ave, Brooklyn.\nP.L. Sperr, photographer.\nSept. 25, 1941.\nNeg. No. A-971", + "metadata": { + "cookie": "eval", + "len_base": 339, + "len_exp": 329, + "distance": 23, + "score": 0.9321533923303835, + "back_id": "707247b", + "record": { + "id": "707247f", + "photo_url": "http://images.nypl.org/index.php?id=707247f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?707247f", + "location": "Wallabout St. & Harrison Ave., Brooklyn, NY", + "date": "1928", + "title": "Brooklyn: Wallabout St. - Harrison Ave.", + "alt_title": "", + "back_id": "707247b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "Wallabout Street, west side, north of Harrison Ave., to Throop Ave. In the center of the view (wagon in front thereof) is the factory of S. Kolners and Sons, manufacturer of wagons.\n\nEugene L. Armbruster Collection.\nMAY BE REPRODUCED.\n\nview 2: Wallabout St. east from Harrison Ave, Brooklyn.\nP.L. Sperr, photographer.\nSept. 25, 1941.\nNeg. No. A-971" + } + }, + { + "photo_id": "730722f", + "before": "Brooklyn Bridge:\nA view eastward towards Brooklyn from atop the Bridge along the pedestrian walk. View No. 1 is an enlargement made by the photographer; No. 2 being a copy of the original negative by the N. Y. P. L.\n\nAbout 1936\nGift of Dr. Michael Wishengrad A.R.P.S.\n\n", + "after": "Brooklyn Bridge: A view eastward towards Brooklyn from atop the Bridge along the pedestrian walk. View No. 1 is an enlargement made by the photographer; No. 2 being a copy of the original negative by the N. Y. P. L.\n\nAbout 1936\n\nGift of Dr. Michael Wishengrad A.R.P.S.\nnot a dry mount", + "metadata": { + "cookie": "eval", + "len_base": 269, + "len_exp": 284, + "distance": 16, + "score": 0.9405204460966543, + "back_id": "730722b", + "record": { + "id": "730722f", + "photo_url": "http://images.nypl.org/index.php?id=730722f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?730722f", + "location": "Brooklyn Bridge, New York, N.Y.", + "date": "1936", + "title": "Bridges - Brooklyn Bridge - [Pedestrian walk.]", + "alt_title": "", + "back_id": "730722b", + "borough": null, + "outside_nyc": false + }, + "raw_text": "Brooklyn Bridge: A view eastward towards Brooklyn from atop the Bridge along the pedestrian walk. View No. 1 is an enlargement made by the photographer; No. 2 being a copy of the original negative by the N. Y. P. L.\n\nAbout 1936\n\nGift of Dr. Michael Wishengrad A.R.P.S.\nCREDIT LINE IMPERATIVE ON ALL REPRODUCTIONS\nnot a dry mount" + } + }, + { + "photo_id": "723808f-a", + "before": "185 Wadsworth Avenue, east side between 182nd and 183rd Streets, showing P.S. 132.\nBoard of Education, N.Y.C.\n1920.\n", + "after": "185 Wadsworth Avenue, east side between 182nd and 183rd Streets, showing P.S. 132.\n\nBoard of Education, N.Y.C.", + "metadata": { + "cookie": "eval", + "len_base": 116, + "len_exp": 110, + "distance": 6, + "score": 0.9482758620689655, + "back_id": "723808b", + "record": { + "id": "723808f", + "photo_url": "http://images.nypl.org/index.php?id=723808f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?723808f", + "location": "Wadsworth Avenue & 182nd Street, Manhattan, NY", + "date": "1920", + "title": "Manhattan: Wadsworth Avenue - 182nd Street", + "alt_title": "", + "back_id": "723808b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "185 Wadsworth Avenue, east side between 182nd and 183rd Streets, showing P.S. 132.\n\nBoard of Education, N.Y.C.\nCREDIT LINE IMPERATIVE. 1920." + } + }, + { + "photo_id": "712758f-c", + "before": "(1)\n41st Street, west from and including Tenth Avenue, showing the spire of St. Raphael's Roman Catholic Church on the south side.\nMay 27, 1930.\nP. L. Sperr.\n\n(2)\nThe same slightly westward.\nMay 21, 1936.\nP. L. Sperr.\n\n(3)\nA view further westward.\nMay 27, 1935.\nP. L. Sperr.\n", + "after": "41st Street, west from and including Tenth Avenue, showing the spire of St. Raphael's Roman Catholic Church on the south side.\n\nMay 27, 1930.\n\nP. L. Sperr.\n\nThe same slightly westward.\n\nMay 21, 1936.\n\nP. L. Sperr.\n\nA view further westward.\n\nMay 27, 1935.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 275, + "len_exp": 268, + "distance": 12, + "score": 0.9563636363636363, + "back_id": "712758b", + "record": { + "id": "712758f", + "photo_url": "http://images.nypl.org/index.php?id=712758f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?712758f", + "location": "41st Street & 10th Avenue, Manhattan, NY", + "date": "1930; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1936", + "title": "Manhattan: 41st Street - 10th Avenue", + "alt_title": "", + "back_id": "712758b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "41st Street, west from and including Tenth Avenue, showing the spire of St. Raphael's Roman Catholic Church on the south side.\n\nMay 27, 1930.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\nThe same slightly westward.\n\nMay 21, 1936.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\nA view further westward.\n\nMay 27, 1935.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "713866f", + "before": "E.57th Street, east from and including Fifth Avenue. At the right is the mansion of Collis P. Huntington.\n1913.\n\nCorner house on left is the mansion of Mrs. Mary Mason Jones. After her death it was owned by Mrs. Paran Stevens and later by Mrs. Herman Oelrichs.\n\nFor additional information regarding this property (n.e. corner of 57th and fifth avenue) see \"The New York Times\" Dec. 18, 1941. p. 52\n", + "after": "E.57th Street, east from and including Fifth Avenue. At the right is the mansion of Collis P. Huntington. 1913.\n\n\nCorner house on left is the mansion of Mrs. Mary Mason Jones. After her death it was owned by Mrs. Parna Stevens and later by Mrs. Herman Oelrichs.\n\nFor additional information regarding this property (N.E. corner 57th St. & Fifth Avenue) see \"The New York Times,\" Dec. 18, 1941, p. 5. ", + "metadata": { + "cookie": "eval", + "len_base": 398, + "len_exp": 399, + "distance": 17, + "score": 0.957286432160804, + "back_id": "713866b", + "record": { + "id": "713866f", + "photo_url": "http://images.nypl.org/index.php?id=713866f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?713866f", + "location": "57th Street (East) & 5th Avenue, Manhattan, NY", + "date": "", + "title": "Manhattan: 57th Street (East) - 5th Avenue", + "alt_title": "", + "back_id": "713866b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "E.57th Street, east from and including Fifth Avenue. At the right is the mansion of Collis P. Huntington. 1913.\n\nMAY BE REPRODUCED.\n\nCorner house on left is the mansion of Mrs. Mary Mason Jones. After her death it was owned by Mrs. Parna Stevens and later by Mrs. Herman Oelrichs.\n\nFor additional information regarding this property (N.E. corner 57th St. & Fifth Avenue) see \"The New York Times,\" Dec. 18, 1941, p. 5." + } + }, + { + "photo_id": "723164f-c", + "before": "(1)\nSt. Nicholas Avenue, (formerly Eleventh Avenue), north from Fairview Avenue. At this point the Avenue winds down the hill from Fort George, coming to an end at Dyckman Street and Nagle Avenue, Inwood. The apartment buildings shown to the right are rather new.\nOctober 6, 1927.\nP. L. Sperr.\n\n(2)\nThe same, at a later date. From this point of vantage is seen a magnificent panoramic view of the northernmost sector of Manhattan, north from Dyckman Street extending to Spuyten Duyvil. In the distant background are visible the Palisades of New Jersey. The buildings shown (right foreground) are Nos. 1658-1670 St. Nicholas Ave. (the 2-story building of the Central Shirt Laundry) and 672, and 682 Fort George Ave. (the two apartment houses).\nApril 20, 1937.\n\nP. L. Sperr.\n(3)\nThe same, from a point slightly northward. Note (centre of view) a portion of the Interborough Rapid Transit subway, running at this point on an elevated structure on Nagle Ave.\nP. L. Sperr.\nApril 20, 1937.\n\n", + "after": "(1)\nSt. Nicholas Avenue, (Formerly Eleventh Avenue), north from Fairview Avenue. At this point the Avenue winds down the hill from Fort George, coming to an end at Dyckman Street and Nagle Avenue, Inwood. The apartment buildings shown to the right are rather new.\nOctober 6, 1927.\n\nP. L. Sperr.\n\n(2)\nThe same, at a later date. From this point of vantage is seen a magnificent panoramic view of the northernmost sector of Manhattan, north from Dyckman Street extending to Spuyten Duyvil. In the distant background are visible the Palisades of New Jersey. The buildings shown (right foreground) are Nos. 1658-1670 St. Nicholas Ave. (the 2-story building of the Central Shirt Laundry and 672, and 682 Fort George Ave. (the two apartment houses).\n\nApril 20, 1937.\n\nP. L. Sperr.\nNeg. # 3853 Print For Sale.\n\n(3)\nThe same, from a point slightly northward. Note (centre of view) a portion of the Interborough Rapid Transit subway, running at this point on an elevated structure on Nagle Ave.\n\nP. L. Sperr.\n\nApril 20, 1937.", + "metadata": { + "cookie": "eval", + "len_base": 985, + "len_exp": 1015, + "distance": 30, + "score": 0.9695431472081218, + "back_id": "723164b", + "record": { + "id": "723164f", + "photo_url": "http://images.nypl.org/index.php?id=723164f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?723164f", + "location": "St. Nicholas Place & 150th Street (West), Manhattan, NY", + "date": "1927; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1937", + "title": "Manhattan: St. Nicholas Place - 150th Street (West)", + "alt_title": "", + "back_id": "723164b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1)\nSt. Nicholas Avenue, (Formerly Eleventh Avenue), north from Fairview Avenue. At this point the Avenue winds down the hill from Fort George, coming to an end at Dyckman Street and Nagle Avenue, Inwood. The apartment buildings shown to the right are rather new.\nOctober 6, 1927.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2)\nThe same, at a later date. From this point of vantage is seen a magnificent panoramic view of the northernmost sector of Manhattan, north from Dyckman Street extending to Spuyten Duyvil. In the distant background are visible the Palisades of New Jersey. The buildings shown (right foreground) are Nos. 1658-1670 St. Nicholas Ave. (the 2-story building of the Central Shirt Laundry and 672, and 682 Fort George Ave. (the two apartment houses).\n\nApril 20, 1937.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\nNeg. # 3853 Print For Sale.\n\n(3)\nThe same, from a point slightly northward. Note (centre of view) a portion of the Interborough Rapid Transit subway, running at this point on an elevated structure on Nagle Ave.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\nApril 20, 1937." + } + }, + { + "photo_id": "708448f-b", + "before": "View 1;\nFifth Avenue north east corner 27th Street, looking\nnorthwards.\nJanuary 29, 1928.\nView 2;\nFifth Avenue showing Flatiron Building at intersection.\nP.L.Speer.\n1904", + "after": "View 1;\nFifth Avenue north east corner 27th Street, looking northwards.\n\nJanuary 29, 1928.\n\nView 2;\nFifth Avenue sho wing Flat iron Building at intersection.\n\nP.L.Speer.\n1904.", + "metadata": { + "cookie": "eval", + "len_base": 169, + "len_exp": 175, + "distance": 3, + "score": 0.9822485207100592, + "back_id": "708448b", + "record": { + "id": "708448f", + "photo_url": "http://images.nypl.org/index.php?id=708448f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?708448f", + "location": "5th Avenue & 27th Street, Manhattan, NY", + "date": "1904; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1928", + "title": "Manhattan: 5th Avenue - 27th Street", + "alt_title": "", + "back_id": "708448b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "View 1;\nFifth Avenue north east corner 27th Street, looking northwards.\n\nJanuary 29, 1928.\n\nView 2;\nFifth Avenue sho wing Flat iron Building at intersection.\n\nP.L.Speer.\nNO REPRODUCTION.\n1904." + } + }, + { + "photo_id": "707513f-a", + "before": "150 First Avenue, northeast corner and East 9th Street, showing P.S. 122.\n\nBoard of Education, N.Y.C.\n1920\n\nNEG 2864\n", + "after": "150 First Avenue, northeast corner and East 9th Street, showing P.S. 122.\n\nBoard of Education, N.Y.C.\n\n1920\n\nNEG : 2864", + "metadata": { + "cookie": "eval", + "len_base": 117, + "len_exp": 119, + "distance": 2, + "score": 0.9829059829059829, + "back_id": "707513b", + "record": { + "id": "707513f", + "photo_url": "http://images.nypl.org/index.php?id=707513f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?707513f", + "location": "1st Ave. & 9th St. E., Manhattan, NY", + "date": "1920", + "title": "Manhattan: 1st Ave. - 9th St. E.", + "alt_title": "", + "back_id": "707513b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "150 First Avenue, northeast corner and East 9th Street, showing P.S. 122.\n\nBoard of Education, N.Y.C.\nCREDIT LINE IMPERATIVE.\n\n1920\n\nNEG : 2864" + } + }, + { + "photo_id": "708630f-a", + "before": "Ovington's S.E. corner Fifth Avenue and 39th Street, across clearing from demolition of Union League Club.\nJune 30, 1932.\nP.L.Sperr,Photographer.\n", + "after": "Ovington's S.E. corner Fifth Avenue and 39th Street, across clearing from demolition of Union League Club.\nJune 30, 1932.\nP.L. Sperr, Photographer.", + "metadata": { + "cookie": "eval", + "len_base": 146, + "len_exp": 147, + "distance": 2, + "score": 0.9863013698630136, + "back_id": "708630b", + "record": { + "id": "708630f", + "photo_url": "http://images.nypl.org/index.php?id=708630f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?708630f", + "location": "5th Avenue & 39th Street, Manhattan, NY", + "date": "1932", + "title": "Manhattan: 5th Avenue - 39th Street", + "alt_title": "", + "back_id": "708630b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Ovington's S.E. corner Fifth Avenue and 39th Street, across clearing from demolition of Union League Club.\nJune 30, 1932.\nP.L. Sperr, Photographer.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "710544f-a", + "before": "Tenth Avenue, east side, at 37th Street.\nSeptember 1, 1934\nP. L. Sperr.\n\n", + "after": "Tenth Avenue, east side, at 37th Street.\nSeptember 1, 1934.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 73, + "len_exp": 73, + "distance": 1, + "score": 0.9863013698630136, + "back_id": "710544b", + "record": { + "id": "710544f", + "photo_url": "http://images.nypl.org/index.php?id=710544f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?710544f", + "location": "10th Avenue & 37th Street, Manhattan, NY", + "date": "1934", + "title": "Manhattan: 10th Avenue - 37th Street", + "alt_title": "", + "back_id": "710544b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Tenth Avenue, east side, at 37th Street.\nSeptember 1, 1934.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "717896f-a", + "before": "Rear of Public Library,Fifth Avenue, west side, from 40th to 42nd Streets, from Bryant Park.\nTall buildings, left to right, are: Chrysler, Lincoln, Leftcourt Colonial, and 10 E. 40th Street.\nAbout 1930\nEwing Galloway, Photographer.\n", + "after": "Rear of Public Library, Fifth Avenue, west side, from 40th to 42nd Streets, from Bryant Park. Tall buildings, left to right, are: Chrysler, Lincoln, Lefcourt Colonial, and 10 E. 40th Street. About 1930.\n\nEwing Galloway, Photographer.", + "metadata": { + "cookie": "eval", + "len_base": 232, + "len_exp": 233, + "distance": 3, + "score": 0.9870689655172413, + "back_id": "717896b", + "record": { + "id": "717896f", + "photo_url": "http://images.nypl.org/index.php?id=717896f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?717896f", + "location": "5th Avenue & 40th Street, Manhattan, NY", + "date": "1930", + "title": "Manhattan: 5th Avenue - 40th Street", + "alt_title": "", + "back_id": "717896b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Rear of Public Library, Fifth Avenue, west side, from 40th to 42nd Streets, from Bryant Park.\nTall buildings, left to right, are: Chrysler, Lincoln, Lefcourt Colonial, and 10 E. 40th Street. About 1930.\n\nEwing Galloway, Photographer.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "714543f-a", + "before": "327 West 77th Street,north side, between Riverside Drive\nand West End Avenue.\nAbout 1912.\n", + "after": "327 West 77th Street, north side, between Riverside Drive and West End Avenue.\nAbout 1912.", + "metadata": { + "cookie": "eval", + "len_base": 90, + "len_exp": 90, + "distance": 1, + "score": 0.9888888888888889, + "back_id": "714543b", + "record": { + "id": "714543f", + "photo_url": "http://images.nypl.org/index.php?id=714543f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?714543f", + "location": "77th Street (West) & Riverside Drive, Manhattan, NY", + "date": "1912?", + "title": "Manhattan: 77th Street (West) - Riverside Drive", + "alt_title": "", + "back_id": "714543b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "327 West 77th Street, north side, between Riverside Drive and West End Avenue.\nAbout 1912.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "719213f-b", + "before": "Corlears Hook Park: The westerly portion of the park.\nP.L. Sperr\nSeptember, 1939\nViews 1,2", + "after": "Corlears Hook Park: The westerly portion of the park.\n\nP. L. Sperr\nSeptember, 1939\nViews 1,2", + "metadata": { + "cookie": "eval", + "len_base": 90, + "len_exp": 92, + "distance": 1, + "score": 0.9888888888888889, + "back_id": "719213b", + "record": { + "id": "719213f", + "photo_url": "http://images.nypl.org/index.php?id=719213f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?719213f", + "location": "Corlears Hook Park., Manhattan, NY", + "date": "1939", + "title": "Manhattan: Corlears Hook Park.", + "alt_title": "", + "back_id": "719213b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Corlears Hook Park: The westerly portion of the park.\n\nP. L. Sperr\nSeptember, 1939\nViews 1,2\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "721933f-a", + "before": "Norfolk Street, east side, north from but not including Grand Street.\nMay 5, 1934.\nP. L. Sperr.\n", + "after": "Norfolk Street, east side, north from but not including Grand Street.\n\nMay 8, 1934.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 96, + "len_exp": 97, + "distance": 1, + "score": 0.9895833333333334, + "back_id": "721933b", + "record": { + "id": "721933f", + "photo_url": "http://images.nypl.org/index.php?id=721933f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?721933f", + "location": "Norfolk Street & Grand Street, Manhattan, NY", + "date": "1934", + "title": "Manhattan: Norfolk Street - Grand Street", + "alt_title": "", + "back_id": "721933b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Norfolk Street, east side, north from but not including Grand Street.\n\nMay 8, 1934.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "732351f-a", + "before": "Shoe string and laces vendor, plying his trade at First Ave., and 111th Street.\nJuly 19, 1935.\nP. L. Sperr.\n", + "after": "Shoe string and laces vendor, plying his trade at First Ave., and 11th Street.\n\nJuly 19, 1935.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 108, + "len_exp": 108, + "distance": 1, + "score": 0.9907407407407407, + "back_id": "732351b", + "record": { + "id": "732351f", + "photo_url": "http://images.nypl.org/index.php?id=732351f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?732351f", + "location": "1st Avenue and 111th Street, Manhattan, N.Y.", + "date": "1935", + "title": "Occupations - Peddlers - Clothing - Dry goods - Notions.", + "alt_title": "[Manhattan: 1st Avenue - 111th Street.]", + "back_id": "732351b", + "borough": null, + "outside_nyc": false + }, + "raw_text": "Shoe string and laces vendor, plying his trade at First Ave., and 11th Street.\n\nJuly 19, 1935.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "713547f-c", + "before": "(1)\nWest 51st Street, south side, from, but not including Sixth Ave. Shown thru clearance at the S.W. corner of Fifth Ave., is St. Patrick's Cathedral. Across the background, appears the General Electric Building, the Waldorf-Astoria Hotel and 444 Madison Ave.\nNovember 2, 1932.\nP. L. Sperr.\n(2)\nThe same, after clearance of the aforementioned corner.\nNovember 13, 1932.\nP. L. Sperr.\n(3)\nThe same as No. 2.\nNovember 13, 1932.\nP. L. Sperr.", + "after": "(1) West 51st Street, south side f.from, but not including Sixth Ave. Shown thru clearance at the S.W. corner of Fifth Ave., is St. Patrick's Cathedral. Across the background, appears the General Electric Building, the Waldorf-Astoria Hotel and 444 Madison Ave.\n\nNovember 2, 1932.\n\nP. L. Sperr.\n\n(2) The same, after clearance of the afore mentioned corner.\n\nNovember 13, 1932.\n\nP. L. Sperr.\n\n(3) The same as No. 2.\n\nNovember 13, 1932.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 438, + "len_exp": 448, + "distance": 4, + "score": 0.9908675799086758, + "back_id": "713547b", + "record": { + "id": "713547f", + "photo_url": "http://images.nypl.org/index.php?id=713547f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?713547f", + "location": "51st Street (West) & 6th Avenue, Manhattan, NY", + "date": "1932", + "title": "Manhattan: 51st Street (West) - 6th Avenue", + "alt_title": "", + "back_id": "713547b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1) West 51st Street, south side f.from, but not including Sixth Ave. Shown thru clearance at the S.W. corner of Fifth Ave., is St. Patrick's Cathedral. Across the background, appears the General Electric Building, the Waldorf-Astoria Hotel and 444 Madison Ave.\n\nNovember 2, 1932.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2) The same, after clearance of the afore mentioned corner.\n\nNovember 13, 1932.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(3) The same as No. 2.\n\nNovember 13, 1932.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "717771f-a", + "before": "Broadway, 173rd to 174th Streets, west side. (Before reconstruction).\nPresident Borough of Manhatten.\nMarch 20, 1919.\n", + "after": "Broadway, 173rd to 174th Streets, west side. (Before reconstruction).\nPresident Borough of Manhattan.\nMarch 20, 1919.", + "metadata": { + "cookie": "eval", + "len_base": 118, + "len_exp": 117, + "distance": 1, + "score": 0.9915254237288136, + "back_id": "717771b", + "record": { + "id": "717771f", + "photo_url": "http://images.nypl.org/index.php?id=717771f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?717771f", + "location": "Broadway & 173rd Street, Manhattan, NY", + "date": "1919", + "title": "Manhattan: Broadway - 173rd Street", + "alt_title": "", + "back_id": "717771b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Broadway, 173rd to 174th Streets, west side. (Before reconstruction).\nPresident Borough of Manhattan.\nC EDIT LINE IMPERATIVE.\nMarch 20, 1919." + } + }, + { + "photo_id": "700327f-a", + "before": "E. 211th Street, at the S.E. corner of Putnam Place. A 1-story florist's shack occupies the site.\nJune 16, 1938.\nP. L. Sperr.\n", + "after": "E. 21th Street, at the S.E. corner of Putnam Place. A 1-story florist's shack occupies the site.\n\nJune 16, 1938.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 126, + "len_exp": 126, + "distance": 1, + "score": 0.9920634920634921, + "back_id": "700327b", + "record": { + "id": "700327f", + "photo_url": "http://images.nypl.org/index.php?id=700327f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?700327f", + "location": "211th Street (East) & Putnam Place, Bronx, NY", + "date": "1938", + "title": "Bronx: 211th Street (East) - Putnam Place", + "alt_title": "", + "back_id": "700327b", + "borough": "Bronx", + "outside_nyc": false + }, + "raw_text": "E. 21th Street, at the S.E. corner of Putnam Place. A 1-story florist's shack occupies the site.\n\nJune 16, 1938.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "729359f-a", + "before": "439 Richmond Road, north side, between Aultman Avenue and Ascot Avenue. Note the shoemakers sign in front of the house.\nMay 25, 1929\nP. L. Sperr\n", + "after": "439 Richmond Road, north side, between Aultman Avenue and Ascot Avenue. Note the shoemaker's sign in front of the house.\n\nMay 25, 1929\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 145, + "len_exp": 147, + "distance": 1, + "score": 0.993103448275862, + "back_id": "729359b", + "record": { + "id": "729359f", + "photo_url": "http://images.nypl.org/index.php?id=729359f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?729359f", + "location": "Richmond Road & Aultman Avenue, Staten Island, NY", + "date": "", + "title": "Richmond: Richmond Road - Aultman Avenue", + "alt_title": "", + "back_id": "729359b", + "borough": "Staten Island", + "outside_nyc": false + }, + "raw_text": "439 Richmond Road, north side, between Aultman Avenue and Ascot Avenue. Note the shoemaker's sign in front of the house.\n\nMay 25, 1929\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "707116f-a", + "before": "Avenue U, south side, from East 63rd to East 64th Streets, showing Public School No. 236.\nBoard of Education of the City of New York\nEarly 1930's.\n", + "after": "Avenue U, south side, from East 63rd to East 64th Streets, showing Public School No. 236.\n\nBoard of Education of the City of New York Early 1930's", + "metadata": { + "cookie": "eval", + "len_base": 147, + "len_exp": 147, + "distance": 1, + "score": 0.9931972789115646, + "back_id": "707116b", + "record": { + "id": "707116f", + "photo_url": "http://images.nypl.org/index.php?id=707116f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?707116f", + "location": "Ave. U & 63rd St. E., Brooklyn, NY", + "date": "1930?", + "title": "Brooklyn: Ave. U - 63rd St. E.", + "alt_title": "", + "back_id": "707116b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "Avenue U, south side, from East 63rd to East 64th Streets, showing Public School No. 236.\n\nBoard of Education of the City of New York Early 1930's\nCR\u012aDIT LINE IMPERATIVE" + } + }, + { + "photo_id": "712830f-b", + "before": "(1)\n42nd Street, looking southwest from 5th floor of 155th east 42nd street.\n\n(2)\n42nd Street, west from 3rd Avenue \"L\" station.\n\nE.L.Christie.\nApril 21, 1927.\n", + "after": "(1)\n42nd Street, looking southwest from 5th floor of 155th east 42nd street.\n(2)\n42nd Street, west from 3rd Avenue \"L\" station.\n\nE.L. Christie.\nApril 21, 1927.", + "metadata": { + "cookie": "eval", + "len_base": 160, + "len_exp": 159, + "distance": 1, + "score": 0.99375, + "back_id": "712830b", + "record": { + "id": "712830f", + "photo_url": "http://images.nypl.org/index.php?id=712830f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?712830f", + "location": "42nd Street (East) & 3rd Avenue, Manhattan, NY", + "date": "1927", + "title": "Manhattan: 42nd Street (East) - 3rd Avenue", + "alt_title": "", + "back_id": "712830b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1)\n42nd Street, looking southwest from 5th floor of 155th east 42nd street.\n(2)\n42nd Street, west from 3rd Avenue \"L\" station.\n\nE.L. Christie.\nCREDIT LINE IMPERATIVE.\nApril 21, 1927." + } + }, + { + "photo_id": "729818f-c", + "before": "(1)\n3301 Victory Boulevard, west side, south of Speedwell Avenue, showing the J. Vrome House (Butler's 1853 map). On subsequent maps, those of 1874 and 1898, it appears as the Vroom house. In 1907 and 1917 it was owned by D. B. Boscher (Boschen).\nMay 19, 1932\nP. L. Sperr\n\n(2)\nThe Vrome House, looking north across the farmland.\nMay 19, 1932\nP. L. Sperr\n\n(3)\nThe same, at a later date.\nMay, 19, 1935\nP. L. Sperr\n", + "after": "(1)\n\n3301 Victory Boulevard, west side, south of Speedwell Avenue, showing the J. Vroome House (Butler's 1853 map). On subsequent maps, those of 1874 and 1898, it appears as the Vroom house. In 1907 and 1917 it was owned by D. B. Boscher (Boschen).\n\nMay 19, 1932\n\nP. L. Sperr\n\n(2)\n\nThe Vroome House, looking north across the farmland.\n\nMay 19, 1932\n\nP. L. Sperr\n\n(3)\n\nThe same, at a later date.\n\nMay, 19, 1935\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 412, + "len_exp": 422, + "distance": 2, + "score": 0.9951456310679612, + "back_id": "729818b", + "record": { + "id": "729818f", + "photo_url": "http://images.nypl.org/index.php?id=729818f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?729818f", + "location": "Victory Boulevard & Speedwell Avenue, Staten Island, NY", + "date": "", + "title": "Richmond: Victory Boulevard - Speedwell Avenue", + "alt_title": "", + "back_id": "729818b", + "borough": "Staten Island", + "outside_nyc": false + }, + "raw_text": "(1)\n\n3301 Victory Boulevard, west side, south of Speedwell Avenue, showing the J. Vroome House (Butler's 1853 map). On subsequent maps, those of 1874 and 1898, it appears as the Vroom house. In 1907 and 1917 it was owned by D. B. Boscher (Boschen).\n\nMay 19, 1932\n\nP. L. Sperr\nNO REPRODUCTIONS\n\n(2)\n\nThe Vroome House, looking north across the farmland.\n\nMay 19, 1932\n\nP. L. Sperr\nNO REPRODUCTIONS\n\n(3)\n\nThe same, at a later date.\n\nMay, 19, 1935\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "700530f-a", + "before": "Boston Road, west side, between E.173rd Street ane Suburban Place, showing the biology laboratory in the Hermann Ridder Junior High School (P.S.98).\nBoard of Education of the City of New York\n\nDecember, 1931\n", + "after": "Boston Road, west side, between E.173rd Street and Suburban Place, showing the biology laboratory in the Hermann Ridder Junior High School (P.S.98).\n\nBoard of Education of the City of New York\n\n\nDecember, 1931", + "metadata": { + "cookie": "eval", + "len_base": 208, + "len_exp": 209, + "distance": 1, + "score": 0.9951923076923077, + "back_id": "700530b", + "record": { + "id": "700530f", + "photo_url": "http://images.nypl.org/index.php?id=700530f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?700530f", + "location": "Boston Road & 173rd Street (East), Bronx, NY", + "date": "1931", + "title": "Bronx: Boston Road - 173rd Street (East)", + "alt_title": "", + "back_id": "700530b", + "borough": "Bronx", + "outside_nyc": false + }, + "raw_text": "Boston Road, west side, between E.173rd Street and Suburban Place, showing the biology laboratory in the Hermann Ridder Junior High School (P.S.98).\n\nBoard of Education of the City of New York\nCredit Line Imperative\n\nDecember, 1931" + } + }, + { + "photo_id": "722257f-a", + "before": "Park Avenue, east side, from 53rd to 55th Streets, seen from a tall roof at Madison Avenue on 52nd Street.\nOn the horizon at the left of the picture may be seen the Hell Gate Bridge.\nMarch 4, 1930.\nP.L. Sperr,Photographer.\n", + "after": "Park Avenue, east side, from 53rd to 55th Streets, seen from a tall roof at Madison Avenue on 52nd Street. On the horizon at the left of the picture may be seen the Hell Gate Bridge.\n\nMarch 4, 1930.\n\nP.L. Sperr, Photographer.", + "metadata": { + "cookie": "eval", + "len_base": 223, + "len_exp": 225, + "distance": 1, + "score": 0.9955156950672646, + "back_id": "722257b", + "record": { + "id": "722257f", + "photo_url": "http://images.nypl.org/index.php?id=722257f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?722257f", + "location": "Park Avenue & 53rd Street, Manhattan, NY", + "date": "1930", + "title": "Manhattan: Park Avenue - 53rd Street", + "alt_title": "", + "back_id": "722257b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Park Avenue, east side, from 53rd to 55th Streets, seen from a tall roof at Madison Avenue on 52nd Street. On the horizon at the left of the picture may be seen the Hell Gate Bridge.\n\nMarch 4, 1930.\n\nP.L. Sperr, Photographer.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "729920f-a", + "before": "Willowbrook Road, south side, about 200 feet west of Sunset Avenue (formerly Gun Factory Road), showing the remains of an old stone-and-wood dwelling. In 1853 it was the property of E. Houghwout; in 1874 of Allgire; and from 1898 to 1917 of\nAdam Allgnar.\nJuly 18, 1926\nP. L. Sperr\n", + "after": "Willowbrook Road, south side, about 200 feet west of Sunset Avenue (formerly Gun Factory Road), showing the remains of an old stone-and-wood dwelling. In 1853 it was the property of E. Houghout; in 1874 of Allgire; and from 1898 to 1917 of Adam Allgnar.\n\nJuly 18, 1926\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 281, + "len_exp": 281, + "distance": 1, + "score": 0.99644128113879, + "back_id": "729920b", + "record": { + "id": "729920f", + "photo_url": "http://images.nypl.org/index.php?id=729920f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?729920f", + "location": "Willowbrook Road & Sunset Avenue, Staten Island, NY", + "date": "", + "title": "Richmond: Willowbrook Road - Sunset Avenue", + "alt_title": "", + "back_id": "729920b", + "borough": "Staten Island", + "outside_nyc": false + }, + "raw_text": "Willowbrook Road, south side, about 200 feet west of Sunset Avenue (formerly Gun Factory Road), showing the remains of an old stone-and-wood dwelling. In 1853 it was the property of E. Houghout; in 1874 of Allgire; and from 1898 to 1917 of Adam Allgnar.\n\nJuly 18, 1926\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "722931f", + "before": "Riverside Park at W. 122nd Street and Riverside Drive. Shown is the temporary tomb of General U. S. Grant. The permanent structure was located about one-half block to the north and directly opposite 123rd Street. See: \"Sketch of the life of General U. S. Grant\" compiled by Col. John J. Garnett, with programme of the Ceremonies of the Dedication of the Grant Monument in New York, April 27, 1897.\nA. N. p. v. 156\nAbout 1885-90\nOfficial photograph, Copyrighted, for the benefit of \"Grant Monument Association.\" Carvalho, photo\nGift of Urbrock Collection\nNeg. 4315\n\n", + "after": "Riverside Park at W. 122nd Street and Riverside Drive. Shown is the temporary tomb of General U. S. Grant. The permanent structure was located about one-half block to the north and directly opposite 123rd Street. See: \"Sketch of the life of General U. S. Grant\" compiled by Col. John J. Garnett, with programme of the Ceremonies of the Dedication of the Grant Monument in New York, April 27, 1897. A. N. p. v 156\n\nAbout 1885-90\n\nOfficial photograph, Copyrighted, for the benefit of \"Grant Monument Association:\" Carvalho, photo Gift of Urbrock Collection", + "metadata": { + "cookie": "eval", + "len_base": 565, + "len_exp": 554, + "distance": 2, + "score": 0.9964601769911504, + "back_id": "722931b", + "record": { + "id": "722931f", + "photo_url": "http://images.nypl.org/index.php?id=722931f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?722931f", + "location": "Riverside Drive & 122nd Street (West), Manhattan, NY", + "date": "1885?", + "title": "Manhattan: Riverside Drive - 122nd Street (West)", + "alt_title": "", + "back_id": "722931b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Riverside Park at W. 122nd Street and Riverside Drive. Shown is the temporary tomb of General U. S. Grant. The permanent structure was located about one-half block to the north and directly opposite 123rd Street. See: \"Sketch of the life of General U. S. Grant\" compiled by Col. John J. Garnett, with programme of the Ceremonies of the Dedication of the Grant Monument in New York, April 27, 1897. A. N. p. v 156\n\nAbout 1885-90\n\nOfficial photograph, Copyrighted, for the benefit of \"Grant Monument Association:\" Carvalho, photo Gift of Urbrock Collection" + } + }, + { + "photo_id": "713469f-a", + "before": "25-29 West 50th Street, north side, between Fifth and Sixth Aves. Shown thru clearance is the former Hotel Rockefeller (now known as No. 33 West 51st Street). On the left appears a portion of the uncompleted R.K.O. Building and International Music Hall.\nNovember 13, 1932.\nP. L. Sperr.\n", + "after": "25-29 West 50th Street, north side, between Fifth and Sixth Aves., Shown thru clearance is the former Hotel Rockefeller (now known as No. 33 West 51st Street). On the left appears a portion of the uncompleted R.K.O. Building and International Music Hall.\n\nNovember 13, 1932.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 286, + "len_exp": 288, + "distance": 1, + "score": 0.9965034965034965, + "back_id": "713469b", + "record": { + "id": "713469f", + "photo_url": "http://images.nypl.org/index.php?id=713469f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?713469f", + "location": "50th Street (West) & 5th Avenue, Manhattan, NY", + "date": "1932", + "title": "Manhattan: 50th Street (West) - 5th Avenue", + "alt_title": "", + "back_id": "713469b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "25-29 West 50th Street, north side, between Fifth and Sixth Aves., Shown thru clearance is the former Hotel Rockefeller (now known as No. 33 West 51st Street). On the left appears a portion of the uncompleted R.K.O. Building and International Music Hall.\n\nNovember 13, 1932.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "719386f-c", + "before": "(1)\n307-305 Dyckman Street, north side, west of Payson Street. Buildings shown are frame structures.\nOctober 26, 1927.\nP. L. Sperr.\n\n(2)\nThe same, now used as a Reading Room, and called the Dyckman Library.\n1923\nP.L.Sperr,\n\n(3)\nThe same, showing an adjoining bit of stone wall.\n1923\nP.L.Sperr,\n", + "after": "(1)\n307-305 Dyckman Street, north side, west of Payson Street. Buildings shown are frame structures. October 26, 1927.\n\nP. L. Sperr.\n\n(2)\nThe same, now used as a Reading Room, and called the Dyckman Library,\n1923\n\nP.L.Sperr,\n\n\n(3)\nThe same, showing an adjoining bit of stone wall.\n1923\n\nP.L.Sperr,\n", + "metadata": { + "cookie": "eval", + "len_base": 294, + "len_exp": 323, + "distance": 1, + "score": 0.9965986394557823, + "back_id": "719386b", + "record": { + "id": "719386f", + "photo_url": "http://images.nypl.org/index.php?id=719386f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?719386f", + "location": "Dyckman Street & Payson Street, Manhattan, NY", + "date": "1923", + "title": "Manhattan: Dyckman Street - Payson Street", + "alt_title": "", + "back_id": "719386b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1)\n307-305 Dyckman Street, north side, west of Payson Street. Buildings shown are frame structures. October 26, 1927.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2)\nThe same, now used as a Reading Room, and called the Dyckman Library,\n1923\n\nP.L.Sperr,\nNo Reproductions.\n\n(3)\nThe same, showing an adjoining bit of stone wall.\n1923\n\nP.L.Sperr,\nNo Reproductions." + } + }, + { + "photo_id": "700923f-a", + "before": "E. Tremont Avenue, south side (foreground), east from Boston Road to the Bronx River. Also shown is the New York Coliseum, on the south side of E. 177th Street, adjoining Devoe Avenue. The view is northeastward from the E. 177th Street elevated station of the I.R.T. subway.\nMay 11, 1938.\nP.L. Sperr\nNEG # 3209\n", + "after": "E. Tremont Avenue, south side (foreground), east from Boston Road to the Bronx River. Also shown is the New York Coliseum, on the south side of E. 177th Street, adjoining Devoe Avenue. The view is northeastward from the E. 177th Street elevated station of the I.R.T. subway.\n\nMay 11, 1938.\n\nP.L. Sperr\n\nNEG. # 3209", + "metadata": { + "cookie": "eval", + "len_base": 311, + "len_exp": 314, + "distance": 1, + "score": 0.9967845659163987, + "back_id": "700923b", + "record": { + "id": "700923f", + "photo_url": "http://images.nypl.org/index.php?id=700923f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?700923f", + "location": "Tremont Avenue (East & Boston Road, Bronx, NY", + "date": "1938", + "title": "Bronx: Tremont Avenue (East - Boston Road", + "alt_title": "", + "back_id": "700923b", + "borough": "Bronx", + "outside_nyc": false + }, + "raw_text": "E. Tremont Avenue, south side (foreground), east from Boston Road to the Bronx River. Also shown is the New York Coliseum, on the south side of E. 177th Street, adjoining Devoe Avenue. The view is northeastward from the E. 177th Street elevated station of the I.R.T. subway.\n\nMay 11, 1938.\n\nP.L. Sperr\nNO REPRODUCTIONS.\n\nNEG. # 3209" + } + }, + { + "photo_id": "723411f-a", + "before": "1 to 6 State Street, (left), at, adjoining and west of the N.W. corner of Whitehall Street, showing the Seamen's Church Institute (No. 1, corner building) and contiguous to it the house of the British Consulate General (No. 2). Also seen, are Nos. 46 to 34 Whitehall Street (right), west side, north from and including State, to Pearl Streets. Nos. 1 to 3 State and 46 to 40 Whitehall Streets, were demolished in 1913, and their sites are now (1937), occupied by the 12-story South Ferry Building. Nos. 4-5 (white house) and 6, upon which two additional stories were added, now comprise a 6-story annex to South Ferry Building.\n\n1907.\nBrown Brothers.\n", + "after": "1 to 6 State Street, (left), at, adjoining and west of the N.W. corner of Whitehall Street, showing the Seamen's Church Institute (No. 1, corner building) and contiguous to it the house of the British Consulate General {No. 2}. Also seen, are Nos. 46 to 34 Whitehall Street (right), west side, north from and including State, to Pearl Streets. Nos. 1 to 3 State and 46 to 40 Whitehall Streets, were demolished in 1913, and their sites are now (1937), occupied by the 12-story South Ferry Building. Nos. 4-5 (white house) and 6, upon which two additional stories were added, now comprise a 6-story annex to South Ferry Building.\n\n1907.\n\nBrown Brothers.", + "metadata": { + "cookie": "eval", + "len_base": 651, + "len_exp": 651, + "distance": 2, + "score": 0.9969278033794163, + "back_id": "723411b", + "record": { + "id": "723411f", + "photo_url": "http://images.nypl.org/index.php?id=723411f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?723411f", + "location": "State Street & Whitehall Street, Manhattan, NY", + "date": "1907", + "title": "Manhattan: State Street - Whitehall Street", + "alt_title": "", + "back_id": "723411b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "1 to 6 State Street, (left), at, adjoining and west of the N.W. corner of Whitehall Street, showing the Seamen's Church Institute (No. 1, corner building) and contiguous to it the house of the British Consulate General {No. 2}. Also seen, are Nos. 46 to 34 Whitehall Street (right), west side, north from and including State, to Pearl Streets. Nos. 1 to 3 State and 46 to 40 Whitehall Streets, were demolished in 1913, and their sites are now (1937), occupied by the 12-story South Ferry Building. Nos. 4-5 (white house) and 6, upon which two additional stories were added, now comprise a 6-story annex to South Ferry Building.\n\n1907.\n\nBrown Brothers.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "725364f-d", + "before": "48th Street, east side, between Twenty-first Avenue and Old Bowery Bay Road, showing four views of the J.M. Cooper house of 1852. It was the Titus residence until 1922. View number four shows the area surrounding the house prior to its being parceled and sold.\nMav 1923\nViews 1 and 4\nViews 2&3: March 1923\nEugene L. Armbruster Collection\n", + "after": "48th Street, east side, between Twenty-first Avenue and Old Bowery Bay Road, showing four views of the J.M. Cooper house of 1852. It was the Titus residence until 1922. View number four shows the area surrounding the house prior to its being parceled and sold.\n\nMay 1923\nViews 1 and 4\nViews 2&3: March 1923\n\nEugene L. Armbruster Collection", + "metadata": { + "cookie": "eval", + "len_base": 338, + "len_exp": 339, + "distance": 1, + "score": 0.9970414201183432, + "back_id": "725364b", + "record": { + "id": "725364f", + "photo_url": "http://images.nypl.org/index.php?id=725364f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?725364f", + "location": "48th Street & 21st Avenue, Queens, NY", + "date": "1923", + "title": "Queens: 48th Street - 21st Avenue", + "alt_title": "", + "back_id": "725364b", + "borough": "Queens", + "outside_nyc": false + }, + "raw_text": "48th Street, east side, between Twenty-first Avenue and Old Bowery Bay Road, showing four views of the J.M. Cooper house of 1852. It was the Titus residence until 1922. View number four shows the area surrounding the house prior to its being parceled and sold.\n\nMay 1923\nViews 1 and 4\nViews 2&3: March 1923\n\nEugene L. Armbruster Collection\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "729444f-c", + "before": "Richmond Terrace, adjoining the S.E. corner of Treadwell Avenue, showing St. Mary's Roman Catholic Church. The house on the left, is the parish house.\nMay 22, 1929\nP. L. Sperr\n(2)\nAnether view of the church, and the neighboring houses, as seen from the shore of the Kill Van Kull.\nMay 22, 1929\nP. L. Sperr\n(3)\nAn additional view, at a later date.\nJune 1, 1935\nP. L. Sperr\n", + "after": "Richmond Terrace, adjoining the S.E. corner of Treadwell Avenue, showing St. Mary's Roman Catholic Church. The house on the left, is the parish house.\n\nMay 22, 1929\n\nP. L. Sperr\n\n(2)\n\nAnother view of the church, and the neighboring houses, as seen from the shore of the Kill Van Kull.\n\nMay 22, 1929\n\nP. L. Sperr\n\n(3)\n\nAn additional view, at a later date.\n\nJune 1, 1935\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 372, + "len_exp": 381, + "distance": 1, + "score": 0.9973118279569892, + "back_id": "729444b", + "record": { + "id": "729444f", + "photo_url": "http://images.nypl.org/index.php?id=729444f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?729444f", + "location": "Richmond Terrace & Treadwell Avenue, Staten Island, NY", + "date": "1929; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1935", + "title": "Richmond: Richmond Terrace - Treadwell Avenue", + "alt_title": "", + "back_id": "729444b", + "borough": "Staten Island", + "outside_nyc": false + }, + "raw_text": "Richmond Terrace, adjoining the S.E. corner of Treadwell Avenue, showing St. Mary's Roman Catholic Church. The house on the left, is the parish house.\n\nMay 22, 1929\n\nP. L. Sperr\nNO REPRODUCTIONS\n\n(2)\n\nAnother view of the church, and the neighboring houses, as seen from the shore of the Kill Van Kull.\n\nMay 22, 1929\n\nP. L. Sperr\nNO REPRODUCTIONS\n\n(3)\n\nAn additional view, at a later date.\n\nJune 1, 1935\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "717710f-c", + "before": "(1)\nBroadway, west side, north from West 116th to 122nd Streets, showing in the foreground, Barnard College and grounds, with the Riverside Baptist Church, overtowering same. The Gothic structure on the extreme right, is a portion of the Administration Building and Library of the Union Theologioal Seminary. Preceding same, is a unit of Barnard College, containing Fiske, Milbank and Brinkerhoff Halls.\n1936.\nWalter L. Bogert.\n\n(2)\nA limited view to West 120th Street, from a slight altitude, showing the Students Building of Barnard College completely.\n1936.\nWalter L. Bogert.\n\n(3)\nA detail of the same, to a point slightly southward, from a different angle. Right to left appear; the southern portion of the Students' Building of Barnard College, the Barnard College Dormitory, and Brooks\nHall Dormitory.\n1936.\nWalter L. Bogert.\n", + "after": "(1) Broadway, west side, north from West 116th to 122nd Streets, showing in the foreground, Barnard College and grounds, with the Riverside Baptist Church, overpowering same. The Gothic structure on the extreme right, is a portion of the Administration Building and Library of the Union Theological Seminary. Preceding same, is a unit of Barnard College, containing Fiske, Milbank and Brinkerhoff Halls. 1936. Walter L. Bogert.\n\n(2) A limited view to West 120th Street, from a slight altitude, showing the Students Building of Barnard College completely. 1936. Walter L. Bogert.\n\n(3) A detail of the same, to a point slightly southward, from a different angle. Right to left appear; the southern portion of the Students' Building of Barnard College, the Barnard College Dormitory, and Brooks Hall Dormitory. 1936. Walter L. Bogert.", + "metadata": { + "cookie": "eval", + "len_base": 832, + "len_exp": 831, + "distance": 2, + "score": 0.9975961538461539, + "back_id": "717710b", + "record": { + "id": "717710f", + "photo_url": "http://images.nypl.org/index.php?id=717710f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?717710f", + "location": "Broadway & 116th Street (West), Manhattan, NY", + "date": "1936", + "title": "Manhattan: Broadway - 116th Street (West)", + "alt_title": "", + "back_id": "717710b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1) Broadway, west side, north from West 116th to 122nd Streets, showing in the foreground, Barnard College and grounds, with the Riverside Baptist Church, overpowering same. The Gothic structure on the extreme right, is a portion of the Administration Building and Library of the Union Theological Seminary. Preceding same, is a unit of Barnard College, containing Fiske, Milbank and Brinkerhoff Halls. 1936. Walter L. Bogert. NO REPRODUCTIONS.\n\n(2) A limited view to West 120th Street, from a slight altitude, showing the Students Building of Barnard College completely. 1936. Walter L. Bogert. NO REPRODUCTIONS.\n\n(3) A detail of the same, to a point slightly southward, from a different angle. Right to left appear; the southern portion of the Students' Building of Barnard College, the Barnard College Dormitory, and Brooks Hall Dormitory. 1936. Walter L. Bogert. NO REPRODUCTIONS." + } + }, + { + "photo_id": "718133f-b", + "before": "(1)\nCatherine Slip, east side, north from South, to, but not including Cherry Streets, showing (foreground), No. 27, at the N.E. corner of South Street. It is only remaining tenement on the block. Also shown, overtowering the little house, is the west wall of the Hearst Publications Building.\nSeptember 7, 1927.\nP. L. Sperr.\n\n(2)\nA detail of the same, showing a more prominent view of No. 27.\nSeptember 7, 1927.\nP. L. Sperr.\n", + "after": "(1) Catherine Slip, east side, north from South, to, but not including Cherry Streets, showing (foreground), No. 27, at the N.E. corner of South Street. It is only remaining tenement on the block. Also shown, overpowering the little house, is the west wall of the Hearst Publications Building. September 7, 1927.\n\nP. L. Sperr.\n\n(2) A detail of the same, showing a more prominent view of No. 27. September 7, 1927.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 426, + "len_exp": 427, + "distance": 1, + "score": 0.9976525821596244, + "back_id": "718133b", + "record": { + "id": "718133f", + "photo_url": "http://images.nypl.org/index.php?id=718133f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?718133f", + "location": "Catherine Slip & South Street, Manhattan, NY", + "date": "1927", + "title": "Manhattan: Catherine Slip - South Street", + "alt_title": "", + "back_id": "718133b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1) Catherine Slip, east side, north from South, to, but not including Cherry Streets, showing (foreground), No. 27, at the N.E. corner of South Street. It is only remaining tenement on the block. Also shown, overpowering the little house, is the west wall of the Hearst Publications Building. September 7, 1927.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2) A detail of the same, showing a more prominent view of No. 27. September 7, 1927.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "713042f-a", + "before": "W. 42nd Street (foreground, from left center to the right margin) at, adjoining and east of the N.E. corner of Sixth Avenue (left and upon which appears a northward view for 3 blocks ). Shown is a general view north eastward towards the East River with its Queensboro and Hellgate Bridges. Thru the midground runs Fifth Avenue (note St. Patricks Cathedral thereon) with its absence of towering structures at this date.\nEwing Galloway\n1919\n", + "after": "W. 42nd Street (foreground, from left center to the right margin) at, adjoining and east of the N.E. corner of Sixth Avenue (left and upon which appears a northward view for 3 blocks). Shown is a general view north eastward towards the East River with its Queensboro and Hellgate Bridges. Thru the midground runs Fifth Avenue (note St. Patricks Cathedral thereon) with its absence of towering structures at this date.\n\nEwing Galloway\n\n1919", + "metadata": { + "cookie": "eval", + "len_base": 439, + "len_exp": 439, + "distance": 1, + "score": 0.9977220956719818, + "back_id": "713042b", + "record": { + "id": "713042f", + "photo_url": "http://images.nypl.org/index.php?id=713042f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?713042f", + "location": "42nd Street & 12th Avenue, Manhattan, NY", + "date": "1919", + "title": "Manhattan: 42nd Street - 12th Avenue", + "alt_title": "", + "back_id": "713042b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "W. 42nd Street (foreground, from left center to the right margin) at, adjoining and east of the N.E. corner of Sixth Avenue (left and upon which appears a northward view for 3 blocks). Shown is a general view north eastward towards the East River with its Queensboro and Hellgate Bridges. Thru the midground runs Fifth Avenue (note St. Patricks Cathedral thereon) with its absence of towering structures at this date.\n\nEwing Galloway\nNO REPRODUCTIONS.\n\n1919" + } + }, + { + "photo_id": "712977f-a", + "before": "42nd Street skyscrapers, east from Madison Avenue. On the south side of the street are the Lincoln Building (1929) at 60 East 42nd Street, the Chanin Building (1928) at No. 122 on the S.W. corner of Lexington Avenue, and the Daily News Building (1929) at 220 East 42nd Street east of Third Avenue. At the right is the Chrysler Building, completed in the summer of 1930, diagonally opposite the Chanin Building.\n\n1930-1931.\n\nEwing Galloway.\nNeg #725", + "after": "42nd Street skyscrapers, east from Madison Avenue. On the south side of the street are the Lincoln Building (1929) at 60 East 42nd Street, the Chanin Building (1928) at No. 122 on the S.W. corner of Lexington Avenue, and the Daily News Building (1929) at 220 East 42nd Street east of Third Avenue. At the right is the Chrysler Building, completed in the summer of 1930, diagonally opposite the Chanin Building.\n\n1930-1931.\n\nEwing Galloway.\nNeg. #725", + "metadata": { + "cookie": "eval", + "len_base": 448, + "len_exp": 449, + "distance": 1, + "score": 0.9977678571428571, + "back_id": "712977b", + "record": { + "id": "712977f", + "photo_url": "http://images.nypl.org/index.php?id=712977f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?712977f", + "location": "42nd Street & Madison Avenue, Manhattan, NY", + "date": "1930?", + "title": "Manhattan: 42nd Street - Madison Avenue", + "alt_title": "", + "back_id": "712977b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "42nd Street skyscrapers, east from Madison Avenue. On the south side of the street are the Lincoln Building (1929) at 60 East 42nd Street, the Chanin Building (1928) at No. 122 on the S.W. corner of Lexington Avenue, and the Daily News Building (1929) at 220 East 42nd Street east of Third Avenue. At the right is the Chrysler Building, completed in the summer of 1930, diagonally opposite the Chanin Building.\n\n1930-1931.\n\nEwing Galloway.\nNO REPRODUCTIONS.\nNeg. #725" + } + }, + { + "photo_id": "702752f-b", + "before": "41st Street (right) west of Third Ave. Also shown is Second Ave. (center of view) between 42nd Street (left) and 41st Street (right). In the foreground will be erected a two story building for the Shipley Construction and Supply Company. At the foot of 41st Street is Pier No. 7; and at the center right, sectionally shown, are several Bush Terminal Buildings. In the background, steepled, is the National Meter Co. Building formerly the National Metal Co. This is a set of two views.\n1919.\nEugene L. Armbruster Collection.\n", + "after": "41st Street (right) west of Third Ave., Also shown is Second Ave. (center of view) between 42nd Street (left) and 41st Street (right). In the foreground will be erected a two story building for the Shipley Construction and Supply Company. At the foot of 41st Street is Pier No. 7; and at the center right, sectionally shown, are several Bush Terminal Buildings. In the background, steepled, is the National Meter Co. Building formerly the National Metal Co. This is a set of two views.\n\n1919.\n\nEugene L. Armbruster Collection.", + "metadata": { + "cookie": "eval", + "len_base": 524, + "len_exp": 526, + "distance": 1, + "score": 0.9980916030534351, + "back_id": "702752b", + "record": { + "id": "702752f", + "photo_url": "http://images.nypl.org/index.php?id=702752f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?702752f", + "location": "41st Street & 3rd Avenue, Brooklyn, NY", + "date": "1919", + "title": "Brooklyn: 41st Street - 3rd Avenue", + "alt_title": "", + "back_id": "702752b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "41st Street (right) west of Third Ave., Also shown is Second Ave. (center of view) between 42nd Street (left) and 41st Street (right). In the foreground will be erected a two story building for the Shipley Construction and Supply Company. At the foot of 41st Street is Pier No. 7; and at the center right, sectionally shown, are several Bush Terminal Buildings. In the background, steepled, is the National Meter Co. Building formerly the National Metal Co. This is a set of two views.\n\n1919.\n\nEugene L. Armbruster Collection.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "717970f-a", + "before": "Cabrini Boulevard, (formerly Northern Avenue) west side, north from a point to the south of Chittenden Place (W. 186th Street) and showing a row of apartments that begin at the N.W. corner of that point. At the left is a corner of Dr. Chas. V. Paterno's manorial estate and upon which an apartment project is taking shape, necessitating demolition of the aforementioned individuals castle-like home. Chittenden Place normally runs parallel to the boulevard but here it has absorbed that short street that joins both thoroughfares.\nAugust 23, 1938.\nP.L. Sperr\n", + "after": "Cabrini Boulevard, (formerly Northern Avenue) west side, north from a point to the south of Chittenden Place (w. 186th Street) and showing a row of apartments that begin at the N.W. corner of that point. At the left is a corner of Dr. Chas. V. Paterno's manorial estate and upon which an apartment project is taking shape, necessitating demolition of the aforementioned individuals castle-like home. Chittenden Place normally runs parallel to the boulevard but here it has absorbed that short street that joins both thoroughfares.\n\nAugust 23, 1938.\n\nP.L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 559, + "len_exp": 560, + "distance": 1, + "score": 0.998211091234347, + "back_id": "717970b", + "record": { + "id": "717970f", + "photo_url": "http://images.nypl.org/index.php?id=717970f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?717970f", + "location": "Cabrini Boulevard & 186th Street (West), Manhattan, NY", + "date": "1938", + "title": "Manhattan: Cabrini Boulevard - 186th Street (West)", + "alt_title": "", + "back_id": "717970b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Cabrini Boulevard, (formerly Northern Avenue) west side, north from a point to the south of Chittenden Place (w. 186th Street) and showing a row of apartments that begin at the N.W. corner of that point. At the left is a corner of Dr. Chas. V. Paterno's manorial estate and upon which an apartment project is taking shape, necessitating demolition of the aforementioned individuals castle-like home. Chittenden Place normally runs parallel to the boulevard but here it has absorbed that short street that joins both thoroughfares.\n\nAugust 23, 1938.\n\nP.L. Sperr\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "720916f-a", + "before": "9 Lexington Avenue, at the S.E. corner of East 22nd Street, (left), showing the home of the former Mayor Abram S. Hewitt, who was the son-in-law of the beneficent Peter Cooper. His son, Erskine Hewitt, succeeded to same in turn. The photographer silhouettes same against a background of apartment dwellings that face on Gramercy Park. Note the lanterns extending from the balcony over the portico. These are reminiscent of the old New York custom indicating the residence of the chief executive. A similar feature is to be found around the corner at No. 4 Gramercy Park West, the home of the former Mayor Harper of the publishing firm of that name.\nFebruary 4, 1938.\nP. L. Sperr\n", + "after": "9 Lexington Avenue, at the S.E. corner of East 22nd Street, (left), showing the home of the former Mayor Abram S. Hewitt, who was the son-in-law of the beneficent Peter Cooper. His son, Erskine Hewitt, succeeded to same in turn. The photographer silhouettes same against a background of apartment dwellings that face on Gramercy Park. Note the lanterns extending from the balcony over the portico. These are reminiscent of the old New York custom indicating the residence of the chief executive. A similar feature is to be found around the corner at No. 4 Gramercy Park West, the home of the former Mayor Harpef of the publishing firm of that name.\n\nFebruary 4, 1938.\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 679, + "len_exp": 680, + "distance": 1, + "score": 0.9985272459499264, + "back_id": "720916b", + "record": { + "id": "720916f", + "photo_url": "http://images.nypl.org/index.php?id=720916f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?720916f", + "location": "Lexington Avenue & 22nd Street (East), Manhattan, NY", + "date": "1938", + "title": "Manhattan: Lexington Avenue - 22nd Street (East)", + "alt_title": "", + "back_id": "720916b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "9 Lexington Avenue, at the S.E. corner of East 22nd Street, (left), showing the home of the former Mayor Abram S. Hewitt, who was the son-in-law of the beneficent Peter Cooper. His son, Erskine Hewitt, succeeded to same in turn. The photographer silhouettes same against a background of apartment dwellings that face on Gramercy Park. Note the lanterns extending from the balcony over the portico. These are reminiscent of the old New York custom indicating the residence of the chief executive. A similar feature is to be found around the corner at No. 4 Gramercy Park West, the home of the former Mayor Harpef of the publishing firm of that name.\n\nFebruary 4, 1938.\n\nP. L. Sperr\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "704817f-b", + "before": "(1)\nHenry Street, west side, south of Fulton Street, showing in the foreground, the Macon Au and Magenheimer Candy Co; manufacturers of \"Peaks\" a candy delicacy.\nApril 1, 1937.\nP. L. Sperr.\n\n(2)\nThe same; a limited view, showing the shadows of the B.M.T. Fulton Street Elevated Line in the foreground.\nApril 1, 1937.\nP. L. Sperr.\n", + "after": "(1) Henry Street, west side, south of Fulton Street, showing in the foreground, the Macon Au and Magenheimer Candy Co; manufacturers of \"Peaks\" a candy delicacy.\n\nApril 1, 1937.\n\nP. L. Sperr.\n\n(2) The same; a limited view, showing the shadows of the B.M.T. Fulton Street Elevated Line in the foreground.\n\nApril 1, 1937.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 330, + "len_exp": 333, + "distance": 0, + "score": 1.0, + "back_id": "704817b", + "record": { + "id": "704817f", + "photo_url": "http://images.nypl.org/index.php?id=704817f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?704817f", + "location": "Henry Street & Fulton Street, Brooklyn, NY", + "date": "1937", + "title": "Brooklyn: Henry Street - Fulton Street", + "alt_title": "", + "back_id": "704817b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "(1) Henry Street, west side, south of Fulton Street, showing in the foreground, the Macon Au and Magenheimer Candy Co; manufacturers of \"Peaks\" a candy delicacy.\n\nApril 1, 1937.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2) The same; a limited view, showing the shadows of the B.M.T. Fulton Street Elevated Line in the foreground.\n\nApril 1, 1937.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "725510f-a", + "before": "60th Lane, west side, from 60th Avenue to 60th Road, showing\nPublic School No. 153.\nBoard of Ed. of the City of N. Y. March 31, 1931\n", + "after": "60th Lane, west side, from 60th Avenue to 60th Road, showing Public School No. 153.\n\nBoard of Ed. of the City of N. Y. March 31, 1931\n", + "metadata": { + "cookie": "eval", + "len_base": 134, + "len_exp": 154, + "distance": 0, + "score": 1.0, + "back_id": "725510b", + "record": { + "id": "725510f", + "photo_url": "http://images.nypl.org/index.php?id=725510f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?725510f", + "location": "60th Lane & 60th Avenue, Queens, NY", + "date": "1931", + "title": "Queens: 60th Lane - 60th Avenue", + "alt_title": "", + "back_id": "725510b", + "borough": "Queens", + "outside_nyc": false + }, + "raw_text": "60th Lane, west side, from 60th Avenue to 60th Road, showing Public School No. 153.\n\nBoard of Ed. of the City of N. Y. March 31, 1931\n\nCREDIT LINE IMPERATIVE" + } + }, + { + "photo_id": "706526f-c", + "before": "Rockaway Parkway (left), west side, south of Seaview Ave., showing a Red Cross station on Canarsie Beach. Nos. 1 and 2 of this set of three views are the same; No. 3 being more extensive.\nJuly 27, 1935.\nP. L. Sperr.\n", + "after": "Rockaway Parkway (left), west side, south of Seaview Ave., showing a Red Cross station on Canarsie Beach. Nos. 1 and 2 of this set of three views are the same; No. 3 being more extensive.\nJuly 27, 1935.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 216, + "len_exp": 216, + "distance": 0, + "score": 1.0, + "back_id": "706526b", + "record": { + "id": "706526f", + "photo_url": "http://images.nypl.org/index.php?id=706526f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?706526f", + "location": "Rockaway Parkway & Sea View Avenue, Brooklyn, NY", + "date": "1935", + "title": "Brooklyn: Rockaway Parkway - Sea View Avenue", + "alt_title": "", + "back_id": "706526b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "Rockaway Parkway (left), west side, south of Seaview Ave., showing a Red Cross station on Canarsie Beach. Nos. 1 and 2 of this set of three views are the same; No. 3 being more extensive.\nJuly 27, 1935.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "717164f-a", + "before": "P.L. Sperr collections\nRec'd January 13, 1945\n", + "after": "P.L. Sperr collections\nRec'd January 13, 1945", + "metadata": { + "cookie": "eval", + "len_base": 46, + "len_exp": 45, + "distance": 0, + "score": 1.0, + "back_id": "717164b", + "record": { + "id": "717164f", + "photo_url": "http://images.nypl.org/index.php?id=717164f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?717164f", + "location": "Broadway & Park Row, Manhattan, NY", + "date": "1894", + "title": "Manhattan: Broadway - Park Row", + "alt_title": "", + "back_id": "717164b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "P.L. Sperr collections\nRec'd January 13, 1945" + } + }, + { + "photo_id": "700868f-a", + "before": "Duncomb Street, at the S.E. corner of Barker Avenue, showing three frame houses, all occupying lot No. 13 (block 4627). The big apartment house faces on Olinville Avenue.\nJune 16, 1938.\nP. L. Sperr.\n", + "after": "Duncomb Street, at the S.E. corner of Barker Avenue, showing three frame houses, all occupying lot No. 13 (block 4627). The big apartment house faces on Olinville Avenue.\n\nJune 16, 1938.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 199, + "len_exp": 200, + "distance": 0, + "score": 1.0, + "back_id": "700868b", + "record": { + "id": "700868f", + "photo_url": "http://images.nypl.org/index.php?id=700868f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?700868f", + "location": "Duncomb Street & Barker Avenue, Bronx, NY", + "date": "1938", + "title": "Bronx: Duncomb Street - Barker Avenue", + "alt_title": "", + "back_id": "700868b", + "borough": "Bronx", + "outside_nyc": false + }, + "raw_text": "Duncomb Street, at the S.E. corner of Barker Avenue, showing three frame houses, all occupying lot No. 13 (block 4627). The big apartment house faces on Olinville Avenue.\n\nJune 16, 1938.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "715375f-b", + "before": "(1)\n125th Street, Park Avenue, to Madison. South Side. (Before Reconstruction)\nSeptember 12, 1920.\n\n(2)\nSame. (After Reconstruction).\nPresident Borough of Manhatten.\nDecember 26, 1920.", + "after": "(1)\n125th Street, Park Avenue, to Madison. South Side. (Before Reconstruction)\nSeptember 12, 1920.\n\n(2)\nSame. (After Reconstruction).\n\nPresident Borough of Manhatten.\n\nDecember 26, 1920.", + "metadata": { + "cookie": "eval", + "len_base": 184, + "len_exp": 186, + "distance": 0, + "score": 1.0, + "back_id": "715375b", + "record": { + "id": "715375f", + "photo_url": "http://images.nypl.org/index.php?id=715375f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?715375f", + "location": "125th Street & Park Avenue, Manhattan, NY", + "date": "1920", + "title": "Manhattan: 125th Street - Park Avenue", + "alt_title": "", + "back_id": "715375b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1)\n125th Street, Park Avenue, to Madison. South Side. (Before Reconstruction)\nSeptember 12, 1920.\n\n(2)\nSame. (After Reconstruction).\n\nPresident Borough of Manhatten.\nCREDIT LINE IMPERATIVE.\n\nDecember 26, 1920." + } + }, + { + "photo_id": "719194f-a", + "before": "Convent Ave. (running today between the house and trees) at West 143rd Street, showing the Alexander Hamilton home (Hamilton Grange) and the thirteen commemorative trees. The house has been moved to a new location and adjoins St. Luke's Protestant Episcopal Church at the N.E. corner of Convent Ave. and West 141st Street. The trees stand upon\nwhat is today the S.E. corner of West 143rd Street.\nAbout 1888.\nWurts Brothers.\n", + "after": "Convent Ave. (running today between the house and trees) at West 143rd Street, showing the Alexander Hamilton home (Hamilton Grange) and the thirteen commemorative trees. The house has been moved to a new location and adjoins St. Luke's Protestant Episcopal Church at the N.E. corner of Convent Ave. and West 141st Street. The trees stand upon what is today the S.E. corner of West 143rd Street.\n\nAbout 1888.\n\nWurts Brothers.", + "metadata": { + "cookie": "eval", + "len_base": 424, + "len_exp": 425, + "distance": 0, + "score": 1.0, + "back_id": "719194b", + "record": { + "id": "719194f", + "photo_url": "http://images.nypl.org/index.php?id=719194f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?719194f", + "location": "Convent Avenue & 143rd Street (West), Manhattan, NY", + "date": "[1888?]", + "title": "Manhattan: Convent Avenue - 143rd Street (West)", + "alt_title": "", + "back_id": "719194b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Convent Ave. (running today between the house and trees) at West 143rd Street, showing the Alexander Hamilton home (Hamilton Grange) and the thirteen commemorative trees. The house has been moved to a new location and adjoins St. Luke's Protestant Episcopal Church at the N.E. corner of Convent Ave. and West 141st Street. The trees stand upon what is today the S.E. corner of West 143rd Street.\n\nAbout 1888.\n\nWurts Brothers.\nNO REPRODUCTION." + } + }, + { + "photo_id": "702718f-a", + "before": "35th Street, n.s., w. across Third Avenue, Brooklyn.\n\nNeg. no. A-1308\n\nP. L. Sperr, photographer\nJuly 21, 1940\n", + "after": "35th Street, n.s., w. across Third Avenue, Brooklyn.\nNeg. no. A-1308\nP. L. Sperr, photographer\nJuly 21, 1940", + "metadata": { + "cookie": "eval", + "len_base": 111, + "len_exp": 108, + "distance": 0, + "score": 1.0, + "back_id": "702718b", + "record": { + "id": "702718f", + "photo_url": "http://images.nypl.org/index.php?id=702718f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?702718f", + "location": "25th Street & 3rd Avenue, Brooklyn, NY", + "date": "1940", + "title": "Brooklyn: 25th Street - 3rd Avenue", + "alt_title": "", + "back_id": "702718b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "35th Street, n.s., w. across Third Avenue, Brooklyn.\nNeg. no. A-1308\nP. L. Sperr, photographer\nJuly 21, 1940" + } + }, + { + "photo_id": "730308f-a", + "before": "A general view, east from Radio City, north from 48th to 51st Streets, and west from Fifth to Sixth Aves., showing the Queensboro Bridge, (Extending from East 59th Street, Manhattan to Long Island City), with Blackwell's Island in the East River directly beneath the bridge.\nAugust 9, 1933.\nP. L. Sperr.\n", + "after": "A general view, east from Radio City, north from 48th to 51st Streets, and west from Fifth to Sixth Aves., showing the Queensboro Bridge, (Extending from East 59th Street, Manhattan to Long Island City), with Blackwell's Island in the East River directly beneath the bridge.\n\nAugust 9, 1933.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 304, + "len_exp": 305, + "distance": 0, + "score": 1.0, + "back_id": "730308b", + "record": { + "id": "730308f", + "photo_url": "http://images.nypl.org/index.php?id=730308f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?730308f", + "location": "50th Street and 5th Avenue, Manhattan, N.Y.", + "date": "1933", + "title": "General view - Between 5th and 6th Avenues - East.", + "alt_title": "[Manhattan: 50th Street - 5th Avenue ; From 48th Street to 51st Street.]", + "back_id": "730308b", + "borough": null, + "outside_nyc": false + }, + "raw_text": "A general view, east from Radio City, north from 48th to 51st Streets, and west from Fifth to Sixth Aves., showing the Queensboro Bridge, (Extending from East 59th Street, Manhattan to Long Island City), with Blackwell's Island in the East River directly beneath the bridge.\n\nAugust 9, 1933.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "713676f-b", + "before": "(1)\n433-435 West 53rd Street, north side, between Ninth and Tenth\nAves. Buildings concerned are frame houses.\nJune 30, 1930.\nP. L. Sperr.\n(2)\nThe same, from a different angle.\nApril 21, 1934.\nP. L. Sperr.\n", + "after": "(1) 433-435 West 53rd Street, north side, between Ninth and Tenth Aves. Buildings concerned are frame houses. June 30, 1930.\n\nP. L. Sperr.\n\n(2) The same, from a different angle. April 21, 1934.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 205, + "len_exp": 207, + "distance": 0, + "score": 1.0, + "back_id": "713676b", + "record": { + "id": "713676f", + "photo_url": "http://images.nypl.org/index.php?id=713676f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?713676f", + "location": "53rd Street (West) & 9th Avenue, Manhattan, NY", + "date": "", + "title": "Manhattan: 53rd Street (West) - 9th Avenue", + "alt_title": "", + "back_id": "713676b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1) 433-435 West 53rd Street, north side, between Ninth and Tenth Aves. Buildings concerned are frame houses. June 30, 1930.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2) The same, from a different angle. April 21, 1934.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "717936f-c", + "before": "(1)\nBryant Park, center and west side, towards 42nd Street, giving a rear view of the Federal Hall replica, on which demolition is beginning.\nApril 8, 1933.\nP. L. Sperr.\n\n(2)\nThe same view, but closer to 42nd Street, showing the Park being remodelled under the regime of Commissioner Robert Moses, New York's first city-wide Commissioner of Parks.\nMarch 15, 1934.\nP. L. Sperr.\n\n(3)\nThe same, seen from the south side, and showing the Park after completion of the work. The flower beds are planted with ivy. The large corner building, at Sixth Avenue and 42nd Street, is the department store of Stern Brothers.\nJuly 6, 1935.\nP. L. Sperr.\n", + "after": "(1)\nBryant Park, center and west side, towards 42nd Street, giving a rear view of the Federal Hall replica, on which demolition\nis beginning.\n\nApril 8, 1933.\n\nP. L. Sperr.\n\n(2)\nThe same view, but closer to 42nd Street, showing the Park being remodelled under the regime of Commissioner Robert Moses, New York's first city-wide Commissioner of Parks.\nMarch 15, 1934.\n\nP. L. Sperr.\n\n(3)\nThe same, seen from the south side, and showing the Park after completion of the work. The flower beds are planted with\nivy.\nThe large corner building, at Sixth Avenue and 42nd Street, is\nthe department store of Stern Brothers.\nJuly 6, 1935.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 637, + "len_exp": 640, + "distance": 0, + "score": 1.0, + "back_id": "717936b", + "record": { + "id": "717936f", + "photo_url": "http://images.nypl.org/index.php?id=717936f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?717936f", + "location": "42nd Street & 12th Avenue, Manhattan, NY", + "date": "1933; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1934; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1935", + "title": "Manhattan: 42nd Street - 12th Avenue", + "alt_title": "", + "back_id": "717936b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1)\nBryant Park, center and west side, towards 42nd Street, giving\na rear view of the Federal Hall replica, on which demolition\nis beginning.\n\nApril 8, 1933.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2)\nThe same view, but closer to 42nd Street, showing the Park\nbeing remodelled under the regime of Commissioner Robert\nMoses, New York's first city-wide Commissioner of Parks.\nMarch 15, 1934.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(3)\nThe same, seen from the south side, and showing the Park after\ncompletion of the work. The flower beds are planted with\nivy.\nThe large corner building, at Sixth Avenue and 42nd Street, is\nthe department store of Stern Brothers.\nJuly 6, 1935.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "717341f-a", + "before": "919-913 Broadway, at and adjoining the S.W. corner of 21st Street. The corner lot has been vacant since 1916, at least, but the building at 915 Broadway has just been demolished.\nNovember 20, 1924.\nUnderwood & Underwood.\n", + "after": "919-913 Broadway, at and adjoining the S.W. corner of 21st Street. The corner lot has been vacant since 1916, at least, but the building at 915 Broadway has just been demolished.\n\nNovember 20, 1924.\n\nUnderwood & Underwood.", + "metadata": { + "cookie": "eval", + "len_base": 221, + "len_exp": 222, + "distance": 0, + "score": 1.0, + "back_id": "717341b", + "record": { + "id": "717341f", + "photo_url": "http://images.nypl.org/index.php?id=717341f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?717341f", + "location": "Broadway & 21st Street, Manhattan, NY", + "date": "", + "title": "Manhattan: Broadway - 21st Street", + "alt_title": "", + "back_id": "717341b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "919-913 Broadway, at and adjoining the S.W. corner of 21st Street. The corner lot has been vacant since 1916, at least, but the building at 915 Broadway has just been demolished.\n\nNovember 20, 1924.\n\nUnderwood & Underwood.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "731935f-b", + "before": "Coney Island: One of the amusement centers on the island.\nJuly 4, 1936\nViews 1,2\nP. L. Sperr\n", + "after": "Coney Island: One of the amusement centers on the island.\n\nJuly 4, 1936\nViews 1,2\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 93, + "len_exp": 94, + "distance": 0, + "score": 1.0, + "back_id": "731935b", + "record": { + "id": "731935f", + "photo_url": "http://images.nypl.org/index.php?id=731935f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?731935f", + "location": "Brooklyn - Rollercoaster., Coney Island, Brooklyn, NY", + "date": "1936", + "title": "Islands - Coney Island - Brooklyn - [Rollercoaster].", + "alt_title": "", + "back_id": "731935b", + "borough": null, + "outside_nyc": false + }, + "raw_text": "Coney Island: One of the amusement centers on the island.\n\nJuly 4, 1936\nViews 1,2\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "713325f-a", + "before": "22-18 East 48th Street, south side, west of Madison Avenue.\nAbout 1911.\nGift of E. M. Jenks.\n", + "after": "22-18 East 48th Street, south side, west of Madison Avenue.\nAbout 1911.\n\nGift of E. M. Jenks.", + "metadata": { + "cookie": "eval", + "len_base": 93, + "len_exp": 93, + "distance": 0, + "score": 1.0, + "back_id": "713325b", + "record": { + "id": "713325f", + "photo_url": "http://images.nypl.org/index.php?id=713325f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?713325f", + "location": "48th Street (East) & Madison Avenue, Manhattan, NY", + "date": "1911?", + "title": "Manhattan: 48th Street (East) - Madison Avenue", + "alt_title": "", + "back_id": "713325b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "22-18 East 48th Street, south side, west of Madison Avenue.\nAbout 1911.\n\nGift of E. M. Jenks.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "725420f-a", + "before": "51st Avenue, west from near 21st Street. This area later became part of a new broad highway leading to the Queens-Midtown Tunnel entrance at Vernon Avenue.\nNovember 18, 1938\nNew York City Tunnel Authority\n", + "after": "51st Avenue, west from near 21st Street. This area later became part of a new broad highway leading to the Queens-Midtown Tunnel entrance at Vernon Avenue.\n\nNovember 18, 1938\n\nNew York City Tunnel Authority", + "metadata": { + "cookie": "eval", + "len_base": 205, + "len_exp": 206, + "distance": 0, + "score": 1.0, + "back_id": "725420b", + "record": { + "id": "725420f", + "photo_url": "http://images.nypl.org/index.php?id=725420f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?725420f", + "location": "51st Avenue & 21st Street, Queens, NY", + "date": "1938", + "title": "Queens: 51st Avenue - 21st Street", + "alt_title": "", + "back_id": "725420b", + "borough": "Queens", + "outside_nyc": false + }, + "raw_text": "51st Avenue, west from near 21st Street. This area later became part of a new broad highway leading to the Queens-Midtown Tunnel entrance at Vernon Avenue.\n\nNovember 18, 1938\n\nNew York City Tunnel Authority\nCREDIT LINE IMPERATIVE" + } + }, + { + "photo_id": "702282f-c", + "before": "(1)\n3rd Avenue, east side, north from 25th Street, showing the clearance which was created by the demolition of numerous tenements. This area will become part of Gowanus Parkway, the highway leading to and from the Brooklyn-Battery Tunnel.\nOctober 17, 1940\nP. L. Sperr\n(2)\nThe east side of Third Avenue, between 24th and 23rd\nStreets.\nOctober 17, 1940\nP. L. Sperr\n(3)\nThe east side of the Avenue at 22nd Street.\nOctober 17, 1940\nP. L. Sperr\n", + "after": "(1)\n3rd Avenue, east side, north from 25th Street, showing the clearance which was created by the demolition of numerous tenements. This area will become part of Gowanus Parkway, the highway leading to and from the Brooklyn-Battery Tunnel.\n\nOctober 17, 1940\n\nP. L. Sperr\n\n(2)\nThe east side of Third Avenue, between 24th and 23rd Streets.\n\nOctober 17, 1940\n\nP. L. Sperr\n\n(3)\nThe east side of the Avenue at 22nd Street.\n\nOctober 17, 1940\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 441, + "len_exp": 448, + "distance": 0, + "score": 1.0, + "back_id": "702282b", + "record": { + "id": "702282f", + "photo_url": "http://images.nypl.org/index.php?id=702282f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?702282f", + "location": "3rd Avenue & 25th Street, Brooklyn, NY", + "date": "", + "title": "Brooklyn: 3rd Avenue - 25th Street", + "alt_title": "", + "back_id": "702282b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "(1)\n3rd Avenue, east side, north from 25th Street, showing the clearance which was created by the demolition of numerous tenements. This area will become part of Gowanus Parkway, the highway leading to and from the Brooklyn-Battery Tunnel.\n\nOctober 17, 1940\n\nP. L. Sperr\nNO REPRODUCTIONS\n\n(2)\nThe east side of Third Avenue, between 24th and 23rd Streets.\n\nOctober 17, 1940\n\nP. L. Sperr\nNO REPRODUCTIONS\n\n(3)\nThe east side of the Avenue at 22nd Street.\n\nOctober 17, 1940\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "729194f-a", + "before": "New Dorp Lane (right), south side, west from 9th Street (foreground). The house, seen prominently, is a police station,\nat the S.E. corner of 8th Street.\nApril 22, 1937.\nP. L. Sperr.\n", + "after": "New Dorp Lane (right), south side, west from 9th Street (foreground). The house, seen prominently, is a police station, at the S.E. corner of 8th Street.\n\nApril 22, 1937.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 183, + "len_exp": 184, + "distance": 0, + "score": 1.0, + "back_id": "729194b", + "record": { + "id": "729194f", + "photo_url": "http://images.nypl.org/index.php?id=729194f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?729194f", + "location": "New Dorp Lane & 8th Street, Staten Island, NY", + "date": "1937", + "title": "Richmond: New Dorp Lane - 8th Street", + "alt_title": "", + "back_id": "729194b", + "borough": "Staten Island", + "outside_nyc": false + }, + "raw_text": "New Dorp Lane (right), south side, west from 9th Street (foreground). The house, seen prominently, is a police station, at the S.E. corner of 8th Street.\n\nApril 22, 1937.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "704683f-a", + "before": "Grand Avenue, north from and across St. Marks Avenue,\nshowing a W. P. A. sewer project.\n1936\nWorks Progress Administration\nFive Boroughs Project\n", + "after": "Grand Avenue, north from and across St. Marks Avenue, showing a W. P. A. sewer project.\n\n1936\n\nWorks Progress Administration\nFive Boroughs Project", + "metadata": { + "cookie": "eval", + "len_base": 145, + "len_exp": 146, + "distance": 0, + "score": 1.0, + "back_id": "704683b", + "record": { + "id": "704683f", + "photo_url": "http://images.nypl.org/index.php?id=704683f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?704683f", + "location": "Grand Avenue & St. Marks Avenue, Brooklyn, NY", + "date": "1936", + "title": "Brooklyn: Grand Avenue - St. Marks Avenue", + "alt_title": "", + "back_id": "704683b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "Grand Avenue, north from and across St. Marks Avenue, showing a W. P. A. sewer project.\n\n1936\n\nWorks Progress Administration\nFive Boroughs Project\nCREDIT LINE IMPERATIVE" + } + }, + { + "photo_id": "727568f-b", + "before": "Northern Boulevard, south side, east of Main Street, showing three views (from three different angles) of the Quaker Meeting House of Flushing, built in 1694. The Quakers held their first annual meeting here on May 30th, 1696. The British, during the Revolution, used the structure as a barrack, hospital, prison and bay magazine.\nView 1: 1922\nViews 2,3: July, 1925\nEugene L. Armbruster Collection\n", + "after": "Northern Boulevard, south side, east of Main Street, showing three views (from three different angles) of the Quaker Meeting House of Flushing, built in 1694. The Quakers held their first annual meeting here on May 30th, 1696. The British, during the Revolution, used the structure as a barrack, hospital, prison and bay magazine.\n\nView 1: 1922\nViews 2,3: July, 1925\n\nEugene L. Armbruster Collection", + "metadata": { + "cookie": "eval", + "len_base": 398, + "len_exp": 399, + "distance": 0, + "score": 1.0, + "back_id": "727568b", + "record": { + "id": "727568f", + "photo_url": "http://images.nypl.org/index.php?id=727568f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?727568f", + "location": "Northern Boulevard & Main Street, Queens, NY", + "date": "1922; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1925", + "title": "Queens: Northern Boulevard - Main Street", + "alt_title": "", + "back_id": "727568b", + "borough": "Queens", + "outside_nyc": false + }, + "raw_text": "Northern Boulevard, south side, east of Main Street, showing three views (from three different angles) of the Quaker Meeting House of Flushing, built in 1694. The Quakers held their first annual meeting here on May 30th, 1696. The British, during the Revolution, used the structure as a barrack, hospital, prison and bay magazine.\n\nView 1: 1922\nViews 2,3: July, 1925\n\nEugene L. Armbruster Collection\nMAY BE REPRODUCED" + } + }, + { + "photo_id": "710342f", + "before": "9th Ave., e.s., south of 23rd St. June 18, 1941\nP.L. Sperr, photographer", + "after": "9th Ave., e.s., south of 23rd St. June 18, 1941\nP.L. Sperr, photographer", + "metadata": { + "cookie": "eval", + "len_base": 72, + "len_exp": 72, + "distance": 0, + "score": 1.0, + "back_id": "710342b", + "record": { + "id": "710342f", + "photo_url": "http://images.nypl.org/index.php?id=710342f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?710342f", + "location": "9th Avenue & 23rd Street, Manhattan, NY", + "date": "1941", + "title": "Manhattan: 9th Avenue - 23rd Street", + "alt_title": "", + "back_id": "710342b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "9th Ave., e.s., south of 23rd St. June 18, 1941\nP.L. Sperr, photographer" + } + }, + { + "photo_id": "700872f-a", + "before": "E. Burnside Avenue, north side, at Ryer Avenue. Extending to the background is the west side of Ryer Avenue.\nFebruary 1, 1938.\nP. L. Sperr.\n", + "after": "E. Burnside Avenue, north side, at Ryer Avenue. Extending to the background is the west side of Ryer Avenue.\n\nFebruary 1, 1938.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 140, + "len_exp": 141, + "distance": 0, + "score": 1.0, + "back_id": "700872b", + "record": { + "id": "700872f", + "photo_url": "http://images.nypl.org/index.php?id=700872f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?700872f", + "location": "Burnside Avenue (Eas & Ryer Avenue, Bronx, NY", + "date": "", + "title": "Bronx: Burnside Avenue (Eas - Ryer Avenue", + "alt_title": "", + "back_id": "700872b", + "borough": "Bronx", + "outside_nyc": false + }, + "raw_text": "E. Burnside Avenue, north side, at Ryer Avenue. Extending to the background is the west side of Ryer Avenue.\n\nFebruary 1, 1938.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "731668f-b", + "before": "Feast of Our Lady of Mt. Carmel-1939: Mobile refreshment purveyors at the Carnival grounds at Pleasant Avenue and East 115th Street. The view is eastward across the cleared site of the future Benjamin Franklin High School. Note the Triboro and Hellgate Bridges in the background.\nJuly 16, 1939\nNo's. 13-14-15\nP. L. Sperr\n", + "after": "Feast of Our Lady of Mt. Carmel-1939: Mobile refreshment purveyors at the Carnival grounds at Pleasant Avenue and East 115th Street. The view is eastward across the cleared site of the future Benjamin Franklin High School. Note the Triboro and Hellgate Bridges in the background.\n\nJuly 16, 1939\nNo's. 13-14-15\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 321, + "len_exp": 322, + "distance": 0, + "score": 1.0, + "back_id": "731668b", + "record": { + "id": "731668f", + "photo_url": "http://images.nypl.org/index.php?id=731668f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?731668f", + "location": "115th Street (East) and Pleasant Avenue, Manhattan, N.Y.", + "date": "1939; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\tJuly 1939", + "title": "Feast of Our Lady of Mount Carmel.", + "alt_title": "[Manhattan: 115th Street (East) - Pleasant Avenue.]", + "back_id": "731668b", + "borough": null, + "outside_nyc": false + }, + "raw_text": "Feast of Our Lady of Mt. Carmel-1939: Mobile refreshment purveyors at the Carnival grounds at Pleasant Avenue and East 115th Street. The view is eastward across the cleared site of the future Benjamin Franklin High School. Note the Triboro and Hellgate Bridges in the background.\n\nJuly 16, 1939\nNo's. 13-14-15\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "726323f", + "before": "Chisholm Park. Whitestone.\n4B\nccc", + "after": "Chisholm Park. Whitestone.\n\n4B\nccc", + "metadata": { + "cookie": "eval", + "len_base": 33, + "len_exp": 34, + "distance": 0, + "score": 1.0, + "back_id": "726323b", + "record": { + "id": "726323f", + "photo_url": "http://images.nypl.org/index.php?id=726323f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?726323f", + "location": "Chisholm Park & [Whitestone.], Queens, NY", + "date": "n.d", + "title": "Queens: Chisholm Park - [Whitestone.]", + "alt_title": "", + "back_id": "726323b", + "borough": "Queens", + "outside_nyc": false + }, + "raw_text": "Chisholm Park. Whitestone.\n\n4B\nccc" + } + }, + { + "photo_id": "710321f-a", + "before": "113 and 115 Ninth Avenue, at and adjoining the N.W. corner of W. 17th Street (foreground), showing the rears of these frame buildings as viewed across the cleared site where stood No's 405-7-9 W. 17th Street. These were also of frame construction.\nThe new law tenement at the left is No. 117 Ninth Avenue. The margin on the right eliminates a view of that thoroughfare and its elevated line.\nApril 15, 1936\n", + "after": "113 and 115 Ninth Avenue, at and adjoining the N.W. corner of W. 17th Street (foreground), showing the rears of these frame buildings as viewed across the cleared site where stood No's 405-7-9 W. 17th Street. These were also of frame construction.\n\nThe new law tenement at the left is No. 117 Ninth Avenue. The margin on the right eliminates a view of that thoroughfare and its elevated line.\n\nApril 15, 1936\n", + "metadata": { + "cookie": "eval", + "len_base": 407, + "len_exp": 409, + "distance": 0, + "score": 1.0, + "back_id": "710321b", + "record": { + "id": "710321f", + "photo_url": "http://images.nypl.org/index.php?id=710321f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?710321f", + "location": "9th Avenue & 17th Street, Manhattan, NY", + "date": "", + "title": "Manhattan: 9th Avenue - 17th Street", + "alt_title": "", + "back_id": "710321b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "113 and 115 Ninth Avenue, at and adjoining the N.W. corner of W. 17th Street (foreground), showing the rears of these frame buildings as viewed across the cleared site where stood No's 405-7-9 W. 17th Street. These were also of frame construction.\n\nThe new law tenement at the left is No. 117 Ninth Avenue. The margin on the right eliminates a view of that thoroughfare and its elevated line.\n\nApril 15, 1936\n\nMAY BE REPRODUCED" + } + }, + { + "photo_id": "721431f-a", + "before": "Madison Avenue, west side, from 70th to 71st Streets. In foreground on east side Presbyterian Hospital has just been demolished.\nJune 8, 1928.\nP.L.Sperr, Photographer.\n", + "after": "Madison Avenue, west side, from 70th to 71st Streets. In foreground on east side Presbyterian Hospital has just been demolished. June 8, 1928.\n\nP.L.Sperr, Photographer.", + "metadata": { + "cookie": "eval", + "len_base": 168, + "len_exp": 168, + "distance": 0, + "score": 1.0, + "back_id": "721431b", + "record": { + "id": "721431f", + "photo_url": "http://images.nypl.org/index.php?id=721431f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?721431f", + "location": "Madison Avenue & 70th Street, Manhattan, NY", + "date": "1928", + "title": "Manhattan: Madison Avenue - 70th Street", + "alt_title": "", + "back_id": "721431b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Madison Avenue, west side, from 70th to 71st Streets. In foreground on east side Presbyterian Hospital has just been demolished. June 8, 1928.\n\nP.L.Sperr, Photographer.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "715314f-a", + "before": "58-62 West 124th Street, south side, between Lenox Ave. and Mt.\nMorris Park West.\nAbout 1913.\n", + "after": "58-62 West 124th Street, south side, between Lenox Ave. and Mt. Morris Park West.\nAbout 1913.", + "metadata": { + "cookie": "eval", + "len_base": 94, + "len_exp": 93, + "distance": 0, + "score": 1.0, + "back_id": "715314b", + "record": { + "id": "715314f", + "photo_url": "http://images.nypl.org/index.php?id=715314f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?715314f", + "location": "124th Street (West) & Lenox Avenue, Manhattan, NY", + "date": "1913", + "title": "Manhattan: 124th Street (West) - Lenox Avenue", + "alt_title": "", + "back_id": "715314b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "58-62 West 124th Street, south side, between Lenox Ave. and Mt. Morris Park West.\nAbout 1913.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "713327f-a", + "before": "12-16 West 48th Street, south side, west of Fifth Avenue.\nAbout 1911.\nGift of E. M. Jenks.\n", + "after": "12-16 West 48th Street, south side, west of Fifth Avenue.\nAbout 1911.\n\nGift of E. M. Jenks.", + "metadata": { + "cookie": "eval", + "len_base": 91, + "len_exp": 91, + "distance": 0, + "score": 1.0, + "back_id": "713327b", + "record": { + "id": "713327f", + "photo_url": "http://images.nypl.org/index.php?id=713327f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?713327f", + "location": "48th Street (West) & 5th Avenue, Manhattan, NY", + "date": "", + "title": "Manhattan: 48th Street (West) - 5th Avenue", + "alt_title": "", + "back_id": "713327b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "12-16 West 48th Street, south side, west of Fifth Avenue.\nAbout 1911.\n\nGift of E. M. Jenks.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "717708f-c", + "before": "(1)\nBroadway, north from West 114th Street, showing on the west side (left), three apartment houses the Luxor, Regnor and Rexor that face units of Columbia University (right). The latter in the order of their appearance are: Furnald Hall, the School of Journalism, the School for Business and the School of Mines.\nSeptember 3, 1937.\nP. L. Sperr.\n(2)\nA view solely of the University Building and grounds. Note the gabled house, at the N.E. corner of Broadway and West 114th Street.\nSeptember 3, 1937.\nP. L. Sperr.\n(3)\nA detail of No. 2, showing the aforementioned cottage. On the extreme right appears a portion of South Hall and Library.\nSeptember 3, 1937.\nP. L. Sperr.\n", + "after": "(1) Broadway, north from West 114th Street, showing on the west side (left), three apartment houses the Luxor, Regnor and Rexor that face units of Columbia University (right). The latter in the order of their appearance are: Furnald Hall, the School of Journalism, the School for Business and the School of Mines.\n\nSeptember 3, 1937.\n\nP. L. Sperr.\n\n(2) A view solely of the University Building and grounds. Note the gabled house, at the N.E. corner of Broadway and West 114th Street.\n\nSeptember 3, 1937.\n\nP. L. Sperr.\n\n(3) A detail of No. 2, showing the aforementioned cottage. On the extreme right appears a portion of South Hall and Library.\n\nSeptember 3, 1937.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 670, + "len_exp": 677, + "distance": 0, + "score": 1.0, + "back_id": "717708b", + "record": { + "id": "717708f", + "photo_url": "http://images.nypl.org/index.php?id=717708f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?717708f", + "location": "Broadway & 114th Street (West), Manhattan, NY", + "date": "1937", + "title": "Manhattan: Broadway - 114th Street (West)", + "alt_title": "", + "back_id": "717708b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1) Broadway, north from West 114th Street, showing on the west side (left), three apartment houses the Luxor, Regnor and Rexor that face units of Columbia University (right). The latter in the order of their appearance are: Furnald Hall, the School of Journalism, the School for Business and the School of Mines.\n\nSeptember 3, 1937.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2) A view solely of the University Building and grounds. Note the gabled house, at the N.E. corner of Broadway and West 114th Street.\n\nSeptember 3, 1937.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(3) A detail of No. 2, showing the aforementioned cottage. On the extreme right appears a portion of South Hall and Library.\n\nSeptember 3, 1937.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "729319f-a", + "before": "Richmond Avenue, west side, north from Ann Street, across the Staten Island Railroad tracks, showing the Dutch Reformed Church at the head of Church Street.\nApril 10, 1930\nP. L. Sperr\n", + "after": "Richmond Avenue, west side, north from Ann Street, across the Staten Island Railroad tracks, showing the Dutch Reformed Church at the head of Church Street.\n\nApril 10, 1930\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 184, + "len_exp": 185, + "distance": 0, + "score": 1.0, + "back_id": "729319b", + "record": { + "id": "729319f", + "photo_url": "http://images.nypl.org/index.php?id=729319f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?729319f", + "location": "Richmond Avenue & Ann Street, Staten Island, NY", + "date": "1930", + "title": "Richmond: Richmond Avenue - Ann Street", + "alt_title": "", + "back_id": "729319b", + "borough": "Staten Island", + "outside_nyc": false + }, + "raw_text": "Richmond Avenue, west side, north from Ann Street, across the Staten Island Railroad tracks, showing the Dutch Reformed Church at the head of Church Street.\n\nApril 10, 1930\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "721675f-b", + "before": "(1)\nMonroe Street, west from and including Market Street. Also shown is Market Street, west side, north from Hamilton, to and including Monroe\nStreets.\nSeptember 7, 1927.\nP. L. Sperr.\n(2)\nAnother view, showing a view westward on Hamilton (left) Street. Minarets shown on the right are atop P.S. No. 177, at the S.E. corner of Market and\nMonroe Streets.\nJune 1929.\nEugene L. Armbruster Collection.\n", + "after": "(1)\nMonroe Street, west from and including Market Street. Also shown is Market Street, west side, north from Hamilton, to and including Monroe Streets.\nSeptember 7, 1927.\n\nP. L. Sperr.\n\n(2)\nAnother view, showing a view westward on Hamilton (left) Street. Minarets shown on the right are atop P.S. No. 177, at the S.E. corner of Market and Monroe Streets.\nJune 1929.\n\nEugene L. Armbruster Collection.", + "metadata": { + "cookie": "eval", + "len_base": 397, + "len_exp": 399, + "distance": 0, + "score": 1.0, + "back_id": "721675b", + "record": { + "id": "721675f", + "photo_url": "http://images.nypl.org/index.php?id=721675f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?721675f", + "location": "Hamilton Street & 143rd Street (West), Manhattan, NY", + "date": "1929", + "title": "Manhattan: Hamilton Street - 143rd Street (West)", + "alt_title": "", + "back_id": "721675b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1)\nMonroe Street, west from and including Market Street. Also shown is Market Street, west side, north from Hamilton, to and including Monroe Streets.\nSeptember 7, 1927.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2)\nAnother view, showing a view westward on Hamilton (left) Street. Minarets shown on the right are atop P.S. No. 177, at the S.E. corner of Market and Monroe Streets.\nJune 1929.\n\nEugene L. Armbruster Collection.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "727439f-a", + "before": "Mott Ave., north side, east of Beach 19th Street, showing St. Johns Church (Episcopal). It was probably erected on land of\nBenjamin B. Mott in 1873.\nApril 1925.\nEugene L. Armbruster Collection.\n", + "after": "Mott Ave., north side, east of Beach 19th Street, showing St. Johns Church (Episcopal). It was probably erected on land of Benjamin B. Mott in 1873.\n\nApril 1925.\n\nEugene L. Armbruster Collection.", + "metadata": { + "cookie": "eval", + "len_base": 194, + "len_exp": 195, + "distance": 0, + "score": 1.0, + "back_id": "727439b", + "record": { + "id": "727439f", + "photo_url": "http://images.nypl.org/index.php?id=727439f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?727439f", + "location": "Mott Avenue & Beach 19th Street, Queens, NY", + "date": "1925", + "title": "Queens: Mott Avenue - Beach 19th Street", + "alt_title": "", + "back_id": "727439b", + "borough": "Queens", + "outside_nyc": false + }, + "raw_text": "Mott Ave., north side, east of Beach 19th Street, showing St. Johns Church (Episcopal). It was probably erected on land of Benjamin B. Mott in 1873.\n\nApril 1925.\n\nEugene L. Armbruster Collection.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "700430f-a", + "before": "Arthur Ave. adj n.e. cor. 181st Street\n8-27-1942\nNeg. A-305", + "after": "Arthur Ave. adj n.e. cor. 181st Street\n\n8-27-1942\n\nNeg. A-305", + "metadata": { + "cookie": "eval", + "len_base": 59, + "len_exp": 61, + "distance": 0, + "score": 1.0, + "back_id": "700430b", + "record": { + "id": "700430f", + "photo_url": "http://images.nypl.org/index.php?id=700430f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?700430f", + "location": "Arthur Avenue & 181st Street, Bronx, NY", + "date": "", + "title": "Bronx: Arthur Avenue - 181st Street", + "alt_title": "", + "back_id": "700430b", + "borough": "Bronx", + "outside_nyc": false + }, + "raw_text": "Arthur Ave. adj n.e. cor. 181st Street\n\n8-27-1942\n\nNeg. A-305" + } + }, + { + "photo_id": "717662f-a", + "before": "The Amsterdam Avenue side of the nearly completed Central Savings Bank, Broadway, east side, from 73rd to 74th Streets.\nMarch 2, 1928.\nGift of York & Sawyer.\n", + "after": "The Amsterdam Avenue side of the nearly completed Central Savings Bank, Broadway, east side, from 73rd to 74th Streets.\n\nMarch 2, 1928.\n\nGift of York & Sawyer.", + "metadata": { + "cookie": "eval", + "len_base": 158, + "len_exp": 159, + "distance": 0, + "score": 1.0, + "back_id": "717662b", + "record": { + "id": "717662f", + "photo_url": "http://images.nypl.org/index.php?id=717662f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?717662f", + "location": "Broadway & 73rd Street, Manhattan, NY", + "date": "1928", + "title": "Manhattan: Broadway - 73rd Street", + "alt_title": "", + "back_id": "717662b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "The Amsterdam Avenue side of the nearly completed Central Savings Bank, Broadway, east side, from 73rd to 74th Streets.\n\nMarch 2, 1928.\n\nGift of York & Sawyer.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "702703f-a", + "before": "West 31st Street (rear view), between Neptune (right) to Canal Aves., (left), showing filled in swamp land, to be used as a recreational center.\nMay 17, 1936.\nP. L. Sperr.\n", + "after": "West 31st Street (rear view), between Neptune (right) to Canal Aves., (left), showing filled in swamp land, to be used as a recreational center.\n\nMay 17, 1936.\n\nP. L. Sperr.\n", + "metadata": { + "cookie": "eval", + "len_base": 172, + "len_exp": 174, + "distance": 0, + "score": 1.0, + "back_id": "702703b", + "record": { + "id": "702703f", + "photo_url": "http://images.nypl.org/index.php?id=702703f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?702703f", + "location": "31st Street (West) & Neptune Avenue, Brooklyn, NY", + "date": "", + "title": "Brooklyn: 31st Street (West) - Neptune Avenue", + "alt_title": "", + "back_id": "702703b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "West 31st Street (rear view), between Neptune (right) to Canal Aves., (left), showing filled in swamp land, to be used as a recreational center.\n\nMay 17, 1936.\n\nP. L. Sperr.\nno reproductions." + } + }, + { + "photo_id": "710765f-c", + "before": "Twelfth Avenue, north across West 42nd Street, showing the West Side Vehicular Highway under construction. View 2 details the pedestrian activity on 42nd Street. The individuals shown are moving eastward after their arrival on the Weehawken Ferry from New Jersey. No. 3 is similar to View 1, showing completion of structural work at this point.\n\n1-2: May 30, 1934\n3: Oct 20, 1939\n\nP. L. Sperr\n", + "after": "Twelfth Avenue, north across West 42nd Street, showing the West Side Vehicular Highway under construction. View 2 details the pedestrian activity on 42nd Street. The individuals shown are moving eastward after their arrival on the Weehawken Ferry from New Jersey. No. 3 is similar to View 1, showing completion of structural work at this point.\n\n1-2: May 30, 1934\n3: Oct 20, 1939\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 393, + "len_exp": 392, + "distance": 0, + "score": 1.0, + "back_id": "710765b", + "record": { + "id": "710765f", + "photo_url": "http://images.nypl.org/index.php?id=710765f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?710765f", + "location": "12th Avenue & 42nd Street, Manhattan, NY", + "date": "1934; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1939", + "title": "Manhattan: 12th Avenue - 42nd Street", + "alt_title": "", + "back_id": "710765b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Twelfth Avenue, north across West 42nd Street, showing the West Side Vehicular Highway under construction. View 2 details the pedestrian activity on 42nd Street. The individuals shown are moving eastward after their arrival on the Weehawken Ferry from New Jersey. No. 3 is similar to View 1, showing completion of structural work at this point.\n\n1-2: May 30, 1934\n3: Oct 20, 1939\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "730730f", + "before": "The Brooklyn Bridge and Manhattan's Wall Street outline as photographed southwestward from the Manhattan Bridge.\n\nAlexander Alland\nNeg. # 4069\n1939", + "after": "The Brooklyn Bridge and Manhattan's Wall Street outline as photographed southwestward from the Manhattan Bridge.\n\nAlexander Alland\n\nNeg. # 4069\n\n1939", + "metadata": { + "cookie": "eval", + "len_base": 147, + "len_exp": 149, + "distance": 0, + "score": 1.0, + "back_id": "730730b", + "record": { + "id": "730730f", + "photo_url": "http://images.nypl.org/index.php?id=730730f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?730730f", + "location": "Brooklyn Bridge, New York, N.Y.", + "date": "1939", + "title": "Bridges - Brooklyn Bridge - [Wall Street outline - Lower Manhattan skyline.]", + "alt_title": "", + "back_id": "730730b", + "borough": null, + "outside_nyc": false + }, + "raw_text": "The Brooklyn Bridge and Manhattan's Wall Street outline as photographed southwestward from the Manhattan Bridge.\n\nAlexander Alland\nNO REPRODUCTIONS\n\nNeg. # 4069\n\n1939" + } + }, + { + "photo_id": "722405f-b", + "before": "view 1: Park Avenue, w.s., n. fr. nr. 129th St.\nNeg. no. A-1250\nview 2: Park Avenue, w.s., n. fr. nr. 129th St.\nNeg. no. A-1248\nP. L. Sperr, photographer\nApril 25, 1941\n", + "after": "view 1: Park Avenue, w.s., n. fr. nr. 129th St.\nNeg. no. A-1250\n\nview 2: Park Avenue, w.s., n. fr. nr. 129th St.\nNeg. no. A-1248\n\nP. L. Sperr, photographer\nApril 25, 1941", + "metadata": { + "cookie": "eval", + "len_base": 169, + "len_exp": 170, + "distance": 0, + "score": 1.0, + "back_id": "722405b", + "record": { + "id": "722405f", + "photo_url": "http://images.nypl.org/index.php?id=722405f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?722405f", + "location": "Park Avenue & 129th Street, Manhattan, NY", + "date": "1941; \n\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t1948", + "title": "Manhattan: Park Avenue - 129th Street", + "alt_title": "", + "back_id": "722405b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "view 1: Park Avenue, w.s., n. fr. nr. 129th St.\nNeg. no. A-1250\n\nview 2: Park Avenue, w.s., n. fr. nr. 129th St.\nNeg. no. A-1248\n\nP. L. Sperr, photographer\nApril 25, 1941" + } + }, + { + "photo_id": "720349f-a", + "before": "Haven Avenue and about 176th Street, looking west from Riverside Drive.\nP. L. Sperr\nSummer 1923\n", + "after": "Haven Avenue and about 176th Street, looking west from Riverside Drive.\n\nP. L. Sperr\n\nSummer 1923\n", + "metadata": { + "cookie": "eval", + "len_base": 96, + "len_exp": 98, + "distance": 0, + "score": 1.0, + "back_id": "720349b", + "record": { + "id": "720349f", + "photo_url": "http://images.nypl.org/index.php?id=720349f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?720349f", + "location": "Haven Avenue & 176th Street, Manhattan, NY", + "date": "1923", + "title": "Manhattan: Haven Avenue - 176th Street", + "alt_title": "", + "back_id": "720349b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Haven Avenue and about 176th Street, looking west from Riverside Drive.\n\nP. L. Sperr\n\nSummer 1923\n\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "721573f-a", + "before": "Maiden Lane, north side, east from but not including Pearl Street. This view also shows Fire Engine Company No. 4 at 119 Maiden Lane,\neast of Pearl Street.\nJune 14, 1930.\nP. L. Sperr.\n", + "after": "Maiden Lane, north side, east from but not including Pearl Street. This view also shows Fire Engine Company No. 4 at 119 Maiden Lane, east of Pearl Street.\n\nJune 14, 1930.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 184, + "len_exp": 185, + "distance": 0, + "score": 1.0, + "back_id": "721573b", + "record": { + "id": "721573f", + "photo_url": "http://images.nypl.org/index.php?id=721573f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?721573f", + "location": "Maiden Lane & Pearl Street, Manhattan, NY", + "date": "1930", + "title": "Manhattan: Maiden Lane - Pearl Street", + "alt_title": "", + "back_id": "721573b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Maiden Lane, north side, east from but not including Pearl Street. This view also shows Fire Engine Company No. 4 at 119 Maiden Lane, east of Pearl Street.\n\nJune 14, 1930.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "732111f-b", + "before": "Plumb Island, easterly end, showing a shack thereon. In the far background appears the Administrative buildings of Floyd Bennett Field and to the right of them Barren Island which is distinguishable by its smoke stack. This is a set of two views taken the same day.\nJuly 7, 1935.\nP. L. Sperr.\n", + "after": "Plumb Island, easterly end, showing a shack thereon. In the far background appears the Administrative buildings of Floyd Bennett Field and to the right of them Barren Island which is distinguishable by its smoke stack. This is a set of two views taken the same day.\nJuly 7, 1935.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 293, + "len_exp": 293, + "distance": 0, + "score": 1.0, + "back_id": "732111b", + "record": { + "id": "732111f", + "photo_url": "http://images.nypl.org/index.php?id=732111f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?732111f", + "location": "Plumb Island, Brooklyn, N.Y.", + "date": "1935", + "title": "Islands - Plumb Island - Brooklyn.", + "alt_title": "", + "back_id": "732111b", + "borough": null, + "outside_nyc": false + }, + "raw_text": "Plumb Island, easterly end, showing a shack thereon. In the far background appears the Administrative buildings of Floyd Bennett Field and to the right of them Barren Island which is distinguishable by its smoke stack. This is a set of two views taken the same day.\nJuly 7, 1935.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "707352f-a", + "before": "1. Williams Ave. south from Glenmore Ave.\nP.L. Sperr, photographer\nNeg. A-255\nJuly 24, 1941\n", + "after": "1. Williams Ave. south from Glenmore Ave.\nP.L. Sperr, photographer\nNeg. A-255\nJuly 24, 1941", + "metadata": { + "cookie": "eval", + "len_base": 92, + "len_exp": 91, + "distance": 0, + "score": 1.0, + "back_id": "707352b", + "record": { + "id": "707352f", + "photo_url": "http://images.nypl.org/index.php?id=707352f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?707352f", + "location": "Williams Ave. & Glenmore Ave., Brooklyn, NY", + "date": "1941", + "title": "Brooklyn: Williams Ave. - Glenmore Ave.", + "alt_title": "", + "back_id": "707352b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "1. Williams Ave. south from Glenmore Ave.\nP.L. Sperr, photographer\nNeg. A-255\nJuly 24, 1941" + } + }, + { + "photo_id": "700749f-a", + "before": "319 to 329 City Island Avenue (City Island), adjoining and at the S. W. corner of Bay Street. The long 2-story frame building bears Nos. 321 to 329. In the center of the house, at No. 325, is the City Island Branch of the New York Public Library (note small sign above entrance), and at 329, at the corner where the United States flag is seen, is the City Island station of the United States Post Office.\nJuly 6, 1928\nP. L. Sperr\n", + "after": "319 to 329 City Island Avenue (City Island), adjoining and at the S. W. corner of Bay Street. The long 2-story frame building bears Nos. 321 to 329. In the center of the house, at No. 325, is the City Island Branch of the New York Public Library (note small sign above entrance), and at 329, at the corner where the United States flag is seen, is the City Island station of the United States Post Office.\n\nJuly 6, 1928\n\nP. L. Sperr", + "metadata": { + "cookie": "eval", + "len_base": 430, + "len_exp": 431, + "distance": 0, + "score": 1.0, + "back_id": "700749b", + "record": { + "id": "700749f", + "photo_url": "http://images.nypl.org/index.php?id=700749f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?700749f", + "location": "City Island Avenue & Bay Street, Bronx, NY", + "date": "", + "title": "Bronx: City Island Avenue - Bay Street", + "alt_title": "", + "back_id": "700749b", + "borough": "Bronx", + "outside_nyc": false + }, + "raw_text": "319 to 329 City Island Avenue (City Island), adjoining and at the S. W. corner of Bay Street. The long 2-story frame building bears Nos. 321 to 329. In the center of the house, at No. 325, is the City Island Branch of the New York Public Library (note small sign above entrance), and at 329, at the corner where the United States flag is seen, is the City Island station of the United States Post Office.\n\nJuly 6, 1928\n\nP. L. Sperr\nNO REPRODUCTIONS" + } + }, + { + "photo_id": "720842f-a", + "before": "1. Lenox Ave. & 116th St., n.e. cor.\nNeg. A-169\nP.L. Sperr, photographer\nJuly 9, 1941", + "after": "1. Lenox Ave. & 116th St., n.e. cor. Neg. A-169\nP.L. Sperr, photographer\nJuly 9, 1941", + "metadata": { + "cookie": "eval", + "len_base": 85, + "len_exp": 85, + "distance": 0, + "score": 1.0, + "back_id": "720842b", + "record": { + "id": "720842f", + "photo_url": "http://images.nypl.org/index.php?id=720842f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?720842f", + "location": "Lenox Avenue & 116th Street, Manhattan, NY", + "date": "1941", + "title": "Manhattan: Lenox Avenue - 116th Street", + "alt_title": "", + "back_id": "720842b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "1. Lenox Ave. & 116th St., n.e. cor. Neg. A-169\nP.L. Sperr, photographer\nJuly 9, 1941" + } + }, + { + "photo_id": "722267f-a", + "before": "Park Ave., at the S.E. corner of East 54th Street. July 11, 1936.\n\nP. L. Sperr.\n", + "after": "Park Ave., at the S.E. corner of East 54th Street.\nJuly 11, 1936.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 80, + "len_exp": 79, + "distance": 0, + "score": 1.0, + "back_id": "722267b", + "record": { + "id": "722267f", + "photo_url": "http://images.nypl.org/index.php?id=722267f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?722267f", + "location": "Park Avenue & 51st Street, Manhattan, NY", + "date": "1928", + "title": "Manhattan: Park Avenue - 51st Street", + "alt_title": "", + "back_id": "722267b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Park Ave., at the S.E. corner of East 54th Street.\nJuly 11, 1936.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "710698f-a", + "before": "Eleventh Avenue at N.E. corner of 43rd Street.\nMarch 26, 1935.\nP. L. Sperr.\n", + "after": "Eleventh Avenue at N.E. corner of 43rd Street.\nMarch 26, 1935.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 76, + "len_exp": 76, + "distance": 0, + "score": 1.0, + "back_id": "710698b", + "record": { + "id": "710698f", + "photo_url": "http://images.nypl.org/index.php?id=710698f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?710698f", + "location": "11th Avenue & 43rd Street, Manhattan, NY", + "date": "1935", + "title": "Manhattan: 11th Avenue - 43rd Street", + "alt_title": "", + "back_id": "710698b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "Eleventh Avenue at N.E. corner of 43rd Street.\nMarch 26, 1935.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "703816f-a", + "before": "(1)\nCortelyou Road, south side, west of East 40th Street, showing the Michel Cummings house (foreground) which was occupied by W. Cummings in 1873; and now falling into decay. Also seen are rears of houses which face East 39th Street.\nMarch 1925.\nEugene L. Armbruster Collection.\n\n(2)\nThe same area, further westward, showing also the Holy Cross Cemetery at the right.\nOctober 1928.\nEugene L. Armbruster Collection.\n", + "after": "(1)\nCortelyou Road, south side, west of East 40th Street, showing the Michel Cummings house (foreground) which was occupied by W. Cummings in 1873; and now falling into decay. Also seen are rears of houses which face East 39th Street.\nMarch 1925.\nEugene L. Armbruster Collection.\n\n(2)\nThe same area, further westward, showing also the Holy Cross Cemetery at the right.\nOctober 1928.\nEugene L. Armbruster Collection.", + "metadata": { + "cookie": "eval", + "len_base": 416, + "len_exp": 415, + "distance": 0, + "score": 1.0, + "back_id": "703816b", + "record": { + "id": "703816f", + "photo_url": "http://images.nypl.org/index.php?id=703816f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?703816f", + "location": "Cortelyou Road & 40th Street, Brooklyn, NY", + "date": "", + "title": "Brooklyn: Cortelyou Road - 40th Street", + "alt_title": "", + "back_id": "703816b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "(1)\nCortelyou Road, south side, west of East 40th Street, showing the Michel Cummings house (foreground) which was occupied by W. Cummings in 1873; and now falling into decay. Also seen are rears of houses which face East 39th Street.\nMarch 1925.\nEugene L. Armbruster Collection.\nMAY BE REPRODUCED.\n\n(2)\nThe same area, further westward, showing also the Holy Cross Cemetery at the right.\nOctober 1928.\nEugene L. Armbruster Collection.\nMAY BE REPRODUCED." + } + }, + { + "photo_id": "724357f-b", + "before": "(1)\nAn aerial view of West Broadway, north from and including Barclay Street. Also shown is Barclay Street, at West Broadway.\nApril 3, 1934.\nP. L. Sperr.\n(2)\nThe same, from a different angle.\nApril 3, 1934.\nP. L. Sperr.\n", + "after": "(1)\nAn aerial view of West Broadway, north from and including Barclay Street. Also shown is Barclay Street, at West Broadway.\n\nApril 3, 1934.\n\nP. L. Sperr.\n\n(2)\nThe same, from a different angle.\n\nApril 3, 1934.\n\nP. L. Sperr.", + "metadata": { + "cookie": "eval", + "len_base": 220, + "len_exp": 224, + "distance": 0, + "score": 1.0, + "back_id": "724357b", + "record": { + "id": "724357f", + "photo_url": "http://images.nypl.org/index.php?id=724357f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?724357f", + "location": "West Broadway & Barclay Street, Manhattan, NY", + "date": "1934", + "title": "Manhattan: West Broadway - Barclay Street", + "alt_title": "", + "back_id": "724357b", + "borough": "Manhattan", + "outside_nyc": false + }, + "raw_text": "(1)\nAn aerial view of West Broadway, north from and including Barclay Street. Also shown is Barclay Street, at West Broadway.\n\nApril 3, 1934.\n\nP. L. Sperr.\nNO REPRODUCTIONS.\n\n(2)\nThe same, from a different angle.\n\nApril 3, 1934.\n\nP. L. Sperr.\nNO REPRODUCTIONS." + } + }, + { + "photo_id": "706236f-a", + "before": "68-76 Pennsylvania Ave., west side, north of Atlantic Ave. To the right partially seen, is the Tyrian Temple. The building bearing the sign was the old New Lots post-office, said to have been built by a Col. Brown (?) in the 1870's. His son Miles A. Brown was postmaster in 1874.\n1922.\nEugene L. Armbruster Collection.", + "after": "68-76 Pennsylvania Ave., west side, north of Atlantic Ave. To the right partially seen, is the Tyrian Temple. The building bearing the sign was the old New Lots post-office, said to have been built by a Col. Brown (?) in the 1870's. His son Miles A. Brown was postmaster in 1874.\n\n1922.\n\nEugene L. Armbruster Collection.", + "metadata": { + "cookie": "eval", + "len_base": 318, + "len_exp": 320, + "distance": 0, + "score": 1.0, + "back_id": "706236b", + "record": { + "id": "706236f", + "photo_url": "http://images.nypl.org/index.php?id=706236f&t=w", + "preferred_url": "http://digitalgallery.nypl.org/nypldigital/id?706236f", + "location": "Pennsylvania Avenue & Atlantic Avenue, Brooklyn, NY", + "date": "1922", + "title": "Brooklyn: Pennsylvania Avenue - Atlantic Avenue", + "alt_title": "", + "back_id": "706236b", + "borough": "Brooklyn", + "outside_nyc": false + }, + "raw_text": "68-76 Pennsylvania Ave., west side, north of Atlantic Ave. To the right partially seen, is the Tyrian Temple. The building bearing the sign was the old New Lots post-office, said to have been built by a Col. Brown (?) in the 1870's. His son Miles A. Brown was postmaster in 1874.\n\n1922.\n\nEugene L. Armbruster Collection.\nMAY BE REPRODUCED." + } + } +]; \ No newline at end of file diff --git a/ocr/feedback/review/codediff.css b/data/feedback/review/codediff.css similarity index 100% rename from ocr/feedback/review/codediff.css rename to data/feedback/review/codediff.css diff --git a/ocr/feedback/review/codediff.js b/data/feedback/review/codediff.js similarity index 100% rename from ocr/feedback/review/codediff.js rename to data/feedback/review/codediff.js diff --git a/ocr/feedback/review/difflib.js b/data/feedback/review/difflib.js similarity index 100% rename from ocr/feedback/review/difflib.js rename to data/feedback/review/difflib.js diff --git a/ocr/feedback/review/index.html b/data/feedback/review/index.html similarity index 100% rename from ocr/feedback/review/index.html rename to data/feedback/review/index.html diff --git a/ocr/feedback/review/jquery-1.8.3.min.js b/data/feedback/review/jquery-1.8.3.min.js similarity index 100% rename from ocr/feedback/review/jquery-1.8.3.min.js rename to data/feedback/review/jquery-1.8.3.min.js diff --git a/ocr/feedback/review/review.js b/data/feedback/review/review.js similarity index 100% rename from ocr/feedback/review/review.js rename to data/feedback/review/review.js diff --git a/ocr/feedback/review/style.css b/data/feedback/review/style.css similarity index 100% rename from ocr/feedback/review/style.css rename to data/feedback/review/style.css diff --git a/geogpt/geocodes.json b/data/gpt-geocodes.json similarity index 100% rename from geogpt/geocodes.json rename to data/gpt-geocodes.json diff --git a/nyc/gpt-output.json b/data/gpt-ocr.json similarity index 100% rename from nyc/gpt-output.json rename to data/gpt-ocr.json diff --git a/grid/intersections.csv b/data/intersections.csv similarity index 100% rename from grid/intersections.csv rename to data/intersections.csv diff --git a/lat-lon-map.txt b/data/lat-lon-map.txt similarity index 100% rename from lat-lon-map.txt rename to data/lat-lon-map.txt diff --git a/locations.txt b/data/locations.txt similarity index 100% rename from locations.txt rename to data/locations.txt diff --git a/nyc-image-sizes.txt b/data/nyc-image-sizes.txt similarity index 100% rename from nyc-image-sizes.txt rename to data/nyc-image-sizes.txt diff --git a/viewer/static/js/nyc-lat-lons-ny.js b/data/nyc-lat-lons-ny.js similarity index 100% rename from viewer/static/js/nyc-lat-lons-ny.js rename to data/nyc-lat-lons-ny.js diff --git a/ocr/ocr.json b/data/ocr-ocropus-2015.json similarity index 100% rename from ocr/ocr.json rename to data/ocr-ocropus-2015.json diff --git a/ocr/ocrbacks.txt b/data/ocrbacks.txt similarity index 100% rename from ocr/ocrbacks.txt rename to data/ocrbacks.txt diff --git a/nyc/Milstein_data_for_DV_2.csv b/data/originals/Milstein_data_for_DV_2.csv similarity index 100% rename from nyc/Milstein_data_for_DV_2.csv rename to data/originals/Milstein_data_for_DV_2.csv diff --git a/nyc/borough-polygons.json b/data/originals/borough-polygons.json similarity index 100% rename from nyc/borough-polygons.json rename to data/originals/borough-polygons.json diff --git a/nyc/milstein.csv b/data/originals/milstein.csv similarity index 100% rename from nyc/milstein.csv rename to data/originals/milstein.csv diff --git a/viewer/static/js/popular-photos.js b/data/popular-photos.js similarity index 100% rename from viewer/static/js/popular-photos.js rename to data/popular-photos.js diff --git a/analysis/rotations/rotations.json b/data/rotations.json similarity index 100% rename from analysis/rotations/rotations.json rename to data/rotations.json diff --git a/self-hosted-sizes.txt b/data/self-hosted-sizes.txt similarity index 100% rename from self-hosted-sizes.txt rename to data/self-hosted-sizes.txt diff --git a/grid/__init__.py b/grid/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/grid/coder_test.py b/grid/coder_test.py deleted file mode 100644 index 6184cbba..00000000 --- a/grid/coder_test.py +++ /dev/null @@ -1,34 +0,0 @@ -import pytest - -from grid import coder - - -def assert_close(ll1, ll2): - """Assert that two latitude & longitude tuples are "close".""" - assert ll1[0] == pytest.approx(ll2[0], 1e-6) - assert ll1[1] == pytest.approx(ll2[1], 1e-6) - - -def test_exact(): - # It's really Park Avenue South. - assert_close(coder.code("4", "17"), (40.736518, -73.988962)) - - -def test_interpolate(): - # This is halfway between 26th & 28th. - assert_close(coder.code("9", "27"), (40.749020, -73.9995210)) - - -def test_extrapolate(): - assert_close(coder.code("A", "15"), (40.731083, -73.979847)) - assert_close(coder.code("A", "20"), (40.734071, -73.977654)) - - -def test_may_extrapolate(): - assert coder.may_extrapolate("A", "15") - assert coder.may_extrapolate("2", "8") - assert coder.may_extrapolate("A", "25") - assert not coder.may_extrapolate("4", "8") - assert not coder.may_extrapolate("D", "25") - assert not coder.may_extrapolate("7", "10") - assert not coder.may_extrapolate("B", "93") # 723557f-c diff --git a/grid/gold_test.py b/grid/gold_test.py deleted file mode 100644 index 514b8f49..00000000 --- a/grid/gold_test.py +++ /dev/null @@ -1,30 +0,0 @@ -from grid import gold - - -def test_make_street_str(): - assert "East 1st street" == gold.make_street_str(1, 1) - assert "East 2nd street" == gold.make_street_str(2, 1) - assert "East 3rd street" == gold.make_street_str(3, 1) - assert "East 4th street" == gold.make_street_str(4, 1) - assert "East 9th street" == gold.make_street_str(9, 1) - assert "East 11th street" == gold.make_street_str(11, 1) - assert "East 12th street" == gold.make_street_str(12, 1) - assert "East 13th street" == gold.make_street_str(13, 1) - assert "East 21st street" == gold.make_street_str(21, 1) - assert "East 22nd street" == gold.make_street_str(22, 1) - assert "East 100th street" == gold.make_street_str(100, 1) - assert "West 101st street" == gold.make_street_str(101, 8) - assert "West 102nd street" == gold.make_street_str(102, 8) - assert "East 121st street" == gold.make_street_str(121, 1) - - -def test_make_avenue_str(): - assert "Avenue A" == gold.make_avenue_str(0) - assert "Avenue D" == gold.make_avenue_str(-3) - assert "1st Avenue" == gold.make_avenue_str(1) - assert "2nd Avenue" == gold.make_avenue_str(2) - assert "3rd Avenue" == gold.make_avenue_str(3) - - assert "Park Avenue South" == gold.make_avenue_str(4, 17) - assert "Park Avenue South" == gold.make_avenue_str(4, 32) - assert "Park Avenue" == gold.make_avenue_str(4, 59) diff --git a/nyc/howto.md b/howto.md similarity index 59% rename from nyc/howto.md rename to howto.md index c5cc0f89..925644c2 100755 --- a/nyc/howto.md +++ b/howto.md @@ -2,15 +2,14 @@ The web site and static data live over in https://github.com/oldnyc/oldnyc.github.io. +If any of these workflows aren't working, check `e2etest.yml` to see if there's a more +up-to-date version. + ## Setup Set up the Python environment: -```bash -virtualenv env -source env/bin/activate -pip install -r requirements.txt -``` + poetry install ## Update the data @@ -21,7 +20,7 @@ update this, run something like this sequence: cd .. git clone https://github.com/oldnyc/oldnyc.github.io.git cd ../oldnyc -./generate_static_site.py +poetry run oldnyc/site/generate_static_site.py cd ../oldnyc.github.io git add . git commit -a -m 'Update site' @@ -33,7 +32,7 @@ git push It's easiest to do this by iterating on the `images.ndjson` file, which has one entry per milstein card, rather than one entry per photo. - ./generate-geocodes.py --coders milstein --images_ndjson data/images.ndjson --output_format records.js --geocode > /tmp/records.json + poetry run oldnyc/geocode/geocode.py --coders milstein --images_ndjson data/images.ndjson --output_format records.js --geocode > /tmp/records.json This will print out lots of information about incorrect geocodes and eventually print something like: @@ -45,11 +44,11 @@ This is out of 43363 total records in the Milstein collection. By default, this only uses the local "geocache"--it doesn't fetch any geocodes from Google Maps. If you want to do that, add --use_network: - ./generate-geocodes.py --images_ndjson data/images.ndjson --output_format records.js --geocode --use_network > /tmp/records.json + poetry run oldnyc/geocode/geocode.py --images_ndjson data/images.ndjson --output_format records.js --geocode --use_network > /tmp/records.json If you want to determine per-borough geocoding coverage, run - ./nyc/coverage-by-borough /tmp/records.json + poetry run oldnyc/analysis/coverage-by-borough.py /tmp/records.json ## Regenerate geocodes for the viewer (nyc-lat-lons-ny.js) @@ -60,31 +59,31 @@ Start by unpacking the geocache. This will speed up geocoding and help ensure st To get new geocodes into the frontend, you need to geocode `photos.ndjson` (see below for how to generate this). Do so with: - ./generate-geocodes.py --images_ndjson data/photos.ndjson --lat_lon_map lat-lon-map.txt --output_format lat-lons-ny.js --geocode > viewer/static/js/nyc-lat-lons-ny.js + poetry run oldnyc/geocode/geocode.py --images_ndjson data/photos.ndjson --lat_lon_map data/lat-lon-map.txt --output_format lat-lons-ny.js --geocode > data/nyc-lat-lons-ny.js The lat-lon-map.txt file can be generated via: - ./generate-geocodes.py --images_ndjson data/images.ndjson --output_format locations.txt --geocode > locations.txt - ./cluster-locations.py locations.txt > lat-lon-map.txt + poetry run oldnyc/geocode/geocode.py --images_ndjson data/images.ndjson --output_format locations.txt --geocode > data/locations.txt + poetry run oldnyc/geocode/cluster.py locations.txt > data/lat-lon-map.txt + +To update the geocache: + + rm geocache.tgz + tar -czf geocache.tgz geocache ## Generate photos.ndjson `photos.ndjson` is like `images.ndjson`, but it duplicates each record across all its photos. (There are potentially several photos on the Milstein card for each record.) -```bash -./nyc/crops-to-json.py nyc/crops.txt > /tmp/crops.json -./nyc/records_to_photos.py data/images.ndjson /tmp/crops.json data/photos.ndjson -``` - -To update the geocache: - - rm geocache.tgz - tar -czf geocache.tgz geocache + poetry run oldnyc/crop/records_to_photos.py data/images.ndjson data/crops.ndjson data/photos.ndjson -## Generate crops.txt +## Generate crops.ndjson -... + # produces detected-photos.ndjson + poetry run oldnyc/crop/find_pictures.py path/to/images/*.jpg > /tmp/detected-photos.ndjson + # produces cropped images and crops.ndjson + poetry run oldnyc/crop/extract_photos.py outputdir /tmp/detected-photos.ndjson > data/crops.ndjson ## Generate extended grid data @@ -92,7 +91,7 @@ This has no inputs and outputs `grid/intersections.csv`: poetry run grid/gold.py -(Note that this does not work as of 2024.) +(Note that this does not work as of 2024 due to Google Maps geocoding changes.) ## Generate images.ndjson from CSV @@ -101,7 +100,8 @@ Sources of data: - `milstein.csv`, the original CSV file that Matt K gave me in 2013. - `Milstein_data_for_DV_2.csv`, an update from 2024. - `mods-details.json`, which includes data from the NYPL API's `/mods` and `/item_details` endpoints. +- ... To collect these into an `images.ndjson` file, run: - ./data/ingest.py + poetry run oldnyc/ingest/ingest.py diff --git a/nyc/NOTES b/nyc/NOTES deleted file mode 100644 index 750bd37c..00000000 --- a/nyc/NOTES +++ /dev/null @@ -1,599 +0,0 @@ -(These are some working notes from ~2013) - ----- - -The NYC photos come from the NYPL's Milstein collection. - -Start page: -http://digitalgallery.nypl.org/nypldigital/dgdivisionbrowseresult.cfm?div_id=hh - -Matt K sent me a CSV file for their digitized photos with 43363 records. -(there are 63091 lines, but some records contain newlines) - - -Interesting fields: - 3 59% (25721/43363) CREATOR Balgue, George L.--Photographer - 5 100% (43363/43363) IMAGE_Permalink http://digitalgallery.nypl.org/nypldigital/id?716312f - 6 100% (43363/43363) DIGITAL_ID 716312f -11 100% (43363/43363) RECORD_ID 406110 -12 62% (26943/43363) Borough Manhattan -13 73% (31674/43363) Address ??Amsterdam Avenue & La Salle Street -14 84% (36327/43363) Full Address ??Amsterdam Avenue & La Salle Street, Manhattan, NY -15 100% (43363/43363) IMAGE_TITLE ??Manhattan: Amsterdam Avenue - La Salle Street -16 100% (43363/43363) IMG_URL http://images.nypl.org/index.php?id=716312f&t=w -17 64% (27648/43363) CREATED_DATE 1927 - -Other fields are rare or identical across all records. - -Borough field breakdown: - 18084 Manhattan - 16420 "" - 5391 Brooklyn - 2253 Bronx - 845 ", Manhattan" - 257 Queens - 108 Staten Island - 3 Newtown Creek - 2 Governor's Island - -Dates breakdown: - 1 1790's - 2 1820's - 5 1830's - 11 1850's - 69 1860's - 99 1870's - 149 1880's - 480 1890's - 1027 1900's - 1360 1910's - 6251 1920's - 10754 1930's - 2011 1940's - 30 1950's - 61 1960's - 28 1970's - -My OldSF date range parser is able to understand 23375/25721=91% of the -date ranges. - -About 75% of the images are from 1920-1949. - -Date oddities: -This record is listed (in the CSV) as being created on "14793": http://digitalgallery.nypl.org/nypldigital/dgkeysearchdetail.cfm?strucID=288071&imageID=485982 - - - -Stuff to ask Maira/Matt: -1. What's the deal with odd dates like "14793" in the spreadsheet? -2. Most (~75%) of photos from 1920-1950, does that seem right? -3. Easy to get metadata on image height/width? -4. What's the largest version of the image available online? -5. Any way to get at just the image (and not the scan of its brown backing paper)? -6. There are some images (e.g. http://digitalgallery.nypl.org/nypldigital/id?700631f or http://digitalgallery.nypl.org/nypldigital/id?717711f) where there's a description and date on the image, but not on the site. Any way to get that? Have they not been digitized? -7. Are there any pre-rendered thumbnails? - -> &t=r instead of &t=w -8. OK if I serve images directly off the NYPL site? (I used AWS for OldSF) - - - ----- - -I uploaded the image records for OldSF to AppEngine so long ago that I have no -idea how I did it. They may have gone through the image labeling game, so that -there's some path dependence. - -I should verify that geocoded addresses are in the borough they claim to be. -All of the dots around Greenwood Cemetery should be in Manhattan: -http://localhost:8080/#ll:40.652937|-74.002161&m:40.65581|-73.98758|15 - - ----- - -I asked the NYPL folks whether there were higher-resolution images available. -David Riordan sent out links to "MrSID" files which are available on their -servers. This is an incredibly obscure image format which is designed for easy -scaling (ala Google Maps tiles). For better or for worse, it's the format that -the Milstein images were scanned in. - -There's a sample MrSID file at: -http://lt.images.nypl.org/lizardtech/iserv/getdoc?cat=NYPL&item=ED/EDAA/9A2E/8602/11DD/8103/6EC3/9956/CD/EDAA9A2E-8602-11DD-8103-6EC39956CD08.sid - -One option to convert it is to use "gdal_translate" with MrSID enabled. -Instructions for building this: -http://trac.osgeo.org/gdal/wiki/MrSID -http://trac.osgeo.org/gdal/wiki/BuildingOnMac - -I set up an account with LizardTech and downloaded their SDK. - -The SDK includes a "mrsiddecode" tool which works great! - -$ mrsiddecode -i nyc.sid -o nyc.jpg -(takes ~10 seconds to convert) - -The 3.5M MrSID file converts to either a 1.3MB JPG or a 25MB PNG file. - -To download all the MrSID files, I can... -1. Fetch http://images.nypl.org/index.php?id=(image id)&t=d -2. Parse the '&item=' field out of the URL it redirects to -3. Fetch http://lt.images.nypl.org/lizardtech/iserv/getdoc?cat=NYPL&item=(ITEM).sid - -It takes ~10 s to fetch each image and ~10 seconds to convert them, so w/ 40k -images, each of these would take 4-5 days. - ----- - -Detecting the "cards" inside the Milstein images is going to be tricky. -It seems like a good candidate for edge detection + hough transform. - -brew install PIL -sudo /usr/bin/easy_install scipy -sudo /usr/bin/easy_install -U scikit-image - (needs Cython) - -After some hacking, it seems like this will be a good strategy: -1. Shrink the images 5x in each dimension -2. Run canny edge detection -3. Zero out the margins (40px on each side) -4. Threshold at half the Otsu threshold. -5. Calculate sums across each column and each row. -6. Differentiate these. -7. Pick out the top 10 x- & y-coords. -8. Build rectangles out of each of these. Pick the brightest one (in canny image) - -Another idea: -Canny finds x- and y-edges, then combines them into edges at any angle. But I -really do want x- and y-edges! Maybe I can use this intermediate data. - -Another idea: -Binarize based on "brownness". --> This works great! - - -Random sample of ten images: -images/733251f.jpg + perfect (2 cards) -images/700043f.jpg - (detects the entire image; background is too light) -images/715405f.jpg / (detects one correctly, other is the full top-half) -images/711018f.jpg + perfect (1 card) -images/715240f.jpg + perfect (2 cards) -images/702532f.jpg - (detects the entire image; background is too light) -images/725010f.jpg + perfect (1 card) -images/715153f.jpg + perfect (1 card) -images/710534f.jpg + perfect (1 card) -images/715591f.jpg + perfect (1 card) - --> 70% correct on the first go! - -Made one change: -Instead of hard-coding brown as (178, 137, 90), I set it as the median color of -the image. - -images/733251f.jpg + -images/700043f.jpg + -images/715405f.jpg + -images/711018f.jpg + -images/715240f.jpg + -images/702532f.jpg + -images/725010f.jpg + -images/715153f.jpg + -images/710534f.jpg + -images/715591f.jpg + - -!!! 100% !!! - - - -images/715426f.jpg doesn't work correctly -images/711019f.jpg (four small images) -images/715238f.jpg (combines two close images) - ------ -2013-02-24 - -I've fetched essentially all the photos whose digital_ids end in 'f' -(34580/34726). This is ~80% of all the photos. - - -For a 'f' image, the sequence begins with -http://images.nypl.org/index.php?id=(image_id)&t=d - -but this fails for non-'f' images. - -Only a small fraction of the non-'f' images are on brown cards. -Using '&t=w' works fine. -http://images.nypl.org/index.php?id=3978353&t=w - -Many of these non-'f' images don't have a "Zoom" button on the NYPL site, which -I take to mean that they have no associated MrSid file. But the same sequence -does work for some, so I'll try to get what I can. - -I used Local Turk to generate test data for 100 images. - -What's a good scoring function? There are two levels of "right": -1. Getting the correct number of photos -2. Getting the correct positions of the photos - - ------ -2013-03-07 - -With help from StackOverflow, I'm using a more principled way of detecting -regions (modeled after Matlab's RegionProps method) and am using -ndimage.binary_fill_holes to patch things up in the binarized image. - ->= 10 : 16 are perfect ->= 20 : 15 are perfect - -For some images (717271f.jpg), reducing the threshold from 20 -> 10 makes all -the difference. Backing off might work, but how to know if you only have 2/3? - -For others (1507735.jpg), lowering the 95% Solidity threshold to 90% makes all -the difference. - ------ -2013-04-10 - -Goal is to come up with a program that can reliably either: -1. Correctly detect photos in an image -2. Decline to do anything - -i.e. have very few false positives. - -After some tweaking, I came up with something that has these stats on the 120 -training images: - - Safe: 5 (0.0417) - Correct: 113 (0.9417) - Wrong: 2 (0.0167) - -i.e. it partitions 94% correctly, takes a conservative pass on 4% and gets 1.7% -incorrect. - -In this last category, one is because of a bad binarization (one -image becomes two). The other is because only 2/3 photos in an image are -detected (the third is sepia and, unlike the other two, doesn't have a white -border). These are both lame, but the former is lamer. - -2013-04-13 -Goals: -- Last tweaks to photo-finding algorithm. -- Run on 100-200 new random photos from the full collection. -- Take a crack at removing white borders. -- Kick off a run on the full set. - -#26: pass, but shouldn't be? -#36: bad pass -#39: huge border! -#45: bad pass -#46: bad pass -#49: bad pass -#61: bad pass -#62: bad pass -#70: bad pass -#77: bad pass? - -Setting a pass threshold in terms of solidity (instead of height/width -fraction) might make more sense. - -Going over a second sample of 100 images. --- lots more passes on this set -- -8/100 images2/1596925.jpg -- false positive -14/100 (pass) images2/701333f.jpg -- bad pass - --> Looked really good! --> The problems were almost all with the early images; maybe a different set? - -> Fortunately, the really bad ones don't have addresses! - -Cropping an image takes ~1s on my laptop. - -Started on the full 40k run at 3:14PM. -... scratch that! My workstation has 12 cores, so why not run a few copies in parallel? -Restarted w/ four tasks at 3:22PM. - -There were a few issues with "images of death" which took down a process. I -eventually wrote a small HTTP server to distribute tasks and finished the run -of 36475 images in the evening. - -417664, 465617, 465553, 465601, 417658: schematics, maybe I can spot them via "illustration"? - -1113236 wide format, pass is best - -After looking through 200 random images, I didn't see any egregious errors. --> We're good to go! - -With four jobs, I'm cropping 6.5images/sec. - -Total disk usage: - 58G originals - 18G crops - (23G crops + accepted originals) - 75.28G total - -Commands to do everything: - -(Serve up paths to images which haven't had find_pictures.py run on them) -$ ls milstein/*.jpg | ./list-incomplete-tasks.py detected-photos.txt | ./task-server.py - -(Run a few find_pictures.py tasks) -$ ./find_pictures.py http://localhost:8765 | tee 1detected-photos.txt -$ ./find_pictures.py http://localhost:8765 | tee 2detected-photos.txt -... - -(Combine detected photos) -$ cat ?detected* | sort | uniq > detected-photos.txt - -(Serve up cropping tasks) -$ ./task-server.py detected-photos.txt - -(Run a few extract-photos.py instances) -$ ./extract-photos.py http://localhost:8765 ~/milstein-crops | tee -a ~/milstein-crops/1crops.txt -$ ./extract-photos.py http://localhost:8765 ~/milstein-crops | tee -a ~/milstein-crops/2crops.txt - -(Combine crops files) -$ cat milstein-crops/?crops.txt | sort | uniq > milstein-crops/crops.txt - -(Convert to JSON) -$ ./crops-to-json.py crops.txt > photos.json - - -There are three images that the find_pictures algorithm failed on: -705891f.jpg -706199f.jpg -712817f.jpg - -These all say "Plate Wanting" in big black type on a white background. - -Here's what I've got: -- 37632 full-size JPG files (58GB) from the Milstein collection (converted MrSID files). -- 37629 images on which I ran the photo detector. -- 34194 images where a photo was detected & extracted. -- 52369 smaller JPGs (19GB) for photos that I extracted from the originals. - -The algorithm declined to do anything with ~9% of the original images. - -Here's the distribution of # of detected photos per original image: -0: 3435 -1: 22246 -2: 6545 -3: 4662 -4: 689 -5: 34 -6: 11 -7: 2 -8: 4 -9: 1 - -The image on which nine photos were detected really does have nine photos! - - -2013-04-23 -With the photos extracted, it's time to move back to geocoding. - -I found a bunch of photos of the old Google NY building. But it took the -descriptions for me to confirm what I was looking at (particularly when it was -a hole in the ground). Having these in OldNYC would make it a way more -compelling product. - -- What fraction of photos have descriptions? - -> 86% have a metadata image; 66% have one with extra information (not just date/place). -- Is the typewriter font consistent? - -> Seems to be! - -(730166f -- great view of Central Park http://digitalgallery.nypl.org/nypldigital/id?730166f) - ------- -2013-05-08/12 - -I want to look into some of the geocoding issues. -Looks like I'm only geocoding 'A & B' and forgot I was doing that! - -Next step: Look at the non-city/borough part of the address for a sample of 100 -to get a sense of what these look like. - - 38 "A (&|and) B, Borough, NY" 69th Street & York Avenue, Manhattan, NY - 6 (missing) - 3 "Place Name, Borough, NY" Kill Van Kull, Staten Island, N.Y. - 1 "Address .*, Borough, NY" 929 Park Avenue. Near Eighty-first Street., Manhattan, NY - 1 "A - B, .*, Borough, NY" 38th Street (West) - Twelfth Avenue, northeast corner -, Manhattan, NY - 1 "A, Borough, NY" Elizabeth Street, Manhattan, NY - 1 (too vague) General view of fishing facilities., Manhattan, NY - -Notes: -- Try removing the "(West)" to improve geocoding ('62nd Street (West) & Amsterdam Avenue') -- "N.Y." and "NY" are freely intermixed. -- Sometimes there are lots of extra spaces before a comma -- Sometimes have county + borough, e.g. "Church of St. Andrew, Richmond, Staten Island, N.Y." - -In any case, the vast majority (84%) of the addresses are cross-streets with -either a '&' or 'and' in them. It make sense to start by getting the geocoding -really good for just this class of records. - -The '&|and' check gets me: - Parsed 30337 / 36328 = 0.8351 records - - -There are still some addresses floating in free text: - The Mannados, 17 East Ninety-seventh Street, northwest corner Madison Avenue, Manhattan, NY - The Maranamay, 611 West 112th Street , Manhattan, NY - The Apartment House Surrounded By Gardens, St. George Gardens, Inc. 90 St. Marks(sic) Place, St. George, Staten Island, N.Y. - -Parsed 34023 / 36328 = 0.9366 records - -There are 2305 remaining. - ------- -2013-05-27 - -I want to implement "is this geocode in the right borough" logic and look at -some of the failures. - -I found 911 examples of borough mismatches. The vast majority are geocoded into -Brooklyn when they should have been in Manhattan: - - 592 Found Brooklyn expected Manhattan - 84 Found Queens expected Manhattan - 76 Found Manhattan expected Brooklyn - 39 Found None expected Manhattan - 36 Found Bronx expected Manhattan - 34 Found Manhattan expected Queens - 18 Found Queens expected Brooklyn - 9 Found Brooklyn expected Queens - 6 Found Bronx expected Brooklyn - 5 Found Brooklyn expected Staten Island - 3 Found None expected Brooklyn - 3 Found Manhattan expected Bronx - 2 Found Staten Island expected Manhattan - 2 Found Queens expected Bronx - 2 Found Manhattan expected Staten Island - 1 Found Queens expected Staten Island - 1 Found None expected Queens - 1 Found Bronx expected Queens - -These are typically cross-streets which could be in either borough. The -locatable string is always listed as something like '20th Street (East) & 4th -Avenue, Manhattan, NY', however, so I'm not sure why they show up in the wrong -place. - - ------- -2013-11-29 - -I want to increase the coverage of geocoding for Brooklyn images. - -There are 5391 images with "Brooklyn" as their borough. - -Generate all geocodes (takes ~1 minute): -$ ./generate-geocodes.py --coders milstein --pickle_path nyc/records.pickle --output_format records.js --geocode > /tmp/records.json -$ cd nyc -$ ./coverage-by-borough.py /tmp/records.json - -0.3092 ( 746 / 2413) Bronx (5 to wrong borough) -0.3167 ( 1880 / 5936) Brooklyn (103 to wrong borough) -0.5728 (12494 / 21812) Manhattan (753 to wrong borough) -0.4009 ( 1439 / 3589) Queens (45 to wrong borough) -0.1784 ( 439 / 2461) Staten Island (8 to wrong borough) -0.0000 ( 0 / 7152) Unknown (0 to wrong borough) - -So Brooklyn has about half the geocode success rate that Manhattan does. - -I made the coverage-by-borough script dump Brooklyn failures into a temp -file. Digging into one of these: -703739f Columbia Street & State Street, Brooklyn, NY - -$ ./generate-geocodes.py --ids_filter 703739f --coders milstein --pickle_path nyc/records.pickle --output_format records.js --geocode -Failure: Columbia Street and State Street -> (40.689251, -73.988736) - -That lat/lon is a few blocks down the street, at a lower degree of accuracy -than indicates a successful cross-street geocode. This is strange because -when I type "Columbia Street & State Street, Brooklyn, NY" into Google -Maps, it gets it. I modified geocoder.py to print the cache files it checks -and deleted the one for this record to force it back to Google Maps. - -At this point, I discover that the Google Maps geocoding API I've been -using for the past ~5 years has ceased to exist! I need to upgrade to v3 of -the geocoding API. - -This is a good opportunity to rewrite the geocoder. This grew organically -while I developed OldSF and I shoehorned NYC geocoding into it. - -Things I'd like to change: -- Each coder should be responsible for determining whether its own - locatable string was geocoded successfully. -- Get rid of locatable.py. Coders should simply output a string. -- Coders should output a complete locatable string, including city name. -- generate-geocodes should have a way to build on existing successful - geocodes. Once there's a successful geocode, it should never be lost. -- There should be a consistent "debug mode" or info logging. -- The "coder cache" hasn't been that useful. -- The different output types of generate-geocodes. It should do one thing. - -Things I'd like to keep: -- The "geocache" layer. -- Separate coders. -- A toggle for whether to hit the network or not. - -Rerunning geocodes using the new API is helping the Brooklyn geocodes, even -without algorithm changes. With 5000 new geocodes (my per-IP limit is -2500/day), I've picked up 353 new images in Brooklyn, raising the recall from -31.67% --> 37.62%. - - -2013-12-01 -After re-running all the geocodes, per-borough coverage has improved across -the board: -0.6581 ( 1588 / 2413) Bronx (26 to wrong borough) -0.7011 ( 4162 / 5936) Brooklyn (154 to wrong borough) -0.7362 (16057 / 21812) Manhattan (981 to wrong borough) -0.6890 ( 2473 / 3589) Queens (82 to wrong borough) -0.4738 ( 1166 / 2461) Staten Island (11 to wrong borough) -0.0000 ( 0 / 7152) Unknown (0 to wrong borough) - -Geocodes of Brooklyn images have gone from 32% --> 70%! -I could get another 13-14% by geocoding the top 100 addresses by hand. - - -2013-12-07 -Goal today is to see the new geocodes on a map and get some hard numbers about -JSON file size before & after clumping by neighborhoods. - -To regenerate the latlons.js file, I had to use the "photos.pickle" file, which -uses extracted photos rather than the raw Milstein records: -./generate-geocodes.py --coders milstein --pickle_path nyc/photos.pickle --output_format lat-lons.js --geocode > viewer/nyc-lat-lons.js - -Serve the 600px images & thumbnails from a Python server: -cd /Volumes/teradan/Milstein\ Images/ -python -m SimpleHTTPServer 8001 - -Start the local dev server: -cd viewer -dev_appserver.py . - -And visit http://localhost:8080 - -To upload image records: -./upload_to_appengine.py --pickle_path nyc/photos.pickle --lat_lons_js_path viewer/nyc-lat-lons.js --image_sizes_path nyc-image-sizes.txt -(takes ~10 minutes) - -Be sure to flush memcache on the development instance after you do this! To do -so, visit http://localhost:8000/memcache - -Sample command to view a record using the interactive console on the admin site: - - import os - import pprint - import app - - from google.appengine.api import memcache - from google.appengine.ext import db - - #config = db.create_config(read_policy=db.EVENTUAL_CONSISTENCY) - #r = app.ImageRecord.get_by_key_name('724963f-a', config=config) - - rs = app.GetImageRecords(['724963f-a']) - - r = r['724963f-a'] - print r.title - print r.width - print r.height - -There are ~2000 geocoded images which have a neighborhood of 'None'. What up -with that? - - -What are the limits to geocoding? -There are 43363 records. Of these, 7054 are missing location data. ---> 36309 max ---> I have 25657 / 36309 = 70%. - -For some, the geocodable data is in a different field, e.g. 723915f. This has “Wall Street” as its address, which is not locatable, but the “alternate title” field is “40 Wall Street, Bank of Manhattan Co.", which obviously is. - - -2/23/2014 -References for doing an image grid layout/UI like Google Image Search: -http://stackoverflow.com/questions/16767195/ui-similar-to-google-image-search -http://blog.vjeux.com/2012/image/image-layout-algorithm-google-plus.html -http://tympanus.net/codrops/2013/03/19/thumbnail-grid-with-expanding-preview/ -http://tympanus.net/Tutorials/ThumbnailGridExpandingPreview/ - -Old URL: http://digitalgallery.nypl.org/nypldigital/id?712208f -New URL: http://digitalcollections.nypl.org/items/image_id/712208f diff --git a/nyc/__init__.py b/nyc/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/nyc/crops-to-json.py b/nyc/crops-to-json.py deleted file mode 100755 index 75f1e23a..00000000 --- a/nyc/crops-to-json.py +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env python -"""Converts the output of extract-images.py into a nice JSON object. - -Output looks like: - { - '702370f.jpg': { - 'crops': { - '702370f-1.jpg': { top: 10, left: 20, width: 400, height: 300}, - '702370f-2.jpg': { top: 10, left: 20, width: 400, height: 300}, - '702370f-3.jpg': { top: 10, left: 20, width: 400, height: 300} - }, - 'metadata': { - 'width': 1000, - 'height': 800 - } - } - } -""" - -import fileinput -import json -import os - -out = {} -for line in fileinput.input(): - d = json.loads(line) - crops = {} - if "rects" in d: - for r in d["rects"]: - crops[os.path.basename(r["file"])] = { - "top": r["top"], - "left": r["left"], - "width": r["right"] - r["left"], - "height": r["bottom"] - r["top"], - } - out[os.path.basename(d["file"])] = { - "crops": crops, - "metadata": {"width": d["shape"]["w"], "height": d["shape"]["h"]}, - } - -print(json.dumps(out, indent=2, sort_keys=True)) diff --git a/nyc/crops.json.gz b/nyc/crops.json.gz deleted file mode 100644 index 348d4f65..00000000 Binary files a/nyc/crops.json.gz and /dev/null differ diff --git a/nyc/detected-photos.txt b/nyc/detected-photos.txt deleted file mode 100644 index f648160b..00000000 --- a/nyc/detected-photos.txt +++ /dev/null @@ -1,37629 +0,0 @@ -{"rects": [{"solidity": 0.9301391050443045, "top": 720, "right": 3170, "bottom": 2160, "left": 1340}], "shape": {"h": 2990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1508947.jpg"} -{"rects": [{"solidity": 0.9301923070968781, "top": 3165, "right": 2145, "bottom": 5515, "left": 330}, {"solidity": 0.9460662719082441, "top": 3260, "right": 4105, "bottom": 5440, "left": 2320}, {"solidity": 0.9651505173679709, "top": 1255, "right": 2825, "bottom": 2665, "left": 1590}], "shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465629.jpg"} -{"rects": [{"solidity": 0.9303035415739987, "top": 600, "right": 3235, "bottom": 3765, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712973f.jpg"} -{"rects": [{"solidity": 0.9303704294380686, "top": 925, "right": 5355, "bottom": 3725, "left": 3450}], "shape": {"h": 4610, "w": 5795}, "file": "/usr/local/google/home/danvk/milstein/417664.jpg"} -{"rects": [{"solidity": 0.9304812221369059, "top": 960, "right": 3820, "bottom": 2905, "left": 805}], "shape": {"h": 5980, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465617.jpg"} -{"rects": [{"solidity": 0.9307340356767291, "top": 1290, "right": 3370, "bottom": 5020, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709518f.jpg"} -{"rects": [{"solidity": 0.9308042579482699, "top": 975, "right": 2140, "bottom": 3700, "left": 290}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508327.jpg"} -{"rects": [{"solidity": 0.9309652363844206, "top": 930, "right": 3455, "bottom": 3135, "left": 1170}, {"solidity": 0.9747845962510224, "top": 3425, "right": 3345, "bottom": 5530, "left": 1180}], "shape": {"h": 6010, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465553.jpg"} -{"rects": [{"solidity": 0.9309990216458358, "top": 655, "right": 3330, "bottom": 3125, "left": 620}, {"solidity": 0.9944532226493409, "top": 3125, "right": 3300, "bottom": 5070, "left": 540}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/712759f.jpg"} -{"rects": [{"solidity": 0.9311844145579815, "top": 490, "right": 4930, "bottom": 3550, "left": 1100}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722038f.jpg"} -{"rects": [{"solidity": 0.9313132856979099, "top": 3000, "right": 2315, "bottom": 5565, "left": 310}, {"solidity": 0.9466761436657102, "top": 2980, "right": 4410, "bottom": 5480, "left": 2415}, {"solidity": 0.976711822474317, "top": 515, "right": 1990, "bottom": 2715, "left": 445}], "shape": {"h": 5985, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465601.jpg"} -{"rects": [{"solidity": 0.9313539603134395, "top": 3200, "right": 2300, "bottom": 5285, "left": 130}], "shape": {"h": 5785, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/417658.jpg"} -{"rects": [{"solidity": 0.93137152958303, "top": 485, "right": 4960, "bottom": 3500, "left": 1135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712892f.jpg"} -{"rects": [{"solidity": 0.9314812002899995, "top": 485, "right": 4975, "bottom": 3530, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701891f.jpg"} -{"rects": [{"solidity": 0.9315033591008898, "top": 180, "right": 3830, "bottom": 2585, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724042f.jpg"} -{"rects": [{"solidity": 0.931561858546278, "top": 560, "right": 4975, "bottom": 3510, "left": 1155}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731291f.jpg"} -{"rects": [{"solidity": 0.9316881222457973, "top": 3465, "right": 3490, "bottom": 5720, "left": 1260}], "shape": {"h": 5995, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/465563.jpg"} -{"rects": [{"solidity": 0.9317767261367551, "top": 570, "right": 4955, "bottom": 3660, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718579f.jpg"} -{"rects": [{"solidity": 0.9318103282779804, "top": 800, "right": 3910, "bottom": 2305, "left": 1575}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507721.jpg"} -{"rects": [{"solidity": 0.9319954021241036, "top": 340, "right": 3815, "bottom": 3905, "left": 380}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708895f.jpg"} -{"rects": [{"solidity": 0.9320335211759777, "top": 3715, "right": 3655, "bottom": 5765, "left": 705}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708391f.jpg"} -{"rects": [{"solidity": 0.9321154675485385, "top": 2240, "right": 4155, "bottom": 5360, "left": 435}, {"solidity": 0.9449379408586702, "top": 650, "right": 2610, "bottom": 2235, "left": 415}], "shape": {"h": 5805, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/417672.jpg"} -{"rects": [{"solidity": 0.9324649326848523, "top": 725, "right": 3640, "bottom": 2615, "left": 990}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509469.jpg"} -{"rects": [{"solidity": 0.9324955314468872, "top": 775, "right": 4535, "bottom": 3115, "left": 1360}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714072f.jpg"} -{"rects": [{"solidity": 0.9325378031715168, "top": 640, "right": 3850, "bottom": 3070, "left": 945}], "shape": {"h": 6020, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/464849.jpg"} -{"rects": [{"solidity": 0.9326255147951532, "top": 810, "right": 2655, "bottom": 3660, "left": 315}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507565.jpg"} -{"rects": [{"solidity": 0.9326844123180769, "top": 1035, "right": 3660, "bottom": 2525, "left": 865}], "shape": {"h": 2980, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/1507284.jpg"} -{"rects": [{"solidity": 0.9327529575909078, "top": 520, "right": 5000, "bottom": 3545, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721605f.jpg"} -{"rects": [{"solidity": 0.9327640278013223, "top": 565, "right": 1795, "bottom": 2105, "left": 220}], "shape": {"h": 5990, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/465622.jpg"} -{"rects": [{"solidity": 0.9327930780340612, "top": 3335, "right": 2305, "bottom": 5395, "left": 300}, {"solidity": 0.9485191131759642, "top": 3495, "right": 4315, "bottom": 5300, "left": 2400}, {"solidity": 0.9761791071669895, "top": 585, "right": 2145, "bottom": 2285, "left": 380}], "shape": {"h": 5805, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/417650.jpg"} -{"rects": [{"solidity": 0.9329043539520198, "top": 355, "right": 3230, "bottom": 2035, "left": 665}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731910f.jpg"} -{"rects": [{"solidity": 0.9330129927607246, "top": 1075, "right": 2540, "bottom": 4000, "left": 195}], "shape": {"h": 4645, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509501.jpg"} -{"rects": [{"solidity": 0.9330342751013792, "top": 1115, "right": 3285, "bottom": 5000, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720061f.jpg"} -{"rects": [{"solidity": 0.9330443997857604, "top": 620, "right": 4945, "bottom": 3585, "left": 1170}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709896f.jpg"} -{"rects": [{"solidity": 0.93306004545358, "top": 815, "right": 3265, "bottom": 2550, "left": 1505}, {"solidity": 0.9946899339303855, "top": 4015, "right": 1595, "bottom": 5550, "left": 445}], "shape": {"h": 5805, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417639.jpg"} -{"rects": [{"solidity": 0.9331549107746384, "top": 3255, "right": 3645, "bottom": 5445, "left": 890}], "shape": {"h": 5980, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/465603.jpg"} -{"rects": [{"solidity": 0.933269742987184, "top": 775, "right": 3740, "bottom": 2325, "left": 1100}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507661.jpg"} -{"rects": [{"solidity": 0.9333532887373435, "top": 1095, "right": 3160, "bottom": 2015, "left": 870}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723497f.jpg"} -{"rects": [{"solidity": 0.9336768108981356, "top": 4620, "right": 3625, "bottom": 5680, "left": 1575}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721584f.jpg"} -{"rects": [{"solidity": 0.9336946687665449, "top": 375, "right": 5590, "bottom": 3160, "left": 1170}], "shape": {"h": 3900, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719154f.jpg"} -{"rects": [{"solidity": 0.9337222013868386, "top": 485, "right": 2035, "bottom": 2590, "left": 525}, {"solidity": 0.9939606284373019, "top": 485, "right": 3970, "bottom": 1570, "left": 2595}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716443f.jpg"} -{"rects": [{"solidity": 0.9337533342692685, "top": 3245, "right": 4385, "bottom": 5500, "left": 2350}], "shape": {"h": 5985, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465558.jpg"} -{"rects": [{"solidity": 0.9338494516641467, "top": 680, "right": 2650, "bottom": 3800, "left": 515}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706366f.jpg"} -{"rects": [{"solidity": 0.9339075193278077, "top": 1155, "right": 3360, "bottom": 4990, "left": 290}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722597f.jpg"} -{"rects": [{"solidity": 0.9342412350832068, "top": 3220, "right": 2285, "bottom": 5360, "left": 180}, {"solidity": 0.9557029232639516, "top": 3250, "right": 4560, "bottom": 5330, "left": 2450}, {"solidity": 0.9688591438550296, "top": 1100, "right": 2110, "bottom": 2805, "left": 465}], "shape": {"h": 5805, "w": 4700}, "file": "/usr/local/google/home/danvk/milstein/417627.jpg"} -{"rects": [{"solidity": 0.9342495127515719, "top": 510, "right": 3115, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713753f.jpg"} -{"rects": [{"solidity": 0.9342694238351852, "top": 2840, "right": 4280, "bottom": 5465, "left": 2380}, {"solidity": 0.9835843964793177, "top": 675, "right": 1955, "bottom": 2560, "left": 610}], "shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465654.jpg"} -{"rects": [{"solidity": 0.9342946637428626, "top": 575, "right": 5020, "bottom": 3555, "left": 1175}, {"solidity": 0.9740780500126295, "top": 2800, "right": 2165, "bottom": 3565, "left": 1180}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722136f.jpg"} -{"rects": [{"solidity": 0.9344288289339149, "top": 620, "right": 4270, "bottom": 2870, "left": 970}], "shape": {"h": 3000, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508455.jpg"} -{"rects": [{"solidity": 0.9345165033640243, "top": 570, "right": 3235, "bottom": 3865, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714867f.jpg"} -{"rects": [{"solidity": 0.9346047338715048, "top": 955, "right": 3285, "bottom": 2470, "left": 1005}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507583.jpg"} -{"rects": [{"solidity": 0.9346308677200974, "top": 180, "right": 6910, "bottom": 2340, "left": 2130}, {"solidity": 0.9556623014393942, "top": 805, "right": 2130, "bottom": 2365, "left": 130}], "shape": {"h": 2660, "w": 7055}, "file": "/usr/local/google/home/danvk/milstein/1627901.jpg"} -{"rects": [{"solidity": 0.9346785103605874, "top": 530, "right": 3165, "bottom": 2020, "left": 880}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713944f.jpg"} -{"rects": [{"solidity": 0.9347004065416243, "top": 1155, "right": 3490, "bottom": 4800, "left": 395}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722307f.jpg"} -{"rects": [{"solidity": 0.9347035799522673, "top": 1470, "right": 3915, "bottom": 5645, "left": 480}], "shape": {"h": 6920, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708775f.jpg"} -{"rects": [{"solidity": 0.9349363507779349, "top": 2700, "right": 4485, "bottom": 5280, "left": 2420}], "shape": {"h": 5805, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/417685.jpg"} -{"rects": [{"solidity": 0.9349399344332056, "top": 3910, "right": 3725, "bottom": 5500, "left": 845}], "shape": {"h": 5990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465600.jpg"} -{"rects": [{"solidity": 0.9349862258953168, "top": 155, "right": 3695, "bottom": 2580, "left": 675}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721305f.jpg"} -{"rects": [{"solidity": 0.9350367883326557, "top": 425, "right": 6700, "bottom": 2170, "left": 4390}, {"solidity": 0.9798513496262464, "top": 510, "right": 2650, "bottom": 2165, "left": 485}], "shape": {"h": 2740, "w": 7020}, "file": "/usr/local/google/home/danvk/milstein/1627911.jpg"} -{"rects": [{"solidity": 0.9350753556870962, "top": 575, "right": 3045, "bottom": 1985, "left": 860}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709213f.jpg"} -{"rects": [{"solidity": 0.9351856541875037, "top": 750, "right": 4815, "bottom": 3385, "left": 1325}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731752f.jpg"} -{"rects": [{"solidity": 0.9353702954269526, "top": 1030, "right": 3095, "bottom": 2490, "left": 1600}], "shape": {"h": 6005, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465701.jpg"} -{"rects": [{"solidity": 0.9354493894807906, "top": 560, "right": 4935, "bottom": 3665, "left": 1105}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709584f.jpg"} -{"rects": [{"solidity": 0.9354899750713715, "top": 795, "right": 1370, "bottom": 2295, "left": 340}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715969f.jpg"} -{"rects": [{"solidity": 0.9356422158180682, "top": 1125, "right": 3490, "bottom": 4930, "left": 365}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722144f.jpg"} -{"rects": [{"solidity": 0.935688980447226, "top": 760, "right": 2515, "bottom": 3495, "left": 560}, {"solidity": 0.9958172331953788, "top": 2200, "right": 4760, "bottom": 3625, "left": 2950}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704297f.jpg"} -{"rects": [{"solidity": 0.9357127933700118, "top": 855, "right": 2035, "bottom": 3210, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714615f.jpg"} -{"rects": [{"solidity": 0.9357275071711728, "top": 830, "right": 2085, "bottom": 3120, "left": 565}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719824f.jpg"} -{"rects": [{"solidity": 0.9357453941427052, "top": 600, "right": 5075, "bottom": 3620, "left": 1235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709954f.jpg"} -{"rects": [{"solidity": 0.9357700094861884, "top": 990, "right": 2020, "bottom": 2250, "left": 435}], "shape": {"h": 5790, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/417619.jpg"} -{"rects": [{"solidity": 0.9359249867741759, "top": 510, "right": 4955, "bottom": 3395, "left": 1120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722659f.jpg"} -{"rects": [{"solidity": 0.9359410793100648, "top": 460, "right": 4935, "bottom": 3575, "left": 1115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722122f.jpg"} -{"rects": [{"solidity": 0.9360826676673993, "top": 955, "right": 3695, "bottom": 2200, "left": 2155}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517065.jpg"} -{"rects": [{"solidity": 0.936107684693116, "top": 640, "right": 4930, "bottom": 3580, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703299f.jpg"} -{"rects": [{"solidity": 0.9362594788037395, "top": 2930, "right": 3360, "bottom": 5255, "left": 420}, {"solidity": 0.9890037972674326, "top": 570, "right": 3310, "bottom": 2450, "left": 555}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731925f.jpg"} -{"rects": [{"solidity": 0.9364307646124078, "top": 510, "right": 1970, "bottom": 3675, "left": 735}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714540f.jpg"} -{"rects": [{"solidity": 0.9364362662257824, "top": 1045, "right": 2015, "bottom": 3265, "left": 770}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728942f.jpg"} -{"rects": [{"solidity": 0.9364527724014718, "top": 3080, "right": 3905, "bottom": 5505, "left": 2595}, {"solidity": 0.9400298756041654, "top": 3105, "right": 1905, "bottom": 5540, "left": 625}, {"solidity": 0.9848376477492595, "top": 675, "right": 1775, "bottom": 2760, "left": 415}], "shape": {"h": 6010, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465682.jpg"} -{"rects": [{"solidity": 0.9365518782965297, "top": 645, "right": 1930, "bottom": 2585, "left": 340}], "shape": {"h": 5805, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/417675.jpg"} -{"rects": [{"solidity": 0.9365563890894253, "top": 3520, "right": 2215, "bottom": 5520, "left": 465}, {"solidity": 0.9508742084027326, "top": 3645, "right": 4225, "bottom": 5455, "left": 2595}], "shape": {"h": 6010, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465698.jpg"} -{"rects": [{"solidity": 0.9365618777028791, "top": 450, "right": 5025, "bottom": 3460, "left": 1150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712875f.jpg"} -{"rects": [{"solidity": 0.9365947478899281, "top": 455, "right": 3175, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703569f.jpg"} -{"rects": [{"solidity": 0.9366448026733595, "top": 630, "right": 5015, "bottom": 3605, "left": 1170}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703886f.jpg"} -{"rects": [{"solidity": 0.936660499676609, "top": 785, "right": 3105, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717791f.jpg"} -{"rects": [{"solidity": 0.9366724837816306, "top": 870, "right": 3075, "bottom": 2740, "left": 1510}, {"solidity": 0.964928711382765, "top": 3535, "right": 1900, "bottom": 5445, "left": 810}, {"solidity": 0.9472711233843439, "top": 3640, "right": 3775, "bottom": 5365, "left": 2775}], "shape": {"h": 6010, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465696.jpg"} -{"rects": [{"solidity": 0.9366843156379174, "top": 415, "right": 2125, "bottom": 2290, "left": 310}], "shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627922.jpg"} -{"rects": [{"solidity": 0.9367095836201494, "top": 715, "right": 3750, "bottom": 3250, "left": 445}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713253f.jpg"} -{"rects": [{"solidity": 0.936815878018655, "top": 1035, "right": 1620, "bottom": 3215, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712576f.jpg"} -{"rects": [{"solidity": 0.9368173890241916, "top": 465, "right": 3065, "bottom": 1955, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718273f.jpg"} -{"rects": [{"solidity": 0.9370270334385029, "top": 685, "right": 3650, "bottom": 2375, "left": 1270}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507607.jpg"} -{"rects": [{"solidity": 0.937049954438984, "top": 430, "right": 4950, "bottom": 3555, "left": 1120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712842f.jpg"} -{"rects": [{"solidity": 0.9370626148517159, "top": 980, "right": 3515, "bottom": 3180, "left": 1195}, {"solidity": 0.9447497748030239, "top": 3350, "right": 3450, "bottom": 5545, "left": 1235}], "shape": {"h": 6010, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/464851.jpg"} -{"rects": [{"solidity": 0.9371409275845539, "top": 520, "right": 4980, "bottom": 3615, "left": 1150}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726267f.jpg"} -{"rects": [{"solidity": 0.9372106903017515, "top": 810, "right": 3020, "bottom": 2260, "left": 1035}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507568.jpg"} -{"rects": [{"solidity": 0.9372510011493246, "top": 705, "right": 2575, "bottom": 2100, "left": 710}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704955f.jpg"} -{"rects": [{"solidity": 0.9374150209723189, "top": 2185, "right": 3970, "bottom": 5470, "left": 825}], "shape": {"h": 5740, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/417692.jpg"} -{"rects": [{"solidity": 0.9375329144332947, "top": 495, "right": 2045, "bottom": 1915, "left": 810}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728320f.jpg"} -{"rects": [{"solidity": 0.9375381505173237, "top": 960, "right": 3380, "bottom": 4850, "left": 385}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724103f.jpg"} -{"rects": [{"solidity": 0.9375451610491957, "top": 605, "right": 3115, "bottom": 2190, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726288f.jpg"} -{"rects": [{"solidity": 0.9376099860793738, "top": 865, "right": 2515, "bottom": 2545, "left": 190}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509363.jpg"} -{"rects": [{"solidity": 0.9376462578090132, "top": 640, "right": 5045, "bottom": 3640, "left": 1170}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708772f.jpg"} -{"rects": [{"solidity": 0.9377866794186962, "top": 3225, "right": 3625, "bottom": 5435, "left": 855}, {"solidity": 0.9440463238533677, "top": 965, "right": 3570, "bottom": 3155, "left": 885}], "shape": {"h": 5985, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465659.jpg"} -{"rects": [{"solidity": 0.9378014077399687, "top": 675, "right": 2765, "bottom": 2110, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731130f.jpg"} -{"rects": [{"solidity": 0.9378907410388921, "top": 605, "right": 4960, "bottom": 3515, "left": 1135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732927f.jpg"} -{"rects": [{"solidity": 0.9379319819915031, "top": 790, "right": 3150, "bottom": 2925, "left": 1160}], "shape": {"h": 6010, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465579.jpg"} -{"rects": [{"solidity": 0.9379428208277153, "top": 1155, "right": 3855, "bottom": 2845, "left": 2955}, {"solidity": 0.991430760354498, "top": 1075, "right": 1525, "bottom": 2540, "left": 610}], "shape": {"h": 5955, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/1238852.jpg"} -{"rects": [{"solidity": 0.9379723307068291, "top": 725, "right": 3790, "bottom": 3270, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712422f.jpg"} -{"rects": [{"solidity": 0.9380562175118804, "top": 1280, "right": 3295, "bottom": 4725, "left": 600}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717026f.jpg"} -{"rects": [{"solidity": 0.9380820744815053, "top": 355, "right": 4930, "bottom": 3490, "left": 1115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722184f.jpg"} -{"rects": [{"solidity": 0.9381373185957426, "top": 545, "right": 5005, "bottom": 3615, "left": 1150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712860f.jpg"} -{"rects": [{"solidity": 0.9382240017912767, "top": 405, "right": 2065, "bottom": 2720, "left": 410}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509247.jpg"} -{"rects": [{"solidity": 0.9383748200032317, "top": 765, "right": 3455, "bottom": 5370, "left": 375}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713267f.jpg"} -{"rects": [{"solidity": 0.9383880448450275, "top": 530, "right": 3860, "bottom": 2785, "left": 825}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507881.jpg"} -{"rects": [{"solidity": 0.9384388485278855, "top": 685, "right": 3170, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734164f.jpg"} -{"rects": [{"solidity": 0.9384611563816783, "top": 3245, "right": 2275, "bottom": 5520, "left": 185}, {"solidity": 0.957108469727174, "top": 3275, "right": 4445, "bottom": 5505, "left": 2405}, {"solidity": 0.9722589732956827, "top": 970, "right": 2585, "bottom": 2775, "left": 370}], "shape": {"h": 5985, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465561.jpg"} -{"rects": [{"solidity": 0.9385261111435552, "top": 560, "right": 2710, "bottom": 3615, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720476f.jpg"} -{"rects": [{"solidity": 0.9385828621464763, "top": 490, "right": 5000, "bottom": 3545, "left": 1145}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712848f.jpg"} -{"rects": [{"solidity": 0.9387157525411486, "top": 1590, "right": 1725, "bottom": 3585, "left": 130}, {"solidity": 0.9909888433298369, "top": 2500, "right": 2710, "bottom": 3585, "left": 1725}], "shape": {"h": 3715, "w": 2840}, "file": "/usr/local/google/home/danvk/milstein/1557955.jpg"} -{"rects": [{"solidity": 0.9387912137367963, "top": 1135, "right": 3455, "bottom": 4960, "left": 465}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722151f.jpg"} -{"rects": [{"solidity": 0.9389415521034956, "top": 3460, "right": 2085, "bottom": 5635, "left": 285}, {"solidity": 0.9600929664656678, "top": 860, "right": 2945, "bottom": 2485, "left": 1465}], "shape": {"h": 5985, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/465636.jpg"} -{"rects": [{"solidity": 0.9390082476326239, "top": 540, "right": 3090, "bottom": 1940, "left": 890}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/712815f.jpg"} -{"rects": [{"solidity": 0.9390107832042823, "top": 1145, "right": 5040, "bottom": 2785, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727516f.jpg"} -{"rects": [{"solidity": 0.9390361171243021, "top": 2815, "right": 3475, "bottom": 5595, "left": 960}, {"solidity": 0.9582538891537028, "top": 385, "right": 3485, "bottom": 2760, "left": 1110}], "shape": {"h": 5805, "w": 4580}, "file": "/usr/local/google/home/danvk/milstein/417686.jpg"} -{"rects": [{"solidity": 0.9390501855845451, "top": 520, "right": 4985, "bottom": 3525, "left": 1115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731145f.jpg"} -{"rects": [{"solidity": 0.9390550891863568, "top": 515, "right": 1665, "bottom": 1480, "left": 240}], "shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627923.jpg"} -{"rects": [{"solidity": 0.939105650348573, "top": 2380, "right": 3125, "bottom": 3955, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722379f.jpg"} -{"rects": [{"solidity": 0.939187643747538, "top": 1110, "right": 3555, "bottom": 4980, "left": 435}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722159f.jpg"} -{"rects": [{"solidity": 0.9391886527207596, "top": 3300, "right": 3600, "bottom": 5545, "left": 1125}], "shape": {"h": 5810, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417642.jpg"} -{"rects": [{"solidity": 0.9392357455792476, "top": 3395, "right": 2380, "bottom": 5615, "left": 245}], "shape": {"h": 6010, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/464758.jpg"} -{"rects": [{"solidity": 0.9392487108889545, "top": 1030, "right": 4260, "bottom": 3025, "left": 2290}], "shape": {"h": 5995, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/464769.jpg"} -{"rects": [{"solidity": 0.9392525639181759, "top": 620, "right": 4890, "bottom": 3645, "left": 1045}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720548f.jpg"} -{"rects": [{"solidity": 0.9392881596713402, "top": 935, "right": 2680, "bottom": 2825, "left": 470}], "shape": {"h": 5975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465612.jpg"} -{"rects": [{"solidity": 0.9394071152005674, "top": 1035, "right": 2520, "bottom": 3855, "left": 495}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507989.jpg"} -{"rects": [{"solidity": 0.9394419807387895, "top": 1095, "right": 3580, "bottom": 4830, "left": 610}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/732577f.jpg"} -{"rects": [{"solidity": 0.9394532439179257, "top": 430, "right": 3070, "bottom": 1790, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713311f.jpg"} -{"rects": [{"solidity": 0.939568228155047, "top": 460, "right": 3615, "bottom": 2235, "left": 950}], "shape": {"h": 6925, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711174f.jpg"} -{"rects": [{"solidity": 0.9396502754765543, "top": 435, "right": 3410, "bottom": 3935, "left": 530}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719910f.jpg"} -{"rects": [{"solidity": 0.9396626389267436, "top": 3565, "right": 2240, "bottom": 5590, "left": 155}, {"solidity": 0.9368421733171274, "top": 3535, "right": 4430, "bottom": 5480, "left": 2380}, {"solidity": 0.9657021998227947, "top": 1160, "right": 1845, "bottom": 3160, "left": 455}], "shape": {"h": 6015, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465687.jpg"} -{"rects": [{"solidity": 0.9397289586305279, "top": 2660, "right": 2345, "bottom": 4300, "left": 280}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508401.jpg"} -{"rects": [{"solidity": 0.9398033690058378, "top": 2750, "right": 4290, "bottom": 5520, "left": 2630}], "shape": {"h": 6005, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/464742.jpg"} -{"rects": [{"solidity": 0.9398299315001876, "top": 2840, "right": 4240, "bottom": 5500, "left": 2020}, {"solidity": 0.9441160185004234, "top": 3050, "right": 2090, "bottom": 5525, "left": 180}, {"solidity": 0.9346198798619227, "top": 1375, "right": 3235, "bottom": 2805, "left": 1240}], "shape": {"h": 6005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464759.jpg"} -{"rects": [{"solidity": 0.9398511762332385, "top": 335, "right": 2570, "bottom": 2690, "left": 860}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508977.jpg"} -{"rects": [{"solidity": 0.9398961723713556, "top": 2885, "right": 2060, "bottom": 5685, "left": 545}, {"solidity": 0.9802209700041832, "top": 340, "right": 4070, "bottom": 2565, "left": 2905}], "shape": {"h": 6005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465655.jpg"} -{"rects": [{"solidity": 0.939957535145077, "top": 425, "right": 3285, "bottom": 1960, "left": 620}, {"solidity": 0.9895023375117278, "top": 2180, "right": 3090, "bottom": 3580, "left": 830}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/716806f.jpg"} -{"rects": [{"solidity": 0.9400431913029377, "top": 1155, "right": 3395, "bottom": 4975, "left": 570}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709017f.jpg"} -{"rects": [{"solidity": 0.9401915137224938, "top": 1145, "right": 3430, "bottom": 5005, "left": 345}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723725f.jpg"} -{"rects": [{"solidity": 0.9401996112675963, "top": 795, "right": 4650, "bottom": 3270, "left": 1410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731153f.jpg"} -{"rects": [{"solidity": 0.9402346504134206, "top": 435, "right": 3275, "bottom": 3830, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723105f.jpg"} -{"rects": [{"solidity": 0.9402830721870152, "top": 2785, "right": 2320, "bottom": 5330, "left": 245}], "shape": {"h": 5790, "w": 4535}, "file": "/usr/local/google/home/danvk/milstein/417660.jpg"} -{"rects": [{"solidity": 0.9404151572576981, "top": 590, "right": 4930, "bottom": 3615, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720518f.jpg"} -{"rects": [{"solidity": 0.9404390976823539, "top": 4225, "right": 3930, "bottom": 5785, "left": 740}, {"solidity": 0.9683564499659633, "top": 935, "right": 4305, "bottom": 4120, "left": 2800}], "shape": {"h": 5985, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465642.jpg"} -{"rects": [{"solidity": 0.9406921673609336, "top": 845, "right": 2120, "bottom": 3685, "left": 580}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465643.jpg"} -{"rects": [{"solidity": 0.9407125462577443, "top": 760, "right": 5100, "bottom": 3685, "left": 1130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727365f.jpg"} -{"rects": [{"solidity": 0.9407522593330209, "top": 365, "right": 3855, "bottom": 2895, "left": 355}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/708361f.jpg"} -{"rects": [{"solidity": 0.9408083383907841, "top": 3935, "right": 2320, "bottom": 5440, "left": 710}, {"solidity": 0.9458324397741082, "top": 3950, "right": 4180, "bottom": 5380, "left": 2630}], "shape": {"h": 5985, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465550.jpg"} -{"rects": [{"solidity": 0.9408553215232709, "top": 1510, "right": 5010, "bottom": 3610, "left": 1075}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727325f.jpg"} -{"rects": [{"solidity": 0.940917979983895, "top": 800, "right": 3085, "bottom": 1890, "left": 895}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727955f.jpg"} -{"rects": [{"solidity": 0.9409597294027722, "top": 710, "right": 3185, "bottom": 5450, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/716994f.jpg"} -{"rects": [{"solidity": 0.9410221343968769, "top": 1310, "right": 3695, "bottom": 5630, "left": 280}], "shape": {"h": 6920, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708349f.jpg"} -{"rects": [{"solidity": 0.9411748186943183, "top": 535, "right": 4900, "bottom": 3505, "left": 1190}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733398f.jpg"} -{"rects": [{"solidity": 0.941225336611243, "top": 3060, "right": 3475, "bottom": 4585, "left": 1460}], "shape": {"h": 5680, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1823504.jpg"} -{"rects": [{"solidity": 0.9413967163134463, "top": 1325, "right": 3520, "bottom": 5040, "left": 130}, {"solidity": 0.9348012843228848, "top": 5040, "right": 3170, "bottom": 6010, "left": 435}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724473f.jpg"} -{"rects": [{"solidity": 0.941456525537243, "top": 1475, "right": 1895, "bottom": 3580, "left": 575}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508757.jpg"} -{"rects": [{"solidity": 0.9414920991045409, "top": 1030, "right": 3480, "bottom": 4960, "left": 400}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713261f.jpg"} -{"rects": [{"solidity": 0.941560033783477, "top": 1110, "right": 950, "bottom": 2985, "left": 135}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724123f.jpg"} -{"rects": [{"solidity": 0.941613464464326, "top": 835, "right": 2095, "bottom": 3210, "left": 520}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721027f.jpg"} -{"rects": [{"solidity": 0.9416804049917894, "top": 475, "right": 2620, "bottom": 2175, "left": 295}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517037.jpg"} -{"rects": [{"solidity": 0.9416904128299932, "top": 855, "right": 1950, "bottom": 2415, "left": 550}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727668f.jpg"} -{"rects": [{"solidity": 0.9416992135958199, "top": 520, "right": 2175, "bottom": 2715, "left": 430}], "shape": {"h": 5985, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465608.jpg"} -{"rects": [{"solidity": 0.9417014999742952, "top": 2780, "right": 2410, "bottom": 4360, "left": 280}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507548.jpg"} -{"rects": [{"solidity": 0.941745610711128, "top": 4140, "right": 3090, "bottom": 5120, "left": 910}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709299f.jpg"} -{"rects": [{"solidity": 0.9419404693524193, "top": 910, "right": 1855, "bottom": 3110, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720297f.jpg"} -{"rects": [{"solidity": 0.9420661251573047, "top": 270, "right": 1840, "bottom": 1210, "left": 650}], "shape": {"h": 3965, "w": 2575}, "file": "/usr/local/google/home/danvk/milstein/733289f.jpg"} -{"rects": [{"solidity": 0.9420952546064287, "top": 1775, "right": 3240, "bottom": 2895, "left": 910}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717795f.jpg"} -{"rects": [{"solidity": 0.9421355763652938, "top": 725, "right": 2615, "bottom": 3650, "left": 285}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509333.jpg"} -{"rects": [{"solidity": 0.9422460623665303, "top": 2680, "right": 2075, "bottom": 5675, "left": 565}, {"solidity": 0.9335691706056155, "top": 2780, "right": 3995, "bottom": 5495, "left": 2520}, {"solidity": 0.9870197570765782, "top": 470, "right": 1995, "bottom": 2450, "left": 405}], "shape": {"h": 5990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465656.jpg"} -{"rects": [{"solidity": 0.9422890315112102, "top": 2780, "right": 1915, "bottom": 5690, "left": 840}, {"solidity": 0.9372438319626584, "top": 2780, "right": 3880, "bottom": 5620, "left": 2815}, {"solidity": 0.9882149476376378, "top": 365, "right": 1645, "bottom": 2475, "left": 570}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465674.jpg"} -{"rects": [{"solidity": 0.942314822624047, "top": 745, "right": 3855, "bottom": 3210, "left": 530}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712426f.jpg"} -{"rects": [{"solidity": 0.942399836013768, "top": 730, "right": 3785, "bottom": 3115, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712491f.jpg"} -{"rects": [{"solidity": 0.9427378161754921, "top": 3020, "right": 2270, "bottom": 5645, "left": 315}, {"solidity": 0.9364807995791689, "top": 3010, "right": 4315, "bottom": 5585, "left": 2290}, {"solidity": 0.99421175199973, "top": 1270, "right": 4225, "bottom": 2860, "left": 2345}, {"solidity": 0.9510023268301414, "top": 565, "right": 1505, "bottom": 1380, "left": 425}], "shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465539.jpg"} -{"rects": [{"solidity": 0.9427640937336228, "top": 625, "right": 3230, "bottom": 2695, "left": 405}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717358f.jpg"} -{"rects": [{"solidity": 0.9428290301612219, "top": 1125, "right": 3260, "bottom": 4900, "left": 365}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714210f.jpg"} -{"rects": [{"solidity": 0.9430866361172582, "top": 845, "right": 5780, "bottom": 3555, "left": 4165}, {"solidity": 0.9973811020322648, "top": 840, "right": 3950, "bottom": 3240, "left": 2345}, {"solidity": 0.9954627471123579, "top": 840, "right": 2130, "bottom": 3240, "left": 530}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721293f.jpg"} -{"rects": [{"solidity": 0.9431107348790515, "top": 420, "right": 3590, "bottom": 2680, "left": 785}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508301.jpg"} -{"rects": [{"solidity": 0.9432050348292155, "top": 720, "right": 4815, "bottom": 1695, "left": 1130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703298f.jpg"} -{"rects": [{"solidity": 0.9432050734479973, "top": 585, "right": 2880, "bottom": 5690, "left": 440}, {"solidity": 0.9962270580789641, "top": 1790, "right": 4235, "bottom": 4420, "left": 3050}], "shape": {"h": 5995, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464838.jpg"} -{"rects": [{"solidity": 0.9432215734365857, "top": 675, "right": 2725, "bottom": 1910, "left": 1080}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705454f.jpg"} -{"rects": [{"solidity": 0.9433516642672635, "top": 520, "right": 5005, "bottom": 3540, "left": 1145}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724014f.jpg"} -{"rects": [{"solidity": 0.9433671490796685, "top": 570, "right": 4935, "bottom": 3615, "left": 1065}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712773f.jpg"} -{"rects": [{"solidity": 0.9433724150609948, "top": 580, "right": 4945, "bottom": 3575, "left": 1100}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722949f.jpg"} -{"rects": [{"solidity": 0.9433732920890175, "top": 2815, "right": 2385, "bottom": 5310, "left": 220}, {"solidity": 0.9660161274706427, "top": 2820, "right": 4555, "bottom": 5290, "left": 2540}, {"solidity": 0.963599502542479, "top": 725, "right": 2630, "bottom": 2415, "left": 425}], "shape": {"h": 5805, "w": 4685}, "file": "/usr/local/google/home/danvk/milstein/417644.jpg"} -{"rects": [{"solidity": 0.9434093295056533, "top": 555, "right": 4000, "bottom": 2700, "left": 1160}], "shape": {"h": 3005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508221.jpg"} -{"rects": [{"solidity": 0.9434689290896044, "top": 1090, "right": 3390, "bottom": 4995, "left": 310}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719951f.jpg"} -{"rects": [{"solidity": 0.9434705993505095, "top": 3890, "right": 3225, "bottom": 5055, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708464f.jpg"} -{"rects": [{"solidity": 0.943625627420309, "top": 1215, "right": 4660, "bottom": 3325, "left": 1125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734524f.jpg"} -{"rects": [{"solidity": 0.9436821347855033, "top": 270, "right": 3275, "bottom": 3260, "left": 445}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730173f.jpg"} -{"rects": [{"solidity": 0.9436921576246857, "top": 970, "right": 3860, "bottom": 3015, "left": 600}, {"solidity": 0.9751346853874155, "top": 3420, "right": 3805, "bottom": 5335, "left": 585}], "shape": {"h": 5960, "w": 4595}, "file": "/usr/local/google/home/danvk/milstein/465613.jpg"} -{"rects": [{"solidity": 0.9437084787379226, "top": 1015, "right": 2465, "bottom": 4035, "left": 165}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508793.jpg"} -{"rects": [{"solidity": 0.9437782412234967, "top": 1005, "right": 5090, "bottom": 2315, "left": 950}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719143f.jpg"} -{"rects": [{"solidity": 0.9439264938166968, "top": 2790, "right": 2435, "bottom": 5405, "left": 295}], "shape": {"h": 5805, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417674.jpg"} -{"rects": [{"solidity": 0.943939588854298, "top": 3360, "right": 2650, "bottom": 5585, "left": 330}, {"solidity": 0.992000639948804, "top": 1080, "right": 2060, "bottom": 2315, "left": 530}], "shape": {"h": 5980, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465534.jpg"} -{"rects": [{"solidity": 0.9439486607991623, "top": 3115, "right": 2240, "bottom": 5495, "left": 345}, {"solidity": 0.9480267478655442, "top": 3040, "right": 4220, "bottom": 5415, "left": 2350}, {"solidity": 0.9705767776530168, "top": 815, "right": 2040, "bottom": 2610, "left": 395}], "shape": {"h": 5990, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465662.jpg"} -{"rects": [{"solidity": 0.9440162429825544, "top": 970, "right": 3485, "bottom": 3375, "left": 1080}], "shape": {"h": 5980, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/464842.jpg"} -{"rects": [{"solidity": 0.9440968439373038, "top": 1000, "right": 3215, "bottom": 2410, "left": 560}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508471.jpg"} -{"rects": [{"solidity": 0.9441610161771021, "top": 375, "right": 3125, "bottom": 3555, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714191f.jpg"} -{"rects": [{"solidity": 0.9441718880289873, "top": 355, "right": 4860, "bottom": 3380, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723073f.jpg"} -{"rects": [{"solidity": 0.9442717357399548, "top": 1250, "right": 3400, "bottom": 4720, "left": 500}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716861f.jpg"} -{"rects": [{"solidity": 0.9443025989743549, "top": 905, "right": 2625, "bottom": 3710, "left": 335}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509063.jpg"} -{"rects": [{"solidity": 0.9443229909996123, "top": 300, "right": 2120, "bottom": 1395, "left": 615}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716311f.jpg"} -{"rects": [{"solidity": 0.9443333397520364, "top": 585, "right": 4995, "bottom": 1910, "left": 1155}, {"solidity": 0.9550499371063591, "top": 1825, "right": 5000, "bottom": 3595, "left": 2930}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703306f.jpg"} -{"rects": [{"solidity": 0.9443562492678453, "top": 2725, "right": 2395, "bottom": 4280, "left": 290}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509273.jpg"} -{"rects": [{"solidity": 0.9443565678934234, "top": 975, "right": 3895, "bottom": 2150, "left": 2265}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1510011.jpg"} -{"rects": [{"solidity": 0.9443639162684687, "top": 620, "right": 2725, "bottom": 2015, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706458f.jpg"} -{"rects": [{"solidity": 0.9443801185562449, "top": 2965, "right": 3100, "bottom": 5460, "left": 455}, {"solidity": 0.9316952308936092, "top": 285, "right": 4175, "bottom": 2700, "left": 1570}], "shape": {"h": 5790, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/417622.jpg"} -{"rects": [{"solidity": 0.9444542564464854, "top": 550, "right": 3070, "bottom": 1890, "left": 870}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725282f.jpg"} -{"rects": [{"solidity": 0.9445434779000481, "top": 3210, "right": 2280, "bottom": 5470, "left": 555}, {"solidity": 0.9646138310418123, "top": 3170, "right": 4315, "bottom": 5355, "left": 2635}], "shape": {"h": 5990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465555.jpg"} -{"rects": [{"solidity": 0.944560962403769, "top": 1930, "right": 2935, "bottom": 5255, "left": 490}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714768f.jpg"} -{"rects": [{"solidity": 0.944566636999451, "top": 555, "right": 3105, "bottom": 2115, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724851f.jpg"} -{"rects": [{"solidity": 0.9446108336494289, "top": 1205, "right": 3285, "bottom": 4835, "left": 575}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708467f.jpg"} -{"rects": [{"solidity": 0.9446187899234497, "top": 605, "right": 5030, "bottom": 3675, "left": 1155}], "shape": {"h": 4030, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/729754f.jpg"} -{"rects": [{"solidity": 0.9446523291146709, "top": 560, "right": 4960, "bottom": 3465, "left": 1250}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700406f.jpg"} -{"rects": [{"solidity": 0.9446700671042162, "top": 2125, "right": 2800, "bottom": 3560, "left": 880}, {"solidity": 0.9947074033288541, "top": 2090, "right": 5240, "bottom": 3515, "left": 3405}, {"solidity": 0.9955384047123778, "top": 660, "right": 5225, "bottom": 2085, "left": 3395}, {"solidity": 0.9947665095485689, "top": 700, "right": 2720, "bottom": 2120, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706001f.jpg"} -{"rects": [{"solidity": 0.9447642186541646, "top": 635, "right": 5005, "bottom": 3660, "left": 1155}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708766f.jpg"} -{"rects": [{"solidity": 0.9448786916022818, "top": 770, "right": 2540, "bottom": 3530, "left": 390}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508133.jpg"} -{"rects": [{"solidity": 0.944889789287344, "top": 4050, "right": 2735, "bottom": 5630, "left": 195}, {"solidity": 0.962549947074654, "top": 485, "right": 2140, "bottom": 2345, "left": 395}, {"solidity": 0.9914326156596885, "top": 4170, "right": 4190, "bottom": 5605, "left": 2885}, {"solidity": 0.9828843803842096, "top": 2585, "right": 1665, "bottom": 3865, "left": 365}], "shape": {"h": 5995, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465517.jpg"} -{"rects": [{"solidity": 0.944912259687369, "top": 3000, "right": 3990, "bottom": 5360, "left": 2585}], "shape": {"h": 5805, "w": 4520}, "file": "/usr/local/google/home/danvk/milstein/417678.jpg"} -{"rects": [{"solidity": 0.9450080627753723, "top": 920, "right": 2325, "bottom": 2975, "left": 800}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509239.jpg"} -{"rects": [{"solidity": 0.9451264955338479, "top": 820, "right": 2790, "bottom": 2295, "left": 335}], "shape": {"h": 2660, "w": 7065}, "file": "/usr/local/google/home/danvk/milstein/1627890.jpg"} -{"rects": [{"solidity": 0.9451721510019929, "top": 455, "right": 3180, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725167f.jpg"} -{"rects": [{"solidity": 0.945263122693984, "top": 2240, "right": 3220, "bottom": 3950, "left": 565}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722927f.jpg"} -{"rects": [{"solidity": 0.945296393502527, "top": 600, "right": 2735, "bottom": 3900, "left": 1110}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714189f.jpg"} -{"rects": [{"solidity": 0.9453104691356964, "top": 1070, "right": 3370, "bottom": 4915, "left": 325}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709971f.jpg"} -{"rects": [{"solidity": 0.9454144491353846, "top": 810, "right": 3590, "bottom": 3255, "left": 390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717151f.jpg"} -{"rects": [{"solidity": 0.9454705565094732, "top": 635, "right": 5815, "bottom": 3495, "left": 2355}, {"solidity": 0.996796976941737, "top": 615, "right": 2310, "bottom": 3470, "left": 265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723259f.jpg"} -{"rects": [{"solidity": 0.9455465000827403, "top": 1375, "right": 1590, "bottom": 2555, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712933f.jpg"} -{"rects": [{"solidity": 0.9457034732969162, "top": 745, "right": 5055, "bottom": 3505, "left": 1120}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725327f.jpg"} -{"rects": [{"solidity": 0.9457092686022722, "top": 820, "right": 5480, "bottom": 3380, "left": 2130}, {"solidity": 0.9956367629211536, "top": 730, "right": 2030, "bottom": 3165, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722432f.jpg"} -{"rects": [{"solidity": 0.9459355664604224, "top": 970, "right": 3765, "bottom": 2475, "left": 1500}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508429.jpg"} -{"rects": [{"solidity": 0.9459645806541578, "top": 660, "right": 4995, "bottom": 3675, "left": 1170}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701999f.jpg"} -{"rects": [{"solidity": 0.9459912538201221, "top": 815, "right": 3270, "bottom": 2735, "left": 550}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731343f.jpg"} -{"rects": [{"solidity": 0.9461128355804089, "top": 2255, "right": 2850, "bottom": 3755, "left": 995}, {"solidity": 0.9951222727572342, "top": 4100, "right": 2605, "bottom": 5670, "left": 1250}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708225f.jpg"} -{"rects": [{"solidity": 0.9461248379620537, "top": 1655, "right": 2760, "bottom": 2970, "left": 1110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731344f.jpg"} -{"rects": [{"solidity": 0.9461356459530708, "top": 845, "right": 3700, "bottom": 3125, "left": 965}, {"solidity": 0.9458912155260469, "top": 3315, "right": 3665, "bottom": 5530, "left": 1140}], "shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465565.jpg"} -{"rects": [{"solidity": 0.9461735560151885, "top": 1445, "right": 2980, "bottom": 2985, "left": 1495}], "shape": {"h": 6010, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465533.jpg"} -{"rects": [{"solidity": 0.9461942315590329, "top": 435, "right": 3240, "bottom": 3800, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717456f.jpg"} -{"rects": [{"solidity": 0.9462042488447657, "top": 2365, "right": 3900, "bottom": 5375, "left": 535}, {"solidity": 0.9687436223488595, "top": 435, "right": 4035, "bottom": 2495, "left": 2340}], "shape": {"h": 5995, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/464847.jpg"} -{"rects": [{"solidity": 0.9462827731257103, "top": 130, "right": 3875, "bottom": 1455, "left": 3060}], "shape": {"h": 3180, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/1558205.jpg"} -{"rects": [{"solidity": 0.9463950435971735, "top": 625, "right": 1995, "bottom": 2655, "left": 340}], "shape": {"h": 5805, "w": 4535}, "file": "/usr/local/google/home/danvk/milstein/417659.jpg"} -{"rects": [{"solidity": 0.9464220393736531, "top": 3065, "right": 2090, "bottom": 5535, "left": 925}, {"solidity": 0.9963014357505764, "top": 990, "right": 1695, "bottom": 2750, "left": 395}], "shape": {"h": 6045, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465714.jpg"} -{"rects": [{"solidity": 0.9465006997462708, "top": 1195, "right": 2035, "bottom": 2900, "left": 560}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721065f.jpg"} -{"rects": [{"solidity": 0.9465122551868266, "top": 3325, "right": 3635, "bottom": 5535, "left": 915}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465607.jpg"} -{"rects": [{"solidity": 0.946525402519396, "top": 2140, "right": 1480, "bottom": 3080, "left": 130}], "shape": {"h": 3210, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/1557890.jpg"} -{"rects": [{"solidity": 0.946707688335718, "top": 720, "right": 3265, "bottom": 2555, "left": 700}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712618f.jpg"} -{"rects": [{"solidity": 0.9467899646296526, "top": 635, "right": 4075, "bottom": 2230, "left": 1585}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508633.jpg"} -{"rects": [{"solidity": 0.946852509793204, "top": 515, "right": 2225, "bottom": 1945, "left": 380}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723754f.jpg"} -{"rects": [{"solidity": 0.9468649691596501, "top": 910, "right": 2540, "bottom": 3820, "left": 285}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509187.jpg"} -{"rects": [{"solidity": 0.9469259836886373, "top": 590, "right": 5065, "bottom": 3530, "left": 1095}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717817f.jpg"} -{"rects": [{"solidity": 0.9470134180668146, "top": 390, "right": 3165, "bottom": 2320, "left": 445}, {"solidity": 0.9942062036765952, "top": 2595, "right": 2770, "bottom": 3990, "left": 980}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728098f.jpg"} -{"rects": [{"solidity": 0.9470190470111624, "top": 3440, "right": 2190, "bottom": 5560, "left": 540}, {"solidity": 0.9676724502035783, "top": 3595, "right": 4065, "bottom": 5530, "left": 2480}, {"solidity": 0.996475724327599, "top": 930, "right": 3215, "bottom": 2405, "left": 1425}], "shape": {"h": 6005, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465702.jpg"} -{"rects": [{"solidity": 0.9470194502811895, "top": 455, "right": 3225, "bottom": 3835, "left": 560}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717007f.jpg"} -{"rects": [{"solidity": 0.9470405763746436, "top": 3250, "right": 3870, "bottom": 5490, "left": 2680}, {"solidity": 0.9570947969952532, "top": 3300, "right": 1935, "bottom": 5530, "left": 785}], "shape": {"h": 5990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465676.jpg"} -{"rects": [{"solidity": 0.9470434883619072, "top": 920, "right": 4120, "bottom": 3040, "left": 620}], "shape": {"h": 5965, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/464824.jpg"} -{"rects": [{"solidity": 0.9471053927448579, "top": 995, "right": 3765, "bottom": 3675, "left": 1770}, {"solidity": 0.9902417895997351, "top": 1320, "right": 1595, "bottom": 2630, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717078f.jpg"} -{"rects": [{"solidity": 0.9471590101703173, "top": 845, "right": 4705, "bottom": 3465, "left": 1295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722857f.jpg"} -{"rects": [{"solidity": 0.9472292389320635, "top": 2140, "right": 3060, "bottom": 4065, "left": 340}, {"solidity": 0.9960244540250195, "top": 425, "right": 2815, "bottom": 1955, "left": 950}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718641f.jpg"} -{"rects": [{"solidity": 0.9472820322660683, "top": 3385, "right": 3495, "bottom": 5565, "left": 1260}], "shape": {"h": 6005, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/465569.jpg"} -{"rects": [{"solidity": 0.9473634065829368, "top": 430, "right": 3110, "bottom": 1730, "left": 1350}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726770f.jpg"} -{"rects": [{"solidity": 0.9473712666146835, "top": 535, "right": 4885, "bottom": 3550, "left": 1140}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724104f.jpg"} -{"rects": [{"solidity": 0.947429700932808, "top": 770, "right": 2000, "bottom": 3150, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710969f.jpg"} -{"rects": [{"solidity": 0.9475394748195232, "top": 690, "right": 3470, "bottom": 2380, "left": 1270}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509271.jpg"} -{"rects": [{"solidity": 0.9476268755169778, "top": 970, "right": 3110, "bottom": 2260, "left": 1140}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507519.jpg"} -{"rects": [{"solidity": 0.9476697044958678, "top": 2175, "right": 3990, "bottom": 5210, "left": 565}, {"solidity": 0.977854881740645, "top": 920, "right": 1285, "bottom": 1955, "left": 395}], "shape": {"h": 5990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/464846.jpg"} -{"rects": [{"solidity": 0.9476744040917907, "top": 750, "right": 2580, "bottom": 3115, "left": 355}, {"solidity": 0.9663616641449922, "top": 3360, "right": 4310, "bottom": 5575, "left": 2095}], "shape": {"h": 5995, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465637.jpg"} -{"rects": [{"solidity": 0.94772334418041, "top": 1970, "right": 3460, "bottom": 4985, "left": 480}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714400f.jpg"} -{"rects": [{"solidity": 0.9478226965908814, "top": 575, "right": 3000, "bottom": 1950, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714701f.jpg"} -{"rects": [{"solidity": 0.9478951277778893, "top": 755, "right": 3200, "bottom": 2425, "left": 830}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509185.jpg"} -{"rects": [{"solidity": 0.9480063787701445, "top": 555, "right": 3620, "bottom": 2615, "left": 880}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508017.jpg"} -{"rects": [{"solidity": 0.9480637443138181, "top": 835, "right": 3955, "bottom": 2340, "left": 425}], "shape": {"h": 2660, "w": 7050}, "file": "/usr/local/google/home/danvk/milstein/1627898.jpg"} -{"rects": [{"solidity": 0.9481099664820429, "top": 660, "right": 2230, "bottom": 3425, "left": 345}, {"solidity": 0.9949801624910943, "top": 835, "right": 4075, "bottom": 3240, "left": 2470}, {"solidity": 0.9963025192097772, "top": 1160, "right": 5675, "bottom": 2910, "left": 4325}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721855f.jpg"} -{"rects": [{"solidity": 0.9481953402911538, "top": 3020, "right": 4480, "bottom": 5495, "left": 2275}, {"solidity": 0.961320713835989, "top": 3080, "right": 2200, "bottom": 5540, "left": 130}, {"solidity": 0.9664784504324209, "top": 980, "right": 2005, "bottom": 2720, "left": 405}], "shape": {"h": 6010, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/465686.jpg"} -{"rects": [{"solidity": 0.9483735403764981, "top": 1180, "right": 3450, "bottom": 4795, "left": 570}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717882f.jpg"} -{"rects": [{"solidity": 0.9484357886404845, "top": 385, "right": 3760, "bottom": 2740, "left": 810}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508381.jpg"} -{"rects": [{"solidity": 0.9484526716569531, "top": 1000, "right": 3155, "bottom": 2725, "left": 480}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722939f.jpg"} -{"rects": [{"solidity": 0.9485370888697681, "top": 1160, "right": 3390, "bottom": 4910, "left": 415}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717075f.jpg"} -{"rects": [{"solidity": 0.9485695842940676, "top": 3120, "right": 4380, "bottom": 5485, "left": 2450}], "shape": {"h": 6025, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465519.jpg"} -{"rects": [{"solidity": 0.9487175218463291, "top": 935, "right": 4610, "bottom": 3325, "left": 1395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720494f.jpg"} -{"rects": [{"solidity": 0.9487352873272694, "top": 1140, "right": 3475, "bottom": 4965, "left": 450}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709967f.jpg"} -{"rects": [{"solidity": 0.9488630269226643, "top": 3460, "right": 3485, "bottom": 5515, "left": 1305}], "shape": {"h": 5985, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465552.jpg"} -{"rects": [{"solidity": 0.9488736446496912, "top": 510, "right": 4970, "bottom": 3580, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704180f.jpg"} -{"rects": [{"solidity": 0.9488939327086309, "top": 4085, "right": 3815, "bottom": 6010, "left": 130}, {"solidity": 0.994469707500149, "top": 2235, "right": 3240, "bottom": 3830, "left": 845}, {"solidity": 0.9974445061874229, "top": 390, "right": 3230, "bottom": 1980, "left": 845}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710060f.jpg"} -{"rects": [{"solidity": 0.9489615973596238, "top": 2250, "right": 3280, "bottom": 3940, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722944f.jpg"} -{"rects": [{"solidity": 0.9489660410918966, "top": 585, "right": 5555, "bottom": 3945, "left": 1225}], "shape": {"h": 4420, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/711267f.jpg"} -{"rects": [{"solidity": 0.9491235441457458, "top": 625, "right": 5045, "bottom": 3645, "left": 1155}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708768f.jpg"} -{"rects": [{"solidity": 0.9491344956629406, "top": 2440, "right": 4545, "bottom": 4160, "left": 2400}, {"solidity": 0.9499798958280377, "top": 2245, "right": 2075, "bottom": 3910, "left": 405}, {"solidity": 0.946615464924567, "top": 230, "right": 4385, "bottom": 1985, "left": 2945}], "shape": {"h": 4430, "w": 5280}, "file": "/usr/local/google/home/danvk/milstein/1596944.jpg"} -{"rects": [{"solidity": 0.9491665106798943, "top": 1165, "right": 3435, "bottom": 4540, "left": 425}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700139f.jpg"} -{"rects": [{"solidity": 0.9492023078409361, "top": 2315, "right": 3350, "bottom": 5880, "left": 300}, {"solidity": 0.992, "top": 525, "right": 3320, "bottom": 2155, "left": 2075}, {"solidity": 0.995353806086198, "top": 550, "right": 1825, "bottom": 2145, "left": 570}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719189f.jpg"} -{"rects": [{"solidity": 0.9492290783212591, "top": 1145, "right": 3455, "bottom": 5020, "left": 370}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722146f.jpg"} -{"rects": [{"solidity": 0.9492387734982357, "top": 220, "right": 3330, "bottom": 2195, "left": 650}, {"solidity": 0.9672599302649234, "top": 4155, "right": 3165, "bottom": 5890, "left": 185}, {"solidity": 0.9954636123801557, "top": 2345, "right": 3195, "bottom": 4000, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732557f.jpg"} -{"rects": [{"solidity": 0.9492465406603507, "top": 660, "right": 4910, "bottom": 3425, "left": 1260}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731178f.jpg"} -{"rects": [{"solidity": 0.9492906832716509, "top": 490, "right": 2575, "bottom": 3400, "left": 210}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507995.jpg"} -{"rects": [{"solidity": 0.9493025359500898, "top": 675, "right": 4255, "bottom": 3745, "left": 640}, {"solidity": 0.9984436176953195, "top": 1025, "right": 5865, "bottom": 3440, "left": 4260}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715689f.jpg"} -{"rects": [{"solidity": 0.9493957842487204, "top": 815, "right": 3325, "bottom": 4275, "left": 360}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722073f.jpg"} -{"rects": [{"solidity": 0.9495372777373401, "top": 495, "right": 3095, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712440f.jpg"} -{"rects": [{"solidity": 0.9496111857891233, "top": 375, "right": 3295, "bottom": 1935, "left": 555}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704981f.jpg"} -{"rects": [{"solidity": 0.9496426946444343, "top": 670, "right": 2485, "bottom": 1895, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726386f.jpg"} -{"rects": [{"solidity": 0.949645306063358, "top": 3020, "right": 2305, "bottom": 5525, "left": 345}, {"solidity": 0.9509385047260704, "top": 3040, "right": 4385, "bottom": 5480, "left": 2385}, {"solidity": 0.9444985345983806, "top": 970, "right": 2005, "bottom": 2690, "left": 460}], "shape": {"h": 6035, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465688.jpg"} -{"rects": [{"solidity": 0.9496758759303845, "top": 1155, "right": 3465, "bottom": 5090, "left": 330}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712329f.jpg"} -{"rects": [{"solidity": 0.9497072240629102, "top": 1140, "right": 3485, "bottom": 2660, "left": 1165}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508389.jpg"} -{"rects": [{"solidity": 0.9498056009929556, "top": 435, "right": 3205, "bottom": 1840, "left": 1005}, {"solidity": 0.9946215741457795, "top": 2125, "right": 3040, "bottom": 3580, "left": 1185}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703297f.jpg"} -{"rects": [{"solidity": 0.9498483636625699, "top": 625, "right": 4945, "bottom": 3505, "left": 1185}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700221f.jpg"} -{"rects": [{"solidity": 0.9498584883533048, "top": 760, "right": 2700, "bottom": 3470, "left": 785}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704473f.jpg"} -{"rects": [{"solidity": 0.949874765062383, "top": 900, "right": 3380, "bottom": 2435, "left": 1170}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509181.jpg"} -{"rects": [{"solidity": 0.9498751376677951, "top": 660, "right": 4770, "bottom": 3385, "left": 1330}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722906f.jpg"} -{"rects": [{"solidity": 0.9498999962262726, "top": 2840, "right": 2380, "bottom": 4495, "left": 250}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507801.jpg"} -{"rects": [{"solidity": 0.9499564933011468, "top": 415, "right": 3485, "bottom": 2690, "left": 420}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717191f.jpg"} -{"rects": [{"solidity": 0.9499598859737467, "top": 430, "right": 2940, "bottom": 1980, "left": 1025}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724165f.jpg"} -{"rects": [{"solidity": 0.9500858043571162, "top": 1125, "right": 3375, "bottom": 4905, "left": 380}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723857f.jpg"} -{"rects": [{"solidity": 0.9502368126431702, "top": 590, "right": 4930, "bottom": 3600, "left": 1080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722130f.jpg"} -{"rects": [{"solidity": 0.950281672001183, "top": 3470, "right": 3545, "bottom": 5740, "left": 1095}], "shape": {"h": 6030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/465515.jpg"} -{"rects": [{"solidity": 0.9503262785231115, "top": 1085, "right": 3375, "bottom": 4875, "left": 370}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722140f.jpg"} -{"rects": [{"solidity": 0.9503297905061344, "top": 900, "right": 4235, "bottom": 2230, "left": 2830}, {"solidity": 0.9907014623494246, "top": 2580, "right": 4175, "bottom": 3715, "left": 2835}], "shape": {"h": 6050, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1238849.jpg"} -{"rects": [{"solidity": 0.9504074567352978, "top": 2540, "right": 2380, "bottom": 5395, "left": 220}, {"solidity": 0.979688923862166, "top": 2695, "right": 4530, "bottom": 5310, "left": 2480}], "shape": {"h": 5805, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417634.jpg"} -{"rects": [{"solidity": 0.9504638478209093, "top": 915, "right": 2795, "bottom": 4780, "left": 1115}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714384f.jpg"} -{"rects": [{"solidity": 0.9504693373278922, "top": 425, "right": 3180, "bottom": 1990, "left": 820}], "shape": {"h": 6070, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/728128f.jpg"} -{"rects": [{"solidity": 0.9505485719591266, "top": 685, "right": 2700, "bottom": 2060, "left": 905}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704905f.jpg"} -{"rects": [{"solidity": 0.9505557418433067, "top": 650, "right": 4910, "bottom": 3555, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703351f.jpg"} -{"rects": [{"solidity": 0.9505629874668678, "top": 800, "right": 2015, "bottom": 3165, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701372f.jpg"} -{"rects": [{"solidity": 0.9505688341023634, "top": 670, "right": 4185, "bottom": 3750, "left": 480}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715450f.jpg"} -{"rects": [{"solidity": 0.9506021405915467, "top": 1035, "right": 3485, "bottom": 4920, "left": 410}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721248f.jpg"} -{"rects": [{"solidity": 0.9506089637377081, "top": 2425, "right": 2850, "bottom": 4100, "left": 770}, {"solidity": 0.9788485537709289, "top": 2640, "right": 5910, "bottom": 4090, "left": 3825}], "shape": {"h": 4415, "w": 6845}, "file": "/usr/local/google/home/danvk/milstein/711704f.jpg"} -{"rects": [{"solidity": 0.9506631549242781, "top": 840, "right": 4260, "bottom": 3115, "left": 2370}, {"solidity": 0.9414969087019489, "top": 3360, "right": 4215, "bottom": 5475, "left": 2490}], "shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465544.jpg"} -{"rects": [{"solidity": 0.9507014139103999, "top": 1230, "right": 3305, "bottom": 4885, "left": 560}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713039f.jpg"} -{"rects": [{"solidity": 0.9507173129176136, "top": 1135, "right": 3380, "bottom": 5035, "left": 360}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708781f.jpg"} -{"rects": [{"solidity": 0.9507843322787805, "top": 495, "right": 3125, "bottom": 1845, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713305f.jpg"} -{"rects": [{"solidity": 0.9509194200080723, "top": 1170, "right": 3505, "bottom": 4980, "left": 435}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709970f.jpg"} -{"rects": [{"solidity": 0.951022411143208, "top": 535, "right": 5035, "bottom": 3585, "left": 1130}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721346f.jpg"} -{"rects": [{"solidity": 0.9511146392365327, "top": 980, "right": 5045, "bottom": 3460, "left": 1140}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722796f.jpg"} -{"rects": [{"solidity": 0.951120778200713, "top": 1000, "right": 1555, "bottom": 3325, "left": 290}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464743.jpg"} -{"rects": [{"solidity": 0.9512081130748463, "top": 755, "right": 3380, "bottom": 2735, "left": 450}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516989.jpg"} -{"rects": [{"solidity": 0.9512268155831987, "top": 515, "right": 4840, "bottom": 3535, "left": 1045}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715097f.jpg"} -{"rects": [{"solidity": 0.9512395368625948, "top": 2775, "right": 4185, "bottom": 5490, "left": 2400}, {"solidity": 0.995505272520305, "top": 3365, "right": 2010, "bottom": 5460, "left": 355}, {"solidity": 0.9714342040413997, "top": 1015, "right": 1990, "bottom": 2760, "left": 430}], "shape": {"h": 6005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/464732.jpg"} -{"rects": [{"solidity": 0.951259644001289, "top": 2250, "right": 3115, "bottom": 3825, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729461f.jpg"} -{"rects": [{"solidity": 0.9513426817883885, "top": 535, "right": 2910, "bottom": 1965, "left": 1065}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703232f.jpg"} -{"rects": [{"solidity": 0.9514065785708928, "top": 130, "right": 3000, "bottom": 1935, "left": 130}, {"solidity": 0.9956409336312776, "top": 2155, "right": 2960, "bottom": 3720, "left": 955}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700610f.jpg"} -{"rects": [{"solidity": 0.9514505952669524, "top": 1025, "right": 4075, "bottom": 3260, "left": 590}, {"solidity": 0.9814721853735816, "top": 3355, "right": 3930, "bottom": 5505, "left": 725}], "shape": {"h": 5995, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465567.jpg"} -{"rects": [{"solidity": 0.9514543540006062, "top": 705, "right": 4700, "bottom": 3215, "left": 1420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721265f.jpg"} -{"rects": [{"solidity": 0.9514848441103774, "top": 590, "right": 4995, "bottom": 3605, "left": 1180}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717038f.jpg"} -{"rects": [{"solidity": 0.9514862780410794, "top": 820, "right": 3680, "bottom": 3345, "left": 365}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712487f.jpg"} -{"rects": [{"solidity": 0.9514967237255253, "top": 1115, "right": 3420, "bottom": 5050, "left": 130}, {"solidity": 0.957752049305755, "top": 130, "right": 3340, "bottom": 1100, "left": 165}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733847f.jpg"} -{"rects": [{"solidity": 0.9515311566648339, "top": 960, "right": 3410, "bottom": 4890, "left": 330}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713226f.jpg"} -{"rects": [{"solidity": 0.9515313614432557, "top": 1215, "right": 3550, "bottom": 5095, "left": 405}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720742f.jpg"} -{"rects": [{"solidity": 0.9515821531984234, "top": 1160, "right": 3215, "bottom": 4960, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731844f.jpg"} -{"rects": [{"solidity": 0.9516213176901585, "top": 2485, "right": 3325, "bottom": 5050, "left": 585}, {"solidity": 0.9957330512210174, "top": 665, "right": 3220, "bottom": 2415, "left": 770}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/712760f.jpg"} -{"rects": [{"solidity": 0.9517673953700425, "top": 1080, "right": 3465, "bottom": 4945, "left": 455}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722161f.jpg"} -{"rects": [{"solidity": 0.9518370043835643, "top": 1265, "right": 3805, "bottom": 5500, "left": 365}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/708330f.jpg"} -{"rects": [{"solidity": 0.9519278197150197, "top": 1520, "right": 3075, "bottom": 4795, "left": 945}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722763f.jpg"} -{"rects": [{"solidity": 0.951928131228234, "top": 570, "right": 4905, "bottom": 3595, "left": 1120}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709943f.jpg"} -{"rects": [{"solidity": 0.9519376749407603, "top": 815, "right": 1975, "bottom": 3185, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713216f.jpg"} -{"rects": [{"solidity": 0.95194921169722, "top": 2340, "right": 3100, "bottom": 3845, "left": 825}, {"solidity": 0.9924345813801697, "top": 580, "right": 3100, "bottom": 1950, "left": 915}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707636f.jpg"} -{"rects": [{"solidity": 0.9519619408613588, "top": 435, "right": 2860, "bottom": 1875, "left": 1035}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727782f.jpg"} -{"rects": [{"solidity": 0.9520536817941021, "top": 2335, "right": 3240, "bottom": 3875, "left": 855}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722326f.jpg"} -{"rects": [{"solidity": 0.9521315658451581, "top": 525, "right": 5050, "bottom": 3630, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702784f.jpg"} -{"rects": [{"solidity": 0.9521940174202728, "top": 480, "right": 3015, "bottom": 1900, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712129f.jpg"} -{"rects": [{"solidity": 0.9522501443060939, "top": 580, "right": 2605, "bottom": 1975, "left": 795}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712170f.jpg"} -{"rects": [{"solidity": 0.9523023129673395, "top": 495, "right": 2895, "bottom": 1915, "left": 1060}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704930f.jpg"} -{"rects": [{"solidity": 0.9523036988968202, "top": 2990, "right": 4150, "bottom": 5690, "left": 1255}], "shape": {"h": 6025, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/464736.jpg"} -{"rects": [{"solidity": 0.9523123615204013, "top": 940, "right": 3580, "bottom": 2370, "left": 1435}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508707.jpg"} -{"rects": [{"solidity": 0.9523393493073958, "top": 785, "right": 5630, "bottom": 3875, "left": 1110}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704235f.jpg"} -{"rects": [{"solidity": 0.9523629897073881, "top": 810, "right": 3310, "bottom": 2625, "left": 1885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704265f.jpg"} -{"rects": [{"solidity": 0.9523800898420519, "top": 3550, "right": 3505, "bottom": 5545, "left": 1305}], "shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465557.jpg"} -{"rects": [{"solidity": 0.9524563851106289, "top": 1065, "right": 3590, "bottom": 4960, "left": 460}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722153f.jpg"} -{"rects": [{"solidity": 0.9524921112361832, "top": 2065, "right": 2255, "bottom": 5425, "left": 130}], "shape": {"h": 5785, "w": 4580}, "file": "/usr/local/google/home/danvk/milstein/417656.jpg"} -{"rects": [{"solidity": 0.9525197749327244, "top": 435, "right": 3215, "bottom": 2010, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725866f.jpg"} -{"rects": [{"solidity": 0.9525329211458191, "top": 615, "right": 2215, "bottom": 2915, "left": 435}], "shape": {"h": 6050, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/465583.jpg"} -{"rects": [{"solidity": 0.9525622732276081, "top": 2685, "right": 2850, "bottom": 3580, "left": 525}], "shape": {"h": 3710, "w": 2980}, "file": "/usr/local/google/home/danvk/milstein/1558076.jpg"} -{"rects": [{"solidity": 0.9527044881405783, "top": 380, "right": 3285, "bottom": 3780, "left": 640}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714429f.jpg"} -{"rects": [{"solidity": 0.9527487614158658, "top": 1055, "right": 4045, "bottom": 2070, "left": 755}], "shape": {"h": 5675, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1823514.jpg"} -{"rects": [{"solidity": 0.9527777978639556, "top": 1130, "right": 3065, "bottom": 3340, "left": 1475}], "shape": {"h": 6005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/465604.jpg"} -{"rects": [{"solidity": 0.9528204907632423, "top": 880, "right": 1925, "bottom": 3070, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714095f.jpg"} -{"rects": [{"solidity": 0.9529326610359314, "top": 810, "right": 3370, "bottom": 2640, "left": 1915}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705402f.jpg"} -{"rects": [{"solidity": 0.9529763266624497, "top": 425, "right": 3240, "bottom": 2010, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728028f.jpg"} -{"rects": [{"solidity": 0.9529830585627487, "top": 2245, "right": 5070, "bottom": 3600, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730495f.jpg"} -{"rects": [{"solidity": 0.9530336528137768, "top": 985, "right": 4935, "bottom": 3285, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700585f.jpg"} -{"rects": [{"solidity": 0.9531513313110886, "top": 890, "right": 3390, "bottom": 3125, "left": 1200}], "shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465599.jpg"} -{"rects": [{"solidity": 0.9532180028129396, "top": 920, "right": 2190, "bottom": 3950, "left": 710}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508527.jpg"} -{"rects": [{"solidity": 0.9532191686468988, "top": 910, "right": 3520, "bottom": 3105, "left": 2085}, {"solidity": 0.9762301918265222, "top": 920, "right": 1860, "bottom": 2905, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721524f.jpg"} -{"rects": [{"solidity": 0.9532899043106942, "top": 1535, "right": 2050, "bottom": 3260, "left": 825}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517173.jpg"} -{"rects": [{"solidity": 0.9533911746537034, "top": 1105, "right": 3450, "bottom": 4920, "left": 390}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711520f.jpg"} -{"rects": [{"solidity": 0.953456546275395, "top": 1990, "right": 5505, "bottom": 3475, "left": 4235}, {"solidity": 0.9630869339329364, "top": 560, "right": 1815, "bottom": 1795, "left": 575}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718286f.jpg"} -{"rects": [{"solidity": 0.9534774491666456, "top": 450, "right": 4230, "bottom": 3570, "left": 1085}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722138f.jpg"} -{"rects": [{"solidity": 0.9534978274363749, "top": 3525, "right": 2310, "bottom": 5525, "left": 210}], "shape": {"h": 5805, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/417629.jpg"} -{"rects": [{"solidity": 0.9535422737014473, "top": 3515, "right": 2260, "bottom": 5585, "left": 150}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464755.jpg"} -{"rects": [{"solidity": 0.9535594770670468, "top": 420, "right": 4990, "bottom": 3540, "left": 1155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712883f.jpg"} -{"rects": [{"solidity": 0.9535840379566467, "top": 605, "right": 2725, "bottom": 3585, "left": 510}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712043f.jpg"} -{"rects": [{"solidity": 0.9535975994259497, "top": 275, "right": 3840, "bottom": 3050, "left": 130}, {"solidity": 0.9653706892113738, "top": 130, "right": 3840, "bottom": 1045, "left": 130}], "shape": {"h": 3180, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/1558148.jpg"} -{"rects": [{"solidity": 0.9536313204223754, "top": 885, "right": 3360, "bottom": 4830, "left": 415}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712894f.jpg"} -{"rects": [{"solidity": 0.9537182152566768, "top": 670, "right": 4865, "bottom": 3410, "left": 1280}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730076f.jpg"} -{"rects": [{"solidity": 0.9537736952960449, "top": 3165, "right": 2315, "bottom": 5300, "left": 255}, {"solidity": 0.9720830653367999, "top": 3220, "right": 4450, "bottom": 5270, "left": 2395}, {"solidity": 0.9530981235887696, "top": 1115, "right": 2130, "bottom": 2570, "left": 480}], "shape": {"h": 5805, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/417625.jpg"} -{"rects": [{"solidity": 0.9538071146495805, "top": 400, "right": 2535, "bottom": 2710, "left": 805}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508739.jpg"} -{"rects": [{"solidity": 0.9538091474080498, "top": 695, "right": 3610, "bottom": 2670, "left": 435}, {"solidity": 0.9639792760437026, "top": 3240, "right": 3570, "bottom": 5130, "left": 445}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730679f.jpg"} -{"rects": [{"solidity": 0.9538140788921278, "top": 520, "right": 4970, "bottom": 3405, "left": 1250}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709289f.jpg"} -{"rects": [{"solidity": 0.9538148162000581, "top": 765, "right": 3525, "bottom": 2615, "left": 750}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509131.jpg"} -{"rects": [{"solidity": 0.9538412410463898, "top": 830, "right": 3515, "bottom": 3200, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712480f.jpg"} -{"rects": [{"solidity": 0.9538794075426661, "top": 1115, "right": 3460, "bottom": 4975, "left": 455}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722145f.jpg"} -{"rects": [{"solidity": 0.9539010571930976, "top": 605, "right": 4985, "bottom": 3545, "left": 1090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703904f.jpg"} -{"rects": [{"solidity": 0.9539891438749141, "top": 520, "right": 4950, "bottom": 3600, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722600f.jpg"} -{"rects": [{"solidity": 0.9539936199831553, "top": 625, "right": 4995, "bottom": 3660, "left": 1175}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717036f.jpg"} -{"rects": [{"solidity": 0.9540603188613197, "top": 585, "right": 3100, "bottom": 1995, "left": 900}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717959f.jpg"} -{"rects": [{"solidity": 0.9540720091321964, "top": 700, "right": 2445, "bottom": 3405, "left": 520}, {"solidity": 0.9959637120953234, "top": 870, "right": 4165, "bottom": 3290, "left": 2545}, {"solidity": 0.9965458244256786, "top": 890, "right": 5885, "bottom": 3300, "left": 4260}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723994f.jpg"} -{"rects": [{"solidity": 0.9541345294542888, "top": 515, "right": 5055, "bottom": 3475, "left": 1255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712927f.jpg"} -{"rects": [{"solidity": 0.9541420990888059, "top": 640, "right": 4995, "bottom": 3665, "left": 1175}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717031f.jpg"} -{"rects": [{"solidity": 0.9541589583368265, "top": 565, "right": 4760, "bottom": 3705, "left": 340}, {"solidity": 0.9906055400472407, "top": 595, "right": 5825, "bottom": 2390, "left": 4755}, {"solidity": 0.9945742786899143, "top": 2665, "right": 5700, "bottom": 3610, "left": 4750}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732950f.jpg"} -{"rects": [{"solidity": 0.9541840852523983, "top": 1045, "right": 2990, "bottom": 2120, "left": 1975}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509761.jpg"} -{"rects": [{"solidity": 0.9542168718931501, "top": 1385, "right": 2530, "bottom": 4445, "left": 255}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507547.jpg"} -{"rects": [{"solidity": 0.9542505828462893, "top": 4470, "right": 3885, "bottom": 5800, "left": 1150}], "shape": {"h": 6065, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465585.jpg"} -{"rects": [{"solidity": 0.9542509826757898, "top": 3190, "right": 4295, "bottom": 5890, "left": 2355}, {"solidity": 0.9965366303179235, "top": 3130, "right": 2055, "bottom": 5840, "left": 230}, {"solidity": 0.9960769934898605, "top": 695, "right": 3580, "bottom": 2525, "left": 875}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708312f.jpg"} -{"rects": [{"solidity": 0.9542707081497307, "top": 450, "right": 3175, "bottom": 2465, "left": 1740}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508145.jpg"} -{"rects": [{"solidity": 0.9543047638928843, "top": 1000, "right": 3385, "bottom": 4730, "left": 425}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712887f.jpg"} -{"rects": [{"solidity": 0.9543178953298798, "top": 595, "right": 5000, "bottom": 3625, "left": 1145}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722181f.jpg"} -{"rects": [{"solidity": 0.9543943091974884, "top": 470, "right": 2055, "bottom": 2400, "left": 360}], "shape": {"h": 5805, "w": 4695}, "file": "/usr/local/google/home/danvk/milstein/417628.jpg"} -{"rects": [{"solidity": 0.9544911267444939, "top": 565, "right": 4985, "bottom": 3610, "left": 1175}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722132f.jpg"} -{"rects": [{"solidity": 0.9545428326809346, "top": 510, "right": 4795, "bottom": 3620, "left": 1180}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709771f.jpg"} -{"rects": [{"solidity": 0.9545697583688297, "top": 595, "right": 4670, "bottom": 3615, "left": 1390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717789f.jpg"} -{"rects": [{"solidity": 0.9546189368408601, "top": 1555, "right": 3420, "bottom": 4265, "left": 1200}], "shape": {"h": 6010, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464740.jpg"} -{"rects": [{"solidity": 0.9546577305261618, "top": 545, "right": 4900, "bottom": 3570, "left": 1145}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712857f.jpg"} -{"rects": [{"solidity": 0.9547710032510124, "top": 655, "right": 2245, "bottom": 1560, "left": 610}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716374f.jpg"} -{"rects": [{"solidity": 0.9548644557589101, "top": 1735, "right": 3495, "bottom": 2885, "left": 2175}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723391f.jpg"} -{"rects": [{"solidity": 0.9548683512327826, "top": 460, "right": 3735, "bottom": 2720, "left": 755}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508637.jpg"} -{"rects": [{"solidity": 0.9548728927997957, "top": 820, "right": 2710, "bottom": 2225, "left": 845}], "shape": {"h": 3005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1509717.jpg"} -{"rects": [{"solidity": 0.9549061849056305, "top": 520, "right": 3035, "bottom": 2030, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728644f.jpg"} -{"rects": [{"solidity": 0.9549259206526017, "top": 730, "right": 4490, "bottom": 3180, "left": 1240}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700587f.jpg"} -{"rects": [{"solidity": 0.9549303873956035, "top": 355, "right": 2930, "bottom": 1845, "left": 970}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734641f.jpg"} -{"rects": [{"solidity": 0.9550977200768027, "top": 725, "right": 3215, "bottom": 2405, "left": 735}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508665.jpg"} -{"rects": [{"solidity": 0.9551011497598603, "top": 1240, "right": 3245, "bottom": 2975, "left": 1470}], "shape": {"h": 6010, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465562.jpg"} -{"rects": [{"solidity": 0.9551183750478556, "top": 1100, "right": 3560, "bottom": 4980, "left": 440}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722176f.jpg"} -{"rects": [{"solidity": 0.955291782658006, "top": 285, "right": 2945, "bottom": 1780, "left": 970}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713194f.jpg"} -{"rects": [{"solidity": 0.9554274765047599, "top": 975, "right": 1890, "bottom": 2990, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713054f.jpg"} -{"rects": [{"solidity": 0.9554542331594891, "top": 555, "right": 3145, "bottom": 2820, "left": 340}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508293.jpg"} -{"rects": [{"solidity": 0.9555058772625658, "top": 1135, "right": 3945, "bottom": 2715, "left": 2390}, {"solidity": 0.956742773591272, "top": 3315, "right": 3960, "bottom": 4910, "left": 2435}], "shape": {"h": 5910, "w": 4540}, "file": "/usr/local/google/home/danvk/milstein/464814.jpg"} -{"rects": [{"solidity": 0.9555313700623973, "top": 310, "right": 2740, "bottom": 3490, "left": 525}, {"solidity": 0.9977877606647698, "top": 790, "right": 5795, "bottom": 3205, "left": 4180}, {"solidity": 0.9972913475792035, "top": 1100, "right": 4080, "bottom": 2905, "left": 2660}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719207f.jpg"} -{"rects": [{"solidity": 0.9556045257449528, "top": 555, "right": 3155, "bottom": 2120, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709203f.jpg"} -{"rects": [{"solidity": 0.9556210547946085, "top": 810, "right": 3170, "bottom": 1895, "left": 1195}], "shape": {"h": 6070, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/728132f.jpg"} -{"rects": [{"solidity": 0.9556333917104495, "top": 3545, "right": 4420, "bottom": 5325, "left": 2410}, {"solidity": 0.9903277503946003, "top": 930, "right": 2515, "bottom": 2585, "left": 415}], "shape": {"h": 6010, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/464756.jpg"} -{"rects": [{"solidity": 0.9556722124920092, "top": 1185, "right": 3485, "bottom": 5050, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722360f.jpg"} -{"rects": [{"solidity": 0.9556887980600658, "top": 555, "right": 5060, "bottom": 3530, "left": 1195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723045f.jpg"} -{"rects": [{"solidity": 0.9557798433160123, "top": 1150, "right": 3450, "bottom": 5010, "left": 390}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717195f.jpg"} -{"rects": [{"solidity": 0.9557815356489945, "top": 355, "right": 3300, "bottom": 1965, "left": 1020}], "shape": {"h": 2760, "w": 4275}, "file": "/usr/local/google/home/danvk/milstein/708435f.jpg"} -{"rects": [{"solidity": 0.9558111287855302, "top": 640, "right": 3025, "bottom": 1860, "left": 855}], "shape": {"h": 6055, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/728135f.jpg"} -{"rects": [{"solidity": 0.9558162577535091, "top": 475, "right": 3420, "bottom": 2050, "left": 765}, {"solidity": 0.9932254458861836, "top": 2330, "right": 2990, "bottom": 3760, "left": 1150}, {"solidity": 0.9947342898148919, "top": 4095, "right": 2945, "bottom": 5515, "left": 1105}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/726907f.jpg"} -{"rects": [{"solidity": 0.9558446248879147, "top": 4045, "right": 3165, "bottom": 5805, "left": 760}, {"solidity": 0.9967758584644332, "top": 2250, "right": 3155, "bottom": 3860, "left": 750}, {"solidity": 0.9967464108536312, "top": 450, "right": 3155, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710659f.jpg"} -{"rects": [{"solidity": 0.9558792377759562, "top": 1110, "right": 3200, "bottom": 2260, "left": 605}, {"solidity": 0.9953492954970933, "top": 2410, "right": 3250, "bottom": 4215, "left": 1820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725299f.jpg"} -{"rects": [{"solidity": 0.9558792830942654, "top": 635, "right": 3035, "bottom": 2540, "left": 1655}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508915.jpg"} -{"rects": [{"solidity": 0.955997640129453, "top": 490, "right": 3340, "bottom": 2615, "left": 595}], "shape": {"h": 3040, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517009.jpg"} -{"rects": [{"solidity": 0.9560843425377576, "top": 1380, "right": 3360, "bottom": 4895, "left": 485}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724411f.jpg"} -{"rects": [{"solidity": 0.9562449799196787, "top": 605, "right": 1925, "bottom": 2730, "left": 440}], "shape": {"h": 5805, "w": 4445}, "file": "/usr/local/google/home/danvk/milstein/417680.jpg"} -{"rects": [{"solidity": 0.9562743224663854, "top": 630, "right": 4970, "bottom": 3470, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730375f.jpg"} -{"rects": [{"solidity": 0.9563542349242612, "top": 565, "right": 3865, "bottom": 2625, "left": 1125}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517125.jpg"} -{"rects": [{"solidity": 0.9564754146170746, "top": 800, "right": 1975, "bottom": 3075, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708192f.jpg"} -{"rects": [{"solidity": 0.9565310604725175, "top": 540, "right": 3320, "bottom": 2465, "left": 555}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704245f.jpg"} -{"rects": [{"solidity": 0.9566694742601272, "top": 1465, "right": 3455, "bottom": 4615, "left": 455}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722311f.jpg"} -{"rects": [{"solidity": 0.9566816674117958, "top": 270, "right": 3335, "bottom": 2145, "left": 670}, {"solidity": 0.9550582981623084, "top": 4050, "right": 3350, "bottom": 5910, "left": 665}, {"solidity": 0.9512167848951216, "top": 2150, "right": 3335, "bottom": 4030, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726328f.jpg"} -{"rects": [{"solidity": 0.956712345172107, "top": 1125, "right": 2555, "bottom": 3990, "left": 320}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508931.jpg"} -{"rects": [{"solidity": 0.9567150240344855, "top": 760, "right": 2340, "bottom": 3765, "left": 605}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508625.jpg"} -{"rects": [{"solidity": 0.9567671294728525, "top": 1005, "right": 3555, "bottom": 2500, "left": 1205}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508353.jpg"} -{"rects": [{"solidity": 0.9567907076790708, "top": 880, "right": 3365, "bottom": 2405, "left": 1355}], "shape": {"h": 5810, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/417620.jpg"} -{"rects": [{"solidity": 0.9568104567674915, "top": 525, "right": 2640, "bottom": 1980, "left": 795}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706468f.jpg"} -{"rects": [{"solidity": 0.9568411092043432, "top": 725, "right": 4865, "bottom": 3535, "left": 1220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731179f.jpg"} -{"rects": [{"solidity": 0.9569263803680982, "top": 800, "right": 2930, "bottom": 2565, "left": 450}], "shape": {"h": 5760, "w": 4580}, "file": "/usr/local/google/home/danvk/milstein/417647.jpg"} -{"rects": [{"solidity": 0.9569887881419061, "top": 945, "right": 3580, "bottom": 2270, "left": 1465}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507701.jpg"} -{"rects": [{"solidity": 0.9570387052446752, "top": 490, "right": 3095, "bottom": 1945, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707631f.jpg"} -{"rects": [{"solidity": 0.9570570999623537, "top": 590, "right": 4865, "bottom": 3550, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720318f.jpg"} -{"rects": [{"solidity": 0.9570720358002007, "top": 455, "right": 3395, "bottom": 2930, "left": 320}, {"solidity": 0.9904529565208208, "top": 3240, "right": 3210, "bottom": 5055, "left": 585}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701291f.jpg"} -{"rects": [{"solidity": 0.9571813194599081, "top": 470, "right": 1950, "bottom": 2810, "left": 520}, {"solidity": 0.9349523336194823, "top": 3050, "right": 1920, "bottom": 5310, "left": 605}], "shape": {"h": 5805, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/417684.jpg"} -{"rects": [{"solidity": 0.9571841543311205, "top": 835, "right": 3155, "bottom": 2720, "left": 840}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709220f.jpg"} -{"rects": [{"solidity": 0.9572574924395565, "top": 655, "right": 4770, "bottom": 3390, "left": 1310}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716967f.jpg"} -{"rects": [{"solidity": 0.9572912335980978, "top": 500, "right": 3115, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728307f.jpg"} -{"rects": [{"solidity": 0.9573204948031762, "top": 1125, "right": 3465, "bottom": 4545, "left": 380}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714423f.jpg"} -{"rects": [{"solidity": 0.9573571420034183, "top": 680, "right": 2835, "bottom": 3425, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704915f.jpg"} -{"rects": [{"solidity": 0.9573604485731023, "top": 1175, "right": 1455, "bottom": 2250, "left": 490}], "shape": {"h": 2660, "w": 7015}, "file": "/usr/local/google/home/danvk/milstein/1627927.jpg"} -{"rects": [{"solidity": 0.9573795673280098, "top": 775, "right": 1985, "bottom": 3110, "left": 430}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713830f.jpg"} -{"rects": [{"solidity": 0.9574073837424764, "top": 1215, "right": 3115, "bottom": 2545, "left": 1570}], "shape": {"h": 5990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465619.jpg"} -{"rects": [{"solidity": 0.9575202455510904, "top": 810, "right": 3205, "bottom": 2720, "left": 420}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704478f.jpg"} -{"rects": [{"solidity": 0.9576059304647536, "top": 430, "right": 2685, "bottom": 3960, "left": 1310}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721250f.jpg"} -{"rects": [{"solidity": 0.9576104606443894, "top": 880, "right": 4625, "bottom": 3165, "left": 1500}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718420f.jpg"} -{"rects": [{"solidity": 0.9576162237202368, "top": 400, "right": 3545, "bottom": 2155, "left": 605}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718189f.jpg"} -{"rects": [{"solidity": 0.9576940475350578, "top": 635, "right": 3060, "bottom": 2040, "left": 855}, {"solidity": 0.9354982255282213, "top": 2630, "right": 3050, "bottom": 3815, "left": 875}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727627f.jpg"} -{"rects": [{"solidity": 0.9577129628412859, "top": 520, "right": 4995, "bottom": 3500, "left": 1145}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722128f.jpg"} -{"rects": [{"solidity": 0.957735779903288, "top": 1200, "right": 3755, "bottom": 5510, "left": 745}], "shape": {"h": 6920, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711406f.jpg"} -{"rects": [{"solidity": 0.9577976852036217, "top": 560, "right": 5460, "bottom": 3895, "left": 670}], "shape": {"h": 4925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729602f.jpg"} -{"rects": [{"solidity": 0.9578656262880916, "top": 1200, "right": 3370, "bottom": 5350, "left": 565}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709012f.jpg"} -{"rects": [{"solidity": 0.9578750852445057, "top": 980, "right": 4635, "bottom": 3060, "left": 1305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711063f.jpg"} -{"rects": [{"solidity": 0.9578984560782243, "top": 2380, "right": 3170, "bottom": 4905, "left": 510}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731186f.jpg"} -{"rects": [{"solidity": 0.9579243511647999, "top": 685, "right": 2805, "bottom": 2380, "left": 370}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715952f.jpg"} -{"rects": [{"solidity": 0.95802049885933, "top": 1055, "right": 3370, "bottom": 2385, "left": 1300}], "shape": {"h": 3005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1509719.jpg"} -{"rects": [{"solidity": 0.9580390880076305, "top": 1155, "right": 3395, "bottom": 4960, "left": 385}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717062f.jpg"} -{"rects": [{"solidity": 0.9580406247087038, "top": 380, "right": 2965, "bottom": 1950, "left": 1045}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724135f.jpg"} -{"rects": [{"solidity": 0.9580707522757025, "top": 1130, "right": 3425, "bottom": 5060, "left": 325}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719446f.jpg"} -{"rects": [{"solidity": 0.9580894205480615, "top": 390, "right": 3060, "bottom": 3655, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714155f.jpg"} -{"rects": [{"solidity": 0.9581481616176311, "top": 875, "right": 2175, "bottom": 2055, "left": 685}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715985f.jpg"} -{"rects": [{"solidity": 0.9581824922580364, "top": 925, "right": 1530, "bottom": 2085, "left": 490}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716415f.jpg"} -{"rects": [{"solidity": 0.9581872298054779, "top": 2430, "right": 3300, "bottom": 4115, "left": 1210}], "shape": {"h": 6860, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711207f.jpg"} -{"rects": [{"solidity": 0.9582706463426269, "top": 530, "right": 4925, "bottom": 3535, "left": 1130}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722192f.jpg"} -{"rects": [{"solidity": 0.958319638963398, "top": 390, "right": 2075, "bottom": 2970, "left": 515}], "shape": {"h": 6005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465670.jpg"} -{"rects": [{"solidity": 0.9583322066895601, "top": 690, "right": 3990, "bottom": 2175, "left": 2645}], "shape": {"h": 5805, "w": 4575}, "file": "/usr/local/google/home/danvk/milstein/417683.jpg"} -{"rects": [{"solidity": 0.9583599672486596, "top": 755, "right": 4905, "bottom": 3445, "left": 1190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700556f.jpg"} -{"rects": [{"solidity": 0.9583861464149909, "top": 3200, "right": 2165, "bottom": 5395, "left": 130}, {"solidity": 0.9748010080824638, "top": 3350, "right": 4500, "bottom": 5390, "left": 2460}, {"solidity": 0.9631915426799774, "top": 1165, "right": 3070, "bottom": 2740, "left": 1535}], "shape": {"h": 6020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465529.jpg"} -{"rects": [{"solidity": 0.9584050402414215, "top": 695, "right": 3600, "bottom": 2620, "left": 1140}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509285.jpg"} -{"rects": [{"solidity": 0.958475087587651, "top": 745, "right": 3360, "bottom": 2120, "left": 1460}], "shape": {"h": 3000, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509557.jpg"} -{"rects": [{"solidity": 0.9584763830362237, "top": 525, "right": 3825, "bottom": 3600, "left": 400}, {"solidity": 0.9974854814582286, "top": 925, "right": 5775, "bottom": 3350, "left": 4155}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721658f.jpg"} -{"rects": [{"solidity": 0.9584949720840369, "top": 765, "right": 2455, "bottom": 2290, "left": 255}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509091.jpg"} -{"rects": [{"solidity": 0.9586479978952673, "top": 550, "right": 4935, "bottom": 3580, "left": 1190}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709841f.jpg"} -{"rects": [{"solidity": 0.9586632498052223, "top": 520, "right": 4940, "bottom": 3505, "left": 1120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708566f.jpg"} -{"rects": [{"solidity": 0.9587121192042449, "top": 555, "right": 2100, "bottom": 3290, "left": 355}, {"solidity": 0.9962004946237382, "top": 770, "right": 3700, "bottom": 3095, "left": 2275}, {"solidity": 0.9958082677963254, "top": 1930, "right": 5765, "bottom": 3350, "left": 3965}, {"solidity": 0.989211866946359, "top": 525, "right": 5900, "bottom": 1735, "left": 3825}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727016f.jpg"} -{"rects": [{"solidity": 0.9587368388863724, "top": 790, "right": 2580, "bottom": 3695, "left": 315}], "shape": {"h": 4620, "w": 2960}, "file": "/usr/local/google/home/danvk/milstein/1507533.jpg"} -{"rects": [{"solidity": 0.9587958523135939, "top": 760, "right": 2230, "bottom": 3150, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708654f.jpg"} -{"rects": [{"solidity": 0.9588039770932901, "top": 520, "right": 3170, "bottom": 4035, "left": 230}, {"solidity": 0.9697230675011005, "top": 1490, "right": 4780, "bottom": 2745, "left": 3665}], "shape": {"h": 4510, "w": 5660}, "file": "/usr/local/google/home/danvk/milstein/1823506.jpg"} -{"rects": [{"solidity": 0.9588237042951612, "top": 405, "right": 3025, "bottom": 1845, "left": 890}, {"solidity": 0.9956190851915905, "top": 2090, "right": 2860, "bottom": 3650, "left": 1085}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717905f.jpg"} -{"rects": [{"solidity": 0.9588894835012391, "top": 225, "right": 3375, "bottom": 2080, "left": 685}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727683f.jpg"} -{"rects": [{"solidity": 0.9589242193586197, "top": 510, "right": 3250, "bottom": 3880, "left": 640}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714240f.jpg"} -{"rects": [{"solidity": 0.958940292305809, "top": 940, "right": 5025, "bottom": 3015, "left": 1130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700388f.jpg"} -{"rects": [{"solidity": 0.9589604936017571, "top": 365, "right": 3285, "bottom": 2195, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712617f.jpg"} -{"rects": [{"solidity": 0.9590316927630474, "top": 970, "right": 4630, "bottom": 3430, "left": 1350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712415f.jpg"} -{"rects": [{"solidity": 0.959051265809109, "top": 910, "right": 3390, "bottom": 4720, "left": 380}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709944f.jpg"} -{"rects": [{"solidity": 0.9590873244741581, "top": 1050, "right": 3350, "bottom": 4920, "left": 590}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714073f.jpg"} -{"rects": [{"solidity": 0.959098875481128, "top": 650, "right": 2145, "bottom": 2570, "left": 405}], "shape": {"h": 5985, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465576.jpg"} -{"rects": [{"solidity": 0.9591262880342446, "top": 1085, "right": 3165, "bottom": 4600, "left": 490}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713333f.jpg"} -{"rects": [{"solidity": 0.9591300837706358, "top": 900, "right": 1835, "bottom": 3080, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708031f.jpg"} -{"rects": [{"solidity": 0.9591394312449587, "top": 515, "right": 3090, "bottom": 3735, "left": 840}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714924f.jpg"} -{"rects": [{"solidity": 0.9591477442589856, "top": 1105, "right": 3570, "bottom": 4925, "left": 455}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709961f.jpg"} -{"rects": [{"solidity": 0.9592208540713207, "top": 615, "right": 4845, "bottom": 3340, "left": 2905}, {"solidity": 0.9964684475669708, "top": 600, "right": 2615, "bottom": 2075, "left": 785}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704911f.jpg"} -{"rects": [{"solidity": 0.9592236563398199, "top": 430, "right": 3085, "bottom": 2085, "left": 355}, {"solidity": 0.9966573600873337, "top": 2330, "right": 3090, "bottom": 3950, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700247f.jpg"} -{"rects": [{"solidity": 0.9592995369746292, "top": 960, "right": 4295, "bottom": 2180, "left": 845}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507647.jpg"} -{"rects": [{"solidity": 0.9593340890495022, "top": 465, "right": 3115, "bottom": 2715, "left": 470}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509527.jpg"} -{"rects": [{"solidity": 0.9593670050648494, "top": 710, "right": 4640, "bottom": 3275, "left": 1305}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721443f.jpg"} -{"rects": [{"solidity": 0.9593767993626805, "top": 685, "right": 5280, "bottom": 3540, "left": 2920}, {"solidity": 0.9931105300775348, "top": 680, "right": 2755, "bottom": 3520, "left": 780}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731838f.jpg"} -{"rects": [{"solidity": 0.9593879587907843, "top": 3020, "right": 3835, "bottom": 6010, "left": 2790}, {"solidity": 0.9956306661790465, "top": 835, "right": 3300, "bottom": 2705, "left": 1895}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702316f.jpg"} -{"rects": [{"solidity": 0.9593963421809756, "top": 790, "right": 3840, "bottom": 3535, "left": 330}, {"solidity": 0.9762292321508756, "top": 660, "right": 5845, "bottom": 3650, "left": 3845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730723f.jpg"} -{"rects": [{"solidity": 0.9594439139555342, "top": 940, "right": 3410, "bottom": 3160, "left": 1105}], "shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465595.jpg"} -{"rects": [{"solidity": 0.9595701207136232, "top": 535, "right": 4915, "bottom": 3465, "left": 1100}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712872f.jpg"} -{"rects": [{"solidity": 0.9596773857711592, "top": 885, "right": 4890, "bottom": 4065, "left": 915}], "shape": {"h": 4565, "w": 5570}, "file": "/usr/local/google/home/danvk/milstein/1823524.jpg"} -{"rects": [{"solidity": 0.9597567543069204, "top": 550, "right": 2130, "bottom": 3305, "left": 355}, {"solidity": 0.9956702693982901, "top": 700, "right": 5740, "bottom": 3130, "left": 4125}, {"solidity": 0.9951584624856126, "top": 715, "right": 3915, "bottom": 3105, "left": 2340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703656f.jpg"} -{"rects": [{"solidity": 0.9597682789172151, "top": 130, "right": 3080, "bottom": 1455, "left": 2080}], "shape": {"h": 3945, "w": 3210}, "file": "/usr/local/google/home/danvk/milstein/1557909.jpg"} -{"rects": [{"solidity": 0.9597961936964959, "top": 1255, "right": 3440, "bottom": 4985, "left": 425}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722363f.jpg"} -{"rects": [{"solidity": 0.959935521491719, "top": 575, "right": 3150, "bottom": 2165, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727511f.jpg"} -{"rects": [{"solidity": 0.9600763081745454, "top": 760, "right": 3225, "bottom": 2460, "left": 810}], "shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508583.jpg"} -{"rects": [{"solidity": 0.9600918129402668, "top": 1145, "right": 3355, "bottom": 4900, "left": 605}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709156f.jpg"} -{"rects": [{"solidity": 0.9601805766936777, "top": 1030, "right": 3560, "bottom": 5070, "left": 325}, {"solidity": 0.9497822474502371, "top": 130, "right": 3005, "bottom": 1030, "left": 130}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721335f.jpg"} -{"rects": [{"solidity": 0.960213141701345, "top": 895, "right": 3350, "bottom": 2115, "left": 1555}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509693.jpg"} -{"rects": [{"solidity": 0.9603203122579845, "top": 630, "right": 3235, "bottom": 3180, "left": 1555}], "shape": {"h": 6005, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465630.jpg"} -{"rects": [{"solidity": 0.9603730897432967, "top": 510, "right": 5035, "bottom": 3690, "left": 1140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718653f.jpg"} -{"rects": [{"solidity": 0.960417419810921, "top": 460, "right": 4950, "bottom": 3505, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712849f.jpg"} -{"rects": [{"solidity": 0.9605103851114615, "top": 640, "right": 2245, "bottom": 3455, "left": 435}, {"solidity": 0.9975485592523268, "top": 645, "right": 3935, "bottom": 3055, "left": 2320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721267f.jpg"} -{"rects": [{"solidity": 0.9605199632395123, "top": 540, "right": 4905, "bottom": 3580, "left": 1185}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722991f.jpg"} -{"rects": [{"solidity": 0.9605272668729999, "top": 355, "right": 1745, "bottom": 2920, "left": 935}], "shape": {"h": 3815, "w": 2845}, "file": "/usr/local/google/home/danvk/milstein/1558494.jpg"} -{"rects": [{"solidity": 0.9606036553972885, "top": 1185, "right": 2500, "bottom": 4235, "left": 130}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509071.jpg"} -{"rects": [{"solidity": 0.9606247544905903, "top": 2345, "right": 2875, "bottom": 3875, "left": 1005}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718415f.jpg"} -{"rects": [{"solidity": 0.9606426963939917, "top": 695, "right": 3200, "bottom": 2600, "left": 470}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726996f.jpg"} -{"rects": [{"solidity": 0.9606609266638048, "top": 565, "right": 3190, "bottom": 3935, "left": 690}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/714403f.jpg"} -{"rects": [{"solidity": 0.9607503467720826, "top": 1050, "right": 3465, "bottom": 5015, "left": 305}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714654f.jpg"} -{"rects": [{"solidity": 0.9607518964419787, "top": 1095, "right": 3470, "bottom": 4975, "left": 385}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721232f.jpg"} -{"rects": [{"solidity": 0.9607867971193459, "top": 765, "right": 2030, "bottom": 3135, "left": 450}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722613f.jpg"} -{"rects": [{"solidity": 0.9607978169042612, "top": 765, "right": 2510, "bottom": 2315, "left": 290}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509089.jpg"} -{"rects": [{"solidity": 0.9608728210218414, "top": 1185, "right": 3415, "bottom": 4985, "left": 400}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717052f.jpg"} -{"rects": [{"solidity": 0.9609308126471218, "top": 1180, "right": 3165, "bottom": 4915, "left": 900}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713026f.jpg"} -{"rects": [{"solidity": 0.9609746824386928, "top": 575, "right": 5235, "bottom": 3620, "left": 2785}, {"solidity": 0.9769273745707446, "top": 725, "right": 2385, "bottom": 3460, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702423f.jpg"} -{"rects": [{"solidity": 0.9610122705567085, "top": 1165, "right": 2990, "bottom": 3385, "left": 1570}], "shape": {"h": 6030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465602.jpg"} -{"rects": [{"solidity": 0.9610332846866735, "top": 855, "right": 4065, "bottom": 3720, "left": 335}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725358f.jpg"} -{"rects": [{"solidity": 0.9610734439419485, "top": 1060, "right": 3480, "bottom": 5005, "left": 315}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723944f.jpg"} -{"rects": [{"solidity": 0.9611601154424617, "top": 390, "right": 3070, "bottom": 1970, "left": 680}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728951f.jpg"} -{"rects": [{"solidity": 0.9611803489587522, "top": 635, "right": 2625, "bottom": 2385, "left": 375}], "shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508605.jpg"} -{"rects": [{"solidity": 0.9612938752309222, "top": 2210, "right": 3115, "bottom": 3800, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701383f.jpg"} -{"rects": [{"solidity": 0.9613123611850736, "top": 440, "right": 3310, "bottom": 2345, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727673f.jpg"} -{"rects": [{"solidity": 0.9613372231005437, "top": 975, "right": 2420, "bottom": 3100, "left": 530}, {"solidity": 0.9682673168021972, "top": 3545, "right": 2210, "bottom": 5500, "left": 345}, {"solidity": 0.9690418533234781, "top": 3630, "right": 4180, "bottom": 5520, "left": 2380}], "shape": {"h": 6020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465691.jpg"} -{"rects": [{"solidity": 0.9613858630576753, "top": 715, "right": 3125, "bottom": 2415, "left": 825}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508083.jpg"} -{"rects": [{"solidity": 0.9613957999145091, "top": 495, "right": 4980, "bottom": 3575, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705069f.jpg"} -{"rects": [{"solidity": 0.9613964388181958, "top": 3365, "right": 3455, "bottom": 5425, "left": 610}, {"solidity": 0.9546494137102945, "top": 970, "right": 3475, "bottom": 3005, "left": 655}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/708946f.jpg"} -{"rects": [{"solidity": 0.9614778230877972, "top": 465, "right": 3190, "bottom": 2025, "left": 835}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719918f.jpg"} -{"rects": [{"solidity": 0.9615961005152449, "top": 580, "right": 4870, "bottom": 3420, "left": 1180}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724443f.jpg"} -{"rects": [{"solidity": 0.9617556169985362, "top": 600, "right": 2960, "bottom": 1975, "left": 790}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/713245f.jpg"} -{"rects": [{"solidity": 0.961770824427916, "top": 530, "right": 4995, "bottom": 3545, "left": 1170}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712858f.jpg"} -{"rects": [{"solidity": 0.9618803942226352, "top": 755, "right": 2660, "bottom": 2195, "left": 855}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705161f.jpg"} -{"rects": [{"solidity": 0.9618875628963496, "top": 790, "right": 4645, "bottom": 3145, "left": 1495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722754f.jpg"} -{"rects": [{"solidity": 0.96191737877116, "top": 1200, "right": 3545, "bottom": 5030, "left": 435}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709973f.jpg"} -{"rects": [{"solidity": 0.961961861097816, "top": 1110, "right": 3350, "bottom": 3330, "left": 1035}, {"solidity": 0.9764358222688853, "top": 3600, "right": 3250, "bottom": 5555, "left": 1040}], "shape": {"h": 6035, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465549.jpg"} -{"rects": [{"solidity": 0.962066906997515, "top": 380, "right": 3150, "bottom": 3670, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714653f.jpg"} -{"rects": [{"solidity": 0.9620924246966395, "top": 750, "right": 3445, "bottom": 2455, "left": 130}, {"solidity": 0.9903073886619898, "top": 130, "right": 3445, "bottom": 920, "left": 130}], "shape": {"h": 2865, "w": 3575}, "file": "/usr/local/google/home/danvk/milstein/1558273.jpg"} -{"rects": [{"solidity": 0.9621858291809426, "top": 485, "right": 3290, "bottom": 3695, "left": 335}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713021f.jpg"} -{"rects": [{"solidity": 0.9622145830705184, "top": 710, "right": 2600, "bottom": 2470, "left": 295}], "shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508611.jpg"} -{"rects": [{"solidity": 0.9622227662835506, "top": 575, "right": 4915, "bottom": 3550, "left": 1100}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722355f.jpg"} -{"rects": [{"solidity": 0.9622385384320157, "top": 1055, "right": 3390, "bottom": 4920, "left": 390}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722142f.jpg"} -{"rects": [{"solidity": 0.9623293276478443, "top": 130, "right": 3840, "bottom": 2695, "left": 2065}, {"solidity": 0.9967337981307571, "top": 280, "right": 1895, "bottom": 2695, "left": 265}, {"solidity": 0.999194847020934, "top": 2995, "right": 2755, "bottom": 5405, "left": 1135}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700240f.jpg"} -{"rects": [{"solidity": 0.9623911592118775, "top": 460, "right": 5075, "bottom": 3510, "left": 1220}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727873f.jpg"} -{"rects": [{"solidity": 0.9624081904056119, "top": 795, "right": 3315, "bottom": 2265, "left": 1600}], "shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508579.jpg"} -{"rects": [{"solidity": 0.9624176168103558, "top": 480, "right": 3040, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717437f.jpg"} -{"rects": [{"solidity": 0.9624256384527361, "top": 1295, "right": 4735, "bottom": 2945, "left": 1435}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730675f.jpg"} -{"rects": [{"solidity": 0.9624440221071717, "top": 560, "right": 3025, "bottom": 1950, "left": 830}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700347f.jpg"} -{"rects": [{"solidity": 0.9624546385618069, "top": 1030, "right": 3190, "bottom": 4970, "left": 580}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713967f.jpg"} -{"rects": [{"solidity": 0.9624977262162216, "top": 585, "right": 2720, "bottom": 3675, "left": 285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723071f.jpg"} -{"rects": [{"solidity": 0.9625053787276212, "top": 620, "right": 1675, "bottom": 2165, "left": 305}], "shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465668.jpg"} -{"rects": [{"solidity": 0.9625091147050575, "top": 480, "right": 3075, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728037f.jpg"} -{"rects": [{"solidity": 0.9625478095771745, "top": 1170, "right": 4405, "bottom": 3075, "left": 1690}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701385f.jpg"} -{"rects": [{"solidity": 0.9625554278206602, "top": 1015, "right": 2975, "bottom": 2525, "left": 1700}], "shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465640.jpg"} -{"rects": [{"solidity": 0.9625884173297966, "top": 665, "right": 2850, "bottom": 1940, "left": 1105}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727228f.jpg"} -{"rects": [{"solidity": 0.9625969035239351, "top": 705, "right": 2570, "bottom": 3875, "left": 210}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509193.jpg"} -{"rects": [{"solidity": 0.9626105077995294, "top": 530, "right": 5710, "bottom": 3765, "left": 1075}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701175f.jpg"} -{"rects": [{"solidity": 0.9626790217850255, "top": 1150, "right": 3475, "bottom": 4775, "left": 360}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715314f.jpg"} -{"rects": [{"solidity": 0.9627031515080448, "top": 765, "right": 2640, "bottom": 3855, "left": 290}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507645.jpg"} -{"rects": [{"solidity": 0.9627091183172265, "top": 1230, "right": 3220, "bottom": 4955, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722742f.jpg"} -{"rects": [{"solidity": 0.9627344679542811, "top": 1125, "right": 3240, "bottom": 4950, "left": 445}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712180f.jpg"} -{"rects": [{"solidity": 0.9628228611659696, "top": 370, "right": 2390, "bottom": 1590, "left": 615}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715913f.jpg"} -{"rects": [{"solidity": 0.9628709948787579, "top": 450, "right": 3250, "bottom": 1940, "left": 880}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721030f.jpg"} -{"rects": [{"solidity": 0.9629689943405023, "top": 525, "right": 4905, "bottom": 3505, "left": 1110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722186f.jpg"} -{"rects": [{"solidity": 0.962994923857868, "top": 485, "right": 5000, "bottom": 3600, "left": 1110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720045f.jpg"} -{"rects": [{"solidity": 0.9630238100747391, "top": 770, "right": 2695, "bottom": 2585, "left": 380}], "shape": {"h": 5985, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465559.jpg"} -{"rects": [{"solidity": 0.9630410321312712, "top": 675, "right": 5850, "bottom": 3660, "left": 3920}, {"solidity": 0.99861769223228, "top": 875, "right": 3790, "bottom": 3275, "left": 2185}, {"solidity": 0.9981499006185554, "top": 855, "right": 1970, "bottom": 3250, "left": 360}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719749f.jpg"} -{"rects": [{"solidity": 0.9630567475322542, "top": 570, "right": 3585, "bottom": 2430, "left": 1115}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507577.jpg"} -{"rects": [{"solidity": 0.9630852919822719, "top": 445, "right": 4945, "bottom": 3580, "left": 1185}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717653f.jpg"} -{"rects": [{"solidity": 0.9631027853319462, "top": 1210, "right": 3385, "bottom": 5030, "left": 370}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717059f.jpg"} -{"rects": [{"solidity": 0.9631507413642659, "top": 1065, "right": 3480, "bottom": 4950, "left": 470}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722147f.jpg"} -{"rects": [{"solidity": 0.9631807343771895, "top": 780, "right": 4640, "bottom": 3835, "left": 755}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/725155f.jpg"} -{"rects": [{"solidity": 0.9631879129104696, "top": 455, "right": 3290, "bottom": 3905, "left": 590}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714372f.jpg"} -{"rects": [{"solidity": 0.963188833359019, "top": 430, "right": 3265, "bottom": 2155, "left": 845}, {"solidity": 0.9902873311801335, "top": 3520, "right": 3855, "bottom": 6010, "left": 2760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724966f.jpg"} -{"rects": [{"solidity": 0.9631924289768141, "top": 780, "right": 2035, "bottom": 3140, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713094f.jpg"} -{"rects": [{"solidity": 0.9632049534196774, "top": 585, "right": 4915, "bottom": 3555, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712913f.jpg"} -{"rects": [{"solidity": 0.963229935319304, "top": 1405, "right": 4815, "bottom": 3375, "left": 1275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723210f.jpg"} -{"rects": [{"solidity": 0.9632381562979415, "top": 600, "right": 1720, "bottom": 2585, "left": 590}], "shape": {"h": 6010, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465663.jpg"} -{"rects": [{"solidity": 0.9633111810845159, "top": 1045, "right": 2295, "bottom": 2605, "left": 225}, {"solidity": 0.9939610544509497, "top": 2820, "right": 2305, "bottom": 4315, "left": 280}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508675.jpg"} -{"rects": [{"solidity": 0.9633366939513317, "top": 525, "right": 3075, "bottom": 1915, "left": 830}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718516f.jpg"} -{"rects": [{"solidity": 0.9633585385351279, "top": 425, "right": 2050, "bottom": 2755, "left": 385}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509339.jpg"} -{"rects": [{"solidity": 0.9633697396750832, "top": 830, "right": 4725, "bottom": 3335, "left": 1430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708228f.jpg"} -{"rects": [{"solidity": 0.9633932577967242, "top": 575, "right": 2890, "bottom": 3495, "left": 485}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715327f.jpg"} -{"rects": [{"solidity": 0.9634087180923422, "top": 3240, "right": 3530, "bottom": 5555, "left": 1250}], "shape": {"h": 5805, "w": 4560}, "file": "/usr/local/google/home/danvk/milstein/417638.jpg"} -{"rects": [{"solidity": 0.9634333486901506, "top": 585, "right": 4970, "bottom": 3600, "left": 1125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713553f.jpg"} -{"rects": [{"solidity": 0.9634379184276367, "top": 505, "right": 5100, "bottom": 3460, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732926f.jpg"} -{"rects": [{"solidity": 0.9634767952742377, "top": 1140, "right": 3520, "bottom": 2700, "left": 410}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/716544f.jpg"} -{"rects": [{"solidity": 0.963553660449933, "top": 810, "right": 2315, "bottom": 3840, "left": 980}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507593.jpg"} -{"rects": [{"solidity": 0.963560632108445, "top": 1425, "right": 3335, "bottom": 4850, "left": 425}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/718293f.jpg"} -{"rects": [{"solidity": 0.96359101678967, "top": 1165, "right": 3415, "bottom": 4940, "left": 470}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709465f.jpg"} -{"rects": [{"solidity": 0.9636028011569698, "top": 555, "right": 3135, "bottom": 2140, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721433f.jpg"} -{"rects": [{"solidity": 0.9636292929538439, "top": 520, "right": 2000, "bottom": 2260, "left": 340}], "shape": {"h": 5795, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417651.jpg"} -{"rects": [{"solidity": 0.9636439894009, "top": 3695, "right": 2330, "bottom": 5430, "left": 410}, {"solidity": 0.9523963157211374, "top": 3700, "right": 4315, "bottom": 5455, "left": 2415}, {"solidity": 0.9962412511881102, "top": 1410, "right": 4285, "bottom": 3190, "left": 3460}, {"solidity": 0.9769902803770558, "top": 1405, "right": 1275, "bottom": 3195, "left": 455}], "shape": {"h": 6020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465530.jpg"} -{"rects": [{"solidity": 0.9636601817620718, "top": 725, "right": 2600, "bottom": 2485, "left": 295}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508613.jpg"} -{"rects": [{"solidity": 0.9636917793517922, "top": 950, "right": 3505, "bottom": 2395, "left": 1400}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507669.jpg"} -{"rects": [{"solidity": 0.9637369682192702, "top": 1260, "right": 2075, "bottom": 3110, "left": 745}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508337.jpg"} -{"rects": [{"solidity": 0.9637668334593664, "top": 560, "right": 3140, "bottom": 2330, "left": 485}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704314f.jpg"} -{"rects": [{"solidity": 0.9637705791562546, "top": 700, "right": 3165, "bottom": 1995, "left": 955}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725611f.jpg"} -{"rects": [{"solidity": 0.9637744504591282, "top": 590, "right": 4915, "bottom": 3575, "left": 1080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723383f.jpg"} -{"rects": [{"solidity": 0.963800544959128, "top": 490, "right": 4870, "bottom": 3555, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712847f.jpg"} -{"rects": [{"solidity": 0.9638081515880256, "top": 860, "right": 3410, "bottom": 3045, "left": 1135}, {"solidity": 0.9574820350369929, "top": 3385, "right": 3430, "bottom": 5510, "left": 1140}], "shape": {"h": 5975, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465597.jpg"} -{"rects": [{"solidity": 0.9638286858587671, "top": 835, "right": 2625, "bottom": 3880, "left": 500}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509107.jpg"} -{"rects": [{"solidity": 0.9638301280076879, "top": 405, "right": 3250, "bottom": 2300, "left": 520}, {"solidity": 0.9599032991594943, "top": 2600, "right": 3150, "bottom": 4075, "left": 845}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727667f.jpg"} -{"rects": [{"solidity": 0.9638318119644409, "top": 3475, "right": 3855, "bottom": 6010, "left": 1500}, {"solidity": 0.9970767849432149, "top": 465, "right": 3170, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701193f.jpg"} -{"rects": [{"solidity": 0.9638439493104226, "top": 385, "right": 3100, "bottom": 2075, "left": 600}, {"solidity": 0.9491967860722651, "top": 3495, "right": 3830, "bottom": 6010, "left": 2845}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700602f.jpg"} -{"rects": [{"solidity": 0.9639420896563754, "top": 485, "right": 2125, "bottom": 2690, "left": 355}], "shape": {"h": 6020, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465684.jpg"} -{"rects": [{"solidity": 0.9639437593843486, "top": 1415, "right": 3450, "bottom": 4755, "left": 480}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718526f.jpg"} -{"rects": [{"solidity": 0.9639790612747899, "top": 755, "right": 5840, "bottom": 3590, "left": 2190}, {"solidity": 0.9969016562751023, "top": 870, "right": 1990, "bottom": 3295, "left": 360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718677f.jpg"} -{"rects": [{"solidity": 0.9639924155677858, "top": 370, "right": 3845, "bottom": 2785, "left": 2095}, {"solidity": 0.997454471124057, "top": 3155, "right": 1895, "bottom": 5580, "left": 270}, {"solidity": 0.9969602242792507, "top": 3160, "right": 3710, "bottom": 5595, "left": 2085}, {"solidity": 0.9971673748229609, "top": 365, "right": 1890, "bottom": 2785, "left": 265}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701305f.jpg"} -{"rects": [{"solidity": 0.9639924597119444, "top": 545, "right": 4655, "bottom": 3685, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733382f.jpg"} -{"rects": [{"solidity": 0.964038312336055, "top": 660, "right": 4910, "bottom": 3595, "left": 1165}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708993f.jpg"} -{"rects": [{"solidity": 0.9640649236593147, "top": 1080, "right": 4650, "bottom": 3300, "left": 1215}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728616f.jpg"} -{"rects": [{"solidity": 0.9640813642505723, "top": 495, "right": 3155, "bottom": 1980, "left": 955}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725032f.jpg"} -{"rects": [{"solidity": 0.9640860641327869, "top": 1270, "right": 3335, "bottom": 4995, "left": 450}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723947f.jpg"} -{"rects": [{"solidity": 0.9640975131029677, "top": 805, "right": 2020, "bottom": 3160, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717511f.jpg"} -{"rects": [{"solidity": 0.9641724202276544, "top": 1335, "right": 2015, "bottom": 3140, "left": 585}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730398f.jpg"} -{"rects": [{"solidity": 0.9641836655109579, "top": 925, "right": 3215, "bottom": 2370, "left": 600}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725861f.jpg"} -{"rects": [{"solidity": 0.964205438198324, "top": 600, "right": 2480, "bottom": 2990, "left": 500}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509147.jpg"} -{"rects": [{"solidity": 0.9642361905787639, "top": 430, "right": 3340, "bottom": 2000, "left": 950}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726374f.jpg"} -{"rects": [{"solidity": 0.9642454254796358, "top": 500, "right": 3395, "bottom": 2745, "left": 415}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706607f.jpg"} -{"rects": [{"solidity": 0.9642921678900008, "top": 1180, "right": 3320, "bottom": 4980, "left": 305}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717048f.jpg"} -{"rects": [{"solidity": 0.9643763745227821, "top": 425, "right": 4925, "bottom": 3555, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712839f.jpg"} -{"rects": [{"solidity": 0.9644387961075056, "top": 845, "right": 3890, "bottom": 3480, "left": 540}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712805f.jpg"} -{"rects": [{"solidity": 0.9644624530871168, "top": 3245, "right": 2215, "bottom": 5320, "left": 305}, {"solidity": 0.9546674080301726, "top": 3170, "right": 4250, "bottom": 5215, "left": 2305}, {"solidity": 0.997609658486759, "top": 1065, "right": 3160, "bottom": 2730, "left": 1350}], "shape": {"h": 5980, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465675.jpg"} -{"rects": [{"solidity": 0.9644701263195705, "top": 505, "right": 5050, "bottom": 3500, "left": 1135}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722133f.jpg"} -{"rects": [{"solidity": 0.9645004931960163, "top": 810, "right": 2005, "bottom": 3160, "left": 440}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701119f.jpg"} -{"rects": [{"solidity": 0.9645082696001263, "top": 685, "right": 4930, "bottom": 3425, "left": 1175}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718155f.jpg"} -{"rects": [{"solidity": 0.9645295727553682, "top": 130, "right": 3750, "bottom": 1905, "left": 130}, {"solidity": 0.9671507798960138, "top": 1845, "right": 3750, "bottom": 2880, "left": 130}], "shape": {"h": 3010, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557761.jpg"} -{"rects": [{"solidity": 0.9645339796021407, "top": 440, "right": 5080, "bottom": 3580, "left": 1065}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730357f.jpg"} -{"rects": [{"solidity": 0.9645535071830881, "top": 985, "right": 1895, "bottom": 2820, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724934f.jpg"} -{"rects": [{"solidity": 0.9645927892735753, "top": 805, "right": 4480, "bottom": 3350, "left": 1630}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700508f.jpg"} -{"rects": [{"solidity": 0.9646123115445547, "top": 2260, "right": 2455, "bottom": 3890, "left": 405}, {"solidity": 0.9594556188032384, "top": 180, "right": 2310, "bottom": 1800, "left": 320}, {"solidity": 0.9710101269635943, "top": 2540, "right": 4535, "bottom": 3495, "left": 3010}, {"solidity": 0.9806508623316472, "top": 3465, "right": 4500, "bottom": 4315, "left": 2985}], "shape": {"h": 4445, "w": 5245}, "file": "/usr/local/google/home/danvk/milstein/1596906.jpg"} -{"rects": [{"solidity": 0.9646181593416732, "top": 860, "right": 3570, "bottom": 5170, "left": 1040}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733913f.jpg"} -{"rects": [{"solidity": 0.9646963036891479, "top": 330, "right": 3360, "bottom": 2270, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708291f.jpg"} -{"rects": [{"solidity": 0.9647143623068144, "top": 520, "right": 4935, "bottom": 3485, "left": 1125}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712868f.jpg"} -{"rects": [{"solidity": 0.9647594698818706, "top": 320, "right": 3175, "bottom": 1990, "left": 590}, {"solidity": 0.9999230492997486, "top": 4930, "right": 3845, "bottom": 6010, "left": 2480}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700603f.jpg"} -{"rects": [{"solidity": 0.9648060192079397, "top": 560, "right": 5045, "bottom": 3575, "left": 1240}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732833f.jpg"} -{"rects": [{"solidity": 0.9648729836074632, "top": 1515, "right": 3675, "bottom": 5365, "left": 580}], "shape": {"h": 6850, "w": 4390}, "file": "/usr/local/google/home/danvk/milstein/711666f.jpg"} -{"rects": [{"solidity": 0.9649001832736388, "top": 1465, "right": 3780, "bottom": 5590, "left": 385}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708368f.jpg"} -{"rects": [{"solidity": 0.9649807000135672, "top": 3375, "right": 3515, "bottom": 5495, "left": 1170}], "shape": {"h": 6010, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465525.jpg"} -{"rects": [{"solidity": 0.9649946748248099, "top": 630, "right": 3225, "bottom": 4310, "left": 415}, {"solidity": 0.9974973682001073, "top": 4315, "right": 3115, "bottom": 5935, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715451f.jpg"} -{"rects": [{"solidity": 0.9650037757456474, "top": 1285, "right": 3835, "bottom": 5020, "left": 440}], "shape": {"h": 6925, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/711263f.jpg"} -{"rects": [{"solidity": 0.965043107395633, "top": 685, "right": 4570, "bottom": 3750, "left": 2360}, {"solidity": 0.9954507344806545, "top": 1115, "right": 2170, "bottom": 2695, "left": 560}], "shape": {"h": 4405, "w": 6855}, "file": "/usr/local/google/home/danvk/milstein/703419f.jpg"} -{"rects": [{"solidity": 0.9650967434827654, "top": 1045, "right": 3215, "bottom": 1940, "left": 1015}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725686f.jpg"} -{"rects": [{"solidity": 0.9651344123241054, "top": 430, "right": 3225, "bottom": 2980, "left": 470}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700593f.jpg"} -{"rects": [{"solidity": 0.965235090125717, "top": 1140, "right": 3510, "bottom": 4850, "left": 435}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711920f.jpg"} -{"rects": [{"solidity": 0.9653097150022564, "top": 2370, "right": 2320, "bottom": 4070, "left": 130}, {"solidity": 0.9536670804027031, "top": 130, "right": 5100, "bottom": 1610, "left": 3230}], "shape": {"h": 4405, "w": 5230}, "file": "/usr/local/google/home/danvk/milstein/1596904.jpg"} -{"rects": [{"solidity": 0.9653286462742788, "top": 290, "right": 3235, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704865f.jpg"} -{"rects": [{"solidity": 0.9654083063975117, "top": 525, "right": 3070, "bottom": 1995, "left": 845}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728031f.jpg"} -{"rects": [{"solidity": 0.9654088050314465, "top": 675, "right": 3250, "bottom": 2005, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725873f.jpg"} -{"rects": [{"solidity": 0.9654121176183333, "top": 1020, "right": 1905, "bottom": 2310, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707239f.jpg"} -{"rects": [{"solidity": 0.9654590944553549, "top": 585, "right": 4985, "bottom": 3575, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703315f.jpg"} -{"rects": [{"solidity": 0.9655106580782257, "top": 440, "right": 3050, "bottom": 1195, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730753f.jpg"} -{"rects": [{"solidity": 0.9655283620596983, "top": 720, "right": 3165, "bottom": 1925, "left": 955}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725871f.jpg"} -{"rects": [{"solidity": 0.9655441726823467, "top": 960, "right": 4995, "bottom": 2955, "left": 1190}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708675f.jpg"} -{"rects": [{"solidity": 0.9655548606523969, "top": 435, "right": 3010, "bottom": 3760, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714402f.jpg"} -{"rects": [{"solidity": 0.9656693394957431, "top": 710, "right": 3015, "bottom": 3650, "left": 715}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706773f.jpg"} -{"rects": [{"solidity": 0.9656721349659687, "top": 1140, "right": 3360, "bottom": 4545, "left": 580}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/712675f.jpg"} -{"rects": [{"solidity": 0.965693580350083, "top": 610, "right": 4985, "bottom": 3625, "left": 1170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717044f.jpg"} -{"rects": [{"solidity": 0.9657735782314384, "top": 840, "right": 3340, "bottom": 2135, "left": 1465}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509621.jpg"} -{"rects": [{"solidity": 0.9657852873119939, "top": 1655, "right": 2090, "bottom": 3170, "left": 660}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709759f.jpg"} -{"rects": [{"solidity": 0.9658226493439781, "top": 580, "right": 4845, "bottom": 3070, "left": 1175}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715046f.jpg"} -{"rects": [{"solidity": 0.965874302851862, "top": 525, "right": 4935, "bottom": 3345, "left": 1200}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722724f.jpg"} -{"rects": [{"solidity": 0.9659079151577858, "top": 790, "right": 4955, "bottom": 3270, "left": 1190}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701010f.jpg"} -{"rects": [{"solidity": 0.965934968693202, "top": 430, "right": 2895, "bottom": 1985, "left": 980}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724161f.jpg"} -{"rects": [{"solidity": 0.9659424248791763, "top": 1155, "right": 3350, "bottom": 5720, "left": 715}], "shape": {"h": 6910, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708333f.jpg"} -{"rects": [{"solidity": 0.966024559658399, "top": 1235, "right": 3450, "bottom": 4935, "left": 340}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722602f.jpg"} -{"rects": [{"solidity": 0.9660389303578121, "top": 1165, "right": 3350, "bottom": 5020, "left": 455}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717050f.jpg"} -{"rects": [{"solidity": 0.9661521125684573, "top": 1080, "right": 1890, "bottom": 2920, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709811f.jpg"} -{"rects": [{"solidity": 0.9661643001798337, "top": 1210, "right": 3315, "bottom": 4825, "left": 485}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713560f.jpg"} -{"rects": [{"solidity": 0.9661644761448566, "top": 520, "right": 3375, "bottom": 2115, "left": 930}, {"solidity": 0.9664891813063827, "top": 2560, "right": 3380, "bottom": 4135, "left": 915}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711204f.jpg"} -{"rects": [{"solidity": 0.9661660428398294, "top": 400, "right": 3755, "bottom": 2495, "left": 1010}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509457.jpg"} -{"rects": [{"solidity": 0.9661755273249134, "top": 345, "right": 2825, "bottom": 3700, "left": 1180}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714213f.jpg"} -{"rects": [{"solidity": 0.9662230234901108, "top": 1050, "right": 3265, "bottom": 4865, "left": 255}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/722811f.jpg"} -{"rects": [{"solidity": 0.9662623440129553, "top": 910, "right": 4665, "bottom": 3390, "left": 1430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709039f.jpg"} -{"rects": [{"solidity": 0.9662804450303476, "top": 435, "right": 3510, "bottom": 2140, "left": 1320}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706426f.jpg"} -{"rects": [{"solidity": 0.9663004584116326, "top": 465, "right": 2505, "bottom": 2690, "left": 765}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507524.jpg"} -{"rects": [{"solidity": 0.9663238749625, "top": 1125, "right": 4995, "bottom": 3405, "left": 1185}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722762f.jpg"} -{"rects": [{"solidity": 0.9664213189382633, "top": 830, "right": 3220, "bottom": 4920, "left": 1570}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/723828f.jpg"} -{"rects": [{"solidity": 0.9664715816445376, "top": 1010, "right": 3380, "bottom": 4850, "left": 375}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712890f.jpg"} -{"rects": [{"solidity": 0.9664740141212711, "top": 885, "right": 2465, "bottom": 2705, "left": 460}], "shape": {"h": 6015, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465695.jpg"} -{"rects": [{"solidity": 0.9664891685675283, "top": 2510, "right": 3540, "bottom": 5600, "left": 280}, {"solidity": 0.9939478467208562, "top": 585, "right": 3270, "bottom": 2220, "left": 820}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/725160f.jpg"} -{"rects": [{"solidity": 0.9665366589099014, "top": 1090, "right": 3565, "bottom": 4960, "left": 430}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722172f.jpg"} -{"rects": [{"solidity": 0.9666293563013413, "top": 1145, "right": 3540, "bottom": 4730, "left": 385}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722168f.jpg"} -{"rects": [{"solidity": 0.9666849501123126, "top": 595, "right": 2370, "bottom": 2255, "left": 370}], "shape": {"h": 5805, "w": 4560}, "file": "/usr/local/google/home/danvk/milstein/417637.jpg"} -{"rects": [{"solidity": 0.9667640878239656, "top": 950, "right": 2040, "bottom": 3140, "left": 560}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726492f.jpg"} -{"rects": [{"solidity": 0.9667817891047671, "top": 730, "right": 5060, "bottom": 3265, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730058f.jpg"} -{"rects": [{"solidity": 0.9667985877667349, "top": 605, "right": 4935, "bottom": 3535, "left": 1125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701682f.jpg"} -{"rects": [{"solidity": 0.9668257615933062, "top": 655, "right": 3135, "bottom": 3605, "left": 645}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713338f.jpg"} -{"rects": [{"solidity": 0.9668654773308213, "top": 905, "right": 3135, "bottom": 2185, "left": 1180}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509587.jpg"} -{"rects": [{"solidity": 0.9669095882581092, "top": 925, "right": 1955, "bottom": 3135, "left": 535}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719292f.jpg"} -{"rects": [{"solidity": 0.9669269923648884, "top": 370, "right": 3120, "bottom": 2290, "left": 995}, {"solidity": 0.9961013260101484, "top": 2480, "right": 3260, "bottom": 4075, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727260f.jpg"} -{"rects": [{"solidity": 0.9669628352895918, "top": 515, "right": 4445, "bottom": 3750, "left": 2045}, {"solidity": 0.9944802912753958, "top": 770, "right": 2040, "bottom": 3165, "left": 455}, {"solidity": 0.993964377465576, "top": 545, "right": 5635, "bottom": 2550, "left": 4455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713231f.jpg"} -{"rects": [{"solidity": 0.9670495926834626, "top": 395, "right": 3260, "bottom": 1985, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732460f.jpg"} -{"rects": [{"solidity": 0.9670817591398341, "top": 690, "right": 3100, "bottom": 2165, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721114f.jpg"} -{"rects": [{"solidity": 0.9671677041010348, "top": 925, "right": 3310, "bottom": 2675, "left": 1275}, {"solidity": 0.9598545895183278, "top": 2950, "right": 2235, "bottom": 4125, "left": 345}, {"solidity": 0.9908795464423096, "top": 4430, "right": 4195, "bottom": 5470, "left": 2310}], "shape": {"h": 5995, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465566.jpg"} -{"rects": [{"solidity": 0.9671906971295142, "top": 995, "right": 3470, "bottom": 4955, "left": 320}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713832f.jpg"} -{"rects": [{"solidity": 0.9672113940077806, "top": 1130, "right": 3455, "bottom": 4965, "left": 335}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722150f.jpg"} -{"rects": [{"solidity": 0.9672529709855804, "top": 440, "right": 3155, "bottom": 1915, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721376f.jpg"} -{"rects": [{"solidity": 0.9672896627050994, "top": 3365, "right": 4170, "bottom": 5365, "left": 2555}, {"solidity": 0.9658098045028862, "top": 3450, "right": 2015, "bottom": 5410, "left": 455}, {"solidity": 0.9777430994428714, "top": 1515, "right": 2950, "bottom": 2905, "left": 1605}], "shape": {"h": 6020, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465543.jpg"} -{"rects": [{"solidity": 0.9672989176618321, "top": 430, "right": 4145, "bottom": 2830, "left": 1160}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509499.jpg"} -{"rects": [{"solidity": 0.9673043933681157, "top": 1030, "right": 4335, "bottom": 3995, "left": 2395}, {"solidity": 0.9940263235631995, "top": 1075, "right": 2305, "bottom": 3540, "left": 720}], "shape": {"h": 4405, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708339f.jpg"} -{"rects": [{"solidity": 0.9673061723072501, "top": 640, "right": 4900, "bottom": 3375, "left": 1310}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722792f.jpg"} -{"rects": [{"solidity": 0.9673125288061288, "top": 2690, "right": 2580, "bottom": 4245, "left": 320}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509099.jpg"} -{"rects": [{"solidity": 0.9673208792680381, "top": 545, "right": 3160, "bottom": 2015, "left": 890}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717833f.jpg"} -{"rects": [{"solidity": 0.967330839369257, "top": 590, "right": 1680, "bottom": 2150, "left": 745}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703687f.jpg"} -{"rects": [{"solidity": 0.9674207837570395, "top": 565, "right": 4845, "bottom": 3360, "left": 1250}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712947f.jpg"} -{"rects": [{"solidity": 0.9674703422561894, "top": 1135, "right": 3480, "bottom": 4980, "left": 445}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709968f.jpg"} -{"rects": [{"solidity": 0.9675943698840843, "top": 975, "right": 5235, "bottom": 3670, "left": 1590}], "shape": {"h": 4430, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708371f.jpg"} -{"rects": [{"solidity": 0.9676067403554399, "top": 1560, "right": 3385, "bottom": 4945, "left": 370}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722808f.jpg"} -{"rects": [{"solidity": 0.9676772906037858, "top": 730, "right": 3670, "bottom": 3210, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712492f.jpg"} -{"rects": [{"solidity": 0.9677025890570132, "top": 1325, "right": 2980, "bottom": 4530, "left": 1020}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721039f.jpg"} -{"rects": [{"solidity": 0.9677887482605526, "top": 530, "right": 4910, "bottom": 3600, "left": 1185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717159f.jpg"} -{"rects": [{"solidity": 0.9678894744962201, "top": 500, "right": 2790, "bottom": 1915, "left": 980}, {"solidity": 0.9488085352658464, "top": 2115, "right": 2775, "bottom": 3530, "left": 975}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717352f.jpg"} -{"rects": [{"solidity": 0.9679222761132013, "top": 440, "right": 2860, "bottom": 1845, "left": 1020}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721738f.jpg"} -{"rects": [{"solidity": 0.9679693006500117, "top": 1105, "right": 2595, "bottom": 3975, "left": 330}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507526.jpg"} -{"rects": [{"solidity": 0.968035408246619, "top": 1040, "right": 5680, "bottom": 2870, "left": 4360}, {"solidity": 0.9770161334307812, "top": 990, "right": 1630, "bottom": 2840, "left": 350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703840f.jpg"} -{"rects": [{"solidity": 0.9680618418445877, "top": 130, "right": 2050, "bottom": 3830, "left": 130}, {"solidity": 0.9907761422290193, "top": 805, "right": 3865, "bottom": 3245, "left": 2230}, {"solidity": 0.9978376477254595, "top": 815, "right": 5660, "bottom": 3220, "left": 4050}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700615f.jpg"} -{"rects": [{"solidity": 0.9680891845901227, "top": 1125, "right": 3415, "bottom": 4980, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717025f.jpg"} -{"rects": [{"solidity": 0.9680941685031361, "top": 1050, "right": 3370, "bottom": 4910, "left": 295}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724105f.jpg"} -{"rects": [{"solidity": 0.9682174402591053, "top": 855, "right": 2520, "bottom": 3625, "left": 375}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508055.jpg"} -{"rects": [{"solidity": 0.968224154062428, "top": 795, "right": 3195, "bottom": 2760, "left": 435}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704486f.jpg"} -{"rects": [{"solidity": 0.9682310484991662, "top": 575, "right": 5090, "bottom": 3635, "left": 1195}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719110f.jpg"} -{"rects": [{"solidity": 0.9682718632286125, "top": 435, "right": 4840, "bottom": 3380, "left": 1240}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731181f.jpg"} -{"rects": [{"solidity": 0.9682962993471859, "top": 875, "right": 1700, "bottom": 3050, "left": 515}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712502f.jpg"} -{"rects": [{"solidity": 0.9683215004062712, "top": 445, "right": 3395, "bottom": 2225, "left": 725}, {"solidity": 0.9960322936792714, "top": 4230, "right": 2975, "bottom": 5645, "left": 1165}, {"solidity": 0.9946856497754465, "top": 2510, "right": 2985, "bottom": 3930, "left": 1165}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727935f.jpg"} -{"rects": [{"solidity": 0.9683586149574022, "top": 3310, "right": 4275, "bottom": 5450, "left": 2370}, {"solidity": 0.9968153529853027, "top": 1130, "right": 2220, "bottom": 3015, "left": 295}], "shape": {"h": 6015, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465581.jpg"} -{"rects": [{"solidity": 0.9684314607740208, "top": 1345, "right": 3320, "bottom": 4750, "left": 585}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708472f.jpg"} -{"rects": [{"solidity": 0.9684461551724539, "top": 1265, "right": 3425, "bottom": 4805, "left": 355}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723862f.jpg"} -{"rects": [{"solidity": 0.9684995583179897, "top": 290, "right": 3315, "bottom": 2145, "left": 670}, {"solidity": 0.9348753983595424, "top": 2160, "right": 3315, "bottom": 3995, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726035f.jpg"} -{"rects": [{"solidity": 0.9685259810853448, "top": 555, "right": 3155, "bottom": 2035, "left": 965}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727625f.jpg"} -{"rects": [{"solidity": 0.9685849403471404, "top": 1605, "right": 4510, "bottom": 3300, "left": 1540}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723878f.jpg"} -{"rects": [{"solidity": 0.9685925428283507, "top": 930, "right": 4595, "bottom": 3365, "left": 1535}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710468f.jpg"} -{"rects": [{"solidity": 0.968615803711621, "top": 435, "right": 4985, "bottom": 3575, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712844f.jpg"} -{"rects": [{"solidity": 0.9686737583907584, "top": 1415, "right": 3420, "bottom": 4040, "left": 1060}], "shape": {"h": 5885, "w": 4560}, "file": "/usr/local/google/home/danvk/milstein/464813.jpg"} -{"rects": [{"solidity": 0.9686746683831232, "top": 3495, "right": 3435, "bottom": 5275, "left": 520}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730691f.jpg"} -{"rects": [{"solidity": 0.9687127081367689, "top": 475, "right": 3320, "bottom": 2280, "left": 585}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725810f.jpg"} -{"rects": [{"solidity": 0.9688792058739664, "top": 380, "right": 2945, "bottom": 1910, "left": 1095}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/716796f.jpg"} -{"rects": [{"solidity": 0.9689013218165161, "top": 620, "right": 4920, "bottom": 3645, "left": 1105}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708108f.jpg"} -{"rects": [{"solidity": 0.9689160318522195, "top": 445, "right": 2985, "bottom": 1925, "left": 990}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709792f.jpg"} -{"rects": [{"solidity": 0.9689702847925592, "top": 3125, "right": 2365, "bottom": 5470, "left": 255}], "shape": {"h": 5990, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465582.jpg"} -{"rects": [{"solidity": 0.9689720130663615, "top": 1445, "right": 3245, "bottom": 4320, "left": 585}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716859f.jpg"} -{"rects": [{"solidity": 0.9689897661654565, "top": 540, "right": 3060, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714697f.jpg"} -{"rects": [{"solidity": 0.9689932623892885, "top": 1040, "right": 2640, "bottom": 3735, "left": 360}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507560.jpg"} -{"rects": [{"solidity": 0.9690070824346443, "top": 1540, "right": 3225, "bottom": 4780, "left": 540}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708917f.jpg"} -{"rects": [{"solidity": 0.9690354428581576, "top": 830, "right": 2050, "bottom": 3195, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713243f.jpg"} -{"rects": [{"solidity": 0.9690372190372191, "top": 550, "right": 3165, "bottom": 1995, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734111f.jpg"} -{"rects": [{"solidity": 0.9690454577906514, "top": 560, "right": 4895, "bottom": 3545, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708999f.jpg"} -{"rects": [{"solidity": 0.9690568169139797, "top": 1140, "right": 3375, "bottom": 4770, "left": 360}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713295f.jpg"} -{"rects": [{"solidity": 0.9690839885498569, "top": 1345, "right": 3185, "bottom": 4670, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714628f.jpg"} -{"rects": [{"solidity": 0.9690984997235831, "top": 1785, "right": 2880, "bottom": 3255, "left": 1070}, {"solidity": 0.9575756907052697, "top": 385, "right": 2530, "bottom": 1525, "left": 1435}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717326f.jpg"} -{"rects": [{"solidity": 0.9691055319648553, "top": 755, "right": 3195, "bottom": 2210, "left": 835}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707639f.jpg"} -{"rects": [{"solidity": 0.9691076311210539, "top": 660, "right": 2385, "bottom": 2815, "left": 615}], "shape": {"h": 6030, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465715.jpg"} -{"rects": [{"solidity": 0.9691513623814668, "top": 825, "right": 1655, "bottom": 3570, "left": 790}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712983f.jpg"} -{"rects": [{"solidity": 0.9692470797017666, "top": 845, "right": 2050, "bottom": 3125, "left": 570}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711598f.jpg"} -{"rects": [{"solidity": 0.9692666552533751, "top": 3620, "right": 2710, "bottom": 5540, "left": 520}], "shape": {"h": 6005, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464746.jpg"} -{"rects": [{"solidity": 0.9693053292523206, "top": 670, "right": 4975, "bottom": 3525, "left": 1165}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713705f.jpg"} -{"rects": [{"solidity": 0.9693891816324336, "top": 1075, "right": 2345, "bottom": 3625, "left": 380}, {"solidity": 0.9955959253514145, "top": 1000, "right": 4175, "bottom": 3480, "left": 2575}, {"solidity": 0.9928878855454304, "top": 710, "right": 6450, "bottom": 2160, "left": 4545}, {"solidity": 0.9921557447904213, "top": 2380, "right": 6450, "bottom": 3825, "left": 4545}], "shape": {"h": 4435, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708377f.jpg"} -{"rects": [{"solidity": 0.9694053627600716, "top": 1600, "right": 3930, "bottom": 5235, "left": 490}], "shape": {"h": 6860, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708832f.jpg"} -{"rects": [{"solidity": 0.9694319823587559, "top": 410, "right": 4910, "bottom": 2245, "left": 3795}], "shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627924.jpg"} -{"rects": [{"solidity": 0.9695315714062788, "top": 1210, "right": 3450, "bottom": 2945, "left": 1185}], "shape": {"h": 5995, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465524.jpg"} -{"rects": [{"solidity": 0.969544267703226, "top": 1400, "right": 3205, "bottom": 4765, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718381f.jpg"} -{"rects": [{"solidity": 0.9695546070250162, "top": 760, "right": 3770, "bottom": 3255, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724821f.jpg"} -{"rects": [{"solidity": 0.9695876679469538, "top": 1200, "right": 3015, "bottom": 4820, "left": 865}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718347f.jpg"} -{"rects": [{"solidity": 0.9695967255855679, "top": 2115, "right": 4335, "bottom": 3480, "left": 2350}, {"solidity": 0.984024825831871, "top": 515, "right": 2200, "bottom": 1865, "left": 225}, {"solidity": 0.9649277855495482, "top": 2210, "right": 2220, "bottom": 3565, "left": 250}, {"solidity": 0.9453213849210281, "top": 470, "right": 4365, "bottom": 1850, "left": 2365}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732895f.jpg"} -{"rects": [{"solidity": 0.9696794416639246, "top": 730, "right": 3755, "bottom": 2360, "left": 1470}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508663.jpg"} -{"rects": [{"solidity": 0.9696801604379126, "top": 685, "right": 3430, "bottom": 2345, "left": 870}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711384f.jpg"} -{"rects": [{"solidity": 0.9696867281212418, "top": 1175, "right": 3920, "bottom": 2545, "left": 640}, {"solidity": 0.9756922737469201, "top": 3970, "right": 3240, "bottom": 4775, "left": 1470}], "shape": {"h": 5680, "w": 4570}, "file": "/usr/local/google/home/danvk/milstein/1823520.jpg"} -{"rects": [{"solidity": 0.9696908717716058, "top": 805, "right": 1980, "bottom": 3155, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719915f.jpg"} -{"rects": [{"solidity": 0.9697191002131159, "top": 1005, "right": 3505, "bottom": 5040, "left": 410}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721052f.jpg"} -{"rects": [{"solidity": 0.9697238908611796, "top": 545, "right": 4930, "bottom": 3485, "left": 1230}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722814f.jpg"} -{"rects": [{"solidity": 0.9697615474252653, "top": 655, "right": 3510, "bottom": 3075, "left": 1150}, {"solidity": 0.971596225560669, "top": 3270, "right": 3445, "bottom": 5325, "left": 1145}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464765.jpg"} -{"rects": [{"solidity": 0.9698117453290888, "top": 700, "right": 5520, "bottom": 3945, "left": 1305}], "shape": {"h": 4425, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708318f.jpg"} -{"rects": [{"solidity": 0.9698616884623957, "top": 425, "right": 4875, "bottom": 3440, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708997f.jpg"} -{"rects": [{"solidity": 0.9698642434545098, "top": 635, "right": 2715, "bottom": 2060, "left": 850}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706799f.jpg"} -{"rects": [{"solidity": 0.9699145959732581, "top": 1510, "right": 5045, "bottom": 3690, "left": 1090}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726908f.jpg"} -{"rects": [{"solidity": 0.9699254378020062, "top": 315, "right": 2945, "bottom": 1720, "left": 1055}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717703f.jpg"} -{"rects": [{"solidity": 0.9699632112524623, "top": 455, "right": 4080, "bottom": 2635, "left": 1135}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508025.jpg"} -{"rects": [{"solidity": 0.9699686318925069, "top": 670, "right": 5530, "bottom": 3715, "left": 3135}, {"solidity": 0.9949546060505804, "top": 2120, "right": 2705, "bottom": 3545, "left": 880}, {"solidity": 0.9961254686528861, "top": 660, "right": 2695, "bottom": 2050, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707000f.jpg"} -{"rects": [{"solidity": 0.9700097663969645, "top": 300, "right": 3380, "bottom": 2190, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721628f.jpg"} -{"rects": [{"solidity": 0.9700333313610634, "top": 395, "right": 3170, "bottom": 3775, "left": 1225}, {"solidity": 0.98626267281106, "top": 580, "right": 5515, "bottom": 1990, "left": 3525}, {"solidity": 0.984146149647024, "top": 2160, "right": 5480, "bottom": 3585, "left": 3520}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730697f.jpg"} -{"rects": [{"solidity": 0.9701502088496399, "top": 740, "right": 4735, "bottom": 3340, "left": 1345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719237f.jpg"} -{"rects": [{"solidity": 0.9701510708886701, "top": 715, "right": 2570, "bottom": 2100, "left": 760}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712171f.jpg"} -{"rects": [{"solidity": 0.9703504800436695, "top": 575, "right": 2790, "bottom": 5860, "left": 385}, {"solidity": 0.9981206524495965, "top": 1820, "right": 4200, "bottom": 4490, "left": 3065}], "shape": {"h": 5990, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/464837.jpg"} -{"rects": [{"solidity": 0.970359451607145, "top": 585, "right": 4980, "bottom": 3595, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713019f.jpg"} -{"rects": [{"solidity": 0.9703679155935585, "top": 840, "right": 4640, "bottom": 3225, "left": 1420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709150f.jpg"} -{"rects": [{"solidity": 0.9704780062899254, "top": 3060, "right": 3410, "bottom": 5405, "left": 1060}, {"solidity": 0.9784716904734223, "top": 735, "right": 2075, "bottom": 2720, "left": 490}], "shape": {"h": 5995, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465575.jpg"} -{"rects": [{"solidity": 0.9704863638267028, "top": 1040, "right": 3425, "bottom": 5090, "left": 285}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709145f.jpg"} -{"rects": [{"solidity": 0.970527542656247, "top": 1420, "right": 3250, "bottom": 3615, "left": 1395}], "shape": {"h": 5805, "w": 4610}, "file": "/usr/local/google/home/danvk/milstein/417649.jpg"} -{"rects": [{"solidity": 0.9705339668307857, "top": 570, "right": 4910, "bottom": 3590, "left": 1045}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713906f.jpg"} -{"rects": [{"solidity": 0.970587222728332, "top": 375, "right": 3510, "bottom": 3615, "left": 455}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718834f.jpg"} -{"rects": [{"solidity": 0.9706338076628298, "top": 775, "right": 3315, "bottom": 2705, "left": 560}, {"solidity": 0.9745203173839866, "top": 3295, "right": 3300, "bottom": 5240, "left": 570}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726525f.jpg"} -{"rects": [{"solidity": 0.9706442765721984, "top": 1130, "right": 3350, "bottom": 4845, "left": 495}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707403f.jpg"} -{"rects": [{"solidity": 0.9706900001819141, "top": 1380, "right": 2510, "bottom": 4355, "left": 130}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508013.jpg"} -{"rects": [{"solidity": 0.9707097502039074, "top": 910, "right": 2045, "bottom": 3180, "left": 550}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708457f.jpg"} -{"rects": [{"solidity": 0.9707101192218603, "top": 415, "right": 5020, "bottom": 3585, "left": 1070}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/730727f.jpg"} -{"rects": [{"solidity": 0.970820071677216, "top": 1055, "right": 3560, "bottom": 2530, "left": 130}, {"solidity": 0.9571096446938919, "top": 130, "right": 3560, "bottom": 1030, "left": 130}], "shape": {"h": 2660, "w": 3690}, "file": "/usr/local/google/home/danvk/milstein/1558497.jpg"} -{"rects": [{"solidity": 0.9708466122333442, "top": 800, "right": 2805, "bottom": 3545, "left": 885}, {"solidity": 0.977056922193916, "top": 805, "right": 5355, "bottom": 3480, "left": 3460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704276f.jpg"} -{"rects": [{"solidity": 0.9708559845094027, "top": 1210, "right": 3490, "bottom": 4935, "left": 400}, {"solidity": 0.946102001810683, "top": 1235, "right": 3485, "bottom": 2040, "left": 2425}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721214f.jpg"} -{"rects": [{"solidity": 0.9708600207064769, "top": 790, "right": 2490, "bottom": 2445, "left": 270}], "shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508609.jpg"} -{"rects": [{"solidity": 0.9708696641448411, "top": 445, "right": 3740, "bottom": 2700, "left": 965}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/723880f.jpg"} -{"rects": [{"solidity": 0.9709342853913109, "top": 615, "right": 2625, "bottom": 2065, "left": 775}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731274f.jpg"} -{"rects": [{"solidity": 0.9710027258670436, "top": 1085, "right": 3480, "bottom": 4950, "left": 340}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709960f.jpg"} -{"rects": [{"solidity": 0.9710811539871487, "top": 1300, "right": 3450, "bottom": 4915, "left": 420}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721271f.jpg"} -{"rects": [{"solidity": 0.9711100038545065, "top": 540, "right": 3080, "bottom": 1840, "left": 915}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723440f.jpg"} -{"rects": [{"solidity": 0.9711190262597738, "top": 535, "right": 4995, "bottom": 3635, "left": 1150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725915f.jpg"} -{"rects": [{"solidity": 0.9711511868242766, "top": 1105, "right": 3485, "bottom": 5005, "left": 420}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722197f.jpg"} -{"rects": [{"solidity": 0.9711513982577205, "top": 2965, "right": 3410, "bottom": 5355, "left": 280}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719347f.jpg"} -{"rects": [{"solidity": 0.9711849379367894, "top": 1240, "right": 2590, "bottom": 3800, "left": 655}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508263.jpg"} -{"rects": [{"solidity": 0.9712129002770874, "top": 795, "right": 2120, "bottom": 3090, "left": 530}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707598f.jpg"} -{"rects": [{"solidity": 0.9712452926533478, "top": 415, "right": 3095, "bottom": 1830, "left": 865}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732969f.jpg"} -{"rects": [{"solidity": 0.9713187171446107, "top": 270, "right": 3380, "bottom": 4205, "left": 590}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704687f.jpg"} -{"rects": [{"solidity": 0.9713236263550671, "top": 1090, "right": 3415, "bottom": 4915, "left": 380}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713973f.jpg"} -{"rects": [{"solidity": 0.9713240006746501, "top": 715, "right": 4520, "bottom": 3110, "left": 1375}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722759f.jpg"} -{"rects": [{"solidity": 0.9713361707320793, "top": 465, "right": 3005, "bottom": 1955, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713846f.jpg"} -{"rects": [{"solidity": 0.9713545462283544, "top": 620, "right": 4885, "bottom": 3555, "left": 1200}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720747f.jpg"} -{"rects": [{"solidity": 0.9713602453796366, "top": 480, "right": 3240, "bottom": 2320, "left": 580}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726051f.jpg"} -{"rects": [{"solidity": 0.9713910812051167, "top": 400, "right": 3225, "bottom": 2065, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710675f.jpg"} -{"rects": [{"solidity": 0.9713982505333925, "top": 510, "right": 5050, "bottom": 3655, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708267f.jpg"} -{"rects": [{"solidity": 0.9714070561569891, "top": 515, "right": 3315, "bottom": 2095, "left": 1145}], "shape": {"h": 6870, "w": 4430}, "file": "/usr/local/google/home/danvk/milstein/701646f.jpg"} -{"rects": [{"solidity": 0.9714125809517887, "top": 730, "right": 3155, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719923f.jpg"} -{"rects": [{"solidity": 0.9714504678928687, "top": 670, "right": 2335, "bottom": 1805, "left": 910}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725269f.jpg"} -{"rects": [{"solidity": 0.9714528956877212, "top": 400, "right": 3365, "bottom": 2275, "left": 600}, {"solidity": 0.9936919464171967, "top": 2560, "right": 2935, "bottom": 3985, "left": 1070}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727689f.jpg"} -{"rects": [{"solidity": 0.9715727488860548, "top": 440, "right": 3480, "bottom": 2510, "left": 285}, {"solidity": 0.9955879205339249, "top": 2715, "right": 2875, "bottom": 4140, "left": 1035}, {"solidity": 0.9965464597506929, "top": 4340, "right": 2860, "bottom": 5755, "left": 1045}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704268f.jpg"} -{"rects": [{"solidity": 0.9715923540611318, "top": 1170, "right": 3310, "bottom": 5990, "left": 145}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/715735f.jpg"} -{"rects": [{"solidity": 0.9715932686032945, "top": 350, "right": 2060, "bottom": 1285, "left": 660}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727151f.jpg"} -{"rects": [{"solidity": 0.9716943879958779, "top": 1460, "right": 3250, "bottom": 4550, "left": 565}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723920f.jpg"} -{"rects": [{"solidity": 0.9717052621031295, "top": 530, "right": 5080, "bottom": 3675, "left": 1185}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/721995f.jpg"} -{"rects": [{"solidity": 0.9718097747297485, "top": 590, "right": 2795, "bottom": 2985, "left": 1195}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708280f.jpg"} -{"rects": [{"solidity": 0.9718616034781551, "top": 960, "right": 3350, "bottom": 3790, "left": 380}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709945f.jpg"} -{"rects": [{"solidity": 0.9718637903816211, "top": 1100, "right": 3575, "bottom": 4910, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709965f.jpg"} -{"rects": [{"solidity": 0.9718649042628634, "top": 2060, "right": 2820, "bottom": 3450, "left": 965}, {"solidity": 0.9824530504619472, "top": 605, "right": 2815, "bottom": 1975, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703821f.jpg"} -{"rects": [{"solidity": 0.9719101955769297, "top": 2230, "right": 2880, "bottom": 3625, "left": 1025}, {"solidity": 0.975082878836488, "top": 4105, "right": 2825, "bottom": 4895, "left": 980}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734553f.jpg"} -{"rects": [{"solidity": 0.9719103286607051, "top": 1020, "right": 3915, "bottom": 4720, "left": 600}], "shape": {"h": 6005, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464840.jpg"} -{"rects": [{"solidity": 0.9719252694332835, "top": 475, "right": 3330, "bottom": 2415, "left": 575}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705511f.jpg"} -{"rects": [{"solidity": 0.9719702954653183, "top": 305, "right": 2070, "bottom": 1470, "left": 335}, {"solidity": 0.9951206695942649, "top": 1625, "right": 1820, "bottom": 2505, "left": 670}, {"solidity": 0.991793863903211, "top": 2715, "right": 1805, "bottom": 3605, "left": 665}], "shape": {"h": 3905, "w": 2510}, "file": "/usr/local/google/home/danvk/milstein/727053f.jpg"} -{"rects": [{"solidity": 0.9719784581288334, "top": 445, "right": 3780, "bottom": 2695, "left": 960}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715973f.jpg"} -{"rects": [{"solidity": 0.972002057811108, "top": 935, "right": 3770, "bottom": 3115, "left": 2375}, {"solidity": 0.9368015356914332, "top": 980, "right": 1950, "bottom": 2500, "left": 705}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708458f.jpg"} -{"rects": [{"solidity": 0.9720372923427568, "top": 1010, "right": 1980, "bottom": 3460, "left": 345}], "shape": {"h": 4645, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509631.jpg"} -{"rects": [{"solidity": 0.9720394355632253, "top": 420, "right": 3540, "bottom": 2630, "left": 785}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509283.jpg"} -{"rects": [{"solidity": 0.9720819815671882, "top": 1340, "right": 3360, "bottom": 4775, "left": 525}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723608f.jpg"} -{"rects": [{"solidity": 0.9721016652135162, "top": 935, "right": 3445, "bottom": 4800, "left": 425}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709974f.jpg"} -{"rects": [{"solidity": 0.9721137490716562, "top": 935, "right": 4440, "bottom": 3260, "left": 2000}, {"solidity": 0.9685853665996345, "top": 590, "right": 1795, "bottom": 2845, "left": 145}], "shape": {"h": 6005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465526.jpg"} -{"rects": [{"solidity": 0.9721360145267892, "top": 450, "right": 3270, "bottom": 3835, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716630f.jpg"} -{"rects": [{"solidity": 0.9721456883217324, "top": 970, "right": 3590, "bottom": 3005, "left": 970}, {"solidity": 0.9708919362829439, "top": 3410, "right": 3590, "bottom": 5445, "left": 985}], "shape": {"h": 5985, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465615.jpg"} -{"rects": [{"solidity": 0.9721495102851035, "top": 525, "right": 3130, "bottom": 2435, "left": 670}, {"solidity": 0.99542455876197, "top": 2590, "right": 3075, "bottom": 4220, "left": 655}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724017f.jpg"} -{"rects": [{"solidity": 0.9721523655379761, "top": 2015, "right": 3170, "bottom": 3870, "left": 515}, {"solidity": 0.9946137212502457, "top": 465, "right": 2885, "bottom": 1875, "left": 1050}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704482f.jpg"} -{"rects": [{"solidity": 0.972158519412593, "top": 370, "right": 2180, "bottom": 1505, "left": 795}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715866f.jpg"} -{"rects": [{"solidity": 0.9721737558002737, "top": 880, "right": 5325, "bottom": 3670, "left": 780}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708231f.jpg"} -{"rects": [{"solidity": 0.9722032128979876, "top": 905, "right": 2270, "bottom": 3555, "left": 595}, {"solidity": 0.9657617999510882, "top": 1055, "right": 4345, "bottom": 3545, "left": 2580}], "shape": {"h": 4415, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711266f.jpg"} -{"rects": [{"solidity": 0.9722092425194891, "top": 475, "right": 3305, "bottom": 2055, "left": 925}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727256f.jpg"} -{"rects": [{"solidity": 0.9722653976514088, "top": 485, "right": 4925, "bottom": 3585, "left": 1115}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722124f.jpg"} -{"rects": [{"solidity": 0.9722718886871793, "top": 1120, "right": 3465, "bottom": 4990, "left": 375}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712735f.jpg"} -{"rects": [{"solidity": 0.9722786620747725, "top": 2690, "right": 4050, "bottom": 5555, "left": 2300}, {"solidity": 0.9956879247555416, "top": 2855, "right": 1950, "bottom": 5490, "left": 585}, {"solidity": 0.9548026681489716, "top": 485, "right": 3890, "bottom": 2085, "left": 2345}], "shape": {"h": 5900, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/464815.jpg"} -{"rects": [{"solidity": 0.9723140783542475, "top": 445, "right": 3040, "bottom": 1935, "left": 1085}, {"solidity": 0.9761532343584305, "top": 2345, "right": 3055, "bottom": 3820, "left": 1105}, {"solidity": 0.9919573784848927, "top": 4245, "right": 3105, "bottom": 5545, "left": 1060}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723199f.jpg"} -{"rects": [{"solidity": 0.9723267544630915, "top": 565, "right": 4990, "bottom": 3630, "left": 1145}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722598f.jpg"} -{"rects": [{"solidity": 0.9723277300698815, "top": 995, "right": 4605, "bottom": 2940, "left": 1480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730687f.jpg"} -{"rects": [{"solidity": 0.9723412829248635, "top": 470, "right": 5100, "bottom": 3600, "left": 1145}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718898f.jpg"} -{"rects": [{"solidity": 0.9723495950875587, "top": 465, "right": 3195, "bottom": 2295, "left": 520}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/732171f.jpg"} -{"rects": [{"solidity": 0.972428185397515, "top": 465, "right": 3770, "bottom": 2315, "left": 570}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706375f.jpg"} -{"rects": [{"solidity": 0.972481505549976, "top": 1375, "right": 3165, "bottom": 4630, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721414f.jpg"} -{"rects": [{"solidity": 0.9724982487407323, "top": 1085, "right": 3370, "bottom": 4940, "left": 675}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713020f.jpg"} -{"rects": [{"solidity": 0.9725262139033326, "top": 1355, "right": 3350, "bottom": 4660, "left": 465}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700314f.jpg"} -{"rects": [{"solidity": 0.9725372195016422, "top": 520, "right": 3290, "bottom": 1995, "left": 1035}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725974f.jpg"} -{"rects": [{"solidity": 0.9725407328153763, "top": 790, "right": 4980, "bottom": 3395, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700558f.jpg"} -{"rects": [{"solidity": 0.9725589538694389, "top": 1265, "right": 3320, "bottom": 4635, "left": 375}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709730f.jpg"} -{"rects": [{"solidity": 0.9725942387793958, "top": 505, "right": 4910, "bottom": 3510, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712905f.jpg"} -{"rects": [{"solidity": 0.9726453681936159, "top": 730, "right": 3080, "bottom": 1995, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720535f.jpg"} -{"rects": [{"solidity": 0.9726827179351202, "top": 650, "right": 4875, "bottom": 3440, "left": 1225}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731182f.jpg"} -{"rects": [{"solidity": 0.9727464459153098, "top": 1405, "right": 1820, "bottom": 3245, "left": 605}], "shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508549.jpg"} -{"rects": [{"solidity": 0.9727785874464754, "top": 995, "right": 2495, "bottom": 2330, "left": 365}], "shape": {"h": 2680, "w": 7000}, "file": "/usr/local/google/home/danvk/milstein/1627856.jpg"} -{"rects": [{"solidity": 0.9728286928667581, "top": 430, "right": 4935, "bottom": 3600, "left": 1105}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723817f.jpg"} -{"rects": [{"solidity": 0.9728702136531999, "top": 760, "right": 4630, "bottom": 3250, "left": 1300}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723209f.jpg"} -{"rects": [{"solidity": 0.9729138110318098, "top": 820, "right": 4755, "bottom": 3380, "left": 1415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720617f.jpg"} -{"rects": [{"solidity": 0.9729298960450439, "top": 1215, "right": 3745, "bottom": 5155, "left": 375}], "shape": {"h": 6920, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711271f.jpg"} -{"rects": [{"solidity": 0.9729703767904587, "top": 720, "right": 5100, "bottom": 3625, "left": 1095}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733728f.jpg"} -{"rects": [{"solidity": 0.9729773041405421, "top": 410, "right": 3260, "bottom": 2015, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725667f.jpg"} -{"rects": [{"solidity": 0.9729834219075482, "top": 325, "right": 3330, "bottom": 1975, "left": 660}, {"solidity": 0.9965386691280576, "top": 2165, "right": 3010, "bottom": 3775, "left": 1005}, {"solidity": 0.9940081579070749, "top": 3995, "right": 2690, "bottom": 5015, "left": 1355}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733386f.jpg"} -{"rects": [{"solidity": 0.972985320608639, "top": 830, "right": 4700, "bottom": 3310, "left": 1305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734429f.jpg"} -{"rects": [{"solidity": 0.9730052511337676, "top": 1235, "right": 3820, "bottom": 5565, "left": 370}], "shape": {"h": 6870, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711663f.jpg"} -{"rects": [{"solidity": 0.9730120052729168, "top": 535, "right": 4930, "bottom": 3845, "left": 130}, {"solidity": 0.9341024110668705, "top": 605, "right": 6010, "bottom": 3845, "left": 4945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701202f.jpg"} -{"rects": [{"solidity": 0.9730213971859216, "top": 1780, "right": 3010, "bottom": 4650, "left": 635}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/709099f.jpg"} -{"rects": [{"solidity": 0.9730322201889868, "top": 965, "right": 3085, "bottom": 2155, "left": 1340}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509707.jpg"} -{"rects": [{"solidity": 0.9730955048312562, "top": 775, "right": 2005, "bottom": 3165, "left": 425}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730221f.jpg"} -{"rects": [{"solidity": 0.9731010757040138, "top": 570, "right": 2035, "bottom": 3125, "left": 425}, {"solidity": 0.9965644467456681, "top": 710, "right": 3865, "bottom": 3115, "left": 2255}, {"solidity": 0.9963231332390714, "top": 720, "right": 5705, "bottom": 3125, "left": 4095}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731625f.jpg"} -{"rects": [{"solidity": 0.9731391037094033, "top": 1070, "right": 1915, "bottom": 2990, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717327f.jpg"} -{"rects": [{"solidity": 0.9731496993316522, "top": 670, "right": 4890, "bottom": 3595, "left": 1200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700348f.jpg"} -{"rects": [{"solidity": 0.9731512901909661, "top": 685, "right": 2745, "bottom": 2110, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725455f.jpg"} -{"rects": [{"solidity": 0.9731698697909588, "top": 605, "right": 4895, "bottom": 3595, "left": 1030}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722125f.jpg"} -{"rects": [{"solidity": 0.9731774607067216, "top": 1460, "right": 1880, "bottom": 2935, "left": 610}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725624f.jpg"} -{"rects": [{"solidity": 0.9731854406786923, "top": 1185, "right": 3470, "bottom": 5005, "left": 390}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716932f.jpg"} -{"rects": [{"solidity": 0.9732030707741731, "top": 665, "right": 4620, "bottom": 3560, "left": 2535}, {"solidity": 0.9981215775613427, "top": 835, "right": 2270, "bottom": 3525, "left": 480}], "shape": {"h": 4415, "w": 6915}, "file": "/usr/local/google/home/danvk/milstein/708807f.jpg"} -{"rects": [{"solidity": 0.973230505053548, "top": 685, "right": 3815, "bottom": 3230, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712425f.jpg"} -{"rects": [{"solidity": 0.973265708504125, "top": 535, "right": 4840, "bottom": 3600, "left": 1015}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733393f.jpg"} -{"rects": [{"solidity": 0.9732785470588572, "top": 130, "right": 4765, "bottom": 3265, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704285f.jpg"} -{"rects": [{"solidity": 0.9732787302609676, "top": 1170, "right": 3480, "bottom": 4945, "left": 330}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722166f.jpg"} -{"rects": [{"solidity": 0.9732790590233121, "top": 1520, "right": 2130, "bottom": 2715, "left": 425}, {"solidity": 0.9870564124689893, "top": 310, "right": 2105, "bottom": 1440, "left": 435}, {"solidity": 0.995389835509331, "top": 2790, "right": 1880, "bottom": 3675, "left": 715}], "shape": {"h": 3945, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727187f.jpg"} -{"rects": [{"solidity": 0.9733261013957486, "top": 895, "right": 2585, "bottom": 3365, "left": 350}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508131.jpg"} -{"rects": [{"solidity": 0.9733421636802924, "top": 1100, "right": 3225, "bottom": 4800, "left": 430}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714379f.jpg"} -{"rects": [{"solidity": 0.9733653074389037, "top": 2060, "right": 2820, "bottom": 3450, "left": 965}, {"solidity": 0.9833842253266059, "top": 605, "right": 2815, "bottom": 1975, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703820f.jpg"} -{"rects": [{"solidity": 0.973375897327867, "top": 3245, "right": 1985, "bottom": 5415, "left": 195}, {"solidity": 0.9930196185100812, "top": 3235, "right": 4000, "bottom": 5305, "left": 2205}, {"solidity": 0.9439549932908489, "top": 595, "right": 1655, "bottom": 2780, "left": 180}], "shape": {"h": 5805, "w": 4455}, "file": "/usr/local/google/home/danvk/milstein/417679.jpg"} -{"rects": [{"solidity": 0.973394358916939, "top": 1360, "right": 5035, "bottom": 3550, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705879f.jpg"} -{"rects": [{"solidity": 0.9734067671204512, "top": 530, "right": 3300, "bottom": 2405, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713811f.jpg"} -{"rects": [{"solidity": 0.973465540683282, "top": 880, "right": 2505, "bottom": 3080, "left": 380}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509003.jpg"} -{"rects": [{"solidity": 0.9735272040672615, "top": 275, "right": 2050, "bottom": 1400, "left": 575}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716322f.jpg"} -{"rects": [{"solidity": 0.9735314260667878, "top": 490, "right": 4230, "bottom": 2810, "left": 1170}], "shape": {"h": 3005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508241.jpg"} -{"rects": [{"solidity": 0.9735719400241528, "top": 1055, "right": 3410, "bottom": 4865, "left": 320}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714274f.jpg"} -{"rects": [{"solidity": 0.9735906100920697, "top": 535, "right": 4980, "bottom": 3570, "left": 1190}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714175f.jpg"} -{"rects": [{"solidity": 0.97360134593242, "top": 910, "right": 4890, "bottom": 3515, "left": 1345}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708451f.jpg"} -{"rects": [{"solidity": 0.9736188357822841, "top": 1095, "right": 3670, "bottom": 4945, "left": 485}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/717809f.jpg"} -{"rects": [{"solidity": 0.9736203264192423, "top": 865, "right": 5125, "bottom": 3085, "left": 1390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717117f.jpg"} -{"rects": [{"solidity": 0.9736354545969096, "top": 130, "right": 1390, "bottom": 3025, "left": 130}, {"solidity": 0.9781187390916386, "top": 130, "right": 2135, "bottom": 3025, "left": 1250}], "shape": {"h": 3155, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1557858.jpg"} -{"rects": [{"solidity": 0.9737167837320104, "top": 625, "right": 5225, "bottom": 3435, "left": 3375}, {"solidity": 0.9789670192906036, "top": 605, "right": 2770, "bottom": 2040, "left": 910}, {"solidity": 0.9755608587273676, "top": 2045, "right": 2745, "bottom": 3465, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706130f.jpg"} -{"rects": [{"solidity": 0.9737907659288753, "top": 730, "right": 4690, "bottom": 3265, "left": 1295}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709032f.jpg"} -{"rects": [{"solidity": 0.9738416180533268, "top": 855, "right": 4665, "bottom": 3275, "left": 1345}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709190f.jpg"} -{"rects": [{"solidity": 0.9738824473988712, "top": 4095, "right": 3155, "bottom": 5480, "left": 1195}, {"solidity": 0.9881202191565067, "top": 2270, "right": 3155, "bottom": 3655, "left": 1220}, {"solidity": 0.9715126681607503, "top": 600, "right": 2950, "bottom": 1880, "left": 1275}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707307f.jpg"} -{"rects": [{"solidity": 0.9739295645622043, "top": 735, "right": 2065, "bottom": 3435, "left": 325}, {"solidity": 0.9972680334853877, "top": 730, "right": 3830, "bottom": 3370, "left": 2120}, {"solidity": 0.9876170575032892, "top": 740, "right": 5620, "bottom": 3310, "left": 3910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722943f.jpg"} -{"rects": [{"solidity": 0.9739355932149394, "top": 395, "right": 3245, "bottom": 3645, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714401f.jpg"} -{"rects": [{"solidity": 0.9739371784457082, "top": 475, "right": 3110, "bottom": 1925, "left": 910}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700345f.jpg"} -{"rects": [{"solidity": 0.9740015566521392, "top": 660, "right": 3575, "bottom": 3210, "left": 990}, {"solidity": 0.9719283276450512, "top": 3285, "right": 3475, "bottom": 5615, "left": 1035}], "shape": {"h": 6005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/464763.jpg"} -{"rects": [{"solidity": 0.974022772908175, "top": 570, "right": 1830, "bottom": 2630, "left": 665}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465649.jpg"} -{"rects": [{"solidity": 0.9740248982873292, "top": 605, "right": 5295, "bottom": 3365, "left": 1410}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708922f.jpg"} -{"rects": [{"solidity": 0.9740742291974559, "top": 1370, "right": 2165, "bottom": 2605, "left": 425}, {"solidity": 0.9784393614781607, "top": 140, "right": 2170, "bottom": 1315, "left": 430}, {"solidity": 0.9378120918798494, "top": 2610, "right": 2130, "bottom": 3815, "left": 425}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727137f.jpg"} -{"rects": [{"solidity": 0.9740977805531704, "top": 655, "right": 2125, "bottom": 3165, "left": 545}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709020f.jpg"} -{"rects": [{"solidity": 0.9741145785198648, "top": 1065, "right": 3400, "bottom": 5090, "left": 350}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708540f.jpg"} -{"rects": [{"solidity": 0.9741583333067176, "top": 450, "right": 5060, "bottom": 3565, "left": 1185}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722127f.jpg"} -{"rects": [{"solidity": 0.974161083154939, "top": 460, "right": 3765, "bottom": 2810, "left": 840}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716484f.jpg"} -{"rects": [{"solidity": 0.9741773193635167, "top": 690, "right": 1950, "bottom": 2960, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707874f.jpg"} -{"rects": [{"solidity": 0.9742110195030199, "top": 475, "right": 5110, "bottom": 3690, "left": 1085}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731317f.jpg"} -{"rects": [{"solidity": 0.9742255740907224, "top": 815, "right": 2280, "bottom": 3310, "left": 450}, {"solidity": 0.9958339393351756, "top": 780, "right": 5685, "bottom": 3200, "left": 4070}, {"solidity": 0.9946899527181666, "top": 1115, "right": 3945, "bottom": 3055, "left": 2420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723416f.jpg"} -{"rects": [{"solidity": 0.9742588362908585, "top": 505, "right": 2575, "bottom": 3425, "left": 295}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508411.jpg"} -{"rects": [{"solidity": 0.9742613151811934, "top": 815, "right": 3385, "bottom": 2180, "left": 900}], "shape": {"h": 6895, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711208f.jpg"} -{"rects": [{"solidity": 0.9742778958253204, "top": 355, "right": 3565, "bottom": 2890, "left": 225}, {"solidity": 0.9473789449128537, "top": 3975, "right": 3585, "bottom": 5795, "left": 205}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731064f.jpg"} -{"rects": [{"solidity": 0.97432191422074, "top": 965, "right": 2480, "bottom": 3770, "left": 405}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517083.jpg"} -{"rects": [{"solidity": 0.9743294503280203, "top": 515, "right": 4820, "bottom": 2425, "left": 510}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713447f.jpg"} -{"rects": [{"solidity": 0.974329670917208, "top": 1145, "right": 3480, "bottom": 4945, "left": 455}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721252f.jpg"} -{"rects": [{"solidity": 0.974336973393132, "top": 1025, "right": 3405, "bottom": 4870, "left": 410}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712888f.jpg"} -{"rects": [{"solidity": 0.974355727837622, "top": 865, "right": 4640, "bottom": 3265, "left": 1385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703118f.jpg"} -{"rects": [{"solidity": 0.9743711621880458, "top": 440, "right": 3130, "bottom": 2010, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700325f.jpg"} -{"rects": [{"solidity": 0.9743965504012767, "top": 430, "right": 3080, "bottom": 1905, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713952f.jpg"} -{"rects": [{"solidity": 0.9744008149805086, "top": 1145, "right": 3415, "bottom": 4960, "left": 400}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717049f.jpg"} -{"rects": [{"solidity": 0.9744081094216482, "top": 1430, "right": 3155, "bottom": 4690, "left": 650}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/701228f.jpg"} -{"rects": [{"solidity": 0.9744512997313348, "top": 475, "right": 3840, "bottom": 2720, "left": 1065}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1508275.jpg"} -{"rects": [{"solidity": 0.9744593829644177, "top": 490, "right": 3385, "bottom": 3685, "left": 375}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713916f.jpg"} -{"rects": [{"solidity": 0.9745237801365918, "top": 1050, "right": 3515, "bottom": 5015, "left": 415}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712547f.jpg"} -{"rects": [{"solidity": 0.9745308325221513, "top": 1080, "right": 3495, "bottom": 4965, "left": 370}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722154f.jpg"} -{"rects": [{"solidity": 0.9745391766674051, "top": 470, "right": 3185, "bottom": 2000, "left": 970}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725895f.jpg"} -{"rects": [{"solidity": 0.9745612395881519, "top": 455, "right": 5005, "bottom": 3465, "left": 3090}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712853f.jpg"} -{"rects": [{"solidity": 0.9745733912518825, "top": 560, "right": 4815, "bottom": 3510, "left": 1160}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719632f.jpg"} -{"rects": [{"solidity": 0.9745816384004006, "top": 1220, "right": 3345, "bottom": 4790, "left": 515}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708453f.jpg"} -{"rects": [{"solidity": 0.9746045336969309, "top": 580, "right": 4950, "bottom": 3650, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720395f.jpg"} -{"rects": [{"solidity": 0.9746749894634988, "top": 2480, "right": 3190, "bottom": 4355, "left": 480}, {"solidity": 0.9510147214755998, "top": 455, "right": 3195, "bottom": 2370, "left": 485}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726891f.jpg"} -{"rects": [{"solidity": 0.9747123560449156, "top": 830, "right": 3170, "bottom": 2705, "left": 530}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732768f.jpg"} -{"rects": [{"solidity": 0.9747207967661495, "top": 700, "right": 4930, "bottom": 3335, "left": 1110}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704424f.jpg"} -{"rects": [{"solidity": 0.9747795866566931, "top": 1115, "right": 3440, "bottom": 5015, "left": 355}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705481f.jpg"} -{"rects": [{"solidity": 0.974818422626677, "top": 380, "right": 3110, "bottom": 3510, "left": 705}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/712483f.jpg"} -{"rects": [{"solidity": 0.9748812225898285, "top": 845, "right": 3520, "bottom": 2840, "left": 900}], "shape": {"h": 5805, "w": 4495}, "file": "/usr/local/google/home/danvk/milstein/417665.jpg"} -{"rects": [{"solidity": 0.9749236249500601, "top": 785, "right": 3670, "bottom": 2725, "left": 875}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509321.jpg"} -{"rects": [{"solidity": 0.9749477019762915, "top": 925, "right": 3480, "bottom": 4775, "left": 480}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712893f.jpg"} -{"rects": [{"solidity": 0.9749622588297748, "top": 540, "right": 5965, "bottom": 3565, "left": 3885}, {"solidity": 0.997071831337485, "top": 790, "right": 3860, "bottom": 3220, "left": 2225}, {"solidity": 0.9965579598795286, "top": 750, "right": 2010, "bottom": 3170, "left": 385}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731828f.jpg"} -{"rects": [{"solidity": 0.974962568624189, "top": 500, "right": 1915, "bottom": 2380, "left": 595}], "shape": {"h": 6005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465646.jpg"} -{"rects": [{"solidity": 0.9749785325030712, "top": 520, "right": 4930, "bottom": 3545, "left": 1160}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713491f.jpg"} -{"rects": [{"solidity": 0.9749814981498149, "top": 940, "right": 2550, "bottom": 3910, "left": 320}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508825.jpg"} -{"rects": [{"solidity": 0.9750176954885817, "top": 745, "right": 2430, "bottom": 2320, "left": 240}], "shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507312.jpg"} -{"rects": [{"solidity": 0.9750647943986693, "top": 3490, "right": 2205, "bottom": 5655, "left": 415}, {"solidity": 0.9688422971741112, "top": 3575, "right": 4220, "bottom": 5455, "left": 2495}], "shape": {"h": 6020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465693.jpg"} -{"rects": [{"solidity": 0.9750662910860173, "top": 370, "right": 3170, "bottom": 3430, "left": 650}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715662f.jpg"} -{"rects": [{"solidity": 0.9750984821508056, "top": 225, "right": 3325, "bottom": 2015, "left": 690}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726840f.jpg"} -{"rects": [{"solidity": 0.9751056512403132, "top": 450, "right": 2825, "bottom": 3680, "left": 830}, {"solidity": 0.9553557465140574, "top": 455, "right": 5140, "bottom": 3490, "left": 3110}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733583f.jpg"} -{"rects": [{"solidity": 0.9751067482256902, "top": 600, "right": 4940, "bottom": 3585, "left": 1150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717503f.jpg"} -{"rects": [{"solidity": 0.9751143840959283, "top": 1080, "right": 3525, "bottom": 4980, "left": 380}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710141f.jpg"} -{"rects": [{"solidity": 0.9751332245844927, "top": 1195, "right": 3535, "bottom": 4975, "left": 400}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722164f.jpg"} -{"rects": [{"solidity": 0.975192783470754, "top": 915, "right": 4770, "bottom": 3350, "left": 1410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721887f.jpg"} -{"rects": [{"solidity": 0.9751951127892078, "top": 520, "right": 4935, "bottom": 3490, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712886f.jpg"} -{"rects": [{"solidity": 0.9752108591568505, "top": 585, "right": 4650, "bottom": 3225, "left": 1255}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734458f.jpg"} -{"rects": [{"solidity": 0.9752247882603612, "top": 225, "right": 3205, "bottom": 3335, "left": 770}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706263f.jpg"} -{"rects": [{"solidity": 0.9752897486506459, "top": 500, "right": 3775, "bottom": 2865, "left": 910}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715824f.jpg"} -{"rects": [{"solidity": 0.9753008393164122, "top": 850, "right": 3525, "bottom": 2275, "left": 1335}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508687.jpg"} -{"rects": [{"solidity": 0.9753062171305499, "top": 420, "right": 3170, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726121f.jpg"} -{"rects": [{"solidity": 0.9753572008554654, "top": 950, "right": 2755, "bottom": 2995, "left": 500}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700450f.jpg"} -{"rects": [{"solidity": 0.9753707179422716, "top": 585, "right": 4885, "bottom": 3635, "left": 1075}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714725f.jpg"} -{"rects": [{"solidity": 0.9753867412423078, "top": 1080, "right": 3355, "bottom": 3995, "left": 410}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722761f.jpg"} -{"rects": [{"solidity": 0.9754014225574381, "top": 2000, "right": 5155, "bottom": 3490, "left": 3265}, {"solidity": 0.9934582149277967, "top": 605, "right": 2890, "bottom": 1880, "left": 1180}, {"solidity": 0.9941337780465892, "top": 2160, "right": 2890, "bottom": 3415, "left": 1180}, {"solidity": 0.9851188430501904, "top": 580, "right": 5030, "bottom": 1720, "left": 3410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732776f.jpg"} -{"rects": [{"solidity": 0.9754022928912595, "top": 980, "right": 4825, "bottom": 3255, "left": 1380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723851f.jpg"} -{"rects": [{"solidity": 0.9754239646157126, "top": 1260, "right": 4680, "bottom": 3505, "left": 1430}], "shape": {"h": 3890, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708441f.jpg"} -{"rects": [{"solidity": 0.9754304884312839, "top": 1105, "right": 3325, "bottom": 5695, "left": 1155}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/708890f.jpg"} -{"rects": [{"solidity": 0.9754334014281163, "top": 755, "right": 3185, "bottom": 2235, "left": 840}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707630f.jpg"} -{"rects": [{"solidity": 0.9754488917783728, "top": 760, "right": 3445, "bottom": 2210, "left": 1360}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508691.jpg"} -{"rects": [{"solidity": 0.9754732439572984, "top": 685, "right": 3155, "bottom": 2330, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717269f.jpg"} -{"rects": [{"solidity": 0.9754832659117314, "top": 935, "right": 2485, "bottom": 3750, "left": 550}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507651.jpg"} -{"rects": [{"solidity": 0.9755136686234995, "top": 585, "right": 4985, "bottom": 3600, "left": 1180}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717056f.jpg"} -{"rects": [{"solidity": 0.9755375108523568, "top": 325, "right": 2065, "bottom": 1510, "left": 595}, {"solidity": 0.9902926063813421, "top": 1605, "right": 3925, "bottom": 2785, "left": 2520}, {"solidity": 0.9807028504490434, "top": 1615, "right": 2025, "bottom": 2795, "left": 650}, {"solidity": 0.9848393733185631, "top": 350, "right": 3930, "bottom": 1500, "left": 2530}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715980f.jpg"} -{"rects": [{"solidity": 0.9755995197649738, "top": 1280, "right": 3300, "bottom": 4120, "left": 575}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708658f.jpg"} -{"rects": [{"solidity": 0.9756117704953009, "top": 425, "right": 3095, "bottom": 2000, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728626f.jpg"} -{"rects": [{"solidity": 0.975618255608868, "top": 675, "right": 3895, "bottom": 2655, "left": 900}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507667.jpg"} -{"rects": [{"solidity": 0.975619233795027, "top": 1020, "right": 2525, "bottom": 3755, "left": 400}], "shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508973.jpg"} -{"rects": [{"solidity": 0.9756496166741221, "top": 290, "right": 2955, "bottom": 1780, "left": 1030}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721918f.jpg"} -{"rects": [{"solidity": 0.9756890696679359, "top": 975, "right": 3420, "bottom": 4810, "left": 400}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709975f.jpg"} -{"rects": [{"solidity": 0.9757205982324949, "top": 775, "right": 1990, "bottom": 3160, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713718f.jpg"} -{"rects": [{"solidity": 0.9757539492580182, "top": 810, "right": 2035, "bottom": 3190, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714331f.jpg"} -{"rects": [{"solidity": 0.9757569308750411, "top": 445, "right": 3690, "bottom": 2745, "left": 780}], "shape": {"h": 3000, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/1509103.jpg"} -{"rects": [{"solidity": 0.9757863109444255, "top": 635, "right": 3690, "bottom": 2655, "left": 760}], "shape": {"h": 6850, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711312f.jpg"} -{"rects": [{"solidity": 0.9757978606330061, "top": 315, "right": 2055, "bottom": 1300, "left": 580}], "shape": {"h": 3945, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727080f.jpg"} -{"rects": [{"solidity": 0.9758598527241172, "top": 1065, "right": 3450, "bottom": 5035, "left": 325}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730665f.jpg"} -{"rects": [{"solidity": 0.9758604840850095, "top": 925, "right": 4715, "bottom": 3315, "left": 1445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718275f.jpg"} -{"rects": [{"solidity": 0.9758801274763778, "top": 2555, "right": 3530, "bottom": 3860, "left": 825}, {"solidity": 0.9606520804018635, "top": 675, "right": 1560, "bottom": 2250, "left": 385}], "shape": {"h": 6005, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/464738.jpg"} -{"rects": [{"solidity": 0.9758907985464285, "top": 515, "right": 5025, "bottom": 3595, "left": 1130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720052f.jpg"} -{"rects": [{"solidity": 0.9758982320158147, "top": 580, "right": 5015, "bottom": 3595, "left": 1195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722484f.jpg"} -{"rects": [{"solidity": 0.9759214161994966, "top": 530, "right": 5100, "bottom": 3575, "left": 1255}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712936f.jpg"} -{"rects": [{"solidity": 0.975921775652838, "top": 1035, "right": 2250, "bottom": 3280, "left": 550}, {"solidity": 0.9979833449970806, "top": 1325, "right": 4170, "bottom": 3100, "left": 2455}, {"solidity": 0.997132094667187, "top": 3760, "right": 2235, "bottom": 5440, "left": 520}], "shape": {"h": 6005, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/465631.jpg"} -{"rects": [{"solidity": 0.9759257269225766, "top": 1040, "right": 3360, "bottom": 3175, "left": 1275}], "shape": {"h": 6010, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465570.jpg"} -{"rects": [{"solidity": 0.9760141851001383, "top": 530, "right": 4935, "bottom": 3605, "left": 1170}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701513f.jpg"} -{"rects": [{"solidity": 0.9760166271328348, "top": 775, "right": 4810, "bottom": 3750, "left": 910}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/725192f.jpg"} -{"rects": [{"solidity": 0.9760837154795813, "top": 525, "right": 4970, "bottom": 3480, "left": 1180}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702697f.jpg"} -{"rects": [{"solidity": 0.976118378197567, "top": 1060, "right": 3120, "bottom": 4935, "left": 890}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713877f.jpg"} -{"rects": [{"solidity": 0.9761214772041713, "top": 2200, "right": 2835, "bottom": 3635, "left": 1180}, {"solidity": 0.9918990792884598, "top": 660, "right": 4810, "bottom": 2060, "left": 3175}, {"solidity": 0.9931084293839718, "top": 650, "right": 2670, "bottom": 2130, "left": 1225}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704495f.jpg"} -{"rects": [{"solidity": 0.9761397272538971, "top": 4135, "right": 3195, "bottom": 5720, "left": 810}, {"solidity": 0.9551279276159141, "top": 2265, "right": 3120, "bottom": 3860, "left": 805}, {"solidity": 0.9705669874857262, "top": 1030, "right": 3180, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733678f.jpg"} -{"rects": [{"solidity": 0.9761569705940896, "top": 500, "right": 5345, "bottom": 3915, "left": 1085}], "shape": {"h": 4455, "w": 6435}, "file": "/usr/local/google/home/danvk/milstein/711404f.jpg"} -{"rects": [{"solidity": 0.9761957642820851, "top": 730, "right": 3795, "bottom": 3245, "left": 500}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717474f.jpg"} -{"rects": [{"solidity": 0.9761970897266388, "top": 1195, "right": 4150, "bottom": 2750, "left": 1945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731176f.jpg"} -{"rects": [{"solidity": 0.9762010838308317, "top": 455, "right": 3740, "bottom": 2665, "left": 885}], "shape": {"h": 2950, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/702021f.jpg"} -{"rects": [{"solidity": 0.9762114850691516, "top": 430, "right": 4955, "bottom": 3555, "left": 1090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722121f.jpg"} -{"rects": [{"solidity": 0.976224811202611, "top": 1000, "right": 2370, "bottom": 2170, "left": 630}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507616.jpg"} -{"rects": [{"solidity": 0.9762388760898044, "top": 1310, "right": 3235, "bottom": 2335, "left": 705}], "shape": {"h": 2555, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/727177f.jpg"} -{"rects": [{"solidity": 0.976254929712943, "top": 660, "right": 3125, "bottom": 2310, "left": 875}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708936f.jpg"} -{"rects": [{"solidity": 0.9762673510500317, "top": 955, "right": 3190, "bottom": 2160, "left": 820}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707641f.jpg"} -{"rects": [{"solidity": 0.9762674150213381, "top": 435, "right": 3230, "bottom": 2025, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726283f.jpg"} -{"rects": [{"solidity": 0.976278507171785, "top": 460, "right": 2920, "bottom": 1930, "left": 1125}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709409f.jpg"} -{"rects": [{"solidity": 0.9763039689620117, "top": 3275, "right": 2315, "bottom": 5535, "left": 130}, {"solidity": 0.9759921709697403, "top": 3500, "right": 4480, "bottom": 5470, "left": 2330}, {"solidity": 0.9480952182354877, "top": 1145, "right": 3120, "bottom": 2980, "left": 1460}, {"solidity": 0.9963896289179077, "top": 1200, "right": 4180, "bottom": 2985, "left": 3205}, {"solidity": 0.9998225429593919, "top": 1195, "right": 1325, "bottom": 2980, "left": 370}], "shape": {"h": 6005, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464761.jpg"} -{"rects": [{"solidity": 0.9763070061215632, "top": 1145, "right": 1875, "bottom": 2925, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703654f.jpg"} -{"rects": [{"solidity": 0.9763782643102084, "top": 640, "right": 4770, "bottom": 3680, "left": 995}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709871f.jpg"} -{"rects": [{"solidity": 0.9764074063041249, "top": 320, "right": 2890, "bottom": 1870, "left": 975}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715623f.jpg"} -{"rects": [{"solidity": 0.9764395363823345, "top": 2840, "right": 2350, "bottom": 4255, "left": 300}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508425.jpg"} -{"rects": [{"solidity": 0.9764573506331795, "top": 1175, "right": 3575, "bottom": 4990, "left": 455}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717652f.jpg"} -{"rects": [{"solidity": 0.9765003012251662, "top": 1075, "right": 3345, "bottom": 4520, "left": 605}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708915f.jpg"} -{"rects": [{"solidity": 0.9765320523201888, "top": 535, "right": 5005, "bottom": 3640, "left": 1115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718907f.jpg"} -{"rects": [{"solidity": 0.976583858059548, "top": 580, "right": 4960, "bottom": 3660, "left": 1125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720058f.jpg"} -{"rects": [{"solidity": 0.97660685999065, "top": 890, "right": 1910, "bottom": 2870, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702443f.jpg"} -{"rects": [{"solidity": 0.9766934057069558, "top": 1060, "right": 3520, "bottom": 4955, "left": 355}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709731f.jpg"} -{"rects": [{"solidity": 0.9767349848390277, "top": 730, "right": 3130, "bottom": 2400, "left": 855}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508981.jpg"} -{"rects": [{"solidity": 0.9768080153896523, "top": 1390, "right": 3000, "bottom": 4555, "left": 495}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709294f.jpg"} -{"rects": [{"solidity": 0.9768085719311573, "top": 1455, "right": 3650, "bottom": 4845, "left": 730}], "shape": {"h": 6925, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711300f.jpg"} -{"rects": [{"solidity": 0.9768461197474817, "top": 700, "right": 4870, "bottom": 3445, "left": 1260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718279f.jpg"} -{"rects": [{"solidity": 0.9768758766915148, "top": 2600, "right": 3610, "bottom": 4610, "left": 700}, {"solidity": 0.9529426798949789, "top": 345, "right": 3620, "bottom": 2350, "left": 725}], "shape": {"h": 6855, "w": 4420}, "file": "/usr/local/google/home/danvk/milstein/1552841.jpg"} -{"rects": [{"solidity": 0.9769486516438862, "top": 1285, "right": 4410, "bottom": 3120, "left": 1730}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727207f.jpg"} -{"rects": [{"solidity": 0.9769669157237288, "top": 755, "right": 3725, "bottom": 3200, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709757f.jpg"} -{"rects": [{"solidity": 0.9769788980022573, "top": 2230, "right": 3155, "bottom": 3670, "left": 950}, {"solidity": 0.9942178865956514, "top": 385, "right": 3030, "bottom": 1795, "left": 1205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725602f.jpg"} -{"rects": [{"solidity": 0.9769920683658356, "top": 2175, "right": 3170, "bottom": 4025, "left": 485}, {"solidity": 0.9978042809377292, "top": 480, "right": 2880, "bottom": 1905, "left": 1025}, {"solidity": 0.9949073533961967, "top": 4230, "right": 2845, "bottom": 5650, "left": 1060}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704460f.jpg"} -{"rects": [{"solidity": 0.9770168201203715, "top": 690, "right": 3185, "bottom": 2530, "left": 1780}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507767.jpg"} -{"rects": [{"solidity": 0.9770274592527091, "top": 1105, "right": 3470, "bottom": 4905, "left": 440}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722378f.jpg"} -{"rects": [{"solidity": 0.9770315305214375, "top": 615, "right": 4800, "bottom": 3220, "left": 1375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731921f.jpg"} -{"rects": [{"solidity": 0.9770474390963815, "top": 680, "right": 4990, "bottom": 3700, "left": 1185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717046f.jpg"} -{"rects": [{"solidity": 0.9770972499349354, "top": 445, "right": 2880, "bottom": 1835, "left": 1080}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711799f.jpg"} -{"rects": [{"solidity": 0.9772375875638414, "top": 700, "right": 4985, "bottom": 3670, "left": 1180}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708411f.jpg"} -{"rects": [{"solidity": 0.977286922945886, "top": 435, "right": 3095, "bottom": 3660, "left": 600}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714160f.jpg"} -{"rects": [{"solidity": 0.9773036280476198, "top": 595, "right": 4980, "bottom": 3400, "left": 1150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721870f.jpg"} -{"rects": [{"solidity": 0.9773179849077697, "top": 860, "right": 2240, "bottom": 3240, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715413f.jpg"} -{"rects": [{"solidity": 0.9773424010287852, "top": 1235, "right": 3305, "bottom": 4895, "left": 445}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722611f.jpg"} -{"rects": [{"solidity": 0.9773653031709929, "top": 615, "right": 4295, "bottom": 2495, "left": 2090}], "shape": {"h": 6020, "w": 4670}, "file": "/usr/local/google/home/danvk/milstein/465541.jpg"} -{"rects": [{"solidity": 0.9773824505825938, "top": 2170, "right": 3225, "bottom": 4030, "left": 575}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727259f.jpg"} -{"rects": [{"solidity": 0.9773826102803045, "top": 1150, "right": 3360, "bottom": 4920, "left": 365}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708985f.jpg"} -{"rects": [{"solidity": 0.9774178514577622, "top": 730, "right": 2220, "bottom": 2035, "left": 540}, {"solidity": 0.9941553870063626, "top": 2210, "right": 2095, "bottom": 3470, "left": 580}], "shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508561.jpg"} -{"rects": [{"solidity": 0.9774359999500244, "top": 960, "right": 3055, "bottom": 2180, "left": 1300}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509703.jpg"} -{"rects": [{"solidity": 0.9774556771060627, "top": 470, "right": 3965, "bottom": 3020, "left": 830}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710970f.jpg"} -{"rects": [{"solidity": 0.9774838871683268, "top": 825, "right": 2620, "bottom": 2395, "left": 245}, {"solidity": 0.9945976409258419, "top": 2415, "right": 2575, "bottom": 3850, "left": 555}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507589.jpg"} -{"rects": [{"solidity": 0.9775853519295599, "top": 810, "right": 2925, "bottom": 2275, "left": 795}], "shape": {"h": 2980, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1507292.jpg"} -{"rects": [{"solidity": 0.9775923121464523, "top": 615, "right": 4910, "bottom": 3625, "left": 1115}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713558f.jpg"} -{"rects": [{"solidity": 0.9776021606125567, "top": 1055, "right": 3135, "bottom": 4590, "left": 875}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721280f.jpg"} -{"rects": [{"solidity": 0.9776104679654037, "top": 1225, "right": 3500, "bottom": 5075, "left": 350}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722171f.jpg"} -{"rects": [{"solidity": 0.9776470536062724, "top": 375, "right": 2850, "bottom": 3460, "left": 1005}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714140f.jpg"} -{"rects": [{"solidity": 0.9776837891434111, "top": 1205, "right": 3225, "bottom": 4605, "left": 580}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720843f.jpg"} -{"rects": [{"solidity": 0.977696402536195, "top": 1085, "right": 3355, "bottom": 2915, "left": 1135}], "shape": {"h": 5975, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465556.jpg"} -{"rects": [{"solidity": 0.9777150982540386, "top": 440, "right": 3285, "bottom": 2170, "left": 1095}], "shape": {"h": 6885, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/702186f.jpg"} -{"rects": [{"solidity": 0.9777258787740606, "top": 930, "right": 3480, "bottom": 3810, "left": 1225}], "shape": {"h": 5990, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464850.jpg"} -{"rects": [{"solidity": 0.9777563618367932, "top": 450, "right": 2775, "bottom": 1855, "left": 1015}, {"solidity": 0.9473254969640208, "top": 1995, "right": 2765, "bottom": 3375, "left": 935}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734101f.jpg"} -{"rects": [{"solidity": 0.9777801659737986, "top": 3455, "right": 3890, "bottom": 6120, "left": 240}, {"solidity": 0.9932300064005445, "top": 785, "right": 3875, "bottom": 2995, "left": 320}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708860f.jpg"} -{"rects": [{"solidity": 0.9778279132234237, "top": 435, "right": 2985, "bottom": 3640, "left": 645}, {"solidity": 0.9967140376824641, "top": 730, "right": 5260, "bottom": 3150, "left": 3630}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721901f.jpg"} -{"rects": [{"solidity": 0.9778308215676349, "top": 1835, "right": 3935, "bottom": 6190, "left": 485}], "shape": {"h": 6920, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708818f.jpg"} -{"rects": [{"solidity": 0.977846531832995, "top": 1165, "right": 3470, "bottom": 4945, "left": 340}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722156f.jpg"} -{"rects": [{"solidity": 0.9778502655032029, "top": 1550, "right": 2985, "bottom": 4620, "left": 570}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/709182f.jpg"} -{"rects": [{"solidity": 0.9778590320543187, "top": 655, "right": 2775, "bottom": 2050, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725666f.jpg"} -{"rects": [{"solidity": 0.9778946921804065, "top": 390, "right": 2870, "bottom": 1855, "left": 1010}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709802f.jpg"} -{"rects": [{"solidity": 0.9779152583293095, "top": 865, "right": 4715, "bottom": 2870, "left": 1515}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706344f.jpg"} -{"rects": [{"solidity": 0.9779224141695834, "top": 1120, "right": 3440, "bottom": 4920, "left": 935}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713961f.jpg"} -{"rects": [{"solidity": 0.9779262547300469, "top": 600, "right": 4940, "bottom": 3480, "left": 1180}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712924f.jpg"} -{"rects": [{"solidity": 0.9779390609634186, "top": 660, "right": 3265, "bottom": 3865, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717290f.jpg"} -{"rects": [{"solidity": 0.9779395903833095, "top": 605, "right": 4895, "bottom": 3605, "left": 1095}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733526f.jpg"} -{"rects": [{"solidity": 0.977993429592235, "top": 425, "right": 5365, "bottom": 3335, "left": 3015}], "shape": {"h": 4635, "w": 6035}, "file": "/usr/local/google/home/danvk/milstein/464835.jpg"} -{"rects": [{"solidity": 0.9780300012291944, "top": 1305, "right": 3145, "bottom": 4905, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722979f.jpg"} -{"rects": [{"solidity": 0.9780393878187872, "top": 740, "right": 1990, "bottom": 3120, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727335f.jpg"} -{"rects": [{"solidity": 0.978082078266454, "top": 1000, "right": 4965, "bottom": 3135, "left": 1155}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701252f.jpg"} -{"rects": [{"solidity": 0.978082298742875, "top": 775, "right": 1370, "bottom": 2265, "left": 280}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716323f.jpg"} -{"rects": [{"solidity": 0.9781135472885362, "top": 450, "right": 3005, "bottom": 1885, "left": 1160}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718596f.jpg"} -{"rects": [{"solidity": 0.9781202314830892, "top": 1050, "right": 2615, "bottom": 4010, "left": 475}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517057.jpg"} -{"rects": [{"solidity": 0.9781359333268735, "top": 1495, "right": 3750, "bottom": 5615, "left": 415}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711644f.jpg"} -{"rects": [{"solidity": 0.978140932572509, "top": 1065, "right": 3625, "bottom": 5145, "left": 435}], "shape": {"h": 6850, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708378f.jpg"} -{"rects": [{"solidity": 0.978146960377127, "top": 935, "right": 2535, "bottom": 3930, "left": 350}], "shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508589.jpg"} -{"rects": [{"solidity": 0.9781514523356296, "top": 765, "right": 2455, "bottom": 2315, "left": 210}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508085.jpg"} -{"rects": [{"solidity": 0.9781549733393727, "top": 3360, "right": 3355, "bottom": 5535, "left": 1125}, {"solidity": 0.9684186010813843, "top": 830, "right": 3430, "bottom": 2950, "left": 1130}], "shape": {"h": 5990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465571.jpg"} -{"rects": [{"solidity": 0.9781682538828853, "top": 900, "right": 3135, "bottom": 2435, "left": 955}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507955.jpg"} -{"rects": [{"solidity": 0.9781768063930647, "top": 405, "right": 3025, "bottom": 2995, "left": 665}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724459f.jpg"} -{"rects": [{"solidity": 0.9782095757082063, "top": 990, "right": 3220, "bottom": 2105, "left": 1550}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509511.jpg"} -{"rects": [{"solidity": 0.9782393636351401, "top": 435, "right": 3155, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700354f.jpg"} -{"rects": [{"solidity": 0.9782487852672412, "top": 825, "right": 1945, "bottom": 3120, "left": 545}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720010f.jpg"} -{"rects": [{"solidity": 0.9782712604330498, "top": 810, "right": 3325, "bottom": 4960, "left": 580}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732952f.jpg"} -{"rects": [{"solidity": 0.9782728908403625, "top": 845, "right": 3565, "bottom": 2315, "left": 1440}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508647.jpg"} -{"rects": [{"solidity": 0.9782736429123312, "top": 800, "right": 3305, "bottom": 2070, "left": 1135}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508651.jpg"} -{"rects": [{"solidity": 0.978283192753477, "top": 715, "right": 2310, "bottom": 3365, "left": 465}, {"solidity": 0.996005326231691, "top": 2185, "right": 4140, "bottom": 3630, "left": 2340}, {"solidity": 0.9949701183071106, "top": 725, "right": 4160, "bottom": 2165, "left": 2355}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726037f.jpg"} -{"rects": [{"solidity": 0.978304077550294, "top": 1465, "right": 3555, "bottom": 5330, "left": 505}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/716890f.jpg"} -{"rects": [{"solidity": 0.9783074475339041, "top": 820, "right": 2240, "bottom": 3035, "left": 350}], "shape": {"h": 6005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465638.jpg"} -{"rects": [{"solidity": 0.9783233797832338, "top": 1230, "right": 3150, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734163f.jpg"} -{"rects": [{"solidity": 0.9783659393960201, "top": 575, "right": 5380, "bottom": 3425, "left": 720}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700363f.jpg"} -{"rects": [{"solidity": 0.9783715302102572, "top": 1085, "right": 3415, "bottom": 4860, "left": 470}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712918f.jpg"} -{"rects": [{"solidity": 0.9783857325508967, "top": 1020, "right": 3430, "bottom": 4855, "left": 425}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712889f.jpg"} -{"rects": [{"solidity": 0.9784286592865928, "top": 790, "right": 2320, "bottom": 3455, "left": 450}, {"solidity": 0.9943586330207579, "top": 875, "right": 4015, "bottom": 3285, "left": 2410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704414f.jpg"} -{"rects": [{"solidity": 0.9784762289855523, "top": 725, "right": 4995, "bottom": 3275, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722453f.jpg"} -{"rects": [{"solidity": 0.9785474020958804, "top": 975, "right": 2185, "bottom": 3165, "left": 785}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709585f.jpg"} -{"rects": [{"solidity": 0.9785906491238392, "top": 635, "right": 2040, "bottom": 3200, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705134f.jpg"} -{"rects": [{"solidity": 0.9785975592640991, "top": 1415, "right": 3170, "bottom": 4680, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709094f.jpg"} -{"rects": [{"solidity": 0.9786050717019219, "top": 340, "right": 2045, "bottom": 1220, "left": 650}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727154f.jpg"} -{"rects": [{"solidity": 0.9786147438905867, "top": 565, "right": 2145, "bottom": 2750, "left": 560}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509051.jpg"} -{"rects": [{"solidity": 0.9786434352177619, "top": 1135, "right": 3405, "bottom": 4945, "left": 400}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717063f.jpg"} -{"rects": [{"solidity": 0.9786606483339254, "top": 2730, "right": 4170, "bottom": 5460, "left": 2345}, {"solidity": 0.9943620353407009, "top": 2940, "right": 2235, "bottom": 5395, "left": 495}, {"solidity": 0.9388701227775643, "top": 910, "right": 3350, "bottom": 2475, "left": 1350}], "shape": {"h": 5985, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465592.jpg"} -{"rects": [{"solidity": 0.9786801823530611, "top": 705, "right": 2705, "bottom": 1895, "left": 1125}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713173f.jpg"} -{"rects": [{"solidity": 0.978702971784704, "top": 570, "right": 3985, "bottom": 2690, "left": 1175}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509699.jpg"} -{"rects": [{"solidity": 0.978715620738967, "top": 2260, "right": 2960, "bottom": 3820, "left": 985}, {"solidity": 0.9864113650401483, "top": 435, "right": 2960, "bottom": 1980, "left": 1020}, {"solidity": 0.9947977745055682, "top": 4110, "right": 2910, "bottom": 5615, "left": 1000}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731468f.jpg"} -{"rects": [{"solidity": 0.9787164199926962, "top": 860, "right": 2380, "bottom": 2335, "left": 245}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509079.jpg"} -{"rects": [{"solidity": 0.9787331538593721, "top": 575, "right": 3055, "bottom": 3700, "left": 595}, {"solidity": 0.934008108181645, "top": 610, "right": 5485, "bottom": 3670, "left": 3105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709174f.jpg"} -{"rects": [{"solidity": 0.9787358023977905, "top": 580, "right": 2765, "bottom": 3440, "left": 900}, {"solidity": 0.9979525702640659, "top": 495, "right": 5235, "bottom": 1945, "left": 3415}, {"solidity": 0.9963440914737722, "top": 1980, "right": 5215, "bottom": 3390, "left": 3440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704350f.jpg"} -{"rects": [{"solidity": 0.9787405697676904, "top": 740, "right": 3550, "bottom": 3035, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709173f.jpg"} -{"rects": [{"solidity": 0.9787589334272955, "top": 2375, "right": 3205, "bottom": 4115, "left": 355}, {"solidity": 0.948530657850518, "top": 4220, "right": 4155, "bottom": 5865, "left": 1320}, {"solidity": 0.9889708603715858, "top": 280, "right": 4175, "bottom": 2290, "left": 2385}], "shape": {"h": 5995, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465593.jpg"} -{"rects": [{"solidity": 0.9787668380893669, "top": 2275, "right": 3855, "bottom": 5380, "left": 815}, {"solidity": 0.9882616525232327, "top": 945, "right": 3390, "bottom": 1925, "left": 1200}], "shape": {"h": 6015, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464767.jpg"} -{"rects": [{"solidity": 0.9788105756617023, "top": 830, "right": 4320, "bottom": 2780, "left": 1595}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705435f.jpg"} -{"rects": [{"solidity": 0.978814138630938, "top": 1390, "right": 2450, "bottom": 3890, "left": 500}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516999.jpg"} -{"rects": [{"solidity": 0.9788910728822033, "top": 455, "right": 4325, "bottom": 2825, "left": 1330}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508417.jpg"} -{"rects": [{"solidity": 0.9788974983591103, "top": 1110, "right": 3445, "bottom": 4950, "left": 435}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713392f.jpg"} -{"rects": [{"solidity": 0.9789023717595147, "top": 635, "right": 3460, "bottom": 2205, "left": 975}], "shape": {"h": 6925, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708328f.jpg"} -{"rects": [{"solidity": 0.9789031341559009, "top": 520, "right": 5025, "bottom": 3615, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724058f.jpg"} -{"rects": [{"solidity": 0.9789040976664625, "top": 1940, "right": 2950, "bottom": 3760, "left": 770}, {"solidity": 0.9961424120008067, "top": 440, "right": 2795, "bottom": 1650, "left": 1185}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709377f.jpg"} -{"rects": [{"solidity": 0.9789194829753134, "top": 1020, "right": 3340, "bottom": 3210, "left": 1305}], "shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465564.jpg"} -{"rects": [{"solidity": 0.9789451131273479, "top": 530, "right": 3220, "bottom": 3445, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714398f.jpg"} -{"rects": [{"solidity": 0.9789687436085882, "top": 1145, "right": 3375, "bottom": 5050, "left": 375}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722170f.jpg"} -{"rects": [{"solidity": 0.978979381588789, "top": 535, "right": 3585, "bottom": 2645, "left": 995}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509745.jpg"} -{"rects": [{"solidity": 0.9790439415032676, "top": 1295, "right": 3440, "bottom": 4750, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714720f.jpg"} -{"rects": [{"solidity": 0.9790493533427636, "top": 440, "right": 3655, "bottom": 2825, "left": 650}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509697.jpg"} -{"rects": [{"solidity": 0.9790725472767953, "top": 485, "right": 2105, "bottom": 1735, "left": 445}, {"solidity": 0.9927154390137055, "top": 1960, "right": 2105, "bottom": 3190, "left": 460}, {"solidity": 0.9811886772572038, "top": 480, "right": 5785, "bottom": 1735, "left": 4140}, {"solidity": 0.9809282300824305, "top": 485, "right": 3955, "bottom": 1720, "left": 2305}, {"solidity": 0.9814690937158295, "top": 1965, "right": 3930, "bottom": 3190, "left": 2295}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707243f.jpg"} -{"rects": [{"solidity": 0.9790778621927267, "top": 2045, "right": 2905, "bottom": 3475, "left": 1030}, {"solidity": 0.991297687999617, "top": 410, "right": 2910, "bottom": 1830, "left": 1040}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724318f.jpg"} -{"rects": [{"solidity": 0.9790795684423466, "top": 885, "right": 3195, "bottom": 3155, "left": 1515}], "shape": {"h": 6020, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/464749.jpg"} -{"rects": [{"solidity": 0.9790919132100668, "top": 2250, "right": 3200, "bottom": 3985, "left": 785}, {"solidity": 0.9752767516093495, "top": 4110, "right": 3195, "bottom": 5835, "left": 790}, {"solidity": 0.9877518177600265, "top": 410, "right": 3190, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/724950f.jpg"} -{"rects": [{"solidity": 0.97910865878695, "top": 790, "right": 5615, "bottom": 4145, "left": 1205}], "shape": {"h": 4430, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/708817f.jpg"} -{"rects": [{"solidity": 0.9791254079599228, "top": 685, "right": 3765, "bottom": 2310, "left": 885}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716373f.jpg"} -{"rects": [{"solidity": 0.9791624455321071, "top": 2890, "right": 4480, "bottom": 5390, "left": 2390}, {"solidity": 0.984203324802371, "top": 765, "right": 2405, "bottom": 2315, "left": 425}], "shape": {"h": 6005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465560.jpg"} -{"rects": [{"solidity": 0.9791684022247813, "top": 655, "right": 5145, "bottom": 2060, "left": 3310}, {"solidity": 0.9956577253979996, "top": 2265, "right": 2895, "bottom": 3655, "left": 1100}, {"solidity": 0.9958472982086086, "top": 645, "right": 2880, "bottom": 2035, "left": 1090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725901f.jpg"} -{"rects": [{"solidity": 0.97919406193054, "top": 855, "right": 2040, "bottom": 3240, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713812f.jpg"} -{"rects": [{"solidity": 0.979199499767111, "top": 3525, "right": 4500, "bottom": 5515, "left": 2490}, {"solidity": 0.9955539286654382, "top": 1310, "right": 3410, "bottom": 2850, "left": 1415}], "shape": {"h": 6005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464760.jpg"} -{"rects": [{"solidity": 0.9792120834630956, "top": 350, "right": 3240, "bottom": 2140, "left": 610}, {"solidity": 0.9797729504003098, "top": 4080, "right": 3240, "bottom": 5790, "left": 565}, {"solidity": 0.9451565772313091, "top": 2185, "right": 3240, "bottom": 4020, "left": 595}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727505f.jpg"} -{"rects": [{"solidity": 0.9792670651264145, "top": 770, "right": 2465, "bottom": 2335, "left": 255}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509095.jpg"} -{"rects": [{"solidity": 0.9792752827570216, "top": 435, "right": 3165, "bottom": 1995, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700456f.jpg"} -{"rects": [{"solidity": 0.9792790741532927, "top": 1120, "right": 3455, "bottom": 4850, "left": 515}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724460f.jpg"} -{"rects": [{"solidity": 0.9792853049902892, "top": 370, "right": 3090, "bottom": 2275, "left": 405}, {"solidity": 0.9970536154187623, "top": 2365, "right": 2680, "bottom": 3775, "left": 845}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/710773f.jpg"} -{"rects": [{"solidity": 0.9793047083113384, "top": 395, "right": 2935, "bottom": 3910, "left": 1060}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712484f.jpg"} -{"rects": [{"solidity": 0.9793124599213762, "top": 960, "right": 3145, "bottom": 3175, "left": 1255}], "shape": {"h": 5805, "w": 4510}, "file": "/usr/local/google/home/danvk/milstein/417677.jpg"} -{"rects": [{"solidity": 0.9793442856007928, "top": 620, "right": 3010, "bottom": 2575, "left": 1415}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517131.jpg"} -{"rects": [{"solidity": 0.9793979629665762, "top": 1085, "right": 2425, "bottom": 3615, "left": 335}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509083.jpg"} -{"rects": [{"solidity": 0.9794065953111564, "top": 705, "right": 3385, "bottom": 2560, "left": 320}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717412f.jpg"} -{"rects": [{"solidity": 0.9794552625228241, "top": 1055, "right": 3535, "bottom": 4810, "left": 430}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712670f.jpg"} -{"rects": [{"solidity": 0.9794561554283066, "top": 440, "right": 2880, "bottom": 1855, "left": 1025}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723052f.jpg"} -{"rects": [{"solidity": 0.9795251254104121, "top": 860, "right": 3490, "bottom": 2205, "left": 1515}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509605.jpg"} -{"rects": [{"solidity": 0.9795661890115704, "top": 455, "right": 3080, "bottom": 1800, "left": 910}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720909f.jpg"} -{"rects": [{"solidity": 0.9796078049657073, "top": 2220, "right": 2575, "bottom": 4225, "left": 875}, {"solidity": 0.9917104046220774, "top": 130, "right": 4120, "bottom": 2100, "left": 2415}, {"solidity": 0.9870552013826098, "top": 130, "right": 2055, "bottom": 2085, "left": 350}], "shape": {"h": 4385, "w": 5200}, "file": "/usr/local/google/home/danvk/milstein/1596985.jpg"} -{"rects": [{"solidity": 0.9796399993388417, "top": 415, "right": 3045, "bottom": 3540, "left": 835}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714747f.jpg"} -{"rects": [{"solidity": 0.9796445585269851, "top": 575, "right": 4985, "bottom": 3650, "left": 1230}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732839f.jpg"} -{"rects": [{"solidity": 0.9796549445198094, "top": 430, "right": 3170, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725708f.jpg"} -{"rects": [{"solidity": 0.9796711368051936, "top": 870, "right": 3260, "bottom": 2570, "left": 2110}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509159.jpg"} -{"rects": [{"solidity": 0.9796909256072742, "top": 1090, "right": 3505, "bottom": 4965, "left": 390}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709775f.jpg"} -{"rects": [{"solidity": 0.9797319464189398, "top": 1105, "right": 2700, "bottom": 4115, "left": 425}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507729.jpg"} -{"rects": [{"solidity": 0.9797411392447195, "top": 645, "right": 4980, "bottom": 3650, "left": 1175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717037f.jpg"} -{"rects": [{"solidity": 0.9797569320769787, "top": 640, "right": 2370, "bottom": 2240, "left": 880}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715984f.jpg"} -{"rects": [{"solidity": 0.9797716414284557, "top": 740, "right": 2310, "bottom": 3335, "left": 500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715414f.jpg"} -{"rects": [{"solidity": 0.9798200948736747, "top": 505, "right": 3010, "bottom": 3640, "left": 490}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714579f.jpg"} -{"rects": [{"solidity": 0.9798314959367128, "top": 440, "right": 3205, "bottom": 2220, "left": 630}, {"solidity": 0.9776009829865544, "top": 2265, "right": 3220, "bottom": 4025, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726346f.jpg"} -{"rects": [{"solidity": 0.9798695373477622, "top": 635, "right": 3785, "bottom": 3160, "left": 475}], "shape": {"h": 6925, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/711398f.jpg"} -{"rects": [{"solidity": 0.9798896917016695, "top": 820, "right": 4685, "bottom": 3190, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708784f.jpg"} -{"rects": [{"solidity": 0.9798904103307751, "top": 2610, "right": 2000, "bottom": 5310, "left": 130}, {"solidity": 0.9359947974999097, "top": 595, "right": 2005, "bottom": 1845, "left": 415}], "shape": {"h": 5805, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/417667.jpg"} -{"rects": [{"solidity": 0.9799026406679177, "top": 790, "right": 2795, "bottom": 2045, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727525f.jpg"} -{"rects": [{"solidity": 0.9799110963092479, "top": 910, "right": 3485, "bottom": 2375, "left": 1555}], "shape": {"h": 3005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1509715.jpg"} -{"rects": [{"solidity": 0.9799139009492972, "top": 465, "right": 2095, "bottom": 2715, "left": 540}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508191.jpg"} -{"rects": [{"solidity": 0.9800315115706548, "top": 1655, "right": 3685, "bottom": 4415, "left": 1040}], "shape": {"h": 5995, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464836.jpg"} -{"rects": [{"solidity": 0.9800355201906177, "top": 990, "right": 3705, "bottom": 5075, "left": 295}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724538f.jpg"} -{"rects": [{"solidity": 0.9800400563578407, "top": 375, "right": 5140, "bottom": 3855, "left": 195}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714521f.jpg"} -{"rects": [{"solidity": 0.9800515858512765, "top": 1140, "right": 3615, "bottom": 4970, "left": 420}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722383f.jpg"} -{"rects": [{"solidity": 0.9800524541899751, "top": 410, "right": 4985, "bottom": 3620, "left": 945}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733586f.jpg"} -{"rects": [{"solidity": 0.9800550589175964, "top": 2260, "right": 4050, "bottom": 4955, "left": 320}, {"solidity": 0.994923465343855, "top": 130, "right": 4130, "bottom": 1920, "left": 450}], "shape": {"h": 5675, "w": 4585}, "file": "/usr/local/google/home/danvk/milstein/1823511.jpg"} -{"rects": [{"solidity": 0.9800620645667746, "top": 560, "right": 3250, "bottom": 3950, "left": 2030}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714068f.jpg"} -{"rects": [{"solidity": 0.9800726732182674, "top": 660, "right": 3075, "bottom": 2085, "left": 855}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722376f.jpg"} -{"rects": [{"solidity": 0.9800792567730937, "top": 380, "right": 3065, "bottom": 1830, "left": 935}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701257f.jpg"} -{"rects": [{"solidity": 0.9800932733510951, "top": 545, "right": 3075, "bottom": 3555, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700453f.jpg"} -{"rects": [{"solidity": 0.9801108693697055, "top": 785, "right": 5810, "bottom": 3205, "left": 320}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702112f.jpg"} -{"rects": [{"solidity": 0.9801360188760889, "top": 855, "right": 3265, "bottom": 2390, "left": 1220}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508371.jpg"} -{"rects": [{"solidity": 0.98013773570187, "top": 400, "right": 3165, "bottom": 2940, "left": 635}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719004f.jpg"} -{"rects": [{"solidity": 0.9801387205223563, "top": 310, "right": 5190, "bottom": 3695, "left": 1110}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706324f.jpg"} -{"rects": [{"solidity": 0.9801483367194576, "top": 130, "right": 4810, "bottom": 3580, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709844f.jpg"} -{"rects": [{"solidity": 0.9801897083322512, "top": 215, "right": 5120, "bottom": 3655, "left": 1080}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717644f.jpg"} -{"rects": [{"solidity": 0.9801945716195913, "top": 515, "right": 2185, "bottom": 3650, "left": 555}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713701f.jpg"} -{"rects": [{"solidity": 0.9802010935966511, "top": 240, "right": 4185, "bottom": 2955, "left": 2295}, {"solidity": 0.9981750474104816, "top": 230, "right": 2030, "bottom": 2935, "left": 210}, {"solidity": 0.9985120650997172, "top": 3575, "right": 3455, "bottom": 5390, "left": 755}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710254f.jpg"} -{"rects": [{"solidity": 0.9802473184304265, "top": 380, "right": 5625, "bottom": 3885, "left": 1285}], "shape": {"h": 4425, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/702210f.jpg"} -{"rects": [{"solidity": 0.9802568884383801, "top": 695, "right": 4640, "bottom": 3125, "left": 1430}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722191f.jpg"} -{"rects": [{"solidity": 0.9802576194610628, "top": 725, "right": 5750, "bottom": 3450, "left": 3960}, {"solidity": 0.9967745595409826, "top": 815, "right": 3890, "bottom": 3215, "left": 2270}, {"solidity": 0.9950122115966912, "top": 825, "right": 2005, "bottom": 3210, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718305f.jpg"} -{"rects": [{"solidity": 0.98028548875148, "top": 440, "right": 3070, "bottom": 2190, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734203f.jpg"} -{"rects": [{"solidity": 0.9802924329743389, "top": 3025, "right": 3600, "bottom": 5555, "left": 145}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730827f.jpg"} -{"rects": [{"solidity": 0.9802946707563918, "top": 2060, "right": 3305, "bottom": 4005, "left": 570}, {"solidity": 0.9700673459426788, "top": 130, "right": 3335, "bottom": 1995, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726257f.jpg"} -{"rects": [{"solidity": 0.9803666176017527, "top": 1220, "right": 2160, "bottom": 5320, "left": 270}, {"solidity": 0.9735953163170752, "top": 1330, "right": 3650, "bottom": 5395, "left": 2170}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708355f.jpg"} -{"rects": [{"solidity": 0.9803780940125653, "top": 1070, "right": 3680, "bottom": 5090, "left": 300}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721759f.jpg"} -{"rects": [{"solidity": 0.9803920992471835, "top": 4055, "right": 3190, "bottom": 5740, "left": 625}, {"solidity": 0.9839544283227618, "top": 2245, "right": 3160, "bottom": 3935, "left": 605}, {"solidity": 0.9621887057172922, "top": 430, "right": 3150, "bottom": 2105, "left": 565}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725650f.jpg"} -{"rects": [{"solidity": 0.9804047409163582, "top": 1050, "right": 3670, "bottom": 5095, "left": 310}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723532f.jpg"} -{"rects": [{"solidity": 0.9804052553663952, "top": 1055, "right": 3715, "bottom": 5120, "left": 290}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701610f.jpg"} -{"rects": [{"solidity": 0.9804171606377291, "top": 730, "right": 3195, "bottom": 2335, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708093f.jpg"} -{"rects": [{"solidity": 0.9804207973129635, "top": 495, "right": 3140, "bottom": 2380, "left": 385}, {"solidity": 0.9610529010911096, "top": 2635, "right": 2730, "bottom": 3910, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702671f.jpg"} -{"rects": [{"solidity": 0.9804218860336357, "top": 1310, "right": 3545, "bottom": 4765, "left": 530}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708478f.jpg"} -{"rects": [{"solidity": 0.9804309361565232, "top": 980, "right": 3365, "bottom": 4530, "left": 375}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721182f.jpg"} -{"rects": [{"solidity": 0.980444124402839, "top": 850, "right": 1965, "bottom": 3240, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718859f.jpg"} -{"rects": [{"solidity": 0.980453164851679, "top": 2215, "right": 3185, "bottom": 3805, "left": 815}, {"solidity": 0.9471091140602443, "top": 485, "right": 3195, "bottom": 1955, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727690f.jpg"} -{"rects": [{"solidity": 0.9804599359949879, "top": 270, "right": 5765, "bottom": 3775, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717421f.jpg"} -{"rects": [{"solidity": 0.9804709054207905, "top": 1135, "right": 3335, "bottom": 4760, "left": 360}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705764f.jpg"} -{"rects": [{"solidity": 0.9804733127193893, "top": 130, "right": 3710, "bottom": 2460, "left": 130}], "shape": {"h": 2915, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1557913.jpg"} -{"rects": [{"solidity": 0.9804823779233326, "top": 2070, "right": 3355, "bottom": 4020, "left": 570}, {"solidity": 0.997737556561086, "top": 130, "right": 3380, "bottom": 2050, "left": 690}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725480f.jpg"} -{"rects": [{"solidity": 0.9804840158886207, "top": 630, "right": 4855, "bottom": 3365, "left": 1245}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722758f.jpg"} -{"rects": [{"solidity": 0.9804954657355769, "top": 470, "right": 5120, "bottom": 3845, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715184f.jpg"} -{"rects": [{"solidity": 0.9804988055530093, "top": 1010, "right": 3695, "bottom": 5050, "left": 305}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716937f.jpg"} -{"rects": [{"solidity": 0.9805260960720303, "top": 1035, "right": 3440, "bottom": 4670, "left": 180}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718951f.jpg"} -{"rects": [{"solidity": 0.9805288651034869, "top": 3280, "right": 2215, "bottom": 5685, "left": 390}, {"solidity": 0.946708619126733, "top": 3110, "right": 4205, "bottom": 5525, "left": 2420}], "shape": {"h": 6015, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464739.jpg"} -{"rects": [{"solidity": 0.9805555619494387, "top": 670, "right": 5105, "bottom": 3385, "left": 1070}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730892f.jpg"} -{"rects": [{"solidity": 0.9805579337248338, "top": 950, "right": 3715, "bottom": 5080, "left": 345}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706139f.jpg"} -{"rects": [{"solidity": 0.9805714138646405, "top": 300, "right": 5265, "bottom": 3765, "left": 1235}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717094f.jpg"} -{"rects": [{"solidity": 0.9805920062763305, "top": 570, "right": 5085, "bottom": 3295, "left": 1220}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710644f.jpg"} -{"rects": [{"solidity": 0.9805942722684439, "top": 285, "right": 5090, "bottom": 3650, "left": 1095}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717747f.jpg"} -{"rects": [{"solidity": 0.9806038342675756, "top": 955, "right": 3760, "bottom": 2500, "left": 1540}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507657.jpg"} -{"rects": [{"solidity": 0.9806101703556884, "top": 550, "right": 4885, "bottom": 3320, "left": 1320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722791f.jpg"} -{"rects": [{"solidity": 0.9806123540335833, "top": 1075, "right": 3380, "bottom": 2475, "left": 1380}], "shape": {"h": 3015, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509665.jpg"} -{"rects": [{"solidity": 0.9806182237323953, "top": 130, "right": 3850, "bottom": 2815, "left": 615}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509781.jpg"} -{"rects": [{"solidity": 0.9806416909116912, "top": 590, "right": 3910, "bottom": 2665, "left": 1050}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509145.jpg"} -{"rects": [{"solidity": 0.9806581670870202, "top": 630, "right": 4740, "bottom": 3525, "left": 1305}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708964f.jpg"} -{"rects": [{"solidity": 0.9806629109459394, "top": 410, "right": 1935, "bottom": 2610, "left": 370}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509367.jpg"} -{"rects": [{"solidity": 0.9806772190307582, "top": 280, "right": 5090, "bottom": 3750, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706346f.jpg"} -{"rects": [{"solidity": 0.9806830964732641, "top": 805, "right": 1890, "bottom": 3020, "left": 495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732574f.jpg"} -{"rects": [{"solidity": 0.9806887529287794, "top": 560, "right": 4920, "bottom": 3515, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709430f.jpg"} -{"rects": [{"solidity": 0.9807237178280397, "top": 790, "right": 2750, "bottom": 3800, "left": 225}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716389f.jpg"} -{"rects": [{"solidity": 0.9807247562956584, "top": 130, "right": 3820, "bottom": 2415, "left": 670}], "shape": {"h": 2545, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727109f.jpg"} -{"rects": [{"solidity": 0.9807380182906958, "top": 630, "right": 3600, "bottom": 3065, "left": 270}, {"solidity": 0.9961130476214359, "top": 3425, "right": 3380, "bottom": 5430, "left": 350}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719343f.jpg"} -{"rects": [{"solidity": 0.9807667401582482, "top": 130, "right": 3710, "bottom": 2430, "left": 130}], "shape": {"h": 2560, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558529.jpg"} -{"rects": [{"solidity": 0.9807685854135605, "top": 750, "right": 3155, "bottom": 2665, "left": 400}, {"solidity": 0.997062091851491, "top": 2760, "right": 2750, "bottom": 4140, "left": 940}, {"solidity": 0.9936166090529944, "top": 4240, "right": 2725, "bottom": 5660, "left": 935}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704239f.jpg"} -{"rects": [{"solidity": 0.9807714018632503, "top": 695, "right": 2585, "bottom": 3620, "left": 480}, {"solidity": 0.9982971337814273, "top": 3650, "right": 2875, "bottom": 4770, "left": 130}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507853.jpg"} -{"rects": [{"solidity": 0.9807842334605881, "top": 790, "right": 3975, "bottom": 3240, "left": 2215}, {"solidity": 0.9963248140171657, "top": 805, "right": 5705, "bottom": 3240, "left": 4050}, {"solidity": 0.9963862087492125, "top": 800, "right": 2000, "bottom": 3220, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731546f.jpg"} -{"rects": [{"solidity": 0.9807959658163562, "top": 335, "right": 5355, "bottom": 3875, "left": 575}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729012f.jpg"} -{"rects": [{"solidity": 0.980805714843406, "top": 510, "right": 4990, "bottom": 3570, "left": 1090}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/732276f.jpg"} -{"rects": [{"solidity": 0.9808094846892268, "top": 365, "right": 3250, "bottom": 2065, "left": 610}, {"solidity": 0.9549515111727898, "top": 2150, "right": 3250, "bottom": 3845, "left": 565}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722946f.jpg"} -{"rects": [{"solidity": 0.9808212924327848, "top": 1000, "right": 3665, "bottom": 5065, "left": 310}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720387f.jpg"} -{"rects": [{"solidity": 0.9808304704535116, "top": 1125, "right": 2935, "bottom": 1900, "left": 765}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728112f.jpg"} -{"rects": [{"solidity": 0.9808373479142068, "top": 2160, "right": 2710, "bottom": 3400, "left": 1085}, {"solidity": 0.9895116185949185, "top": 645, "right": 2710, "bottom": 1850, "left": 1080}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706856f.jpg"} -{"rects": [{"solidity": 0.9808591161243225, "top": 925, "right": 4050, "bottom": 5955, "left": 130}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711364f.jpg"} -{"rects": [{"solidity": 0.9808677731981731, "top": 1060, "right": 3690, "bottom": 5105, "left": 265}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/716973f.jpg"} -{"rects": [{"solidity": 0.9808753315943912, "top": 895, "right": 3410, "bottom": 4690, "left": 415}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723380f.jpg"} -{"rects": [{"solidity": 0.9808819657346234, "top": 540, "right": 3225, "bottom": 3870, "left": 665}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/712495f.jpg"} -{"rects": [{"solidity": 0.9808842382967371, "top": 240, "right": 3490, "bottom": 3610, "left": 1425}, {"solidity": 0.9632820716486846, "top": 295, "right": 5965, "bottom": 3615, "left": 3800}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706684f.jpg"} -{"rects": [{"solidity": 0.9809077353933171, "top": 525, "right": 5050, "bottom": 3550, "left": 1180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708523f.jpg"} -{"rects": [{"solidity": 0.9809112172484011, "top": 395, "right": 2755, "bottom": 4035, "left": 1335}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708354f.jpg"} -{"rects": [{"solidity": 0.9809131498741791, "top": 1015, "right": 3645, "bottom": 5025, "left": 300}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723799f.jpg"} -{"rects": [{"solidity": 0.9809176823747157, "top": 715, "right": 3385, "bottom": 2350, "left": 830}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711613f.jpg"} -{"rects": [{"solidity": 0.9809207103708357, "top": 475, "right": 4735, "bottom": 3520, "left": 910}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715446f.jpg"} -{"rects": [{"solidity": 0.9809222599862425, "top": 2435, "right": 3290, "bottom": 4260, "left": 550}, {"solidity": 0.9903903580485035, "top": 4385, "right": 2895, "bottom": 5790, "left": 1055}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722662f.jpg"} -{"rects": [{"solidity": 0.9809278068451116, "top": 565, "right": 3765, "bottom": 2690, "left": 910}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508483.jpg"} -{"rects": [{"solidity": 0.9809304863255696, "top": 935, "right": 3320, "bottom": 2200, "left": 1400}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509741.jpg"} -{"rects": [{"solidity": 0.9809426170606215, "top": 595, "right": 3245, "bottom": 3510, "left": 520}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712240f.jpg"} -{"rects": [{"solidity": 0.9809623912380976, "top": 395, "right": 4895, "bottom": 3615, "left": 1070}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723386f.jpg"} -{"rects": [{"solidity": 0.9809725294821866, "top": 780, "right": 2635, "bottom": 3915, "left": 130}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508323.jpg"} -{"rects": [{"solidity": 0.9809757755974698, "top": 415, "right": 3275, "bottom": 2365, "left": 560}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714083f.jpg"} -{"rects": [{"solidity": 0.9809871096656336, "top": 575, "right": 5040, "bottom": 3845, "left": 1175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719740f.jpg"} -{"rects": [{"solidity": 0.9809921113835227, "top": 475, "right": 5105, "bottom": 3715, "left": 840}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708690f.jpg"} -{"rects": [{"solidity": 0.9809969736232792, "top": 995, "right": 3640, "bottom": 5080, "left": 295}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733903f.jpg"} -{"rects": [{"solidity": 0.98100156965959, "top": 185, "right": 3730, "bottom": 2890, "left": 130}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509971.jpg"} -{"rects": [{"solidity": 0.9810097609238175, "top": 970, "right": 2540, "bottom": 4205, "left": 130}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508811.jpg"} -{"rects": [{"solidity": 0.981009966572429, "top": 590, "right": 4905, "bottom": 3620, "left": 1125}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709872f.jpg"} -{"rects": [{"solidity": 0.9810428238666905, "top": 340, "right": 4950, "bottom": 3490, "left": 1090}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717658f.jpg"} -{"rects": [{"solidity": 0.9810481407956021, "top": 1075, "right": 3685, "bottom": 5075, "left": 310}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723534f.jpg"} -{"rects": [{"solidity": 0.9810622701427155, "top": 330, "right": 3095, "bottom": 1960, "left": 570}, {"solidity": 0.9962041292137538, "top": 4035, "right": 3075, "bottom": 5670, "left": 650}, {"solidity": 0.9968478404800584, "top": 2185, "right": 3075, "bottom": 3810, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700640f.jpg"} -{"rects": [{"solidity": 0.9810695385056896, "top": 1050, "right": 3670, "bottom": 5070, "left": 295}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/717904f.jpg"} -{"rects": [{"solidity": 0.9810773355437837, "top": 130, "right": 2390, "bottom": 3710, "left": 130}], "shape": {"h": 3840, "w": 2520}, "file": "/usr/local/google/home/danvk/milstein/1557951.jpg"} -{"rects": [{"solidity": 0.9811058880496301, "top": 1045, "right": 5145, "bottom": 3570, "left": 3010}, {"solidity": 0.9795998984227308, "top": 935, "right": 2285, "bottom": 3350, "left": 600}], "shape": {"h": 4610, "w": 5690}, "file": "/usr/local/google/home/danvk/milstein/1823521.jpg"} -{"rects": [{"solidity": 0.9811075473555988, "top": 640, "right": 4790, "bottom": 3660, "left": 1025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709892f.jpg"} -{"rects": [{"solidity": 0.981110776640578, "top": 395, "right": 3080, "bottom": 3520, "left": 1500}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714541f.jpg"} -{"rects": [{"solidity": 0.9811242303595737, "top": 430, "right": 3960, "bottom": 2735, "left": 1040}], "shape": {"h": 2980, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508451.jpg"} -{"rects": [{"solidity": 0.9811388206177062, "top": 820, "right": 2125, "bottom": 3185, "left": 550}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723988f.jpg"} -{"rects": [{"solidity": 0.9811421325134102, "top": 275, "right": 5115, "bottom": 3710, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720051f.jpg"} -{"rects": [{"solidity": 0.9811652124417114, "top": 585, "right": 2670, "bottom": 3440, "left": 805}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706006f.jpg"} -{"rects": [{"solidity": 0.9811731690493514, "top": 600, "right": 2980, "bottom": 2035, "left": 1070}, {"solidity": 0.9331300423768346, "top": 4050, "right": 2935, "bottom": 5480, "left": 1085}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721792f.jpg"} -{"rects": [{"solidity": 0.9811813939221314, "top": 515, "right": 3305, "bottom": 2650, "left": 595}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517175.jpg"} -{"rects": [{"solidity": 0.9812207153189016, "top": 860, "right": 3230, "bottom": 2075, "left": 1500}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509679.jpg"} -{"rects": [{"solidity": 0.9812323005513012, "top": 590, "right": 2190, "bottom": 2820, "left": 730}], "shape": {"h": 5995, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465672.jpg"} -{"rects": [{"solidity": 0.9812499662827394, "top": 1170, "right": 3470, "bottom": 5030, "left": 440}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708773f.jpg"} -{"rects": [{"solidity": 0.9812519828460247, "top": 1080, "right": 3475, "bottom": 4960, "left": 555}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712327f.jpg"} -{"rects": [{"solidity": 0.9812629404652938, "top": 435, "right": 2975, "bottom": 1840, "left": 1135}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734110f.jpg"} -{"rects": [{"solidity": 0.9812740621056211, "top": 1300, "right": 3500, "bottom": 5045, "left": 450}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709514f.jpg"} -{"rects": [{"solidity": 0.9812768860131615, "top": 350, "right": 4945, "bottom": 3630, "left": 970}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717341f.jpg"} -{"rects": [{"solidity": 0.9812815057158327, "top": 445, "right": 3770, "bottom": 2770, "left": 905}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508511.jpg"} -{"rects": [{"solidity": 0.9813108698022824, "top": 630, "right": 4850, "bottom": 3625, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709881f.jpg"} -{"rects": [{"solidity": 0.9813354917037637, "top": 415, "right": 3025, "bottom": 1825, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700370f.jpg"} -{"rects": [{"solidity": 0.9813389671764293, "top": 230, "right": 5060, "bottom": 3925, "left": 130}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701148f.jpg"} -{"rects": [{"solidity": 0.9813549345717916, "top": 3330, "right": 3345, "bottom": 5055, "left": 1270}], "shape": {"h": 5660, "w": 4595}, "file": "/usr/local/google/home/danvk/milstein/1823503.jpg"} -{"rects": [{"solidity": 0.98137262063583, "top": 530, "right": 3045, "bottom": 3205, "left": 510}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711521f.jpg"} -{"rects": [{"solidity": 0.9813976480382974, "top": 380, "right": 3405, "bottom": 2890, "left": 245}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509807.jpg"} -{"rects": [{"solidity": 0.9813977963053387, "top": 855, "right": 4645, "bottom": 3410, "left": 1395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708901f.jpg"} -{"rects": [{"solidity": 0.9814039627049231, "top": 1065, "right": 3440, "bottom": 5075, "left": 295}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709295f.jpg"} -{"rects": [{"solidity": 0.981404120546688, "top": 130, "right": 5140, "bottom": 3835, "left": 130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716946f.jpg"} -{"rects": [{"solidity": 0.9814196758810271, "top": 505, "right": 3220, "bottom": 2095, "left": 830}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723813f.jpg"} -{"rects": [{"solidity": 0.9814232352676682, "top": 1160, "right": 3545, "bottom": 4910, "left": 455}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709958f.jpg"} -{"rects": [{"solidity": 0.9814239586087088, "top": 305, "right": 4935, "bottom": 3675, "left": 915}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717343f.jpg"} -{"rects": [{"solidity": 0.9814253274699302, "top": 490, "right": 4885, "bottom": 3595, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722120f.jpg"} -{"rects": [{"solidity": 0.9814423528522611, "top": 1195, "right": 3475, "bottom": 5025, "left": 375}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722158f.jpg"} -{"rects": [{"solidity": 0.9814609196963179, "top": 570, "right": 4940, "bottom": 3510, "left": 1170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733965f.jpg"} -{"rects": [{"solidity": 0.9814659146374533, "top": 370, "right": 3025, "bottom": 1705, "left": 915}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707440f.jpg"} -{"rects": [{"solidity": 0.981475650713686, "top": 1090, "right": 3095, "bottom": 3310, "left": 1435}], "shape": {"h": 5985, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465606.jpg"} -{"rects": [{"solidity": 0.9814773536591332, "top": 945, "right": 3515, "bottom": 5250, "left": 250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717458f.jpg"} -{"rects": [{"solidity": 0.9814790472526691, "top": 1310, "right": 3380, "bottom": 4865, "left": 440}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720744f.jpg"} -{"rects": [{"solidity": 0.9814813256712073, "top": 960, "right": 3670, "bottom": 4990, "left": 275}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712336f.jpg"} -{"rects": [{"solidity": 0.9814859223197595, "top": 130, "right": 5085, "bottom": 3525, "left": 990}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704162f.jpg"} -{"rects": [{"solidity": 0.9815098559849708, "top": 695, "right": 5105, "bottom": 3925, "left": 1750}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711230f.jpg"} -{"rects": [{"solidity": 0.9815235159596672, "top": 1220, "right": 3550, "bottom": 4935, "left": 335}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724468f.jpg"} -{"rects": [{"solidity": 0.9815480580645801, "top": 1145, "right": 3565, "bottom": 4920, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709963f.jpg"} -{"rects": [{"solidity": 0.9815852050889045, "top": 840, "right": 3890, "bottom": 3345, "left": 2265}, {"solidity": 0.9961444569302902, "top": 850, "right": 5735, "bottom": 3265, "left": 4105}, {"solidity": 0.9977833302546254, "top": 845, "right": 2010, "bottom": 3245, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712303f.jpg"} -{"rects": [{"solidity": 0.9816014991371074, "top": 980, "right": 3275, "bottom": 2955, "left": 1390}], "shape": {"h": 6005, "w": 4765}, "file": "/usr/local/google/home/danvk/milstein/465590.jpg"} -{"rects": [{"solidity": 0.9816067301933707, "top": 455, "right": 3285, "bottom": 3575, "left": 695}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714125f.jpg"} -{"rects": [{"solidity": 0.9816112724898106, "top": 325, "right": 5050, "bottom": 3725, "left": 1045}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723677f.jpg"} -{"rects": [{"solidity": 0.9816119931404548, "top": 435, "right": 3145, "bottom": 1950, "left": 845}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700355f.jpg"} -{"rects": [{"solidity": 0.9816349361377569, "top": 460, "right": 5265, "bottom": 3760, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723361f.jpg"} -{"rects": [{"solidity": 0.9816461182235888, "top": 500, "right": 5025, "bottom": 3520, "left": 1230}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731104f.jpg"} -{"rects": [{"solidity": 0.981663245794081, "top": 2340, "right": 2395, "bottom": 3770, "left": 375}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507608.jpg"} -{"rects": [{"solidity": 0.9816659394929588, "top": 425, "right": 2955, "bottom": 1890, "left": 1070}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716615f.jpg"} -{"rects": [{"solidity": 0.9816940930947445, "top": 1045, "right": 3680, "bottom": 5065, "left": 295}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710131f.jpg"} -{"rects": [{"solidity": 0.9817106606878326, "top": 1065, "right": 3715, "bottom": 5140, "left": 245}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714497f.jpg"} -{"rects": [{"solidity": 0.9817174369451749, "top": 985, "right": 3700, "bottom": 5055, "left": 365}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714020f.jpg"} -{"rects": [{"solidity": 0.9817240021890872, "top": 340, "right": 5105, "bottom": 3575, "left": 1045}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708286f.jpg"} -{"rects": [{"solidity": 0.9817268337292426, "top": 215, "right": 5005, "bottom": 3655, "left": 980}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717642f.jpg"} -{"rects": [{"solidity": 0.9817288591116536, "top": 465, "right": 5060, "bottom": 3500, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724665f.jpg"} -{"rects": [{"solidity": 0.9817456690083001, "top": 395, "right": 3120, "bottom": 3655, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713761f.jpg"} -{"rects": [{"solidity": 0.9817479436941282, "top": 335, "right": 3950, "bottom": 2875, "left": 785}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509287.jpg"} -{"rects": [{"solidity": 0.9817516211826264, "top": 465, "right": 3310, "bottom": 2350, "left": 1100}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/711217f.jpg"} -{"rects": [{"solidity": 0.9817737575379497, "top": 1425, "right": 1385, "bottom": 2600, "left": 320}, {"solidity": 0.9658532000877166, "top": 1420, "right": 2755, "bottom": 2620, "left": 1690}, {"solidity": 0.948485012152309, "top": 3085, "right": 1335, "bottom": 4250, "left": 255}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517067.jpg"} -{"rects": [{"solidity": 0.9817762661944917, "top": 1100, "right": 3475, "bottom": 4865, "left": 355}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722162f.jpg"} -{"rects": [{"solidity": 0.9817769753409037, "top": 1045, "right": 3650, "bottom": 5050, "left": 295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713939f.jpg"} -{"rects": [{"solidity": 0.9817777214628506, "top": 675, "right": 2795, "bottom": 3325, "left": 925}, {"solidity": 0.997089258698941, "top": 2140, "right": 5140, "bottom": 3280, "left": 3310}, {"solidity": 0.9950987458555571, "top": 670, "right": 5095, "bottom": 1805, "left": 3315}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702870f.jpg"} -{"rects": [{"solidity": 0.9817844757924107, "top": 495, "right": 4940, "bottom": 3485, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712882f.jpg"} -{"rects": [{"solidity": 0.9817963722423044, "top": 755, "right": 4720, "bottom": 3325, "left": 1350}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717162f.jpg"} -{"rects": [{"solidity": 0.9817970191351049, "top": 905, "right": 2765, "bottom": 2320, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705763f.jpg"} -{"rects": [{"solidity": 0.9818012184013172, "top": 790, "right": 4880, "bottom": 3560, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709024f.jpg"} -{"rects": [{"solidity": 0.9818250417149356, "top": 435, "right": 4975, "bottom": 3460, "left": 1060}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708771f.jpg"} -{"rects": [{"solidity": 0.981839246986684, "top": 520, "right": 5115, "bottom": 3530, "left": 1340}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731103f.jpg"} -{"rects": [{"solidity": 0.9818556875290524, "top": 130, "right": 3675, "bottom": 2470, "left": 130}], "shape": {"h": 2600, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1557922.jpg"} -{"rects": [{"solidity": 0.9818778250409581, "top": 165, "right": 5035, "bottom": 3635, "left": 1035}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717634f.jpg"} -{"rects": [{"solidity": 0.9818816486316665, "top": 245, "right": 5110, "bottom": 3695, "left": 1065}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719873f.jpg"} -{"rects": [{"solidity": 0.9818941712963102, "top": 3265, "right": 3220, "bottom": 4950, "left": 670}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717158f.jpg"} -{"rects": [{"solidity": 0.9819090395702822, "top": 990, "right": 3650, "bottom": 5040, "left": 305}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712572f.jpg"} -{"rects": [{"solidity": 0.9819212827437723, "top": 2345, "right": 2940, "bottom": 3765, "left": 1035}, {"solidity": 0.9738666842648591, "top": 510, "right": 2895, "bottom": 1965, "left": 1035}, {"solidity": 0.9331591841553765, "top": 4160, "right": 2950, "bottom": 5605, "left": 1060}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/706127f.jpg"} -{"rects": [{"solidity": 0.981921325068047, "top": 825, "right": 3305, "bottom": 5275, "left": 430}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713882f.jpg"} -{"rects": [{"solidity": 0.9819232684464008, "top": 1625, "right": 3660, "bottom": 4320, "left": 1030}], "shape": {"h": 6010, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/464830.jpg"} -{"rects": [{"solidity": 0.9819268582129365, "top": 1040, "right": 4195, "bottom": 2890, "left": 1690}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721477f.jpg"} -{"rects": [{"solidity": 0.9819310836259989, "top": 690, "right": 2625, "bottom": 4060, "left": 370}], "shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508603.jpg"} -{"rects": [{"solidity": 0.981931691312174, "top": 680, "right": 2855, "bottom": 1960, "left": 690}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729914f.jpg"} -{"rects": [{"solidity": 0.9819407620051795, "top": 505, "right": 3215, "bottom": 2000, "left": 1005}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725898f.jpg"} -{"rects": [{"solidity": 0.9819485611897776, "top": 510, "right": 4230, "bottom": 2825, "left": 1255}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507773.jpg"} -{"rects": [{"solidity": 0.9819566317054823, "top": 325, "right": 5030, "bottom": 3740, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717593f.jpg"} -{"rects": [{"solidity": 0.9819603268530593, "top": 1070, "right": 3680, "bottom": 5110, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708444f.jpg"} -{"rects": [{"solidity": 0.9819646114294742, "top": 485, "right": 3155, "bottom": 1990, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709617f.jpg"} -{"rects": [{"solidity": 0.9819670986806897, "top": 390, "right": 2185, "bottom": 1510, "left": 715}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716313f.jpg"} -{"rects": [{"solidity": 0.9819824529304652, "top": 940, "right": 2090, "bottom": 3820, "left": 940}], "shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508567.jpg"} -{"rects": [{"solidity": 0.9819848031924102, "top": 530, "right": 4985, "bottom": 3525, "left": 1180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717057f.jpg"} -{"rects": [{"solidity": 0.9819897084048027, "top": 1120, "right": 3820, "bottom": 2175, "left": 2490}, {"solidity": 0.9805034234766761, "top": 1070, "right": 2185, "bottom": 2090, "left": 885}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508939.jpg"} -{"rects": [{"solidity": 0.9820044205873066, "top": 850, "right": 4945, "bottom": 3545, "left": 1140}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718326f.jpg"} -{"rects": [{"solidity": 0.9820334013342786, "top": 1060, "right": 3645, "bottom": 5065, "left": 255}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719377f.jpg"} -{"rects": [{"solidity": 0.982042104985631, "top": 590, "right": 4960, "bottom": 3605, "left": 1160}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717045f.jpg"} -{"rects": [{"solidity": 0.9820690808731287, "top": 410, "right": 3185, "bottom": 1985, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727470f.jpg"} -{"rects": [{"solidity": 0.982086833505348, "top": 1025, "right": 3650, "bottom": 5115, "left": 285}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719348f.jpg"} -{"rects": [{"solidity": 0.9821038779282902, "top": 670, "right": 2715, "bottom": 2060, "left": 960}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732495f.jpg"} -{"rects": [{"solidity": 0.9821072921850243, "top": 580, "right": 4890, "bottom": 3535, "left": 1135}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713493f.jpg"} -{"rects": [{"solidity": 0.982138317537331, "top": 815, "right": 5350, "bottom": 3610, "left": 1565}], "shape": {"h": 4410, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711396f.jpg"} -{"rects": [{"solidity": 0.9821388693486975, "top": 430, "right": 3275, "bottom": 3935, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708288f.jpg"} -{"rects": [{"solidity": 0.9821397257180743, "top": 715, "right": 2375, "bottom": 3465, "left": 435}, {"solidity": 0.9928684188661479, "top": 910, "right": 3555, "bottom": 1885, "left": 2600}, {"solidity": 0.9946804767868954, "top": 2180, "right": 3565, "bottom": 3150, "left": 2630}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731086f.jpg"} -{"rects": [{"solidity": 0.9821408735791072, "top": 430, "right": 5430, "bottom": 3715, "left": 1340}], "shape": {"h": 4030, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/730039f.jpg"} -{"rects": [{"solidity": 0.9821452621161474, "top": 900, "right": 4705, "bottom": 3435, "left": 1370}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709423f.jpg"} -{"rects": [{"solidity": 0.9821708611340976, "top": 670, "right": 4785, "bottom": 3260, "left": 1405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709143f.jpg"} -{"rects": [{"solidity": 0.9821765373393465, "top": 970, "right": 4590, "bottom": 3010, "left": 1375}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728948f.jpg"} -{"rects": [{"solidity": 0.9822014925373135, "top": 625, "right": 2790, "bottom": 2080, "left": 900}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707017f.jpg"} -{"rects": [{"solidity": 0.9822067477143488, "top": 385, "right": 5260, "bottom": 3630, "left": 1190}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719281f.jpg"} -{"rects": [{"solidity": 0.982214082794657, "top": 625, "right": 4980, "bottom": 3635, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717043f.jpg"} -{"rects": [{"solidity": 0.9822194438729486, "top": 1090, "right": 3020, "bottom": 2240, "left": 1585}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509059.jpg"} -{"rects": [{"solidity": 0.9822277385432077, "top": 425, "right": 3205, "bottom": 3645, "left": 660}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714367f.jpg"} -{"rects": [{"solidity": 0.9822283090508603, "top": 795, "right": 5055, "bottom": 3420, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701332f.jpg"} -{"rects": [{"solidity": 0.9822296426691831, "top": 1045, "right": 2630, "bottom": 2580, "left": 315}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734305f.jpg"} -{"rects": [{"solidity": 0.9822353468205062, "top": 795, "right": 3915, "bottom": 3315, "left": 560}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723412f.jpg"} -{"rects": [{"solidity": 0.9822448745227907, "top": 1065, "right": 3660, "bottom": 5105, "left": 270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705455f.jpg"} -{"rects": [{"solidity": 0.9822518137077416, "top": 920, "right": 2645, "bottom": 2840, "left": 430}], "shape": {"h": 6010, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465685.jpg"} -{"rects": [{"solidity": 0.9822638393491665, "top": 550, "right": 4905, "bottom": 3525, "left": 1145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707100f.jpg"} -{"rects": [{"solidity": 0.9822777604348385, "top": 275, "right": 5055, "bottom": 3725, "left": 1010}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718940f.jpg"} -{"rects": [{"solidity": 0.9822837462673751, "top": 740, "right": 2445, "bottom": 3405, "left": 315}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509295.jpg"} -{"rects": [{"solidity": 0.9823107697373984, "top": 130, "right": 3750, "bottom": 2615, "left": 130}], "shape": {"h": 2865, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558328.jpg"} -{"rects": [{"solidity": 0.9823128695342606, "top": 1095, "right": 3635, "bottom": 3085, "left": 985}], "shape": {"h": 6050, "w": 4695}, "file": "/usr/local/google/home/danvk/milstein/465586.jpg"} -{"rects": [{"solidity": 0.9823134365953753, "top": 2350, "right": 2940, "bottom": 3970, "left": 905}, {"solidity": 0.9836899070699421, "top": 445, "right": 2925, "bottom": 2065, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714172f.jpg"} -{"rects": [{"solidity": 0.9823150006013153, "top": 595, "right": 2435, "bottom": 1820, "left": 800}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705463f.jpg"} -{"rects": [{"solidity": 0.9823322829721213, "top": 710, "right": 2415, "bottom": 1995, "left": 750}, {"solidity": 0.9883497062743742, "top": 2125, "right": 2445, "bottom": 3375, "left": 775}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732783f.jpg"} -{"rects": [{"solidity": 0.9823395343446997, "top": 630, "right": 4970, "bottom": 3620, "left": 1155}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708763f.jpg"} -{"rects": [{"solidity": 0.9823448366664629, "top": 1070, "right": 3690, "bottom": 5150, "left": 320}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/716966f.jpg"} -{"rects": [{"solidity": 0.9823448417541191, "top": 575, "right": 3230, "bottom": 2555, "left": 550}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723638f.jpg"} -{"rects": [{"solidity": 0.9823991999636347, "top": 595, "right": 4935, "bottom": 3575, "left": 1150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709041f.jpg"} -{"rects": [{"solidity": 0.9824197863050729, "top": 520, "right": 4925, "bottom": 3660, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709586f.jpg"} -{"rects": [{"solidity": 0.9824301715035125, "top": 360, "right": 5040, "bottom": 3685, "left": 1050}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717407f.jpg"} -{"rects": [{"solidity": 0.982445220078574, "top": 235, "right": 5710, "bottom": 4570, "left": 230}], "shape": {"h": 4700, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718483f.jpg"} -{"rects": [{"solidity": 0.9824682388593186, "top": 565, "right": 2495, "bottom": 1990, "left": 640}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706100f.jpg"} -{"rects": [{"solidity": 0.9824750200098112, "top": 270, "right": 4990, "bottom": 3535, "left": 1170}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717659f.jpg"} -{"rects": [{"solidity": 0.9824770273942851, "top": 1065, "right": 3430, "bottom": 4805, "left": 460}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712926f.jpg"} -{"rects": [{"solidity": 0.9824972947264217, "top": 205, "right": 5040, "bottom": 3650, "left": 985}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717646f.jpg"} -{"rects": [{"solidity": 0.9825050523348297, "top": 460, "right": 2670, "bottom": 3735, "left": 1270}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714732f.jpg"} -{"rects": [{"solidity": 0.982506560039985, "top": 3670, "right": 2095, "bottom": 5245, "left": 410}, {"solidity": 0.994336371690555, "top": 3650, "right": 4200, "bottom": 5130, "left": 2635}], "shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465535.jpg"} -{"rects": [{"solidity": 0.9825249614580559, "top": 130, "right": 3545, "bottom": 2410, "left": 130}], "shape": {"h": 2540, "w": 3675}, "file": "/usr/local/google/home/danvk/milstein/1557819.jpg"} -{"rects": [{"solidity": 0.9825570846026759, "top": 165, "right": 3835, "bottom": 2805, "left": 635}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509847.jpg"} -{"rects": [{"solidity": 0.9825571999424403, "top": 595, "right": 5005, "bottom": 3605, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717040f.jpg"} -{"rects": [{"solidity": 0.9825631778368088, "top": 1110, "right": 3870, "bottom": 5675, "left": 130}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/711351f.jpg"} -{"rects": [{"solidity": 0.9825669380124825, "top": 385, "right": 3200, "bottom": 3485, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714405f.jpg"} -{"rects": [{"solidity": 0.9825856292790293, "top": 665, "right": 4835, "bottom": 3510, "left": 1190}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717404f.jpg"} -{"rects": [{"solidity": 0.9825873128524428, "top": 500, "right": 4880, "bottom": 3465, "left": 1130}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712854f.jpg"} -{"rects": [{"solidity": 0.982604827390494, "top": 935, "right": 3560, "bottom": 2435, "left": 1315}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508669.jpg"} -{"rects": [{"solidity": 0.9826177749886391, "top": 1000, "right": 3455, "bottom": 4860, "left": 450}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722155f.jpg"} -{"rects": [{"solidity": 0.9826229347131933, "top": 1020, "right": 2635, "bottom": 2815, "left": 420}, {"solidity": 0.9706975242842344, "top": 3115, "right": 2050, "bottom": 5420, "left": 565}, {"solidity": 0.9777466899061248, "top": 3245, "right": 4095, "bottom": 5505, "left": 2595}], "shape": {"h": 6010, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465572.jpg"} -{"rects": [{"solidity": 0.9826251378748884, "top": 820, "right": 2615, "bottom": 3820, "left": 220}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507609.jpg"} -{"rects": [{"solidity": 0.9826376262784584, "top": 955, "right": 3540, "bottom": 4865, "left": 370}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732812f.jpg"} -{"rects": [{"solidity": 0.982653239677947, "top": 480, "right": 4920, "bottom": 3460, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712903f.jpg"} -{"rects": [{"solidity": 0.9826562862642838, "top": 910, "right": 3615, "bottom": 3380, "left": 585}], "shape": {"h": 5835, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/417669.jpg"} -{"rects": [{"solidity": 0.9826642257714056, "top": 2180, "right": 2925, "bottom": 3690, "left": 960}, {"solidity": 0.9907772043677601, "top": 590, "right": 2910, "bottom": 2055, "left": 970}, {"solidity": 0.9906946599553419, "top": 630, "right": 5375, "bottom": 2010, "left": 3430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707453f.jpg"} -{"rects": [{"solidity": 0.9826682789197904, "top": 240, "right": 3350, "bottom": 2765, "left": 550}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725776f.jpg"} -{"rects": [{"solidity": 0.9826716266915302, "top": 485, "right": 5105, "bottom": 3630, "left": 1230}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717660f.jpg"} -{"rects": [{"solidity": 0.9826864103224764, "top": 300, "right": 5010, "bottom": 3535, "left": 1100}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710195f.jpg"} -{"rects": [{"solidity": 0.9826896050671686, "top": 675, "right": 4765, "bottom": 3305, "left": 1360}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713257f.jpg"} -{"rects": [{"solidity": 0.9827086335795352, "top": 945, "right": 3670, "bottom": 4985, "left": 290}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713871f.jpg"} -{"rects": [{"solidity": 0.9827110336445741, "top": 255, "right": 5045, "bottom": 3680, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716571f.jpg"} -{"rects": [{"solidity": 0.9827314112291351, "top": 1300, "right": 3255, "bottom": 4700, "left": 595}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731188f.jpg"} -{"rects": [{"solidity": 0.9827441295324638, "top": 490, "right": 3270, "bottom": 3810, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714685f.jpg"} -{"rects": [{"solidity": 0.9827759235036759, "top": 475, "right": 3020, "bottom": 1880, "left": 1410}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727990f.jpg"} -{"rects": [{"solidity": 0.9827822667261521, "top": 830, "right": 3855, "bottom": 2660, "left": 925}], "shape": {"h": 4415, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711402f.jpg"} -{"rects": [{"solidity": 0.9827903849884047, "top": 130, "right": 3525, "bottom": 5065, "left": 130}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700078f.jpg"} -{"rects": [{"solidity": 0.9827974167233174, "top": 460, "right": 3075, "bottom": 2105, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733446f.jpg"} -{"rects": [{"solidity": 0.9828068197723464, "top": 1190, "right": 3625, "bottom": 5210, "left": 275}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711027f.jpg"} -{"rects": [{"solidity": 0.9828096483742038, "top": 445, "right": 5050, "bottom": 3635, "left": 1055}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713259f.jpg"} -{"rects": [{"solidity": 0.9828218835316771, "top": 395, "right": 5120, "bottom": 3550, "left": 1245}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717664f.jpg"} -{"rects": [{"solidity": 0.982824134068396, "top": 1135, "right": 3280, "bottom": 2195, "left": 1625}], "shape": {"h": 3015, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/1509639.jpg"} -{"rects": [{"solidity": 0.9828245441590752, "top": 1565, "right": 2835, "bottom": 2995, "left": 955}, {"solidity": 0.9875687050167419, "top": 4490, "right": 2825, "bottom": 5905, "left": 960}, {"solidity": 0.972373550277233, "top": 3025, "right": 2870, "bottom": 4410, "left": 950}, {"solidity": 0.9905402376148845, "top": 225, "right": 2815, "bottom": 1440, "left": 950}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730589f.jpg"} -{"rects": [{"solidity": 0.9828298591891322, "top": 255, "right": 5080, "bottom": 3785, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734086f.jpg"} -{"rects": [{"solidity": 0.9828462797597989, "top": 970, "right": 3640, "bottom": 5030, "left": 325}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713032f.jpg"} -{"rects": [{"solidity": 0.982932570162552, "top": 365, "right": 5310, "bottom": 3625, "left": 1245}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732536f.jpg"} -{"rects": [{"solidity": 0.9829367437049322, "top": 450, "right": 2985, "bottom": 2010, "left": 1075}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724116f.jpg"} -{"rects": [{"solidity": 0.9829435156824351, "top": 840, "right": 4920, "bottom": 3250, "left": 1155}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713516f.jpg"} -{"rects": [{"solidity": 0.9829440549040377, "top": 620, "right": 3150, "bottom": 2110, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719437f.jpg"} -{"rects": [{"solidity": 0.9829451751739673, "top": 470, "right": 2940, "bottom": 2090, "left": 985}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713660f.jpg"} -{"rects": [{"solidity": 0.9829480181240857, "top": 720, "right": 5675, "bottom": 3425, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722920f.jpg"} -{"rects": [{"solidity": 0.9829716348667521, "top": 535, "right": 4795, "bottom": 3655, "left": 1145}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713495f.jpg"} -{"rects": [{"solidity": 0.9829747351025282, "top": 3025, "right": 3765, "bottom": 5625, "left": 390}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730671f.jpg"} -{"rects": [{"solidity": 0.9829905982572289, "top": 625, "right": 3095, "bottom": 3390, "left": 645}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709675f.jpg"} -{"rects": [{"solidity": 0.9830006137545628, "top": 950, "right": 3750, "bottom": 2695, "left": 130}], "shape": {"h": 2825, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558505.jpg"} -{"rects": [{"solidity": 0.983003926906699, "top": 610, "right": 4960, "bottom": 3650, "left": 1225}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718211f.jpg"} -{"rects": [{"solidity": 0.9830151216262748, "top": 1125, "right": 3310, "bottom": 3470, "left": 1455}], "shape": {"h": 6010, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465594.jpg"} -{"rects": [{"solidity": 0.9830175959127154, "top": 935, "right": 4760, "bottom": 3110, "left": 1420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700659f.jpg"} -{"rects": [{"solidity": 0.9830187712767209, "top": 470, "right": 3275, "bottom": 3925, "left": 630}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714388f.jpg"} -{"rects": [{"solidity": 0.9830395844412473, "top": 440, "right": 3270, "bottom": 5520, "left": 570}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721825f.jpg"} -{"rects": [{"solidity": 0.9830397562849958, "top": 295, "right": 5670, "bottom": 3835, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721495f.jpg"} -{"rects": [{"solidity": 0.9830522649617325, "top": 615, "right": 5025, "bottom": 3590, "left": 1175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717228f.jpg"} -{"rects": [{"solidity": 0.9830562944672835, "top": 1120, "right": 3460, "bottom": 5010, "left": 410}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724463f.jpg"} -{"rects": [{"solidity": 0.9830616272702382, "top": 860, "right": 3610, "bottom": 4875, "left": 275}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/712362f.jpg"} -{"rects": [{"solidity": 0.9830626375395846, "top": 460, "right": 4980, "bottom": 3520, "left": 1145}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725818f.jpg"} -{"rects": [{"solidity": 0.9830670462702337, "top": 1035, "right": 1800, "bottom": 3220, "left": 340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731900f.jpg"} -{"rects": [{"solidity": 0.9830679843655182, "top": 1085, "right": 3645, "bottom": 5105, "left": 270}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717950f.jpg"} -{"rects": [{"solidity": 0.9830807891380992, "top": 325, "right": 5015, "bottom": 3690, "left": 965}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717349f.jpg"} -{"rects": [{"solidity": 0.9830842218778869, "top": 770, "right": 2475, "bottom": 2320, "left": 240}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509097.jpg"} -{"rects": [{"solidity": 0.983088660753166, "top": 670, "right": 4945, "bottom": 1925, "left": 3230}, {"solidity": 0.9888157734692388, "top": 2170, "right": 2720, "bottom": 3400, "left": 1025}, {"solidity": 0.989958078658517, "top": 685, "right": 2700, "bottom": 1890, "left": 1055}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706758f.jpg"} -{"rects": [{"solidity": 0.9830955744641692, "top": 1760, "right": 3905, "bottom": 6120, "left": 515}], "shape": {"h": 6920, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708819f.jpg"} -{"rects": [{"solidity": 0.9831117077502008, "top": 405, "right": 4840, "bottom": 3560, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723389f.jpg"} -{"rects": [{"solidity": 0.9831119070426054, "top": 3240, "right": 3360, "bottom": 5615, "left": 1025}], "shape": {"h": 5750, "w": 4580}, "file": "/usr/local/google/home/danvk/milstein/417648.jpg"} -{"rects": [{"solidity": 0.9831177608368366, "top": 140, "right": 4355, "bottom": 2890, "left": 625}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509857.jpg"} -{"rects": [{"solidity": 0.9831455434793095, "top": 405, "right": 4865, "bottom": 3535, "left": 1035}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712655f.jpg"} -{"rects": [{"solidity": 0.9831557529948707, "top": 215, "right": 3890, "bottom": 2745, "left": 765}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509941.jpg"} -{"rects": [{"solidity": 0.9831749948868707, "top": 990, "right": 3380, "bottom": 4815, "left": 455}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712925f.jpg"} -{"rects": [{"solidity": 0.9831950725089662, "top": 345, "right": 3055, "bottom": 3655, "left": 590}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714431f.jpg"} -{"rects": [{"solidity": 0.9832003648148476, "top": 1160, "right": 3430, "bottom": 4965, "left": 440}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722149f.jpg"} -{"rects": [{"solidity": 0.9832138105030327, "top": 450, "right": 3205, "bottom": 2015, "left": 835}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713951f.jpg"} -{"rects": [{"solidity": 0.9832188782715703, "top": 1360, "right": 3865, "bottom": 4945, "left": 445}], "shape": {"h": 6920, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711262f.jpg"} -{"rects": [{"solidity": 0.9832190014398594, "top": 1095, "right": 2595, "bottom": 4195, "left": 130}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509075.jpg"} -{"rects": [{"solidity": 0.9832206587331478, "top": 470, "right": 2940, "bottom": 3650, "left": 555}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721450f.jpg"} -{"rects": [{"solidity": 0.9832331355402874, "top": 790, "right": 2040, "bottom": 3200, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719958f.jpg"} -{"rects": [{"solidity": 0.9832425244220105, "top": 750, "right": 2515, "bottom": 3590, "left": 410}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509019.jpg"} -{"rects": [{"solidity": 0.9832486323559823, "top": 675, "right": 4945, "bottom": 3455, "left": 1300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717215f.jpg"} -{"rects": [{"solidity": 0.9832493881544413, "top": 1010, "right": 3650, "bottom": 5025, "left": 305}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713878f.jpg"} -{"rects": [{"solidity": 0.9832914516722299, "top": 375, "right": 3830, "bottom": 2825, "left": 830}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715957f.jpg"} -{"rects": [{"solidity": 0.9832930346374574, "top": 2150, "right": 2775, "bottom": 3565, "left": 910}, {"solidity": 0.956741782536892, "top": 645, "right": 2755, "bottom": 2080, "left": 895}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720482f.jpg"} -{"rects": [{"solidity": 0.9833041656742759, "top": 830, "right": 4890, "bottom": 3365, "left": 1440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719014f.jpg"} -{"rects": [{"solidity": 0.9833245240390096, "top": 2185, "right": 3675, "bottom": 4610, "left": 1040}, {"solidity": 0.9394042785492511, "top": 1080, "right": 3690, "bottom": 1935, "left": 1005}], "shape": {"h": 5995, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464834.jpg"} -{"rects": [{"solidity": 0.9833404322556711, "top": 3410, "right": 3750, "bottom": 5580, "left": 820}], "shape": {"h": 6005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465546.jpg"} -{"rects": [{"solidity": 0.9833476019968416, "top": 1305, "right": 3245, "bottom": 4700, "left": 585}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731189f.jpg"} -{"rects": [{"solidity": 0.9833548146973885, "top": 1005, "right": 2555, "bottom": 2815, "left": 350}, {"solidity": 0.9617665845423853, "top": 3530, "right": 4000, "bottom": 5465, "left": 2305}], "shape": {"h": 5995, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/465573.jpg"} -{"rects": [{"solidity": 0.9833903498646295, "top": 830, "right": 2385, "bottom": 2280, "left": 275}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509087.jpg"} -{"rects": [{"solidity": 0.9834063585445983, "top": 160, "right": 3300, "bottom": 2725, "left": 245}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509865.jpg"} -{"rects": [{"solidity": 0.9834066116195925, "top": 900, "right": 3350, "bottom": 5230, "left": 535}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721225f.jpg"} -{"rects": [{"solidity": 0.9834216179072498, "top": 670, "right": 3285, "bottom": 2475, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711874f.jpg"} -{"rects": [{"solidity": 0.9834243927892056, "top": 240, "right": 3295, "bottom": 2055, "left": 495}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707797f.jpg"} -{"rects": [{"solidity": 0.9834263855290583, "top": 1045, "right": 2595, "bottom": 4140, "left": 130}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509167.jpg"} -{"rects": [{"solidity": 0.9834299494504475, "top": 3950, "right": 3175, "bottom": 5940, "left": 400}, {"solidity": 0.9958337107146091, "top": 2210, "right": 3175, "bottom": 3830, "left": 755}, {"solidity": 0.9973558534591277, "top": 420, "right": 3180, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/705894f.jpg"} -{"rects": [{"solidity": 0.9834357873777243, "top": 985, "right": 3635, "bottom": 5060, "left": 290}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717572f.jpg"} -{"rects": [{"solidity": 0.9834430675955964, "top": 360, "right": 5020, "bottom": 3480, "left": 1155}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728279f.jpg"} -{"rects": [{"solidity": 0.9834497080243482, "top": 285, "right": 5085, "bottom": 3750, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730335f.jpg"} -{"rects": [{"solidity": 0.9834542891035959, "top": 430, "right": 3630, "bottom": 2685, "left": 840}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715986f.jpg"} -{"rects": [{"solidity": 0.983454526769652, "top": 570, "right": 4930, "bottom": 3585, "left": 1175}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700488f.jpg"} -{"rects": [{"solidity": 0.9834551145660837, "top": 200, "right": 3910, "bottom": 2775, "left": 855}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509849.jpg"} -{"rects": [{"solidity": 0.9834585111405587, "top": 630, "right": 4965, "bottom": 3560, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717047f.jpg"} -{"rects": [{"solidity": 0.9834655609929108, "top": 400, "right": 2950, "bottom": 1930, "left": 965}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719247f.jpg"} -{"rects": [{"solidity": 0.9834722388832717, "top": 1030, "right": 3585, "bottom": 5085, "left": 275}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722375f.jpg"} -{"rects": [{"solidity": 0.9834895090076828, "top": 270, "right": 5040, "bottom": 3660, "left": 1030}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717625f.jpg"} -{"rects": [{"solidity": 0.9834932387747709, "top": 600, "right": 4955, "bottom": 3605, "left": 1165}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708765f.jpg"} -{"rects": [{"solidity": 0.9834932648265681, "top": 450, "right": 3150, "bottom": 2105, "left": 750}, {"solidity": 0.9973668716472589, "top": 2285, "right": 3160, "bottom": 3890, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710316f.jpg"} -{"rects": [{"solidity": 0.9835050023217528, "top": 1490, "right": 1750, "bottom": 2410, "left": 440}, {"solidity": 0.9848807970207213, "top": 355, "right": 1720, "bottom": 1285, "left": 425}], "shape": {"h": 2975, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/706077f.jpg"} -{"rects": [{"solidity": 0.9835346267025076, "top": 420, "right": 3905, "bottom": 1555, "left": 2410}, {"solidity": 0.985085598660129, "top": 1670, "right": 3890, "bottom": 2800, "left": 2410}, {"solidity": 0.9854882991240685, "top": 1640, "right": 2150, "bottom": 2775, "left": 680}, {"solidity": 0.9877074321040765, "top": 410, "right": 2150, "bottom": 1530, "left": 720}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715987f.jpg"} -{"rects": [{"solidity": 0.9835677036941962, "top": 625, "right": 4900, "bottom": 3655, "left": 1150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713557f.jpg"} -{"rects": [{"solidity": 0.9835704589721747, "top": 735, "right": 2720, "bottom": 4315, "left": 280}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508745.jpg"} -{"rects": [{"solidity": 0.9835801616418941, "top": 2540, "right": 4830, "bottom": 3355, "left": 1205}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704174f.jpg"} -{"rects": [{"solidity": 0.9835806267288779, "top": 980, "right": 3620, "bottom": 5015, "left": 270}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723927f.jpg"} -{"rects": [{"solidity": 0.9835830447652026, "top": 575, "right": 3490, "bottom": 2415, "left": 1060}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507915.jpg"} -{"rects": [{"solidity": 0.9835935471289229, "top": 405, "right": 4990, "bottom": 3535, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709972f.jpg"} -{"rects": [{"solidity": 0.9836068997201687, "top": 130, "right": 1870, "bottom": 3585, "left": 130}], "shape": {"h": 3715, "w": 2000}, "file": "/usr/local/google/home/danvk/milstein/1558296.jpg"} -{"rects": [{"solidity": 0.9836195418719691, "top": 610, "right": 1810, "bottom": 2605, "left": 410}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465650.jpg"} -{"rects": [{"solidity": 0.9836217452329813, "top": 175, "right": 3410, "bottom": 2780, "left": 245}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509903.jpg"} -{"rects": [{"solidity": 0.9836270592927593, "top": 915, "right": 3505, "bottom": 2685, "left": 325}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730053f.jpg"} -{"rects": [{"solidity": 0.9836342023575011, "top": 285, "right": 5080, "bottom": 3680, "left": 1060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721721f.jpg"} -{"rects": [{"solidity": 0.9836359720277776, "top": 910, "right": 4665, "bottom": 3225, "left": 1495}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722764f.jpg"} -{"rects": [{"solidity": 0.9836393688538252, "top": 430, "right": 3360, "bottom": 3775, "left": 610}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722072f.jpg"} -{"rects": [{"solidity": 0.9836442239727641, "top": 285, "right": 5100, "bottom": 3750, "left": 1070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701663f.jpg"} -{"rects": [{"solidity": 0.9836448792499605, "top": 395, "right": 1905, "bottom": 1450, "left": 450}], "shape": {"h": 2975, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/705533f.jpg"} -{"rects": [{"solidity": 0.9836476661307509, "top": 290, "right": 5015, "bottom": 3685, "left": 995}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718681f.jpg"} -{"rects": [{"solidity": 0.983663827521959, "top": 635, "right": 3320, "bottom": 2815, "left": 290}, {"solidity": 0.9917354918971649, "top": 3125, "right": 1805, "bottom": 5070, "left": 610}, {"solidity": 0.9924759842301072, "top": 3140, "right": 3280, "bottom": 5080, "left": 2100}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709942f.jpg"} -{"rects": [{"solidity": 0.983670856511753, "top": 1095, "right": 3635, "bottom": 5150, "left": 300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/705168f.jpg"} -{"rects": [{"solidity": 0.9836960399571887, "top": 520, "right": 3175, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712196f.jpg"} -{"rects": [{"solidity": 0.9836980620718768, "top": 410, "right": 3085, "bottom": 3665, "left": 830}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714969f.jpg"} -{"rects": [{"solidity": 0.9837039323241817, "top": 780, "right": 4685, "bottom": 3405, "left": 1260}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719192f.jpg"} -{"rects": [{"solidity": 0.9837433903992834, "top": 130, "right": 5090, "bottom": 3805, "left": 870}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732742f.jpg"} -{"rects": [{"solidity": 0.9837440450124076, "top": 800, "right": 2165, "bottom": 3205, "left": 570}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708492f.jpg"} -{"rects": [{"solidity": 0.9837459714227165, "top": 400, "right": 3205, "bottom": 1785, "left": 1230}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732785f.jpg"} -{"rects": [{"solidity": 0.9837510791503411, "top": 1840, "right": 3715, "bottom": 5565, "left": 850}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711224f.jpg"} -{"rects": [{"solidity": 0.9837545903507661, "top": 730, "right": 4905, "bottom": 3475, "left": 1260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731175f.jpg"} -{"rects": [{"solidity": 0.9837553489118178, "top": 1000, "right": 3630, "bottom": 5020, "left": 270}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717442f.jpg"} -{"rects": [{"solidity": 0.9837605646883998, "top": 1020, "right": 3655, "bottom": 5100, "left": 310}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713012f.jpg"} -{"rects": [{"solidity": 0.9837632747193158, "top": 285, "right": 3520, "bottom": 2775, "left": 390}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509843.jpg"} -{"rects": [{"solidity": 0.9837693495222598, "top": 770, "right": 1920, "bottom": 3055, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714366f.jpg"} -{"rects": [{"solidity": 0.9837722851219901, "top": 330, "right": 5990, "bottom": 3830, "left": 130}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714655f.jpg"} -{"rects": [{"solidity": 0.9837810698941026, "top": 1035, "right": 3365, "bottom": 4660, "left": 370}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719359f.jpg"} -{"rects": [{"solidity": 0.9837877881855374, "top": 130, "right": 3845, "bottom": 5550, "left": 130}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718351f.jpg"} -{"rects": [{"solidity": 0.9838061932181144, "top": 350, "right": 4900, "bottom": 3500, "left": 1180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717519f.jpg"} -{"rects": [{"solidity": 0.9838200645110807, "top": 1050, "right": 1640, "bottom": 3010, "left": 885}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722386f.jpg"} -{"rects": [{"solidity": 0.9838251919820238, "top": 935, "right": 1885, "bottom": 2850, "left": 435}], "shape": {"h": 5990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465660.jpg"} -{"rects": [{"solidity": 0.9838508608637794, "top": 1080, "right": 3620, "bottom": 5165, "left": 275}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/731745f.jpg"} -{"rects": [{"solidity": 0.9838561508295824, "top": 875, "right": 2635, "bottom": 3955, "left": 130}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509409.jpg"} -{"rects": [{"solidity": 0.9838592196273706, "top": 1020, "right": 3590, "bottom": 5055, "left": 255}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718685f.jpg"} -{"rects": [{"solidity": 0.9838708827487793, "top": 1055, "right": 3445, "bottom": 4985, "left": 375}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734141f.jpg"} -{"rects": [{"solidity": 0.983880545961585, "top": 1020, "right": 3595, "bottom": 5025, "left": 265}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713852f.jpg"} -{"rects": [{"solidity": 0.9838920149557621, "top": 2235, "right": 2825, "bottom": 3730, "left": 1000}, {"solidity": 0.9793673140214625, "top": 560, "right": 2790, "bottom": 1330, "left": 1010}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734534f.jpg"} -{"rects": [{"solidity": 0.9839421832895203, "top": 130, "right": 3790, "bottom": 2390, "left": 130}], "shape": {"h": 2640, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/1557973.jpg"} -{"rects": [{"solidity": 0.9839538156233086, "top": 665, "right": 2970, "bottom": 3740, "left": 130}], "shape": {"h": 3870, "w": 3100}, "file": "/usr/local/google/home/danvk/milstein/1558511.jpg"} -{"rects": [{"solidity": 0.9839539172753345, "top": 285, "right": 5095, "bottom": 3720, "left": 950}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723550f.jpg"} -{"rects": [{"solidity": 0.9839687560892155, "top": 1050, "right": 3645, "bottom": 5090, "left": 265}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721152f.jpg"} -{"rects": [{"solidity": 0.9839965885905181, "top": 1090, "right": 2495, "bottom": 3995, "left": 200}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507617.jpg"} -{"rects": [{"solidity": 0.9840114874554049, "top": 410, "right": 5100, "bottom": 3630, "left": 1050}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721953f.jpg"} -{"rects": [{"solidity": 0.9840351693906655, "top": 590, "right": 4945, "bottom": 3710, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734480f.jpg"} -{"rects": [{"solidity": 0.9840850977451978, "top": 505, "right": 4985, "bottom": 3505, "left": 1140}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722131f.jpg"} -{"rects": [{"solidity": 0.984100243647755, "top": 435, "right": 3250, "bottom": 2125, "left": 1105}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/701703f.jpg"} -{"rects": [{"solidity": 0.9841024311638688, "top": 1030, "right": 3620, "bottom": 5060, "left": 295}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713946f.jpg"} -{"rects": [{"solidity": 0.9841229852663518, "top": 565, "right": 2370, "bottom": 3605, "left": 835}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507596.jpg"} -{"rects": [{"solidity": 0.9841441150181618, "top": 415, "right": 2870, "bottom": 1845, "left": 1000}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720485f.jpg"} -{"rects": [{"solidity": 0.9841543629934967, "top": 315, "right": 4935, "bottom": 3510, "left": 1135}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717650f.jpg"} -{"rects": [{"solidity": 0.984155923735005, "top": 290, "right": 5090, "bottom": 3660, "left": 1080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717353f.jpg"} -{"rects": [{"solidity": 0.9841679587395159, "top": 310, "right": 3720, "bottom": 5300, "left": 305}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721522f.jpg"} -{"rects": [{"solidity": 0.9841772634985574, "top": 1100, "right": 2525, "bottom": 4030, "left": 270}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507733.jpg"} -{"rects": [{"solidity": 0.984194670370373, "top": 200, "right": 5625, "bottom": 3720, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717558f.jpg"} -{"rects": [{"solidity": 0.9842038626459334, "top": 130, "right": 2950, "bottom": 3450, "left": 130}], "shape": {"h": 3780, "w": 3080}, "file": "/usr/local/google/home/danvk/milstein/1558482.jpg"} -{"rects": [{"solidity": 0.9842053929523346, "top": 775, "right": 1720, "bottom": 3430, "left": 575}, {"solidity": 0.9974221205231067, "top": 2255, "right": 3765, "bottom": 3680, "left": 1935}, {"solidity": 0.9976303432133513, "top": 780, "right": 3765, "bottom": 2205, "left": 1935}, {"solidity": 0.995732249586391, "top": 785, "right": 5705, "bottom": 2185, "left": 3885}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705259f.jpg"} -{"rects": [{"solidity": 0.9842088581628861, "top": 560, "right": 3585, "bottom": 2970, "left": 280}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723375f.jpg"} -{"rects": [{"solidity": 0.9842128611657601, "top": 1025, "right": 3585, "bottom": 5030, "left": 260}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717687f.jpg"} -{"rects": [{"solidity": 0.9842160990557811, "top": 760, "right": 2875, "bottom": 4490, "left": 130}], "shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508237.jpg"} -{"rects": [{"solidity": 0.9842192000886328, "top": 640, "right": 1990, "bottom": 2950, "left": 405}], "shape": {"h": 6045, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465706.jpg"} -{"rects": [{"solidity": 0.9842364976172542, "top": 355, "right": 5080, "bottom": 3715, "left": 1045}, {"solidity": 0.936117048188417, "top": 745, "right": 1040, "bottom": 3795, "left": 190}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708849f.jpg"} -{"rects": [{"solidity": 0.9842510422613179, "top": 835, "right": 2205, "bottom": 3195, "left": 625}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710159f.jpg"} -{"rects": [{"solidity": 0.9842543221490081, "top": 1120, "right": 4100, "bottom": 5680, "left": 300}], "shape": {"h": 6895, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711243f.jpg"} -{"rects": [{"solidity": 0.9842588501198525, "top": 1245, "right": 2665, "bottom": 4090, "left": 380}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509255.jpg"} -{"rects": [{"solidity": 0.9842725102476642, "top": 130, "right": 5070, "bottom": 3885, "left": 990}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712797f.jpg"} -{"rects": [{"solidity": 0.9843043489146491, "top": 250, "right": 3215, "bottom": 2095, "left": 480}, {"solidity": 0.9780888257395054, "top": 4030, "right": 3185, "bottom": 5880, "left": 450}, {"solidity": 0.9872092264739266, "top": 2140, "right": 3210, "bottom": 3990, "left": 585}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705088f.jpg"} -{"rects": [{"solidity": 0.9843280692947153, "top": 420, "right": 4995, "bottom": 3545, "left": 1150}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717665f.jpg"} -{"rects": [{"solidity": 0.9843399006824929, "top": 270, "right": 5095, "bottom": 3665, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733422f.jpg"} -{"rects": [{"solidity": 0.9843414878764835, "top": 765, "right": 2515, "bottom": 3505, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721853f.jpg"} -{"rects": [{"solidity": 0.9843441577683253, "top": 1075, "right": 3590, "bottom": 5125, "left": 250}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/716852f.jpg"} -{"rects": [{"solidity": 0.9843552118714227, "top": 705, "right": 2035, "bottom": 2695, "left": 530}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728029f.jpg"} -{"rects": [{"solidity": 0.9843574079623781, "top": 275, "right": 5105, "bottom": 3705, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720048f.jpg"} -{"rects": [{"solidity": 0.9843683398672322, "top": 305, "right": 5090, "bottom": 3660, "left": 1100}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719139f.jpg"} -{"rects": [{"solidity": 0.9843789883535314, "top": 275, "right": 5065, "bottom": 3605, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717643f.jpg"} -{"rects": [{"solidity": 0.9843869762086738, "top": 510, "right": 5095, "bottom": 3525, "left": 1275}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700189f.jpg"} -{"rects": [{"solidity": 0.9843923237193208, "top": 465, "right": 3735, "bottom": 2495, "left": 910}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708752f.jpg"} -{"rects": [{"solidity": 0.9843986945746326, "top": 2275, "right": 3005, "bottom": 5515, "left": 620}, {"solidity": 0.9945520358971792, "top": 615, "right": 3005, "bottom": 2200, "left": 620}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708694f.jpg"} -{"rects": [{"solidity": 0.9843999545206766, "top": 1175, "right": 3485, "bottom": 5030, "left": 415}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/722816f.jpg"} -{"rects": [{"solidity": 0.9844074251442384, "top": 505, "right": 2775, "bottom": 1780, "left": 1025}, {"solidity": 0.9919436374572865, "top": 505, "right": 4770, "bottom": 1720, "left": 3140}, {"solidity": 0.9894976437021127, "top": 1985, "right": 4780, "bottom": 3215, "left": 3120}, {"solidity": 0.9864987080103359, "top": 2015, "right": 2725, "bottom": 3230, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732792f.jpg"} -{"rects": [{"solidity": 0.9844119348880094, "top": 425, "right": 5055, "bottom": 3555, "left": 1175}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717663f.jpg"} -{"rects": [{"solidity": 0.9844128652023032, "top": 850, "right": 5755, "bottom": 3255, "left": 4095}, {"solidity": 0.991863434359348, "top": 835, "right": 3855, "bottom": 3235, "left": 2245}, {"solidity": 0.995334611311093, "top": 840, "right": 2000, "bottom": 3230, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711832f.jpg"} -{"rects": [{"solidity": 0.984423709850863, "top": 1125, "right": 3480, "bottom": 4955, "left": 450}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722163f.jpg"} -{"rects": [{"solidity": 0.9844466140976279, "top": 745, "right": 2025, "bottom": 3165, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724832f.jpg"} -{"rects": [{"solidity": 0.9844472099473734, "top": 600, "right": 5040, "bottom": 3670, "left": 1155}], "shape": {"h": 4030, "w": 6230}, "file": "/usr/local/google/home/danvk/milstein/703898f.jpg"} -{"rects": [{"solidity": 0.984454075767386, "top": 635, "right": 4825, "bottom": 3710, "left": 1070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713614f.jpg"} -{"rects": [{"solidity": 0.9844676048869415, "top": 1090, "right": 3890, "bottom": 5490, "left": 370}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708723f.jpg"} -{"rects": [{"solidity": 0.9844681839294008, "top": 2125, "right": 4940, "bottom": 3365, "left": 3285}, {"solidity": 0.986608066508254, "top": 585, "right": 2605, "bottom": 1810, "left": 940}, {"solidity": 0.9894982273467693, "top": 610, "right": 4940, "bottom": 1815, "left": 3295}, {"solidity": 0.9876821635917362, "top": 2310, "right": 2580, "bottom": 3185, "left": 950}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707242f.jpg"} -{"rects": [{"solidity": 0.9844770514491052, "top": 735, "right": 3715, "bottom": 3180, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714844f.jpg"} -{"rects": [{"solidity": 0.9845260300347917, "top": 1480, "right": 3660, "bottom": 2880, "left": 895}], "shape": {"h": 5990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465545.jpg"} -{"rects": [{"solidity": 0.9845370522086891, "top": 130, "right": 3725, "bottom": 2430, "left": 130}], "shape": {"h": 2560, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/1557784.jpg"} -{"rects": [{"solidity": 0.9845382318053456, "top": 160, "right": 5045, "bottom": 3840, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717900f.jpg"} -{"rects": [{"solidity": 0.9845473102399918, "top": 2690, "right": 3575, "bottom": 5390, "left": 185}, {"solidity": 0.9791487262991435, "top": 830, "right": 3570, "bottom": 1855, "left": 245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734466f.jpg"} -{"rects": [{"solidity": 0.9845526421335621, "top": 405, "right": 5055, "bottom": 3655, "left": 130}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721334f.jpg"} -{"rects": [{"solidity": 0.9845607276618512, "top": 440, "right": 2855, "bottom": 1975, "left": 935}, {"solidity": 0.9949330581573794, "top": 2225, "right": 2830, "bottom": 3735, "left": 920}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731469f.jpg"} -{"rects": [{"solidity": 0.9845733808047753, "top": 985, "right": 1785, "bottom": 3005, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714237f.jpg"} -{"rects": [{"solidity": 0.9845759189505131, "top": 1305, "right": 2965, "bottom": 2640, "left": 1795}, {"solidity": 0.9910982454709776, "top": 1785, "right": 1570, "bottom": 2630, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731253f.jpg"} -{"rects": [{"solidity": 0.9845824805355461, "top": 1010, "right": 3590, "bottom": 5050, "left": 230}], "shape": {"h": 6140, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/716854f.jpg"} -{"rects": [{"solidity": 0.9845908922621252, "top": 800, "right": 3210, "bottom": 2690, "left": 485}, {"solidity": 0.9694925018544623, "top": 3470, "right": 3190, "bottom": 5310, "left": 500}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705846f.jpg"} -{"rects": [{"solidity": 0.9846023729130475, "top": 415, "right": 4945, "bottom": 3505, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709959f.jpg"} -{"rects": [{"solidity": 0.9846099480551209, "top": 245, "right": 5670, "bottom": 4125, "left": 1120}], "shape": {"h": 4435, "w": 6915}, "file": "/usr/local/google/home/danvk/milstein/708345f.jpg"} -{"rects": [{"solidity": 0.984610447839924, "top": 1035, "right": 1935, "bottom": 3155, "left": 545}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712788f.jpg"} -{"rects": [{"solidity": 0.9846248319431328, "top": 975, "right": 3610, "bottom": 5080, "left": 285}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712831f.jpg"} -{"rects": [{"solidity": 0.9846274449203766, "top": 310, "right": 3900, "bottom": 2860, "left": 810}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509389.jpg"} -{"rects": [{"solidity": 0.9846281727913418, "top": 4045, "right": 3325, "bottom": 6010, "left": 585}, {"solidity": 0.974835014134573, "top": 2050, "right": 3380, "bottom": 3980, "left": 620}, {"solidity": 0.9936927085579745, "top": 155, "right": 3365, "bottom": 2000, "left": 665}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726244f.jpg"} -{"rects": [{"solidity": 0.9846337775589858, "top": 565, "right": 2780, "bottom": 1830, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732780f.jpg"} -{"rects": [{"solidity": 0.9846410195861922, "top": 630, "right": 4865, "bottom": 3665, "left": 1115}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709866f.jpg"} -{"rects": [{"solidity": 0.9846669297040452, "top": 975, "right": 3650, "bottom": 4995, "left": 300}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712338f.jpg"} -{"rects": [{"solidity": 0.9846680374438612, "top": 585, "right": 4935, "bottom": 2985, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717418f.jpg"} -{"rects": [{"solidity": 0.9846720241715383, "top": 130, "right": 1935, "bottom": 3360, "left": 130}], "shape": {"h": 3490, "w": 2065}, "file": "/usr/local/google/home/danvk/milstein/1557938.jpg"} -{"rects": [{"solidity": 0.9846905080377407, "top": 1275, "right": 3390, "bottom": 4745, "left": 530}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712496f.jpg"} -{"rects": [{"solidity": 0.9846912537420965, "top": 430, "right": 3355, "bottom": 3640, "left": 1760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713860f.jpg"} -{"rects": [{"solidity": 0.9847127105978669, "top": 955, "right": 3200, "bottom": 1950, "left": 995}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725628f.jpg"} -{"rects": [{"solidity": 0.9847250552349127, "top": 2465, "right": 2440, "bottom": 3995, "left": 370}], "shape": {"h": 4500, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596905.jpg"} -{"rects": [{"solidity": 0.9847282842359899, "top": 130, "right": 5070, "bottom": 3855, "left": 130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701023f.jpg"} -{"rects": [{"solidity": 0.9847384035630811, "top": 310, "right": 4950, "bottom": 3475, "left": 1145}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720491f.jpg"} -{"rects": [{"solidity": 0.9847412945111155, "top": 500, "right": 3105, "bottom": 2080, "left": 1065}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732803f.jpg"} -{"rects": [{"solidity": 0.9847444850023805, "top": 525, "right": 3255, "bottom": 2410, "left": 535}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726852f.jpg"} -{"rects": [{"solidity": 0.9847454173176389, "top": 715, "right": 2700, "bottom": 3560, "left": 860}, {"solidity": 0.9954510338341355, "top": 675, "right": 5140, "bottom": 2120, "left": 3305}, {"solidity": 0.9899571731373694, "top": 2120, "right": 5105, "bottom": 3560, "left": 3270}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702745f.jpg"} -{"rects": [{"solidity": 0.9847471497043568, "top": 735, "right": 2765, "bottom": 1985, "left": 1120}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707205f.jpg"} -{"rects": [{"solidity": 0.9847546756214729, "top": 395, "right": 2670, "bottom": 1710, "left": 990}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717492f.jpg"} -{"rects": [{"solidity": 0.9847632821580937, "top": 835, "right": 4800, "bottom": 3575, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716800f.jpg"} -{"rects": [{"solidity": 0.9847662580588612, "top": 280, "right": 5010, "bottom": 3675, "left": 985}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721504f.jpg"} -{"rects": [{"solidity": 0.9847758681985302, "top": 330, "right": 2860, "bottom": 1800, "left": 945}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707959f.jpg"} -{"rects": [{"solidity": 0.9848107650930248, "top": 460, "right": 3705, "bottom": 2590, "left": 840}], "shape": {"h": 2970, "w": 4585}, "file": "/usr/local/google/home/danvk/milstein/700086f.jpg"} -{"rects": [{"solidity": 0.9848220429523395, "top": 615, "right": 5005, "bottom": 3525, "left": 1175}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722374f.jpg"} -{"rects": [{"solidity": 0.9848224149224257, "top": 930, "right": 1655, "bottom": 3110, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709735f.jpg"} -{"rects": [{"solidity": 0.9848292294420025, "top": 815, "right": 4895, "bottom": 3435, "left": 1200}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722766f.jpg"} -{"rects": [{"solidity": 0.9848322370873308, "top": 490, "right": 3390, "bottom": 3550, "left": 445}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725701f.jpg"} -{"rects": [{"solidity": 0.9848337224479291, "top": 565, "right": 1630, "bottom": 2400, "left": 435}], "shape": {"h": 5795, "w": 4525}, "file": "/usr/local/google/home/danvk/milstein/417615.jpg"} -{"rects": [{"solidity": 0.9848434904142823, "top": 190, "right": 3325, "bottom": 2765, "left": 280}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509811.jpg"} -{"rects": [{"solidity": 0.9848470206227411, "top": 1240, "right": 3895, "bottom": 2450, "left": 630}], "shape": {"h": 5720, "w": 4585}, "file": "/usr/local/google/home/danvk/milstein/1823510.jpg"} -{"rects": [{"solidity": 0.9848759696730999, "top": 1035, "right": 3830, "bottom": 6010, "left": 130}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704788f.jpg"} -{"rects": [{"solidity": 0.9848780319317266, "top": 330, "right": 5170, "bottom": 3690, "left": 1090}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720978f.jpg"} -{"rects": [{"solidity": 0.9849053924526963, "top": 130, "right": 3800, "bottom": 3160, "left": 240}, {"solidity": 0.9980999237752062, "top": 3230, "right": 3700, "bottom": 5875, "left": 265}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717239f.jpg"} -{"rects": [{"solidity": 0.9849092528273369, "top": 305, "right": 5120, "bottom": 3745, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716965f.jpg"} -{"rects": [{"solidity": 0.9849266155458635, "top": 1055, "right": 3385, "bottom": 4775, "left": 325}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713254f.jpg"} -{"rects": [{"solidity": 0.9849266474368672, "top": 130, "right": 3460, "bottom": 2365, "left": 130}], "shape": {"h": 2900, "w": 3590}, "file": "/usr/local/google/home/danvk/milstein/1557897.jpg"} -{"rects": [{"solidity": 0.984932717807681, "top": 295, "right": 5120, "bottom": 3780, "left": 990}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726023f.jpg"} -{"rects": [{"solidity": 0.9849483673199295, "top": 1150, "right": 3530, "bottom": 2670, "left": 1085}], "shape": {"h": 6005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465522.jpg"} -{"rects": [{"solidity": 0.984958264809011, "top": 450, "right": 2065, "bottom": 1290, "left": 130}], "shape": {"h": 1420, "w": 2195}, "file": "/usr/local/google/home/danvk/milstein/105152.jpg"} -{"rects": [{"solidity": 0.9849619509706157, "top": 275, "right": 5090, "bottom": 3685, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717711f.jpg"} -{"rects": [{"solidity": 0.9849625740390427, "top": 1120, "right": 3430, "bottom": 4865, "left": 430}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717009f.jpg"} -{"rects": [{"solidity": 0.9849678693155977, "top": 560, "right": 5075, "bottom": 3610, "left": 1220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720801f.jpg"} -{"rects": [{"solidity": 0.9849814774970983, "top": 435, "right": 3265, "bottom": 3835, "left": 645}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/714438f.jpg"} -{"rects": [{"solidity": 0.9849823781662876, "top": 580, "right": 2310, "bottom": 1850, "left": 585}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704929f.jpg"} -{"rects": [{"solidity": 0.9849882837511758, "top": 310, "right": 5050, "bottom": 3595, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712997f.jpg"} -{"rects": [{"solidity": 0.9849942415825486, "top": 2140, "right": 5385, "bottom": 3715, "left": 3010}, {"solidity": 0.9957951871214816, "top": 595, "right": 2720, "bottom": 2020, "left": 900}, {"solidity": 0.996428256891507, "top": 2255, "right": 2705, "bottom": 3680, "left": 895}, {"solidity": 0.9947274449069782, "top": 595, "right": 5055, "bottom": 2000, "left": 3235}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706136f.jpg"} -{"rects": [{"solidity": 0.9849984279201384, "top": 830, "right": 2060, "bottom": 3215, "left": 670}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728895f.jpg"} -{"rects": [{"solidity": 0.9850099744575836, "top": 305, "right": 5100, "bottom": 3720, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717120f.jpg"} -{"rects": [{"solidity": 0.9850119954425717, "top": 320, "right": 5090, "bottom": 3720, "left": 1030}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700201f.jpg"} -{"rects": [{"solidity": 0.9850307005871385, "top": 445, "right": 4945, "bottom": 3850, "left": 655}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712845f.jpg"} -{"rects": [{"solidity": 0.9850332031763809, "top": 305, "right": 5040, "bottom": 3685, "left": 1025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717299f.jpg"} -{"rects": [{"solidity": 0.9850583759041264, "top": 635, "right": 5090, "bottom": 3520, "left": 3240}, {"solidity": 0.9964496261277381, "top": 715, "right": 2735, "bottom": 2165, "left": 875}, {"solidity": 0.9957820256668225, "top": 2165, "right": 2750, "bottom": 3605, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705292f.jpg"} -{"rects": [{"solidity": 0.9850674902222646, "top": 1410, "right": 3385, "bottom": 4955, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721340f.jpg"} -{"rects": [{"solidity": 0.9850799626682696, "top": 840, "right": 2015, "bottom": 3250, "left": 340}, {"solidity": 0.9988127631173632, "top": 845, "right": 3820, "bottom": 3255, "left": 2195}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700631f.jpg"} -{"rects": [{"solidity": 0.9850862708860376, "top": 1755, "right": 2220, "bottom": 2885, "left": 720}, {"solidity": 0.9890205806688718, "top": 400, "right": 2230, "bottom": 1535, "left": 740}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716309f.jpg"} -{"rects": [{"solidity": 0.9850912277741525, "top": 455, "right": 3235, "bottom": 3310, "left": 615}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713399f.jpg"} -{"rects": [{"solidity": 0.9850914070194825, "top": 430, "right": 3340, "bottom": 2350, "left": 595}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731384f.jpg"} -{"rects": [{"solidity": 0.9851050876344071, "top": 1090, "right": 3630, "bottom": 5110, "left": 230}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722309f.jpg"} -{"rects": [{"solidity": 0.9851175673917867, "top": 1035, "right": 3155, "bottom": 2125, "left": 1520}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509627.jpg"} -{"rects": [{"solidity": 0.9851182493577039, "top": 985, "right": 3485, "bottom": 6010, "left": 150}, {"solidity": 0.9421346803359536, "top": 130, "right": 3390, "bottom": 980, "left": 190}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717346f.jpg"} -{"rects": [{"solidity": 0.9851236177994441, "top": 615, "right": 2710, "bottom": 3515, "left": 840}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704618f.jpg"} -{"rects": [{"solidity": 0.9851299781613371, "top": 640, "right": 5020, "bottom": 3575, "left": 1190}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722710f.jpg"} -{"rects": [{"solidity": 0.9851450452144481, "top": 615, "right": 2360, "bottom": 1930, "left": 660}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715200f.jpg"} -{"rects": [{"solidity": 0.9851499989032495, "top": 715, "right": 2390, "bottom": 3425, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717628f.jpg"} -{"rects": [{"solidity": 0.9851545705857955, "top": 1075, "right": 3490, "bottom": 5040, "left": 450}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716643f.jpg"} -{"rects": [{"solidity": 0.9851711033058341, "top": 290, "right": 3525, "bottom": 2635, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727251f.jpg"} -{"rects": [{"solidity": 0.9851732452918247, "top": 2215, "right": 2885, "bottom": 3760, "left": 990}, {"solidity": 0.9584915200493628, "top": 395, "right": 2900, "bottom": 1965, "left": 995}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/715152f.jpg"} -{"rects": [{"solidity": 0.985181577188345, "top": 1030, "right": 3610, "bottom": 5030, "left": 270}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723683f.jpg"} -{"rects": [{"solidity": 0.9851917988583351, "top": 400, "right": 5030, "bottom": 3520, "left": 1145}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717656f.jpg"} -{"rects": [{"solidity": 0.9852097756637626, "top": 1195, "right": 3385, "bottom": 4690, "left": 345}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720984f.jpg"} -{"rects": [{"solidity": 0.9852223270845922, "top": 445, "right": 3105, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700145f.jpg"} -{"rects": [{"solidity": 0.9852232950971589, "top": 825, "right": 2780, "bottom": 3560, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703069f.jpg"} -{"rects": [{"solidity": 0.985248302594095, "top": 890, "right": 2550, "bottom": 3740, "left": 295}], "shape": {"h": 4580, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/721627f.jpg"} -{"rects": [{"solidity": 0.9852613137789734, "top": 990, "right": 3575, "bottom": 5030, "left": 285}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717925f.jpg"} -{"rects": [{"solidity": 0.9852638368602545, "top": 1160, "right": 3665, "bottom": 2840, "left": 1235}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465548.jpg"} -{"rects": [{"solidity": 0.985269862600579, "top": 1020, "right": 3535, "bottom": 5050, "left": 330}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710976f.jpg"} -{"rects": [{"solidity": 0.9852758896735259, "top": 435, "right": 5155, "bottom": 3630, "left": 1110}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709135f.jpg"} -{"rects": [{"solidity": 0.9852765203255703, "top": 1065, "right": 3630, "bottom": 5100, "left": 290}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712984f.jpg"} -{"rects": [{"solidity": 0.9852789015997023, "top": 450, "right": 2740, "bottom": 3615, "left": 1345}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/715248f.jpg"} -{"rects": [{"solidity": 0.9852869201171625, "top": 1610, "right": 4035, "bottom": 2755, "left": 2555}, {"solidity": 0.97468375025422, "top": 425, "right": 2380, "bottom": 1530, "left": 960}, {"solidity": 0.9763247649945928, "top": 1660, "right": 2400, "bottom": 2740, "left": 985}, {"solidity": 0.9724708793787601, "top": 410, "right": 4045, "bottom": 1475, "left": 2655}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516963.jpg"} -{"rects": [{"solidity": 0.9852956975977746, "top": 1035, "right": 3455, "bottom": 5085, "left": 230}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718130f.jpg"} -{"rects": [{"solidity": 0.9853071368014426, "top": 300, "right": 4975, "bottom": 3600, "left": 1045}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722658f.jpg"} -{"rects": [{"solidity": 0.9853103542257066, "top": 940, "right": 3680, "bottom": 5050, "left": 335}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/710951f.jpg"} -{"rects": [{"solidity": 0.9853359796231326, "top": 560, "right": 3830, "bottom": 5930, "left": 230}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/716632f.jpg"} -{"rects": [{"solidity": 0.9853508322340506, "top": 530, "right": 3045, "bottom": 1935, "left": 845}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720668f.jpg"} -{"rects": [{"solidity": 0.985358912040999, "top": 395, "right": 3285, "bottom": 3780, "left": 1750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712479f.jpg"} -{"rects": [{"solidity": 0.9853658855486077, "top": 530, "right": 3135, "bottom": 2160, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719445f.jpg"} -{"rects": [{"solidity": 0.9853785869009662, "top": 2120, "right": 2765, "bottom": 3380, "left": 1115}, {"solidity": 0.9923995320884575, "top": 2130, "right": 4995, "bottom": 3365, "left": 3340}, {"solidity": 0.990710886395564, "top": 495, "right": 5010, "bottom": 1750, "left": 3360}, {"solidity": 0.9898174855778794, "top": 500, "right": 2755, "bottom": 1735, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705261f.jpg"} -{"rects": [{"solidity": 0.9853840348035516, "top": 1830, "right": 2380, "bottom": 3330, "left": 385}, {"solidity": 0.9952373131877156, "top": 425, "right": 2370, "bottom": 1625, "left": 575}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716412f.jpg"} -{"rects": [{"solidity": 0.9853864355450218, "top": 430, "right": 3195, "bottom": 3085, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713229f.jpg"} -{"rects": [{"solidity": 0.9853909964581066, "top": 620, "right": 4995, "bottom": 3475, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717276f.jpg"} -{"rects": [{"solidity": 0.9853930507374403, "top": 725, "right": 3260, "bottom": 2165, "left": 1215}], "shape": {"h": 2960, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507545.jpg"} -{"rects": [{"solidity": 0.985398156127825, "top": 1080, "right": 3470, "bottom": 4890, "left": 375}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712669f.jpg"} -{"rects": [{"solidity": 0.9853987102102498, "top": 1095, "right": 3365, "bottom": 4930, "left": 305}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709962f.jpg"} -{"rects": [{"solidity": 0.9854006474998692, "top": 525, "right": 4925, "bottom": 3485, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712920f.jpg"} -{"rects": [{"solidity": 0.9854016757023164, "top": 435, "right": 3185, "bottom": 2055, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700229f.jpg"} -{"rects": [{"solidity": 0.9854163497359009, "top": 1075, "right": 3890, "bottom": 6130, "left": 310}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/715692f.jpg"} -{"rects": [{"solidity": 0.9854234492338412, "top": 360, "right": 2900, "bottom": 1830, "left": 910}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718978f.jpg"} -{"rects": [{"solidity": 0.9854245023151899, "top": 450, "right": 3760, "bottom": 2615, "left": 690}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706368f.jpg"} -{"rects": [{"solidity": 0.9854407929055816, "top": 1665, "right": 4960, "bottom": 3640, "left": 1125}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732065f.jpg"} -{"rects": [{"solidity": 0.985445138828314, "top": 295, "right": 5045, "bottom": 3680, "left": 1020}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720142f.jpg"} -{"rects": [{"solidity": 0.9854552054030931, "top": 890, "right": 1920, "bottom": 2945, "left": 495}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715532f.jpg"} -{"rects": [{"solidity": 0.9854761936821695, "top": 505, "right": 5630, "bottom": 3955, "left": 1285}], "shape": {"h": 4425, "w": 6900}, "file": "/usr/local/google/home/danvk/milstein/702211f.jpg"} -{"rects": [{"solidity": 0.9854821055424724, "top": 475, "right": 3130, "bottom": 2080, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721089f.jpg"} -{"rects": [{"solidity": 0.9855000041642722, "top": 2210, "right": 2995, "bottom": 3785, "left": 1035}, {"solidity": 0.986668475288991, "top": 4090, "right": 2940, "bottom": 5645, "left": 1015}, {"solidity": 0.9940684032263697, "top": 445, "right": 2975, "bottom": 1960, "left": 1060}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/701764f.jpg"} -{"rects": [{"solidity": 0.9855054044819281, "top": 565, "right": 2875, "bottom": 3345, "left": 690}, {"solidity": 0.9981253376907748, "top": 535, "right": 5385, "bottom": 3390, "left": 3370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705125f.jpg"} -{"rects": [{"solidity": 0.9855091909298269, "top": 200, "right": 3370, "bottom": 2785, "left": 320}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509973.jpg"} -{"rects": [{"solidity": 0.9855104649383849, "top": 515, "right": 2840, "bottom": 1935, "left": 1025}, {"solidity": 0.9834172590837282, "top": 520, "right": 5045, "bottom": 1940, "left": 3210}, {"solidity": 0.9985435714863662, "top": 2155, "right": 5010, "bottom": 3550, "left": 3225}, {"solidity": 0.9654268289485414, "top": 2165, "right": 2860, "bottom": 3565, "left": 1065}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725618f.jpg"} -{"rects": [{"solidity": 0.9855189594980794, "top": 270, "right": 5065, "bottom": 3690, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718926f.jpg"} -{"rects": [{"solidity": 0.9855223124335408, "top": 845, "right": 3265, "bottom": 2795, "left": 510}, {"solidity": 0.976931574655313, "top": 3360, "right": 3265, "bottom": 5300, "left": 515}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703573f.jpg"} -{"rects": [{"solidity": 0.9855289779523386, "top": 420, "right": 3395, "bottom": 3785, "left": 335}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717686f.jpg"} -{"rects": [{"solidity": 0.9855344200433596, "top": 290, "right": 5100, "bottom": 3745, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726041f.jpg"} -{"rects": [{"solidity": 0.9855419124572915, "top": 305, "right": 5030, "bottom": 3680, "left": 1010}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722712f.jpg"} -{"rects": [{"solidity": 0.9855434200401859, "top": 2255, "right": 3310, "bottom": 4045, "left": 715}, {"solidity": 0.9813054102741329, "top": 4140, "right": 3300, "bottom": 5930, "left": 705}, {"solidity": 0.9720879084895981, "top": 335, "right": 3320, "bottom": 2125, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725616f.jpg"} -{"rects": [{"solidity": 0.9855450270298148, "top": 295, "right": 5160, "bottom": 3650, "left": 1100}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719739f.jpg"} -{"rects": [{"solidity": 0.985545523629349, "top": 855, "right": 3015, "bottom": 2760, "left": 350}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465697.jpg"} -{"rects": [{"solidity": 0.9855527112558197, "top": 355, "right": 5315, "bottom": 3620, "left": 1225}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732297f.jpg"} -{"rects": [{"solidity": 0.98555615538467, "top": 305, "right": 5125, "bottom": 3750, "left": 1060}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720625f.jpg"} -{"rects": [{"solidity": 0.9855675891962714, "top": 300, "right": 5055, "bottom": 3665, "left": 1055}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717754f.jpg"} -{"rects": [{"solidity": 0.9855759328692887, "top": 640, "right": 4945, "bottom": 3635, "left": 1140}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708767f.jpg"} -{"rects": [{"solidity": 0.985581749848879, "top": 340, "right": 1960, "bottom": 2385, "left": 555}], "shape": {"h": 5985, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465648.jpg"} -{"rects": [{"solidity": 0.9855831796697824, "top": 610, "right": 5445, "bottom": 3375, "left": 3290}, {"solidity": 0.9827931534770329, "top": 610, "right": 2845, "bottom": 3400, "left": 705}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708757f.jpg"} -{"rects": [{"solidity": 0.985589831476721, "top": 375, "right": 3300, "bottom": 2330, "left": 560}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727014f.jpg"} -{"rects": [{"solidity": 0.9855926653569089, "top": 2615, "right": 1945, "bottom": 3570, "left": 665}, {"solidity": 0.9911815987124464, "top": 1480, "right": 1945, "bottom": 2405, "left": 705}, {"solidity": 0.9932803212668134, "top": 365, "right": 1955, "bottom": 1270, "left": 720}], "shape": {"h": 3950, "w": 2565}, "file": "/usr/local/google/home/danvk/milstein/731411f.jpg"} -{"rects": [{"solidity": 0.9856168388228416, "top": 3450, "right": 3705, "bottom": 5645, "left": 640}], "shape": {"h": 6020, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/465547.jpg"} -{"rects": [{"solidity": 0.9856306421143468, "top": 1245, "right": 3500, "bottom": 5080, "left": 420}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/719418f.jpg"} -{"rects": [{"solidity": 0.985631452337779, "top": 470, "right": 3315, "bottom": 2320, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713800f.jpg"} -{"rects": [{"solidity": 0.985632052153108, "top": 430, "right": 3010, "bottom": 1910, "left": 935}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700714f.jpg"} -{"rects": [{"solidity": 0.9856329610744275, "top": 440, "right": 3145, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724302f.jpg"} -{"rects": [{"solidity": 0.9856631021938045, "top": 500, "right": 2910, "bottom": 1830, "left": 1145}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727229f.jpg"} -{"rects": [{"solidity": 0.9856646886277509, "top": 465, "right": 5070, "bottom": 3755, "left": 1040}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715621f.jpg"} -{"rects": [{"solidity": 0.9856665885187191, "top": 1100, "right": 3380, "bottom": 4965, "left": 480}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704851f.jpg"} -{"rects": [{"solidity": 0.9856673065190542, "top": 3205, "right": 4385, "bottom": 5475, "left": 2505}, {"solidity": 0.9614715284744504, "top": 3220, "right": 2380, "bottom": 5465, "left": 375}, {"solidity": 0.9454373496154328, "top": 1240, "right": 2525, "bottom": 2895, "left": 485}], "shape": {"h": 6020, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465574.jpg"} -{"rects": [{"solidity": 0.9856676981403504, "top": 1040, "right": 3625, "bottom": 5130, "left": 305}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712490f.jpg"} -{"rects": [{"solidity": 0.9856691348097519, "top": 620, "right": 4530, "bottom": 3425, "left": 2500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733028f.jpg"} -{"rects": [{"solidity": 0.9856724481531097, "top": 500, "right": 4955, "bottom": 3485, "left": 1135}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712866f.jpg"} -{"rects": [{"solidity": 0.9856752157893792, "top": 565, "right": 2645, "bottom": 3635, "left": 555}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722549f.jpg"} -{"rects": [{"solidity": 0.9856838894793986, "top": 905, "right": 2635, "bottom": 3860, "left": 340}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507727.jpg"} -{"rects": [{"solidity": 0.9856892726577962, "top": 1190, "right": 3400, "bottom": 4960, "left": 460}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722676f.jpg"} -{"rects": [{"solidity": 0.9856933259370142, "top": 320, "right": 5075, "bottom": 3680, "left": 985}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719406f.jpg"} -{"rects": [{"solidity": 0.9857028093188331, "top": 480, "right": 3365, "bottom": 2435, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710975f.jpg"} -{"rects": [{"solidity": 0.9857279274123767, "top": 775, "right": 2065, "bottom": 3125, "left": 495}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707633f.jpg"} -{"rects": [{"solidity": 0.9857596040815669, "top": 915, "right": 3125, "bottom": 2220, "left": 1310}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509585.jpg"} -{"rects": [{"solidity": 0.9857605234241176, "top": 455, "right": 5075, "bottom": 3675, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720354f.jpg"} -{"rects": [{"solidity": 0.9857671012850582, "top": 375, "right": 4985, "bottom": 3520, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709956f.jpg"} -{"rects": [{"solidity": 0.9857766806622366, "top": 400, "right": 4490, "bottom": 2720, "left": 1485}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508899.jpg"} -{"rects": [{"solidity": 0.9857881061170385, "top": 130, "right": 3715, "bottom": 1940, "left": 130}], "shape": {"h": 2515, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1557972.jpg"} -{"rects": [{"solidity": 0.9857898854445234, "top": 485, "right": 5080, "bottom": 3690, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712275f.jpg"} -{"rects": [{"solidity": 0.9857941956424396, "top": 775, "right": 4990, "bottom": 3530, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703182f.jpg"} -{"rects": [{"solidity": 0.9857972606946387, "top": 430, "right": 3320, "bottom": 2355, "left": 550}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704069f.jpg"} -{"rects": [{"solidity": 0.985798868031193, "top": 305, "right": 5085, "bottom": 3670, "left": 1075}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720650f.jpg"} -{"rects": [{"solidity": 0.9857989751147135, "top": 970, "right": 3410, "bottom": 4915, "left": 310}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712684f.jpg"} -{"rects": [{"solidity": 0.9857993624404545, "top": 300, "right": 3455, "bottom": 2695, "left": 250}, {"solidity": 0.9878231059307507, "top": 2860, "right": 2850, "bottom": 4330, "left": 955}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715416f.jpg"} -{"rects": [{"solidity": 0.9858056216452239, "top": 550, "right": 4825, "bottom": 3460, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718285f.jpg"} -{"rects": [{"solidity": 0.9858063232707758, "top": 270, "right": 5065, "bottom": 3735, "left": 1000}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720628f.jpg"} -{"rects": [{"solidity": 0.985807031894851, "top": 265, "right": 5095, "bottom": 3650, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723997f.jpg"} -{"rects": [{"solidity": 0.9858180106546179, "top": 580, "right": 4980, "bottom": 3540, "left": 1225}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710155f.jpg"} -{"rects": [{"solidity": 0.9858199309015948, "top": 630, "right": 2670, "bottom": 3525, "left": 820}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703819f.jpg"} -{"rects": [{"solidity": 0.9858429197480142, "top": 1195, "right": 3190, "bottom": 2755, "left": 815}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717796f.jpg"} -{"rects": [{"solidity": 0.985857280452567, "top": 655, "right": 2740, "bottom": 3500, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705148f.jpg"} -{"rects": [{"solidity": 0.9858615679920503, "top": 330, "right": 5690, "bottom": 3810, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708761f.jpg"} -{"rects": [{"solidity": 0.985864684264984, "top": 790, "right": 4975, "bottom": 3380, "left": 1160}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717209f.jpg"} -{"rects": [{"solidity": 0.9858707392311576, "top": 330, "right": 5045, "bottom": 3655, "left": 955}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719403f.jpg"} -{"rects": [{"solidity": 0.9858724319040065, "top": 1370, "right": 3445, "bottom": 4830, "left": 380}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723419f.jpg"} -{"rects": [{"solidity": 0.9858809537850641, "top": 550, "right": 2925, "bottom": 1950, "left": 1075}, {"solidity": 0.9937945505141446, "top": 4125, "right": 2905, "bottom": 5525, "left": 1080}, {"solidity": 0.9798889730002524, "top": 2385, "right": 2840, "bottom": 3620, "left": 1185}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731066f.jpg"} -{"rects": [{"solidity": 0.9858845005797173, "top": 305, "right": 2540, "bottom": 1600, "left": 560}, {"solidity": 0.9841087852282797, "top": 1690, "right": 2520, "bottom": 2990, "left": 550}], "shape": {"h": 4580, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/727193f.jpg"} -{"rects": [{"solidity": 0.9858886305435609, "top": 1325, "right": 3415, "bottom": 4805, "left": 360}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710469f.jpg"} -{"rects": [{"solidity": 0.985900335063113, "top": 390, "right": 3175, "bottom": 1895, "left": 1205}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/704683f.jpg"} -{"rects": [{"solidity": 0.9859007387358776, "top": 640, "right": 3250, "bottom": 2605, "left": 505}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734700f.jpg"} -{"rects": [{"solidity": 0.9859062671681528, "top": 985, "right": 3595, "bottom": 5000, "left": 290}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/711931f.jpg"} -{"rects": [{"solidity": 0.9859064797294214, "top": 465, "right": 5000, "bottom": 3605, "left": 1175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712837f.jpg"} -{"rects": [{"solidity": 0.9859088205188666, "top": 400, "right": 5025, "bottom": 3445, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700146f.jpg"} -{"rects": [{"solidity": 0.9859092143951754, "top": 450, "right": 3260, "bottom": 3750, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714673f.jpg"} -{"rects": [{"solidity": 0.9859311709920877, "top": 460, "right": 4920, "bottom": 3580, "left": 1045}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717655f.jpg"} -{"rects": [{"solidity": 0.9859369708984327, "top": 2005, "right": 3170, "bottom": 4005, "left": 365}, {"solidity": 0.9310853857509129, "top": 405, "right": 2775, "bottom": 1820, "left": 925}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723189f.jpg"} -{"rects": [{"solidity": 0.9859391457734951, "top": 490, "right": 5040, "bottom": 3595, "left": 1155}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701834f.jpg"} -{"rects": [{"solidity": 0.9859423938811884, "top": 865, "right": 2360, "bottom": 3800, "left": 375}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711389f.jpg"} -{"rects": [{"solidity": 0.9859469680691049, "top": 835, "right": 2475, "bottom": 3700, "left": 390}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508935.jpg"} -{"rects": [{"solidity": 0.9859621984061678, "top": 530, "right": 4955, "bottom": 3500, "left": 1140}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712177f.jpg"} -{"rects": [{"solidity": 0.9859675732476815, "top": 845, "right": 5855, "bottom": 3075, "left": 1115}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730974f.jpg"} -{"rects": [{"solidity": 0.9859694877175872, "top": 1035, "right": 3340, "bottom": 4850, "left": 300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709964f.jpg"} -{"rects": [{"solidity": 0.9859820177890023, "top": 460, "right": 3215, "bottom": 3450, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714126f.jpg"} -{"rects": [{"solidity": 0.985983853466226, "top": 1070, "right": 5300, "bottom": 2470, "left": 905}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734454f.jpg"} -{"rects": [{"solidity": 0.9859889041175368, "top": 365, "right": 5040, "bottom": 3665, "left": 985}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717484f.jpg"} -{"rects": [{"solidity": 0.9859905833944366, "top": 775, "right": 3270, "bottom": 2585, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715346f.jpg"} -{"rects": [{"solidity": 0.9859915838001555, "top": 480, "right": 5065, "bottom": 3540, "left": 1215}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722741f.jpg"} -{"rects": [{"solidity": 0.9859926020008183, "top": 315, "right": 5065, "bottom": 3725, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718806f.jpg"} -{"rects": [{"solidity": 0.9859978640809615, "top": 570, "right": 4875, "bottom": 3505, "left": 1320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732929f.jpg"} -{"rects": [{"solidity": 0.9860078990290946, "top": 420, "right": 2955, "bottom": 2005, "left": 980}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700059f.jpg"} -{"rects": [{"solidity": 0.9860166402356991, "top": 3370, "right": 1640, "bottom": 5605, "left": 130}], "shape": {"h": 6020, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465527.jpg"} -{"rects": [{"solidity": 0.9860539305888492, "top": 130, "right": 5065, "bottom": 3595, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725786f.jpg"} -{"rects": [{"solidity": 0.9860612527764407, "top": 390, "right": 2235, "bottom": 2790, "left": 405}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716394f.jpg"} -{"rects": [{"solidity": 0.986062362701753, "top": 865, "right": 4905, "bottom": 3325, "left": 1250}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722859f.jpg"} -{"rects": [{"solidity": 0.986070895933028, "top": 295, "right": 4935, "bottom": 3675, "left": 940}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723526f.jpg"} -{"rects": [{"solidity": 0.9860722017063542, "top": 695, "right": 3185, "bottom": 2650, "left": 1540}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507751.jpg"} -{"rects": [{"solidity": 0.9860787783280944, "top": 230, "right": 5010, "bottom": 3645, "left": 985}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716972f.jpg"} -{"rects": [{"solidity": 0.986084329153002, "top": 650, "right": 2610, "bottom": 2005, "left": 620}, {"solidity": 0.9789367477838903, "top": 2110, "right": 2605, "bottom": 3470, "left": 655}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713166f.jpg"} -{"rects": [{"solidity": 0.9860946384098491, "top": 320, "right": 5105, "bottom": 3675, "left": 1070}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720910f.jpg"} -{"rects": [{"solidity": 0.9860958586243814, "top": 3395, "right": 3205, "bottom": 5310, "left": 305}, {"solidity": 0.99554214880379, "top": 940, "right": 3190, "bottom": 2875, "left": 450}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704215f.jpg"} -{"rects": [{"solidity": 0.9861056775849395, "top": 245, "right": 4105, "bottom": 2725, "left": 2050}], "shape": {"h": 2855, "w": 4430}, "file": "/usr/local/google/home/danvk/milstein/731912f.jpg"} -{"rects": [{"solidity": 0.9861083134635293, "top": 825, "right": 5255, "bottom": 3715, "left": 1490}], "shape": {"h": 4415, "w": 6835}, "file": "/usr/local/google/home/danvk/milstein/708894f.jpg"} -{"rects": [{"solidity": 0.9861110200979011, "top": 765, "right": 5460, "bottom": 3490, "left": 4045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721187f.jpg"} -{"rects": [{"solidity": 0.9861159032975122, "top": 430, "right": 4975, "bottom": 3630, "left": 1115}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732880f.jpg"} -{"rects": [{"solidity": 0.9861420209261808, "top": 290, "right": 5250, "bottom": 3665, "left": 1220}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717531f.jpg"} -{"rects": [{"solidity": 0.9861468710567219, "top": 1090, "right": 3400, "bottom": 2860, "left": 1220}], "shape": {"h": 5805, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417643.jpg"} -{"rects": [{"solidity": 0.9861516651454959, "top": 690, "right": 5060, "bottom": 3265, "left": 1150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717291f.jpg"} -{"rects": [{"solidity": 0.9861532523244849, "top": 720, "right": 2660, "bottom": 2135, "left": 820}, {"solidity": 0.9708856481842523, "top": 2180, "right": 2635, "bottom": 3585, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706798f.jpg"} -{"rects": [{"solidity": 0.986153703079409, "top": 570, "right": 4890, "bottom": 3505, "left": 1195}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720620f.jpg"} -{"rects": [{"solidity": 0.9861549733457973, "top": 535, "right": 1690, "bottom": 2340, "left": 275}], "shape": {"h": 3020, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715783f.jpg"} -{"rects": [{"solidity": 0.9861590267449486, "top": 1415, "right": 3125, "bottom": 4675, "left": 590}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700061f.jpg"} -{"rects": [{"solidity": 0.9861596966809577, "top": 310, "right": 5080, "bottom": 3670, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723481f.jpg"} -{"rects": [{"solidity": 0.9861669725487133, "top": 645, "right": 2745, "bottom": 3470, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725501f.jpg"} -{"rects": [{"solidity": 0.986174356293295, "top": 1295, "right": 3790, "bottom": 5540, "left": 370}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711648f.jpg"} -{"rects": [{"solidity": 0.9861981071436488, "top": 590, "right": 4860, "bottom": 3610, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709938f.jpg"} -{"rects": [{"solidity": 0.9862045042961699, "top": 130, "right": 7265, "bottom": 2470, "left": 130}], "shape": {"h": 2600, "w": 7395}, "file": "/usr/local/google/home/danvk/milstein/1113256.jpg"} -{"rects": [{"solidity": 0.9862072805802772, "top": 490, "right": 3345, "bottom": 2400, "left": 575}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726859f.jpg"} -{"rects": [{"solidity": 0.9862141122956416, "top": 350, "right": 5030, "bottom": 3830, "left": 375}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719621f.jpg"} -{"rects": [{"solidity": 0.9862160547816626, "top": 395, "right": 5030, "bottom": 3525, "left": 1215}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717661f.jpg"} -{"rects": [{"solidity": 0.9862161354065923, "top": 985, "right": 5280, "bottom": 2690, "left": 800}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730696f.jpg"} -{"rects": [{"solidity": 0.9862265447148996, "top": 510, "right": 2020, "bottom": 1760, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732782f.jpg"} -{"rects": [{"solidity": 0.9862334640020787, "top": 610, "right": 4975, "bottom": 3580, "left": 1230}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717698f.jpg"} -{"rects": [{"solidity": 0.9862348867571096, "top": 660, "right": 2760, "bottom": 4750, "left": 1120}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713647f.jpg"} -{"rects": [{"solidity": 0.9862398402965921, "top": 160, "right": 5025, "bottom": 3690, "left": 1005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731282f.jpg"} -{"rects": [{"solidity": 0.9862506287105675, "top": 395, "right": 3355, "bottom": 2320, "left": 565}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703648f.jpg"} -{"rects": [{"solidity": 0.9862517519726878, "top": 480, "right": 3115, "bottom": 3865, "left": 565}], "shape": {"h": 6140, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/714575f.jpg"} -{"rects": [{"solidity": 0.986256707101791, "top": 2195, "right": 3005, "bottom": 3700, "left": 1050}, {"solidity": 0.9908414758640806, "top": 550, "right": 2840, "bottom": 1850, "left": 1165}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718291f.jpg"} -{"rects": [{"solidity": 0.98626018308558, "top": 410, "right": 3040, "bottom": 1940, "left": 1020}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/700349f.jpg"} -{"rects": [{"solidity": 0.9862613427352996, "top": 370, "right": 3325, "bottom": 2245, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712577f.jpg"} -{"rects": [{"solidity": 0.9862645588571138, "top": 660, "right": 2285, "bottom": 3240, "left": 335}, {"solidity": 0.9556337609232687, "top": 3480, "right": 2205, "bottom": 5495, "left": 130}, {"solidity": 0.96150038169593, "top": 3490, "right": 4420, "bottom": 5355, "left": 2315}], "shape": {"h": 5970, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465623.jpg"} -{"rects": [{"solidity": 0.9862657011630278, "top": 490, "right": 3315, "bottom": 3905, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714793f.jpg"} -{"rects": [{"solidity": 0.9862709258130966, "top": 2085, "right": 2765, "bottom": 3405, "left": 1080}, {"solidity": 0.9828352936286937, "top": 540, "right": 2745, "bottom": 1825, "left": 1075}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/718242f.jpg"} -{"rects": [{"solidity": 0.9862756886080608, "top": 640, "right": 4880, "bottom": 3465, "left": 1215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705476f.jpg"} -{"rects": [{"solidity": 0.9862788735933378, "top": 655, "right": 2915, "bottom": 3570, "left": 965}, {"solidity": 0.9968274985670424, "top": 2085, "right": 5075, "bottom": 3555, "left": 3140}, {"solidity": 0.997076766062778, "top": 645, "right": 5075, "bottom": 2060, "left": 3145}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718955f.jpg"} -{"rects": [{"solidity": 0.9862909324473093, "top": 1245, "right": 3370, "bottom": 4660, "left": 770}], "shape": {"h": 6140, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/724047f.jpg"} -{"rects": [{"solidity": 0.9862923775172404, "top": 265, "right": 5810, "bottom": 3855, "left": 335}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712806f.jpg"} -{"rects": [{"solidity": 0.9863077417918202, "top": 130, "right": 2810, "bottom": 2925, "left": 970}, {"solidity": 0.9955953187085564, "top": 4335, "right": 3040, "bottom": 5975, "left": 590}, {"solidity": 0.9955125079114745, "top": 2955, "right": 2740, "bottom": 4360, "left": 990}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734142f.jpg"} -{"rects": [{"solidity": 0.9863096019965848, "top": 225, "right": 3300, "bottom": 2795, "left": 230}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509885.jpg"} -{"rects": [{"solidity": 0.9863207665705941, "top": 390, "right": 5250, "bottom": 3600, "left": 1195}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701507f.jpg"} -{"rects": [{"solidity": 0.9863334983220108, "top": 1100, "right": 3525, "bottom": 4925, "left": 465}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712668f.jpg"} -{"rects": [{"solidity": 0.9863396798925713, "top": 380, "right": 3670, "bottom": 2625, "left": 830}], "shape": {"h": 2960, "w": 4580}, "file": "/usr/local/google/home/danvk/milstein/710368f.jpg"} -{"rects": [{"solidity": 0.9863608722091912, "top": 330, "right": 5155, "bottom": 3690, "left": 1145}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717385f.jpg"} -{"rects": [{"solidity": 0.9863624792706225, "top": 570, "right": 2200, "bottom": 3420, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713760f.jpg"} -{"rects": [{"solidity": 0.9863706481329383, "top": 285, "right": 5130, "bottom": 3635, "left": 1095}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717402f.jpg"} -{"rects": [{"solidity": 0.9863820574029867, "top": 575, "right": 4195, "bottom": 2870, "left": 1190}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508671.jpg"} -{"rects": [{"solidity": 0.986402157164869, "top": 305, "right": 5045, "bottom": 3655, "left": 985}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731989f.jpg"} -{"rects": [{"solidity": 0.9864104424117817, "top": 365, "right": 2760, "bottom": 1870, "left": 790}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718464f.jpg"} -{"rects": [{"solidity": 0.9864105260958298, "top": 450, "right": 3335, "bottom": 2410, "left": 525}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704516f.jpg"} -{"rects": [{"solidity": 0.9864184805675135, "top": 2305, "right": 3300, "bottom": 4045, "left": 635}, {"solidity": 0.9749752615603562, "top": 445, "right": 3340, "bottom": 2145, "left": 650}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718357f.jpg"} -{"rects": [{"solidity": 0.9864484952129244, "top": 600, "right": 2165, "bottom": 1785, "left": 520}, {"solidity": 0.9870781850656749, "top": 2175, "right": 2115, "bottom": 3325, "left": 600}, {"solidity": 0.9846336140629804, "top": 670, "right": 5705, "bottom": 1830, "left": 4220}, {"solidity": 0.9885595503887905, "top": 645, "right": 3910, "bottom": 1785, "left": 2455}, {"solidity": 0.9847088201744921, "top": 2165, "right": 3870, "bottom": 3350, "left": 2455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732773f.jpg"} -{"rects": [{"solidity": 0.9864497100914972, "top": 450, "right": 3195, "bottom": 2060, "left": 825}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714255f.jpg"} -{"rects": [{"solidity": 0.9864530567337215, "top": 1260, "right": 2845, "bottom": 4685, "left": 190}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508723.jpg"} -{"rects": [{"solidity": 0.9864558038495094, "top": 440, "right": 5085, "bottom": 3840, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715090f.jpg"} -{"rects": [{"solidity": 0.9864825279718787, "top": 705, "right": 3875, "bottom": 3245, "left": 515}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712420f.jpg"} -{"rects": [{"solidity": 0.9864933019662967, "top": 515, "right": 3410, "bottom": 2250, "left": 1160}, {"solidity": 0.9739194841976807, "top": 2670, "right": 3390, "bottom": 4400, "left": 1140}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/702795f.jpg"} -{"rects": [{"solidity": 0.986508039139618, "top": 890, "right": 3580, "bottom": 2935, "left": 720}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/721828f.jpg"} -{"rects": [{"solidity": 0.9865098825106031, "top": 455, "right": 3210, "bottom": 4280, "left": 485}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724312f.jpg"} -{"rects": [{"solidity": 0.986511580269234, "top": 1115, "right": 3430, "bottom": 4990, "left": 515}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722174f.jpg"} -{"rects": [{"solidity": 0.9865240078963257, "top": 340, "right": 5050, "bottom": 3695, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717699f.jpg"} -{"rects": [{"solidity": 0.9865295857170494, "top": 305, "right": 5040, "bottom": 3685, "left": 955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723197f.jpg"} -{"rects": [{"solidity": 0.9865306525164262, "top": 680, "right": 3210, "bottom": 3935, "left": 675}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714396f.jpg"} -{"rects": [{"solidity": 0.9865355272194308, "top": 185, "right": 5060, "bottom": 3665, "left": 1050}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731216f.jpg"} -{"rects": [{"solidity": 0.9865433455053306, "top": 490, "right": 4965, "bottom": 3450, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709589f.jpg"} -{"rects": [{"solidity": 0.9865505330664279, "top": 400, "right": 3065, "bottom": 3320, "left": 825}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715531f.jpg"} -{"rects": [{"solidity": 0.9865563892355721, "top": 535, "right": 4840, "bottom": 3550, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722451f.jpg"} -{"rects": [{"solidity": 0.986568806290752, "top": 3335, "right": 3235, "bottom": 5225, "left": 430}, {"solidity": 0.9837638485546226, "top": 790, "right": 3165, "bottom": 2740, "left": 520}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723651f.jpg"} -{"rects": [{"solidity": 0.9865741158726028, "top": 795, "right": 3105, "bottom": 2765, "left": 685}, {"solidity": 0.9974579116504388, "top": 4260, "right": 2800, "bottom": 5715, "left": 985}, {"solidity": 0.9917283147711569, "top": 2815, "right": 2780, "bottom": 4215, "left": 995}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704212f.jpg"} -{"rects": [{"solidity": 0.9865785577806625, "top": 305, "right": 5160, "bottom": 3755, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720618f.jpg"} -{"rects": [{"solidity": 0.9865979190408687, "top": 395, "right": 3655, "bottom": 1765, "left": 1665}, {"solidity": 0.9794543679708355, "top": 1735, "right": 5765, "bottom": 3730, "left": 4380}, {"solidity": 0.9729383054489212, "top": 2175, "right": 3765, "bottom": 3545, "left": 1770}, {"solidity": 0.9820247837269114, "top": 350, "right": 5760, "bottom": 1710, "left": 3770}, {"solidity": 0.9549559174648594, "top": 1005, "right": 1540, "bottom": 2995, "left": 175}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732898f.jpg"} -{"rects": [{"solidity": 0.9866143211113161, "top": 715, "right": 2875, "bottom": 3755, "left": 315}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509927.jpg"} -{"rects": [{"solidity": 0.9866248519272242, "top": 630, "right": 3635, "bottom": 5425, "left": 185}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720739f.jpg"} -{"rects": [{"solidity": 0.9866270473049884, "top": 305, "right": 5045, "bottom": 3675, "left": 1040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720624f.jpg"} -{"rects": [{"solidity": 0.9866500390355223, "top": 285, "right": 5015, "bottom": 3670, "left": 990}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717745f.jpg"} -{"rects": [{"solidity": 0.986661683740893, "top": 425, "right": 3840, "bottom": 2705, "left": 955}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509751.jpg"} -{"rects": [{"solidity": 0.9866743094078037, "top": 1065, "right": 4300, "bottom": 2940, "left": 1750}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731147f.jpg"} -{"rects": [{"solidity": 0.9866755496335776, "top": 865, "right": 4605, "bottom": 2930, "left": 3390}, {"solidity": 0.9817854597111355, "top": 865, "right": 3210, "bottom": 2950, "left": 1985}, {"solidity": 0.9842122820002294, "top": 850, "right": 1785, "bottom": 2955, "left": 620}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732293f.jpg"} -{"rects": [{"solidity": 0.9866846161148074, "top": 505, "right": 3030, "bottom": 1990, "left": 1030}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717940f.jpg"} -{"rects": [{"solidity": 0.9866877798724448, "top": 1095, "right": 3595, "bottom": 5070, "left": 305}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716844f.jpg"} -{"rects": [{"solidity": 0.9866906754267196, "top": 510, "right": 5095, "bottom": 3860, "left": 995}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709447f.jpg"} -{"rects": [{"solidity": 0.9866999415056426, "top": 1140, "right": 3415, "bottom": 4970, "left": 390}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717055f.jpg"} -{"rects": [{"solidity": 0.9867056089617554, "top": 405, "right": 5105, "bottom": 3470, "left": 1275}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727870f.jpg"} -{"rects": [{"solidity": 0.9867192089183102, "top": 1190, "right": 3485, "bottom": 5025, "left": 455}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708774f.jpg"} -{"rects": [{"solidity": 0.9867236187676216, "top": 310, "right": 5050, "bottom": 3660, "left": 1045}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717518f.jpg"} -{"rects": [{"solidity": 0.9867266945135198, "top": 2240, "right": 2825, "bottom": 3675, "left": 1200}, {"solidity": 0.9816029382829409, "top": 565, "right": 3910, "bottom": 1980, "left": 2255}, {"solidity": 0.9902145798874371, "top": 560, "right": 5740, "bottom": 2015, "left": 4160}, {"solidity": 0.9877064880489419, "top": 2250, "right": 4905, "bottom": 3595, "left": 3260}, {"solidity": 0.9569235962195218, "top": 600, "right": 1950, "bottom": 1530, "left": 480}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706019f.jpg"} -{"rects": [{"solidity": 0.986739788733857, "top": 1000, "right": 3365, "bottom": 4910, "left": 270}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724107f.jpg"} -{"rects": [{"solidity": 0.9867496158669045, "top": 230, "right": 2835, "bottom": 1775, "left": 940}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/724375f.jpg"} -{"rects": [{"solidity": 0.9867530508821551, "top": 1215, "right": 3395, "bottom": 5100, "left": 250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716751f.jpg"} -{"rects": [{"solidity": 0.986755329766457, "top": 985, "right": 3555, "bottom": 5000, "left": 300}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/718320f.jpg"} -{"rects": [{"solidity": 0.9867725168613446, "top": 900, "right": 3035, "bottom": 2140, "left": 1210}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509695.jpg"} -{"rects": [{"solidity": 0.9867774755517819, "top": 620, "right": 5360, "bottom": 3475, "left": 3515}, {"solidity": 0.995122170409498, "top": 645, "right": 2740, "bottom": 2060, "left": 935}, {"solidity": 0.9951532782058573, "top": 2080, "right": 2770, "bottom": 3485, "left": 970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706144f.jpg"} -{"rects": [{"solidity": 0.9867804463827066, "top": 900, "right": 3625, "bottom": 4910, "left": 300}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712819f.jpg"} -{"rects": [{"solidity": 0.9867964356042898, "top": 130, "right": 5145, "bottom": 3855, "left": 980}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712278f.jpg"} -{"rects": [{"solidity": 0.9868055267798358, "top": 300, "right": 5110, "bottom": 3705, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703332f.jpg"} -{"rects": [{"solidity": 0.9868096031391819, "top": 940, "right": 1905, "bottom": 2960, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702753f.jpg"} -{"rects": [{"solidity": 0.9868140537480219, "top": 305, "right": 5045, "bottom": 3695, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706345f.jpg"} -{"rects": [{"solidity": 0.9868156503617126, "top": 425, "right": 2705, "bottom": 3825, "left": 1300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714855f.jpg"} -{"rects": [{"solidity": 0.9868250581107343, "top": 820, "right": 2035, "bottom": 3240, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729798f.jpg"} -{"rects": [{"solidity": 0.986826166920345, "top": 380, "right": 2815, "bottom": 3555, "left": 290}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508863.jpg"} -{"rects": [{"solidity": 0.986831103004084, "top": 845, "right": 3930, "bottom": 3310, "left": 2320}, {"solidity": 0.9932799027814928, "top": 850, "right": 2290, "bottom": 3245, "left": 690}, {"solidity": 0.9940956491435006, "top": 875, "right": 5550, "bottom": 3260, "left": 3970}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708525f.jpg"} -{"rects": [{"solidity": 0.9868321290866086, "top": 220, "right": 3305, "bottom": 2815, "left": 240}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509871.jpg"} -{"rects": [{"solidity": 0.986836780798207, "top": 315, "right": 5090, "bottom": 3670, "left": 1065}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730331f.jpg"} -{"rects": [{"solidity": 0.986845854466342, "top": 360, "right": 3020, "bottom": 1945, "left": 615}, {"solidity": 0.970935457724148, "top": 2110, "right": 2985, "bottom": 3690, "left": 585}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731553f.jpg"} -{"rects": [{"solidity": 0.9868511957484499, "top": 595, "right": 4835, "bottom": 3600, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709861f.jpg"} -{"rects": [{"solidity": 0.9868622763651328, "top": 485, "right": 4825, "bottom": 3580, "left": 995}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712652f.jpg"} -{"rects": [{"solidity": 0.9868627333396157, "top": 2400, "right": 3000, "bottom": 3905, "left": 1040}, {"solidity": 0.995754582193738, "top": 4240, "right": 2925, "bottom": 5615, "left": 1120}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727890f.jpg"} -{"rects": [{"solidity": 0.9868659569404321, "top": 300, "right": 5020, "bottom": 3640, "left": 960}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719209f.jpg"} -{"rects": [{"solidity": 0.9868678883497187, "top": 885, "right": 3345, "bottom": 2900, "left": 330}, {"solidity": 0.972927556695082, "top": 3075, "right": 3330, "bottom": 5085, "left": 340}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713919f.jpg"} -{"rects": [{"solidity": 0.9868815569408544, "top": 1995, "right": 2335, "bottom": 3240, "left": 655}, {"solidity": 0.9814257058906521, "top": 530, "right": 4190, "bottom": 1775, "left": 2525}, {"solidity": 0.9908268838092638, "top": 530, "right": 2310, "bottom": 1755, "left": 640}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707312f.jpg"} -{"rects": [{"solidity": 0.9868920234050311, "top": 2460, "right": 3350, "bottom": 4340, "left": 550}, {"solidity": 0.9522607229818318, "top": 420, "right": 3360, "bottom": 2285, "left": 555}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703778f.jpg"} -{"rects": [{"solidity": 0.9868983242485244, "top": 720, "right": 5605, "bottom": 4085, "left": 1255}], "shape": {"h": 4425, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708816f.jpg"} -{"rects": [{"solidity": 0.9868993590043513, "top": 425, "right": 3100, "bottom": 1845, "left": 1175}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704782f.jpg"} -{"rects": [{"solidity": 0.9869018934109872, "top": 605, "right": 3010, "bottom": 3320, "left": 1050}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718768f.jpg"} -{"rects": [{"solidity": 0.9869400636754035, "top": 295, "right": 5105, "bottom": 3710, "left": 1065}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704173f.jpg"} -{"rects": [{"solidity": 0.9869421610620787, "top": 675, "right": 2470, "bottom": 3080, "left": 430}, {"solidity": 0.9565370000152609, "top": 3375, "right": 2330, "bottom": 5625, "left": 180}, {"solidity": 0.9674741390598403, "top": 3450, "right": 4530, "bottom": 5470, "left": 2480}], "shape": {"h": 6020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465694.jpg"} -{"rects": [{"solidity": 0.9869478916197331, "top": 870, "right": 3845, "bottom": 3330, "left": 2235}, {"solidity": 0.9941234052378769, "top": 945, "right": 5765, "bottom": 3365, "left": 4150}, {"solidity": 0.9932310528169167, "top": 1125, "right": 1935, "bottom": 3090, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716540f.jpg"} -{"rects": [{"solidity": 0.9869490344800897, "top": 400, "right": 3180, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707624f.jpg"} -{"rects": [{"solidity": 0.9869539070271972, "top": 665, "right": 3455, "bottom": 4240, "left": 320}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715071f.jpg"} -{"rects": [{"solidity": 0.98695504709228, "top": 450, "right": 2065, "bottom": 1670, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705542f.jpg"} -{"rects": [{"solidity": 0.9869609192958797, "top": 440, "right": 2975, "bottom": 3550, "left": 500}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714304f.jpg"} -{"rects": [{"solidity": 0.9869668989604551, "top": 430, "right": 3305, "bottom": 2035, "left": 895}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726454f.jpg"} -{"rects": [{"solidity": 0.9869689205096022, "top": 1390, "right": 3180, "bottom": 4595, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732537f.jpg"} -{"rects": [{"solidity": 0.9869883269960172, "top": 2050, "right": 5295, "bottom": 3410, "left": 3330}, {"solidity": 0.9886251958237245, "top": 445, "right": 5285, "bottom": 1795, "left": 3350}, {"solidity": 0.9843357908456046, "top": 2065, "right": 3045, "bottom": 3400, "left": 1085}, {"solidity": 0.9880490623462511, "top": 470, "right": 2905, "bottom": 1745, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732778f.jpg"} -{"rects": [{"solidity": 0.9869928206504548, "top": 550, "right": 2740, "bottom": 3435, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705653f.jpg"} -{"rects": [{"solidity": 0.9869977369552976, "top": 815, "right": 5270, "bottom": 3685, "left": 1510}], "shape": {"h": 4405, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711661f.jpg"} -{"rects": [{"solidity": 0.9869982124359866, "top": 1210, "right": 3415, "bottom": 4885, "left": 355}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714093f.jpg"} -{"rects": [{"solidity": 0.9870193292269884, "top": 420, "right": 2240, "bottom": 1530, "left": 790}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/722700f.jpg"} -{"rects": [{"solidity": 0.9870197949616074, "top": 375, "right": 2590, "bottom": 1660, "left": 920}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717671f.jpg"} -{"rects": [{"solidity": 0.9870422782421729, "top": 535, "right": 4985, "bottom": 2090, "left": 3135}, {"solidity": 0.9884701466234316, "top": 2215, "right": 5000, "bottom": 3760, "left": 3130}, {"solidity": 0.9953122917896099, "top": 600, "right": 2770, "bottom": 2030, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716823f.jpg"} -{"rects": [{"solidity": 0.9870450791483208, "top": 385, "right": 5010, "bottom": 3560, "left": 1050}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733579f.jpg"} -{"rects": [{"solidity": 0.9870494184539425, "top": 310, "right": 5075, "bottom": 3670, "left": 1030}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705982f.jpg"} -{"rects": [{"solidity": 0.9870713312869718, "top": 3010, "right": 2685, "bottom": 4380, "left": 860}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708235f.jpg"} -{"rects": [{"solidity": 0.9870728815812799, "top": 345, "right": 5085, "bottom": 3735, "left": 990}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716745f.jpg"} -{"rects": [{"solidity": 0.987076061903194, "top": 400, "right": 3315, "bottom": 2280, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707261f.jpg"} -{"rects": [{"solidity": 0.9870797379299753, "top": 435, "right": 5080, "bottom": 3860, "left": 145}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715112f.jpg"} -{"rects": [{"solidity": 0.9870889324812685, "top": 245, "right": 5165, "bottom": 3665, "left": 1145}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708419f.jpg"} -{"rects": [{"solidity": 0.987092605976416, "top": 400, "right": 3890, "bottom": 2885, "left": 620}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509429.jpg"} -{"rects": [{"solidity": 0.9871133441237299, "top": 555, "right": 4950, "bottom": 3525, "left": 1150}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703842f.jpg"} -{"rects": [{"solidity": 0.9871158649505394, "top": 585, "right": 3430, "bottom": 2155, "left": 940}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711685f.jpg"} -{"rects": [{"solidity": 0.9871248677850887, "top": 690, "right": 2345, "bottom": 3845, "left": 295}], "shape": {"h": 4410, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711391f.jpg"} -{"rects": [{"solidity": 0.9871304417492257, "top": 285, "right": 5060, "bottom": 3725, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723362f.jpg"} -{"rects": [{"solidity": 0.9871381863640735, "top": 345, "right": 2215, "bottom": 1490, "left": 815}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715864f.jpg"} -{"rects": [{"solidity": 0.9871530932979785, "top": 490, "right": 3260, "bottom": 1960, "left": 380}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734085f.jpg"} -{"rects": [{"solidity": 0.9871674008769897, "top": 325, "right": 5110, "bottom": 3735, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703312f.jpg"} -{"rects": [{"solidity": 0.987179849527158, "top": 2945, "right": 2150, "bottom": 5485, "left": 355}, {"solidity": 0.9499532116327769, "top": 3010, "right": 4185, "bottom": 5385, "left": 2375}, {"solidity": 0.9395541437404277, "top": 590, "right": 2905, "bottom": 2560, "left": 1700}], "shape": {"h": 6035, "w": 4670}, "file": "/usr/local/google/home/danvk/milstein/464750.jpg"} -{"rects": [{"solidity": 0.9871917856889079, "top": 4105, "right": 2890, "bottom": 5645, "left": 1035}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719791f.jpg"} -{"rects": [{"solidity": 0.9872180591631939, "top": 415, "right": 3210, "bottom": 1805, "left": 1255}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706160f.jpg"} -{"rects": [{"solidity": 0.9872386718765916, "top": 700, "right": 2415, "bottom": 2540, "left": 645}], "shape": {"h": 6005, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/465580.jpg"} -{"rects": [{"solidity": 0.9872448274909533, "top": 460, "right": 3200, "bottom": 2000, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727961f.jpg"} -{"rects": [{"solidity": 0.9872476820565425, "top": 425, "right": 5335, "bottom": 3490, "left": 1490}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733432f.jpg"} -{"rects": [{"solidity": 0.9872506138835967, "top": 420, "right": 3420, "bottom": 3560, "left": 1845}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713965f.jpg"} -{"rects": [{"solidity": 0.987256702649509, "top": 390, "right": 5015, "bottom": 3760, "left": 970}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705964f.jpg"} -{"rects": [{"solidity": 0.9872653518155924, "top": 1140, "right": 3415, "bottom": 5010, "left": 390}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717060f.jpg"} -{"rects": [{"solidity": 0.9872668330272006, "top": 155, "right": 3360, "bottom": 2045, "left": 600}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727684f.jpg"} -{"rects": [{"solidity": 0.9872827220620394, "top": 295, "right": 5120, "bottom": 3720, "left": 1075}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721111f.jpg"} -{"rects": [{"solidity": 0.9872842749604154, "top": 1055, "right": 5355, "bottom": 3020, "left": 3900}, {"solidity": 0.9939462054081162, "top": 1080, "right": 3575, "bottom": 3010, "left": 2115}, {"solidity": 0.9853625537440354, "top": 1085, "right": 1835, "bottom": 2985, "left": 365}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730066f.jpg"} -{"rects": [{"solidity": 0.9872927490399819, "top": 525, "right": 4940, "bottom": 3455, "left": 1130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718921f.jpg"} -{"rects": [{"solidity": 0.9872950558890279, "top": 450, "right": 2910, "bottom": 1995, "left": 985}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/701958f.jpg"} -{"rects": [{"solidity": 0.9872986331983867, "top": 460, "right": 6010, "bottom": 3845, "left": 130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732585f.jpg"} -{"rects": [{"solidity": 0.9872998828137468, "top": 1225, "right": 3435, "bottom": 4920, "left": 435}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722743f.jpg"} -{"rects": [{"solidity": 0.9873008379558598, "top": 540, "right": 5185, "bottom": 1965, "left": 3285}, {"solidity": 0.9969135035462403, "top": 555, "right": 2920, "bottom": 1960, "left": 1115}, {"solidity": 0.9948510297940412, "top": 2155, "right": 5140, "bottom": 3555, "left": 3330}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725610f.jpg"} -{"rects": [{"solidity": 0.9873103290748912, "top": 1165, "right": 2635, "bottom": 4375, "left": 130}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508891.jpg"} -{"rects": [{"solidity": 0.9873106854976194, "top": 865, "right": 3645, "bottom": 4975, "left": 325}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721946f.jpg"} -{"rects": [{"solidity": 0.9873158742620931, "top": 1135, "right": 3495, "bottom": 4920, "left": 450}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712660f.jpg"} -{"rects": [{"solidity": 0.987317776310769, "top": 2155, "right": 5655, "bottom": 3780, "left": 3085}, {"solidity": 0.9744556060855576, "top": 385, "right": 5685, "bottom": 1980, "left": 3095}, {"solidity": 0.9871779939044513, "top": 385, "right": 2835, "bottom": 1970, "left": 370}, {"solidity": 0.9308974126331431, "top": 2180, "right": 2740, "bottom": 3795, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730199f.jpg"} -{"rects": [{"solidity": 0.9873194433441601, "top": 415, "right": 2050, "bottom": 3730, "left": 580}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714459f.jpg"} -{"rects": [{"solidity": 0.9873297502890226, "top": 920, "right": 3270, "bottom": 5200, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713884f.jpg"} -{"rects": [{"solidity": 0.9873351075032069, "top": 815, "right": 4700, "bottom": 3225, "left": 1425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701580f.jpg"} -{"rects": [{"solidity": 0.9873508727751805, "top": 545, "right": 3105, "bottom": 2010, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731377f.jpg"} -{"rects": [{"solidity": 0.9873509477728245, "top": 1240, "right": 3555, "bottom": 5240, "left": 130}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733060f.jpg"} -{"rects": [{"solidity": 0.9873587990859132, "top": 670, "right": 2720, "bottom": 2090, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726723f.jpg"} -{"rects": [{"solidity": 0.9873706545584525, "top": 610, "right": 4945, "bottom": 3560, "left": 1180}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734297f.jpg"} -{"rects": [{"solidity": 0.9873736341945704, "top": 385, "right": 5115, "bottom": 3695, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717647f.jpg"} -{"rects": [{"solidity": 0.9873803019742948, "top": 805, "right": 4680, "bottom": 3195, "left": 1490}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731213f.jpg"} -{"rects": [{"solidity": 0.9873822142781518, "top": 540, "right": 2485, "bottom": 1780, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732798f.jpg"} -{"rects": [{"solidity": 0.987390203157838, "top": 375, "right": 2910, "bottom": 1840, "left": 980}, {"solidity": 0.9913856613876356, "top": 2090, "right": 2890, "bottom": 3475, "left": 990}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732766f.jpg"} -{"rects": [{"solidity": 0.9873920395147654, "top": 815, "right": 3155, "bottom": 2000, "left": 1595}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507901.jpg"} -{"rects": [{"solidity": 0.9873921319796954, "top": 130, "right": 5095, "bottom": 3590, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706147f.jpg"} -{"rects": [{"solidity": 0.9874023552118517, "top": 395, "right": 3240, "bottom": 2010, "left": 825}, {"solidity": 0.9992752696423243, "top": 3770, "right": 3845, "bottom": 6010, "left": 2265}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700462f.jpg"} -{"rects": [{"solidity": 0.9874156019348915, "top": 585, "right": 4855, "bottom": 3560, "left": 1115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709917f.jpg"} -{"rects": [{"solidity": 0.987416309562362, "top": 975, "right": 3560, "bottom": 5065, "left": 245}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715209f.jpg"} -{"rects": [{"solidity": 0.987421835038181, "top": 1260, "right": 3445, "bottom": 4905, "left": 405}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713258f.jpg"} -{"rects": [{"solidity": 0.9874221451977871, "top": 535, "right": 5130, "bottom": 3530, "left": 1215}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717879f.jpg"} -{"rects": [{"solidity": 0.98744811663682, "top": 640, "right": 4935, "bottom": 3460, "left": 1085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723070f.jpg"} -{"rects": [{"solidity": 0.9874595915598029, "top": 375, "right": 3910, "bottom": 2885, "left": 830}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509407.jpg"} -{"rects": [{"solidity": 0.9874610362516261, "top": 190, "right": 1905, "bottom": 2730, "left": 285}, {"solidity": 0.9905504957881321, "top": 2925, "right": 2810, "bottom": 5450, "left": 1175}, {"solidity": 0.9960562149940907, "top": 330, "right": 3730, "bottom": 2755, "left": 2095}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709127f.jpg"} -{"rects": [{"solidity": 0.9874618377381519, "top": 520, "right": 3850, "bottom": 4580, "left": 370}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725754f.jpg"} -{"rects": [{"solidity": 0.9874835683621642, "top": 455, "right": 2930, "bottom": 1985, "left": 1035}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731439f.jpg"} -{"rects": [{"solidity": 0.9874841151316704, "top": 265, "right": 5060, "bottom": 3660, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713913f.jpg"} -{"rects": [{"solidity": 0.9874872975256193, "top": 825, "right": 2865, "bottom": 2345, "left": 800}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509313.jpg"} -{"rects": [{"solidity": 0.987498615142585, "top": 765, "right": 3625, "bottom": 2195, "left": 1625}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508005.jpg"} -{"rects": [{"solidity": 0.9875006032527388, "top": 575, "right": 5020, "bottom": 2055, "left": 3050}, {"solidity": 0.977977474556307, "top": 2170, "right": 5000, "bottom": 3645, "left": 3045}, {"solidity": 0.9824378318851944, "top": 2205, "right": 2685, "bottom": 3515, "left": 995}, {"solidity": 0.9923255509551727, "top": 710, "right": 2600, "bottom": 1885, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718263f.jpg"} -{"rects": [{"solidity": 0.9875009090247981, "top": 630, "right": 3130, "bottom": 3750, "left": 890}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714501f.jpg"} -{"rects": [{"solidity": 0.9875070097349365, "top": 1225, "right": 3920, "bottom": 5740, "left": 250}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711668f.jpg"} -{"rects": [{"solidity": 0.987513069710838, "top": 1085, "right": 3540, "bottom": 4940, "left": 460}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712662f.jpg"} -{"rects": [{"solidity": 0.987524712278472, "top": 645, "right": 2595, "bottom": 2135, "left": 675}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723523f.jpg"} -{"rects": [{"solidity": 0.9875316514794492, "top": 490, "right": 3275, "bottom": 2230, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722721f.jpg"} -{"rects": [{"solidity": 0.9875356525902022, "top": 460, "right": 2960, "bottom": 2670, "left": 945}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707994f.jpg"} -{"rects": [{"solidity": 0.9875593929027178, "top": 130, "right": 5225, "bottom": 3630, "left": 1170}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725699f.jpg"} -{"rects": [{"solidity": 0.9875649149554528, "top": 355, "right": 2170, "bottom": 1515, "left": 760}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715859f.jpg"} -{"rects": [{"solidity": 0.9875704592507518, "top": 565, "right": 5025, "bottom": 3610, "left": 1165}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/708306f.jpg"} -{"rects": [{"solidity": 0.9875747202594611, "top": 1455, "right": 3760, "bottom": 5660, "left": 400}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711669f.jpg"} -{"rects": [{"solidity": 0.9875893716646261, "top": 305, "right": 5100, "bottom": 3685, "left": 1065}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716747f.jpg"} -{"rects": [{"solidity": 0.9875935729110795, "top": 595, "right": 5230, "bottom": 3615, "left": 3255}, {"solidity": 0.9809158348147136, "top": 610, "right": 2980, "bottom": 3690, "left": 995}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708706f.jpg"} -{"rects": [{"solidity": 0.9876064889871026, "top": 825, "right": 2645, "bottom": 4550, "left": 1005}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714290f.jpg"} -{"rects": [{"solidity": 0.9876085310107923, "top": 460, "right": 3175, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717604f.jpg"} -{"rects": [{"solidity": 0.9876192709698483, "top": 295, "right": 5075, "bottom": 3695, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720335f.jpg"} -{"rects": [{"solidity": 0.9876231811605729, "top": 785, "right": 2980, "bottom": 2275, "left": 1850}, {"solidity": 0.98742606358342, "top": 950, "right": 4130, "bottom": 2450, "left": 3005}, {"solidity": 0.9924668272723797, "top": 865, "right": 1815, "bottom": 2345, "left": 695}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507561.jpg"} -{"rects": [{"solidity": 0.9876282198341333, "top": 500, "right": 3250, "bottom": 3795, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714286f.jpg"} -{"rects": [{"solidity": 0.9876303123261941, "top": 405, "right": 4995, "bottom": 3665, "left": 965}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722471f.jpg"} -{"rects": [{"solidity": 0.9876437738854873, "top": 590, "right": 4860, "bottom": 3440, "left": 1260}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702030f.jpg"} -{"rects": [{"solidity": 0.9876541869353718, "top": 680, "right": 2570, "bottom": 3765, "left": 245}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508885.jpg"} -{"rects": [{"solidity": 0.9876717083058785, "top": 1165, "right": 3425, "bottom": 4945, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714128f.jpg"} -{"rects": [{"solidity": 0.9876889893202172, "top": 590, "right": 4940, "bottom": 3625, "left": 1070}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709952f.jpg"} -{"rects": [{"solidity": 0.9876937931621291, "top": 315, "right": 5085, "bottom": 3715, "left": 1045}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703384f.jpg"} -{"rects": [{"solidity": 0.9876944699491672, "top": 980, "right": 3160, "bottom": 3000, "left": 1925}, {"solidity": 0.9937931440751034, "top": 985, "right": 1650, "bottom": 3005, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713621f.jpg"} -{"rects": [{"solidity": 0.9876958284479227, "top": 615, "right": 2955, "bottom": 2045, "left": 1070}, {"solidity": 0.9846918508327439, "top": 2245, "right": 5100, "bottom": 3670, "left": 3265}, {"solidity": 0.9639431237330385, "top": 590, "right": 5100, "bottom": 2035, "left": 3250}, {"solidity": 0.9948305919805958, "top": 2265, "right": 2935, "bottom": 3655, "left": 1140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725900f.jpg"} -{"rects": [{"solidity": 0.9877008598975071, "top": 2155, "right": 2900, "bottom": 3480, "left": 680}, {"solidity": 0.9897820063624236, "top": 565, "right": 2755, "bottom": 1815, "left": 670}, {"solidity": 0.9898761875058787, "top": 2250, "right": 5330, "bottom": 3485, "left": 3245}, {"solidity": 0.9907591726200701, "top": 610, "right": 5335, "bottom": 1830, "left": 3285}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732292f.jpg"} -{"rects": [{"solidity": 0.9877105867015723, "top": 1120, "right": 3405, "bottom": 5045, "left": 350}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714111f.jpg"} -{"rects": [{"solidity": 0.9877202274101398, "top": 705, "right": 2700, "bottom": 2170, "left": 855}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704913f.jpg"} -{"rects": [{"solidity": 0.9877213999671476, "top": 390, "right": 3285, "bottom": 3790, "left": 660}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714810f.jpg"} -{"rects": [{"solidity": 0.9877339823663656, "top": 545, "right": 5195, "bottom": 3660, "left": 1240}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/732289f.jpg"} -{"rects": [{"solidity": 0.9877342409475071, "top": 325, "right": 5065, "bottom": 3680, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717637f.jpg"} -{"rects": [{"solidity": 0.9877349397872557, "top": 990, "right": 3370, "bottom": 4670, "left": 445}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721362f.jpg"} -{"rects": [{"solidity": 0.9877430960486121, "top": 2160, "right": 2995, "bottom": 3555, "left": 1050}, {"solidity": 0.989859365922284, "top": 525, "right": 2965, "bottom": 1910, "left": 1030}, {"solidity": 0.9943253509064403, "top": 540, "right": 5110, "bottom": 1745, "left": 3500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732801f.jpg"} -{"rects": [{"solidity": 0.9877621733200634, "top": 1130, "right": 2040, "bottom": 3235, "left": 560}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713828f.jpg"} -{"rects": [{"solidity": 0.9877809433364989, "top": 1085, "right": 3385, "bottom": 5000, "left": 405}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719129f.jpg"} -{"rects": [{"solidity": 0.9877846790890269, "top": 360, "right": 5025, "bottom": 3645, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718253f.jpg"} -{"rects": [{"solidity": 0.9877891722220039, "top": 460, "right": 3025, "bottom": 1820, "left": 890}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720394f.jpg"} -{"rects": [{"solidity": 0.9877997605618157, "top": 945, "right": 3045, "bottom": 2785, "left": 1930}, {"solidity": 0.9891078613096603, "top": 965, "right": 5790, "bottom": 2805, "left": 4685}, {"solidity": 0.9873484580156466, "top": 935, "right": 1695, "bottom": 2770, "left": 585}, {"solidity": 0.9875249469778965, "top": 950, "right": 4415, "bottom": 2780, "left": 3315}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720245f.jpg"} -{"rects": [{"solidity": 0.9878012304529673, "top": 155, "right": 3335, "bottom": 2710, "left": 265}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509979.jpg"} -{"rects": [{"solidity": 0.9878127822743658, "top": 345, "right": 4940, "bottom": 3720, "left": 915}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717598f.jpg"} -{"rects": [{"solidity": 0.9878166555233638, "top": 1650, "right": 3435, "bottom": 5010, "left": 770}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723821f.jpg"} -{"rects": [{"solidity": 0.9878169072908034, "top": 285, "right": 5005, "bottom": 3670, "left": 1000}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719848f.jpg"} -{"rects": [{"solidity": 0.9878204095018135, "top": 260, "right": 4990, "bottom": 3645, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717457f.jpg"} -{"rects": [{"solidity": 0.98782137312176, "top": 635, "right": 3095, "bottom": 2465, "left": 1755}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509515.jpg"} -{"rects": [{"solidity": 0.9878215911630807, "top": 825, "right": 4115, "bottom": 3190, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723628f.jpg"} -{"rects": [{"solidity": 0.9878313091964559, "top": 485, "right": 3290, "bottom": 2435, "left": 535}, {"solidity": 0.991802141110372, "top": 2575, "right": 2920, "bottom": 4025, "left": 1050}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705545f.jpg"} -{"rects": [{"solidity": 0.9878325923245274, "top": 1130, "right": 3345, "bottom": 5000, "left": 305}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/731892f.jpg"} -{"rects": [{"solidity": 0.9878365131137123, "top": 1030, "right": 3415, "bottom": 5000, "left": 225}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709487f.jpg"} -{"rects": [{"solidity": 0.9878458349788909, "top": 4200, "right": 3150, "bottom": 5790, "left": 505}, {"solidity": 0.996550447655582, "top": 2360, "right": 3185, "bottom": 3965, "left": 785}, {"solidity": 0.995563796592597, "top": 460, "right": 3180, "bottom": 2050, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720988f.jpg"} -{"rects": [{"solidity": 0.9878479080569984, "top": 490, "right": 3935, "bottom": 6010, "left": 130}], "shape": {"h": 6140, "w": 4065}, "file": "/usr/local/google/home/danvk/milstein/707393f.jpg"} -{"rects": [{"solidity": 0.9878490417614992, "top": 540, "right": 5440, "bottom": 2775, "left": 625}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726948f.jpg"} -{"rects": [{"solidity": 0.987849127942432, "top": 1095, "right": 1805, "bottom": 2885, "left": 415}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700083f.jpg"} -{"rects": [{"solidity": 0.9878593481893158, "top": 345, "right": 5145, "bottom": 3685, "left": 1065}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717444f.jpg"} -{"rects": [{"solidity": 0.9878594104798559, "top": 405, "right": 4965, "bottom": 3615, "left": 955}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733590f.jpg"} -{"rects": [{"solidity": 0.9878609547995333, "top": 1090, "right": 3640, "bottom": 5135, "left": 285}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705828f.jpg"} -{"rects": [{"solidity": 0.9878776956809034, "top": 430, "right": 3330, "bottom": 1360, "left": 2175}, {"solidity": 0.9948801689421471, "top": 430, "right": 1760, "bottom": 1325, "left": 605}, {"solidity": 0.9962672077962748, "top": 1350, "right": 1750, "bottom": 2245, "left": 620}], "shape": {"h": 2555, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727110f.jpg"} -{"rects": [{"solidity": 0.987884956671179, "top": 305, "right": 5070, "bottom": 3655, "left": 995}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720982f.jpg"} -{"rects": [{"solidity": 0.9878933451816416, "top": 300, "right": 3865, "bottom": 2790, "left": 805}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715894f.jpg"} -{"rects": [{"solidity": 0.9878941218092349, "top": 810, "right": 2580, "bottom": 3865, "left": 640}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711393f.jpg"} -{"rects": [{"solidity": 0.9879000935466064, "top": 340, "right": 3670, "bottom": 2865, "left": 645}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509821.jpg"} -{"rects": [{"solidity": 0.9879012697959766, "top": 850, "right": 3225, "bottom": 2790, "left": 480}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706008f.jpg"} -{"rects": [{"solidity": 0.987905247365135, "top": 310, "right": 5065, "bottom": 3685, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703333f.jpg"} -{"rects": [{"solidity": 0.9879193509044208, "top": 1050, "right": 3485, "bottom": 5090, "left": 280}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721669f.jpg"} -{"rects": [{"solidity": 0.9879204182232398, "top": 1135, "right": 1700, "bottom": 2870, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715135f.jpg"} -{"rects": [{"solidity": 0.9879275799883063, "top": 980, "right": 4885, "bottom": 3380, "left": 1150}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722702f.jpg"} -{"rects": [{"solidity": 0.987932082479633, "top": 480, "right": 5150, "bottom": 3510, "left": 1315}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731102f.jpg"} -{"rects": [{"solidity": 0.9879374549312105, "top": 515, "right": 4955, "bottom": 3495, "left": 1110}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712869f.jpg"} -{"rects": [{"solidity": 0.987938388072443, "top": 380, "right": 3180, "bottom": 1965, "left": 800}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/713683f.jpg"} -{"rects": [{"solidity": 0.9879437381865434, "top": 590, "right": 4970, "bottom": 3550, "left": 1150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722561f.jpg"} -{"rects": [{"solidity": 0.9879514492430658, "top": 130, "right": 2875, "bottom": 1315, "left": 1590}], "shape": {"h": 3935, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1557873.jpg"} -{"rects": [{"solidity": 0.9879583748717017, "top": 535, "right": 5415, "bottom": 1780, "left": 3315}, {"solidity": 0.9863215582832506, "top": 505, "right": 2905, "bottom": 1725, "left": 820}, {"solidity": 0.9899518192755861, "top": 2065, "right": 2700, "bottom": 3305, "left": 830}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732294f.jpg"} -{"rects": [{"solidity": 0.987962604452584, "top": 1210, "right": 3470, "bottom": 4830, "left": 440}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723029f.jpg"} -{"rects": [{"solidity": 0.9879742808142389, "top": 1385, "right": 3460, "bottom": 4815, "left": 435}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719174f.jpg"} -{"rects": [{"solidity": 0.9879781134691343, "top": 130, "right": 5115, "bottom": 3565, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705426f.jpg"} -{"rects": [{"solidity": 0.9879806047167358, "top": 295, "right": 4050, "bottom": 2710, "left": 1000}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715988f.jpg"} -{"rects": [{"solidity": 0.9879860048950293, "top": 450, "right": 3260, "bottom": 3755, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714861f.jpg"} -{"rects": [{"solidity": 0.9879946826517385, "top": 635, "right": 5035, "bottom": 3460, "left": 1205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722054f.jpg"} -{"rects": [{"solidity": 0.9880009539614242, "top": 930, "right": 1935, "bottom": 3040, "left": 730}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722987f.jpg"} -{"rects": [{"solidity": 0.988004048715186, "top": 425, "right": 3065, "bottom": 2050, "left": 670}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727468f.jpg"} -{"rects": [{"solidity": 0.9880141346119525, "top": 600, "right": 2690, "bottom": 3475, "left": 805}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704423f.jpg"} -{"rects": [{"solidity": 0.9880251135388071, "top": 685, "right": 5320, "bottom": 3275, "left": 855}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730937f.jpg"} -{"rects": [{"solidity": 0.9880285779464526, "top": 2150, "right": 3295, "bottom": 3985, "left": 640}, {"solidity": 0.9921158088475245, "top": 4040, "right": 3285, "bottom": 5875, "left": 645}, {"solidity": 0.960386520137076, "top": 275, "right": 3285, "bottom": 2095, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725916f.jpg"} -{"rects": [{"solidity": 0.988032407671927, "top": 475, "right": 3295, "bottom": 3545, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713348f.jpg"} -{"rects": [{"solidity": 0.9880335150713829, "top": 525, "right": 3315, "bottom": 2425, "left": 605}, {"solidity": 0.9965531188550758, "top": 3055, "right": 3255, "bottom": 4915, "left": 570}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712961f.jpg"} -{"rects": [{"solidity": 0.9880406522732386, "top": 455, "right": 4645, "bottom": 3340, "left": 890}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708219f.jpg"} -{"rects": [{"solidity": 0.988045082286667, "top": 420, "right": 3835, "bottom": 3145, "left": 300}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711645f.jpg"} -{"rects": [{"solidity": 0.9880480512650708, "top": 420, "right": 2135, "bottom": 3700, "left": 510}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724470f.jpg"} -{"rects": [{"solidity": 0.9880505476510482, "top": 980, "right": 2245, "bottom": 2180, "left": 800}, {"solidity": 0.9886742065983675, "top": 260, "right": 3800, "bottom": 1410, "left": 2385}, {"solidity": 0.9729699043849903, "top": 1650, "right": 3805, "bottom": 2775, "left": 2410}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509161.jpg"} -{"rects": [{"solidity": 0.9880529134990061, "top": 635, "right": 5020, "bottom": 3585, "left": 1215}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714919f.jpg"} -{"rects": [{"solidity": 0.98805565649739, "top": 475, "right": 3175, "bottom": 2075, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721032f.jpg"} -{"rects": [{"solidity": 0.9880579606119062, "top": 305, "right": 2490, "bottom": 1690, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715871f.jpg"} -{"rects": [{"solidity": 0.988063690887591, "top": 425, "right": 3165, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701007f.jpg"} -{"rects": [{"solidity": 0.9880648203394798, "top": 1075, "right": 3605, "bottom": 5095, "left": 275}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/709197f.jpg"} -{"rects": [{"solidity": 0.9880698627809849, "top": 580, "right": 4985, "bottom": 3615, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720938f.jpg"} -{"rects": [{"solidity": 0.9880801383958969, "top": 380, "right": 4995, "bottom": 3685, "left": 945}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717645f.jpg"} -{"rects": [{"solidity": 0.988088673567237, "top": 955, "right": 2720, "bottom": 4125, "left": 240}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507719.jpg"} -{"rects": [{"solidity": 0.9880996184906172, "top": 395, "right": 3135, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701878f.jpg"} -{"rects": [{"solidity": 0.9881064109053163, "top": 465, "right": 3235, "bottom": 3655, "left": 885}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714766f.jpg"} -{"rects": [{"solidity": 0.9881064343142468, "top": 360, "right": 3175, "bottom": 2185, "left": 545}, {"solidity": 0.9737691071087982, "top": 2355, "right": 3175, "bottom": 4185, "left": 545}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702093f.jpg"} -{"rects": [{"solidity": 0.9881093639105749, "top": 310, "right": 5065, "bottom": 3710, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705521f.jpg"} -{"rects": [{"solidity": 0.9881105378507081, "top": 2180, "right": 4005, "bottom": 3290, "left": 2170}, {"solidity": 0.9886603079608504, "top": 580, "right": 2085, "bottom": 1685, "left": 255}, {"solidity": 0.9889393739434275, "top": 575, "right": 3985, "bottom": 1675, "left": 2160}, {"solidity": 0.9863882648341483, "top": 2185, "right": 5920, "bottom": 3295, "left": 4095}, {"solidity": 0.9856951358427157, "top": 2195, "right": 2100, "bottom": 3295, "left": 275}, {"solidity": 0.9877780308206179, "top": 580, "right": 5925, "bottom": 1680, "left": 4105}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720244f.jpg"} -{"rects": [{"solidity": 0.9881168381316833, "top": 990, "right": 4605, "bottom": 2765, "left": 1545}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732420f.jpg"} -{"rects": [{"solidity": 0.9881251268005681, "top": 130, "right": 5175, "bottom": 3610, "left": 1125}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726147f.jpg"} -{"rects": [{"solidity": 0.9881346815139999, "top": 290, "right": 5070, "bottom": 3690, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706135f.jpg"} -{"rects": [{"solidity": 0.9881370972832282, "top": 1220, "right": 3340, "bottom": 4940, "left": 580}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721263f.jpg"} -{"rects": [{"solidity": 0.9881389124058254, "top": 630, "right": 5050, "bottom": 3645, "left": 1145}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708769f.jpg"} -{"rects": [{"solidity": 0.9881497332777542, "top": 915, "right": 4620, "bottom": 3120, "left": 1485}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731152f.jpg"} -{"rects": [{"solidity": 0.988165303043313, "top": 650, "right": 5215, "bottom": 3455, "left": 3365}, {"solidity": 0.9979577160937725, "top": 660, "right": 2765, "bottom": 2085, "left": 920}, {"solidity": 0.9975713709754833, "top": 2105, "right": 2770, "bottom": 3530, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727355f.jpg"} -{"rects": [{"solidity": 0.9881702432900951, "top": 550, "right": 5135, "bottom": 3665, "left": 3055}, {"solidity": 0.994504652121003, "top": 2070, "right": 2675, "bottom": 3505, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717147f.jpg"} -{"rects": [{"solidity": 0.9881708906770951, "top": 410, "right": 2525, "bottom": 3425, "left": 1175}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714750f.jpg"} -{"rects": [{"solidity": 0.9881721524741177, "top": 640, "right": 2690, "bottom": 3535, "left": 840}, {"solidity": 0.9955593509820666, "top": 2065, "right": 5145, "bottom": 3490, "left": 3315}, {"solidity": 0.9937608663255675, "top": 580, "right": 5185, "bottom": 1975, "left": 3315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702449f.jpg"} -{"rects": [{"solidity": 0.9881819334145306, "top": 1135, "right": 3495, "bottom": 4920, "left": 455}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712663f.jpg"} -{"rects": [{"solidity": 0.9881876917052796, "top": 130, "right": 2330, "bottom": 3710, "left": 130}], "shape": {"h": 3840, "w": 2460}, "file": "/usr/local/google/home/danvk/milstein/1557968.jpg"} -{"rects": [{"solidity": 0.9881982412371498, "top": 720, "right": 2025, "bottom": 2015, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717280f.jpg"} -{"rects": [{"solidity": 0.9882022949094328, "top": 1030, "right": 3555, "bottom": 5055, "left": 355}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733596f.jpg"} -{"rects": [{"solidity": 0.9882173725866807, "top": 255, "right": 3840, "bottom": 2785, "left": 800}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716441f.jpg"} -{"rects": [{"solidity": 0.9882262926343423, "top": 450, "right": 3115, "bottom": 2055, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700481f.jpg"} -{"rects": [{"solidity": 0.9882266460386518, "top": 515, "right": 2875, "bottom": 3720, "left": 555}, {"solidity": 0.989822541017898, "top": 590, "right": 4990, "bottom": 2225, "left": 3960}], "shape": {"h": 4430, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/703407f.jpg"} -{"rects": [{"solidity": 0.988228636106395, "top": 720, "right": 3990, "bottom": 3545, "left": 2145}, {"solidity": 0.9941084328899071, "top": 820, "right": 2035, "bottom": 3195, "left": 440}, {"solidity": 0.9950435243662624, "top": 820, "right": 5705, "bottom": 3200, "left": 4115}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712157f.jpg"} -{"rects": [{"solidity": 0.988231875161224, "top": 425, "right": 3170, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/722006f.jpg"} -{"rects": [{"solidity": 0.9882340936310077, "top": 990, "right": 3460, "bottom": 4905, "left": 370}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714071f.jpg"} -{"rects": [{"solidity": 0.9882367827623451, "top": 870, "right": 3710, "bottom": 2230, "left": 1655}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507775.jpg"} -{"rects": [{"solidity": 0.9882403587443946, "top": 445, "right": 3320, "bottom": 2370, "left": 550}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726854f.jpg"} -{"rects": [{"solidity": 0.9882425963778878, "top": 505, "right": 2875, "bottom": 4770, "left": 130}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508253.jpg"} -{"rects": [{"solidity": 0.9882493310790571, "top": 560, "right": 5035, "bottom": 3660, "left": 1040}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731843f.jpg"} -{"rects": [{"solidity": 0.9882568501707337, "top": 1000, "right": 3375, "bottom": 4860, "left": 420}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723903f.jpg"} -{"rects": [{"solidity": 0.9882624583046984, "top": 1310, "right": 2920, "bottom": 4685, "left": 1135}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733316f.jpg"} -{"rects": [{"solidity": 0.9882743437438276, "top": 400, "right": 3840, "bottom": 3350, "left": 295}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/702185f.jpg"} -{"rects": [{"solidity": 0.9882758620689656, "top": 445, "right": 3350, "bottom": 2355, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709372f.jpg"} -{"rects": [{"solidity": 0.9882761719622934, "top": 875, "right": 2835, "bottom": 4145, "left": 1175}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724466f.jpg"} -{"rects": [{"solidity": 0.9882893958728874, "top": 820, "right": 3955, "bottom": 1925, "left": 2450}, {"solidity": 0.9874541223882746, "top": 775, "right": 2125, "bottom": 1865, "left": 650}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507889.jpg"} -{"rects": [{"solidity": 0.9882939692731025, "top": 580, "right": 2565, "bottom": 1870, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703105f.jpg"} -{"rects": [{"solidity": 0.9883048382762324, "top": 295, "right": 5060, "bottom": 3650, "left": 985}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720989f.jpg"} -{"rects": [{"solidity": 0.9883071500460026, "top": 585, "right": 4990, "bottom": 3585, "left": 1110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723928f.jpg"} -{"rects": [{"solidity": 0.988311699776651, "top": 335, "right": 4990, "bottom": 3585, "left": 995}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717340f.jpg"} -{"rects": [{"solidity": 0.9883246917989581, "top": 305, "right": 1890, "bottom": 1210, "left": 725}], "shape": {"h": 3945, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727143f.jpg"} -{"rects": [{"solidity": 0.9883277822370005, "top": 130, "right": 5090, "bottom": 3835, "left": 130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700606f.jpg"} -{"rects": [{"solidity": 0.9883283462413611, "top": 670, "right": 4030, "bottom": 3290, "left": 2205}, {"solidity": 0.9947824695391135, "top": 645, "right": 2030, "bottom": 3325, "left": 325}, {"solidity": 0.9965735431111455, "top": 805, "right": 5805, "bottom": 3230, "left": 4190}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727551f.jpg"} -{"rects": [{"solidity": 0.9883303411131059, "top": 1295, "right": 3365, "bottom": 4985, "left": 435}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709129f.jpg"} -{"rects": [{"solidity": 0.9883335860648721, "top": 885, "right": 4870, "bottom": 2995, "left": 3615}, {"solidity": 0.9865304781530926, "top": 920, "right": 1860, "bottom": 3015, "left": 625}, {"solidity": 0.9856507821828873, "top": 910, "right": 3355, "bottom": 2995, "left": 2105}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732310f.jpg"} -{"rects": [{"solidity": 0.9883358170289656, "top": 455, "right": 5005, "bottom": 3640, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726715f.jpg"} -{"rects": [{"solidity": 0.9883455980363062, "top": 655, "right": 2715, "bottom": 3490, "left": 910}, {"solidity": 0.9949367850088732, "top": 645, "right": 5220, "bottom": 2075, "left": 3430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726338f.jpg"} -{"rects": [{"solidity": 0.9883529598350581, "top": 435, "right": 3385, "bottom": 2350, "left": 700}, {"solidity": 0.9983803415193986, "top": 2565, "right": 3000, "bottom": 3970, "left": 1195}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/726978f.jpg"} -{"rects": [{"solidity": 0.9883863588252563, "top": 610, "right": 4955, "bottom": 3485, "left": 1215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713029f.jpg"} -{"rects": [{"solidity": 0.988395406146836, "top": 320, "right": 5045, "bottom": 3710, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705217f.jpg"} -{"rects": [{"solidity": 0.9884016258282259, "top": 1045, "right": 1995, "bottom": 3015, "left": 480}, {"solidity": 0.9921779484441995, "top": 1045, "right": 3840, "bottom": 2995, "left": 2320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722786f.jpg"} -{"rects": [{"solidity": 0.988409910709006, "top": 225, "right": 5110, "bottom": 3640, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731486f.jpg"} -{"rects": [{"solidity": 0.9884123135997167, "top": 280, "right": 5070, "bottom": 3685, "left": 1025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721650f.jpg"} -{"rects": [{"solidity": 0.9884160975547719, "top": 1010, "right": 4610, "bottom": 3330, "left": 1570}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709429f.jpg"} -{"rects": [{"solidity": 0.9884239183956135, "top": 4065, "right": 3070, "bottom": 5720, "left": 655}, {"solidity": 0.9973696956866217, "top": 2160, "right": 3065, "bottom": 3785, "left": 645}, {"solidity": 0.9932867132867133, "top": 370, "right": 2890, "bottom": 1895, "left": 995}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701755f.jpg"} -{"rects": [{"solidity": 0.9884239852156985, "top": 520, "right": 5630, "bottom": 3875, "left": 1430}], "shape": {"h": 4425, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/702212f.jpg"} -{"rects": [{"solidity": 0.9884304000940937, "top": 875, "right": 3490, "bottom": 4895, "left": 285}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708115f.jpg"} -{"rects": [{"solidity": 0.9884305179611873, "top": 285, "right": 5100, "bottom": 3710, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717799f.jpg"} -{"rects": [{"solidity": 0.9884324651476718, "top": 510, "right": 3235, "bottom": 3715, "left": 680}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714858f.jpg"} -{"rects": [{"solidity": 0.9884338208651341, "top": 255, "right": 4995, "bottom": 3595, "left": 1000}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723178f.jpg"} -{"rects": [{"solidity": 0.9884403695997691, "top": 630, "right": 4955, "bottom": 3650, "left": 1155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709949f.jpg"} -{"rects": [{"solidity": 0.9884465781428499, "top": 890, "right": 3105, "bottom": 2265, "left": 1105}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508379.jpg"} -{"rects": [{"solidity": 0.9884635276698881, "top": 1640, "right": 2925, "bottom": 4540, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710654f.jpg"} -{"rects": [{"solidity": 0.9884643096236801, "top": 1235, "right": 3805, "bottom": 5525, "left": 320}], "shape": {"h": 6905, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/708842f.jpg"} -{"rects": [{"solidity": 0.9884734778797007, "top": 300, "right": 5080, "bottom": 3720, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721053f.jpg"} -{"rects": [{"solidity": 0.988476782510743, "top": 360, "right": 3225, "bottom": 2080, "left": 590}, {"solidity": 0.9968786640554365, "top": 2210, "right": 3140, "bottom": 3840, "left": 710}, {"solidity": 0.9960591164494333, "top": 3965, "right": 3130, "bottom": 5600, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718213f.jpg"} -{"rects": [{"solidity": 0.9884784710403733, "top": 950, "right": 3585, "bottom": 2460, "left": 1465}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509153.jpg"} -{"rects": [{"solidity": 0.9884818107397779, "top": 130, "right": 5115, "bottom": 3590, "left": 995}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702323f.jpg"} -{"rects": [{"solidity": 0.9884819188752901, "top": 1330, "right": 3795, "bottom": 5505, "left": 425}], "shape": {"h": 6910, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/708810f.jpg"} -{"rects": [{"solidity": 0.9884859924498312, "top": 670, "right": 1955, "bottom": 3070, "left": 365}, {"solidity": 0.9942532765673262, "top": 690, "right": 3790, "bottom": 3080, "left": 2200}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700690f.jpg"} -{"rects": [{"solidity": 0.9884913433956547, "top": 365, "right": 3845, "bottom": 2880, "left": 785}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509451.jpg"} -{"rects": [{"solidity": 0.9884956863679386, "top": 1290, "right": 3305, "bottom": 4765, "left": 490}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707448f.jpg"} -{"rects": [{"solidity": 0.9884958007995922, "top": 545, "right": 4945, "bottom": 3545, "left": 1190}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712917f.jpg"} -{"rects": [{"solidity": 0.988499572560708, "top": 1040, "right": 3525, "bottom": 5095, "left": 300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716925f.jpg"} -{"rects": [{"solidity": 0.988506791014628, "top": 505, "right": 5085, "bottom": 3600, "left": 1160}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/719999f.jpg"} -{"rects": [{"solidity": 0.9885124370870316, "top": 425, "right": 3165, "bottom": 3200, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713529f.jpg"} -{"rects": [{"solidity": 0.9885331685170123, "top": 310, "right": 5070, "bottom": 3710, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704164f.jpg"} -{"rects": [{"solidity": 0.98853448418407, "top": 410, "right": 3125, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734055f.jpg"} -{"rects": [{"solidity": 0.988535974732074, "top": 460, "right": 3055, "bottom": 2055, "left": 685}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728854f.jpg"} -{"rects": [{"solidity": 0.988536635579062, "top": 130, "right": 2065, "bottom": 3690, "left": 130}], "shape": {"h": 3820, "w": 2195}, "file": "/usr/local/google/home/danvk/milstein/1558298.jpg"} -{"rects": [{"solidity": 0.9885375751442184, "top": 1175, "right": 3425, "bottom": 4970, "left": 405}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717054f.jpg"} -{"rects": [{"solidity": 0.9885419157895302, "top": 815, "right": 5885, "bottom": 3440, "left": 4095}, {"solidity": 0.9790919649174331, "top": 790, "right": 2055, "bottom": 3410, "left": 255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732940f.jpg"} -{"rects": [{"solidity": 0.9885504060658402, "top": 800, "right": 4565, "bottom": 3795, "left": 2460}, {"solidity": 0.9789992288032429, "top": 800, "right": 6610, "bottom": 3775, "left": 4590}, {"solidity": 0.9575975413932813, "top": 850, "right": 2435, "bottom": 3720, "left": 370}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706430f.jpg"} -{"rects": [{"solidity": 0.9885560762518073, "top": 760, "right": 2000, "bottom": 3130, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720014f.jpg"} -{"rects": [{"solidity": 0.9885614223731846, "top": 750, "right": 2385, "bottom": 3345, "left": 430}, {"solidity": 0.9965666931012188, "top": 895, "right": 4220, "bottom": 3335, "left": 2575}, {"solidity": 0.995684182993193, "top": 920, "right": 5940, "bottom": 3360, "left": 4300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724009f.jpg"} -{"rects": [{"solidity": 0.9885716616107589, "top": 1035, "right": 2745, "bottom": 4200, "left": 210}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509073.jpg"} -{"rects": [{"solidity": 0.988580858663423, "top": 315, "right": 5795, "bottom": 4115, "left": 1200}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711257f.jpg"} -{"rects": [{"solidity": 0.9885846357653226, "top": 635, "right": 2125, "bottom": 1840, "left": 605}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726007f.jpg"} -{"rects": [{"solidity": 0.9886060245610285, "top": 335, "right": 5055, "bottom": 3710, "left": 1005}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705152f.jpg"} -{"rects": [{"solidity": 0.988607850488853, "top": 505, "right": 2875, "bottom": 1930, "left": 1010}, {"solidity": 0.9731001632317987, "top": 2210, "right": 2840, "bottom": 3660, "left": 975}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731065f.jpg"} -{"rects": [{"solidity": 0.9886107879024656, "top": 2210, "right": 2950, "bottom": 3770, "left": 1040}, {"solidity": 0.96197616468039, "top": 390, "right": 2945, "bottom": 1925, "left": 1050}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714931f.jpg"} -{"rects": [{"solidity": 0.9886227873537743, "top": 910, "right": 1905, "bottom": 2965, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706209f.jpg"} -{"rects": [{"solidity": 0.9886239680996556, "top": 870, "right": 4880, "bottom": 3235, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701816f.jpg"} -{"rects": [{"solidity": 0.9886333943036321, "top": 295, "right": 5060, "bottom": 3665, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724669f.jpg"} -{"rects": [{"solidity": 0.9886340802152619, "top": 1060, "right": 3370, "bottom": 5030, "left": 255}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708544f.jpg"} -{"rects": [{"solidity": 0.988639301169306, "top": 845, "right": 1955, "bottom": 3225, "left": 375}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719046f.jpg"} -{"rects": [{"solidity": 0.988643627123227, "top": 280, "right": 5070, "bottom": 3690, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719373f.jpg"} -{"rects": [{"solidity": 0.9886485396731765, "top": 295, "right": 5105, "bottom": 3680, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720040f.jpg"} -{"rects": [{"solidity": 0.9886488140180817, "top": 400, "right": 3130, "bottom": 3700, "left": 600}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714108f.jpg"} -{"rects": [{"solidity": 0.988659808935259, "top": 625, "right": 2655, "bottom": 3495, "left": 815}, {"solidity": 0.9958148767442088, "top": 665, "right": 5175, "bottom": 2090, "left": 3365}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707144f.jpg"} -{"rects": [{"solidity": 0.9886643057844908, "top": 720, "right": 2535, "bottom": 3450, "left": 615}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719358f.jpg"} -{"rects": [{"solidity": 0.9886793512272036, "top": 300, "right": 5110, "bottom": 3730, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733735f.jpg"} -{"rects": [{"solidity": 0.9886901955758571, "top": 130, "right": 2440, "bottom": 3690, "left": 130}], "shape": {"h": 3820, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/1558349.jpg"} -{"rects": [{"solidity": 0.9886924512650352, "top": 660, "right": 4985, "bottom": 1900, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708491f.jpg"} -{"rects": [{"solidity": 0.9886926329771583, "top": 1085, "right": 3425, "bottom": 4945, "left": 330}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722606f.jpg"} -{"rects": [{"solidity": 0.9886936103511386, "top": 660, "right": 4010, "bottom": 3375, "left": 310}, {"solidity": 0.9963294745071162, "top": 655, "right": 5775, "bottom": 3385, "left": 4045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716813f.jpg"} -{"rects": [{"solidity": 0.988696614164197, "top": 300, "right": 5050, "bottom": 3690, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704959f.jpg"} -{"rects": [{"solidity": 0.9887298535883162, "top": 340, "right": 2845, "bottom": 1835, "left": 980}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708402f.jpg"} -{"rects": [{"solidity": 0.9887361992137975, "top": 1055, "right": 3460, "bottom": 4940, "left": 405}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731909f.jpg"} -{"rects": [{"solidity": 0.9887367045179674, "top": 990, "right": 3340, "bottom": 5135, "left": 585}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713863f.jpg"} -{"rects": [{"solidity": 0.9887410858907371, "top": 1215, "right": 3325, "bottom": 4960, "left": 525}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721259f.jpg"} -{"rects": [{"solidity": 0.9887417058168257, "top": 630, "right": 2655, "bottom": 3485, "left": 820}, {"solidity": 0.996651252604299, "top": 2060, "right": 5215, "bottom": 3445, "left": 3420}, {"solidity": 0.9960281196873548, "top": 650, "right": 5205, "bottom": 2045, "left": 3425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705285f.jpg"} -{"rects": [{"solidity": 0.9887508217920228, "top": 565, "right": 4995, "bottom": 3595, "left": 1165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717042f.jpg"} -{"rects": [{"solidity": 0.9887619591603598, "top": 645, "right": 5050, "bottom": 3670, "left": 1255}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709893f.jpg"} -{"rects": [{"solidity": 0.9887689667630057, "top": 2375, "right": 2540, "bottom": 3840, "left": 545}, {"solidity": 0.9852438715742281, "top": 750, "right": 2650, "bottom": 2225, "left": 640}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508407.jpg"} -{"rects": [{"solidity": 0.9887802593325541, "top": 440, "right": 3065, "bottom": 1790, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718869f.jpg"} -{"rects": [{"solidity": 0.9887851620015263, "top": 825, "right": 4620, "bottom": 3345, "left": 1350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731769f.jpg"} -{"rects": [{"solidity": 0.9887857075053272, "top": 470, "right": 3155, "bottom": 2080, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701599f.jpg"} -{"rects": [{"solidity": 0.9887891632725855, "top": 4055, "right": 2865, "bottom": 5610, "left": 905}, {"solidity": 0.9950469878673118, "top": 2235, "right": 2850, "bottom": 3745, "left": 945}, {"solidity": 0.993445410901876, "top": 440, "right": 2875, "bottom": 1940, "left": 965}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701085f.jpg"} -{"rects": [{"solidity": 0.9887976252719637, "top": 420, "right": 3285, "bottom": 2000, "left": 895}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727023f.jpg"} -{"rects": [{"solidity": 0.9888025124127788, "top": 600, "right": 4935, "bottom": 3580, "left": 1105}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723381f.jpg"} -{"rects": [{"solidity": 0.988804584815075, "top": 130, "right": 5110, "bottom": 3570, "left": 1060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722955f.jpg"} -{"rects": [{"solidity": 0.9888059272873471, "top": 545, "right": 2275, "bottom": 1845, "left": 530}, {"solidity": 0.9948605301958896, "top": 2080, "right": 2270, "bottom": 3345, "left": 595}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702770f.jpg"} -{"rects": [{"solidity": 0.9888103301757105, "top": 475, "right": 3195, "bottom": 3575, "left": 580}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/713864f.jpg"} -{"rects": [{"solidity": 0.9888134074079343, "top": 830, "right": 4825, "bottom": 3375, "left": 1285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731177f.jpg"} -{"rects": [{"solidity": 0.9888161145106222, "top": 375, "right": 2655, "bottom": 3755, "left": 1265}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714378f.jpg"} -{"rects": [{"solidity": 0.988819930844933, "top": 1245, "right": 3605, "bottom": 3235, "left": 2150}, {"solidity": 0.9970184104176022, "top": 1745, "right": 5475, "bottom": 3730, "left": 4050}, {"solidity": 0.9957633026450124, "top": 245, "right": 5735, "bottom": 1680, "left": 3745}, {"solidity": 0.9998913599471285, "top": 680, "right": 1860, "bottom": 2660, "left": 455}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732890f.jpg"} -{"rects": [{"solidity": 0.9888320036101588, "top": 265, "right": 5210, "bottom": 3670, "left": 1180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719111f.jpg"} -{"rects": [{"solidity": 0.9888338685036467, "top": 645, "right": 5030, "bottom": 3660, "left": 1125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715307f.jpg"} -{"rects": [{"solidity": 0.9888366166447448, "top": 230, "right": 5025, "bottom": 3630, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724000f.jpg"} -{"rects": [{"solidity": 0.9888466392408175, "top": 935, "right": 1915, "bottom": 3130, "left": 505}, {"solidity": 0.9505365589381343, "top": 930, "right": 3650, "bottom": 3125, "left": 2265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730242f.jpg"} -{"rects": [{"solidity": 0.9888782723615184, "top": 590, "right": 3305, "bottom": 1775, "left": 350}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728997f.jpg"} -{"rects": [{"solidity": 0.9888799890315272, "top": 585, "right": 2780, "bottom": 3455, "left": 940}, {"solidity": 0.9971452805040592, "top": 2010, "right": 5340, "bottom": 3425, "left": 3500}, {"solidity": 0.9959557569556108, "top": 560, "right": 5335, "bottom": 1975, "left": 3500}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705211f.jpg"} -{"rects": [{"solidity": 0.988892783424855, "top": 300, "right": 2100, "bottom": 1405, "left": 620}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716308f.jpg"} -{"rects": [{"solidity": 0.9889012160791125, "top": 1160, "right": 3415, "bottom": 4985, "left": 360}], "shape": {"h": 6240, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/701710f.jpg"} -{"rects": [{"solidity": 0.9889027151628894, "top": 525, "right": 2180, "bottom": 2615, "left": 690}, {"solidity": 0.9937523346646908, "top": 535, "right": 3945, "bottom": 2625, "left": 2470}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716148f.jpg"} -{"rects": [{"solidity": 0.9889048788570755, "top": 770, "right": 3110, "bottom": 2200, "left": 1130}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509329.jpg"} -{"rects": [{"solidity": 0.9889158495172836, "top": 130, "right": 2915, "bottom": 3115, "left": 130}], "shape": {"h": 3640, "w": 3045}, "file": "/usr/local/google/home/danvk/milstein/1558126.jpg"} -{"rects": [{"solidity": 0.9889215004812173, "top": 400, "right": 5425, "bottom": 3660, "left": 1355}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732300f.jpg"} -{"rects": [{"solidity": 0.9889357837995483, "top": 665, "right": 2740, "bottom": 3680, "left": 195}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507512.jpg"} -{"rects": [{"solidity": 0.9889380964511767, "top": 545, "right": 3240, "bottom": 2480, "left": 580}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722723f.jpg"} -{"rects": [{"solidity": 0.9889444133014775, "top": 420, "right": 4540, "bottom": 3690, "left": 3230}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714303f.jpg"} -{"rects": [{"solidity": 0.988949676964483, "top": 425, "right": 3165, "bottom": 1985, "left": 775}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725339f.jpg"} -{"rects": [{"solidity": 0.9889513729527865, "top": 590, "right": 4920, "bottom": 3600, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720942f.jpg"} -{"rects": [{"solidity": 0.9889708432564914, "top": 2230, "right": 2825, "bottom": 3855, "left": 1670}], "shape": {"h": 6010, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/465540.jpg"} -{"rects": [{"solidity": 0.9889729646238333, "top": 435, "right": 3155, "bottom": 3510, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714854f.jpg"} -{"rects": [{"solidity": 0.988980012196634, "top": 1045, "right": 4390, "bottom": 2945, "left": 1760}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727006f.jpg"} -{"rects": [{"solidity": 0.9889833402224898, "top": 2175, "right": 2680, "bottom": 3445, "left": 1000}, {"solidity": 0.9944308603252227, "top": 715, "right": 2645, "bottom": 1945, "left": 1005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713341f.jpg"} -{"rects": [{"solidity": 0.9889988293569423, "top": 525, "right": 5120, "bottom": 3525, "left": 1320}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710425f.jpg"} -{"rects": [{"solidity": 0.9890005742113535, "top": 900, "right": 2580, "bottom": 3720, "left": 330}], "shape": {"h": 4565, "w": 2950}, "file": "/usr/local/google/home/danvk/milstein/723017f.jpg"} -{"rects": [{"solidity": 0.9890008929968062, "top": 365, "right": 2520, "bottom": 3555, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723367f.jpg"} -{"rects": [{"solidity": 0.9890057769685526, "top": 770, "right": 3245, "bottom": 2910, "left": 605}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708248f.jpg"} -{"rects": [{"solidity": 0.9890059285436522, "top": 820, "right": 2030, "bottom": 3175, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712135f.jpg"} -{"rects": [{"solidity": 0.9890085403427279, "top": 215, "right": 2915, "bottom": 1715, "left": 945}, {"solidity": 0.9917752544406834, "top": 1815, "right": 2635, "bottom": 3510, "left": 1310}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721894f.jpg"} -{"rects": [{"solidity": 0.9890154534992631, "top": 565, "right": 2635, "bottom": 3625, "left": 200}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508435.jpg"} -{"rects": [{"solidity": 0.9890162831212775, "top": 375, "right": 4465, "bottom": 3765, "left": 1500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731221f.jpg"} -{"rects": [{"solidity": 0.9890187190958324, "top": 490, "right": 5440, "bottom": 3925, "left": 2905}], "shape": {"h": 4585, "w": 5680}, "file": "/usr/local/google/home/danvk/milstein/1823502.jpg"} -{"rects": [{"solidity": 0.989018893490946, "top": 410, "right": 4980, "bottom": 3690, "left": 1010}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718801f.jpg"} -{"rects": [{"solidity": 0.9890255695234669, "top": 705, "right": 2535, "bottom": 3505, "left": 530}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714137f.jpg"} -{"rects": [{"solidity": 0.9890302781077706, "top": 415, "right": 3450, "bottom": 1960, "left": 1300}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/706412f.jpg"} -{"rects": [{"solidity": 0.9890345738947881, "top": 500, "right": 5185, "bottom": 1910, "left": 3250}, {"solidity": 0.9864788963128518, "top": 2150, "right": 5060, "bottom": 3430, "left": 3355}, {"solidity": 0.9878845734556662, "top": 530, "right": 2875, "bottom": 1795, "left": 1175}, {"solidity": 0.9848987223434091, "top": 2170, "right": 2855, "bottom": 3395, "left": 1190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705634f.jpg"} -{"rects": [{"solidity": 0.9890432451304509, "top": 595, "right": 2555, "bottom": 2060, "left": 545}, {"solidity": 0.9838593817070073, "top": 2200, "right": 2520, "bottom": 3665, "left": 545}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715411f.jpg"} -{"rects": [{"solidity": 0.989045353140676, "top": 705, "right": 2255, "bottom": 1915, "left": 625}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704355f.jpg"} -{"rects": [{"solidity": 0.9890474045151925, "top": 490, "right": 3230, "bottom": 2330, "left": 475}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704178f.jpg"} -{"rects": [{"solidity": 0.9890495773806043, "top": 415, "right": 1850, "bottom": 3665, "left": 645}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714581f.jpg"} -{"rects": [{"solidity": 0.9890509516645954, "top": 685, "right": 4585, "bottom": 3780, "left": 810}], "shape": {"h": 4635, "w": 5605}, "file": "/usr/local/google/home/danvk/milstein/1823500.jpg"} -{"rects": [{"solidity": 0.9890554107043873, "top": 385, "right": 2570, "bottom": 3210, "left": 350}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508821.jpg"} -{"rects": [{"solidity": 0.9890676450608227, "top": 745, "right": 4695, "bottom": 3185, "left": 1465}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722532f.jpg"} -{"rects": [{"solidity": 0.9890732928215441, "top": 480, "right": 3180, "bottom": 3955, "left": 515}, {"solidity": 0.9824437277872845, "top": 3960, "right": 3190, "bottom": 5685, "left": 520}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722922f.jpg"} -{"rects": [{"solidity": 0.9890776820303053, "top": 500, "right": 3180, "bottom": 2095, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721452f.jpg"} -{"rects": [{"solidity": 0.9890781535267786, "top": 250, "right": 5085, "bottom": 3680, "left": 1025}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717807f.jpg"} -{"rects": [{"solidity": 0.989079779658177, "top": 725, "right": 2315, "bottom": 3575, "left": 600}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714430f.jpg"} -{"rects": [{"solidity": 0.9890800270934275, "top": 645, "right": 2760, "bottom": 3555, "left": 910}, {"solidity": 0.9945554229414031, "top": 590, "right": 5325, "bottom": 2060, "left": 3490}, {"solidity": 0.9955550038434178, "top": 2050, "right": 5310, "bottom": 3510, "left": 3475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705089f.jpg"} -{"rects": [{"solidity": 0.989082775552521, "top": 3140, "right": 3310, "bottom": 5060, "left": 570}, {"solidity": 0.9961111066686924, "top": 655, "right": 3310, "bottom": 2485, "left": 710}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/717728f.jpg"} -{"rects": [{"solidity": 0.9890927091356008, "top": 665, "right": 4590, "bottom": 3330, "left": 1205}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723240f.jpg"} -{"rects": [{"solidity": 0.9891067439199375, "top": 2085, "right": 3040, "bottom": 3510, "left": 1065}, {"solidity": 0.9958345324830731, "top": 580, "right": 5280, "bottom": 1875, "left": 3345}, {"solidity": 0.9962408588766143, "top": 590, "right": 2860, "bottom": 1820, "left": 1205}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706762f.jpg"} -{"rects": [{"solidity": 0.9891084755430908, "top": 425, "right": 2680, "bottom": 1710, "left": 1015}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717377f.jpg"} -{"rects": [{"solidity": 0.9891131208368892, "top": 455, "right": 5060, "bottom": 3835, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718385f.jpg"} -{"rects": [{"solidity": 0.989120149236891, "top": 480, "right": 3205, "bottom": 3850, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714170f.jpg"} -{"rects": [{"solidity": 0.989127206933606, "top": 1265, "right": 3185, "bottom": 4655, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712616f.jpg"} -{"rects": [{"solidity": 0.9891365651762705, "top": 540, "right": 2920, "bottom": 2030, "left": 960}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714989f.jpg"} -{"rects": [{"solidity": 0.989141628622996, "top": 825, "right": 3200, "bottom": 2690, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709382f.jpg"} -{"rects": [{"solidity": 0.9891435660098287, "top": 325, "right": 4975, "bottom": 3640, "left": 950}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712940f.jpg"} -{"rects": [{"solidity": 0.9891451224277156, "top": 1090, "right": 3765, "bottom": 3010, "left": 2135}, {"solidity": 0.9957714347006382, "top": 1090, "right": 2005, "bottom": 3010, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720923f.jpg"} -{"rects": [{"solidity": 0.9891451245626269, "top": 2000, "right": 2385, "bottom": 3110, "left": 545}, {"solidity": 0.9884487529481679, "top": 980, "right": 5715, "bottom": 2820, "left": 4605}, {"solidity": 0.9862372269094688, "top": 2010, "right": 4385, "bottom": 3125, "left": 2545}, {"solidity": 0.983606354930134, "top": 560, "right": 4370, "bottom": 1680, "left": 2530}, {"solidity": 0.9893430602505469, "top": 545, "right": 2375, "bottom": 1650, "left": 540}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720246f.jpg"} -{"rects": [{"solidity": 0.9891475940420754, "top": 425, "right": 3200, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701099f.jpg"} -{"rects": [{"solidity": 0.9891554563044426, "top": 405, "right": 3215, "bottom": 2015, "left": 1150}], "shape": {"h": 6910, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711231f.jpg"} -{"rects": [{"solidity": 0.9891583028161164, "top": 670, "right": 3040, "bottom": 2075, "left": 825}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721120f.jpg"} -{"rects": [{"solidity": 0.9891594667409885, "top": 1345, "right": 2765, "bottom": 2660, "left": 1090}, {"solidity": 0.9799240114451897, "top": 1350, "right": 5095, "bottom": 2645, "left": 3425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721725f.jpg"} -{"rects": [{"solidity": 0.989160553575109, "top": 1650, "right": 3935, "bottom": 2825, "left": 2505}, {"solidity": 0.9953318384576714, "top": 370, "right": 3920, "bottom": 1520, "left": 2535}, {"solidity": 0.9747338384157629, "top": 380, "right": 1915, "bottom": 1440, "left": 580}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715979f.jpg"} -{"rects": [{"solidity": 0.989164160707265, "top": 535, "right": 3260, "bottom": 2370, "left": 650}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713213f.jpg"} -{"rects": [{"solidity": 0.9891648502925319, "top": 595, "right": 2845, "bottom": 1880, "left": 1115}, {"solidity": 0.9893145184822064, "top": 2150, "right": 4895, "bottom": 3425, "left": 3195}, {"solidity": 0.9957228503844595, "top": 595, "right": 4880, "bottom": 1830, "left": 3185}, {"solidity": 0.9911012235817576, "top": 2170, "right": 2790, "bottom": 3395, "left": 1150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707454f.jpg"} -{"rects": [{"solidity": 0.9891652415439531, "top": 1205, "right": 3355, "bottom": 4930, "left": 410}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700414f.jpg"} -{"rects": [{"solidity": 0.9891655027514193, "top": 1245, "right": 3470, "bottom": 5085, "left": 460}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708764f.jpg"} -{"rects": [{"solidity": 0.9891739232760649, "top": 255, "right": 3355, "bottom": 2135, "left": 690}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/725551f.jpg"} -{"rects": [{"solidity": 0.9891802898343803, "top": 2240, "right": 2685, "bottom": 3685, "left": 710}, {"solidity": 0.9410977180714023, "top": 550, "right": 2635, "bottom": 1970, "left": 670}], "shape": {"h": 4430, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/702802f.jpg"} -{"rects": [{"solidity": 0.9891817267381809, "top": 660, "right": 3130, "bottom": 2235, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710102f.jpg"} -{"rects": [{"solidity": 0.9891842529572079, "top": 955, "right": 1920, "bottom": 2930, "left": 565}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710894f.jpg"} -{"rects": [{"solidity": 0.9891959187762053, "top": 2140, "right": 3040, "bottom": 3500, "left": 1090}, {"solidity": 0.9792538181199393, "top": 520, "right": 3040, "bottom": 1890, "left": 1075}, {"solidity": 0.9872629137720726, "top": 2205, "right": 5195, "bottom": 3535, "left": 3380}, {"solidity": 0.9794657656508989, "top": 560, "right": 5115, "bottom": 1770, "left": 3460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732793f.jpg"} -{"rects": [{"solidity": 0.9891999851651144, "top": 1075, "right": 3360, "bottom": 4880, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709966f.jpg"} -{"rects": [{"solidity": 0.9892051739316915, "top": 880, "right": 2555, "bottom": 3535, "left": 420}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509379.jpg"} -{"rects": [{"solidity": 0.9892051891986804, "top": 460, "right": 5625, "bottom": 4120, "left": 1080}], "shape": {"h": 4410, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711707f.jpg"} -{"rects": [{"solidity": 0.989205903790994, "top": 720, "right": 2350, "bottom": 3480, "left": 485}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507573.jpg"} -{"rects": [{"solidity": 0.9892097556854978, "top": 1215, "right": 3440, "bottom": 4895, "left": 470}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722735f.jpg"} -{"rects": [{"solidity": 0.9892139840953422, "top": 430, "right": 2965, "bottom": 1980, "left": 1060}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724120f.jpg"} -{"rects": [{"solidity": 0.9892171409089343, "top": 250, "right": 2950, "bottom": 5940, "left": 1045}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704274f.jpg"} -{"rects": [{"solidity": 0.989237545137061, "top": 1030, "right": 4025, "bottom": 3260, "left": 2480}, {"solidity": 0.9973673567212918, "top": 3285, "right": 2000, "bottom": 5505, "left": 480}, {"solidity": 0.9965994105644979, "top": 1095, "right": 2245, "bottom": 2930, "left": 445}], "shape": {"h": 5995, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/464844.jpg"} -{"rects": [{"solidity": 0.9892432543231962, "top": 915, "right": 5325, "bottom": 2725, "left": 805}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731073f.jpg"} -{"rects": [{"solidity": 0.9892444923467951, "top": 660, "right": 4540, "bottom": 3140, "left": 1320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722749f.jpg"} -{"rects": [{"solidity": 0.9892489341194655, "top": 530, "right": 4935, "bottom": 3570, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713040f.jpg"} -{"rects": [{"solidity": 0.9892576653214328, "top": 445, "right": 2955, "bottom": 2005, "left": 985}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701778f.jpg"} -{"rects": [{"solidity": 0.9892585280907594, "top": 430, "right": 3155, "bottom": 1955, "left": 1230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703039f.jpg"} -{"rects": [{"solidity": 0.9892646660147617, "top": 495, "right": 5150, "bottom": 3580, "left": 1255}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/721814f.jpg"} -{"rects": [{"solidity": 0.9892698075018085, "top": 815, "right": 2770, "bottom": 3590, "left": 945}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705295f.jpg"} -{"rects": [{"solidity": 0.9892727902449511, "top": 3180, "right": 3185, "bottom": 5130, "left": 450}, {"solidity": 0.9951097952519705, "top": 675, "right": 3195, "bottom": 2515, "left": 550}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717739f.jpg"} -{"rects": [{"solidity": 0.9892848701315755, "top": 515, "right": 3855, "bottom": 2590, "left": 1065}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517103.jpg"} -{"rects": [{"solidity": 0.9892851985559566, "top": 260, "right": 3390, "bottom": 2745, "left": 360}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509921.jpg"} -{"rects": [{"solidity": 0.9892900895439447, "top": 310, "right": 1900, "bottom": 1195, "left": 755}], "shape": {"h": 3950, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727132f.jpg"} -{"rects": [{"solidity": 0.9892921742225754, "top": 915, "right": 3420, "bottom": 2345, "left": 1270}], "shape": {"h": 3025, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508597.jpg"} -{"rects": [{"solidity": 0.9892943601391323, "top": 475, "right": 5095, "bottom": 3690, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729751f.jpg"} -{"rects": [{"solidity": 0.9892960078749682, "top": 510, "right": 5170, "bottom": 3610, "left": 1235}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/716510f.jpg"} -{"rects": [{"solidity": 0.9893017328006667, "top": 590, "right": 2165, "bottom": 1845, "left": 500}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705497f.jpg"} -{"rects": [{"solidity": 0.9893050238762382, "top": 2565, "right": 4185, "bottom": 3745, "left": 2820}, {"solidity": 0.9850414311408017, "top": 950, "right": 1820, "bottom": 2105, "left": 460}, {"solidity": 0.9629403652471896, "top": 4195, "right": 1840, "bottom": 5370, "left": 475}, {"solidity": 0.9310561849181829, "top": 4255, "right": 4230, "bottom": 5440, "left": 2775}], "shape": {"h": 6030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1238850.jpg"} -{"rects": [{"solidity": 0.9893095335831601, "top": 2115, "right": 5195, "bottom": 3635, "left": 3305}, {"solidity": 0.9777940018735899, "top": 405, "right": 5190, "bottom": 1950, "left": 3315}, {"solidity": 0.991131021063825, "top": 410, "right": 2735, "bottom": 1955, "left": 880}, {"solidity": 0.9821285444061245, "top": 2130, "right": 2730, "bottom": 3645, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709764f.jpg"} -{"rects": [{"solidity": 0.9893132600292981, "top": 430, "right": 3085, "bottom": 1875, "left": 1090}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700486f.jpg"} -{"rects": [{"solidity": 0.9893203109957308, "top": 585, "right": 4960, "bottom": 3585, "left": 1165}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713419f.jpg"} -{"rects": [{"solidity": 0.9893374544995067, "top": 540, "right": 2985, "bottom": 1940, "left": 1120}, {"solidity": 0.9970186835876517, "top": 2385, "right": 2990, "bottom": 3770, "left": 1180}, {"solidity": 0.9965527494846763, "top": 4115, "right": 2980, "bottom": 5495, "left": 1160}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725903f.jpg"} -{"rects": [{"solidity": 0.9893408188759146, "top": 3080, "right": 3210, "bottom": 5015, "left": 475}, {"solidity": 0.9980595643478731, "top": 520, "right": 3220, "bottom": 2305, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713563f.jpg"} -{"rects": [{"solidity": 0.9893518794305117, "top": 1025, "right": 3320, "bottom": 2190, "left": 1785}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507843.jpg"} -{"rects": [{"solidity": 0.9893688477344342, "top": 310, "right": 5050, "bottom": 3685, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703385f.jpg"} -{"rects": [{"solidity": 0.9893745329645118, "top": 610, "right": 2505, "bottom": 1810, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732784f.jpg"} -{"rects": [{"solidity": 0.9893779388373135, "top": 360, "right": 3140, "bottom": 2240, "left": 640}, {"solidity": 0.99274004115415, "top": 2405, "right": 3150, "bottom": 4280, "left": 650}, {"solidity": 0.9942183224012858, "top": 4330, "right": 2895, "bottom": 5830, "left": 945}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700157f.jpg"} -{"rects": [{"solidity": 0.9893785087065409, "top": 1050, "right": 3230, "bottom": 4985, "left": 670}], "shape": {"h": 6140, "w": 3730}, "file": "/usr/local/google/home/danvk/milstein/717106f.jpg"} -{"rects": [{"solidity": 0.9893926755595154, "top": 3610, "right": 3415, "bottom": 5605, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718974f.jpg"} -{"rects": [{"solidity": 0.9894040894960375, "top": 440, "right": 3220, "bottom": 2010, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725239f.jpg"} -{"rects": [{"solidity": 0.9894103097210838, "top": 470, "right": 3875, "bottom": 2600, "left": 965}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507883.jpg"} -{"rects": [{"solidity": 0.9894125721346372, "top": 880, "right": 3365, "bottom": 4280, "left": 365}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722778f.jpg"} -{"rects": [{"solidity": 0.9894132938023888, "top": 130, "right": 3030, "bottom": 3720, "left": 130}], "shape": {"h": 4005, "w": 3160}, "file": "/usr/local/google/home/danvk/milstein/1558227.jpg"} -{"rects": [{"solidity": 0.9894172247299097, "top": 130, "right": 4515, "bottom": 2885, "left": 535}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508513.jpg"} -{"rects": [{"solidity": 0.9894178950793658, "top": 2425, "right": 2480, "bottom": 3840, "left": 480}, {"solidity": 0.973874076171322, "top": 555, "right": 2465, "bottom": 1900, "left": 525}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/711896f.jpg"} -{"rects": [{"solidity": 0.9894299240811115, "top": 470, "right": 5135, "bottom": 3715, "left": 1040}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732581f.jpg"} -{"rects": [{"solidity": 0.9894344242898151, "top": 1195, "right": 3460, "bottom": 5005, "left": 235}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/712635f.jpg"} -{"rects": [{"solidity": 0.9894348224413227, "top": 1195, "right": 3550, "bottom": 5015, "left": 500}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/715561f.jpg"} -{"rects": [{"solidity": 0.9894352907306889, "top": 1245, "right": 3375, "bottom": 4855, "left": 265}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717114f.jpg"} -{"rects": [{"solidity": 0.9894504199204361, "top": 505, "right": 2750, "bottom": 1805, "left": 1095}, {"solidity": 0.9937221826197907, "top": 2175, "right": 2725, "bottom": 3455, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704137f.jpg"} -{"rects": [{"solidity": 0.9894563497155567, "top": 470, "right": 3750, "bottom": 2730, "left": 880}], "shape": {"h": 2965, "w": 4575}, "file": "/usr/local/google/home/danvk/milstein/718993f.jpg"} -{"rects": [{"solidity": 0.9894564241854785, "top": 625, "right": 3140, "bottom": 2595, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705126f.jpg"} -{"rects": [{"solidity": 0.9894583441156041, "top": 1695, "right": 3465, "bottom": 2660, "left": 2495}, {"solidity": 0.992814859601513, "top": 575, "right": 3430, "bottom": 1530, "left": 2480}, {"solidity": 0.9912577829625153, "top": 545, "right": 2075, "bottom": 1515, "left": 1125}, {"solidity": 0.9948214850830001, "top": 1685, "right": 4720, "bottom": 2635, "left": 3790}, {"solidity": 0.9953724720664255, "top": 590, "right": 4715, "bottom": 1535, "left": 3795}, {"solidity": 0.9947545111204364, "top": 2805, "right": 2050, "bottom": 3730, "left": 1135}, {"solidity": 0.9947719654334656, "top": 1655, "right": 2020, "bottom": 2640, "left": 1175}, {"solidity": 0.9904287843173404, "top": 2815, "right": 4710, "bottom": 3725, "left": 3795}, {"solidity": 0.9936622555552113, "top": 2825, "right": 3450, "bottom": 3730, "left": 2540}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732949f.jpg"} -{"rects": [{"solidity": 0.9894594749842036, "top": 630, "right": 2650, "bottom": 1905, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702800f.jpg"} -{"rects": [{"solidity": 0.9894649191466685, "top": 555, "right": 3100, "bottom": 2145, "left": 720}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718524f.jpg"} -{"rects": [{"solidity": 0.9894661822732883, "top": 625, "right": 2415, "bottom": 2070, "left": 390}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/714345f.jpg"} -{"rects": [{"solidity": 0.9894697732168221, "top": 1000, "right": 1855, "bottom": 2970, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700399f.jpg"} -{"rects": [{"solidity": 0.9894705221638848, "top": 800, "right": 3170, "bottom": 2730, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711513f.jpg"} -{"rects": [{"solidity": 0.9894807099527848, "top": 995, "right": 3565, "bottom": 5010, "left": 330}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707784f.jpg"} -{"rects": [{"solidity": 0.9894840872536544, "top": 2265, "right": 3210, "bottom": 3905, "left": 760}, {"solidity": 0.9945263598983841, "top": 420, "right": 3210, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734117f.jpg"} -{"rects": [{"solidity": 0.9894899187784144, "top": 505, "right": 2440, "bottom": 2595, "left": 925}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507534.jpg"} -{"rects": [{"solidity": 0.9894986288485381, "top": 1110, "right": 3220, "bottom": 4945, "left": 530}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710161f.jpg"} -{"rects": [{"solidity": 0.9895012396293578, "top": 425, "right": 2970, "bottom": 1800, "left": 965}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702159f.jpg"} -{"rects": [{"solidity": 0.9895025248275627, "top": 485, "right": 5060, "bottom": 3500, "left": 1265}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710428f.jpg"} -{"rects": [{"solidity": 0.9895056480921216, "top": 130, "right": 5125, "bottom": 3520, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724284f.jpg"} -{"rects": [{"solidity": 0.9895058251839716, "top": 480, "right": 5095, "bottom": 3835, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700257f.jpg"} -{"rects": [{"solidity": 0.9895078813575957, "top": 660, "right": 2725, "bottom": 2095, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727453f.jpg"} -{"rects": [{"solidity": 0.9895308032774587, "top": 435, "right": 2915, "bottom": 1995, "left": 965}, {"solidity": 0.9959436589449931, "top": 2265, "right": 2880, "bottom": 3750, "left": 985}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701956f.jpg"} -{"rects": [{"solidity": 0.9895324033620733, "top": 305, "right": 5285, "bottom": 3650, "left": 1255}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722728f.jpg"} -{"rects": [{"solidity": 0.9895334570265741, "top": 400, "right": 3360, "bottom": 2230, "left": 565}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700021f.jpg"} -{"rects": [{"solidity": 0.9895351697512206, "top": 2230, "right": 2965, "bottom": 3795, "left": 1015}, {"solidity": 0.9828751614364066, "top": 395, "right": 2970, "bottom": 1975, "left": 1035}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714979f.jpg"} -{"rects": [{"solidity": 0.9895396433576015, "top": 700, "right": 2640, "bottom": 3580, "left": 805}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705718f.jpg"} -{"rects": [{"solidity": 0.9895426728747999, "top": 495, "right": 3045, "bottom": 3680, "left": 540}], "shape": {"h": 6140, "w": 3910}, "file": "/usr/local/google/home/danvk/milstein/714179f.jpg"} -{"rects": [{"solidity": 0.989550559467957, "top": 1175, "right": 3365, "bottom": 5010, "left": 355}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722152f.jpg"} -{"rects": [{"solidity": 0.9895556513924594, "top": 605, "right": 2600, "bottom": 3490, "left": 715}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702758f.jpg"} -{"rects": [{"solidity": 0.9895558525713246, "top": 875, "right": 1960, "bottom": 3250, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729930f.jpg"} -{"rects": [{"solidity": 0.9895627400469943, "top": 460, "right": 3200, "bottom": 2065, "left": 820}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733679f.jpg"} -{"rects": [{"solidity": 0.9895658313042022, "top": 995, "right": 3375, "bottom": 5170, "left": 530}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717236f.jpg"} -{"rects": [{"solidity": 0.9895711158026429, "top": 425, "right": 3170, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702114f.jpg"} -{"rects": [{"solidity": 0.9895724337001623, "top": 4135, "right": 2885, "bottom": 5655, "left": 1025}, {"solidity": 0.9887685962586537, "top": 510, "right": 2875, "bottom": 2005, "left": 1035}, {"solidity": 0.9928403525037695, "top": 2465, "right": 2890, "bottom": 3945, "left": 1060}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717360f.jpg"} -{"rects": [{"solidity": 0.9895728615263875, "top": 1680, "right": 3635, "bottom": 5560, "left": 380}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723098f.jpg"} -{"rects": [{"solidity": 0.9895737231856879, "top": 270, "right": 5110, "bottom": 3685, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714371f.jpg"} -{"rects": [{"solidity": 0.9895799742801752, "top": 795, "right": 3365, "bottom": 2250, "left": 1110}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509993.jpg"} -{"rects": [{"solidity": 0.9895804430074917, "top": 310, "right": 5015, "bottom": 3705, "left": 990}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711110f.jpg"} -{"rects": [{"solidity": 0.9895811472542847, "top": 400, "right": 2985, "bottom": 1885, "left": 1030}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723170f.jpg"} -{"rects": [{"solidity": 0.989582634743925, "top": 435, "right": 2955, "bottom": 1970, "left": 1105}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/701995f.jpg"} -{"rects": [{"solidity": 0.9895938372065756, "top": 750, "right": 2345, "bottom": 2015, "left": 625}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702756f.jpg"} -{"rects": [{"solidity": 0.9895990036745665, "top": 555, "right": 2350, "bottom": 1795, "left": 690}, {"solidity": 0.9913252476073378, "top": 2120, "right": 2420, "bottom": 3280, "left": 655}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732789f.jpg"} -{"rects": [{"solidity": 0.9896088179214153, "top": 1135, "right": 1950, "bottom": 3020, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724292f.jpg"} -{"rects": [{"solidity": 0.9896240515060933, "top": 2140, "right": 2910, "bottom": 3515, "left": 985}, {"solidity": 0.9918067530465777, "top": 500, "right": 2915, "bottom": 1850, "left": 965}, {"solidity": 0.9920997947747991, "top": 540, "right": 5140, "bottom": 1755, "left": 3515}, {"solidity": 0.9910851781339952, "top": 2275, "right": 5130, "bottom": 3485, "left": 3510}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704356f.jpg"} -{"rects": [{"solidity": 0.9896323527053079, "top": 485, "right": 3165, "bottom": 2115, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733681f.jpg"} -{"rects": [{"solidity": 0.9896326922822622, "top": 645, "right": 3645, "bottom": 2715, "left": 880}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509765.jpg"} -{"rects": [{"solidity": 0.9896480687005781, "top": 130, "right": 5135, "bottom": 3545, "left": 1015}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704581f.jpg"} -{"rects": [{"solidity": 0.9896587963016625, "top": 710, "right": 3685, "bottom": 2850, "left": 625}], "shape": {"h": 6845, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711318f.jpg"} -{"rects": [{"solidity": 0.9896599599591921, "top": 2685, "right": 4460, "bottom": 5185, "left": 2470}, {"solidity": 0.9796781117530754, "top": 740, "right": 2545, "bottom": 2540, "left": 580}], "shape": {"h": 5805, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/417670.jpg"} -{"rects": [{"solidity": 0.9896652103099713, "top": 1070, "right": 3430, "bottom": 5075, "left": 390}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708528f.jpg"} -{"rects": [{"solidity": 0.9896693136038109, "top": 405, "right": 3105, "bottom": 1845, "left": 875}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701638f.jpg"} -{"rects": [{"solidity": 0.989669459365318, "top": 780, "right": 4460, "bottom": 2895, "left": 2505}], "shape": {"h": 6050, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464731.jpg"} -{"rects": [{"solidity": 0.9896736334711452, "top": 2140, "right": 3005, "bottom": 3550, "left": 1095}, {"solidity": 0.9867576456538593, "top": 505, "right": 2980, "bottom": 1870, "left": 1045}, {"solidity": 0.9841909576181043, "top": 490, "right": 5280, "bottom": 1865, "left": 3385}, {"solidity": 0.9940729398522544, "top": 2160, "right": 5265, "bottom": 3505, "left": 3410}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704728f.jpg"} -{"rects": [{"solidity": 0.9896736480808664, "top": 655, "right": 2655, "bottom": 3490, "left": 830}, {"solidity": 0.9947335219452516, "top": 2070, "right": 5275, "bottom": 3510, "left": 3425}, {"solidity": 0.9960540116699422, "top": 680, "right": 5235, "bottom": 2045, "left": 3420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727975f.jpg"} -{"rects": [{"solidity": 0.9896770363123341, "top": 1130, "right": 3580, "bottom": 5130, "left": 340}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705236f.jpg"} -{"rects": [{"solidity": 0.9896946453142841, "top": 425, "right": 3200, "bottom": 2070, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713948f.jpg"} -{"rects": [{"solidity": 0.9896962525445995, "top": 695, "right": 2680, "bottom": 1925, "left": 625}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732900f.jpg"} -{"rects": [{"solidity": 0.9896998602150945, "top": 1145, "right": 3295, "bottom": 2945, "left": 1320}, {"solidity": 0.9530292207640629, "top": 3230, "right": 4075, "bottom": 5535, "left": 2870}], "shape": {"h": 5970, "w": 4595}, "file": "/usr/local/google/home/danvk/milstein/465591.jpg"} -{"rects": [{"solidity": 0.9897003917529565, "top": 930, "right": 1625, "bottom": 2745, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720296f.jpg"} -{"rects": [{"solidity": 0.9897187201047818, "top": 440, "right": 4785, "bottom": 3510, "left": 910}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718712f.jpg"} -{"rects": [{"solidity": 0.9897213918104103, "top": 770, "right": 3160, "bottom": 2705, "left": 425}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715095f.jpg"} -{"rects": [{"solidity": 0.9897264843228819, "top": 975, "right": 3910, "bottom": 2340, "left": 1840}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508677.jpg"} -{"rects": [{"solidity": 0.9897283320936493, "top": 505, "right": 2670, "bottom": 1755, "left": 940}, {"solidity": 0.9895403910617887, "top": 2065, "right": 2685, "bottom": 3300, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732775f.jpg"} -{"rects": [{"solidity": 0.9897324875237784, "top": 1235, "right": 4060, "bottom": 3020, "left": 2285}, {"solidity": 0.9423354024586077, "top": 3385, "right": 4110, "bottom": 5370, "left": 2255}, {"solidity": 0.9666258154764116, "top": 1245, "right": 2100, "bottom": 3130, "left": 425}, {"solidity": 0.9858373003279383, "top": 3575, "right": 2095, "bottom": 5375, "left": 425}], "shape": {"h": 6005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465626.jpg"} -{"rects": [{"solidity": 0.9897335456110812, "top": 320, "right": 5375, "bottom": 3575, "left": 1305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732490f.jpg"} -{"rects": [{"solidity": 0.9897351231067404, "top": 2680, "right": 1880, "bottom": 3615, "left": 720}, {"solidity": 0.9945052881907503, "top": 1525, "right": 1880, "bottom": 2415, "left": 740}, {"solidity": 0.9949063444866825, "top": 400, "right": 1890, "bottom": 1285, "left": 750}], "shape": {"h": 3930, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727058f.jpg"} -{"rects": [{"solidity": 0.989739501378087, "top": 630, "right": 4955, "bottom": 3655, "left": 1165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713721f.jpg"} -{"rects": [{"solidity": 0.9897428182175305, "top": 740, "right": 2685, "bottom": 3835, "left": 205}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509209.jpg"} -{"rects": [{"solidity": 0.989746017247759, "top": 940, "right": 2275, "bottom": 3035, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715454f.jpg"} -{"rects": [{"solidity": 0.9897537469938316, "top": 535, "right": 5015, "bottom": 3545, "left": 1180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720517f.jpg"} -{"rects": [{"solidity": 0.9897589222120728, "top": 485, "right": 3930, "bottom": 2595, "left": 2425}, {"solidity": 0.9968398447985554, "top": 480, "right": 2185, "bottom": 2565, "left": 695}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716195f.jpg"} -{"rects": [{"solidity": 0.9897803234680452, "top": 450, "right": 3185, "bottom": 2065, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722377f.jpg"} -{"rects": [{"solidity": 0.9897852079093046, "top": 625, "right": 4970, "bottom": 3355, "left": 1220}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717066f.jpg"} -{"rects": [{"solidity": 0.9897938311895843, "top": 130, "right": 5100, "bottom": 3520, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705537f.jpg"} -{"rects": [{"solidity": 0.9898042559238339, "top": 800, "right": 3895, "bottom": 3215, "left": 2260}, {"solidity": 0.9904766562336985, "top": 770, "right": 2025, "bottom": 3175, "left": 410}, {"solidity": 0.992566617811104, "top": 1100, "right": 5520, "bottom": 2900, "left": 4100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720375f.jpg"} -{"rects": [{"solidity": 0.9898048721574361, "top": 485, "right": 5120, "bottom": 3565, "left": 1265}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727897f.jpg"} -{"rects": [{"solidity": 0.9898064687776662, "top": 245, "right": 5045, "bottom": 3670, "left": 995}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720337f.jpg"} -{"rects": [{"solidity": 0.9898081373445993, "top": 900, "right": 5695, "bottom": 3275, "left": 4100}, {"solidity": 0.9930161651398827, "top": 860, "right": 2080, "bottom": 3230, "left": 505}, {"solidity": 0.9615763478693659, "top": 855, "right": 3895, "bottom": 3245, "left": 2300}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714291f.jpg"} -{"rects": [{"solidity": 0.9898239407500964, "top": 1130, "right": 3430, "bottom": 5035, "left": 425}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711901f.jpg"} -{"rects": [{"solidity": 0.9898271526268476, "top": 800, "right": 3080, "bottom": 3385, "left": 510}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714336f.jpg"} -{"rects": [{"solidity": 0.9898277866008925, "top": 400, "right": 2935, "bottom": 1900, "left": 985}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710842f.jpg"} -{"rects": [{"solidity": 0.9898291362198305, "top": 460, "right": 3210, "bottom": 5760, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718343f.jpg"} -{"rects": [{"solidity": 0.9898310108490872, "top": 475, "right": 3560, "bottom": 2585, "left": 585}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/702201f.jpg"} -{"rects": [{"solidity": 0.9898361113922098, "top": 475, "right": 5160, "bottom": 3705, "left": 1125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702155f.jpg"} -{"rects": [{"solidity": 0.9898368974672058, "top": 1275, "right": 3295, "bottom": 4720, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720306f.jpg"} -{"rects": [{"solidity": 0.9898421900324664, "top": 670, "right": 4945, "bottom": 3435, "left": 1320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731180f.jpg"} -{"rects": [{"solidity": 0.9898426813404786, "top": 2130, "right": 3460, "bottom": 4050, "left": 655}, {"solidity": 0.9860512947590138, "top": 180, "right": 3410, "bottom": 2075, "left": 685}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725557f.jpg"} -{"rects": [{"solidity": 0.9898555300146374, "top": 410, "right": 3195, "bottom": 2275, "left": 595}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733670f.jpg"} -{"rects": [{"solidity": 0.9898559545546765, "top": 2260, "right": 2930, "bottom": 3840, "left": 1020}, {"solidity": 0.9928478628319161, "top": 430, "right": 2920, "bottom": 1980, "left": 1030}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724945f.jpg"} -{"rects": [{"solidity": 0.9898653358240165, "top": 750, "right": 2140, "bottom": 1730, "left": 1200}, {"solidity": 0.987749026791848, "top": 2070, "right": 2135, "bottom": 3030, "left": 1190}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711128f.jpg"} -{"rects": [{"solidity": 0.9898905832215439, "top": 260, "right": 5080, "bottom": 3715, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734462f.jpg"} -{"rects": [{"solidity": 0.9898907847696751, "top": 280, "right": 3500, "bottom": 2890, "left": 220}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733716f.jpg"} -{"rects": [{"solidity": 0.9898933594389613, "top": 1520, "right": 3275, "bottom": 3795, "left": 1515}], "shape": {"h": 5805, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/417687.jpg"} -{"rects": [{"solidity": 0.9899075591208302, "top": 420, "right": 5085, "bottom": 3645, "left": 1105}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708206f.jpg"} -{"rects": [{"solidity": 0.9899119352099155, "top": 130, "right": 2395, "bottom": 3730, "left": 130}], "shape": {"h": 3860, "w": 2525}, "file": "/usr/local/google/home/danvk/milstein/1558192.jpg"} -{"rects": [{"solidity": 0.9899128753640655, "top": 1115, "right": 3270, "bottom": 2600, "left": 520}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509439.jpg"} -{"rects": [{"solidity": 0.9899190569686179, "top": 335, "right": 5080, "bottom": 3720, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706611f.jpg"} -{"rects": [{"solidity": 0.9899247402030067, "top": 455, "right": 5085, "bottom": 3495, "left": 1270}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700185f.jpg"} -{"rects": [{"solidity": 0.9899253896168093, "top": 530, "right": 5000, "bottom": 3600, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700066f.jpg"} -{"rects": [{"solidity": 0.9899286234127863, "top": 820, "right": 3100, "bottom": 2230, "left": 1090}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508369.jpg"} -{"rects": [{"solidity": 0.9899349353186742, "top": 400, "right": 2990, "bottom": 3730, "left": 1535}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714524f.jpg"} -{"rects": [{"solidity": 0.9899361069266054, "top": 610, "right": 4945, "bottom": 3580, "left": 1180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700423f.jpg"} -{"rects": [{"solidity": 0.9899420822455933, "top": 545, "right": 4930, "bottom": 3585, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710458f.jpg"} -{"rects": [{"solidity": 0.9899424290767843, "top": 850, "right": 3200, "bottom": 2770, "left": 460}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714346f.jpg"} -{"rects": [{"solidity": 0.9899428340891817, "top": 540, "right": 3180, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710908f.jpg"} -{"rects": [{"solidity": 0.989942907524019, "top": 400, "right": 3095, "bottom": 1720, "left": 890}, {"solidity": 0.9834939547923602, "top": 1965, "right": 3085, "bottom": 3295, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702752f.jpg"} -{"rects": [{"solidity": 0.9899436075295862, "top": 530, "right": 5070, "bottom": 3580, "left": 1155}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709587f.jpg"} -{"rects": [{"solidity": 0.989949715970234, "top": 410, "right": 3025, "bottom": 2220, "left": 865}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715458f.jpg"} -{"rects": [{"solidity": 0.9899558222889056, "top": 450, "right": 3080, "bottom": 3715, "left": 535}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711882f.jpg"} -{"rects": [{"solidity": 0.9899614551023321, "top": 825, "right": 2995, "bottom": 3185, "left": 490}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713027f.jpg"} -{"rects": [{"solidity": 0.9899673628792427, "top": 765, "right": 2020, "bottom": 3140, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712308f.jpg"} -{"rects": [{"solidity": 0.9899685581673904, "top": 2100, "right": 2315, "bottom": 3290, "left": 600}, {"solidity": 0.9935320052047145, "top": 520, "right": 2345, "bottom": 1675, "left": 590}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705577f.jpg"} -{"rects": [{"solidity": 0.9899811461393432, "top": 965, "right": 1865, "bottom": 2985, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706696f.jpg"} -{"rects": [{"solidity": 0.9899867332961974, "top": 275, "right": 5130, "bottom": 3770, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701404f.jpg"} -{"rects": [{"solidity": 0.9899872197157497, "top": 650, "right": 4900, "bottom": 3495, "left": 1100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730278f.jpg"} -{"rects": [{"solidity": 0.9899929931214164, "top": 725, "right": 5090, "bottom": 3530, "left": 3270}, {"solidity": 0.9954956262579346, "top": 755, "right": 2665, "bottom": 2190, "left": 840}, {"solidity": 0.9949925161541551, "top": 2295, "right": 2660, "bottom": 3430, "left": 825}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706044f.jpg"} -{"rects": [{"solidity": 0.9899953259587349, "top": 555, "right": 2670, "bottom": 1870, "left": 945}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705780f.jpg"} -{"rects": [{"solidity": 0.9900002536167561, "top": 890, "right": 2050, "bottom": 3240, "left": 560}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713804f.jpg"} -{"rects": [{"solidity": 0.9900043439982802, "top": 615, "right": 5635, "bottom": 4005, "left": 1450}], "shape": {"h": 4425, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708358f.jpg"} -{"rects": [{"solidity": 0.990005260989591, "top": 1155, "right": 3435, "bottom": 4930, "left": 485}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709770f.jpg"} -{"rects": [{"solidity": 0.9900067117515122, "top": 1170, "right": 3435, "bottom": 5020, "left": 340}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723530f.jpg"} -{"rects": [{"solidity": 0.9900161922618033, "top": 2165, "right": 2100, "bottom": 3710, "left": 140}, {"solidity": 0.995725808903696, "top": 2140, "right": 4120, "bottom": 3625, "left": 2150}, {"solidity": 0.996556268119125, "top": 430, "right": 2050, "bottom": 1925, "left": 130}, {"solidity": 0.9935350535356211, "top": 2120, "right": 6010, "bottom": 3565, "left": 4140}, {"solidity": 0.9947995759433828, "top": 445, "right": 6010, "bottom": 1860, "left": 4110}, {"solidity": 0.9892430507147427, "top": 440, "right": 4040, "bottom": 1870, "left": 2165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718101f.jpg"} -{"rects": [{"solidity": 0.990017580270526, "top": 490, "right": 4935, "bottom": 3705, "left": 1150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700416f.jpg"} -{"rects": [{"solidity": 0.9900213620356422, "top": 510, "right": 2990, "bottom": 1830, "left": 1005}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717355f.jpg"} -{"rects": [{"solidity": 0.9900218694233796, "top": 800, "right": 2145, "bottom": 3205, "left": 545}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718449f.jpg"} -{"rects": [{"solidity": 0.9900234398263265, "top": 910, "right": 3295, "bottom": 2795, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725648f.jpg"} -{"rects": [{"solidity": 0.9900255025222714, "top": 455, "right": 2070, "bottom": 3720, "left": 610}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720311f.jpg"} -{"rects": [{"solidity": 0.9900427063529226, "top": 480, "right": 2470, "bottom": 1730, "left": 660}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704587f.jpg"} -{"rects": [{"solidity": 0.9900464123600641, "top": 610, "right": 4900, "bottom": 3655, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713418f.jpg"} -{"rects": [{"solidity": 0.9900477656568728, "top": 1150, "right": 4190, "bottom": 2895, "left": 1900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731149f.jpg"} -{"rects": [{"solidity": 0.9900483457197407, "top": 425, "right": 2910, "bottom": 1895, "left": 1010}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/718185f.jpg"} -{"rects": [{"solidity": 0.9900504355800092, "top": 495, "right": 2895, "bottom": 1715, "left": 1070}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731252f.jpg"} -{"rects": [{"solidity": 0.9900522420858147, "top": 455, "right": 3300, "bottom": 3840, "left": 680}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713380f.jpg"} -{"rects": [{"solidity": 0.9900549888158341, "top": 405, "right": 4845, "bottom": 3490, "left": 920}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715445f.jpg"} -{"rects": [{"solidity": 0.9900574000800034, "top": 785, "right": 4980, "bottom": 3485, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709755f.jpg"} -{"rects": [{"solidity": 0.9900624884646821, "top": 945, "right": 2515, "bottom": 3625, "left": 725}], "shape": {"h": 4425, "w": 6915}, "file": "/usr/local/google/home/danvk/milstein/708827f.jpg"} -{"rects": [{"solidity": 0.9900629894727688, "top": 845, "right": 3265, "bottom": 5300, "left": 640}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713880f.jpg"} -{"rects": [{"solidity": 0.9900630038496252, "top": 480, "right": 3440, "bottom": 3325, "left": 1400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722260f.jpg"} -{"rects": [{"solidity": 0.9900635994896377, "top": 785, "right": 2035, "bottom": 3225, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720003f.jpg"} -{"rects": [{"solidity": 0.9900640162017923, "top": 415, "right": 5250, "bottom": 3485, "left": 1380}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733434f.jpg"} -{"rects": [{"solidity": 0.9900704696517786, "top": 555, "right": 2465, "bottom": 1800, "left": 820}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707204f.jpg"} -{"rects": [{"solidity": 0.990070545965548, "top": 385, "right": 3350, "bottom": 2190, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706097f.jpg"} -{"rects": [{"solidity": 0.9900755242008816, "top": 610, "right": 4810, "bottom": 3570, "left": 985}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701981f.jpg"} -{"rects": [{"solidity": 0.9900768641786757, "top": 595, "right": 4975, "bottom": 3725, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722788f.jpg"} -{"rects": [{"solidity": 0.9900896745397566, "top": 535, "right": 4875, "bottom": 3565, "left": 1190}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732931f.jpg"} -{"rects": [{"solidity": 0.9900898420881403, "top": 440, "right": 1865, "bottom": 1320, "left": 710}], "shape": {"h": 3945, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727089f.jpg"} -{"rects": [{"solidity": 0.9900948243343436, "top": 460, "right": 3115, "bottom": 2060, "left": 695}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733408f.jpg"} -{"rects": [{"solidity": 0.9900968654798105, "top": 425, "right": 3020, "bottom": 2355, "left": 675}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708990f.jpg"} -{"rects": [{"solidity": 0.99009740620643, "top": 395, "right": 2735, "bottom": 2070, "left": 350}, {"solidity": 0.9895774570997034, "top": 2255, "right": 5300, "bottom": 3710, "left": 3395}, {"solidity": 0.983175266327423, "top": 440, "right": 5305, "bottom": 1955, "left": 3435}, {"solidity": 0.9943411862199597, "top": 2290, "right": 2470, "bottom": 3700, "left": 575}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720675f.jpg"} -{"rects": [{"solidity": 0.9900982158862545, "top": 510, "right": 2705, "bottom": 1955, "left": 840}, {"solidity": 0.9913575407866244, "top": 605, "right": 4985, "bottom": 1840, "left": 3375}, {"solidity": 0.9891026273387918, "top": 2270, "right": 2565, "bottom": 3470, "left": 950}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732795f.jpg"} -{"rects": [{"solidity": 0.9901000795529321, "top": 660, "right": 2755, "bottom": 3475, "left": 925}, {"solidity": 0.9972174889438278, "top": 2080, "right": 5210, "bottom": 3490, "left": 3395}, {"solidity": 0.9950353407969375, "top": 675, "right": 5220, "bottom": 2075, "left": 3400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704402f.jpg"} -{"rects": [{"solidity": 0.9901031589074777, "top": 460, "right": 4905, "bottom": 3465, "left": 975}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/723605f.jpg"} -{"rects": [{"solidity": 0.9901063104632567, "top": 435, "right": 3235, "bottom": 2055, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701552f.jpg"} -{"rects": [{"solidity": 0.9901108203786363, "top": 435, "right": 3285, "bottom": 2075, "left": 870}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727376f.jpg"} -{"rects": [{"solidity": 0.9901144006664906, "top": 530, "right": 2830, "bottom": 1690, "left": 660}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728894f.jpg"} -{"rects": [{"solidity": 0.9901145644804175, "top": 130, "right": 5155, "bottom": 3515, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705615f.jpg"} -{"rects": [{"solidity": 0.9901224232643039, "top": 1175, "right": 3170, "bottom": 4495, "left": 505}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714848f.jpg"} -{"rects": [{"solidity": 0.9901244790452794, "top": 395, "right": 2895, "bottom": 3770, "left": 315}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708445f.jpg"} -{"rects": [{"solidity": 0.9901250086094083, "top": 400, "right": 2960, "bottom": 1945, "left": 1040}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/719307f.jpg"} -{"rects": [{"solidity": 0.9901250866584183, "top": 390, "right": 3185, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701597f.jpg"} -{"rects": [{"solidity": 0.9901339699517868, "top": 785, "right": 1980, "bottom": 3170, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719293f.jpg"} -{"rects": [{"solidity": 0.9901389852084778, "top": 680, "right": 2625, "bottom": 3545, "left": 765}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704320f.jpg"} -{"rects": [{"solidity": 0.9901401749165446, "top": 1095, "right": 3180, "bottom": 5205, "left": 380}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709014f.jpg"} -{"rects": [{"solidity": 0.9901404159858199, "top": 610, "right": 2455, "bottom": 3600, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713702f.jpg"} -{"rects": [{"solidity": 0.9901442507721602, "top": 910, "right": 3015, "bottom": 3000, "left": 495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713772f.jpg"} -{"rects": [{"solidity": 0.9901448249856851, "top": 275, "right": 5100, "bottom": 3670, "left": 1075}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713062f.jpg"} -{"rects": [{"solidity": 0.9901530817823688, "top": 410, "right": 3085, "bottom": 2020, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729832f.jpg"} -{"rects": [{"solidity": 0.9901573337735183, "top": 2205, "right": 3235, "bottom": 3825, "left": 805}, {"solidity": 0.9762511186067323, "top": 4010, "right": 3215, "bottom": 5630, "left": 805}, {"solidity": 0.9582958520739631, "top": 400, "right": 3210, "bottom": 1980, "left": 820}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/701593f.jpg"} -{"rects": [{"solidity": 0.9901590300740041, "top": 405, "right": 3325, "bottom": 2145, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730938f.jpg"} -{"rects": [{"solidity": 0.9901664823504798, "top": 755, "right": 2110, "bottom": 3135, "left": 505}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708215f.jpg"} -{"rects": [{"solidity": 0.9901676497079931, "top": 745, "right": 4795, "bottom": 3390, "left": 1435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708585f.jpg"} -{"rects": [{"solidity": 0.9901689333414649, "top": 330, "right": 1950, "bottom": 1245, "left": 805}], "shape": {"h": 3930, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727064f.jpg"} -{"rects": [{"solidity": 0.990170726549132, "top": 735, "right": 2270, "bottom": 3485, "left": 350}, {"solidity": 0.9835416616683861, "top": 1140, "right": 3920, "bottom": 2980, "left": 2490}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705052f.jpg"} -{"rects": [{"solidity": 0.9901714089473881, "top": 280, "right": 5065, "bottom": 3710, "left": 1000}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706249f.jpg"} -{"rects": [{"solidity": 0.990176322418136, "top": 520, "right": 3315, "bottom": 2090, "left": 910}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727383f.jpg"} -{"rects": [{"solidity": 0.9901796045095907, "top": 455, "right": 2885, "bottom": 1765, "left": 1205}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716874f.jpg"} -{"rects": [{"solidity": 0.9901801220210764, "top": 475, "right": 2280, "bottom": 1900, "left": 295}, {"solidity": 0.9950958722440183, "top": 2180, "right": 2375, "bottom": 3580, "left": 415}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508395.jpg"} -{"rects": [{"solidity": 0.9901801303619535, "top": 130, "right": 3450, "bottom": 2485, "left": 130}], "shape": {"h": 2745, "w": 3580}, "file": "/usr/local/google/home/danvk/milstein/1557884.jpg"} -{"rects": [{"solidity": 0.9901919888164653, "top": 455, "right": 5080, "bottom": 3760, "left": 280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715143f.jpg"} -{"rects": [{"solidity": 0.9901974514942472, "top": 790, "right": 4770, "bottom": 3680, "left": 875}], "shape": {"h": 4625, "w": 5735}, "file": "/usr/local/google/home/danvk/milstein/1823516.jpg"} -{"rects": [{"solidity": 0.99019965235865, "top": 1015, "right": 3300, "bottom": 4665, "left": 440}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709433f.jpg"} -{"rects": [{"solidity": 0.9902013818879245, "top": 415, "right": 2175, "bottom": 1195, "left": 855}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716438f.jpg"} -{"rects": [{"solidity": 0.9902082984515593, "top": 2175, "right": 2830, "bottom": 3425, "left": 1180}, {"solidity": 0.9928719835786523, "top": 540, "right": 5005, "bottom": 1770, "left": 3355}, {"solidity": 0.9866360825770419, "top": 540, "right": 2795, "bottom": 1785, "left": 1135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705573f.jpg"} -{"rects": [{"solidity": 0.9902102182060911, "top": 230, "right": 5055, "bottom": 3630, "left": 1005}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711740f.jpg"} -{"rects": [{"solidity": 0.9902326356115707, "top": 435, "right": 3345, "bottom": 2430, "left": 420}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517141.jpg"} -{"rects": [{"solidity": 0.99023412129202, "top": 615, "right": 4580, "bottom": 3600, "left": 1530}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722437f.jpg"} -{"rects": [{"solidity": 0.9902345721255745, "top": 1045, "right": 2290, "bottom": 3640, "left": 315}], "shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508971.jpg"} -{"rects": [{"solidity": 0.9902348915630785, "top": 845, "right": 3485, "bottom": 2285, "left": 1330}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507659.jpg"} -{"rects": [{"solidity": 0.9902398055912397, "top": 785, "right": 3495, "bottom": 2470, "left": 465}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/730689f.jpg"} -{"rects": [{"solidity": 0.9902468545946806, "top": 410, "right": 3200, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700457f.jpg"} -{"rects": [{"solidity": 0.9902488790848276, "top": 260, "right": 5080, "bottom": 3705, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704715f.jpg"} -{"rects": [{"solidity": 0.9902493820564834, "top": 605, "right": 4925, "bottom": 3435, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720399f.jpg"} -{"rects": [{"solidity": 0.9902507303417365, "top": 675, "right": 2680, "bottom": 2100, "left": 850}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705085f.jpg"} -{"rects": [{"solidity": 0.9902519997326262, "top": 645, "right": 2400, "bottom": 1945, "left": 640}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702804f.jpg"} -{"rects": [{"solidity": 0.9902566280019814, "top": 560, "right": 4960, "bottom": 3610, "left": 1095}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732889f.jpg"} -{"rects": [{"solidity": 0.9902568149478355, "top": 920, "right": 3915, "bottom": 2270, "left": 895}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509453.jpg"} -{"rects": [{"solidity": 0.9902581898658531, "top": 275, "right": 5050, "bottom": 3660, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708683f.jpg"} -{"rects": [{"solidity": 0.9902601169878029, "top": 580, "right": 3440, "bottom": 2245, "left": 1185}, {"solidity": 0.941242516503645, "top": 3105, "right": 2040, "bottom": 5735, "left": 805}], "shape": {"h": 6060, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/465712.jpg"} -{"rects": [{"solidity": 0.9902674263267763, "top": 755, "right": 2130, "bottom": 3435, "left": 395}, {"solidity": 0.9959111887079485, "top": 845, "right": 3860, "bottom": 3270, "left": 2225}, {"solidity": 0.9962628986375688, "top": 830, "right": 5610, "bottom": 3255, "left": 3985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731427f.jpg"} -{"rects": [{"solidity": 0.9902674826456549, "top": 430, "right": 5130, "bottom": 3645, "left": 1070}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732712f.jpg"} -{"rects": [{"solidity": 0.9902697588405424, "top": 740, "right": 2575, "bottom": 2035, "left": 760}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706223f.jpg"} -{"rects": [{"solidity": 0.9902732131593799, "top": 360, "right": 3290, "bottom": 2095, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720036f.jpg"} -{"rects": [{"solidity": 0.9902802481494907, "top": 800, "right": 5820, "bottom": 3280, "left": 330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702109f.jpg"} -{"rects": [{"solidity": 0.9902925920938375, "top": 2520, "right": 3275, "bottom": 4555, "left": 485}, {"solidity": 0.9889234356781966, "top": 420, "right": 3310, "bottom": 2395, "left": 540}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706007f.jpg"} -{"rects": [{"solidity": 0.990298396440341, "top": 970, "right": 3885, "bottom": 2685, "left": 610}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707236f.jpg"} -{"rects": [{"solidity": 0.9902996568101595, "top": 550, "right": 5015, "bottom": 3570, "left": 1275}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/710876f.jpg"} -{"rects": [{"solidity": 0.9903167199815721, "top": 385, "right": 3170, "bottom": 3375, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715259f.jpg"} -{"rects": [{"solidity": 0.9903168499404079, "top": 395, "right": 6005, "bottom": 1850, "left": 4075}, {"solidity": 0.9914729841835417, "top": 2195, "right": 2040, "bottom": 3690, "left": 130}, {"solidity": 0.9926225904241779, "top": 2155, "right": 4035, "bottom": 3620, "left": 2140}, {"solidity": 0.9944492448718912, "top": 420, "right": 2035, "bottom": 1850, "left": 145}, {"solidity": 0.992858539003914, "top": 410, "right": 4010, "bottom": 1805, "left": 2100}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717813f.jpg"} -{"rects": [{"solidity": 0.9903243635588762, "top": 1145, "right": 3385, "bottom": 5045, "left": 430}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705976f.jpg"} -{"rects": [{"solidity": 0.9903266723503358, "top": 420, "right": 2895, "bottom": 1995, "left": 940}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700876f.jpg"} -{"rects": [{"solidity": 0.9903276405879982, "top": 445, "right": 3250, "bottom": 2020, "left": 845}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728003f.jpg"} -{"rects": [{"solidity": 0.9903279038249172, "top": 540, "right": 2745, "bottom": 2540, "left": 715}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720926f.jpg"} -{"rects": [{"solidity": 0.9903287932679795, "top": 445, "right": 3165, "bottom": 2000, "left": 810}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713288f.jpg"} -{"rects": [{"solidity": 0.9903317093669157, "top": 510, "right": 3145, "bottom": 2115, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710129f.jpg"} -{"rects": [{"solidity": 0.9903393116820165, "top": 2135, "right": 2785, "bottom": 3560, "left": 955}, {"solidity": 0.9923084199154673, "top": 685, "right": 2770, "bottom": 2080, "left": 940}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707278f.jpg"} -{"rects": [{"solidity": 0.9903422112794527, "top": 130, "right": 3440, "bottom": 2540, "left": 340}, {"solidity": 0.9954214798373378, "top": 2710, "right": 3025, "bottom": 4325, "left": 610}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723463f.jpg"} -{"rects": [{"solidity": 0.9903471462908283, "top": 770, "right": 2795, "bottom": 3630, "left": 960}, {"solidity": 0.9945684590832844, "top": 755, "right": 5200, "bottom": 3595, "left": 3375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705853f.jpg"} -{"rects": [{"solidity": 0.9903503241187713, "top": 575, "right": 2670, "bottom": 1985, "left": 850}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703713f.jpg"} -{"rects": [{"solidity": 0.9903580809716375, "top": 640, "right": 4695, "bottom": 3320, "left": 1270}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716563f.jpg"} -{"rects": [{"solidity": 0.990360982714501, "top": 395, "right": 3080, "bottom": 1990, "left": 700}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728908f.jpg"} -{"rects": [{"solidity": 0.9903658222658671, "top": 725, "right": 2600, "bottom": 2215, "left": 790}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702710f.jpg"} -{"rects": [{"solidity": 0.9903742680580239, "top": 305, "right": 4945, "bottom": 3685, "left": 940}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717403f.jpg"} -{"rects": [{"solidity": 0.9903790487803539, "top": 445, "right": 4920, "bottom": 3455, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712874f.jpg"} -{"rects": [{"solidity": 0.9903865073787772, "top": 285, "right": 2090, "bottom": 1435, "left": 530}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716307f.jpg"} -{"rects": [{"solidity": 0.9903886525561367, "top": 495, "right": 3200, "bottom": 1975, "left": 570}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701691f.jpg"} -{"rects": [{"solidity": 0.9903886943430126, "top": 570, "right": 3010, "bottom": 1965, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711864f.jpg"} -{"rects": [{"solidity": 0.9903912069594207, "top": 505, "right": 5070, "bottom": 3635, "left": 1155}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/724853f.jpg"} -{"rects": [{"solidity": 0.9903920763156694, "top": 780, "right": 2025, "bottom": 3190, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721883f.jpg"} -{"rects": [{"solidity": 0.9903948306906545, "top": 685, "right": 4940, "bottom": 3390, "left": 1175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724590f.jpg"} -{"rects": [{"solidity": 0.9903959157367975, "top": 360, "right": 1975, "bottom": 1245, "left": 830}], "shape": {"h": 3930, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727055f.jpg"} -{"rects": [{"solidity": 0.9903976468676919, "top": 775, "right": 1945, "bottom": 2785, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725986f.jpg"} -{"rects": [{"solidity": 0.9903995697286153, "top": 910, "right": 3270, "bottom": 2375, "left": 1235}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508367.jpg"} -{"rects": [{"solidity": 0.9904100132689041, "top": 880, "right": 3735, "bottom": 2350, "left": 1625}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508629.jpg"} -{"rects": [{"solidity": 0.990412373864449, "top": 2885, "right": 3265, "bottom": 4085, "left": 1260}, {"solidity": 0.9941258197176837, "top": 1215, "right": 3255, "bottom": 2380, "left": 1280}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711258f.jpg"} -{"rects": [{"solidity": 0.9904202490364661, "top": 830, "right": 2260, "bottom": 2075, "left": 610}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704431f.jpg"} -{"rects": [{"solidity": 0.9904214931716292, "top": 440, "right": 3155, "bottom": 2060, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700898f.jpg"} -{"rects": [{"solidity": 0.9904244089606755, "top": 455, "right": 2910, "bottom": 2015, "left": 965}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700362f.jpg"} -{"rects": [{"solidity": 0.990425655012811, "top": 455, "right": 3180, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709787f.jpg"} -{"rects": [{"solidity": 0.9904268921276852, "top": 580, "right": 2560, "bottom": 2130, "left": 290}, {"solidity": 0.9949200235258843, "top": 2650, "right": 2375, "bottom": 3870, "left": 555}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716329f.jpg"} -{"rects": [{"solidity": 0.9904307652394304, "top": 410, "right": 3080, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/731378f.jpg"} -{"rects": [{"solidity": 0.9904312749123206, "top": 645, "right": 2720, "bottom": 3535, "left": 855}, {"solidity": 0.9971562660931695, "top": 635, "right": 5295, "bottom": 2250, "left": 2875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702610f.jpg"} -{"rects": [{"solidity": 0.9904318430657617, "top": 1075, "right": 3955, "bottom": 5660, "left": 295}], "shape": {"h": 6905, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708351f.jpg"} -{"rects": [{"solidity": 0.9904327604099596, "top": 695, "right": 2920, "bottom": 1760, "left": 1335}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509427.jpg"} -{"rects": [{"solidity": 0.9904424952359601, "top": 660, "right": 4690, "bottom": 3320, "left": 1270}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716969f.jpg"} -{"rects": [{"solidity": 0.9904425666642215, "top": 805, "right": 5150, "bottom": 3700, "left": 3280}, {"solidity": 0.9863978695458325, "top": 860, "right": 2705, "bottom": 3620, "left": 785}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730369f.jpg"} -{"rects": [{"solidity": 0.9904495976557406, "top": 700, "right": 2220, "bottom": 1705, "left": 560}, {"solidity": 0.9952438401930305, "top": 2925, "right": 2195, "bottom": 3915, "left": 535}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508649.jpg"} -{"rects": [{"solidity": 0.9904524937397323, "top": 430, "right": 3255, "bottom": 2075, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704804f.jpg"} -{"rects": [{"solidity": 0.9904679097545217, "top": 385, "right": 3170, "bottom": 3465, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715094f.jpg"} -{"rects": [{"solidity": 0.9904691758770034, "top": 870, "right": 2410, "bottom": 2310, "left": 380}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509317.jpg"} -{"rects": [{"solidity": 0.9904699226017339, "top": 130, "right": 5095, "bottom": 3575, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703281f.jpg"} -{"rects": [{"solidity": 0.9904707986592984, "top": 960, "right": 3545, "bottom": 2655, "left": 550}], "shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508575.jpg"} -{"rects": [{"solidity": 0.9904720536927798, "top": 1195, "right": 3470, "bottom": 4965, "left": 370}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732255f.jpg"} -{"rects": [{"solidity": 0.9904732384101251, "top": 600, "right": 4845, "bottom": 3605, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713818f.jpg"} -{"rects": [{"solidity": 0.9904811200464582, "top": 350, "right": 1855, "bottom": 1240, "left": 720}], "shape": {"h": 3945, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727074f.jpg"} -{"rects": [{"solidity": 0.9904838687684084, "top": 725, "right": 3105, "bottom": 3845, "left": 675}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714455f.jpg"} -{"rects": [{"solidity": 0.9904838687684084, "top": 725, "right": 3105, "bottom": 3845, "left": 675}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714456f.jpg"} -{"rects": [{"solidity": 0.9904856223597651, "top": 510, "right": 5060, "bottom": 3725, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701615f.jpg"} -{"rects": [{"solidity": 0.9904946600061374, "top": 495, "right": 3285, "bottom": 2345, "left": 525}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726853f.jpg"} -{"rects": [{"solidity": 0.9904954872969819, "top": 415, "right": 3195, "bottom": 2270, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702583f.jpg"} -{"rects": [{"solidity": 0.9904998548307596, "top": 970, "right": 2455, "bottom": 2745, "left": 1390}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712945f.jpg"} -{"rects": [{"solidity": 0.9905191982779769, "top": 575, "right": 3090, "bottom": 2140, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722318f.jpg"} -{"rects": [{"solidity": 0.9905197576590056, "top": 570, "right": 2560, "bottom": 1815, "left": 895}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704362f.jpg"} -{"rects": [{"solidity": 0.9905204657494416, "top": 2255, "right": 3085, "bottom": 3850, "left": 670}, {"solidity": 0.9945003787663895, "top": 4105, "right": 3075, "bottom": 5700, "left": 665}, {"solidity": 0.9932366278040092, "top": 395, "right": 3100, "bottom": 1990, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701361f.jpg"} -{"rects": [{"solidity": 0.9905245138423713, "top": 425, "right": 3315, "bottom": 2335, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701094f.jpg"} -{"rects": [{"solidity": 0.9905258503033446, "top": 585, "right": 4960, "bottom": 3655, "left": 1095}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732877f.jpg"} -{"rects": [{"solidity": 0.9905285279030582, "top": 510, "right": 3295, "bottom": 2345, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709990f.jpg"} -{"rects": [{"solidity": 0.9905289292822932, "top": 385, "right": 2910, "bottom": 3435, "left": 700}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714763f.jpg"} -{"rects": [{"solidity": 0.9905290917844543, "top": 640, "right": 2695, "bottom": 3530, "left": 865}, {"solidity": 0.995531651603646, "top": 595, "right": 5185, "bottom": 2045, "left": 3360}, {"solidity": 0.9974974223450154, "top": 2070, "right": 5195, "bottom": 3460, "left": 3380}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704400f.jpg"} -{"rects": [{"solidity": 0.9905304013639105, "top": 525, "right": 4980, "bottom": 3570, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706091f.jpg"} -{"rects": [{"solidity": 0.9905367589256198, "top": 490, "right": 4965, "bottom": 3490, "left": 1170}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700193f.jpg"} -{"rects": [{"solidity": 0.9905389666289688, "top": 820, "right": 3360, "bottom": 2280, "left": 1285}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508151.jpg"} -{"rects": [{"solidity": 0.9905417784618532, "top": 3920, "right": 3050, "bottom": 5460, "left": 1220}, {"solidity": 0.9864266086558278, "top": 550, "right": 3040, "bottom": 1825, "left": 1300}, {"solidity": 0.9848047628926904, "top": 2280, "right": 3005, "bottom": 3540, "left": 1360}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732799f.jpg"} -{"rects": [{"solidity": 0.9905451452458626, "top": 1635, "right": 3035, "bottom": 2865, "left": 1030}, {"solidity": 0.9947266673826657, "top": 450, "right": 3030, "bottom": 1635, "left": 1040}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709808f.jpg"} -{"rects": [{"solidity": 0.9905478075784108, "top": 445, "right": 4910, "bottom": 3575, "left": 1050}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709134f.jpg"} -{"rects": [{"solidity": 0.9905509546327392, "top": 710, "right": 4990, "bottom": 3395, "left": 1060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702305f.jpg"} -{"rects": [{"solidity": 0.9905582772740568, "top": 500, "right": 3210, "bottom": 2180, "left": 725}, {"solidity": 0.9832148867096475, "top": 2255, "right": 3210, "bottom": 3935, "left": 730}, {"solidity": 0.9728474301703401, "top": 4010, "right": 3225, "bottom": 5695, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722942f.jpg"} -{"rects": [{"solidity": 0.9905678842280258, "top": 645, "right": 2745, "bottom": 3475, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727357f.jpg"} -{"rects": [{"solidity": 0.9905783424892993, "top": 1125, "right": 2735, "bottom": 4180, "left": 270}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715991f.jpg"} -{"rects": [{"solidity": 0.9905787170078253, "top": 430, "right": 2890, "bottom": 1970, "left": 1030}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701313f.jpg"} -{"rects": [{"solidity": 0.9905807031584025, "top": 505, "right": 5350, "bottom": 3425, "left": 1365}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716928f.jpg"} -{"rects": [{"solidity": 0.9905865288432534, "top": 690, "right": 5570, "bottom": 3940, "left": 1355}], "shape": {"h": 4415, "w": 6880}, "file": "/usr/local/google/home/danvk/milstein/711226f.jpg"} -{"rects": [{"solidity": 0.9905977039593069, "top": 420, "right": 3300, "bottom": 1940, "left": 650}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/716547f.jpg"} -{"rects": [{"solidity": 0.9905991866740047, "top": 400, "right": 3315, "bottom": 2290, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701093f.jpg"} -{"rects": [{"solidity": 0.9906021945713236, "top": 615, "right": 2855, "bottom": 2085, "left": 885}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733380f.jpg"} -{"rects": [{"solidity": 0.9906024028586703, "top": 400, "right": 5005, "bottom": 3665, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700179f.jpg"} -{"rects": [{"solidity": 0.9906048706555062, "top": 865, "right": 1970, "bottom": 2900, "left": 505}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700780f.jpg"} -{"rects": [{"solidity": 0.9906057977742215, "top": 335, "right": 1940, "bottom": 1235, "left": 775}], "shape": {"h": 3945, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727093f.jpg"} -{"rects": [{"solidity": 0.9906058158720092, "top": 800, "right": 1840, "bottom": 2600, "left": 425}, {"solidity": 0.9813622467536297, "top": 3325, "right": 1865, "bottom": 5100, "left": 400}, {"solidity": 0.9328971465985975, "top": 3305, "right": 3345, "bottom": 5165, "left": 1910}, {"solidity": 0.9686139013313747, "top": 855, "right": 3360, "bottom": 2590, "left": 1935}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705746f.jpg"} -{"rects": [{"solidity": 0.9906080058187231, "top": 395, "right": 2915, "bottom": 1935, "left": 945}, {"solidity": 0.9916323323280806, "top": 2200, "right": 2935, "bottom": 3725, "left": 970}, {"solidity": 0.9881780870806567, "top": 4045, "right": 2915, "bottom": 5500, "left": 955}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730758f.jpg"} -{"rects": [{"solidity": 0.9906112004784839, "top": 735, "right": 3175, "bottom": 2665, "left": 450}, {"solidity": 0.9955839179361252, "top": 3285, "right": 3120, "bottom": 5195, "left": 440}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715210f.jpg"} -{"rects": [{"solidity": 0.9906114282113683, "top": 615, "right": 4920, "bottom": 3550, "left": 1285}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720796f.jpg"} -{"rects": [{"solidity": 0.9906128020307, "top": 405, "right": 3180, "bottom": 2240, "left": 595}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/726977f.jpg"} -{"rects": [{"solidity": 0.9906128267941047, "top": 465, "right": 2950, "bottom": 1860, "left": 1140}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725329f.jpg"} -{"rects": [{"solidity": 0.9906182972867352, "top": 1220, "right": 3350, "bottom": 4780, "left": 525}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/703119f.jpg"} -{"rects": [{"solidity": 0.9906273011536451, "top": 690, "right": 5530, "bottom": 4040, "left": 1305}], "shape": {"h": 4425, "w": 6915}, "file": "/usr/local/google/home/danvk/milstein/708811f.jpg"} -{"rects": [{"solidity": 0.9906423119861258, "top": 335, "right": 3180, "bottom": 3415, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714432f.jpg"} -{"rects": [{"solidity": 0.9906440796526791, "top": 505, "right": 4880, "bottom": 3760, "left": 780}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729573f.jpg"} -{"rects": [{"solidity": 0.9906454569401479, "top": 570, "right": 4915, "bottom": 3625, "left": 1085}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720323f.jpg"} -{"rects": [{"solidity": 0.9906479299693555, "top": 2675, "right": 1945, "bottom": 3585, "left": 795}, {"solidity": 0.9927380411142376, "top": 1550, "right": 1965, "bottom": 2445, "left": 810}, {"solidity": 0.9964483325856138, "top": 390, "right": 1955, "bottom": 1285, "left": 815}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727136f.jpg"} -{"rects": [{"solidity": 0.990648932587464, "top": 840, "right": 4665, "bottom": 3380, "left": 1205}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709015f.jpg"} -{"rects": [{"solidity": 0.9906531052594905, "top": 630, "right": 2680, "bottom": 3500, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705934f.jpg"} -{"rects": [{"solidity": 0.9906542513609838, "top": 740, "right": 3220, "bottom": 2005, "left": 1150}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508655.jpg"} -{"rects": [{"solidity": 0.9906544716488609, "top": 1085, "right": 3115, "bottom": 5055, "left": 885}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708548f.jpg"} -{"rects": [{"solidity": 0.9906612665502421, "top": 2635, "right": 1975, "bottom": 3540, "left": 835}, {"solidity": 0.9941484562951083, "top": 1450, "right": 1985, "bottom": 2340, "left": 835}, {"solidity": 0.9950119005418545, "top": 280, "right": 1990, "bottom": 1175, "left": 870}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727138f.jpg"} -{"rects": [{"solidity": 0.9906643352202243, "top": 385, "right": 5440, "bottom": 1850, "left": 3365}, {"solidity": 0.9915383601426998, "top": 2015, "right": 2855, "bottom": 3475, "left": 790}, {"solidity": 0.9958087564075556, "top": 375, "right": 2800, "bottom": 1825, "left": 775}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714911f.jpg"} -{"rects": [{"solidity": 0.9906670546301011, "top": 1170, "right": 3525, "bottom": 5085, "left": 425}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/722480f.jpg"} -{"rects": [{"solidity": 0.9906743108205857, "top": 1165, "right": 3655, "bottom": 2950, "left": 1005}], "shape": {"h": 6010, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465551.jpg"} -{"rects": [{"solidity": 0.9906760036640732, "top": 635, "right": 5110, "bottom": 3520, "left": 1185}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723196f.jpg"} -{"rects": [{"solidity": 0.9906787378796807, "top": 4080, "right": 3030, "bottom": 5710, "left": 545}, {"solidity": 0.9947683832304427, "top": 2200, "right": 3035, "bottom": 3820, "left": 615}, {"solidity": 0.9945878542510121, "top": 335, "right": 3020, "bottom": 1955, "left": 610}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701045f.jpg"} -{"rects": [{"solidity": 0.9906825998141238, "top": 1060, "right": 4070, "bottom": 2435, "left": 2115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730580f.jpg"} -{"rects": [{"solidity": 0.9906846628597796, "top": 565, "right": 2730, "bottom": 1925, "left": 795}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707437f.jpg"} -{"rects": [{"solidity": 0.9906908696190808, "top": 1120, "right": 2600, "bottom": 3960, "left": 335}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507757.jpg"} -{"rects": [{"solidity": 0.9906951178814707, "top": 410, "right": 3135, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700723f.jpg"} -{"rects": [{"solidity": 0.9907023794804932, "top": 1345, "right": 3540, "bottom": 5075, "left": 300}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723131f.jpg"} -{"rects": [{"solidity": 0.9907048232452609, "top": 355, "right": 1975, "bottom": 1255, "left": 815}], "shape": {"h": 3950, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727095f.jpg"} -{"rects": [{"solidity": 0.9907060470698047, "top": 605, "right": 2060, "bottom": 3505, "left": 735}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721069f.jpg"} -{"rects": [{"solidity": 0.9907060517083152, "top": 615, "right": 2460, "bottom": 3395, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707313f.jpg"} -{"rects": [{"solidity": 0.9907069700011663, "top": 500, "right": 4780, "bottom": 2015, "left": 1145}, {"solidity": 0.978113175460227, "top": 2270, "right": 4050, "bottom": 3645, "left": 1860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733832f.jpg"} -{"rects": [{"solidity": 0.9907080630033939, "top": 485, "right": 3220, "bottom": 3900, "left": 550}, {"solidity": 1.0, "top": 5025, "right": 3835, "bottom": 6010, "left": 2835}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710164f.jpg"} -{"rects": [{"solidity": 0.9907096190707594, "top": 755, "right": 3540, "bottom": 2305, "left": 1120}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507705.jpg"} -{"rects": [{"solidity": 0.990715608311151, "top": 3180, "right": 3270, "bottom": 5105, "left": 515}, {"solidity": 0.9968686223496238, "top": 700, "right": 3285, "bottom": 2545, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717732f.jpg"} -{"rects": [{"solidity": 0.9907158503934879, "top": 745, "right": 3260, "bottom": 2560, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709991f.jpg"} -{"rects": [{"solidity": 0.9907197174859718, "top": 535, "right": 5040, "bottom": 3480, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731839f.jpg"} -{"rects": [{"solidity": 0.9907219324732364, "top": 555, "right": 5490, "bottom": 3275, "left": 3375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716963f.jpg"} -{"rects": [{"solidity": 0.9907225211084445, "top": 405, "right": 3075, "bottom": 1900, "left": 830}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/728907f.jpg"} -{"rects": [{"solidity": 0.9907257461909533, "top": 605, "right": 4975, "bottom": 3275, "left": 1110}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732080f.jpg"} -{"rects": [{"solidity": 0.9907279586170409, "top": 660, "right": 4925, "bottom": 3650, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709936f.jpg"} -{"rects": [{"solidity": 0.9907287022547078, "top": 675, "right": 2630, "bottom": 2105, "left": 740}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704551f.jpg"} -{"rects": [{"solidity": 0.9907318642752179, "top": 765, "right": 3825, "bottom": 3160, "left": 2225}, {"solidity": 0.9961911206547118, "top": 745, "right": 1995, "bottom": 3135, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719942f.jpg"} -{"rects": [{"solidity": 0.9907347387826707, "top": 560, "right": 1540, "bottom": 2340, "left": 335}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716501f.jpg"} -{"rects": [{"solidity": 0.9907383591921076, "top": 455, "right": 5060, "bottom": 3485, "left": 1250}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707885f.jpg"} -{"rects": [{"solidity": 0.9907388360152646, "top": 430, "right": 2890, "bottom": 1975, "left": 945}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700668f.jpg"} -{"rects": [{"solidity": 0.990739270083298, "top": 2100, "right": 5110, "bottom": 3565, "left": 3155}, {"solidity": 0.993954061955854, "top": 435, "right": 5105, "bottom": 1870, "left": 3205}, {"solidity": 0.9906082182585347, "top": 475, "right": 2450, "bottom": 1775, "left": 820}, {"solidity": 0.9935582281481121, "top": 2285, "right": 2425, "bottom": 3565, "left": 795}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730065f.jpg"} -{"rects": [{"solidity": 0.9907454561418912, "top": 555, "right": 2585, "bottom": 1810, "left": 870}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706286f.jpg"} -{"rects": [{"solidity": 0.9907487259898079, "top": 590, "right": 4980, "bottom": 3400, "left": 1185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721453f.jpg"} -{"rects": [{"solidity": 0.9907531099707139, "top": 1135, "right": 3450, "bottom": 4920, "left": 345}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721655f.jpg"} -{"rects": [{"solidity": 0.990763714904895, "top": 600, "right": 5245, "bottom": 3475, "left": 3430}, {"solidity": 0.9955243118807878, "top": 2040, "right": 2785, "bottom": 3495, "left": 935}, {"solidity": 0.9665053192866202, "top": 650, "right": 2795, "bottom": 2035, "left": 915}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705890f.jpg"} -{"rects": [{"solidity": 0.9907642292441445, "top": 465, "right": 2925, "bottom": 1865, "left": 1070}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717344f.jpg"} -{"rects": [{"solidity": 0.9907687587679472, "top": 775, "right": 4870, "bottom": 3460, "left": 1085}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718331f.jpg"} -{"rects": [{"solidity": 0.990769572227771, "top": 840, "right": 2200, "bottom": 3240, "left": 560}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722317f.jpg"} -{"rects": [{"solidity": 0.9907794342341821, "top": 480, "right": 3370, "bottom": 2400, "left": 630}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714141f.jpg"} -{"rects": [{"solidity": 0.990779602908821, "top": 1095, "right": 5500, "bottom": 3030, "left": 3995}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711802f.jpg"} -{"rects": [{"solidity": 0.9907802435696869, "top": 800, "right": 2060, "bottom": 3180, "left": 465}, {"solidity": 0.9970030003595055, "top": 810, "right": 3880, "bottom": 3185, "left": 2300}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710133f.jpg"} -{"rects": [{"solidity": 0.9907823873711151, "top": 810, "right": 2415, "bottom": 3705, "left": 550}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507567.jpg"} -{"rects": [{"solidity": 0.9907934005293091, "top": 735, "right": 3485, "bottom": 5440, "left": 225}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709727f.jpg"} -{"rects": [{"solidity": 0.9908030696293796, "top": 1215, "right": 2450, "bottom": 5015, "left": 1500}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/713806f.jpg"} -{"rects": [{"solidity": 0.9908043100172459, "top": 215, "right": 5105, "bottom": 3675, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730007f.jpg"} -{"rects": [{"solidity": 0.9908086845936203, "top": 440, "right": 3155, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700698f.jpg"} -{"rects": [{"solidity": 0.9908093885630679, "top": 130, "right": 5145, "bottom": 3825, "left": 130}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701200f.jpg"} -{"rects": [{"solidity": 0.9908096469080603, "top": 370, "right": 5295, "bottom": 3610, "left": 1415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719119f.jpg"} -{"rects": [{"solidity": 0.9908147466209147, "top": 355, "right": 3170, "bottom": 2185, "left": 540}, {"solidity": 0.9773144527006474, "top": 2350, "right": 3170, "bottom": 4185, "left": 540}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702092f.jpg"} -{"rects": [{"solidity": 0.9908167132293971, "top": 455, "right": 3175, "bottom": 1940, "left": 1240}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/706497f.jpg"} -{"rects": [{"solidity": 0.9908244455730489, "top": 2235, "right": 3000, "bottom": 3750, "left": 1025}, {"solidity": 0.9934414927040425, "top": 430, "right": 2970, "bottom": 1925, "left": 1020}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/714608f.jpg"} -{"rects": [{"solidity": 0.9908265614516009, "top": 640, "right": 4960, "bottom": 3495, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701335f.jpg"} -{"rects": [{"solidity": 0.9908337121950164, "top": 470, "right": 3030, "bottom": 1915, "left": 985}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703909f.jpg"} -{"rects": [{"solidity": 0.9908375659794841, "top": 835, "right": 3885, "bottom": 3265, "left": 2245}, {"solidity": 0.9960439416726607, "top": 830, "right": 2035, "bottom": 3245, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720054f.jpg"} -{"rects": [{"solidity": 0.9908386513296301, "top": 270, "right": 4940, "bottom": 3640, "left": 860}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730762f.jpg"} -{"rects": [{"solidity": 0.9908387901465544, "top": 4610, "right": 3050, "bottom": 5535, "left": 855}, {"solidity": 0.9822772500975847, "top": 1050, "right": 3060, "bottom": 1925, "left": 855}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734285f.jpg"} -{"rects": [{"solidity": 0.9908414313107349, "top": 400, "right": 3205, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701681f.jpg"} -{"rects": [{"solidity": 0.9908430068747887, "top": 130, "right": 7165, "bottom": 2470, "left": 130}], "shape": {"h": 2600, "w": 7295}, "file": "/usr/local/google/home/danvk/milstein/1113259.jpg"} -{"rects": [{"solidity": 0.9908438690378818, "top": 720, "right": 3050, "bottom": 2115, "left": 1085}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508433.jpg"} -{"rects": [{"solidity": 0.9908443540183113, "top": 355, "right": 3795, "bottom": 2730, "left": 775}], "shape": {"h": 2955, "w": 4565}, "file": "/usr/local/google/home/danvk/milstein/1507101.jpg"} -{"rects": [{"solidity": 0.9908452378774854, "top": 1235, "right": 2705, "bottom": 4215, "left": 390}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507699.jpg"} -{"rects": [{"solidity": 0.9908512504120358, "top": 565, "right": 2770, "bottom": 1805, "left": 1120}, {"solidity": 0.9925408365593429, "top": 570, "right": 4995, "bottom": 1800, "left": 3350}, {"solidity": 0.9886536437010177, "top": 2170, "right": 2785, "bottom": 3375, "left": 1150}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702625f.jpg"} -{"rects": [{"solidity": 0.990852241608358, "top": 270, "right": 3550, "bottom": 2910, "left": 190}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717136f.jpg"} -{"rects": [{"solidity": 0.9908523309531059, "top": 4065, "right": 3055, "bottom": 5665, "left": 635}, {"solidity": 0.9965769508073105, "top": 325, "right": 3070, "bottom": 1910, "left": 660}, {"solidity": 0.9975168252494778, "top": 2180, "right": 3065, "bottom": 3760, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728984f.jpg"} -{"rects": [{"solidity": 0.9908536884028077, "top": 570, "right": 4990, "bottom": 3580, "left": 1160}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733527f.jpg"} -{"rects": [{"solidity": 0.9908541830226862, "top": 650, "right": 3790, "bottom": 3485, "left": 2365}, {"solidity": 0.9742592719630306, "top": 660, "right": 5560, "bottom": 3500, "left": 4115}, {"solidity": 0.9847298030578697, "top": 665, "right": 2000, "bottom": 3460, "left": 585}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721189f.jpg"} -{"rects": [{"solidity": 0.9908544688905337, "top": 1170, "right": 3290, "bottom": 5025, "left": 505}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718665f.jpg"} -{"rects": [{"solidity": 0.9908563047403329, "top": 460, "right": 3160, "bottom": 1830, "left": 1165}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707054f.jpg"} -{"rects": [{"solidity": 0.9908582975252888, "top": 315, "right": 1855, "bottom": 1220, "left": 695}, {"solidity": 0.9928468543248455, "top": 1465, "right": 1850, "bottom": 2370, "left": 700}], "shape": {"h": 3945, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727081f.jpg"} -{"rects": [{"solidity": 0.9908654004410942, "top": 770, "right": 2040, "bottom": 3175, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700329f.jpg"} -{"rects": [{"solidity": 0.9908663112747226, "top": 410, "right": 2915, "bottom": 1905, "left": 965}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723310f.jpg"} -{"rects": [{"solidity": 0.9908664660806944, "top": 725, "right": 5425, "bottom": 3860, "left": 1475}], "shape": {"h": 4425, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/708336f.jpg"} -{"rects": [{"solidity": 0.9908722157037703, "top": 600, "right": 4970, "bottom": 3450, "left": 1190}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700999f.jpg"} -{"rects": [{"solidity": 0.9908731239583959, "top": 2240, "right": 5080, "bottom": 3695, "left": 3190}, {"solidity": 0.995834299853089, "top": 675, "right": 5055, "bottom": 2095, "left": 3210}, {"solidity": 0.995407148746302, "top": 2285, "right": 2880, "bottom": 3700, "left": 1035}, {"solidity": 0.9612829019287256, "top": 675, "right": 2880, "bottom": 2100, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728266f.jpg"} -{"rects": [{"solidity": 0.9908765095905735, "top": 780, "right": 2535, "bottom": 3765, "left": 360}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508377.jpg"} -{"rects": [{"solidity": 0.9908776237810781, "top": 325, "right": 5095, "bottom": 3665, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717395f.jpg"} -{"rects": [{"solidity": 0.9908866270985786, "top": 560, "right": 4885, "bottom": 3530, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709807f.jpg"} -{"rects": [{"solidity": 0.9908908756526354, "top": 530, "right": 3145, "bottom": 1930, "left": 940}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732550f.jpg"} -{"rects": [{"solidity": 0.9908918105496595, "top": 685, "right": 2685, "bottom": 2140, "left": 820}, {"solidity": 0.9923762077294686, "top": 690, "right": 5250, "bottom": 2130, "left": 3390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705547f.jpg"} -{"rects": [{"solidity": 0.9908941338812522, "top": 770, "right": 3330, "bottom": 2635, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/711906f.jpg"} -{"rects": [{"solidity": 0.9908972126854689, "top": 1050, "right": 3360, "bottom": 4885, "left": 310}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709969f.jpg"} -{"rects": [{"solidity": 0.9908988450533157, "top": 1130, "right": 3190, "bottom": 4570, "left": 500}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723935f.jpg"} -{"rects": [{"solidity": 0.9908994564953185, "top": 1335, "right": 3470, "bottom": 5160, "left": 420}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/716688f.jpg"} -{"rects": [{"solidity": 0.9909056355394043, "top": 810, "right": 2515, "bottom": 2735, "left": 1090}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720614f.jpg"} -{"rects": [{"solidity": 0.9909061746636597, "top": 2280, "right": 2995, "bottom": 3730, "left": 1160}, {"solidity": 0.9891637763387398, "top": 485, "right": 3000, "bottom": 1910, "left": 1195}, {"solidity": 0.9931468516120536, "top": 4150, "right": 2910, "bottom": 5500, "left": 1180}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726997f.jpg"} -{"rects": [{"solidity": 0.9909075543359382, "top": 660, "right": 2745, "bottom": 2065, "left": 935}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725640f.jpg"} -{"rects": [{"solidity": 0.9909078746199226, "top": 550, "right": 4870, "bottom": 3515, "left": 1155}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709837f.jpg"} -{"rects": [{"solidity": 0.9909114334489312, "top": 770, "right": 2610, "bottom": 3385, "left": 790}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711996f.jpg"} -{"rects": [{"solidity": 0.9909152274202772, "top": 885, "right": 1865, "bottom": 2960, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701922f.jpg"} -{"rects": [{"solidity": 0.990916012463451, "top": 1370, "right": 3430, "bottom": 4585, "left": 365}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705157f.jpg"} -{"rects": [{"solidity": 0.9909163009049217, "top": 560, "right": 3030, "bottom": 1980, "left": 1215}, {"solidity": 0.9951473983970954, "top": 2385, "right": 3030, "bottom": 3770, "left": 1200}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727784f.jpg"} -{"rects": [{"solidity": 0.9909235294454924, "top": 460, "right": 2220, "bottom": 1750, "left": 505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706930f.jpg"} -{"rects": [{"solidity": 0.9909282828802936, "top": 505, "right": 2935, "bottom": 1895, "left": 955}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734794f.jpg"} -{"rects": [{"solidity": 0.9909332225676438, "top": 795, "right": 2060, "bottom": 3200, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719488f.jpg"} -{"rects": [{"solidity": 0.9909351580099227, "top": 575, "right": 4945, "bottom": 3575, "left": 1180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717508f.jpg"} -{"rects": [{"solidity": 0.9909353950604084, "top": 445, "right": 3190, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702080f.jpg"} -{"rects": [{"solidity": 0.9909377601255738, "top": 360, "right": 5255, "bottom": 3600, "left": 1185}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732223f.jpg"} -{"rects": [{"solidity": 0.9909431015153615, "top": 310, "right": 1895, "bottom": 1200, "left": 765}], "shape": {"h": 3950, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727131f.jpg"} -{"rects": [{"solidity": 0.9909462310166758, "top": 370, "right": 2835, "bottom": 1835, "left": 1020}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700020f.jpg"} -{"rects": [{"solidity": 0.9909479606559105, "top": 835, "right": 2035, "bottom": 3250, "left": 435}, {"solidity": 0.9971858105606162, "top": 850, "right": 3845, "bottom": 3235, "left": 2275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729791f.jpg"} -{"rects": [{"solidity": 0.9909483635137213, "top": 2185, "right": 3005, "bottom": 3585, "left": 1175}, {"solidity": 0.9913860448753434, "top": 445, "right": 2995, "bottom": 1840, "left": 1225}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725555f.jpg"} -{"rects": [{"solidity": 0.9909501830335827, "top": 890, "right": 3475, "bottom": 3325, "left": 1805}, {"solidity": 0.994216053820871, "top": 910, "right": 5320, "bottom": 3330, "left": 3690}, {"solidity": 0.9967936953470797, "top": 1195, "right": 1625, "bottom": 3115, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701394f.jpg"} -{"rects": [{"solidity": 0.9909539510276365, "top": 390, "right": 3170, "bottom": 1790, "left": 1145}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705919f.jpg"} -{"rects": [{"solidity": 0.9909596514799885, "top": 735, "right": 4530, "bottom": 3305, "left": 1490}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730096f.jpg"} -{"rects": [{"solidity": 0.9909735640331916, "top": 1155, "right": 3345, "bottom": 4985, "left": 325}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713017f.jpg"} -{"rects": [{"solidity": 0.9909750405420817, "top": 575, "right": 4255, "bottom": 3230, "left": 805}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733588f.jpg"} -{"rects": [{"solidity": 0.9909795117610177, "top": 610, "right": 2770, "bottom": 2020, "left": 990}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702779f.jpg"} -{"rects": [{"solidity": 0.9909836397232376, "top": 410, "right": 3150, "bottom": 1995, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728023f.jpg"} -{"rects": [{"solidity": 0.9909854167146632, "top": 845, "right": 2065, "bottom": 3230, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717398f.jpg"} -{"rects": [{"solidity": 0.9909868662659219, "top": 515, "right": 4800, "bottom": 3565, "left": 1385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704923f.jpg"} -{"rects": [{"solidity": 0.990988965476437, "top": 640, "right": 4965, "bottom": 3460, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708581f.jpg"} -{"rects": [{"solidity": 0.9909901440010028, "top": 910, "right": 2060, "bottom": 2930, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705717f.jpg"} -{"rects": [{"solidity": 0.9909905046397102, "top": 450, "right": 2395, "bottom": 1895, "left": 935}, {"solidity": 0.9927320739632607, "top": 2065, "right": 2380, "bottom": 3510, "left": 935}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701776f.jpg"} -{"rects": [{"solidity": 0.9909908988997584, "top": 820, "right": 2000, "bottom": 3185, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701378f.jpg"} -{"rects": [{"solidity": 0.9909920918703872, "top": 485, "right": 4535, "bottom": 3550, "left": 1585}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721449f.jpg"} -{"rects": [{"solidity": 0.9909959161094027, "top": 795, "right": 2065, "bottom": 3205, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718067f.jpg"} -{"rects": [{"solidity": 0.990998596586839, "top": 130, "right": 5130, "bottom": 3850, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710421f.jpg"} -{"rects": [{"solidity": 0.9910064182082952, "top": 595, "right": 3265, "bottom": 2420, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709998f.jpg"} -{"rects": [{"solidity": 0.9910064455908879, "top": 810, "right": 5035, "bottom": 3415, "left": 1170}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702228f.jpg"} -{"rects": [{"solidity": 0.9910100350021298, "top": 650, "right": 4810, "bottom": 3265, "left": 1135}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721791f.jpg"} -{"rects": [{"solidity": 0.9910141861387635, "top": 320, "right": 5105, "bottom": 3650, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706119f.jpg"} -{"rects": [{"solidity": 0.9910210862409036, "top": 410, "right": 5980, "bottom": 4080, "left": 1405}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711277f.jpg"} -{"rects": [{"solidity": 0.9910219105175458, "top": 480, "right": 3040, "bottom": 1875, "left": 1215}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725569f.jpg"} -{"rects": [{"solidity": 0.9910219491314138, "top": 860, "right": 5060, "bottom": 3230, "left": 1030}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718297f.jpg"} -{"rects": [{"solidity": 0.9910228141680958, "top": 760, "right": 3105, "bottom": 4145, "left": 580}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714212f.jpg"} -{"rects": [{"solidity": 0.991024349783755, "top": 560, "right": 2905, "bottom": 1970, "left": 1085}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725513f.jpg"} -{"rects": [{"solidity": 0.9910245108447343, "top": 545, "right": 4925, "bottom": 3515, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712880f.jpg"} -{"rects": [{"solidity": 0.991027232711501, "top": 605, "right": 3275, "bottom": 2425, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710003f.jpg"} -{"rects": [{"solidity": 0.9910277357110718, "top": 800, "right": 4845, "bottom": 3435, "left": 1215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730685f.jpg"} -{"rects": [{"solidity": 0.9910288507391511, "top": 610, "right": 3120, "bottom": 2325, "left": 400}, {"solidity": 0.9953613849856378, "top": 2305, "right": 5460, "bottom": 3740, "left": 3645}, {"solidity": 0.9947978917256108, "top": 695, "right": 5475, "bottom": 2110, "left": 3645}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727035f.jpg"} -{"rects": [{"solidity": 0.9910403292686673, "top": 360, "right": 3190, "bottom": 2075, "left": 780}, {"solidity": 0.9970073503675184, "top": 2290, "right": 2570, "bottom": 4205, "left": 1430}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700258f.jpg"} -{"rects": [{"solidity": 0.991041096352154, "top": 3235, "right": 3155, "bottom": 5165, "left": 425}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/712747f.jpg"} -{"rects": [{"solidity": 0.9910425884205097, "top": 435, "right": 2925, "bottom": 1920, "left": 1040}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702031f.jpg"} -{"rects": [{"solidity": 0.9910479421619219, "top": 450, "right": 3160, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700981f.jpg"} -{"rects": [{"solidity": 0.9910480863832862, "top": 510, "right": 4970, "bottom": 3435, "left": 1120}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712873f.jpg"} -{"rects": [{"solidity": 0.9910543764759012, "top": 545, "right": 4970, "bottom": 3600, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701868f.jpg"} -{"rects": [{"solidity": 0.99105556285567, "top": 455, "right": 4995, "bottom": 3670, "left": 1125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710042f.jpg"} -{"rects": [{"solidity": 0.99105968884113, "top": 675, "right": 1995, "bottom": 3060, "left": 390}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731360f.jpg"} -{"rects": [{"solidity": 0.9910601859236959, "top": 765, "right": 1960, "bottom": 3130, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713440f.jpg"} -{"rects": [{"solidity": 0.9910647398131874, "top": 130, "right": 3730, "bottom": 2725, "left": 130}], "shape": {"h": 2980, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1558116.jpg"} -{"rects": [{"solidity": 0.9910698384679795, "top": 380, "right": 5050, "bottom": 3580, "left": 1045}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733412f.jpg"} -{"rects": [{"solidity": 0.991071580995954, "top": 665, "right": 2755, "bottom": 3495, "left": 930}, {"solidity": 0.9954076791078901, "top": 670, "right": 5215, "bottom": 2085, "left": 3390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726043f.jpg"} -{"rects": [{"solidity": 0.9910719803290845, "top": 2270, "right": 3060, "bottom": 3890, "left": 645}, {"solidity": 0.994147346458062, "top": 4115, "right": 3045, "bottom": 5720, "left": 635}, {"solidity": 0.9968558502569449, "top": 425, "right": 3070, "bottom": 2005, "left": 680}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730917f.jpg"} -{"rects": [{"solidity": 0.991087916262933, "top": 1070, "right": 3495, "bottom": 5075, "left": 275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709075f.jpg"} -{"rects": [{"solidity": 0.9910900394653144, "top": 1285, "right": 2965, "bottom": 3740, "left": 590}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717301f.jpg"} -{"rects": [{"solidity": 0.9910959148057129, "top": 720, "right": 3245, "bottom": 2650, "left": 485}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707426f.jpg"} -{"rects": [{"solidity": 0.991096567124117, "top": 465, "right": 2570, "bottom": 3720, "left": 515}, {"solidity": 0.9959007016473459, "top": 830, "right": 4450, "bottom": 3270, "left": 2815}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701239f.jpg"} -{"rects": [{"solidity": 0.9911011373622423, "top": 275, "right": 5035, "bottom": 3660, "left": 1020}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717635f.jpg"} -{"rects": [{"solidity": 0.9911014445173999, "top": 2860, "right": 3350, "bottom": 5385, "left": 290}, {"solidity": 0.9916702423630047, "top": 685, "right": 3180, "bottom": 2460, "left": 555}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701985f.jpg"} -{"rects": [{"solidity": 0.9911021972558735, "top": 600, "right": 3070, "bottom": 1990, "left": 890}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719790f.jpg"} -{"rects": [{"solidity": 0.9911110714858865, "top": 470, "right": 2735, "bottom": 3610, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714166f.jpg"} -{"rects": [{"solidity": 0.991112258409001, "top": 560, "right": 4875, "bottom": 3770, "left": 870}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731381f.jpg"} -{"rects": [{"solidity": 0.991112940351519, "top": 720, "right": 2820, "bottom": 2200, "left": 1695}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509025.jpg"} -{"rects": [{"solidity": 0.9911167304851405, "top": 750, "right": 2140, "bottom": 3150, "left": 520}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721439f.jpg"} -{"rects": [{"solidity": 0.9911177457611922, "top": 1145, "right": 3320, "bottom": 4995, "left": 515}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718938f.jpg"} -{"rects": [{"solidity": 0.9911184621414757, "top": 890, "right": 1920, "bottom": 2940, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702754f.jpg"} -{"rects": [{"solidity": 0.9911199846922333, "top": 370, "right": 3240, "bottom": 2265, "left": 565}, {"solidity": 0.9909116570858736, "top": 2490, "right": 3215, "bottom": 4315, "left": 590}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702091f.jpg"} -{"rects": [{"solidity": 0.9911251939309474, "top": 425, "right": 3170, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700163f.jpg"} -{"rects": [{"solidity": 0.9911259429184864, "top": 480, "right": 2800, "bottom": 3655, "left": 305}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508641.jpg"} -{"rects": [{"solidity": 0.9911271969315628, "top": 740, "right": 4970, "bottom": 3555, "left": 1135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700910f.jpg"} -{"rects": [{"solidity": 0.9911391838587383, "top": 1105, "right": 3825, "bottom": 3535, "left": 2195}, {"solidity": 0.9951841497115338, "top": 1105, "right": 5740, "bottom": 3530, "left": 4125}, {"solidity": 0.9975952533847059, "top": 1125, "right": 1955, "bottom": 3515, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734303f.jpg"} -{"rects": [{"solidity": 0.9911416225493342, "top": 860, "right": 1985, "bottom": 3245, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729858f.jpg"} -{"rects": [{"solidity": 0.9911441119408789, "top": 490, "right": 4960, "bottom": 3555, "left": 1200}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730103f.jpg"} -{"rects": [{"solidity": 0.9911470058827543, "top": 750, "right": 1760, "bottom": 2745, "left": 545}, {"solidity": 0.9934899698884601, "top": 755, "right": 3330, "bottom": 2750, "left": 2135}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709579f.jpg"} -{"rects": [{"solidity": 0.9911508669272644, "top": 495, "right": 1770, "bottom": 1395, "left": 590}], "shape": {"h": 2555, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/727117f.jpg"} -{"rects": [{"solidity": 0.9911556650168782, "top": 1045, "right": 3225, "bottom": 2115, "left": 1655}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517143.jpg"} -{"rects": [{"solidity": 0.9911592737789342, "top": 1145, "right": 3465, "bottom": 4975, "left": 430}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708779f.jpg"} -{"rects": [{"solidity": 0.991161432479518, "top": 2375, "right": 2580, "bottom": 4100, "left": 500}, {"solidity": 0.9808778594120814, "top": 490, "right": 4905, "bottom": 2175, "left": 2885}, {"solidity": 0.9378653479825287, "top": 455, "right": 2585, "bottom": 2120, "left": 520}], "shape": {"h": 4355, "w": 5240}, "file": "/usr/local/google/home/danvk/milstein/1596971.jpg"} -{"rects": [{"solidity": 0.9911688768923835, "top": 1210, "right": 3090, "bottom": 2690, "left": 445}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706900f.jpg"} -{"rects": [{"solidity": 0.9911691513438464, "top": 4060, "right": 3160, "bottom": 5675, "left": 770}, {"solidity": 0.9944411362570318, "top": 475, "right": 3185, "bottom": 2070, "left": 800}, {"solidity": 0.9909347719601962, "top": 2270, "right": 3175, "bottom": 3890, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707940f.jpg"} -{"rects": [{"solidity": 0.9911705838140038, "top": 435, "right": 2985, "bottom": 1990, "left": 1045}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700438f.jpg"} -{"rects": [{"solidity": 0.991173595537922, "top": 1275, "right": 3195, "bottom": 2735, "left": 1395}, {"solidity": 0.957246833272005, "top": 3610, "right": 4010, "bottom": 5125, "left": 2535}, {"solidity": 0.9691574579434458, "top": 3585, "right": 2040, "bottom": 5145, "left": 635}], "shape": {"h": 5990, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465700.jpg"} -{"rects": [{"solidity": 0.9911751769930338, "top": 415, "right": 3315, "bottom": 2375, "left": 545}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706017f.jpg"} -{"rects": [{"solidity": 0.9911765136969235, "top": 440, "right": 3020, "bottom": 1965, "left": 725}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733291f.jpg"} -{"rects": [{"solidity": 0.9911859574168566, "top": 575, "right": 4890, "bottom": 3570, "left": 1100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709816f.jpg"} -{"rects": [{"solidity": 0.9911881520593786, "top": 560, "right": 2685, "bottom": 1850, "left": 970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707277f.jpg"} -{"rects": [{"solidity": 0.991191313954224, "top": 395, "right": 3610, "bottom": 2615, "left": 1260}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507580.jpg"} -{"rects": [{"solidity": 0.99119378173159, "top": 570, "right": 2150, "bottom": 1800, "left": 535}, {"solidity": 0.9854038672961263, "top": 2075, "right": 2170, "bottom": 3300, "left": 545}, {"solidity": 0.9924530564122377, "top": 2020, "right": 3995, "bottom": 3230, "left": 2415}, {"solidity": 0.9915466939742585, "top": 530, "right": 3965, "bottom": 1755, "left": 2385}, {"solidity": 0.9893153775164918, "top": 515, "right": 5745, "bottom": 1690, "left": 4150}, {"solidity": 0.9802595144793937, "top": 2025, "right": 5740, "bottom": 3180, "left": 4175}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732771f.jpg"} -{"rects": [{"solidity": 0.9911956178840804, "top": 1925, "right": 2455, "bottom": 3220, "left": 735}, {"solidity": 0.9918455726527228, "top": 1890, "right": 4410, "bottom": 3175, "left": 2690}, {"solidity": 0.990776914092392, "top": 1015, "right": 5830, "bottom": 2740, "left": 4535}, {"solidity": 0.990968545624416, "top": 385, "right": 4350, "bottom": 1675, "left": 2635}, {"solidity": 0.9934830716687867, "top": 365, "right": 2430, "bottom": 1645, "left": 725}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730837f.jpg"} -{"rects": [{"solidity": 0.9911973313469573, "top": 785, "right": 2050, "bottom": 3200, "left": 425}, {"solidity": 0.9909995416884717, "top": 790, "right": 3860, "bottom": 3205, "left": 2245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720042f.jpg"} -{"rects": [{"solidity": 0.9911976407890033, "top": 2450, "right": 2480, "bottom": 3950, "left": 385}, {"solidity": 0.9957503053422343, "top": 715, "right": 2510, "bottom": 2160, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716134f.jpg"} -{"rects": [{"solidity": 0.9911986568832396, "top": 520, "right": 3030, "bottom": 1980, "left": 1160}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728234f.jpg"} -{"rects": [{"solidity": 0.991199186102481, "top": 280, "right": 5125, "bottom": 3720, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722440f.jpg"} -{"rects": [{"solidity": 0.9912083722980338, "top": 920, "right": 2230, "bottom": 3275, "left": 420}, {"solidity": 0.9908710740861767, "top": 1155, "right": 4005, "bottom": 3120, "left": 2450}, {"solidity": 0.9944603718137638, "top": 1170, "right": 5770, "bottom": 3110, "left": 4225}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712033f.jpg"} -{"rects": [{"solidity": 0.9912091386860757, "top": 330, "right": 4970, "bottom": 3670, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714711f.jpg"} -{"rects": [{"solidity": 0.9912095605110475, "top": 625, "right": 3125, "bottom": 2220, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710132f.jpg"} -{"rects": [{"solidity": 0.9912097222589955, "top": 510, "right": 3305, "bottom": 2440, "left": 560}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714139f.jpg"} -{"rects": [{"solidity": 0.9912103444326058, "top": 1135, "right": 3400, "bottom": 4895, "left": 270}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723257f.jpg"} -{"rects": [{"solidity": 0.9912108445206131, "top": 2065, "right": 2675, "bottom": 3320, "left": 970}, {"solidity": 0.9848960127649544, "top": 610, "right": 2660, "bottom": 1865, "left": 970}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702793f.jpg"} -{"rects": [{"solidity": 0.9912115825852754, "top": 265, "right": 3250, "bottom": 1890, "left": 815}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/710610f.jpg"} -{"rects": [{"solidity": 0.9912131830742871, "top": 870, "right": 4675, "bottom": 2805, "left": 1460}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708422f.jpg"} -{"rects": [{"solidity": 0.9912146150200354, "top": 520, "right": 2890, "bottom": 2065, "left": 990}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720262f.jpg"} -{"rects": [{"solidity": 0.9912158403174911, "top": 545, "right": 4960, "bottom": 3505, "left": 1185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709934f.jpg"} -{"rects": [{"solidity": 0.9912216107903453, "top": 370, "right": 4980, "bottom": 3435, "left": 1145}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727871f.jpg"} -{"rects": [{"solidity": 0.9912289897613307, "top": 455, "right": 2880, "bottom": 1765, "left": 1205}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716875f.jpg"} -{"rects": [{"solidity": 0.9912329225605816, "top": 2280, "right": 2790, "bottom": 3690, "left": 850}, {"solidity": 0.9967231303742777, "top": 635, "right": 2780, "bottom": 2025, "left": 850}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704726f.jpg"} -{"rects": [{"solidity": 0.9912329953504416, "top": 275, "right": 5050, "bottom": 3680, "left": 970}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724100f.jpg"} -{"rects": [{"solidity": 0.9912354577147557, "top": 485, "right": 2920, "bottom": 1895, "left": 1065}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706795f.jpg"} -{"rects": [{"solidity": 0.9912458813087407, "top": 495, "right": 2180, "bottom": 2590, "left": 675}, {"solidity": 0.9972782842173129, "top": 490, "right": 3915, "bottom": 2570, "left": 2430}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716225f.jpg"} -{"rects": [{"solidity": 0.9912474498843297, "top": 405, "right": 3050, "bottom": 2010, "left": 635}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700763f.jpg"} -{"rects": [{"solidity": 0.9912500558032156, "top": 1220, "right": 3400, "bottom": 5110, "left": 340}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710108f.jpg"} -{"rects": [{"solidity": 0.9912503916497207, "top": 590, "right": 4940, "bottom": 3375, "left": 1255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712948f.jpg"} -{"rects": [{"solidity": 0.9912512838699101, "top": 865, "right": 2150, "bottom": 3275, "left": 565}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708493f.jpg"} -{"rects": [{"solidity": 0.9912523714396995, "top": 365, "right": 3040, "bottom": 3620, "left": 535}], "shape": {"h": 6140, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/714535f.jpg"} -{"rects": [{"solidity": 0.9912539807079891, "top": 490, "right": 4950, "bottom": 1805, "left": 3280}, {"solidity": 0.9914098839799683, "top": 490, "right": 2865, "bottom": 1775, "left": 1205}, {"solidity": 0.9938230455443364, "top": 2105, "right": 2845, "bottom": 3385, "left": 1215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732787f.jpg"} -{"rects": [{"solidity": 0.9912600942126514, "top": 500, "right": 2995, "bottom": 2055, "left": 1035}, {"solidity": 0.9933719966859983, "top": 2210, "right": 3020, "bottom": 3730, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706115f.jpg"} -{"rects": [{"solidity": 0.9912619619853092, "top": 780, "right": 2005, "bottom": 3165, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719945f.jpg"} -{"rects": [{"solidity": 0.9912625623542454, "top": 880, "right": 1795, "bottom": 2935, "left": 600}, {"solidity": 0.9940389796104181, "top": 885, "right": 3235, "bottom": 2905, "left": 2065}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713230f.jpg"} -{"rects": [{"solidity": 0.991263906123626, "top": 295, "right": 5095, "bottom": 3670, "left": 1090}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721609f.jpg"} -{"rects": [{"solidity": 0.9912659060571287, "top": 510, "right": 4955, "bottom": 3580, "left": 1110}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723741f.jpg"} -{"rects": [{"solidity": 0.9912678630682752, "top": 510, "right": 5055, "bottom": 3510, "left": 1235}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730941f.jpg"} -{"rects": [{"solidity": 0.9912687315723883, "top": 925, "right": 2765, "bottom": 2505, "left": 1690}], "shape": {"h": 3015, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/1509641.jpg"} -{"rects": [{"solidity": 0.9912721816574684, "top": 710, "right": 2355, "bottom": 3460, "left": 500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717017f.jpg"} -{"rects": [{"solidity": 0.9912770172783066, "top": 725, "right": 3270, "bottom": 2690, "left": 520}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727492f.jpg"} -{"rects": [{"solidity": 0.9912784025705761, "top": 1445, "right": 3190, "bottom": 2350, "left": 2020}, {"solidity": 0.9967772767375748, "top": 1475, "right": 1845, "bottom": 2375, "left": 695}, {"solidity": 0.9903686278373751, "top": 440, "right": 1825, "bottom": 1345, "left": 675}, {"solidity": 0.9915203882052933, "top": 435, "right": 3180, "bottom": 1335, "left": 2035}], "shape": {"h": 2535, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727188f.jpg"} -{"rects": [{"solidity": 0.9912788930734425, "top": 490, "right": 3330, "bottom": 2400, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721989f.jpg"} -{"rects": [{"solidity": 0.9912856882837372, "top": 795, "right": 3985, "bottom": 3240, "left": 2315}, {"solidity": 0.9914037890597207, "top": 780, "right": 2075, "bottom": 3215, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720053f.jpg"} -{"rects": [{"solidity": 0.991286293065325, "top": 485, "right": 2565, "bottom": 3545, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715481f.jpg"} -{"rects": [{"solidity": 0.991288978049588, "top": 2235, "right": 2725, "bottom": 3650, "left": 885}, {"solidity": 0.9969964351131507, "top": 780, "right": 2715, "bottom": 2195, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725045f.jpg"} -{"rects": [{"solidity": 0.9912893157741349, "top": 655, "right": 2130, "bottom": 3435, "left": 305}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711433f.jpg"} -{"rects": [{"solidity": 0.9912918475105742, "top": 420, "right": 2960, "bottom": 2065, "left": 1015}, {"solidity": 0.9923206411270175, "top": 4160, "right": 2895, "bottom": 5605, "left": 1080}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720474f.jpg"} -{"rects": [{"solidity": 0.9912918851254513, "top": 690, "right": 3575, "bottom": 2760, "left": 885}], "shape": {"h": 6010, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/464821.jpg"} -{"rects": [{"solidity": 0.9912936584376743, "top": 365, "right": 1920, "bottom": 1245, "left": 775}, {"solidity": 0.9942259296636476, "top": 2655, "right": 1945, "bottom": 3530, "left": 805}], "shape": {"h": 3960, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727216f.jpg"} -{"rects": [{"solidity": 0.9913060359301544, "top": 540, "right": 3560, "bottom": 2335, "left": 870}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711423f.jpg"} -{"rects": [{"solidity": 0.9913082458768134, "top": 615, "right": 5605, "bottom": 4110, "left": 1230}], "shape": {"h": 4420, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/708313f.jpg"} -{"rects": [{"solidity": 0.9913106691103236, "top": 430, "right": 5040, "bottom": 3430, "left": 1190}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727874f.jpg"} -{"rects": [{"solidity": 0.9913122606039658, "top": 130, "right": 2930, "bottom": 3340, "left": 130}], "shape": {"h": 3795, "w": 3060}, "file": "/usr/local/google/home/danvk/milstein/1558546.jpg"} -{"rects": [{"solidity": 0.9913130415665898, "top": 260, "right": 5080, "bottom": 3695, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704716f.jpg"} -{"rects": [{"solidity": 0.9913158145870024, "top": 2130, "right": 5225, "bottom": 3645, "left": 3290}, {"solidity": 0.9870931148846996, "top": 440, "right": 5230, "bottom": 1945, "left": 3285}, {"solidity": 0.9885801860974275, "top": 460, "right": 2885, "bottom": 1955, "left": 950}, {"solidity": 0.9885334466697921, "top": 2145, "right": 2905, "bottom": 3650, "left": 975}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704499f.jpg"} -{"rects": [{"solidity": 0.9913169184417236, "top": 305, "right": 5375, "bottom": 3615, "left": 1305}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731273f.jpg"} -{"rects": [{"solidity": 0.9913179733419414, "top": 895, "right": 2040, "bottom": 3285, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729604f.jpg"} -{"rects": [{"solidity": 0.9913195552548604, "top": 450, "right": 2945, "bottom": 1995, "left": 1015}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/701174f.jpg"} -{"rects": [{"solidity": 0.9913323390871639, "top": 760, "right": 3290, "bottom": 2660, "left": 590}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714055f.jpg"} -{"rects": [{"solidity": 0.991336734660569, "top": 425, "right": 3175, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701231f.jpg"} -{"rects": [{"solidity": 0.9913372956909361, "top": 480, "right": 3995, "bottom": 2665, "left": 1265}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508493.jpg"} -{"rects": [{"solidity": 0.9913411025365213, "top": 665, "right": 3605, "bottom": 4775, "left": 130}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704082f.jpg"} -{"rects": [{"solidity": 0.9913422580993021, "top": 570, "right": 4990, "bottom": 3555, "left": 1120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715724f.jpg"} -{"rects": [{"solidity": 0.9913436038625828, "top": 750, "right": 2900, "bottom": 2245, "left": 795}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509381.jpg"} -{"rects": [{"solidity": 0.991346013845319, "top": 695, "right": 4010, "bottom": 3300, "left": 2180}, {"solidity": 0.9977976464400763, "top": 765, "right": 2020, "bottom": 3155, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719290f.jpg"} -{"rects": [{"solidity": 0.9913463724760253, "top": 745, "right": 2570, "bottom": 2190, "left": 585}, {"solidity": 0.9918226283833931, "top": 2610, "right": 2580, "bottom": 4045, "left": 595}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516971.jpg"} -{"rects": [{"solidity": 0.9913493281333329, "top": 955, "right": 1995, "bottom": 3360, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718425f.jpg"} -{"rects": [{"solidity": 0.9913494509121785, "top": 545, "right": 4995, "bottom": 3585, "left": 1160}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733528f.jpg"} -{"rects": [{"solidity": 0.9913586441433908, "top": 760, "right": 2010, "bottom": 3170, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722512f.jpg"} -{"rects": [{"solidity": 0.9913639702718012, "top": 490, "right": 5065, "bottom": 3650, "left": 1075}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706790f.jpg"} -{"rects": [{"solidity": 0.9913711319648802, "top": 570, "right": 2250, "bottom": 1795, "left": 495}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704983f.jpg"} -{"rects": [{"solidity": 0.9913739037723819, "top": 920, "right": 2845, "bottom": 2930, "left": 430}, {"solidity": 0.986894006534478, "top": 940, "right": 5685, "bottom": 2925, "left": 3265}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721635f.jpg"} -{"rects": [{"solidity": 0.9913742277184064, "top": 2130, "right": 2860, "bottom": 3510, "left": 1015}, {"solidity": 0.9896264735122852, "top": 540, "right": 2790, "bottom": 1830, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704781f.jpg"} -{"rects": [{"solidity": 0.9913797504357529, "top": 745, "right": 3480, "bottom": 2285, "left": 1230}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508635.jpg"} -{"rects": [{"solidity": 0.991385324021454, "top": 1000, "right": 3330, "bottom": 5090, "left": 610}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713879f.jpg"} -{"rects": [{"solidity": 0.9913872977209555, "top": 420, "right": 2645, "bottom": 1715, "left": 955}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723117f.jpg"} -{"rects": [{"solidity": 0.9913877952755905, "top": 735, "right": 2355, "bottom": 3335, "left": 545}, {"solidity": 0.9968260840498786, "top": 860, "right": 4185, "bottom": 3295, "left": 2555}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710018f.jpg"} -{"rects": [{"solidity": 0.991389069800987, "top": 2050, "right": 2920, "bottom": 3540, "left": 955}, {"solidity": 0.9698497895843154, "top": 315, "right": 2940, "bottom": 1815, "left": 960}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719395f.jpg"} -{"rects": [{"solidity": 0.9913898305084746, "top": 565, "right": 2705, "bottom": 1840, "left": 940}, {"solidity": 0.9918286421564133, "top": 2175, "right": 2695, "bottom": 3465, "left": 980}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732779f.jpg"} -{"rects": [{"solidity": 0.9913955643976217, "top": 2160, "right": 2880, "bottom": 3660, "left": 995}, {"solidity": 0.995762011460476, "top": 420, "right": 2880, "bottom": 1905, "left": 1030}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730118f.jpg"} -{"rects": [{"solidity": 0.9913990244157782, "top": 865, "right": 2315, "bottom": 3285, "left": 695}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709443f.jpg"} -{"rects": [{"solidity": 0.9914048039486841, "top": 2060, "right": 5115, "bottom": 3605, "left": 3175}, {"solidity": 0.9936734631331462, "top": 2035, "right": 2995, "bottom": 3480, "left": 980}, {"solidity": 0.9876784189337563, "top": 420, "right": 5095, "bottom": 1945, "left": 3185}, {"solidity": 0.9902345032953077, "top": 435, "right": 2990, "bottom": 1890, "left": 1000}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706112f.jpg"} -{"rects": [{"solidity": 0.9914053364866918, "top": 855, "right": 2165, "bottom": 3250, "left": 565}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722341f.jpg"} -{"rects": [{"solidity": 0.9914077702800825, "top": 770, "right": 5595, "bottom": 3490, "left": 3645}, {"solidity": 0.9860876878273979, "top": 975, "right": 3305, "bottom": 3005, "left": 1905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730667f.jpg"} -{"rects": [{"solidity": 0.9914085417391737, "top": 465, "right": 3135, "bottom": 2070, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700331f.jpg"} -{"rects": [{"solidity": 0.9914086640984531, "top": 465, "right": 3110, "bottom": 3935, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714399f.jpg"} -{"rects": [{"solidity": 0.9914125424657948, "top": 760, "right": 2590, "bottom": 3545, "left": 770}, {"solidity": 0.9950923014913341, "top": 945, "right": 4405, "bottom": 3370, "left": 2770}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705405f.jpg"} -{"rects": [{"solidity": 0.9914132572246823, "top": 1090, "right": 1860, "bottom": 2995, "left": 500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721166f.jpg"} -{"rects": [{"solidity": 0.9914144790407872, "top": 465, "right": 4910, "bottom": 3535, "left": 1060}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712851f.jpg"} -{"rects": [{"solidity": 0.99141455475601, "top": 310, "right": 5010, "bottom": 3685, "left": 980}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719390f.jpg"} -{"rects": [{"solidity": 0.9914250402415768, "top": 2070, "right": 3000, "bottom": 3560, "left": 1005}, {"solidity": 0.9913523745316409, "top": 3935, "right": 2995, "bottom": 5420, "left": 1025}, {"solidity": 0.9942091289945441, "top": 460, "right": 2830, "bottom": 1715, "left": 1165}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721723f.jpg"} -{"rects": [{"solidity": 0.9914284858910851, "top": 435, "right": 3320, "bottom": 2450, "left": 560}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731746f.jpg"} -{"rects": [{"solidity": 0.9914302784665413, "top": 1210, "right": 3945, "bottom": 5775, "left": 320}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711411f.jpg"} -{"rects": [{"solidity": 0.9914407677899902, "top": 3140, "right": 3320, "bottom": 5075, "left": 585}, {"solidity": 0.9965727432598607, "top": 655, "right": 3275, "bottom": 2495, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715519f.jpg"} -{"rects": [{"solidity": 0.991444672374978, "top": 625, "right": 2620, "bottom": 3545, "left": 740}, {"solidity": 0.9952041140611909, "top": 2050, "right": 5035, "bottom": 3495, "left": 3205}, {"solidity": 0.9986785548327137, "top": 605, "right": 5015, "bottom": 2035, "left": 3195}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705847f.jpg"} -{"rects": [{"solidity": 0.9914456177017388, "top": 1455, "right": 3200, "bottom": 2370, "left": 2055}, {"solidity": 0.9955361039414456, "top": 430, "right": 1850, "bottom": 1325, "left": 715}, {"solidity": 0.9918752194192286, "top": 425, "right": 3205, "bottom": 1320, "left": 2065}, {"solidity": 0.997440481549602, "top": 1460, "right": 1845, "bottom": 2335, "left": 720}], "shape": {"h": 2535, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/727059f.jpg"} -{"rects": [{"solidity": 0.9914486168584411, "top": 620, "right": 2630, "bottom": 2100, "left": 820}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704251f.jpg"} -{"rects": [{"solidity": 0.9914521834526759, "top": 685, "right": 2825, "bottom": 3510, "left": 790}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717218f.jpg"} -{"rects": [{"solidity": 0.9914535185666061, "top": 810, "right": 3980, "bottom": 3235, "left": 2370}, {"solidity": 0.9633874893386866, "top": 1240, "right": 2070, "bottom": 3110, "left": 645}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721028f.jpg"} -{"rects": [{"solidity": 0.9914569197528524, "top": 2090, "right": 2685, "bottom": 3530, "left": 825}, {"solidity": 0.9978790687009773, "top": 605, "right": 2695, "bottom": 2035, "left": 850}, {"solidity": 0.9960316502445218, "top": 595, "right": 5220, "bottom": 2030, "left": 3395}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705257f.jpg"} -{"rects": [{"solidity": 0.9914582909477261, "top": 380, "right": 3195, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701529f.jpg"} -{"rects": [{"solidity": 0.9914648440015628, "top": 350, "right": 2785, "bottom": 1830, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715045f.jpg"} -{"rects": [{"solidity": 0.9914669209400981, "top": 880, "right": 3330, "bottom": 2140, "left": 1255}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508693.jpg"} -{"rects": [{"solidity": 0.9914679179602973, "top": 590, "right": 2840, "bottom": 1860, "left": 1115}, {"solidity": 0.9955162319586703, "top": 2165, "right": 5050, "bottom": 3420, "left": 3360}, {"solidity": 0.9902008466180312, "top": 2180, "right": 2835, "bottom": 3420, "left": 1125}, {"solidity": 0.9879288073254386, "top": 605, "right": 5035, "bottom": 1815, "left": 3370}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706754f.jpg"} -{"rects": [{"solidity": 0.9914744254646832, "top": 365, "right": 2955, "bottom": 1840, "left": 990}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733980f.jpg"} -{"rects": [{"solidity": 0.9914780336259291, "top": 1115, "right": 3455, "bottom": 4995, "left": 410}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724476f.jpg"} -{"rects": [{"solidity": 0.9914796949986602, "top": 1240, "right": 4860, "bottom": 2965, "left": 1240}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701163f.jpg"} -{"rects": [{"solidity": 0.9914801232474094, "top": 740, "right": 2395, "bottom": 2195, "left": 400}, {"solidity": 0.9934945602598616, "top": 2405, "right": 2360, "bottom": 3855, "left": 385}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508403.jpg"} -{"rects": [{"solidity": 0.9914810838241617, "top": 630, "right": 3600, "bottom": 2380, "left": 520}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508817.jpg"} -{"rects": [{"solidity": 0.9914861172882649, "top": 475, "right": 2970, "bottom": 2055, "left": 1050}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713664f.jpg"} -{"rects": [{"solidity": 0.9914898845551822, "top": 450, "right": 2605, "bottom": 1955, "left": 1030}, {"solidity": 0.9939840857360812, "top": 2230, "right": 2670, "bottom": 3320, "left": 785}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702068f.jpg"} -{"rects": [{"solidity": 0.9914905641688952, "top": 460, "right": 2095, "bottom": 3275, "left": 540}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509211.jpg"} -{"rects": [{"solidity": 0.9914968538359193, "top": 660, "right": 2740, "bottom": 2065, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725723f.jpg"} -{"rects": [{"solidity": 0.9914970633283282, "top": 565, "right": 3270, "bottom": 2450, "left": 600}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712038f.jpg"} -{"rects": [{"solidity": 0.9914975271372599, "top": 795, "right": 4335, "bottom": 1905, "left": 2915}, {"solidity": 0.9919955108844548, "top": 1695, "right": 2665, "bottom": 2785, "left": 1245}, {"solidity": 0.9777645508269206, "top": 305, "right": 2620, "bottom": 1405, "left": 1180}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516957.jpg"} -{"rects": [{"solidity": 0.9915016668710449, "top": 665, "right": 4120, "bottom": 3245, "left": 2395}, {"solidity": 0.9920120767737761, "top": 645, "right": 2175, "bottom": 3255, "left": 490}, {"solidity": 0.9383849838572748, "top": 2100, "right": 5735, "bottom": 3420, "left": 4170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722937f.jpg"} -{"rects": [{"solidity": 0.9915029420944058, "top": 435, "right": 5050, "bottom": 3640, "left": 895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709196f.jpg"} -{"rects": [{"solidity": 0.9915054477120702, "top": 490, "right": 3205, "bottom": 2280, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700681f.jpg"} -{"rects": [{"solidity": 0.9915080110254947, "top": 1195, "right": 3295, "bottom": 4640, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714601f.jpg"} -{"rects": [{"solidity": 0.9915190330529356, "top": 645, "right": 3315, "bottom": 2465, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714091f.jpg"} -{"rects": [{"solidity": 0.9915192633874486, "top": 740, "right": 4520, "bottom": 3235, "left": 1205}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701514f.jpg"} -{"rects": [{"solidity": 0.9915227031039948, "top": 450, "right": 2915, "bottom": 1845, "left": 1065}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726064f.jpg"} -{"rects": [{"solidity": 0.9915227524805094, "top": 1160, "right": 3530, "bottom": 4950, "left": 430}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/716720f.jpg"} -{"rects": [{"solidity": 0.991523139509859, "top": 905, "right": 3120, "bottom": 3755, "left": 1010}], "shape": {"h": 4430, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708808f.jpg"} -{"rects": [{"solidity": 0.9915305467824713, "top": 535, "right": 1965, "bottom": 2125, "left": 670}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729105f.jpg"} -{"rects": [{"solidity": 0.9915341882032473, "top": 1155, "right": 3445, "bottom": 3170, "left": 1230}], "shape": {"h": 6005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465514.jpg"} -{"rects": [{"solidity": 0.9915349106884017, "top": 1185, "right": 3430, "bottom": 4840, "left": 340}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723885f.jpg"} -{"rects": [{"solidity": 0.9915400809716599, "top": 440, "right": 3180, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702010f.jpg"} -{"rects": [{"solidity": 0.991540738083494, "top": 585, "right": 2740, "bottom": 3640, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725674f.jpg"} -{"rects": [{"solidity": 0.9915485152172909, "top": 1620, "right": 3905, "bottom": 2785, "left": 2465}, {"solidity": 0.9892586096809912, "top": 1645, "right": 2245, "bottom": 2760, "left": 835}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516959.jpg"} -{"rects": [{"solidity": 0.9915496039161706, "top": 2075, "right": 2940, "bottom": 3500, "left": 980}, {"solidity": 0.9901575919496411, "top": 470, "right": 2755, "bottom": 1725, "left": 1135}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730588f.jpg"} -{"rects": [{"solidity": 0.9915499994460006, "top": 525, "right": 5020, "bottom": 3690, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717749f.jpg"} -{"rects": [{"solidity": 0.991552436003303, "top": 580, "right": 2100, "bottom": 1975, "left": 980}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704709f.jpg"} -{"rects": [{"solidity": 0.9915530663625512, "top": 590, "right": 2940, "bottom": 2060, "left": 1105}, {"solidity": 0.995280270940095, "top": 2455, "right": 2925, "bottom": 3855, "left": 1100}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725659f.jpg"} -{"rects": [{"solidity": 0.9915596411464729, "top": 495, "right": 5080, "bottom": 3515, "left": 1275}], "shape": {"h": 3920, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700190f.jpg"} -{"rects": [{"solidity": 0.9915664403171098, "top": 620, "right": 3105, "bottom": 2225, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710101f.jpg"} -{"rects": [{"solidity": 0.9915670617749976, "top": 375, "right": 5100, "bottom": 3635, "left": 1060}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709717f.jpg"} -{"rects": [{"solidity": 0.9915676415043017, "top": 360, "right": 2200, "bottom": 1460, "left": 725}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716312f.jpg"} -{"rects": [{"solidity": 0.9915685034900074, "top": 2155, "right": 3135, "bottom": 3815, "left": 710}, {"solidity": 0.9935672820459182, "top": 415, "right": 3150, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731551f.jpg"} -{"rects": [{"solidity": 0.991569115935477, "top": 705, "right": 2690, "bottom": 2150, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725508f.jpg"} -{"rects": [{"solidity": 0.9915692355895567, "top": 280, "right": 4950, "bottom": 3665, "left": 930}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720396f.jpg"} -{"rects": [{"solidity": 0.9915708424201153, "top": 445, "right": 5000, "bottom": 3495, "left": 1175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727872f.jpg"} -{"rects": [{"solidity": 0.9915716375307099, "top": 820, "right": 3300, "bottom": 2795, "left": 555}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718520f.jpg"} -{"rects": [{"solidity": 0.9915744683103157, "top": 680, "right": 3290, "bottom": 2530, "left": 680}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714097f.jpg"} -{"rects": [{"solidity": 0.9915761683817808, "top": 310, "right": 5625, "bottom": 4165, "left": 1045}], "shape": {"h": 4405, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711252f.jpg"} -{"rects": [{"solidity": 0.9915787693948419, "top": 375, "right": 3090, "bottom": 2005, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700730f.jpg"} -{"rects": [{"solidity": 0.9915801536354896, "top": 560, "right": 2805, "bottom": 3005, "left": 1160}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707777f.jpg"} -{"rects": [{"solidity": 0.9915834705754403, "top": 430, "right": 2870, "bottom": 1975, "left": 1035}, {"solidity": 0.9302980540617335, "top": 4070, "right": 2930, "bottom": 5630, "left": 990}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731467f.jpg"} -{"rects": [{"solidity": 0.9915872353844746, "top": 450, "right": 3085, "bottom": 2025, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729582f.jpg"} -{"rects": [{"solidity": 0.9915875080256161, "top": 515, "right": 3185, "bottom": 2120, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730484f.jpg"} -{"rects": [{"solidity": 0.9915884156022577, "top": 415, "right": 3065, "bottom": 2030, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710130f.jpg"} -{"rects": [{"solidity": 0.9915901714932318, "top": 500, "right": 5020, "bottom": 3440, "left": 1040}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732907f.jpg"} -{"rects": [{"solidity": 0.9915934072937868, "top": 985, "right": 4745, "bottom": 3135, "left": 1980}], "shape": {"h": 4430, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/701709f.jpg"} -{"rects": [{"solidity": 0.9915948530279778, "top": 545, "right": 2555, "bottom": 1845, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707053f.jpg"} -{"rects": [{"solidity": 0.9915948664433893, "top": 1245, "right": 3475, "bottom": 4890, "left": 305}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732347f.jpg"} -{"rects": [{"solidity": 0.9915950252789214, "top": 1045, "right": 3415, "bottom": 4965, "left": 400}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732589f.jpg"} -{"rects": [{"solidity": 0.9915975387691466, "top": 345, "right": 1920, "bottom": 1275, "left": 750}, {"solidity": 0.9923773805464907, "top": 1555, "right": 1940, "bottom": 2450, "left": 770}, {"solidity": 0.9936154824550465, "top": 2690, "right": 1935, "bottom": 3590, "left": 795}], "shape": {"h": 3935, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727070f.jpg"} -{"rects": [{"solidity": 0.9915980464535181, "top": 410, "right": 3265, "bottom": 3795, "left": 625}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714869f.jpg"} -{"rects": [{"solidity": 0.9915995808867771, "top": 920, "right": 2405, "bottom": 3610, "left": 595}], "shape": {"h": 4400, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711614f.jpg"} -{"rects": [{"solidity": 0.9916014937850408, "top": 420, "right": 3260, "bottom": 2035, "left": 840}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/700948f.jpg"} -{"rects": [{"solidity": 0.9916105726353487, "top": 600, "right": 5570, "bottom": 3975, "left": 1255}], "shape": {"h": 4430, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708397f.jpg"} -{"rects": [{"solidity": 0.9916130918830495, "top": 430, "right": 2890, "bottom": 1985, "left": 955}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700091f.jpg"} -{"rects": [{"solidity": 0.9916198777318439, "top": 1105, "right": 3470, "bottom": 5125, "left": 230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724557f.jpg"} -{"rects": [{"solidity": 0.9916213965167883, "top": 1445, "right": 1900, "bottom": 2340, "left": 745}], "shape": {"h": 3930, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727168f.jpg"} -{"rects": [{"solidity": 0.9916341876744743, "top": 415, "right": 5015, "bottom": 3590, "left": 1420}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708923f.jpg"} -{"rects": [{"solidity": 0.9916361422454663, "top": 610, "right": 5325, "bottom": 1990, "left": 3490}, {"solidity": 0.9948746202720394, "top": 615, "right": 2605, "bottom": 2050, "left": 845}, {"solidity": 0.994292489388239, "top": 2120, "right": 2595, "bottom": 3540, "left": 845}, {"solidity": 0.9955739044331297, "top": 2130, "right": 5235, "bottom": 3530, "left": 3565}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704213f.jpg"} -{"rects": [{"solidity": 0.9916368652514779, "top": 270, "right": 2865, "bottom": 1815, "left": 950}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723403f.jpg"} -{"rects": [{"solidity": 0.9916398881835045, "top": 275, "right": 2960, "bottom": 1745, "left": 965}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724570f.jpg"} -{"rects": [{"solidity": 0.9916414564475888, "top": 475, "right": 2510, "bottom": 1925, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700768f.jpg"} -{"rects": [{"solidity": 0.9916502481774015, "top": 1130, "right": 3355, "bottom": 4820, "left": 440}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721361f.jpg"} -{"rects": [{"solidity": 0.9916579173217199, "top": 615, "right": 4850, "bottom": 3635, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709829f.jpg"} -{"rects": [{"solidity": 0.9916630799583029, "top": 1930, "right": 3290, "bottom": 3810, "left": 575}, {"solidity": 0.9940304197003774, "top": 595, "right": 2780, "bottom": 1630, "left": 1170}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724576f.jpg"} -{"rects": [{"solidity": 0.991666693314488, "top": 1115, "right": 3440, "bottom": 4970, "left": 375}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700138f.jpg"} -{"rects": [{"solidity": 0.9916688663977983, "top": 615, "right": 4985, "bottom": 3600, "left": 1185}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712659f.jpg"} -{"rects": [{"solidity": 0.991672759265914, "top": 705, "right": 2795, "bottom": 1940, "left": 1145}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732788f.jpg"} -{"rects": [{"solidity": 0.991678243072714, "top": 575, "right": 3115, "bottom": 2310, "left": 370}, {"solidity": 0.9957343692722244, "top": 2295, "right": 5485, "bottom": 3740, "left": 3650}, {"solidity": 0.9963981899582113, "top": 665, "right": 5495, "bottom": 2090, "left": 3650}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727031f.jpg"} -{"rects": [{"solidity": 0.9916805183430727, "top": 315, "right": 5055, "bottom": 3695, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712776f.jpg"} -{"rects": [{"solidity": 0.9916806906318021, "top": 730, "right": 4870, "bottom": 3375, "left": 1480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722769f.jpg"} -{"rects": [{"solidity": 0.9916821387409622, "top": 1190, "right": 3585, "bottom": 5295, "left": 265}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721000f.jpg"} -{"rects": [{"solidity": 0.991684350487247, "top": 690, "right": 3340, "bottom": 2610, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717965f.jpg"} -{"rects": [{"solidity": 0.9916863530272565, "top": 1430, "right": 3160, "bottom": 4825, "left": 495}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731187f.jpg"} -{"rects": [{"solidity": 0.9916896232966487, "top": 390, "right": 3295, "bottom": 2460, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717132f.jpg"} -{"rects": [{"solidity": 0.9916943607448716, "top": 4215, "right": 2990, "bottom": 5595, "left": 1195}, {"solidity": 0.9927009585865547, "top": 2390, "right": 3000, "bottom": 3755, "left": 1205}, {"solidity": 0.9951994304231516, "top": 545, "right": 2965, "bottom": 1900, "left": 1185}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731335f.jpg"} -{"rects": [{"solidity": 0.991694693581107, "top": 290, "right": 5060, "bottom": 3680, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721552f.jpg"} -{"rects": [{"solidity": 0.991703965561479, "top": 480, "right": 2130, "bottom": 2570, "left": 645}, {"solidity": 0.9949810203213456, "top": 485, "right": 3875, "bottom": 2570, "left": 2395}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716212f.jpg"} -{"rects": [{"solidity": 0.9917085265640734, "top": 540, "right": 4005, "bottom": 2685, "left": 980}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508763.jpg"} -{"rects": [{"solidity": 0.9917104763363944, "top": 660, "right": 5765, "bottom": 3105, "left": 4135}, {"solidity": 0.9972660947388443, "top": 670, "right": 3880, "bottom": 3075, "left": 2255}, {"solidity": 0.9973198053468268, "top": 670, "right": 1980, "bottom": 3075, "left": 360}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700239f.jpg"} -{"rects": [{"solidity": 0.9917123179536453, "top": 295, "right": 4045, "bottom": 2740, "left": 965}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715989f.jpg"} -{"rects": [{"solidity": 0.9917140541502211, "top": 705, "right": 2020, "bottom": 3100, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711711f.jpg"} -{"rects": [{"solidity": 0.991714510042968, "top": 2300, "right": 3240, "bottom": 3900, "left": 850}, {"solidity": 0.9963215475944277, "top": 455, "right": 3215, "bottom": 2030, "left": 845}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723619f.jpg"} -{"rects": [{"solidity": 0.9917173394547689, "top": 445, "right": 2935, "bottom": 3875, "left": 1125}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714329f.jpg"} -{"rects": [{"solidity": 0.9917181029767951, "top": 630, "right": 4945, "bottom": 3515, "left": 1155}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728281f.jpg"} -{"rects": [{"solidity": 0.9917190269051072, "top": 590, "right": 2820, "bottom": 2030, "left": 915}, {"solidity": 0.9825329937485529, "top": 2165, "right": 5210, "bottom": 3605, "left": 3280}, {"solidity": 0.9308822498890472, "top": 2080, "right": 2835, "bottom": 3520, "left": 905}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708672f.jpg"} -{"rects": [{"solidity": 0.9917230678552267, "top": 665, "right": 5035, "bottom": 3325, "left": 1240}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725420f.jpg"} -{"rects": [{"solidity": 0.9917237180942811, "top": 615, "right": 2845, "bottom": 3465, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703816f.jpg"} -{"rects": [{"solidity": 0.9917256253653424, "top": 540, "right": 1620, "bottom": 1425, "left": 175}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715801f.jpg"} -{"rects": [{"solidity": 0.9917281614085045, "top": 535, "right": 2505, "bottom": 2350, "left": 505}, {"solidity": 0.9306935489881862, "top": 2770, "right": 2170, "bottom": 5640, "left": 925}], "shape": {"h": 6050, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465708.jpg"} -{"rects": [{"solidity": 0.9917288573360531, "top": 1125, "right": 3330, "bottom": 4990, "left": 445}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723940f.jpg"} -{"rects": [{"solidity": 0.9917309212330424, "top": 1040, "right": 2605, "bottom": 3855, "left": 375}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507553.jpg"} -{"rects": [{"solidity": 0.9917313874093714, "top": 595, "right": 2700, "bottom": 1890, "left": 625}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722976f.jpg"} -{"rects": [{"solidity": 0.9917386073123027, "top": 440, "right": 5085, "bottom": 3640, "left": 1030}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718640f.jpg"} -{"rects": [{"solidity": 0.9917389289733236, "top": 970, "right": 1940, "bottom": 2935, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722014f.jpg"} -{"rects": [{"solidity": 0.9917395164081191, "top": 600, "right": 2720, "bottom": 2010, "left": 900}, {"solidity": 0.9958645378981154, "top": 615, "right": 5150, "bottom": 1970, "left": 3335}, {"solidity": 0.9921717771149619, "top": 2040, "right": 2735, "bottom": 3415, "left": 925}], "shape": {"h": 3860, "w": 6040}, "file": "/usr/local/google/home/danvk/milstein/728121f.jpg"} -{"rects": [{"solidity": 0.9917455622530835, "top": 975, "right": 2025, "bottom": 3175, "left": 635}, {"solidity": 0.9892011803361028, "top": 955, "right": 5515, "bottom": 3140, "left": 4115}, {"solidity": 0.9936631077655734, "top": 935, "right": 3770, "bottom": 3115, "left": 2405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724031f.jpg"} -{"rects": [{"solidity": 0.991748913407756, "top": 330, "right": 3585, "bottom": 2165, "left": 885}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/701645f.jpg"} -{"rects": [{"solidity": 0.9917506716374158, "top": 2345, "right": 3070, "bottom": 3910, "left": 700}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/729071f.jpg"} -{"rects": [{"solidity": 0.9917513948127443, "top": 635, "right": 4940, "bottom": 3535, "left": 1025}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705993f.jpg"} -{"rects": [{"solidity": 0.991751892407681, "top": 515, "right": 5075, "bottom": 3540, "left": 1250}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718661f.jpg"} -{"rects": [{"solidity": 0.9917584886163247, "top": 580, "right": 2875, "bottom": 2455, "left": 360}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/717314f.jpg"} -{"rects": [{"solidity": 0.9917598514252031, "top": 890, "right": 4605, "bottom": 3055, "left": 1320}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716787f.jpg"} -{"rects": [{"solidity": 0.9917602628868507, "top": 410, "right": 3160, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701407f.jpg"} -{"rects": [{"solidity": 0.991760650645307, "top": 800, "right": 3195, "bottom": 2720, "left": 475}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714347f.jpg"} -{"rects": [{"solidity": 0.9917607455991337, "top": 1110, "right": 3480, "bottom": 4945, "left": 385}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709774f.jpg"} -{"rects": [{"solidity": 0.9917611289963766, "top": 740, "right": 2640, "bottom": 3505, "left": 855}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712804f.jpg"} -{"rects": [{"solidity": 0.9917615559216102, "top": 615, "right": 5000, "bottom": 3520, "left": 1060}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705952f.jpg"} -{"rects": [{"solidity": 0.9917634376990543, "top": 595, "right": 2680, "bottom": 2030, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704803f.jpg"} -{"rects": [{"solidity": 0.991764178252538, "top": 2080, "right": 5110, "bottom": 3065, "left": 4150}, {"solidity": 0.9924168637818283, "top": 2045, "right": 2875, "bottom": 3015, "left": 1920}, {"solidity": 0.9916444319618031, "top": 880, "right": 2880, "bottom": 1850, "left": 1930}, {"solidity": 0.9921501706484641, "top": 920, "right": 5095, "bottom": 1890, "left": 4150}, {"solidity": 0.9932316642905488, "top": 2020, "right": 1775, "bottom": 2985, "left": 860}, {"solidity": 0.9899951125549837, "top": 885, "right": 3990, "bottom": 1850, "left": 3055}, {"solidity": 0.9941422839234982, "top": 2100, "right": 3970, "bottom": 3055, "left": 3060}, {"solidity": 0.991042210191371, "top": 860, "right": 1800, "bottom": 1835, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732957f.jpg"} -{"rects": [{"solidity": 0.9917647309173707, "top": 980, "right": 3985, "bottom": 3105, "left": 2300}, {"solidity": 0.9932836033165986, "top": 985, "right": 2060, "bottom": 3105, "left": 390}, {"solidity": 0.9886363121479999, "top": 1100, "right": 5725, "bottom": 2955, "left": 4225}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723876f.jpg"} -{"rects": [{"solidity": 0.99176496544364, "top": 895, "right": 3255, "bottom": 2165, "left": 1280}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507927.jpg"} -{"rects": [{"solidity": 0.9917661849884885, "top": 2260, "right": 3100, "bottom": 3900, "left": 635}, {"solidity": 0.9991342752158616, "top": 420, "right": 3090, "bottom": 2030, "left": 690}, {"solidity": 0.9954791339655195, "top": 4110, "right": 3090, "bottom": 5755, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712287f.jpg"} -{"rects": [{"solidity": 0.9917686438466874, "top": 775, "right": 2070, "bottom": 3205, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731589f.jpg"} -{"rects": [{"solidity": 0.9917756648042636, "top": 345, "right": 2875, "bottom": 1765, "left": 925}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717721f.jpg"} -{"rects": [{"solidity": 0.9917803352202074, "top": 365, "right": 3370, "bottom": 2300, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717706f.jpg"} -{"rects": [{"solidity": 0.9917813029996745, "top": 480, "right": 2990, "bottom": 2025, "left": 1070}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721600f.jpg"} -{"rects": [{"solidity": 0.9917909834693897, "top": 915, "right": 3565, "bottom": 2710, "left": 1230}], "shape": {"h": 6035, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/464730.jpg"} -{"rects": [{"solidity": 0.9917924201348064, "top": 410, "right": 3235, "bottom": 2030, "left": 820}, {"solidity": 0.9934285074205268, "top": 4115, "right": 3240, "bottom": 5725, "left": 820}, {"solidity": 0.9937191256076278, "top": 2270, "right": 3230, "bottom": 3870, "left": 830}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/701072f.jpg"} -{"rects": [{"solidity": 0.9917940995211226, "top": 625, "right": 2890, "bottom": 3480, "left": 1035}, {"solidity": 0.9956620453118207, "top": 615, "right": 5260, "bottom": 2040, "left": 3425}, {"solidity": 0.9983869170739741, "top": 2055, "right": 5270, "bottom": 3475, "left": 3440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705207f.jpg"} -{"rects": [{"solidity": 0.9917945991042819, "top": 285, "right": 2865, "bottom": 1790, "left": 1030}, {"solidity": 0.9902479914251949, "top": 3840, "right": 2880, "bottom": 5340, "left": 1035}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717379f.jpg"} -{"rects": [{"solidity": 0.9918010642455001, "top": 740, "right": 3195, "bottom": 2675, "left": 470}, {"solidity": 0.9962769827795295, "top": 3335, "right": 3215, "bottom": 5265, "left": 495}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723942f.jpg"} -{"rects": [{"solidity": 0.9918017048852615, "top": 285, "right": 5115, "bottom": 3690, "left": 1065}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704714f.jpg"} -{"rects": [{"solidity": 0.99180828246164, "top": 1430, "right": 2025, "bottom": 2445, "left": 505}, {"solidity": 0.9927796929908765, "top": 240, "right": 2025, "bottom": 1245, "left": 510}, {"solidity": 0.9933870161980001, "top": 2660, "right": 2010, "bottom": 3655, "left": 500}], "shape": {"h": 3970, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/730140f.jpg"} -{"rects": [{"solidity": 0.9918082947926771, "top": 295, "right": 5035, "bottom": 3670, "left": 1025}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721884f.jpg"} -{"rects": [{"solidity": 0.9918099451827512, "top": 775, "right": 2525, "bottom": 2265, "left": 445}, {"solidity": 0.9933271336041636, "top": 2530, "right": 2515, "bottom": 4015, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716265f.jpg"} -{"rects": [{"solidity": 0.9918117736834264, "top": 620, "right": 4985, "bottom": 3675, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704795f.jpg"} -{"rects": [{"solidity": 0.9918124569421399, "top": 910, "right": 2585, "bottom": 3745, "left": 285}], "shape": {"h": 4580, "w": 2955}, "file": "/usr/local/google/home/danvk/milstein/723014f.jpg"} -{"rects": [{"solidity": 0.9918135886354847, "top": 700, "right": 3585, "bottom": 2730, "left": 660}], "shape": {"h": 6845, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711314f.jpg"} -{"rects": [{"solidity": 0.9918186534700882, "top": 315, "right": 2055, "bottom": 1355, "left": 510}, {"solidity": 0.9956538822378497, "top": 1545, "right": 2030, "bottom": 2580, "left": 500}], "shape": {"h": 3940, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727175f.jpg"} -{"rects": [{"solidity": 0.9918259911798759, "top": 555, "right": 4960, "bottom": 3660, "left": 1165}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700305f.jpg"} -{"rects": [{"solidity": 0.9918301679864335, "top": 720, "right": 3330, "bottom": 2655, "left": 630}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/713420f.jpg"} -{"rects": [{"solidity": 0.9918302055147784, "top": 610, "right": 5020, "bottom": 3505, "left": 1095}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705992f.jpg"} -{"rects": [{"solidity": 0.9918338355711189, "top": 1290, "right": 3470, "bottom": 5185, "left": 415}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/723441f.jpg"} -{"rects": [{"solidity": 0.9918343783258853, "top": 750, "right": 4800, "bottom": 3365, "left": 1370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701908f.jpg"} -{"rects": [{"solidity": 0.9918379392668681, "top": 375, "right": 3010, "bottom": 1835, "left": 1020}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701540f.jpg"} -{"rects": [{"solidity": 0.9918388819314802, "top": 2360, "right": 5070, "bottom": 3715, "left": 1050}, {"solidity": 0.9701496473070077, "top": 485, "right": 6010, "bottom": 3850, "left": 5080}, {"solidity": 0.9660438987541096, "top": 615, "right": 5030, "bottom": 1925, "left": 3165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727372f.jpg"} -{"rects": [{"solidity": 0.9918433583157176, "top": 3220, "right": 3355, "bottom": 5150, "left": 605}, {"solidity": 0.9953568461044017, "top": 710, "right": 3335, "bottom": 2550, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717740f.jpg"} -{"rects": [{"solidity": 0.9918497086270834, "top": 440, "right": 2380, "bottom": 1650, "left": 570}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715880f.jpg"} -{"rects": [{"solidity": 0.9918505663563237, "top": 2175, "right": 5605, "bottom": 3545, "left": 4025}, {"solidity": 0.9876047455104849, "top": 515, "right": 2095, "bottom": 1860, "left": 500}, {"solidity": 0.9888819803126097, "top": 2265, "right": 2095, "bottom": 3555, "left": 500}, {"solidity": 0.9910570344135978, "top": 1210, "right": 3665, "bottom": 2845, "left": 2435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732763f.jpg"} -{"rects": [{"solidity": 0.9918523162934081, "top": 455, "right": 3170, "bottom": 2075, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700973f.jpg"} -{"rects": [{"solidity": 0.9918552399293853, "top": 550, "right": 3010, "bottom": 2005, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702659f.jpg"} -{"rects": [{"solidity": 0.9918566819365168, "top": 650, "right": 3300, "bottom": 2455, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712061f.jpg"} -{"rects": [{"solidity": 0.9918567476685054, "top": 345, "right": 3180, "bottom": 1950, "left": 795}, {"solidity": 0.9957220824100719, "top": 2185, "right": 3165, "bottom": 3780, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724389f.jpg"} -{"rects": [{"solidity": 0.9918597515981451, "top": 670, "right": 2460, "bottom": 2215, "left": 350}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508405.jpg"} -{"rects": [{"solidity": 0.991860902255639, "top": 385, "right": 3335, "bottom": 2835, "left": 570}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721756f.jpg"} -{"rects": [{"solidity": 0.991862304098377, "top": 540, "right": 2960, "bottom": 3735, "left": 560}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/714439f.jpg"} -{"rects": [{"solidity": 0.9918627834032908, "top": 425, "right": 5650, "bottom": 3895, "left": 1305}], "shape": {"h": 4425, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/702213f.jpg"} -{"rects": [{"solidity": 0.9918636791640932, "top": 1050, "right": 2790, "bottom": 5080, "left": 1210}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716979f.jpg"} -{"rects": [{"solidity": 0.9918662493499868, "top": 455, "right": 3185, "bottom": 2060, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701232f.jpg"} -{"rects": [{"solidity": 0.9918664030969443, "top": 435, "right": 2900, "bottom": 1830, "left": 1110}, {"solidity": 0.9943086449720339, "top": 2225, "right": 2905, "bottom": 3620, "left": 1105}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728099f.jpg"} -{"rects": [{"solidity": 0.9918681490601268, "top": 425, "right": 3125, "bottom": 1995, "left": 735}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/728842f.jpg"} -{"rects": [{"solidity": 0.9918698547739049, "top": 530, "right": 2810, "bottom": 2645, "left": 1295}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508105.jpg"} -{"rects": [{"solidity": 0.9918717032839117, "top": 1390, "right": 2625, "bottom": 3950, "left": 400}], "shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508223.jpg"} -{"rects": [{"solidity": 0.991875970041318, "top": 370, "right": 2920, "bottom": 1910, "left": 985}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701679f.jpg"} -{"rects": [{"solidity": 0.9918795094784779, "top": 280, "right": 5060, "bottom": 3705, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733959f.jpg"} -{"rects": [{"solidity": 0.9918834040734414, "top": 565, "right": 4770, "bottom": 3225, "left": 1415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731920f.jpg"} -{"rects": [{"solidity": 0.9918834863081241, "top": 620, "right": 3165, "bottom": 2220, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710110f.jpg"} -{"rects": [{"solidity": 0.9918857782532233, "top": 430, "right": 3115, "bottom": 2190, "left": 940}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700336f.jpg"} -{"rects": [{"solidity": 0.9918867594883806, "top": 520, "right": 4910, "bottom": 3410, "left": 1040}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732905f.jpg"} -{"rects": [{"solidity": 0.9918883904400959, "top": 2300, "right": 3195, "bottom": 3935, "left": 765}, {"solidity": 0.9923252079132449, "top": 440, "right": 3220, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701060f.jpg"} -{"rects": [{"solidity": 0.9918936831068115, "top": 4525, "right": 2820, "bottom": 5940, "left": 1005}, {"solidity": 0.9942002732226765, "top": 3060, "right": 2820, "bottom": 4460, "left": 1015}, {"solidity": 0.9939798961670164, "top": 1585, "right": 2835, "bottom": 2995, "left": 1045}, {"solidity": 0.9950819672131147, "top": 140, "right": 2810, "bottom": 1520, "left": 1030}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726189f.jpg"} -{"rects": [{"solidity": 0.9918979704883242, "top": 425, "right": 3295, "bottom": 2005, "left": 895}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725886f.jpg"} -{"rects": [{"solidity": 0.9918987798222361, "top": 670, "right": 2755, "bottom": 3530, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726394f.jpg"} -{"rects": [{"solidity": 0.9918994453717644, "top": 4095, "right": 3150, "bottom": 5435, "left": 1185}, {"solidity": 0.9923425277892136, "top": 560, "right": 3155, "bottom": 1895, "left": 1205}, {"solidity": 0.9564578191757557, "top": 2300, "right": 3150, "bottom": 3615, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733700f.jpg"} -{"rects": [{"solidity": 0.9919026970794662, "top": 675, "right": 4930, "bottom": 3585, "left": 1210}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701203f.jpg"} -{"rects": [{"solidity": 0.9919030169168215, "top": 665, "right": 2730, "bottom": 2070, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726740f.jpg"} -{"rects": [{"solidity": 0.9919057772362676, "top": 620, "right": 2505, "bottom": 2120, "left": 415}, {"solidity": 0.9942453677250837, "top": 2475, "right": 2515, "bottom": 3960, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716117f.jpg"} -{"rects": [{"solidity": 0.9919082613970006, "top": 2195, "right": 2830, "bottom": 3745, "left": 975}, {"solidity": 0.9922665421087884, "top": 4080, "right": 2825, "bottom": 5620, "left": 965}, {"solidity": 0.9940717337959984, "top": 350, "right": 2835, "bottom": 1895, "left": 975}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731420f.jpg"} -{"rects": [{"solidity": 0.9919089302923225, "top": 435, "right": 3225, "bottom": 2340, "left": 555}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717557f.jpg"} -{"rects": [{"solidity": 0.9919102605284958, "top": 440, "right": 3020, "bottom": 1955, "left": 1035}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722839f.jpg"} -{"rects": [{"solidity": 0.9919103829809142, "top": 610, "right": 4800, "bottom": 3625, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713620f.jpg"} -{"rects": [{"solidity": 0.991911798524281, "top": 435, "right": 3160, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701671f.jpg"} -{"rects": [{"solidity": 0.9919128730192202, "top": 485, "right": 3080, "bottom": 2080, "left": 1040}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702676f.jpg"} -{"rects": [{"solidity": 0.9919251119251119, "top": 600, "right": 3655, "bottom": 2130, "left": 2615}, {"solidity": 0.9944912644783573, "top": 615, "right": 2490, "bottom": 2100, "left": 1470}, {"solidity": 0.9934480726780234, "top": 620, "right": 1320, "bottom": 2085, "left": 325}], "shape": {"h": 2560, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718586f.jpg"} -{"rects": [{"solidity": 0.9919256741738769, "top": 510, "right": 2140, "bottom": 2605, "left": 640}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508099.jpg"} -{"rects": [{"solidity": 0.9919286279161724, "top": 800, "right": 2665, "bottom": 2225, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727556f.jpg"} -{"rects": [{"solidity": 0.9919358405883573, "top": 1135, "right": 3490, "bottom": 5115, "left": 270}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732366f.jpg"} -{"rects": [{"solidity": 0.9919364697483142, "top": 715, "right": 2615, "bottom": 2155, "left": 800}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726460f.jpg"} -{"rects": [{"solidity": 0.9919385911799881, "top": 930, "right": 5855, "bottom": 3000, "left": 4625}, {"solidity": 0.9960117484937184, "top": 915, "right": 4430, "bottom": 3010, "left": 3230}, {"solidity": 0.9920874307908437, "top": 940, "right": 3045, "bottom": 2955, "left": 1830}, {"solidity": 0.9966174499477578, "top": 945, "right": 1610, "bottom": 2955, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713340f.jpg"} -{"rects": [{"solidity": 0.9919393344850637, "top": 555, "right": 2690, "bottom": 1990, "left": 650}, {"solidity": 0.9916590813611539, "top": 575, "right": 5100, "bottom": 2010, "left": 3080}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700677f.jpg"} -{"rects": [{"solidity": 0.9919393442755957, "top": 950, "right": 1925, "bottom": 3115, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712993f.jpg"} -{"rects": [{"solidity": 0.9919437064555691, "top": 965, "right": 3525, "bottom": 5025, "left": 310}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722276f.jpg"} -{"rects": [{"solidity": 0.9919466933542044, "top": 670, "right": 2860, "bottom": 2180, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732073f.jpg"} -{"rects": [{"solidity": 0.9919504810845289, "top": 2235, "right": 3180, "bottom": 3680, "left": 1230}, {"solidity": 0.9972842816006355, "top": 515, "right": 3180, "bottom": 1920, "left": 1370}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727971f.jpg"} -{"rects": [{"solidity": 0.9919540836986567, "top": 2850, "right": 2365, "bottom": 4285, "left": 345}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507957.jpg"} -{"rects": [{"solidity": 0.9919559757719013, "top": 1135, "right": 1885, "bottom": 2735, "left": 795}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731208f.jpg"} -{"rects": [{"solidity": 0.9919573495243033, "top": 295, "right": 5120, "bottom": 3695, "left": 1115}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732013f.jpg"} -{"rects": [{"solidity": 0.9919583814181825, "top": 1055, "right": 1855, "bottom": 2065, "left": 475}, {"solidity": 0.9924943592577243, "top": 1080, "right": 3815, "bottom": 2080, "left": 2440}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509449.jpg"} -{"rects": [{"solidity": 0.9919610731163054, "top": 500, "right": 3135, "bottom": 3915, "left": 610}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713896f.jpg"} -{"rects": [{"solidity": 0.9919621363580725, "top": 370, "right": 3300, "bottom": 2220, "left": 585}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700334f.jpg"} -{"rects": [{"solidity": 0.9919627974136558, "top": 210, "right": 2790, "bottom": 2860, "left": 525}], "shape": {"h": 3030, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/718289f.jpg"} -{"rects": [{"solidity": 0.991973047232762, "top": 815, "right": 1990, "bottom": 3215, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724806f.jpg"} -{"rects": [{"solidity": 0.9919819552833482, "top": 530, "right": 3170, "bottom": 2140, "left": 795}, {"solidity": 0.9970100020574902, "top": 2355, "right": 3165, "bottom": 3950, "left": 780}, {"solidity": 0.9949021897035509, "top": 4140, "right": 3165, "bottom": 5745, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716559f.jpg"} -{"rects": [{"solidity": 0.9919865146360742, "top": 430, "right": 3050, "bottom": 1740, "left": 835}, {"solidity": 0.9871213831083826, "top": 2040, "right": 2890, "bottom": 3480, "left": 945}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734604f.jpg"} -{"rects": [{"solidity": 0.9919898487809357, "top": 745, "right": 2070, "bottom": 3125, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721425f.jpg"} -{"rects": [{"solidity": 0.9919903063997363, "top": 4075, "right": 2825, "bottom": 5575, "left": 905}, {"solidity": 0.992910882221227, "top": 2280, "right": 2860, "bottom": 3780, "left": 935}, {"solidity": 0.9890531855856501, "top": 460, "right": 2875, "bottom": 1980, "left": 980}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721793f.jpg"} -{"rects": [{"solidity": 0.991997240656538, "top": 410, "right": 3170, "bottom": 2000, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722711f.jpg"} -{"rects": [{"solidity": 0.9919973937988097, "top": 925, "right": 2520, "bottom": 3025, "left": 515}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715392f.jpg"} -{"rects": [{"solidity": 0.9919985301099816, "top": 3035, "right": 3445, "bottom": 5490, "left": 275}, {"solidity": 0.9970620463693273, "top": 645, "right": 3310, "bottom": 2695, "left": 480}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716822f.jpg"} -{"rects": [{"solidity": 0.991999159729104, "top": 2045, "right": 2930, "bottom": 3465, "left": 970}, {"solidity": 0.9942519043202068, "top": 2065, "right": 5165, "bottom": 3455, "left": 3215}, {"solidity": 0.9922491069623239, "top": 495, "right": 5135, "bottom": 1875, "left": 3220}, {"solidity": 0.9871665853460193, "top": 485, "right": 2845, "bottom": 1840, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732796f.jpg"} -{"rects": [{"solidity": 0.991999174757648, "top": 730, "right": 2275, "bottom": 3410, "left": 390}, {"solidity": 0.9961948420394621, "top": 755, "right": 5730, "bottom": 3190, "left": 4105}, {"solidity": 0.9968379116734029, "top": 740, "right": 3995, "bottom": 3165, "left": 2370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700116f.jpg"} -{"rects": [{"solidity": 0.9920001984105113, "top": 405, "right": 2620, "bottom": 3530, "left": 1125}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714433f.jpg"} -{"rects": [{"solidity": 0.9920037807524347, "top": 130, "right": 5160, "bottom": 3525, "left": 1040}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725770f.jpg"} -{"rects": [{"solidity": 0.9920041717364854, "top": 445, "right": 2930, "bottom": 1950, "left": 1040}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700561f.jpg"} -{"rects": [{"solidity": 0.9920044744735532, "top": 775, "right": 3195, "bottom": 2745, "left": 435}, {"solidity": 0.9791087687973082, "top": 3400, "right": 3190, "bottom": 5340, "left": 430}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705688f.jpg"} -{"rects": [{"solidity": 0.9920069031291158, "top": 405, "right": 3160, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728590f.jpg"} -{"rects": [{"solidity": 0.9920076539555175, "top": 130, "right": 3270, "bottom": 2225, "left": 785}], "shape": {"h": 2555, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727186f.jpg"} -{"rects": [{"solidity": 0.9920107333743289, "top": 1535, "right": 2805, "bottom": 4685, "left": 1150}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721058f.jpg"} -{"rects": [{"solidity": 0.99201563600026, "top": 475, "right": 5035, "bottom": 3485, "left": 1240}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710427f.jpg"} -{"rects": [{"solidity": 0.9920175142402514, "top": 595, "right": 4930, "bottom": 3575, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730867f.jpg"} -{"rects": [{"solidity": 0.9920199310406401, "top": 870, "right": 1955, "bottom": 2905, "left": 495}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707135f.jpg"} -{"rects": [{"solidity": 0.9920232592813478, "top": 765, "right": 2625, "bottom": 2190, "left": 825}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726143f.jpg"} -{"rects": [{"solidity": 0.9920250943697166, "top": 3545, "right": 3485, "bottom": 5305, "left": 1195}], "shape": {"h": 5995, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/464764.jpg"} -{"rects": [{"solidity": 0.9920270573613872, "top": 1115, "right": 3420, "bottom": 4155, "left": 365}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723303f.jpg"} -{"rects": [{"solidity": 0.9920274157462978, "top": 510, "right": 2980, "bottom": 2060, "left": 1130}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712164f.jpg"} -{"rects": [{"solidity": 0.9920290370792114, "top": 455, "right": 3325, "bottom": 2445, "left": 585}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727887f.jpg"} -{"rects": [{"solidity": 0.9920306557751224, "top": 2245, "right": 3280, "bottom": 3880, "left": 870}, {"solidity": 0.9951722262156859, "top": 4090, "right": 3275, "bottom": 5710, "left": 865}, {"solidity": 0.9968638895569147, "top": 390, "right": 3285, "bottom": 1995, "left": 870}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724997f.jpg"} -{"rects": [{"solidity": 0.9920328013055151, "top": 600, "right": 2785, "bottom": 3475, "left": 925}, {"solidity": 0.9963866217348112, "top": 2030, "right": 5275, "bottom": 3450, "left": 3445}, {"solidity": 0.9985290656625089, "top": 590, "right": 5250, "bottom": 2010, "left": 3440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702984f.jpg"} -{"rects": [{"solidity": 0.992032893964408, "top": 625, "right": 2700, "bottom": 3505, "left": 845}, {"solidity": 0.995108176333842, "top": 2040, "right": 5255, "bottom": 3490, "left": 3415}, {"solidity": 0.9964343834252265, "top": 580, "right": 5250, "bottom": 2010, "left": 3430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703314f.jpg"} -{"rects": [{"solidity": 0.9920330231999662, "top": 2255, "right": 3150, "bottom": 3870, "left": 745}, {"solidity": 0.997112375344791, "top": 445, "right": 3150, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700352f.jpg"} -{"rects": [{"solidity": 0.9920369071235766, "top": 970, "right": 1875, "bottom": 2890, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701235f.jpg"} -{"rects": [{"solidity": 0.9920388111154871, "top": 545, "right": 3305, "bottom": 2405, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721179f.jpg"} -{"rects": [{"solidity": 0.9920433248458685, "top": 495, "right": 3540, "bottom": 2325, "left": 835}], "shape": {"h": 6900, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711612f.jpg"} -{"rects": [{"solidity": 0.992045263335016, "top": 2105, "right": 4080, "bottom": 3645, "left": 2120}, {"solidity": 0.99378122834727, "top": 210, "right": 6010, "bottom": 1735, "left": 4060}, {"solidity": 0.9929433821423301, "top": 2150, "right": 2095, "bottom": 3650, "left": 130}, {"solidity": 0.9939937127951307, "top": 255, "right": 2080, "bottom": 1730, "left": 130}, {"solidity": 0.9942488289217114, "top": 290, "right": 4035, "bottom": 1745, "left": 2090}, {"solidity": 0.9940204671653435, "top": 2135, "right": 6010, "bottom": 3590, "left": 4110}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718102f.jpg"} -{"rects": [{"solidity": 0.9920454148993965, "top": 370, "right": 3350, "bottom": 2195, "left": 560}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719167f.jpg"} -{"rects": [{"solidity": 0.9920455013807031, "top": 930, "right": 3205, "bottom": 2335, "left": 1235}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507518.jpg"} -{"rects": [{"solidity": 0.9920477427831244, "top": 390, "right": 4960, "bottom": 3605, "left": 940}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733580f.jpg"} -{"rects": [{"solidity": 0.992050765801395, "top": 2070, "right": 5480, "bottom": 3740, "left": 3375}, {"solidity": 0.9975267687657802, "top": 355, "right": 5475, "bottom": 1970, "left": 3360}, {"solidity": 0.9933426081612796, "top": 2180, "right": 2825, "bottom": 3690, "left": 845}, {"solidity": 0.9828941904545029, "top": 460, "right": 2785, "bottom": 1945, "left": 830}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722789f.jpg"} -{"rects": [{"solidity": 0.9920513008070612, "top": 2410, "right": 2530, "bottom": 3900, "left": 440}, {"solidity": 0.9926784549186082, "top": 665, "right": 2545, "bottom": 2145, "left": 460}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716196f.jpg"} -{"rects": [{"solidity": 0.9920516708011479, "top": 305, "right": 3205, "bottom": 2105, "left": 575}, {"solidity": 0.9966334212445376, "top": 2160, "right": 3215, "bottom": 3905, "left": 580}, {"solidity": 0.9951306613903433, "top": 4090, "right": 2805, "bottom": 5520, "left": 960}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702775f.jpg"} -{"rects": [{"solidity": 0.9920521778705861, "top": 2360, "right": 3180, "bottom": 3950, "left": 795}, {"solidity": 0.9425155966287541, "top": 715, "right": 3155, "bottom": 2070, "left": 785}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/712789f.jpg"} -{"rects": [{"solidity": 0.9920535709265649, "top": 245, "right": 4955, "bottom": 3605, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730951f.jpg"} -{"rects": [{"solidity": 0.9920550870259636, "top": 485, "right": 3955, "bottom": 2645, "left": 1180}, {"solidity": 0.9766699610487762, "top": 130, "right": 930, "bottom": 2875, "left": 130}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508469.jpg"} -{"rects": [{"solidity": 0.9920568746477154, "top": 710, "right": 5115, "bottom": 3230, "left": 1220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718912f.jpg"} -{"rects": [{"solidity": 0.9920594221246455, "top": 450, "right": 5070, "bottom": 3265, "left": 1145}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732082f.jpg"} -{"rects": [{"solidity": 0.9920618717066246, "top": 2100, "right": 2715, "bottom": 3535, "left": 900}, {"solidity": 0.9949323582109955, "top": 665, "right": 2700, "bottom": 2085, "left": 880}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726727f.jpg"} -{"rects": [{"solidity": 0.9920639980956996, "top": 630, "right": 2455, "bottom": 2110, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707748f.jpg"} -{"rects": [{"solidity": 0.9920641847661889, "top": 445, "right": 3285, "bottom": 2020, "left": 900}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727672f.jpg"} -{"rects": [{"solidity": 0.9920652395679515, "top": 1055, "right": 3540, "bottom": 4960, "left": 350}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708412f.jpg"} -{"rects": [{"solidity": 0.992071583392921, "top": 820, "right": 4615, "bottom": 3440, "left": 1175}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733725f.jpg"} -{"rects": [{"solidity": 0.9920730799870437, "top": 960, "right": 1980, "bottom": 2890, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721589f.jpg"} -{"rects": [{"solidity": 0.9920746166411972, "top": 455, "right": 3865, "bottom": 2540, "left": 985}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509753.jpg"} -{"rects": [{"solidity": 0.9920768717256145, "top": 460, "right": 3165, "bottom": 3820, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713814f.jpg"} -{"rects": [{"solidity": 0.9920777000620269, "top": 940, "right": 3210, "bottom": 2995, "left": 1955}, {"solidity": 0.9882298673452319, "top": 970, "right": 1685, "bottom": 3005, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713051f.jpg"} -{"rects": [{"solidity": 0.9920833949795335, "top": 680, "right": 4930, "bottom": 3525, "left": 1260}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706116f.jpg"} -{"rects": [{"solidity": 0.9920836871280012, "top": 1325, "right": 3220, "bottom": 4755, "left": 505}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716988f.jpg"} -{"rects": [{"solidity": 0.9920839569396108, "top": 400, "right": 3170, "bottom": 1835, "left": 1175}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/702589f.jpg"} -{"rects": [{"solidity": 0.9920846071222011, "top": 285, "right": 2075, "bottom": 1300, "left": 550}], "shape": {"h": 3940, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727214f.jpg"} -{"rects": [{"solidity": 0.9920923154711551, "top": 680, "right": 3330, "bottom": 2590, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715093f.jpg"} -{"rects": [{"solidity": 0.9920938728592964, "top": 3095, "right": 3260, "bottom": 5185, "left": 400}, {"solidity": 0.994273234229075, "top": 595, "right": 3245, "bottom": 2640, "left": 400}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709549f.jpg"} -{"rects": [{"solidity": 0.9920943313465954, "top": 2160, "right": 2945, "bottom": 3385, "left": 925}, {"solidity": 0.994554652062125, "top": 690, "right": 2955, "bottom": 1875, "left": 910}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713197f.jpg"} -{"rects": [{"solidity": 0.9920945530046211, "top": 1045, "right": 2995, "bottom": 2480, "left": 1080}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730234f.jpg"} -{"rects": [{"solidity": 0.9920955216799631, "top": 820, "right": 4785, "bottom": 3285, "left": 1505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721365f.jpg"} -{"rects": [{"solidity": 0.992098563660936, "top": 795, "right": 2035, "bottom": 3260, "left": 385}, {"solidity": 0.9967631903161749, "top": 840, "right": 5740, "bottom": 3280, "left": 4095}, {"solidity": 0.9964030257645945, "top": 835, "right": 3890, "bottom": 3275, "left": 2250}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712673f.jpg"} -{"rects": [{"solidity": 0.9920991901536358, "top": 570, "right": 3250, "bottom": 2400, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710004f.jpg"} -{"rects": [{"solidity": 0.9920993295494644, "top": 650, "right": 1470, "bottom": 2435, "left": 285}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716446f.jpg"} -{"rects": [{"solidity": 0.9921011332214877, "top": 625, "right": 4960, "bottom": 3635, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708794f.jpg"} -{"rects": [{"solidity": 0.9921014458443275, "top": 515, "right": 2920, "bottom": 2030, "left": 970}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731423f.jpg"} -{"rects": [{"solidity": 0.992101930581759, "top": 620, "right": 2660, "bottom": 1990, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707006f.jpg"} -{"rects": [{"solidity": 0.9921031816701402, "top": 565, "right": 3205, "bottom": 3940, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713859f.jpg"} -{"rects": [{"solidity": 0.9921034498793113, "top": 405, "right": 3065, "bottom": 1775, "left": 885}, {"solidity": 0.9952406935855462, "top": 2825, "right": 3860, "bottom": 6010, "left": 2940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710098f.jpg"} -{"rects": [{"solidity": 0.9921047048483073, "top": 810, "right": 2500, "bottom": 2320, "left": 835}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508919.jpg"} -{"rects": [{"solidity": 0.9921084153416163, "top": 1420, "right": 3160, "bottom": 2355, "left": 1985}, {"solidity": 0.9918287571233457, "top": 390, "right": 3170, "bottom": 1320, "left": 2000}, {"solidity": 0.9969159789299681, "top": 395, "right": 1790, "bottom": 1290, "left": 645}, {"solidity": 0.9950328835682758, "top": 1430, "right": 1785, "bottom": 2315, "left": 645}], "shape": {"h": 2560, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727133f.jpg"} -{"rects": [{"solidity": 0.9921095587763898, "top": 525, "right": 3295, "bottom": 2435, "left": 605}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707892f.jpg"} -{"rects": [{"solidity": 0.9921109055383605, "top": 460, "right": 2850, "bottom": 1955, "left": 885}, {"solidity": 0.9860862905284656, "top": 2235, "right": 2845, "bottom": 3720, "left": 885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721722f.jpg"} -{"rects": [{"solidity": 0.9921117349542945, "top": 565, "right": 3135, "bottom": 2170, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721431f.jpg"} -{"rects": [{"solidity": 0.9921120394615326, "top": 490, "right": 2095, "bottom": 2775, "left": 560}, {"solidity": 0.9960574311779653, "top": 470, "right": 4065, "bottom": 2775, "left": 2560}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715869f.jpg"} -{"rects": [{"solidity": 0.9921141243346971, "top": 720, "right": 3305, "bottom": 2640, "left": 575}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715207f.jpg"} -{"rects": [{"solidity": 0.9921158002905638, "top": 625, "right": 1670, "bottom": 2425, "left": 475}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716321f.jpg"} -{"rects": [{"solidity": 0.9921172901825507, "top": 575, "right": 2745, "bottom": 3470, "left": 865}, {"solidity": 0.9958303975600105, "top": 545, "right": 5375, "bottom": 1990, "left": 3560}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704317f.jpg"} -{"rects": [{"solidity": 0.9921183774542635, "top": 585, "right": 4895, "bottom": 3580, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723382f.jpg"} -{"rects": [{"solidity": 0.9921184484602826, "top": 435, "right": 3165, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713845f.jpg"} -{"rects": [{"solidity": 0.9921223834851646, "top": 1215, "right": 3390, "bottom": 4965, "left": 500}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708590f.jpg"} -{"rects": [{"solidity": 0.9921231433243977, "top": 485, "right": 3265, "bottom": 2225, "left": 1115}], "shape": {"h": 6860, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711705f.jpg"} -{"rects": [{"solidity": 0.992123458886342, "top": 435, "right": 3370, "bottom": 2370, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707193f.jpg"} -{"rects": [{"solidity": 0.992124959852338, "top": 2440, "right": 2535, "bottom": 3940, "left": 435}, {"solidity": 0.9976572657470174, "top": 695, "right": 2540, "bottom": 2180, "left": 460}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716167f.jpg"} -{"rects": [{"solidity": 0.9921253156312345, "top": 660, "right": 5405, "bottom": 4050, "left": 1425}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/708321f.jpg"} -{"rects": [{"solidity": 0.9921264378001878, "top": 950, "right": 1885, "bottom": 2990, "left": 490}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700847f.jpg"} -{"rects": [{"solidity": 0.9921265718870107, "top": 300, "right": 3470, "bottom": 2890, "left": 250}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509937.jpg"} -{"rects": [{"solidity": 0.9921275570321476, "top": 265, "right": 5185, "bottom": 3685, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718913f.jpg"} -{"rects": [{"solidity": 0.9921302658506925, "top": 1995, "right": 3140, "bottom": 3415, "left": 1335}, {"solidity": 0.9940069660498035, "top": 560, "right": 3160, "bottom": 1700, "left": 1330}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728039f.jpg"} -{"rects": [{"solidity": 0.9921306197386408, "top": 585, "right": 4810, "bottom": 3615, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709868f.jpg"} -{"rects": [{"solidity": 0.9921308380503092, "top": 490, "right": 5025, "bottom": 3495, "left": 1230}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700184f.jpg"} -{"rects": [{"solidity": 0.9921315618816409, "top": 480, "right": 3160, "bottom": 2090, "left": 765}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/712785f.jpg"} -{"rects": [{"solidity": 0.9921372349570052, "top": 395, "right": 4965, "bottom": 3555, "left": 1090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731290f.jpg"} -{"rects": [{"solidity": 0.9921430452545001, "top": 305, "right": 5065, "bottom": 3610, "left": 1025}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718324f.jpg"} -{"rects": [{"solidity": 0.99214329021827, "top": 635, "right": 2005, "bottom": 2890, "left": 670}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704886f.jpg"} -{"rects": [{"solidity": 0.9921444857655065, "top": 2040, "right": 2405, "bottom": 3305, "left": 675}, {"solidity": 0.9866292141532332, "top": 560, "right": 2365, "bottom": 1810, "left": 640}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702801f.jpg"} -{"rects": [{"solidity": 0.9921506180850289, "top": 570, "right": 4965, "bottom": 3595, "left": 1190}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709862f.jpg"} -{"rects": [{"solidity": 0.9921509882248505, "top": 440, "right": 3155, "bottom": 2065, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700485f.jpg"} -{"rects": [{"solidity": 0.9921532101246793, "top": 510, "right": 4990, "bottom": 3565, "left": 1130}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712846f.jpg"} -{"rects": [{"solidity": 0.9921537605952518, "top": 355, "right": 5080, "bottom": 3620, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706224f.jpg"} -{"rects": [{"solidity": 0.9921563636074363, "top": 900, "right": 2420, "bottom": 2420, "left": 330}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508053.jpg"} -{"rects": [{"solidity": 0.9921578767024424, "top": 1055, "right": 3215, "bottom": 4925, "left": 460}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712570f.jpg"} -{"rects": [{"solidity": 0.9921591202334399, "top": 2275, "right": 2905, "bottom": 3675, "left": 1090}, {"solidity": 0.9955374641941807, "top": 2275, "right": 5155, "bottom": 3680, "left": 3360}, {"solidity": 0.9963421638670281, "top": 670, "right": 2890, "bottom": 2080, "left": 1100}, {"solidity": 0.9939231780871616, "top": 645, "right": 5145, "bottom": 2045, "left": 3340}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725438f.jpg"} -{"rects": [{"solidity": 0.9921596188808834, "top": 415, "right": 2940, "bottom": 1970, "left": 1000}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721077f.jpg"} -{"rects": [{"solidity": 0.9921603834036418, "top": 455, "right": 3195, "bottom": 2055, "left": 790}, {"solidity": 0.9930711824331132, "top": 2240, "right": 3190, "bottom": 3815, "left": 800}, {"solidity": 0.961138125304567, "top": 4025, "right": 3185, "bottom": 5595, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708038f.jpg"} -{"rects": [{"solidity": 0.9921620157238847, "top": 1180, "right": 3110, "bottom": 4750, "left": 1165}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716835f.jpg"} -{"rects": [{"solidity": 0.9921645782231978, "top": 510, "right": 2885, "bottom": 2020, "left": 925}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715326f.jpg"} -{"rects": [{"solidity": 0.9921651107041454, "top": 485, "right": 5265, "bottom": 3500, "left": 1445}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733433f.jpg"} -{"rects": [{"solidity": 0.9921651159675196, "top": 965, "right": 1895, "bottom": 2950, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701337f.jpg"} -{"rects": [{"solidity": 0.9921716333709432, "top": 405, "right": 3165, "bottom": 1995, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720528f.jpg"} -{"rects": [{"solidity": 0.9921720736848744, "top": 590, "right": 2695, "bottom": 3440, "left": 850}, {"solidity": 0.9951389511142971, "top": 760, "right": 4400, "bottom": 3200, "left": 2760}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707103f.jpg"} -{"rects": [{"solidity": 0.9921727718476276, "top": 440, "right": 2940, "bottom": 1975, "left": 1005}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700165f.jpg"} -{"rects": [{"solidity": 0.9921727951062114, "top": 910, "right": 3455, "bottom": 2340, "left": 1335}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507683.jpg"} -{"rects": [{"solidity": 0.9921748235461686, "top": 615, "right": 5330, "bottom": 3525, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730936f.jpg"} -{"rects": [{"solidity": 0.9921758495218023, "top": 540, "right": 3120, "bottom": 2150, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710335f.jpg"} -{"rects": [{"solidity": 0.9921790113261998, "top": 485, "right": 5140, "bottom": 3535, "left": 1345}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727876f.jpg"} -{"rects": [{"solidity": 0.9921808392604791, "top": 515, "right": 2320, "bottom": 1775, "left": 605}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732777f.jpg"} -{"rects": [{"solidity": 0.9921811074441805, "top": 165, "right": 3240, "bottom": 5985, "left": 445}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703555f.jpg"} -{"rects": [{"solidity": 0.9921813684938422, "top": 870, "right": 1760, "bottom": 3125, "left": 435}, {"solidity": 0.9989872189889307, "top": 870, "right": 3220, "bottom": 2375, "left": 2045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733307f.jpg"} -{"rects": [{"solidity": 0.9921837523632157, "top": 815, "right": 2980, "bottom": 2330, "left": 875}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508125.jpg"} -{"rects": [{"solidity": 0.9921845707357216, "top": 940, "right": 4470, "bottom": 3045, "left": 3235}, {"solidity": 0.9944240330664323, "top": 925, "right": 1540, "bottom": 3020, "left": 330}, {"solidity": 0.9848646238450296, "top": 940, "right": 3020, "bottom": 3005, "left": 1770}, {"solidity": 0.9907092356451596, "top": 965, "right": 5855, "bottom": 3015, "left": 4670}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732842f.jpg"} -{"rects": [{"solidity": 0.9921859360194317, "top": 590, "right": 5005, "bottom": 3595, "left": 1235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709932f.jpg"} -{"rects": [{"solidity": 0.9921859786999266, "top": 600, "right": 2935, "bottom": 2015, "left": 1125}, {"solidity": 0.9930378569669185, "top": 2390, "right": 2950, "bottom": 3800, "left": 1160}, {"solidity": 0.9937018647913114, "top": 4150, "right": 2965, "bottom": 5560, "left": 1180}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728011f.jpg"} -{"rects": [{"solidity": 0.9921881847158732, "top": 640, "right": 4525, "bottom": 3435, "left": 2540}, {"solidity": 0.9860119882668027, "top": 675, "right": 2525, "bottom": 3405, "left": 685}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719961f.jpg"} -{"rects": [{"solidity": 0.9921882215312625, "top": 1165, "right": 3435, "bottom": 2820, "left": 1230}], "shape": {"h": 5985, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465554.jpg"} -{"rects": [{"solidity": 0.9921925124126199, "top": 555, "right": 4955, "bottom": 3500, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712884f.jpg"} -{"rects": [{"solidity": 0.9921931623542718, "top": 750, "right": 3890, "bottom": 3170, "left": 2255}, {"solidity": 0.9957321559970567, "top": 760, "right": 2015, "bottom": 3155, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723788f.jpg"} -{"rects": [{"solidity": 0.9921949875751089, "top": 315, "right": 2355, "bottom": 1530, "left": 540}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715926f.jpg"} -{"rects": [{"solidity": 0.992196481121297, "top": 350, "right": 3940, "bottom": 3155, "left": 130}], "shape": {"h": 6850, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/708384f.jpg"} -{"rects": [{"solidity": 0.9921967065511473, "top": 425, "right": 3115, "bottom": 1915, "left": 1140}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/701224f.jpg"} -{"rects": [{"solidity": 0.9921988518615564, "top": 375, "right": 2395, "bottom": 1565, "left": 610}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715889f.jpg"} -{"rects": [{"solidity": 0.9922057953112535, "top": 375, "right": 3230, "bottom": 2000, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704688f.jpg"} -{"rects": [{"solidity": 0.992207199158179, "top": 875, "right": 2070, "bottom": 3260, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729579f.jpg"} -{"rects": [{"solidity": 0.9922080806780744, "top": 535, "right": 5010, "bottom": 3665, "left": 1115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720960f.jpg"} -{"rects": [{"solidity": 0.9922086983487092, "top": 405, "right": 3175, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701046f.jpg"} -{"rects": [{"solidity": 0.9922088620907242, "top": 535, "right": 2935, "bottom": 2015, "left": 975}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715396f.jpg"} -{"rects": [{"solidity": 0.9922139138078709, "top": 1335, "right": 3160, "bottom": 4800, "left": 540}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714754f.jpg"} -{"rects": [{"solidity": 0.9922142297375648, "top": 1090, "right": 1575, "bottom": 2950, "left": 500}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711132f.jpg"} -{"rects": [{"solidity": 0.9922174012734359, "top": 4055, "right": 2910, "bottom": 5560, "left": 990}, {"solidity": 0.9816447048470393, "top": 445, "right": 2895, "bottom": 1935, "left": 1035}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731039f.jpg"} -{"rects": [{"solidity": 0.9922184453746102, "top": 600, "right": 3345, "bottom": 2460, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713815f.jpg"} -{"rects": [{"solidity": 0.9922189011202643, "top": 4095, "right": 3020, "bottom": 5520, "left": 1170}, {"solidity": 0.9977957420427764, "top": 580, "right": 3050, "bottom": 1990, "left": 1235}, {"solidity": 0.9948213438537791, "top": 2340, "right": 3050, "bottom": 3735, "left": 1230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725918f.jpg"} -{"rects": [{"solidity": 0.9922218680267771, "top": 780, "right": 2575, "bottom": 3605, "left": 745}, {"solidity": 0.9951229087395059, "top": 2185, "right": 5270, "bottom": 3600, "left": 3475}, {"solidity": 0.9978554301542023, "top": 805, "right": 5275, "bottom": 2165, "left": 3480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704218f.jpg"} -{"rects": [{"solidity": 0.9922232120215098, "top": 805, "right": 1985, "bottom": 3210, "left": 370}, {"solidity": 0.9960916292182604, "top": 830, "right": 3795, "bottom": 3240, "left": 2190}, {"solidity": 0.99539515886211, "top": 845, "right": 5635, "bottom": 3250, "left": 4025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722508f.jpg"} -{"rects": [{"solidity": 0.992224935538251, "top": 290, "right": 5055, "bottom": 3680, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721551f.jpg"} -{"rects": [{"solidity": 0.9922272787231236, "top": 695, "right": 2025, "bottom": 3095, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721399f.jpg"} -{"rects": [{"solidity": 0.9922285188624391, "top": 470, "right": 2880, "bottom": 2025, "left": 995}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720211f.jpg"} -{"rects": [{"solidity": 0.9922314606128076, "top": 810, "right": 2215, "bottom": 3145, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717741f.jpg"} -{"rects": [{"solidity": 0.9922323300003436, "top": 570, "right": 4930, "bottom": 3610, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708512f.jpg"} -{"rects": [{"solidity": 0.9922326567706755, "top": 350, "right": 1860, "bottom": 1250, "left": 695}], "shape": {"h": 3935, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727071f.jpg"} -{"rects": [{"solidity": 0.9922326818354511, "top": 800, "right": 3990, "bottom": 3225, "left": 2380}, {"solidity": 0.9955286297445929, "top": 805, "right": 2140, "bottom": 3205, "left": 555}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718508f.jpg"} -{"rects": [{"solidity": 0.9922355888160387, "top": 525, "right": 3020, "bottom": 2015, "left": 1105}, {"solidity": 0.9947594992935483, "top": 525, "right": 5240, "bottom": 1925, "left": 3320}, {"solidity": 0.992167460825451, "top": 2240, "right": 5245, "bottom": 3635, "left": 3295}, {"solidity": 0.9959689331490923, "top": 2255, "right": 3060, "bottom": 3635, "left": 1110}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731414f.jpg"} -{"rects": [{"solidity": 0.9922374231065496, "top": 3295, "right": 3255, "bottom": 5095, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715323f.jpg"} -{"rects": [{"solidity": 0.9922406079990127, "top": 530, "right": 5010, "bottom": 3660, "left": 1095}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717210f.jpg"} -{"rects": [{"solidity": 0.9922406826845377, "top": 455, "right": 2910, "bottom": 2015, "left": 985}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700634f.jpg"} -{"rects": [{"solidity": 0.9922429770557184, "top": 670, "right": 3320, "bottom": 2615, "left": 595}, {"solidity": 0.9936315223763924, "top": 3215, "right": 3315, "bottom": 5140, "left": 585}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707937f.jpg"} -{"rects": [{"solidity": 0.9922442521674276, "top": 465, "right": 2520, "bottom": 1900, "left": 475}, {"solidity": 0.9934883118005444, "top": 480, "right": 4145, "bottom": 2515, "left": 2710}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701244f.jpg"} -{"rects": [{"solidity": 0.992245204008679, "top": 425, "right": 3300, "bottom": 2310, "left": 610}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727888f.jpg"} -{"rects": [{"solidity": 0.9922467442936604, "top": 2180, "right": 2700, "bottom": 3615, "left": 835}, {"solidity": 0.9967950975558216, "top": 535, "right": 2610, "bottom": 1980, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725059f.jpg"} -{"rects": [{"solidity": 0.992249739236018, "top": 430, "right": 3210, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700946f.jpg"} -{"rects": [{"solidity": 0.9922555380209247, "top": 480, "right": 2995, "bottom": 2035, "left": 1035}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701558f.jpg"} -{"rects": [{"solidity": 0.992256771973268, "top": 620, "right": 2770, "bottom": 3470, "left": 930}, {"solidity": 0.9956302755215799, "top": 2035, "right": 5265, "bottom": 3460, "left": 3465}, {"solidity": 0.9966798339916996, "top": 615, "right": 5255, "bottom": 2020, "left": 3455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704622f.jpg"} -{"rects": [{"solidity": 0.9922575454856737, "top": 480, "right": 3185, "bottom": 2085, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720971f.jpg"} -{"rects": [{"solidity": 0.9922575481494725, "top": 265, "right": 5090, "bottom": 3640, "left": 1040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724016f.jpg"} -{"rects": [{"solidity": 0.9922634749399583, "top": 455, "right": 3190, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/700833f.jpg"} -{"rects": [{"solidity": 0.9922640302469018, "top": 725, "right": 2735, "bottom": 3620, "left": 875}, {"solidity": 0.9943150145128117, "top": 640, "right": 5305, "bottom": 2080, "left": 3460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706043f.jpg"} -{"rects": [{"solidity": 0.9922662437067208, "top": 500, "right": 4895, "bottom": 3615, "left": 1230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701410f.jpg"} -{"rects": [{"solidity": 0.9922690928799031, "top": 420, "right": 3190, "bottom": 2120, "left": 790}, {"solidity": 0.9956384965756792, "top": 2365, "right": 3195, "bottom": 3980, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734720f.jpg"} -{"rects": [{"solidity": 0.9922713415625021, "top": 400, "right": 3195, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723139f.jpg"} -{"rects": [{"solidity": 0.9922729172206816, "top": 380, "right": 3315, "bottom": 2255, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700534f.jpg"} -{"rects": [{"solidity": 0.9922762698199409, "top": 1140, "right": 3385, "bottom": 4985, "left": 345}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717281f.jpg"} -{"rects": [{"solidity": 0.9922819953674127, "top": 550, "right": 5340, "bottom": 3635, "left": 755}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700557f.jpg"} -{"rects": [{"solidity": 0.992282442980336, "top": 475, "right": 3160, "bottom": 2065, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726026f.jpg"} -{"rects": [{"solidity": 0.992284701960631, "top": 1040, "right": 4070, "bottom": 2730, "left": 1945}, {"solidity": 0.9937279638410321, "top": 845, "right": 1890, "bottom": 2950, "left": 215}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716633f.jpg"} -{"rects": [{"solidity": 0.992286808653927, "top": 1085, "right": 4065, "bottom": 2870, "left": 2045}, {"solidity": 0.9477624499856132, "top": 1010, "right": 1820, "bottom": 3005, "left": 520}, {"solidity": 0.946241042846787, "top": 3465, "right": 1915, "bottom": 5535, "left": 900}], "shape": {"h": 6025, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465683.jpg"} -{"rects": [{"solidity": 0.9922899071963007, "top": 130, "right": 2325, "bottom": 3690, "left": 130}], "shape": {"h": 3820, "w": 2455}, "file": "/usr/local/google/home/danvk/milstein/1558554.jpg"} -{"rects": [{"solidity": 0.9922904485203012, "top": 285, "right": 3065, "bottom": 2110, "left": 390}, {"solidity": 0.9968797686616361, "top": 4080, "right": 3030, "bottom": 5905, "left": 400}, {"solidity": 0.9774894244276396, "top": 2185, "right": 3025, "bottom": 4005, "left": 410}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702720f.jpg"} -{"rects": [{"solidity": 0.9922904627514223, "top": 845, "right": 2375, "bottom": 2265, "left": 385}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508355.jpg"} -{"rects": [{"solidity": 0.9922916405045569, "top": 705, "right": 3240, "bottom": 2525, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710028f.jpg"} -{"rects": [{"solidity": 0.992293342660604, "top": 650, "right": 2260, "bottom": 1915, "left": 535}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703087f.jpg"} -{"rects": [{"solidity": 0.9922939972896129, "top": 825, "right": 2090, "bottom": 3210, "left": 495}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713303f.jpg"} -{"rects": [{"solidity": 0.9922957920792079, "top": 840, "right": 3345, "bottom": 2340, "left": 1165}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508333.jpg"} -{"rects": [{"solidity": 0.9922974252426163, "top": 455, "right": 4980, "bottom": 3485, "left": 1200}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722729f.jpg"} -{"rects": [{"solidity": 0.9923007099555873, "top": 435, "right": 3220, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702135f.jpg"} -{"rects": [{"solidity": 0.9923029678646432, "top": 580, "right": 3180, "bottom": 2175, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709261f.jpg"} -{"rects": [{"solidity": 0.9923037356446163, "top": 1070, "right": 1760, "bottom": 3030, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733445f.jpg"} -{"rects": [{"solidity": 0.9923066437200743, "top": 460, "right": 5160, "bottom": 3530, "left": 1275}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700016f.jpg"} -{"rects": [{"solidity": 0.9923073455351048, "top": 425, "right": 3245, "bottom": 2045, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701454f.jpg"} -{"rects": [{"solidity": 0.9923097529581643, "top": 2200, "right": 3065, "bottom": 3825, "left": 670}, {"solidity": 0.9920059210547861, "top": 4040, "right": 3050, "bottom": 5660, "left": 660}, {"solidity": 0.9927240087982614, "top": 385, "right": 3065, "bottom": 1990, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734056f.jpg"} -{"rects": [{"solidity": 0.9923108587455118, "top": 1030, "right": 3630, "bottom": 4975, "left": 350}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/731782f.jpg"} -{"rects": [{"solidity": 0.9923130143122683, "top": 415, "right": 3155, "bottom": 2120, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724091f.jpg"} -{"rects": [{"solidity": 0.9923132468833471, "top": 435, "right": 4550, "bottom": 3645, "left": 485}], "shape": {"h": 3865, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728208f.jpg"} -{"rects": [{"solidity": 0.9923177345309656, "top": 275, "right": 5150, "bottom": 3685, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716968f.jpg"} -{"rects": [{"solidity": 0.9923193552248334, "top": 665, "right": 2590, "bottom": 2070, "left": 790}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725462f.jpg"} -{"rects": [{"solidity": 0.9923208974250022, "top": 390, "right": 5190, "bottom": 3455, "left": 1505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733431f.jpg"} -{"rects": [{"solidity": 0.9923217799688755, "top": 1175, "right": 3370, "bottom": 4835, "left": 385}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705773f.jpg"} -{"rects": [{"solidity": 0.9923229252224319, "top": 505, "right": 5025, "bottom": 3535, "left": 1165}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705070f.jpg"} -{"rects": [{"solidity": 0.992323014961397, "top": 1050, "right": 2175, "bottom": 3150, "left": 510}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706395f.jpg"} -{"rects": [{"solidity": 0.992324420768812, "top": 410, "right": 3195, "bottom": 3810, "left": 575}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714525f.jpg"} -{"rects": [{"solidity": 0.9923284214002253, "top": 365, "right": 2430, "bottom": 1560, "left": 630}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715853f.jpg"} -{"rects": [{"solidity": 0.9923308086496843, "top": 470, "right": 5000, "bottom": 3505, "left": 1195}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725117f.jpg"} -{"rects": [{"solidity": 0.9923419692745576, "top": 325, "right": 2375, "bottom": 1540, "left": 565}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715907f.jpg"} -{"rects": [{"solidity": 0.9923455634593785, "top": 385, "right": 3705, "bottom": 2700, "left": 800}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716445f.jpg"} -{"rects": [{"solidity": 0.9923476253204719, "top": 2305, "right": 3255, "bottom": 4005, "left": 1130}, {"solidity": 0.9913682384839714, "top": 350, "right": 3230, "bottom": 2010, "left": 1105}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711670f.jpg"} -{"rects": [{"solidity": 0.9923481365364855, "top": 470, "right": 3200, "bottom": 3785, "left": 635}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/714599f.jpg"} -{"rects": [{"solidity": 0.9923519225206161, "top": 520, "right": 4880, "bottom": 2000, "left": 2720}], "shape": {"h": 4515, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596968.jpg"} -{"rects": [{"solidity": 0.9923545343402496, "top": 1835, "right": 2395, "bottom": 3040, "left": 595}, {"solidity": 0.9963318672770248, "top": 355, "right": 2400, "bottom": 1535, "left": 610}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716479f.jpg"} -{"rects": [{"solidity": 0.9923546308072653, "top": 500, "right": 3145, "bottom": 1885, "left": 1230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732797f.jpg"} -{"rects": [{"solidity": 0.9923570357497424, "top": 285, "right": 5065, "bottom": 3630, "left": 1025}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731949f.jpg"} -{"rects": [{"solidity": 0.9923585799857334, "top": 750, "right": 2015, "bottom": 3170, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720533f.jpg"} -{"rects": [{"solidity": 0.9923612713193468, "top": 660, "right": 5005, "bottom": 3545, "left": 1255}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731751f.jpg"} -{"rects": [{"solidity": 0.9923674521952089, "top": 470, "right": 3125, "bottom": 2085, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700889f.jpg"} -{"rects": [{"solidity": 0.9923679400985015, "top": 465, "right": 3155, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718655f.jpg"} -{"rects": [{"solidity": 0.9923681560217473, "top": 800, "right": 2670, "bottom": 3650, "left": 390}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509259.jpg"} -{"rects": [{"solidity": 0.9923696189404109, "top": 560, "right": 2810, "bottom": 2960, "left": 1200}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708176f.jpg"} -{"rects": [{"solidity": 0.9923703281491735, "top": 830, "right": 4265, "bottom": 2295, "left": 3190}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464737.jpg"} -{"rects": [{"solidity": 0.9923719590477494, "top": 820, "right": 2035, "bottom": 3245, "left": 405}, {"solidity": 0.969265297794595, "top": 1115, "right": 3705, "bottom": 2980, "left": 2220}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705540f.jpg"} -{"rects": [{"solidity": 0.9923722708226127, "top": 1130, "right": 2800, "bottom": 2855, "left": 310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722948f.jpg"} -{"rects": [{"solidity": 0.992374096464065, "top": 400, "right": 5205, "bottom": 3425, "left": 1405}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732194f.jpg"} -{"rects": [{"solidity": 0.9923794117774102, "top": 1115, "right": 3325, "bottom": 4980, "left": 290}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717058f.jpg"} -{"rects": [{"solidity": 0.9923820956501194, "top": 750, "right": 4700, "bottom": 3285, "left": 1320}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717673f.jpg"} -{"rects": [{"solidity": 0.9923836417328706, "top": 410, "right": 3145, "bottom": 2000, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734232f.jpg"} -{"rects": [{"solidity": 0.992383712080639, "top": 265, "right": 5015, "bottom": 3625, "left": 1005}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713938f.jpg"} -{"rects": [{"solidity": 0.9923862354449826, "top": 420, "right": 3255, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705702f.jpg"} -{"rects": [{"solidity": 0.9923889515949706, "top": 2125, "right": 6160, "bottom": 4005, "left": 3770}, {"solidity": 0.9936067547864735, "top": 350, "right": 3130, "bottom": 2225, "left": 745}, {"solidity": 0.9980301198378037, "top": 340, "right": 6135, "bottom": 1850, "left": 4105}, {"solidity": 0.9983235610219638, "top": 2490, "right": 2770, "bottom": 3985, "left": 740}], "shape": {"h": 4410, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/708805f.jpg"} -{"rects": [{"solidity": 0.9923924301536405, "top": 765, "right": 2015, "bottom": 3175, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718995f.jpg"} -{"rects": [{"solidity": 0.9923946438939423, "top": 835, "right": 2045, "bottom": 3255, "left": 305}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700611f.jpg"} -{"rects": [{"solidity": 0.9923976259949582, "top": 635, "right": 3160, "bottom": 2235, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710106f.jpg"} -{"rects": [{"solidity": 0.9924003624972911, "top": 500, "right": 3095, "bottom": 1910, "left": 1270}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727914f.jpg"} -{"rects": [{"solidity": 0.9924020427040178, "top": 4390, "right": 3150, "bottom": 5995, "left": 1055}, {"solidity": 0.9940747635772001, "top": 2435, "right": 3180, "bottom": 4025, "left": 1105}, {"solidity": 0.9943471896607123, "top": 500, "right": 3150, "bottom": 2065, "left": 1100}], "shape": {"h": 6900, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711228f.jpg"} -{"rects": [{"solidity": 0.9924034281621985, "top": 770, "right": 2000, "bottom": 3150, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713512f.jpg"} -{"rects": [{"solidity": 0.9924041422827716, "top": 700, "right": 2275, "bottom": 1935, "left": 630}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704358f.jpg"} -{"rects": [{"solidity": 0.9924061122344128, "top": 420, "right": 3190, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702429f.jpg"} -{"rects": [{"solidity": 0.9924062577785704, "top": 1665, "right": 3215, "bottom": 3380, "left": 1225}], "shape": {"h": 5820, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/417691.jpg"} -{"rects": [{"solidity": 0.9924079339434837, "top": 820, "right": 1880, "bottom": 2870, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700669f.jpg"} -{"rects": [{"solidity": 0.992409601047186, "top": 385, "right": 4980, "bottom": 3520, "left": 1155}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718276f.jpg"} -{"rects": [{"solidity": 0.9924104725810194, "top": 675, "right": 2865, "bottom": 2105, "left": 1015}, {"solidity": 0.9952784859776427, "top": 2150, "right": 2855, "bottom": 3575, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706975f.jpg"} -{"rects": [{"solidity": 0.9924107871354683, "top": 625, "right": 3120, "bottom": 2595, "left": 395}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717029f.jpg"} -{"rects": [{"solidity": 0.9924114044123348, "top": 270, "right": 4070, "bottom": 2795, "left": 895}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508767.jpg"} -{"rects": [{"solidity": 0.9924124612901233, "top": 645, "right": 3290, "bottom": 2450, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710019f.jpg"} -{"rects": [{"solidity": 0.9924127274923498, "top": 1020, "right": 2430, "bottom": 3590, "left": 470}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1510005.jpg"} -{"rects": [{"solidity": 0.99241433751881, "top": 355, "right": 1925, "bottom": 1255, "left": 780}, {"solidity": 0.9946855514207127, "top": 1485, "right": 1925, "bottom": 2370, "left": 775}], "shape": {"h": 3935, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727065f.jpg"} -{"rects": [{"solidity": 0.9924204207234021, "top": 440, "right": 2705, "bottom": 3835, "left": 1215}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714853f.jpg"} -{"rects": [{"solidity": 0.9924213685674681, "top": 690, "right": 4920, "bottom": 3560, "left": 1205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734461f.jpg"} -{"rects": [{"solidity": 0.9924260610128306, "top": 2490, "right": 2820, "bottom": 3910, "left": 970}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725201f.jpg"} -{"rects": [{"solidity": 0.9924263691192071, "top": 965, "right": 5020, "bottom": 3160, "left": 1145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701254f.jpg"} -{"rects": [{"solidity": 0.992429671649625, "top": 490, "right": 3095, "bottom": 1885, "left": 1295}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725941f.jpg"} -{"rects": [{"solidity": 0.9924298799411537, "top": 1390, "right": 3185, "bottom": 4600, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722555f.jpg"} -{"rects": [{"solidity": 0.9924319258850672, "top": 655, "right": 1570, "bottom": 2445, "left": 375}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/715838f.jpg"} -{"rects": [{"solidity": 0.9924337767437663, "top": 405, "right": 3060, "bottom": 1815, "left": 1260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727530f.jpg"} -{"rects": [{"solidity": 0.9924341849709186, "top": 545, "right": 4910, "bottom": 3635, "left": 990}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717626f.jpg"} -{"rects": [{"solidity": 0.992434408403128, "top": 130, "right": 5165, "bottom": 3600, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728185f.jpg"} -{"rects": [{"solidity": 0.9924386389016969, "top": 365, "right": 3285, "bottom": 2195, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714946f.jpg"} -{"rects": [{"solidity": 0.9924412994532004, "top": 725, "right": 3335, "bottom": 2625, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713597f.jpg"} -{"rects": [{"solidity": 0.9924446256284821, "top": 1115, "right": 1710, "bottom": 2695, "left": 530}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723590f.jpg"} -{"rects": [{"solidity": 0.9924468315257776, "top": 520, "right": 5485, "bottom": 3795, "left": 1385}], "shape": {"h": 4255, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730940f.jpg"} -{"rects": [{"solidity": 0.9924477851584249, "top": 455, "right": 3180, "bottom": 2075, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700379f.jpg"} -{"rects": [{"solidity": 0.9924482293610183, "top": 885, "right": 1845, "bottom": 3150, "left": 330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720716f.jpg"} -{"rects": [{"solidity": 0.9924484779648605, "top": 585, "right": 5055, "bottom": 3610, "left": 1250}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709823f.jpg"} -{"rects": [{"solidity": 0.9924509943259465, "top": 930, "right": 3505, "bottom": 2180, "left": 1570}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507771.jpg"} -{"rects": [{"solidity": 0.9924584127379913, "top": 595, "right": 4865, "bottom": 3615, "left": 1115}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709870f.jpg"} -{"rects": [{"solidity": 0.9924588951927867, "top": 835, "right": 2060, "bottom": 3270, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717302f.jpg"} -{"rects": [{"solidity": 0.992459211119761, "top": 695, "right": 4495, "bottom": 3330, "left": 1285}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718977f.jpg"} -{"rects": [{"solidity": 0.9924594581642581, "top": 560, "right": 5110, "bottom": 3540, "left": 1325}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730942f.jpg"} -{"rects": [{"solidity": 0.9924597088938886, "top": 1205, "right": 3615, "bottom": 5685, "left": 545}], "shape": {"h": 6920, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708828f.jpg"} -{"rects": [{"solidity": 0.9924621174790977, "top": 365, "right": 3280, "bottom": 2180, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714945f.jpg"} -{"rects": [{"solidity": 0.9924676467493712, "top": 710, "right": 2585, "bottom": 2140, "left": 730}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705293f.jpg"} -{"rects": [{"solidity": 0.9924692398876725, "top": 3010, "right": 3420, "bottom": 4930, "left": 290}, {"solidity": 0.9896194273287423, "top": 745, "right": 3220, "bottom": 2485, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730668f.jpg"} -{"rects": [{"solidity": 0.9924694184921694, "top": 1405, "right": 1690, "bottom": 2310, "left": 545}, {"solidity": 0.9938256450543785, "top": 470, "right": 1690, "bottom": 1370, "left": 540}], "shape": {"h": 2560, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727123f.jpg"} -{"rects": [{"solidity": 0.9924727358937885, "top": 410, "right": 3180, "bottom": 1325, "left": 2000}, {"solidity": 0.9937304452466907, "top": 1445, "right": 1755, "bottom": 2350, "left": 590}, {"solidity": 0.9929965347437534, "top": 380, "right": 1760, "bottom": 1285, "left": 600}, {"solidity": 0.9951389754455939, "top": 1455, "right": 3160, "bottom": 2355, "left": 2025}], "shape": {"h": 2555, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727113f.jpg"} -{"rects": [{"solidity": 0.9924740954089865, "top": 435, "right": 5160, "bottom": 3730, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731508f.jpg"} -{"rects": [{"solidity": 0.9924776376764738, "top": 500, "right": 2890, "bottom": 2050, "left": 990}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720215f.jpg"} -{"rects": [{"solidity": 0.992477836777288, "top": 770, "right": 2075, "bottom": 3160, "left": 460}, {"solidity": 0.9920485802687237, "top": 775, "right": 3895, "bottom": 3160, "left": 2285}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713953f.jpg"} -{"rects": [{"solidity": 0.9924797423378748, "top": 440, "right": 3515, "bottom": 2260, "left": 795}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711304f.jpg"} -{"rects": [{"solidity": 0.9924798452112222, "top": 410, "right": 3000, "bottom": 1970, "left": 1090}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724121f.jpg"} -{"rects": [{"solidity": 0.9924805925095684, "top": 470, "right": 3170, "bottom": 3740, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714846f.jpg"} -{"rects": [{"solidity": 0.9924852296632063, "top": 2250, "right": 3360, "bottom": 4230, "left": 375}, {"solidity": 0.9991159094355695, "top": 435, "right": 3190, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724323f.jpg"} -{"rects": [{"solidity": 0.9924853711117955, "top": 600, "right": 3290, "bottom": 2405, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710001f.jpg"} -{"rects": [{"solidity": 0.9924884360126031, "top": 865, "right": 2290, "bottom": 3265, "left": 685}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709588f.jpg"} -{"rects": [{"solidity": 0.9924914714773059, "top": 450, "right": 2510, "bottom": 1735, "left": 785}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732786f.jpg"} -{"rects": [{"solidity": 0.9924939289130915, "top": 655, "right": 2740, "bottom": 2065, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727895f.jpg"} -{"rects": [{"solidity": 0.9924940095305562, "top": 410, "right": 5140, "bottom": 3675, "left": 1130}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704189f.jpg"} -{"rects": [{"solidity": 0.9924961904369671, "top": 2120, "right": 5350, "bottom": 3490, "left": 3100}, {"solidity": 0.9887808176427754, "top": 2135, "right": 2765, "bottom": 3470, "left": 940}, {"solidity": 0.9867116202526235, "top": 570, "right": 4990, "bottom": 1900, "left": 3205}, {"solidity": 0.9930711992112844, "top": 575, "right": 2770, "bottom": 1865, "left": 965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729564f.jpg"} -{"rects": [{"solidity": 0.9924965871149196, "top": 775, "right": 2005, "bottom": 3180, "left": 410}, {"solidity": 0.9953890015335687, "top": 1100, "right": 3610, "bottom": 2895, "left": 2235}, {"solidity": 0.9955958123073168, "top": 1115, "right": 5180, "bottom": 2860, "left": 3800}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716740f.jpg"} -{"rects": [{"solidity": 0.992499266779799, "top": 350, "right": 5945, "bottom": 4110, "left": 1315}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711281f.jpg"} -{"rects": [{"solidity": 0.9924996375875305, "top": 565, "right": 2455, "bottom": 1800, "left": 815}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732790f.jpg"} -{"rects": [{"solidity": 0.9925019014016047, "top": 455, "right": 4325, "bottom": 3415, "left": 590}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705907f.jpg"} -{"rects": [{"solidity": 0.9925023053063962, "top": 565, "right": 5035, "bottom": 3570, "left": 1270}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709854f.jpg"} -{"rects": [{"solidity": 0.9925028703374713, "top": 265, "right": 5065, "bottom": 3660, "left": 1005}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720392f.jpg"} -{"rects": [{"solidity": 0.9925060133532219, "top": 700, "right": 4930, "bottom": 3215, "left": 1250}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722732f.jpg"} -{"rects": [{"solidity": 0.9925063071212222, "top": 1135, "right": 3410, "bottom": 5015, "left": 335}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700011f.jpg"} -{"rects": [{"solidity": 0.9925067213245667, "top": 420, "right": 3275, "bottom": 2005, "left": 880}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728022f.jpg"} -{"rects": [{"solidity": 0.9925068408271339, "top": 370, "right": 3840, "bottom": 2655, "left": 970}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509755.jpg"} -{"rects": [{"solidity": 0.9925075658893471, "top": 2035, "right": 2740, "bottom": 3465, "left": 930}, {"solidity": 0.9960834607606176, "top": 675, "right": 5220, "bottom": 2090, "left": 3410}, {"solidity": 0.9967569312136261, "top": 675, "right": 2725, "bottom": 2025, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726036f.jpg"} -{"rects": [{"solidity": 0.9925093952367144, "top": 505, "right": 3270, "bottom": 3905, "left": 645}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714340f.jpg"} -{"rects": [{"solidity": 0.992511229138711, "top": 1040, "right": 3065, "bottom": 2030, "left": 1385}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509491.jpg"} -{"rects": [{"solidity": 0.9925114289566251, "top": 275, "right": 1940, "bottom": 1190, "left": 795}], "shape": {"h": 3920, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727045f.jpg"} -{"rects": [{"solidity": 0.9925139722094036, "top": 1345, "right": 1750, "bottom": 2220, "left": 615}], "shape": {"h": 2555, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727083f.jpg"} -{"rects": [{"solidity": 0.9925140483119341, "top": 575, "right": 3040, "bottom": 1680, "left": 1250}, {"solidity": 0.9968446204706883, "top": 2200, "right": 3020, "bottom": 3285, "left": 1240}], "shape": {"h": 6055, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/728133f.jpg"} -{"rects": [{"solidity": 0.9925148502970059, "top": 685, "right": 2730, "bottom": 2085, "left": 920}, {"solidity": 0.9950360747296386, "top": 2100, "right": 2710, "bottom": 3445, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726765f.jpg"} -{"rects": [{"solidity": 0.992517006802721, "top": 475, "right": 2695, "bottom": 1685, "left": 650}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732829f.jpg"} -{"rects": [{"solidity": 0.9925173285492946, "top": 430, "right": 3135, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711897f.jpg"} -{"rects": [{"solidity": 0.9925198179648008, "top": 2295, "right": 3010, "bottom": 3760, "left": 1165}, {"solidity": 0.995260663507109, "top": 495, "right": 3020, "bottom": 1950, "left": 1190}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727001f.jpg"} -{"rects": [{"solidity": 0.992522332034591, "top": 650, "right": 1620, "bottom": 2435, "left": 430}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716405f.jpg"} -{"rects": [{"solidity": 0.9925234791141014, "top": 450, "right": 3730, "bottom": 2760, "left": 560}, {"solidity": 0.9761488980746701, "top": 2865, "right": 3645, "bottom": 4190, "left": 2345}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/708390f.jpg"} -{"rects": [{"solidity": 0.9925239286586004, "top": 615, "right": 5015, "bottom": 3655, "left": 1190}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717035f.jpg"} -{"rects": [{"solidity": 0.9925252795743368, "top": 355, "right": 2680, "bottom": 1660, "left": 995}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717670f.jpg"} -{"rects": [{"solidity": 0.9925276027776704, "top": 1030, "right": 1980, "bottom": 2935, "left": 430}, {"solidity": 0.9979933582362721, "top": 1050, "right": 3795, "bottom": 2910, "left": 2260}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721539f.jpg"} -{"rects": [{"solidity": 0.9925280495827913, "top": 325, "right": 5690, "bottom": 4095, "left": 1170}], "shape": {"h": 4420, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711278f.jpg"} -{"rects": [{"solidity": 0.9925280608057776, "top": 2570, "right": 3565, "bottom": 4400, "left": 830}, {"solidity": 0.9951376809382851, "top": 490, "right": 3585, "bottom": 2305, "left": 855}, {"solidity": 0.9963313267344971, "top": 4680, "right": 3530, "bottom": 6495, "left": 815}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711342f.jpg"} -{"rects": [{"solidity": 0.9925299567269338, "top": 760, "right": 5825, "bottom": 3425, "left": 4065}, {"solidity": 0.9987801519991188, "top": 760, "right": 3975, "bottom": 3390, "left": 2240}, {"solidity": 0.9932124733747023, "top": 755, "right": 2120, "bottom": 3350, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722916f.jpg"} -{"rects": [{"solidity": 0.9925302515939012, "top": 765, "right": 2355, "bottom": 2060, "left": 700}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724079f.jpg"} -{"rects": [{"solidity": 0.9925332572391395, "top": 845, "right": 2100, "bottom": 3210, "left": 535}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713300f.jpg"} -{"rects": [{"solidity": 0.9925335506730856, "top": 525, "right": 2990, "bottom": 1525, "left": 1140}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720338f.jpg"} -{"rects": [{"solidity": 0.9925350735773334, "top": 410, "right": 2935, "bottom": 1965, "left": 1030}, {"solidity": 0.9894140743623852, "top": 2255, "right": 2920, "bottom": 3830, "left": 1005}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713669f.jpg"} -{"rects": [{"solidity": 0.992535821392869, "top": 565, "right": 2510, "bottom": 1980, "left": 495}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716426f.jpg"} -{"rects": [{"solidity": 0.9925380156157728, "top": 215, "right": 5020, "bottom": 3715, "left": 965}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730099f.jpg"} -{"rects": [{"solidity": 0.9925406726255547, "top": 740, "right": 2625, "bottom": 3925, "left": 325}, {"solidity": 0.9951331679580232, "top": 935, "right": 6580, "bottom": 3645, "left": 4760}, {"solidity": 0.994235134607681, "top": 925, "right": 4605, "bottom": 3645, "left": 2780}], "shape": {"h": 4410, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711297f.jpg"} -{"rects": [{"solidity": 0.9925467123669698, "top": 505, "right": 3030, "bottom": 1940, "left": 1030}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704744f.jpg"} -{"rects": [{"solidity": 0.9925498426023085, "top": 490, "right": 3585, "bottom": 2695, "left": 750}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508295.jpg"} -{"rects": [{"solidity": 0.9925516106318549, "top": 530, "right": 4890, "bottom": 3555, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712870f.jpg"} -{"rects": [{"solidity": 0.9925521963387858, "top": 435, "right": 3160, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719484f.jpg"} -{"rects": [{"solidity": 0.9925533339126881, "top": 560, "right": 4900, "bottom": 3465, "left": 1210}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714775f.jpg"} -{"rects": [{"solidity": 0.9925624513481, "top": 880, "right": 3490, "bottom": 4410, "left": 475}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708782f.jpg"} -{"rects": [{"solidity": 0.9925686108482343, "top": 760, "right": 2025, "bottom": 3145, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714879f.jpg"} -{"rects": [{"solidity": 0.9925690524751379, "top": 415, "right": 3065, "bottom": 1850, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700566f.jpg"} -{"rects": [{"solidity": 0.9925743008230846, "top": 1245, "right": 3235, "bottom": 4765, "left": 570}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716567f.jpg"} -{"rects": [{"solidity": 0.992574551679456, "top": 515, "right": 3260, "bottom": 3920, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713809f.jpg"} -{"rects": [{"solidity": 0.9925769876680611, "top": 440, "right": 3140, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717676f.jpg"} -{"rects": [{"solidity": 0.9925793620606469, "top": 375, "right": 4885, "bottom": 3490, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726733f.jpg"} -{"rects": [{"solidity": 0.9925794482981126, "top": 2580, "right": 2010, "bottom": 3620, "left": 475}, {"solidity": 0.9899870879723244, "top": 1475, "right": 1915, "bottom": 2395, "left": 765}, {"solidity": 0.9920735534850518, "top": 335, "right": 1920, "bottom": 1240, "left": 780}], "shape": {"h": 3940, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727049f.jpg"} -{"rects": [{"solidity": 0.9925803633435466, "top": 450, "right": 5105, "bottom": 3695, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717521f.jpg"} -{"rects": [{"solidity": 0.9925804342950936, "top": 2100, "right": 2620, "bottom": 3555, "left": 755}, {"solidity": 0.9929414365065636, "top": 655, "right": 2645, "bottom": 2095, "left": 790}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722478f.jpg"} -{"rects": [{"solidity": 0.9925837598883201, "top": 440, "right": 3185, "bottom": 1970, "left": 1195}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/704997f.jpg"} -{"rects": [{"solidity": 0.9925850836644771, "top": 550, "right": 3280, "bottom": 2360, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714733f.jpg"} -{"rects": [{"solidity": 0.992586293226091, "top": 470, "right": 3245, "bottom": 3715, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714693f.jpg"} -{"rects": [{"solidity": 0.992592420429115, "top": 830, "right": 2170, "bottom": 3205, "left": 565}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722340f.jpg"} -{"rects": [{"solidity": 0.9925943253383236, "top": 295, "right": 5095, "bottom": 3730, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720343f.jpg"} -{"rects": [{"solidity": 0.9925948976267692, "top": 650, "right": 2780, "bottom": 2085, "left": 960}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704474f.jpg"} -{"rects": [{"solidity": 0.9925950089708041, "top": 665, "right": 1775, "bottom": 1900, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711136f.jpg"} -{"rects": [{"solidity": 0.992595855767662, "top": 415, "right": 3140, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720531f.jpg"} -{"rects": [{"solidity": 0.9925967536115179, "top": 500, "right": 3135, "bottom": 3915, "left": 840}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714607f.jpg"} -{"rects": [{"solidity": 0.992597481359923, "top": 625, "right": 1540, "bottom": 2420, "left": 355}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716432f.jpg"} -{"rects": [{"solidity": 0.9925997347458524, "top": 590, "right": 5270, "bottom": 2140, "left": 3175}, {"solidity": 0.9957781975888818, "top": 2280, "right": 2690, "bottom": 3785, "left": 725}, {"solidity": 0.9933575868341422, "top": 620, "right": 2720, "bottom": 2080, "left": 705}, {"solidity": 0.9841271875854526, "top": 2275, "right": 5205, "bottom": 3815, "left": 3240}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730776f.jpg"} -{"rects": [{"solidity": 0.9926030269278647, "top": 785, "right": 2085, "bottom": 3190, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711519f.jpg"} -{"rects": [{"solidity": 0.9926035013900368, "top": 1120, "right": 3400, "bottom": 3125, "left": 1300}], "shape": {"h": 5990, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465578.jpg"} -{"rects": [{"solidity": 0.9926040103829444, "top": 495, "right": 5045, "bottom": 3730, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705228f.jpg"} -{"rects": [{"solidity": 0.9926050591595267, "top": 1580, "right": 3685, "bottom": 2550, "left": 860}, {"solidity": 0.9867220306378587, "top": 435, "right": 3685, "bottom": 1395, "left": 850}], "shape": {"h": 2965, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/724345f.jpg"} -{"rects": [{"solidity": 0.9926055845608801, "top": 605, "right": 2940, "bottom": 1900, "left": 1250}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725241f.jpg"} -{"rects": [{"solidity": 0.9926057598538434, "top": 325, "right": 1855, "bottom": 1215, "left": 695}], "shape": {"h": 3995, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727162f.jpg"} -{"rects": [{"solidity": 0.992607494304135, "top": 2485, "right": 3070, "bottom": 3945, "left": 1240}, {"solidity": 0.9931833206826474, "top": 640, "right": 3055, "bottom": 2075, "left": 1250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727419f.jpg"} -{"rects": [{"solidity": 0.992611443520605, "top": 415, "right": 3180, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701230f.jpg"} -{"rects": [{"solidity": 0.9926127434922353, "top": 590, "right": 3240, "bottom": 2485, "left": 1830}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507709.jpg"} -{"rects": [{"solidity": 0.9926136323714368, "top": 370, "right": 3175, "bottom": 3395, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713470f.jpg"} -{"rects": [{"solidity": 0.9926152907303234, "top": 810, "right": 2025, "bottom": 3230, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720059f.jpg"} -{"rects": [{"solidity": 0.9926161783080085, "top": 580, "right": 2530, "bottom": 2115, "left": 1505}, {"solidity": 0.9938430338673697, "top": 580, "right": 1300, "bottom": 2110, "left": 280}], "shape": {"h": 2530, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/721014f.jpg"} -{"rects": [{"solidity": 0.9926170377420589, "top": 2155, "right": 5065, "bottom": 3625, "left": 3110}, {"solidity": 0.9927407198040324, "top": 610, "right": 5080, "bottom": 1995, "left": 3125}, {"solidity": 0.9942311613235947, "top": 660, "right": 2625, "bottom": 1940, "left": 970}, {"solidity": 0.9909322044512355, "top": 2210, "right": 2615, "bottom": 3445, "left": 980}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704097f.jpg"} -{"rects": [{"solidity": 0.9926232846748362, "top": 3960, "right": 2940, "bottom": 5375, "left": 1125}, {"solidity": 0.9915582911079994, "top": 350, "right": 2995, "bottom": 1760, "left": 1170}, {"solidity": 0.9947587490540182, "top": 2145, "right": 2960, "bottom": 3540, "left": 1155}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728106f.jpg"} -{"rects": [{"solidity": 0.9926253434556349, "top": 640, "right": 2510, "bottom": 1915, "left": 765}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702567f.jpg"} -{"rects": [{"solidity": 0.9926254259535864, "top": 915, "right": 2130, "bottom": 3395, "left": 540}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711678f.jpg"} -{"rects": [{"solidity": 0.9926271556975165, "top": 205, "right": 3275, "bottom": 2695, "left": 230}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509869.jpg"} -{"rects": [{"solidity": 0.9926281905970894, "top": 1305, "right": 2095, "bottom": 2335, "left": 705}, {"solidity": 0.9923175162609272, "top": 1335, "right": 3640, "bottom": 2315, "left": 2315}, {"solidity": 0.9929517106470511, "top": 1375, "right": 5230, "bottom": 2330, "left": 3915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733753f.jpg"} -{"rects": [{"solidity": 0.9926283945488271, "top": 1125, "right": 3340, "bottom": 5060, "left": 600}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713894f.jpg"} -{"rects": [{"solidity": 0.992631902636371, "top": 590, "right": 3345, "bottom": 2520, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713855f.jpg"} -{"rects": [{"solidity": 0.9926330307162055, "top": 405, "right": 3310, "bottom": 2205, "left": 635}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700682f.jpg"} -{"rects": [{"solidity": 0.9926338777486667, "top": 2260, "right": 3170, "bottom": 3885, "left": 730}, {"solidity": 0.99043953753147, "top": 430, "right": 3170, "bottom": 2060, "left": 745}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/700977f.jpg"} -{"rects": [{"solidity": 0.9926339643196558, "top": 350, "right": 5085, "bottom": 3645, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718262f.jpg"} -{"rects": [{"solidity": 0.9926341657592336, "top": 445, "right": 3205, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700935f.jpg"} -{"rects": [{"solidity": 0.9926344379484279, "top": 460, "right": 3270, "bottom": 2060, "left": 870}], "shape": {"h": 6140, "w": 4100}, "file": "/usr/local/google/home/danvk/milstein/701158f.jpg"} -{"rects": [{"solidity": 0.9926349340411841, "top": 600, "right": 2690, "bottom": 2010, "left": 885}], "shape": {"h": 3865, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728187f.jpg"} -{"rects": [{"solidity": 0.9926350002474799, "top": 470, "right": 3150, "bottom": 2075, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701390f.jpg"} -{"rects": [{"solidity": 0.9926350353703418, "top": 825, "right": 3360, "bottom": 2255, "left": 1335}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507630.jpg"} -{"rects": [{"solidity": 0.9926359065394126, "top": 540, "right": 3025, "bottom": 1970, "left": 1200}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727606f.jpg"} -{"rects": [{"solidity": 0.9926359420615616, "top": 500, "right": 3270, "bottom": 2315, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723152f.jpg"} -{"rects": [{"solidity": 0.9926363002961157, "top": 750, "right": 2315, "bottom": 2205, "left": 275}, {"solidity": 0.9942853867285162, "top": 2455, "right": 2265, "bottom": 3890, "left": 245}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507629.jpg"} -{"rects": [{"solidity": 0.9926366862557803, "top": 805, "right": 2910, "bottom": 3630, "left": 795}, {"solidity": 0.982438412022899, "top": 805, "right": 5340, "bottom": 3565, "left": 3240}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717083f.jpg"} -{"rects": [{"solidity": 0.9926389801886595, "top": 500, "right": 3680, "bottom": 2460, "left": 905}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509459.jpg"} -{"rects": [{"solidity": 0.9926395090199344, "top": 405, "right": 5980, "bottom": 1835, "left": 2200}, {"solidity": 0.9972216637116379, "top": 425, "right": 2190, "bottom": 1860, "left": 250}, {"solidity": 0.995887255977188, "top": 2105, "right": 4175, "bottom": 3555, "left": 2270}, {"solidity": 0.9937065098288957, "top": 2090, "right": 2190, "bottom": 3515, "left": 290}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731075f.jpg"} -{"rects": [{"solidity": 0.9926400630372733, "top": 775, "right": 2965, "bottom": 2250, "left": 910}], "shape": {"h": 2980, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/1507290.jpg"} -{"rects": [{"solidity": 0.9926422518038415, "top": 510, "right": 4985, "bottom": 3670, "left": 990}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715617f.jpg"} -{"rects": [{"solidity": 0.9926426801390783, "top": 635, "right": 4715, "bottom": 3610, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704514f.jpg"} -{"rects": [{"solidity": 0.992644436336505, "top": 600, "right": 5115, "bottom": 3690, "left": 1140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731312f.jpg"} -{"rects": [{"solidity": 0.9926450384675773, "top": 965, "right": 1970, "bottom": 3050, "left": 735}, {"solidity": 0.9935904456439542, "top": 990, "right": 3530, "bottom": 3015, "left": 2330}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732515f.jpg"} -{"rects": [{"solidity": 0.992647384506356, "top": 2395, "right": 2570, "bottom": 3845, "left": 575}, {"solidity": 0.9897976851666866, "top": 710, "right": 2560, "bottom": 2150, "left": 565}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516969.jpg"} -{"rects": [{"solidity": 0.992647621720935, "top": 430, "right": 3080, "bottom": 2060, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704049f.jpg"} -{"rects": [{"solidity": 0.9926512302922357, "top": 2075, "right": 2820, "bottom": 3570, "left": 890}, {"solidity": 0.9939663342810994, "top": 2065, "right": 5240, "bottom": 3550, "left": 3320}, {"solidity": 0.9962787344888759, "top": 475, "right": 5270, "bottom": 1865, "left": 3325}, {"solidity": 0.9939384104316615, "top": 495, "right": 2810, "bottom": 1860, "left": 865}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706753f.jpg"} -{"rects": [{"solidity": 0.9926518514675219, "top": 890, "right": 3805, "bottom": 3305, "left": 2195}, {"solidity": 0.9942388938676225, "top": 880, "right": 2005, "bottom": 3295, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709314f.jpg"} -{"rects": [{"solidity": 0.9926550142649633, "top": 1015, "right": 3345, "bottom": 4840, "left": 350}], "shape": {"h": 6030, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/702585f.jpg"} -{"rects": [{"solidity": 0.9926559620952883, "top": 450, "right": 3120, "bottom": 2065, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/707943f.jpg"} -{"rects": [{"solidity": 0.9926561369151518, "top": 670, "right": 3255, "bottom": 2490, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710024f.jpg"} -{"rects": [{"solidity": 0.9926580211851772, "top": 2095, "right": 2660, "bottom": 3530, "left": 820}, {"solidity": 0.9946108796595508, "top": 660, "right": 2615, "bottom": 2090, "left": 800}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707003f.jpg"} -{"rects": [{"solidity": 0.9926580785051498, "top": 585, "right": 4810, "bottom": 3545, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709814f.jpg"} -{"rects": [{"solidity": 0.9926585761178987, "top": 365, "right": 2025, "bottom": 1910, "left": 210}, {"solidity": 0.9944974801544633, "top": 380, "right": 4045, "bottom": 1820, "left": 2150}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717107f.jpg"} -{"rects": [{"solidity": 0.9926615852844595, "top": 530, "right": 4920, "bottom": 3645, "left": 1280}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712834f.jpg"} -{"rects": [{"solidity": 0.9926642076054719, "top": 265, "right": 4470, "bottom": 2760, "left": 1245}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1508265.jpg"} -{"rects": [{"solidity": 0.992665007925272, "top": 595, "right": 2285, "bottom": 3380, "left": 355}, {"solidity": 0.9982384104666422, "top": 750, "right": 5805, "bottom": 3175, "left": 4210}, {"solidity": 0.9942447612782515, "top": 755, "right": 4030, "bottom": 3155, "left": 2440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727944f.jpg"} -{"rects": [{"solidity": 0.9926656165808151, "top": 670, "right": 2735, "bottom": 1915, "left": 1065}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707206f.jpg"} -{"rects": [{"solidity": 0.9926675128071918, "top": 465, "right": 3205, "bottom": 2075, "left": 820}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700976f.jpg"} -{"rects": [{"solidity": 0.9926675379880827, "top": 445, "right": 2950, "bottom": 2000, "left": 1000}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700997f.jpg"} -{"rects": [{"solidity": 0.9926676870910534, "top": 905, "right": 3030, "bottom": 3120, "left": 1705}, {"solidity": 0.9831777086112347, "top": 900, "right": 4460, "bottom": 2960, "left": 3185}, {"solidity": 0.9912190648951968, "top": 890, "right": 5850, "bottom": 2990, "left": 4610}, {"solidity": 0.9729620788575497, "top": 935, "right": 1535, "bottom": 3000, "left": 330}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732311f.jpg"} -{"rects": [{"solidity": 0.992670626745941, "top": 1330, "right": 3315, "bottom": 4760, "left": 625}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724477f.jpg"} -{"rects": [{"solidity": 0.9926742314665797, "top": 960, "right": 2405, "bottom": 3180, "left": 995}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711008f.jpg"} -{"rects": [{"solidity": 0.9926745991566556, "top": 445, "right": 5025, "bottom": 3515, "left": 1165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718220f.jpg"} -{"rects": [{"solidity": 0.9926746923128656, "top": 390, "right": 3220, "bottom": 2145, "left": 545}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731333f.jpg"} -{"rects": [{"solidity": 0.9926779438592654, "top": 2225, "right": 2925, "bottom": 3635, "left": 1105}, {"solidity": 0.9955198367138666, "top": 550, "right": 2930, "bottom": 1945, "left": 1150}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726994f.jpg"} -{"rects": [{"solidity": 0.9926785844052031, "top": 260, "right": 2835, "bottom": 1775, "left": 985}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720503f.jpg"} -{"rects": [{"solidity": 0.9926786593184408, "top": 275, "right": 5080, "bottom": 3700, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715130f.jpg"} -{"rects": [{"solidity": 0.9926788793804705, "top": 460, "right": 2185, "bottom": 2550, "left": 690}, {"solidity": 0.9942235577316718, "top": 465, "right": 3925, "bottom": 2550, "left": 2445}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716217f.jpg"} -{"rects": [{"solidity": 0.9926792843863339, "top": 2080, "right": 2785, "bottom": 3330, "left": 1120}, {"solidity": 0.990864206651153, "top": 500, "right": 4885, "bottom": 1740, "left": 3230}, {"solidity": 0.9914846810772063, "top": 490, "right": 2750, "bottom": 1735, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704357f.jpg"} -{"rects": [{"solidity": 0.9926793315335309, "top": 765, "right": 2070, "bottom": 3155, "left": 475}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723645f.jpg"} -{"rects": [{"solidity": 0.992680540865325, "top": 550, "right": 5305, "bottom": 1965, "left": 3480}, {"solidity": 0.9934298625286503, "top": 2200, "right": 2700, "bottom": 3585, "left": 880}, {"solidity": 0.9920326135038404, "top": 2190, "right": 5255, "bottom": 3585, "left": 3445}, {"solidity": 0.9942800122967137, "top": 550, "right": 2680, "bottom": 1945, "left": 885}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726602f.jpg"} -{"rects": [{"solidity": 0.9926817895054447, "top": 2085, "right": 2790, "bottom": 3400, "left": 1000}, {"solidity": 0.9853763106981632, "top": 3870, "right": 2715, "bottom": 5140, "left": 1035}, {"solidity": 0.9757522430257046, "top": 570, "right": 2730, "bottom": 1650, "left": 1085}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734434f.jpg"} -{"rects": [{"solidity": 0.9926818836854568, "top": 490, "right": 4955, "bottom": 3625, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720833f.jpg"} -{"rects": [{"solidity": 0.992683662449611, "top": 810, "right": 2030, "bottom": 3245, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700223f.jpg"} -{"rects": [{"solidity": 0.9926863465838038, "top": 315, "right": 1895, "bottom": 1200, "left": 740}], "shape": {"h": 3950, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727128f.jpg"} -{"rects": [{"solidity": 0.9926868192311864, "top": 660, "right": 4940, "bottom": 3570, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702691f.jpg"} -{"rects": [{"solidity": 0.9926882810834481, "top": 405, "right": 3025, "bottom": 1510, "left": 950}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709464f.jpg"} -{"rects": [{"solidity": 0.9926894260836259, "top": 550, "right": 3135, "bottom": 2155, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719431f.jpg"} -{"rects": [{"solidity": 0.992691202493628, "top": 2335, "right": 3135, "bottom": 3965, "left": 725}, {"solidity": 0.9919686027644915, "top": 450, "right": 3130, "bottom": 2080, "left": 725}, {"solidity": 0.9960738434692947, "top": 4170, "right": 3130, "bottom": 5765, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728700f.jpg"} -{"rects": [{"solidity": 0.9926924373855718, "top": 130, "right": 3315, "bottom": 2300, "left": 730}], "shape": {"h": 2555, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727185f.jpg"} -{"rects": [{"solidity": 0.9926926694626903, "top": 1170, "right": 3415, "bottom": 5060, "left": 520}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717372f.jpg"} -{"rects": [{"solidity": 0.9926930121642152, "top": 490, "right": 3155, "bottom": 2105, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700980f.jpg"} -{"rects": [{"solidity": 0.9926937732501677, "top": 1020, "right": 3575, "bottom": 5085, "left": 130}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712734f.jpg"} -{"rects": [{"solidity": 0.9926960753054748, "top": 2265, "right": 4995, "bottom": 3690, "left": 3175}, {"solidity": 0.9953438465930344, "top": 675, "right": 2780, "bottom": 2075, "left": 945}, {"solidity": 0.9957641688551794, "top": 690, "right": 4995, "bottom": 2095, "left": 3190}, {"solidity": 0.9933836665892827, "top": 2275, "right": 2790, "bottom": 3650, "left": 955}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726643f.jpg"} -{"rects": [{"solidity": 0.9926973562580884, "top": 940, "right": 1895, "bottom": 2960, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702003f.jpg"} -{"rects": [{"solidity": 0.992697901060104, "top": 945, "right": 1850, "bottom": 2890, "left": 470}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706748f.jpg"} -{"rects": [{"solidity": 0.9926982316029663, "top": 770, "right": 4885, "bottom": 3030, "left": 1250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731068f.jpg"} -{"rects": [{"solidity": 0.9926985421651819, "top": 435, "right": 3165, "bottom": 1855, "left": 1335}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726878f.jpg"} -{"rects": [{"solidity": 0.9927038626609442, "top": 560, "right": 4990, "bottom": 3545, "left": 1150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712881f.jpg"} -{"rects": [{"solidity": 0.9927051319782505, "top": 470, "right": 3080, "bottom": 1925, "left": 1250}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725585f.jpg"} -{"rects": [{"solidity": 0.992706469813435, "top": 850, "right": 3830, "bottom": 3245, "left": 2225}, {"solidity": 0.9942013046241385, "top": 855, "right": 1975, "bottom": 3240, "left": 370}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723635f.jpg"} -{"rects": [{"solidity": 0.9927076102631357, "top": 350, "right": 3205, "bottom": 2230, "left": 575}, {"solidity": 0.9962112666710902, "top": 2450, "right": 3080, "bottom": 4040, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730747f.jpg"} -{"rects": [{"solidity": 0.9927079203757764, "top": 150, "right": 3275, "bottom": 1890, "left": 850}, {"solidity": 0.9963871836381414, "top": 2285, "right": 3735, "bottom": 4705, "left": 2100}, {"solidity": 0.9973822663013416, "top": 2300, "right": 1820, "bottom": 4725, "left": 205}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724023f.jpg"} -{"rects": [{"solidity": 0.9927116934951666, "top": 850, "right": 2840, "bottom": 3285, "left": 865}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721249f.jpg"} -{"rects": [{"solidity": 0.992714631291945, "top": 425, "right": 3040, "bottom": 2320, "left": 890}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/701790f.jpg"} -{"rects": [{"solidity": 0.9927163079176536, "top": 750, "right": 5035, "bottom": 3570, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700788f.jpg"} -{"rects": [{"solidity": 0.9927177656727043, "top": 300, "right": 5090, "bottom": 3725, "left": 1040}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717196f.jpg"} -{"rects": [{"solidity": 0.9927191262951555, "top": 700, "right": 2890, "bottom": 2130, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702521f.jpg"} -{"rects": [{"solidity": 0.992723911983815, "top": 485, "right": 4835, "bottom": 3620, "left": 1085}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710573f.jpg"} -{"rects": [{"solidity": 0.9927240973058779, "top": 775, "right": 3650, "bottom": 3165, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723519f.jpg"} -{"rects": [{"solidity": 0.9927261758772103, "top": 2140, "right": 3220, "bottom": 4000, "left": 470}, {"solidity": 0.9951268702444768, "top": 485, "right": 3075, "bottom": 1920, "left": 1240}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727796f.jpg"} -{"rects": [{"solidity": 0.9927262532813416, "top": 795, "right": 3370, "bottom": 2560, "left": 1925}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704209f.jpg"} -{"rects": [{"solidity": 0.9927290613362064, "top": 445, "right": 3190, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710105f.jpg"} -{"rects": [{"solidity": 0.9927303525426121, "top": 1995, "right": 2325, "bottom": 3230, "left": 575}, {"solidity": 0.9923635111221957, "top": 480, "right": 2290, "bottom": 1720, "left": 565}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706076f.jpg"} -{"rects": [{"solidity": 0.9927312974925242, "top": 790, "right": 3865, "bottom": 3220, "left": 2250}, {"solidity": 0.9952443866014619, "top": 795, "right": 2025, "bottom": 3200, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720418f.jpg"} -{"rects": [{"solidity": 0.992734031767489, "top": 1465, "right": 3165, "bottom": 4670, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708968f.jpg"} -{"rects": [{"solidity": 0.9927355329150079, "top": 855, "right": 3285, "bottom": 2285, "left": 1310}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507582.jpg"} -{"rects": [{"solidity": 0.9927369562143564, "top": 470, "right": 3235, "bottom": 3620, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723106f.jpg"} -{"rects": [{"solidity": 0.9927374988055097, "top": 515, "right": 5140, "bottom": 3595, "left": 1180}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/719229f.jpg"} -{"rects": [{"solidity": 0.9927388382141142, "top": 605, "right": 3030, "bottom": 2200, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727523f.jpg"} -{"rects": [{"solidity": 0.9927421593116847, "top": 3950, "right": 2880, "bottom": 5445, "left": 1025}, {"solidity": 0.9955983227088736, "top": 450, "right": 2905, "bottom": 1880, "left": 1080}, {"solidity": 0.9956157173861324, "top": 2190, "right": 2885, "bottom": 3615, "left": 1050}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733244f.jpg"} -{"rects": [{"solidity": 0.9927426971318741, "top": 1030, "right": 3030, "bottom": 2125, "left": 1635}], "shape": {"h": 2990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1508969.jpg"} -{"rects": [{"solidity": 0.9927434863371151, "top": 420, "right": 3165, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700162f.jpg"} -{"rects": [{"solidity": 0.9927440287354815, "top": 410, "right": 3125, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701290f.jpg"} -{"rects": [{"solidity": 0.9927448371038494, "top": 970, "right": 1970, "bottom": 3060, "left": 745}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732380f.jpg"} -{"rects": [{"solidity": 0.9927462861827165, "top": 580, "right": 5080, "bottom": 3580, "left": 1215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716804f.jpg"} -{"rects": [{"solidity": 0.9927474726791747, "top": 2245, "right": 3030, "bottom": 3855, "left": 610}, {"solidity": 0.9950211691771459, "top": 410, "right": 3060, "bottom": 2005, "left": 645}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/730611f.jpg"} -{"rects": [{"solidity": 0.9927486319978571, "top": 645, "right": 3305, "bottom": 2295, "left": 865}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700474f.jpg"} -{"rects": [{"solidity": 0.9927507686640848, "top": 455, "right": 2660, "bottom": 3670, "left": 1105}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714857f.jpg"} -{"rects": [{"solidity": 0.9927515485919526, "top": 410, "right": 3145, "bottom": 2030, "left": 725}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730227f.jpg"} -{"rects": [{"solidity": 0.9927519046149348, "top": 800, "right": 2075, "bottom": 3215, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720047f.jpg"} -{"rects": [{"solidity": 0.9927519612538533, "top": 570, "right": 4135, "bottom": 2720, "left": 635}], "shape": {"h": 5990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/464826.jpg"} -{"rects": [{"solidity": 0.9927519615564838, "top": 395, "right": 3195, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724668f.jpg"} -{"rects": [{"solidity": 0.9927520598663293, "top": 1170, "right": 3435, "bottom": 5020, "left": 425}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722768f.jpg"} -{"rects": [{"solidity": 0.992755178204889, "top": 1105, "right": 2730, "bottom": 3780, "left": 1710}], "shape": {"h": 6030, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465716.jpg"} -{"rects": [{"solidity": 0.9927557429235138, "top": 470, "right": 3220, "bottom": 2035, "left": 860}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721104f.jpg"} -{"rects": [{"solidity": 0.992755809978968, "top": 860, "right": 4375, "bottom": 3320, "left": 1035}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723680f.jpg"} -{"rects": [{"solidity": 0.9927558466854329, "top": 480, "right": 3160, "bottom": 2075, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717806f.jpg"} -{"rects": [{"solidity": 0.9927559297365416, "top": 175, "right": 3350, "bottom": 4060, "left": 585}, {"solidity": 0.995501570206626, "top": 4075, "right": 3370, "bottom": 6010, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704086f.jpg"} -{"rects": [{"solidity": 0.9927577928747324, "top": 1135, "right": 3085, "bottom": 4875, "left": 885}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721336f.jpg"} -{"rects": [{"solidity": 0.9927597885753143, "top": 405, "right": 3175, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715268f.jpg"} -{"rects": [{"solidity": 0.9927597955706985, "top": 1025, "right": 3235, "bottom": 2150, "left": 1585}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509505.jpg"} -{"rects": [{"solidity": 0.9927605894432785, "top": 3910, "right": 4005, "bottom": 6220, "left": 360}, {"solidity": 0.9986236453691175, "top": 1190, "right": 3935, "bottom": 3465, "left": 365}], "shape": {"h": 6910, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706363f.jpg"} -{"rects": [{"solidity": 0.9927607448660385, "top": 420, "right": 3210, "bottom": 2050, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700947f.jpg"} -{"rects": [{"solidity": 0.9927608872402882, "top": 2295, "right": 3130, "bottom": 3910, "left": 715}, {"solidity": 0.9943967827536656, "top": 430, "right": 3125, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729188f.jpg"} -{"rects": [{"solidity": 0.9927619549122811, "top": 680, "right": 4895, "bottom": 3500, "left": 1170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733916f.jpg"} -{"rects": [{"solidity": 0.9927635788454855, "top": 600, "right": 5060, "bottom": 3600, "left": 1175}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723202f.jpg"} -{"rects": [{"solidity": 0.9927692397966532, "top": 635, "right": 3195, "bottom": 2570, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703094f.jpg"} -{"rects": [{"solidity": 0.9927701985131934, "top": 465, "right": 3635, "bottom": 2455, "left": 840}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517091.jpg"} -{"rects": [{"solidity": 0.9927737924438068, "top": 700, "right": 3375, "bottom": 2630, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715205f.jpg"} -{"rects": [{"solidity": 0.9927756938904144, "top": 425, "right": 2890, "bottom": 1940, "left": 990}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/700600f.jpg"} -{"rects": [{"solidity": 0.9927758699160081, "top": 895, "right": 1900, "bottom": 3045, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703848f.jpg"} -{"rects": [{"solidity": 0.9927770371887957, "top": 295, "right": 5020, "bottom": 3720, "left": 985}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711443f.jpg"} -{"rects": [{"solidity": 0.9927779495560758, "top": 2600, "right": 2325, "bottom": 4025, "left": 310}, {"solidity": 0.9919138539979286, "top": 965, "right": 2310, "bottom": 2385, "left": 295}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509377.jpg"} -{"rects": [{"solidity": 0.9927785839575118, "top": 2175, "right": 2705, "bottom": 3600, "left": 880}, {"solidity": 0.9940677675505415, "top": 705, "right": 2685, "bottom": 2140, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725556f.jpg"} -{"rects": [{"solidity": 0.9927810478907668, "top": 720, "right": 4865, "bottom": 3425, "left": 1110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700839f.jpg"} -{"rects": [{"solidity": 0.9927817960274005, "top": 375, "right": 5115, "bottom": 3640, "left": 1150}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713106f.jpg"} -{"rects": [{"solidity": 0.9927849333176944, "top": 815, "right": 2055, "bottom": 3245, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731593f.jpg"} -{"rects": [{"solidity": 0.9927853671032195, "top": 430, "right": 3165, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734682f.jpg"} -{"rects": [{"solidity": 0.9927857641254983, "top": 495, "right": 3960, "bottom": 2580, "left": 2475}, {"solidity": 0.9939589783915729, "top": 495, "right": 2185, "bottom": 2575, "left": 700}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716204f.jpg"} -{"rects": [{"solidity": 0.9927861324908628, "top": 345, "right": 4010, "bottom": 2805, "left": 2395}, {"solidity": 0.9963034085453673, "top": 1580, "right": 2190, "bottom": 2780, "left": 655}, {"solidity": 0.9935762638628834, "top": 335, "right": 2155, "bottom": 1515, "left": 665}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716531f.jpg"} -{"rects": [{"solidity": 0.992788217369223, "top": 555, "right": 2575, "bottom": 2000, "left": 745}, {"solidity": 0.9956278891547089, "top": 2025, "right": 2615, "bottom": 3415, "left": 755}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704475f.jpg"} -{"rects": [{"solidity": 0.9927918189297262, "top": 380, "right": 2690, "bottom": 1815, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725856f.jpg"} -{"rects": [{"solidity": 0.9927928233478608, "top": 1085, "right": 3460, "bottom": 4915, "left": 460}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722157f.jpg"} -{"rects": [{"solidity": 0.9927936270494236, "top": 410, "right": 2345, "bottom": 1610, "left": 545}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716368f.jpg"} -{"rects": [{"solidity": 0.9927957615226543, "top": 440, "right": 5035, "bottom": 3470, "left": 1195}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706504f.jpg"} -{"rects": [{"solidity": 0.9927978827315357, "top": 690, "right": 2560, "bottom": 2190, "left": 470}, {"solidity": 0.9917982432943723, "top": 2405, "right": 2535, "bottom": 3905, "left": 445}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716230f.jpg"} -{"rects": [{"solidity": 0.9927992471187047, "top": 705, "right": 1955, "bottom": 3100, "left": 360}, {"solidity": 0.9970614134567918, "top": 695, "right": 3815, "bottom": 3075, "left": 2225}, {"solidity": 0.996869027092773, "top": 695, "right": 5665, "bottom": 3080, "left": 4085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733266f.jpg"} -{"rects": [{"solidity": 0.9927992785451685, "top": 3105, "right": 3450, "bottom": 5665, "left": 190}, {"solidity": 0.9899832538807546, "top": 500, "right": 3545, "bottom": 3025, "left": 235}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734487f.jpg"} -{"rects": [{"solidity": 0.9927995698633056, "top": 660, "right": 2750, "bottom": 3420, "left": 825}, {"solidity": 0.9953016252299406, "top": 2035, "right": 5395, "bottom": 3435, "left": 3470}, {"solidity": 0.9952853382697481, "top": 615, "right": 5365, "bottom": 2020, "left": 3490}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730775f.jpg"} -{"rects": [{"solidity": 0.9928009746372799, "top": 2190, "right": 2955, "bottom": 3730, "left": 1025}, {"solidity": 0.9948675070748649, "top": 360, "right": 2945, "bottom": 1900, "left": 1020}, {"solidity": 0.9965918735989902, "top": 4035, "right": 2935, "bottom": 5545, "left": 1020}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700089f.jpg"} -{"rects": [{"solidity": 0.9928017854515132, "top": 705, "right": 2555, "bottom": 2190, "left": 470}, {"solidity": 0.99312154797925, "top": 2475, "right": 2535, "bottom": 3965, "left": 450}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716203f.jpg"} -{"rects": [{"solidity": 0.9928031135543637, "top": 990, "right": 5445, "bottom": 2950, "left": 735}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702702f.jpg"} -{"rects": [{"solidity": 0.9928032648007559, "top": 660, "right": 2510, "bottom": 2150, "left": 415}, {"solidity": 0.9924512837325574, "top": 2445, "right": 2525, "bottom": 3925, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716156f.jpg"} -{"rects": [{"solidity": 0.9928034575061974, "top": 725, "right": 5755, "bottom": 3350, "left": 4060}, {"solidity": 0.997206276933084, "top": 725, "right": 3870, "bottom": 3135, "left": 2260}, {"solidity": 0.9974597798475868, "top": 745, "right": 2000, "bottom": 3145, "left": 395}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718200f.jpg"} -{"rects": [{"solidity": 0.992804127728304, "top": 605, "right": 2565, "bottom": 1840, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702421f.jpg"} -{"rects": [{"solidity": 0.9928045837742061, "top": 240, "right": 5220, "bottom": 3620, "left": 1185}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730890f.jpg"} -{"rects": [{"solidity": 0.9928077364366498, "top": 995, "right": 2205, "bottom": 3410, "left": 585}, {"solidity": 0.9853933040793109, "top": 530, "right": 4395, "bottom": 1925, "left": 3005}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708209f.jpg"} -{"rects": [{"solidity": 0.9928084328882643, "top": 610, "right": 4930, "bottom": 3600, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709901f.jpg"} -{"rects": [{"solidity": 0.9928130576428794, "top": 785, "right": 2010, "bottom": 3185, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711574f.jpg"} -{"rects": [{"solidity": 0.9928158161726398, "top": 445, "right": 2940, "bottom": 1895, "left": 1020}, {"solidity": 0.9765405137672513, "top": 2325, "right": 2935, "bottom": 3750, "left": 955}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733882f.jpg"} -{"rects": [{"solidity": 0.9928190564402342, "top": 1120, "right": 2505, "bottom": 4190, "left": 230}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507735.jpg"} -{"rects": [{"solidity": 0.9928190773019354, "top": 450, "right": 3155, "bottom": 1780, "left": 1180}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706695f.jpg"} -{"rects": [{"solidity": 0.9928234364746646, "top": 865, "right": 3480, "bottom": 2300, "left": 1360}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507663.jpg"} -{"rects": [{"solidity": 0.992824403537791, "top": 480, "right": 5090, "bottom": 3660, "left": 1065}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708496f.jpg"} -{"rects": [{"solidity": 0.9928250790682355, "top": 425, "right": 5045, "bottom": 3465, "left": 1230}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727869f.jpg"} -{"rects": [{"solidity": 0.9928251552944576, "top": 370, "right": 3360, "bottom": 2300, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733537f.jpg"} -{"rects": [{"solidity": 0.992826023450192, "top": 625, "right": 5035, "bottom": 3670, "left": 1100}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708518f.jpg"} -{"rects": [{"solidity": 0.9928261765029751, "top": 475, "right": 2200, "bottom": 2560, "left": 715}, {"solidity": 0.9943087735652345, "top": 475, "right": 3925, "bottom": 2560, "left": 2440}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716201f.jpg"} -{"rects": [{"solidity": 0.9928263312884976, "top": 390, "right": 3095, "bottom": 2010, "left": 600}, {"solidity": 0.9995744871450327, "top": 2240, "right": 3090, "bottom": 3860, "left": 665}, {"solidity": 0.9975352945177307, "top": 4090, "right": 3080, "bottom": 5700, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734320f.jpg"} -{"rects": [{"solidity": 0.9928272278604199, "top": 2285, "right": 2965, "bottom": 3800, "left": 1035}, {"solidity": 0.9911148343634975, "top": 435, "right": 2975, "bottom": 1960, "left": 1060}, {"solidity": 0.9911897170973868, "top": 4145, "right": 2945, "bottom": 5650, "left": 1025}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700069f.jpg"} -{"rects": [{"solidity": 0.9928276770324271, "top": 435, "right": 3220, "bottom": 2050, "left": 795}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/700832f.jpg"} -{"rects": [{"solidity": 0.992828698535415, "top": 815, "right": 2110, "bottom": 3205, "left": 515}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722257f.jpg"} -{"rects": [{"solidity": 0.9928288122388271, "top": 625, "right": 2510, "bottom": 2110, "left": 570}, {"solidity": 0.9924817739975699, "top": 2170, "right": 2460, "bottom": 3645, "left": 510}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715407f.jpg"} -{"rects": [{"solidity": 0.9928299818788995, "top": 275, "right": 5060, "bottom": 3670, "left": 1055}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723682f.jpg"} -{"rects": [{"solidity": 0.9928301765028557, "top": 4115, "right": 2965, "bottom": 5755, "left": 535}, {"solidity": 0.9966721694643762, "top": 2295, "right": 2980, "bottom": 3895, "left": 565}, {"solidity": 0.9912948468224727, "top": 405, "right": 3005, "bottom": 2040, "left": 595}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730920f.jpg"} -{"rects": [{"solidity": 0.9928304114633365, "top": 860, "right": 2060, "bottom": 2695, "left": 685}, {"solidity": 0.9893205929881261, "top": 965, "right": 3795, "bottom": 2585, "left": 2570}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704503f.jpg"} -{"rects": [{"solidity": 0.99283167352001, "top": 860, "right": 3245, "bottom": 2880, "left": 1545}, {"solidity": 0.9906442901234568, "top": 990, "right": 1490, "bottom": 2940, "left": 470}, {"solidity": 0.9943847243705562, "top": 985, "right": 4320, "bottom": 2925, "left": 3310}], "shape": {"h": 5985, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465635.jpg"} -{"rects": [{"solidity": 0.9928329254896499, "top": 2235, "right": 3100, "bottom": 3890, "left": 645}, {"solidity": 0.9978864792400305, "top": 385, "right": 3100, "bottom": 2005, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701536f.jpg"} -{"rects": [{"solidity": 0.9928346465776814, "top": 620, "right": 3575, "bottom": 4115, "left": 460}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720105f.jpg"} -{"rects": [{"solidity": 0.9928364568640035, "top": 480, "right": 3155, "bottom": 2110, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/713988f.jpg"} -{"rects": [{"solidity": 0.9928388534746944, "top": 620, "right": 4910, "bottom": 3610, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717811f.jpg"} -{"rects": [{"solidity": 0.9928393645994865, "top": 460, "right": 3090, "bottom": 1545, "left": 1280}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726468f.jpg"} -{"rects": [{"solidity": 0.9928407508385148, "top": 790, "right": 2045, "bottom": 3200, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720974f.jpg"} -{"rects": [{"solidity": 0.9928455485373514, "top": 985, "right": 1850, "bottom": 3010, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700253f.jpg"} -{"rects": [{"solidity": 0.9928492912399228, "top": 600, "right": 4925, "bottom": 3605, "left": 1260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704619f.jpg"} -{"rects": [{"solidity": 0.9928499392309482, "top": 740, "right": 3795, "bottom": 3160, "left": 2180}, {"solidity": 0.9957359914392583, "top": 735, "right": 1925, "bottom": 3140, "left": 325}, {"solidity": 0.975810344676257, "top": 990, "right": 5560, "bottom": 2935, "left": 4080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709796f.jpg"} -{"rects": [{"solidity": 0.99285142399634, "top": 950, "right": 3255, "bottom": 2290, "left": 1250}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507587.jpg"} -{"rects": [{"solidity": 0.9928520003258916, "top": 1055, "right": 4950, "bottom": 3055, "left": 1150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722861f.jpg"} -{"rects": [{"solidity": 0.9928522921663185, "top": 2265, "right": 2910, "bottom": 3765, "left": 945}, {"solidity": 0.9483822728021595, "top": 485, "right": 2920, "bottom": 1995, "left": 930}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717504f.jpg"} -{"rects": [{"solidity": 0.9928527995693737, "top": 545, "right": 3090, "bottom": 2140, "left": 700}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710837f.jpg"} -{"rects": [{"solidity": 0.9928533222393914, "top": 1130, "right": 1460, "bottom": 2775, "left": 405}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721597f.jpg"} -{"rects": [{"solidity": 0.9928538184390361, "top": 370, "right": 5295, "bottom": 3445, "left": 1435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718852f.jpg"} -{"rects": [{"solidity": 0.9928547016892881, "top": 380, "right": 3345, "bottom": 2280, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708256f.jpg"} -{"rects": [{"solidity": 0.9928558110322764, "top": 915, "right": 3865, "bottom": 3315, "left": 2255}, {"solidity": 0.9939308980502232, "top": 915, "right": 2025, "bottom": 3315, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709451f.jpg"} -{"rects": [{"solidity": 0.992857620050913, "top": 710, "right": 5480, "bottom": 3725, "left": 1260}], "shape": {"h": 4410, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708392f.jpg"} -{"rects": [{"solidity": 0.9928597620698811, "top": 1035, "right": 3530, "bottom": 5035, "left": 295}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717148f.jpg"} -{"rects": [{"solidity": 0.9928609132556973, "top": 735, "right": 3970, "bottom": 3150, "left": 2350}, {"solidity": 0.9932455318894579, "top": 740, "right": 2070, "bottom": 3130, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721251f.jpg"} -{"rects": [{"solidity": 0.9928609416920117, "top": 450, "right": 3145, "bottom": 3830, "left": 625}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714369f.jpg"} -{"rects": [{"solidity": 0.9928610265851402, "top": 935, "right": 4650, "bottom": 2980, "left": 1400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721440f.jpg"} -{"rects": [{"solidity": 0.9928614878750514, "top": 470, "right": 3195, "bottom": 2075, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700899f.jpg"} -{"rects": [{"solidity": 0.992861596160631, "top": 430, "right": 2310, "bottom": 3665, "left": 680}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714461f.jpg"} -{"rects": [{"solidity": 0.9928616388189517, "top": 720, "right": 2685, "bottom": 3600, "left": 830}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705757f.jpg"} -{"rects": [{"solidity": 0.992861978201878, "top": 600, "right": 3700, "bottom": 2750, "left": 650}], "shape": {"h": 6860, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711203f.jpg"} -{"rects": [{"solidity": 0.9928641199285595, "top": 2365, "right": 2550, "bottom": 3845, "left": 465}, {"solidity": 0.999088283195816, "top": 625, "right": 2535, "bottom": 2095, "left": 470}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716216f.jpg"} -{"rects": [{"solidity": 0.9928642008578679, "top": 585, "right": 4870, "bottom": 3590, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717509f.jpg"} -{"rects": [{"solidity": 0.9928649367477069, "top": 2415, "right": 2040, "bottom": 3485, "left": 610}, {"solidity": 0.9954657873042044, "top": 795, "right": 1850, "bottom": 2210, "left": 810}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729587f.jpg"} -{"rects": [{"solidity": 0.9928659273773294, "top": 790, "right": 1850, "bottom": 2840, "left": 655}, {"solidity": 0.9949924859866394, "top": 785, "right": 3300, "bottom": 2790, "left": 2135}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713728f.jpg"} -{"rects": [{"solidity": 0.9928666989268737, "top": 565, "right": 2180, "bottom": 1835, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704705f.jpg"} -{"rects": [{"solidity": 0.9928702242063981, "top": 730, "right": 4700, "bottom": 3240, "left": 1435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729917f.jpg"} -{"rects": [{"solidity": 0.992870560002794, "top": 685, "right": 4835, "bottom": 3470, "left": 1220}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713496f.jpg"} -{"rects": [{"solidity": 0.9928707509076313, "top": 325, "right": 1890, "bottom": 1230, "left": 715}, {"solidity": 0.986989897876211, "top": 2625, "right": 1810, "bottom": 3450, "left": 680}, {"solidity": 0.9929447852760737, "top": 1510, "right": 1830, "bottom": 2335, "left": 715}], "shape": {"h": 3935, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727161f.jpg"} -{"rects": [{"solidity": 0.992871436517425, "top": 685, "right": 4910, "bottom": 3365, "left": 1170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701439f.jpg"} -{"rects": [{"solidity": 0.9928717037062794, "top": 1070, "right": 1935, "bottom": 3005, "left": 420}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722522f.jpg"} -{"rects": [{"solidity": 0.9928721937514633, "top": 485, "right": 5060, "bottom": 3655, "left": 1060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702863f.jpg"} -{"rects": [{"solidity": 0.9928725855883681, "top": 2120, "right": 2665, "bottom": 3565, "left": 815}, {"solidity": 0.997147385103011, "top": 2120, "right": 5265, "bottom": 3550, "left": 3425}, {"solidity": 0.9951219512195122, "top": 635, "right": 5275, "bottom": 2060, "left": 3430}, {"solidity": 0.9993011676324142, "top": 635, "right": 2640, "bottom": 2060, "left": 820}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704304f.jpg"} -{"rects": [{"solidity": 0.9928731772740675, "top": 760, "right": 4995, "bottom": 3550, "left": 1200}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722434f.jpg"} -{"rects": [{"solidity": 0.9928783328450044, "top": 520, "right": 2870, "bottom": 3685, "left": 680}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714067f.jpg"} -{"rects": [{"solidity": 0.9928786484904241, "top": 530, "right": 4945, "bottom": 3625, "left": 1050}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718016f.jpg"} -{"rects": [{"solidity": 0.9928786743275877, "top": 590, "right": 4865, "bottom": 3620, "left": 1100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709906f.jpg"} -{"rects": [{"solidity": 0.9928799579129324, "top": 290, "right": 4975, "bottom": 3670, "left": 965}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722708f.jpg"} -{"rects": [{"solidity": 0.9928801412985608, "top": 435, "right": 2895, "bottom": 1995, "left": 965}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724125f.jpg"} -{"rects": [{"solidity": 0.9928831822715454, "top": 1795, "right": 3060, "bottom": 3110, "left": 840}, {"solidity": 0.9925180497136942, "top": 350, "right": 3060, "bottom": 1680, "left": 860}, {"solidity": 0.9835472282688532, "top": 3205, "right": 3060, "bottom": 4510, "left": 885}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702223f.jpg"} -{"rects": [{"solidity": 0.9928855113653803, "top": 415, "right": 3135, "bottom": 2140, "left": 725}, {"solidity": 0.995338430573313, "top": 2360, "right": 3145, "bottom": 4025, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700941f.jpg"} -{"rects": [{"solidity": 0.9928857348952036, "top": 390, "right": 3335, "bottom": 2260, "left": 670}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713798f.jpg"} -{"rects": [{"solidity": 0.9928865944251346, "top": 2255, "right": 2865, "bottom": 3815, "left": 950}, {"solidity": 0.9930697105584998, "top": 410, "right": 2875, "bottom": 1960, "left": 965}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711830f.jpg"} -{"rects": [{"solidity": 0.9928891923527117, "top": 2120, "right": 2645, "bottom": 3545, "left": 820}, {"solidity": 0.9944909673487842, "top": 660, "right": 2645, "bottom": 2065, "left": 820}, {"solidity": 0.9941336273081618, "top": 640, "right": 5300, "bottom": 2055, "left": 3470}, {"solidity": 0.9961971928368941, "top": 2140, "right": 5310, "bottom": 3540, "left": 3480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725097f.jpg"} -{"rects": [{"solidity": 0.9928905878215958, "top": 595, "right": 4865, "bottom": 3615, "left": 1090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713821f.jpg"} -{"rects": [{"solidity": 0.9928908805041599, "top": 375, "right": 3215, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704743f.jpg"} -{"rects": [{"solidity": 0.9928940456854546, "top": 2105, "right": 3050, "bottom": 3655, "left": 1105}, {"solidity": 0.9929659371568114, "top": 425, "right": 3050, "bottom": 1835, "left": 1120}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/706505f.jpg"} -{"rects": [{"solidity": 0.9928951697516871, "top": 2280, "right": 3195, "bottom": 3915, "left": 780}, {"solidity": 0.9942960412969206, "top": 4130, "right": 3180, "bottom": 5770, "left": 755}, {"solidity": 0.9952851178556938, "top": 440, "right": 3210, "bottom": 2050, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710808f.jpg"} -{"rects": [{"solidity": 0.9928953893182566, "top": 550, "right": 5025, "bottom": 3585, "left": 1245}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709833f.jpg"} -{"rects": [{"solidity": 0.9928987747557101, "top": 245, "right": 5145, "bottom": 3725, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709469f.jpg"} -{"rects": [{"solidity": 0.992900306089336, "top": 440, "right": 2985, "bottom": 1890, "left": 980}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701680f.jpg"} -{"rects": [{"solidity": 0.9929030341480116, "top": 430, "right": 3745, "bottom": 2395, "left": 1165}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715896f.jpg"} -{"rects": [{"solidity": 0.9929039576506176, "top": 630, "right": 5225, "bottom": 3625, "left": 3225}, {"solidity": 0.9957057123615811, "top": 640, "right": 2965, "bottom": 3605, "left": 970}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723900f.jpg"} -{"rects": [{"solidity": 0.9929056670794338, "top": 440, "right": 2940, "bottom": 1855, "left": 1130}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725424f.jpg"} -{"rects": [{"solidity": 0.992906685547208, "top": 815, "right": 2075, "bottom": 3230, "left": 450}, {"solidity": 0.9947833399561967, "top": 935, "right": 3450, "bottom": 3095, "left": 2140}, {"solidity": 0.9943962409820895, "top": 1025, "right": 4705, "bottom": 3075, "left": 3475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717544f.jpg"} -{"rects": [{"solidity": 0.9929070662077344, "top": 130, "right": 7010, "bottom": 2380, "left": 130}], "shape": {"h": 2510, "w": 7140}, "file": "/usr/local/google/home/danvk/milstein/1113242.jpg"} -{"rects": [{"solidity": 0.9929074581401277, "top": 725, "right": 2030, "bottom": 3165, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720684f.jpg"} -{"rects": [{"solidity": 0.9929113513825473, "top": 565, "right": 4965, "bottom": 3570, "left": 1185}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709924f.jpg"} -{"rects": [{"solidity": 0.9929116412063106, "top": 1115, "right": 3325, "bottom": 4920, "left": 345}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724109f.jpg"} -{"rects": [{"solidity": 0.9929144174399032, "top": 550, "right": 3195, "bottom": 1820, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702451f.jpg"} -{"rects": [{"solidity": 0.9929146880985648, "top": 460, "right": 3370, "bottom": 2640, "left": 980}], "shape": {"h": 2800, "w": 4390}, "file": "/usr/local/google/home/danvk/milstein/708839f.jpg"} -{"rects": [{"solidity": 0.9929163135437538, "top": 560, "right": 2575, "bottom": 1975, "left": 740}, {"solidity": 0.9958107176703713, "top": 2020, "right": 2515, "bottom": 3385, "left": 790}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707425f.jpg"} -{"rects": [{"solidity": 0.9929163826260197, "top": 700, "right": 2130, "bottom": 3465, "left": 305}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711824f.jpg"} -{"rects": [{"solidity": 0.9929173329147823, "top": 2335, "right": 3050, "bottom": 3765, "left": 1240}, {"solidity": 0.9963465579038437, "top": 4110, "right": 3035, "bottom": 5535, "left": 1240}, {"solidity": 0.9964126762030932, "top": 570, "right": 3070, "bottom": 1965, "left": 1245}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726874f.jpg"} -{"rects": [{"solidity": 0.992917664971608, "top": 2240, "right": 3110, "bottom": 3855, "left": 715}, {"solidity": 0.9957816732696031, "top": 400, "right": 3115, "bottom": 1985, "left": 725}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701360f.jpg"} -{"rects": [{"solidity": 0.992917732248142, "top": 2270, "right": 3140, "bottom": 3885, "left": 720}, {"solidity": 0.9958023990065787, "top": 475, "right": 3150, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720556f.jpg"} -{"rects": [{"solidity": 0.9929188191292967, "top": 550, "right": 3285, "bottom": 2370, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707882f.jpg"} -{"rects": [{"solidity": 0.9929206665759059, "top": 805, "right": 1970, "bottom": 3120, "left": 490}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707235f.jpg"} -{"rects": [{"solidity": 0.9929212846473123, "top": 430, "right": 5125, "bottom": 3700, "left": 1055}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708604f.jpg"} -{"rects": [{"solidity": 0.9929213833801458, "top": 950, "right": 2035, "bottom": 2675, "left": 485}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707086f.jpg"} -{"rects": [{"solidity": 0.9929214149236496, "top": 1170, "right": 4785, "bottom": 2830, "left": 1340}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700511f.jpg"} -{"rects": [{"solidity": 0.9929217842555946, "top": 435, "right": 2965, "bottom": 1870, "left": 1145}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725584f.jpg"} -{"rects": [{"solidity": 0.992922746375785, "top": 430, "right": 2395, "bottom": 1625, "left": 600}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715966f.jpg"} -{"rects": [{"solidity": 0.9929227716975916, "top": 410, "right": 3250, "bottom": 2020, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700374f.jpg"} -{"rects": [{"solidity": 0.9929235339521187, "top": 500, "right": 2460, "bottom": 1700, "left": 825}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702719f.jpg"} -{"rects": [{"solidity": 0.9929239686790279, "top": 820, "right": 3265, "bottom": 2255, "left": 1155}], "shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508545.jpg"} -{"rects": [{"solidity": 0.9929275935479241, "top": 2385, "right": 1950, "bottom": 3435, "left": 395}, {"solidity": 0.9924403969793654, "top": 1325, "right": 1965, "bottom": 2370, "left": 415}, {"solidity": 0.9923294144300868, "top": 260, "right": 1970, "bottom": 1290, "left": 435}], "shape": {"h": 3950, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727118f.jpg"} -{"rects": [{"solidity": 0.9929280135106607, "top": 495, "right": 1295, "bottom": 2025, "left": 270}, {"solidity": 0.9942310673749316, "top": 495, "right": 2465, "bottom": 2020, "left": 1450}], "shape": {"h": 2545, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718657f.jpg"} -{"rects": [{"solidity": 0.9929281372899535, "top": 2165, "right": 3000, "bottom": 3840, "left": 890}, {"solidity": 0.9872255752999736, "top": 505, "right": 2805, "bottom": 1825, "left": 1145}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716865f.jpg"} -{"rects": [{"solidity": 0.9929305746173965, "top": 795, "right": 2070, "bottom": 3210, "left": 455}, {"solidity": 0.9938083104791914, "top": 800, "right": 3915, "bottom": 3220, "left": 2310}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711827f.jpg"} -{"rects": [{"solidity": 0.9929320641162755, "top": 780, "right": 2020, "bottom": 3175, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723479f.jpg"} -{"rects": [{"solidity": 0.9929321848543308, "top": 680, "right": 2625, "bottom": 3495, "left": 790}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703387f.jpg"} -{"rects": [{"solidity": 0.9929333799557087, "top": 520, "right": 2785, "bottom": 2900, "left": 1180}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707685f.jpg"} -{"rects": [{"solidity": 0.9929354476007805, "top": 850, "right": 1965, "bottom": 3050, "left": 560}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713759f.jpg"} -{"rects": [{"solidity": 0.9929361370025808, "top": 435, "right": 3040, "bottom": 1910, "left": 1105}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700338f.jpg"} -{"rects": [{"solidity": 0.9929366409448915, "top": 690, "right": 4835, "bottom": 3505, "left": 1200}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715150f.jpg"} -{"rects": [{"solidity": 0.9929368066463168, "top": 465, "right": 3155, "bottom": 2100, "left": 740}, {"solidity": 0.9951969654253274, "top": 2275, "right": 2885, "bottom": 3640, "left": 1045}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712080f.jpg"} -{"rects": [{"solidity": 0.9929369275729092, "top": 340, "right": 5030, "bottom": 3685, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722213f.jpg"} -{"rects": [{"solidity": 0.9929380794878894, "top": 680, "right": 2750, "bottom": 2100, "left": 920}, {"solidity": 0.9969272941386033, "top": 2125, "right": 2715, "bottom": 3545, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704738f.jpg"} -{"rects": [{"solidity": 0.9929386595491474, "top": 535, "right": 3130, "bottom": 3500, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713290f.jpg"} -{"rects": [{"solidity": 0.9929397413702816, "top": 915, "right": 4365, "bottom": 3160, "left": 1635}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713221f.jpg"} -{"rects": [{"solidity": 0.9929426830135882, "top": 2270, "right": 3150, "bottom": 3745, "left": 1305}, {"solidity": 0.9953917929118437, "top": 475, "right": 3160, "bottom": 1925, "left": 1330}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725751f.jpg"} -{"rects": [{"solidity": 0.9929432499915265, "top": 3280, "right": 3315, "bottom": 5275, "left": 500}, {"solidity": 0.948046154294515, "top": 655, "right": 3340, "bottom": 2650, "left": 530}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709752f.jpg"} -{"rects": [{"solidity": 0.9929454339763326, "top": 2260, "right": 3120, "bottom": 3885, "left": 695}, {"solidity": 0.9970464584969253, "top": 415, "right": 3140, "bottom": 2025, "left": 720}, {"solidity": 0.995439562042376, "top": 4130, "right": 3110, "bottom": 5745, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734822f.jpg"} -{"rects": [{"solidity": 0.9929456473883006, "top": 450, "right": 3155, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724296f.jpg"} -{"rects": [{"solidity": 0.9929483470719315, "top": 645, "right": 2930, "bottom": 2455, "left": 1705}, {"solidity": 0.996490532599571, "top": 650, "right": 1555, "bottom": 2455, "left": 355}, {"solidity": 0.9947746761114735, "top": 650, "right": 4285, "bottom": 2450, "left": 3075}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716497f.jpg"} -{"rects": [{"solidity": 0.9929489158114052, "top": 700, "right": 2025, "bottom": 3150, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730446f.jpg"} -{"rects": [{"solidity": 0.9929497228718529, "top": 850, "right": 1855, "bottom": 2880, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719659f.jpg"} -{"rects": [{"solidity": 0.9929513512095809, "top": 2080, "right": 3020, "bottom": 3705, "left": 605}, {"solidity": 0.9942975737510501, "top": 3960, "right": 2995, "bottom": 5570, "left": 590}, {"solidity": 0.9949480849253514, "top": 545, "right": 2925, "bottom": 1860, "left": 725}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731595f.jpg"} -{"rects": [{"solidity": 0.992958993888938, "top": 2205, "right": 2910, "bottom": 3740, "left": 1055}, {"solidity": 0.9864773767271591, "top": 410, "right": 2895, "bottom": 1955, "left": 1055}, {"solidity": 0.9603937677436191, "top": 4060, "right": 2885, "bottom": 5630, "left": 1040}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708713f.jpg"} -{"rects": [{"solidity": 0.992961360803578, "top": 395, "right": 2975, "bottom": 1915, "left": 1040}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700328f.jpg"} -{"rects": [{"solidity": 0.9929636703712134, "top": 380, "right": 3105, "bottom": 1990, "left": 720}, {"solidity": 0.9977316332240787, "top": 2255, "right": 3140, "bottom": 3840, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/734583f.jpg"} -{"rects": [{"solidity": 0.9929645925433631, "top": 1050, "right": 3555, "bottom": 5100, "left": 265}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709334f.jpg"} -{"rects": [{"solidity": 0.992965193126744, "top": 2225, "right": 5145, "bottom": 3660, "left": 3320}, {"solidity": 0.9925997362671968, "top": 560, "right": 5155, "bottom": 1985, "left": 3345}, {"solidity": 0.994261955083256, "top": 570, "right": 2765, "bottom": 1990, "left": 955}, {"solidity": 0.9943616471615108, "top": 2220, "right": 2745, "bottom": 3635, "left": 945}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725191f.jpg"} -{"rects": [{"solidity": 0.9929652127274768, "top": 480, "right": 1740, "bottom": 1375, "left": 600}], "shape": {"h": 2535, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727183f.jpg"} -{"rects": [{"solidity": 0.9929676747449108, "top": 510, "right": 3210, "bottom": 2105, "left": 840}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/711516f.jpg"} -{"rects": [{"solidity": 0.9929687292318325, "top": 445, "right": 3020, "bottom": 1910, "left": 1035}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720814f.jpg"} -{"rects": [{"solidity": 0.9929695376238548, "top": 425, "right": 2885, "bottom": 1945, "left": 990}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700703f.jpg"} -{"rects": [{"solidity": 0.9929704879133917, "top": 500, "right": 4905, "bottom": 3515, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709953f.jpg"} -{"rects": [{"solidity": 0.9929710885314247, "top": 2475, "right": 3595, "bottom": 4290, "left": 870}, {"solidity": 0.995060240650947, "top": 420, "right": 3600, "bottom": 2215, "left": 895}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711287f.jpg"} -{"rects": [{"solidity": 0.9929736475186363, "top": 1020, "right": 4985, "bottom": 3010, "left": 3250}, {"solidity": 0.9964276418286551, "top": 1135, "right": 3085, "bottom": 2865, "left": 1140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717915f.jpg"} -{"rects": [{"solidity": 0.9929751624201267, "top": 790, "right": 2050, "bottom": 3175, "left": 460}, {"solidity": 0.9981458716092079, "top": 815, "right": 3855, "bottom": 3190, "left": 2285}, {"solidity": 0.9970785375761679, "top": 835, "right": 5690, "bottom": 3205, "left": 4115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717453f.jpg"} -{"rects": [{"solidity": 0.9929753790513284, "top": 280, "right": 5105, "bottom": 3710, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723112f.jpg"} -{"rects": [{"solidity": 0.9929790337973338, "top": 2165, "right": 5090, "bottom": 3705, "left": 3145}, {"solidity": 0.9973938203552345, "top": 500, "right": 5090, "bottom": 2040, "left": 3155}, {"solidity": 0.9966722129783694, "top": 515, "right": 2795, "bottom": 2050, "left": 855}, {"solidity": 0.9894443951849553, "top": 2180, "right": 2790, "bottom": 3725, "left": 860}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700953f.jpg"} -{"rects": [{"solidity": 0.9929830980536819, "top": 500, "right": 5035, "bottom": 3685, "left": 1075}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702508f.jpg"} -{"rects": [{"solidity": 0.9929843883782244, "top": 645, "right": 4860, "bottom": 3415, "left": 1250}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700722f.jpg"} -{"rects": [{"solidity": 0.9929847009122095, "top": 445, "right": 3135, "bottom": 1880, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725887f.jpg"} -{"rects": [{"solidity": 0.992984901815172, "top": 130, "right": 5120, "bottom": 3850, "left": 130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708189f.jpg"} -{"rects": [{"solidity": 0.9929853781151972, "top": 620, "right": 2690, "bottom": 2020, "left": 865}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706911f.jpg"} -{"rects": [{"solidity": 0.9929867761173907, "top": 625, "right": 4825, "bottom": 3540, "left": 1330}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700961f.jpg"} -{"rects": [{"solidity": 0.9929907840579568, "top": 780, "right": 2090, "bottom": 3185, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720049f.jpg"} -{"rects": [{"solidity": 0.9929919664005079, "top": 2635, "right": 1885, "bottom": 3530, "left": 725}, {"solidity": 0.9948139683815312, "top": 1470, "right": 1885, "bottom": 2365, "left": 750}, {"solidity": 0.9940359858275858, "top": 320, "right": 1885, "bottom": 1210, "left": 750}], "shape": {"h": 3945, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727088f.jpg"} -{"rects": [{"solidity": 0.9929919733648422, "top": 1405, "right": 2670, "bottom": 4785, "left": 1375}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709155f.jpg"} -{"rects": [{"solidity": 0.9929928082304305, "top": 465, "right": 5115, "bottom": 3720, "left": 1085}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731318f.jpg"} -{"rects": [{"solidity": 0.9929953457601692, "top": 1220, "right": 3400, "bottom": 4775, "left": 360}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719114f.jpg"} -{"rects": [{"solidity": 0.9929965008195584, "top": 525, "right": 2845, "bottom": 1910, "left": 1055}], "shape": {"h": 3860, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728157f.jpg"} -{"rects": [{"solidity": 0.992996632996633, "top": 855, "right": 3870, "bottom": 3280, "left": 2220}, {"solidity": 0.9948576180668802, "top": 900, "right": 5715, "bottom": 3310, "left": 4095}, {"solidity": 0.9917210391253453, "top": 865, "right": 1995, "bottom": 3270, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722303f.jpg"} -{"rects": [{"solidity": 0.9929968667965111, "top": 520, "right": 3025, "bottom": 1975, "left": 975}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703184f.jpg"} -{"rects": [{"solidity": 0.9929973006896083, "top": 585, "right": 2670, "bottom": 2015, "left": 825}, {"solidity": 0.9938410494057109, "top": 2200, "right": 2640, "bottom": 3610, "left": 825}, {"solidity": 0.9952975167501058, "top": 600, "right": 4835, "bottom": 2000, "left": 3010}, {"solidity": 0.9941588144039347, "top": 2215, "right": 4815, "bottom": 3630, "left": 3010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725074f.jpg"} -{"rects": [{"solidity": 0.9929984468042633, "top": 685, "right": 2695, "bottom": 2120, "left": 885}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726377f.jpg"} -{"rects": [{"solidity": 0.9929996270829381, "top": 715, "right": 2035, "bottom": 3115, "left": 430}, {"solidity": 0.99728937122028, "top": 720, "right": 3875, "bottom": 3110, "left": 2285}, {"solidity": 0.9938546211066313, "top": 725, "right": 5720, "bottom": 3120, "left": 4125}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731239f.jpg"} -{"rects": [{"solidity": 0.9930070161832891, "top": 400, "right": 3205, "bottom": 2010, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705830f.jpg"} -{"rects": [{"solidity": 0.9930073594920977, "top": 535, "right": 3100, "bottom": 2505, "left": 505}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507559.jpg"} -{"rects": [{"solidity": 0.9930084973647413, "top": 305, "right": 2830, "bottom": 1880, "left": 960}, {"solidity": 0.9917177927524127, "top": 2090, "right": 2845, "bottom": 3635, "left": 965}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721637f.jpg"} -{"rects": [{"solidity": 0.9930096505308759, "top": 495, "right": 5045, "bottom": 3730, "left": 990}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730677f.jpg"} -{"rects": [{"solidity": 0.993010259460513, "top": 780, "right": 2065, "bottom": 3175, "left": 485}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720985f.jpg"} -{"rects": [{"solidity": 0.9930113537230777, "top": 795, "right": 2165, "bottom": 3230, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724049f.jpg"} -{"rects": [{"solidity": 0.9930115510081328, "top": 1205, "right": 3485, "bottom": 4965, "left": 265}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733328f.jpg"} -{"rects": [{"solidity": 0.9930117665546978, "top": 705, "right": 2900, "bottom": 2110, "left": 1065}, {"solidity": 0.9947278095680859, "top": 2330, "right": 2895, "bottom": 3740, "left": 1085}, {"solidity": 0.9982325786327269, "top": 3950, "right": 2885, "bottom": 5360, "left": 1100}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726225f.jpg"} -{"rects": [{"solidity": 0.9930132040503536, "top": 390, "right": 3230, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700589f.jpg"} -{"rects": [{"solidity": 0.9930142238095833, "top": 590, "right": 2240, "bottom": 3375, "left": 410}, {"solidity": 0.9947365943961595, "top": 540, "right": 4730, "bottom": 1850, "left": 2275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723089f.jpg"} -{"rects": [{"solidity": 0.9930146501703565, "top": 755, "right": 2665, "bottom": 2185, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726389f.jpg"} -{"rects": [{"solidity": 0.9930150720403692, "top": 425, "right": 3090, "bottom": 2025, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729503f.jpg"} -{"rects": [{"solidity": 0.993017303462639, "top": 4095, "right": 2975, "bottom": 5520, "left": 1125}, {"solidity": 0.9945585894453287, "top": 550, "right": 3000, "bottom": 1960, "left": 1170}, {"solidity": 0.9930001763426534, "top": 2325, "right": 2990, "bottom": 3765, "left": 1165}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725065f.jpg"} -{"rects": [{"solidity": 0.9930177003451282, "top": 465, "right": 4955, "bottom": 3540, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731126f.jpg"} -{"rects": [{"solidity": 0.9930187829546094, "top": 435, "right": 5075, "bottom": 3740, "left": 965}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721437f.jpg"} -{"rects": [{"solidity": 0.9930198912743944, "top": 435, "right": 3210, "bottom": 2095, "left": 760}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706606f.jpg"} -{"rects": [{"solidity": 0.9930203691268339, "top": 705, "right": 5320, "bottom": 3360, "left": 3910}, {"solidity": 0.9823791734443494, "top": 710, "right": 3575, "bottom": 3320, "left": 2170}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721186f.jpg"} -{"rects": [{"solidity": 0.9930203834644429, "top": 795, "right": 3580, "bottom": 4940, "left": 255}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724232f.jpg"} -{"rects": [{"solidity": 0.9930209537433821, "top": 1315, "right": 3350, "bottom": 4820, "left": 520}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723102f.jpg"} -{"rects": [{"solidity": 0.9930219160431064, "top": 560, "right": 4960, "bottom": 3525, "left": 1090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703148f.jpg"} -{"rects": [{"solidity": 0.9930223981751263, "top": 660, "right": 2775, "bottom": 3495, "left": 925}, {"solidity": 0.9956622414325409, "top": 680, "right": 5220, "bottom": 2050, "left": 3430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726582f.jpg"} -{"rects": [{"solidity": 0.9930226392560786, "top": 930, "right": 3695, "bottom": 2735, "left": 860}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509421.jpg"} -{"rects": [{"solidity": 0.993023821755942, "top": 465, "right": 3240, "bottom": 2330, "left": 465}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723695f.jpg"} -{"rects": [{"solidity": 0.9930240993700898, "top": 415, "right": 2905, "bottom": 1925, "left": 1000}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700358f.jpg"} -{"rects": [{"solidity": 0.9930256636013827, "top": 1005, "right": 1920, "bottom": 3030, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701108f.jpg"} -{"rects": [{"solidity": 0.9930259164259259, "top": 1150, "right": 3485, "bottom": 5035, "left": 360}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712795f.jpg"} -{"rects": [{"solidity": 0.9930263899438877, "top": 2310, "right": 3045, "bottom": 3735, "left": 1210}, {"solidity": 0.9956276251463196, "top": 500, "right": 3035, "bottom": 1920, "left": 1225}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/727937f.jpg"} -{"rects": [{"solidity": 0.9930272527627155, "top": 595, "right": 2535, "bottom": 3410, "left": 725}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707439f.jpg"} -{"rects": [{"solidity": 0.9930277249331261, "top": 505, "right": 2995, "bottom": 1945, "left": 1160}, {"solidity": 0.9948406947007059, "top": 2345, "right": 2990, "bottom": 3755, "left": 1160}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727429f.jpg"} -{"rects": [{"solidity": 0.9930287175218503, "top": 495, "right": 2885, "bottom": 1905, "left": 1060}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727199f.jpg"} -{"rects": [{"solidity": 0.9930302267578884, "top": 925, "right": 1890, "bottom": 2860, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701898f.jpg"} -{"rects": [{"solidity": 0.9930316247250162, "top": 570, "right": 3280, "bottom": 2495, "left": 705}, {"solidity": 0.9969700851963359, "top": 2735, "right": 3210, "bottom": 4360, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730815f.jpg"} -{"rects": [{"solidity": 0.9930327740806698, "top": 3995, "right": 2895, "bottom": 5525, "left": 1050}, {"solidity": 0.9896335393661597, "top": 490, "right": 2930, "bottom": 1975, "left": 1090}, {"solidity": 0.9833440339216347, "top": 2225, "right": 2925, "bottom": 3710, "left": 1075}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/711762f.jpg"} -{"rects": [{"solidity": 0.9930340557275542, "top": 1430, "right": 2005, "bottom": 2485, "left": 455}, {"solidity": 0.9922213517100235, "top": 275, "right": 2025, "bottom": 1315, "left": 475}], "shape": {"h": 3945, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/718925f.jpg"} -{"rects": [{"solidity": 0.9930362116991643, "top": 505, "right": 3340, "bottom": 2040, "left": 2325}, {"solidity": 0.9930787648005752, "top": 495, "right": 1715, "bottom": 2020, "left": 700}], "shape": {"h": 2555, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731095f.jpg"} -{"rects": [{"solidity": 0.9930408735704902, "top": 800, "right": 3915, "bottom": 3225, "left": 2300}, {"solidity": 0.9938205693254879, "top": 810, "right": 2055, "bottom": 3230, "left": 445}, {"solidity": 0.995376604575792, "top": 800, "right": 5755, "bottom": 3210, "left": 4150}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733992f.jpg"} -{"rects": [{"solidity": 0.9930440796271949, "top": 1075, "right": 5665, "bottom": 3020, "left": 4030}, {"solidity": 0.9964846131561083, "top": 1030, "right": 1980, "bottom": 2930, "left": 425}, {"solidity": 0.995633779899116, "top": 1075, "right": 3785, "bottom": 2895, "left": 2235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719573f.jpg"} -{"rects": [{"solidity": 0.993045576227117, "top": 745, "right": 2700, "bottom": 3600, "left": 845}, {"solidity": 0.9960049647040571, "top": 700, "right": 5180, "bottom": 2140, "left": 3360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705233f.jpg"} -{"rects": [{"solidity": 0.9930455824640931, "top": 990, "right": 4905, "bottom": 3305, "left": 1210}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701164f.jpg"} -{"rects": [{"solidity": 0.9930463846482613, "top": 2100, "right": 2695, "bottom": 3530, "left": 845}, {"solidity": 0.9900639855971584, "top": 655, "right": 2690, "bottom": 2070, "left": 840}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718233f.jpg"} -{"rects": [{"solidity": 0.9930487991365573, "top": 620, "right": 4930, "bottom": 3625, "left": 1095}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709921f.jpg"} -{"rects": [{"solidity": 0.9930521696733301, "top": 580, "right": 2415, "bottom": 1795, "left": 790}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732800f.jpg"} -{"rects": [{"solidity": 0.993053387774129, "top": 565, "right": 3065, "bottom": 1950, "left": 865}, {"solidity": 0.9696546187127373, "top": 4830, "right": 3010, "bottom": 5650, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721604f.jpg"} -{"rects": [{"solidity": 0.993053599057802, "top": 875, "right": 2765, "bottom": 2240, "left": 725}], "shape": {"h": 2980, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1507304.jpg"} -{"rects": [{"solidity": 0.9930558311178128, "top": 445, "right": 1210, "bottom": 1990, "left": 160}], "shape": {"h": 2535, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724082f.jpg"} -{"rects": [{"solidity": 0.9930565498164478, "top": 430, "right": 5110, "bottom": 3765, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714925f.jpg"} -{"rects": [{"solidity": 0.9930574971718119, "top": 440, "right": 2945, "bottom": 1990, "left": 1050}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720667f.jpg"} -{"rects": [{"solidity": 0.9930607250293173, "top": 1040, "right": 1860, "bottom": 2845, "left": 485}, {"solidity": 0.9357591850005419, "top": 1020, "right": 3605, "bottom": 2850, "left": 2160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733654f.jpg"} -{"rects": [{"solidity": 0.9930616119224636, "top": 2100, "right": 5240, "bottom": 3540, "left": 3400}, {"solidity": 0.994907229815671, "top": 660, "right": 5225, "bottom": 2060, "left": 3425}, {"solidity": 0.9956598873833338, "top": 2145, "right": 2720, "bottom": 3505, "left": 915}, {"solidity": 0.9943630739898349, "top": 705, "right": 2695, "bottom": 2095, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731977f.jpg"} -{"rects": [{"solidity": 0.9930624548410405, "top": 560, "right": 2755, "bottom": 1855, "left": 1015}, {"solidity": 0.9928338429014696, "top": 2150, "right": 2745, "bottom": 3445, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702640f.jpg"} -{"rects": [{"solidity": 0.9930630045427544, "top": 545, "right": 5030, "bottom": 3575, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724660f.jpg"} -{"rects": [{"solidity": 0.9930657505334678, "top": 810, "right": 2035, "bottom": 3200, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708597f.jpg"} -{"rects": [{"solidity": 0.9930658335603154, "top": 750, "right": 1990, "bottom": 3165, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711918f.jpg"} -{"rects": [{"solidity": 0.9930659961636166, "top": 445, "right": 3160, "bottom": 2075, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701601f.jpg"} -{"rects": [{"solidity": 0.993066205382776, "top": 595, "right": 2565, "bottom": 2115, "left": 255}, {"solidity": 0.9954817383845181, "top": 2565, "right": 2560, "bottom": 4065, "left": 285}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715948f.jpg"} -{"rects": [{"solidity": 0.9930695470949027, "top": 4130, "right": 3115, "bottom": 5555, "left": 1305}, {"solidity": 0.9957740877001093, "top": 570, "right": 3130, "bottom": 1985, "left": 1340}, {"solidity": 0.9955840448756521, "top": 2350, "right": 3120, "bottom": 3775, "left": 1335}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727725f.jpg"} -{"rects": [{"solidity": 0.9930706625845762, "top": 750, "right": 2030, "bottom": 3145, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713564f.jpg"} -{"rects": [{"solidity": 0.9930736391709664, "top": 675, "right": 2725, "bottom": 2105, "left": 880}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727838f.jpg"} -{"rects": [{"solidity": 0.9930742706218972, "top": 325, "right": 3975, "bottom": 2850, "left": 920}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509477.jpg"} -{"rects": [{"solidity": 0.9930754620895962, "top": 405, "right": 3245, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722550f.jpg"} -{"rects": [{"solidity": 0.993075482025703, "top": 480, "right": 3230, "bottom": 3750, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/731749f.jpg"} -{"rects": [{"solidity": 0.9930780275593082, "top": 510, "right": 3160, "bottom": 1835, "left": 920}], "shape": {"h": 6140, "w": 4085}, "file": "/usr/local/google/home/danvk/milstein/718866f.jpg"} -{"rects": [{"solidity": 0.9930780717219693, "top": 405, "right": 3060, "bottom": 1785, "left": 1090}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701009f.jpg"} -{"rects": [{"solidity": 0.9930781920532429, "top": 600, "right": 4960, "bottom": 3540, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717678f.jpg"} -{"rects": [{"solidity": 0.9930790986907415, "top": 565, "right": 2355, "bottom": 2000, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715424f.jpg"} -{"rects": [{"solidity": 0.9930799199747289, "top": 950, "right": 3450, "bottom": 2375, "left": 1335}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507687.jpg"} -{"rects": [{"solidity": 0.9930812295341713, "top": 590, "right": 2755, "bottom": 2045, "left": 920}, {"solidity": 0.9947775932712999, "top": 2190, "right": 4830, "bottom": 3630, "left": 3030}, {"solidity": 0.9959595353465649, "top": 2195, "right": 2745, "bottom": 3600, "left": 945}, {"solidity": 0.997061925568781, "top": 615, "right": 4840, "bottom": 2015, "left": 3040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727647f.jpg"} -{"rects": [{"solidity": 0.9930836849238497, "top": 1005, "right": 3515, "bottom": 5125, "left": 270}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732245f.jpg"} -{"rects": [{"solidity": 0.9930843787632554, "top": 2120, "right": 2815, "bottom": 3435, "left": 1165}, {"solidity": 0.9955079393188123, "top": 555, "right": 2840, "bottom": 1850, "left": 1175}, {"solidity": 0.9936437922022634, "top": 545, "right": 4865, "bottom": 1855, "left": 3230}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706757f.jpg"} -{"rects": [{"solidity": 0.993087616515209, "top": 475, "right": 3490, "bottom": 2650, "left": 310}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725705f.jpg"} -{"rects": [{"solidity": 0.9930893066112827, "top": 1100, "right": 2070, "bottom": 2785, "left": 605}, {"solidity": 0.9941541062121425, "top": 1095, "right": 3820, "bottom": 2740, "left": 2375}, {"solidity": 0.958687471164055, "top": 1000, "right": 5465, "bottom": 2820, "left": 4195}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705817f.jpg"} -{"rects": [{"solidity": 0.993089851216085, "top": 3220, "right": 3305, "bottom": 5145, "left": 570}, {"solidity": 0.9962693083909028, "top": 680, "right": 3340, "bottom": 2590, "left": 615}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/713355f.jpg"} -{"rects": [{"solidity": 0.9930906425604691, "top": 2180, "right": 3090, "bottom": 3790, "left": 675}, {"solidity": 0.9909669708322799, "top": 375, "right": 3085, "bottom": 1975, "left": 670}, {"solidity": 0.9941876657824934, "top": 4040, "right": 3085, "bottom": 5625, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730259f.jpg"} -{"rects": [{"solidity": 0.9930918281381634, "top": 850, "right": 2275, "bottom": 3235, "left": 675}, {"solidity": 0.9954538079850737, "top": 825, "right": 3905, "bottom": 3205, "left": 2305}, {"solidity": 0.9962619047619048, "top": 815, "right": 5530, "bottom": 3180, "left": 3960}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709068f.jpg"} -{"rects": [{"solidity": 0.9930919519627174, "top": 395, "right": 3160, "bottom": 1915, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724057f.jpg"} -{"rects": [{"solidity": 0.9930921250225256, "top": 2290, "right": 2990, "bottom": 3675, "left": 1160}, {"solidity": 0.9950273646548718, "top": 4085, "right": 2965, "bottom": 5485, "left": 1170}, {"solidity": 0.9938485002541942, "top": 515, "right": 2995, "bottom": 1900, "left": 1195}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/725902f.jpg"} -{"rects": [{"solidity": 0.9930927254209374, "top": 1105, "right": 3455, "bottom": 4970, "left": 405}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712975f.jpg"} -{"rects": [{"solidity": 0.9930936420881576, "top": 550, "right": 5085, "bottom": 3610, "left": 1025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701983f.jpg"} -{"rects": [{"solidity": 0.9930936827027399, "top": 435, "right": 3185, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705837f.jpg"} -{"rects": [{"solidity": 0.9930946481053091, "top": 355, "right": 3515, "bottom": 2745, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714375f.jpg"} -{"rects": [{"solidity": 0.9930985339990632, "top": 635, "right": 2840, "bottom": 2030, "left": 990}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/730705f.jpg"} -{"rects": [{"solidity": 0.993099838676017, "top": 435, "right": 3155, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701988f.jpg"} -{"rects": [{"solidity": 0.9931001051504423, "top": 655, "right": 5255, "bottom": 3545, "left": 3415}, {"solidity": 0.9958372312885774, "top": 655, "right": 2735, "bottom": 2070, "left": 930}, {"solidity": 0.998733486516387, "top": 2085, "right": 2740, "bottom": 3490, "left": 950}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726398f.jpg"} -{"rects": [{"solidity": 0.9931002449555758, "top": 445, "right": 3585, "bottom": 2250, "left": 885}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711279f.jpg"} -{"rects": [{"solidity": 0.9931026061588116, "top": 410, "right": 3185, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730269f.jpg"} -{"rects": [{"solidity": 0.993103517810871, "top": 475, "right": 2990, "bottom": 1860, "left": 1180}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725244f.jpg"} -{"rects": [{"solidity": 0.9931053768417805, "top": 660, "right": 3315, "bottom": 2600, "left": 595}, {"solidity": 0.9949927476824115, "top": 3215, "right": 3240, "bottom": 5105, "left": 570}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713343f.jpg"} -{"rects": [{"solidity": 0.9931055371215666, "top": 435, "right": 3910, "bottom": 2705, "left": 1015}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517023.jpg"} -{"rects": [{"solidity": 0.9931066028953873, "top": 1030, "right": 3275, "bottom": 2760, "left": 1460}], "shape": {"h": 6010, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/465536.jpg"} -{"rects": [{"solidity": 0.9931074986890404, "top": 860, "right": 3040, "bottom": 2370, "left": 985}], "shape": {"h": 2980, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/1507288.jpg"} -{"rects": [{"solidity": 0.9931091818952148, "top": 870, "right": 1930, "bottom": 2870, "left": 745}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732541f.jpg"} -{"rects": [{"solidity": 0.9931104699388139, "top": 835, "right": 2025, "bottom": 3260, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710139f.jpg"} -{"rects": [{"solidity": 0.993110722784912, "top": 690, "right": 5000, "bottom": 3000, "left": 1190}], "shape": {"h": 3890, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728152f.jpg"} -{"rects": [{"solidity": 0.9931114200664433, "top": 575, "right": 4855, "bottom": 3445, "left": 1300}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709858f.jpg"} -{"rects": [{"solidity": 0.9931118913425113, "top": 310, "right": 5110, "bottom": 3705, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703829f.jpg"} -{"rects": [{"solidity": 0.9931119483903177, "top": 1780, "right": 1955, "bottom": 3510, "left": 1010}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508685.jpg"} -{"rects": [{"solidity": 0.9931126413301924, "top": 740, "right": 4800, "bottom": 3205, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708750f.jpg"} -{"rects": [{"solidity": 0.9931128294187175, "top": 470, "right": 5090, "bottom": 3490, "left": 1300}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710426f.jpg"} -{"rects": [{"solidity": 0.9931135439143753, "top": 455, "right": 3135, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711826f.jpg"} -{"rects": [{"solidity": 0.9931149005593536, "top": 520, "right": 2155, "bottom": 3370, "left": 330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721242f.jpg"} -{"rects": [{"solidity": 0.9931176204513905, "top": 715, "right": 3860, "bottom": 3010, "left": 2445}, {"solidity": 0.9900816802800467, "top": 690, "right": 2090, "bottom": 3015, "left": 685}, {"solidity": 0.9922321692080669, "top": 730, "right": 5600, "bottom": 3025, "left": 4180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710156f.jpg"} -{"rects": [{"solidity": 0.9931186585958982, "top": 2185, "right": 2685, "bottom": 3630, "left": 860}, {"solidity": 0.9963405852124371, "top": 715, "right": 2665, "bottom": 2140, "left": 855}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726301f.jpg"} -{"rects": [{"solidity": 0.9931188280645652, "top": 2220, "right": 3140, "bottom": 3835, "left": 710}, {"solidity": 0.9949607425589675, "top": 4075, "right": 3135, "bottom": 5685, "left": 715}, {"solidity": 0.9933634330728255, "top": 385, "right": 3145, "bottom": 1985, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730208f.jpg"} -{"rects": [{"solidity": 0.9931207352116936, "top": 565, "right": 2400, "bottom": 3485, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731856f.jpg"} -{"rects": [{"solidity": 0.9931216065683593, "top": 865, "right": 2595, "bottom": 3695, "left": 305}], "shape": {"h": 4585, "w": 2950}, "file": "/usr/local/google/home/danvk/milstein/723018f.jpg"} -{"rects": [{"solidity": 0.9931245911733995, "top": 560, "right": 5120, "bottom": 3570, "left": 1290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708584f.jpg"} -{"rects": [{"solidity": 0.9931261816571666, "top": 795, "right": 1865, "bottom": 3175, "left": 345}, {"solidity": 0.993236261155472, "top": 810, "right": 3690, "bottom": 3090, "left": 2145}, {"solidity": 0.9903049096394722, "top": 810, "right": 5465, "bottom": 3055, "left": 3970}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723901f.jpg"} -{"rects": [{"solidity": 0.9931280298402714, "top": 2250, "right": 3195, "bottom": 3880, "left": 790}, {"solidity": 0.9964056945331826, "top": 400, "right": 3205, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/725294f.jpg"} -{"rects": [{"solidity": 0.9931287397926931, "top": 405, "right": 3005, "bottom": 1900, "left": 1045}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720312f.jpg"} -{"rects": [{"solidity": 0.9931288113942126, "top": 2460, "right": 2510, "bottom": 3960, "left": 415}, {"solidity": 0.9932617877627492, "top": 750, "right": 2540, "bottom": 2235, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716263f.jpg"} -{"rects": [{"solidity": 0.9931307742607975, "top": 2200, "right": 3135, "bottom": 3825, "left": 700}, {"solidity": 0.9946026172892781, "top": 4095, "right": 3095, "bottom": 5705, "left": 695}, {"solidity": 0.9966064883941903, "top": 395, "right": 3105, "bottom": 1985, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734049f.jpg"} -{"rects": [{"solidity": 0.993135079008105, "top": 655, "right": 3450, "bottom": 3060, "left": 260}, {"solidity": 0.9967542290389624, "top": 3565, "right": 3070, "bottom": 5175, "left": 675}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711970f.jpg"} -{"rects": [{"solidity": 0.9931373882507141, "top": 1275, "right": 3645, "bottom": 2305, "left": 2640}, {"solidity": 0.993941740781453, "top": 620, "right": 5150, "bottom": 1620, "left": 4135}, {"solidity": 0.99360982175428, "top": 605, "right": 2100, "bottom": 1605, "left": 1090}, {"solidity": 0.9926443730713521, "top": 2075, "right": 5160, "bottom": 3070, "left": 4150}, {"solidity": 0.9933072554549117, "top": 1985, "right": 2115, "bottom": 2950, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731040f.jpg"} -{"rects": [{"solidity": 0.9931381916094849, "top": 340, "right": 1985, "bottom": 1220, "left": 825}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727094f.jpg"} -{"rects": [{"solidity": 0.9931397835575122, "top": 400, "right": 5285, "bottom": 3650, "left": 1210}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732280f.jpg"} -{"rects": [{"solidity": 0.9931430953260383, "top": 570, "right": 5075, "bottom": 3720, "left": 1180}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723129f.jpg"} -{"rects": [{"solidity": 0.9931441803587923, "top": 540, "right": 2920, "bottom": 2015, "left": 950}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715324f.jpg"} -{"rects": [{"solidity": 0.9931465167497392, "top": 2660, "right": 2160, "bottom": 3755, "left": 525}, {"solidity": 0.996990935565801, "top": 855, "right": 2130, "bottom": 1910, "left": 520}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509521.jpg"} -{"rects": [{"solidity": 0.9931502693373425, "top": 570, "right": 4910, "bottom": 3545, "left": 1140}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709916f.jpg"} -{"rects": [{"solidity": 0.9931534756650455, "top": 805, "right": 3225, "bottom": 2750, "left": 455}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707294f.jpg"} -{"rects": [{"solidity": 0.993153904340488, "top": 600, "right": 4815, "bottom": 3630, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717772f.jpg"} -{"rects": [{"solidity": 0.9931561576303228, "top": 315, "right": 3150, "bottom": 2150, "left": 515}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707259f.jpg"} -{"rects": [{"solidity": 0.9931568022220151, "top": 3185, "right": 3285, "bottom": 5090, "left": 565}, {"solidity": 0.9917805733316966, "top": 715, "right": 3305, "bottom": 2545, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713316f.jpg"} -{"rects": [{"solidity": 0.993156990129876, "top": 395, "right": 5250, "bottom": 3670, "left": 1175}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/720390f.jpg"} -{"rects": [{"solidity": 0.9931585911765534, "top": 925, "right": 3385, "bottom": 2885, "left": 630}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728154f.jpg"} -{"rects": [{"solidity": 0.9931605758410315, "top": 335, "right": 3325, "bottom": 2585, "left": 435}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508135.jpg"} -{"rects": [{"solidity": 0.9931610796273173, "top": 745, "right": 2045, "bottom": 3160, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721474f.jpg"} -{"rects": [{"solidity": 0.9931623688624798, "top": 665, "right": 2655, "bottom": 3590, "left": 790}, {"solidity": 0.9956481102868158, "top": 655, "right": 5190, "bottom": 2075, "left": 3365}, {"solidity": 0.9942490610457432, "top": 2080, "right": 5180, "bottom": 3495, "left": 3370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707458f.jpg"} -{"rects": [{"solidity": 0.9931630165646174, "top": 300, "right": 5065, "bottom": 3610, "left": 1075}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723707f.jpg"} -{"rects": [{"solidity": 0.9931633607323916, "top": 2305, "right": 2945, "bottom": 3740, "left": 1145}, {"solidity": 0.9954742387567886, "top": 4145, "right": 2900, "bottom": 5540, "left": 1115}, {"solidity": 0.9948771600707096, "top": 500, "right": 2955, "bottom": 1880, "left": 1170}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728145f.jpg"} -{"rects": [{"solidity": 0.9931639080976276, "top": 880, "right": 3505, "bottom": 2310, "left": 1370}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507693.jpg"} -{"rects": [{"solidity": 0.9931646429481192, "top": 960, "right": 1950, "bottom": 2990, "left": 475}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701537f.jpg"} -{"rects": [{"solidity": 0.9931659711584174, "top": 365, "right": 3160, "bottom": 1965, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719266f.jpg"} -{"rects": [{"solidity": 0.993166400887818, "top": 460, "right": 3055, "bottom": 1860, "left": 1240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725799f.jpg"} -{"rects": [{"solidity": 0.9931673180825382, "top": 540, "right": 3330, "bottom": 2465, "left": 595}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714138f.jpg"} -{"rects": [{"solidity": 0.9931685551872346, "top": 330, "right": 1880, "bottom": 1220, "left": 750}], "shape": {"h": 3950, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727130f.jpg"} -{"rects": [{"solidity": 0.993171459213084, "top": 855, "right": 3740, "bottom": 2315, "left": 1605}], "shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508585.jpg"} -{"rects": [{"solidity": 0.9931720500130242, "top": 895, "right": 2005, "bottom": 3305, "left": 380}, {"solidity": 0.9960482617936227, "top": 910, "right": 3855, "bottom": 3310, "left": 2250}, {"solidity": 0.996009729790387, "top": 915, "right": 5705, "bottom": 3310, "left": 4110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729681f.jpg"} -{"rects": [{"solidity": 0.9931763400707385, "top": 495, "right": 3255, "bottom": 3900, "left": 645}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714260f.jpg"} -{"rects": [{"solidity": 0.9931783723828462, "top": 540, "right": 3000, "bottom": 3610, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721534f.jpg"} -{"rects": [{"solidity": 0.9931800017760412, "top": 370, "right": 1770, "bottom": 2350, "left": 325}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714910f.jpg"} -{"rects": [{"solidity": 0.9931805167039713, "top": 315, "right": 5650, "bottom": 4185, "left": 1085}], "shape": {"h": 4415, "w": 6845}, "file": "/usr/local/google/home/danvk/milstein/711651f.jpg"} -{"rects": [{"solidity": 0.9931828199226211, "top": 580, "right": 3125, "bottom": 2005, "left": 1300}, {"solidity": 0.9964866532635308, "top": 2375, "right": 3120, "bottom": 3785, "left": 1320}, {"solidity": 0.9952642137722615, "top": 4115, "right": 3085, "bottom": 5500, "left": 1300}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727968f.jpg"} -{"rects": [{"solidity": 0.9931832797427653, "top": 910, "right": 2980, "bottom": 1865, "left": 2035}, {"solidity": 0.9950153872827359, "top": 2195, "right": 1895, "bottom": 3160, "left": 980}, {"solidity": 0.9924099223543781, "top": 2145, "right": 5185, "bottom": 3115, "left": 4270}, {"solidity": 0.9931672847256694, "top": 2195, "right": 3005, "bottom": 3150, "left": 2085}, {"solidity": 0.9876902906256828, "top": 905, "right": 4120, "bottom": 1855, "left": 3200}, {"solidity": 0.9903833409422265, "top": 930, "right": 1850, "bottom": 1895, "left": 945}, {"solidity": 0.9964697083021691, "top": 2160, "right": 4100, "bottom": 3120, "left": 3215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732954f.jpg"} -{"rects": [{"solidity": 0.9931833010351644, "top": 2220, "right": 2795, "bottom": 3640, "left": 965}, {"solidity": 0.9954839311397674, "top": 2225, "right": 5035, "bottom": 3635, "left": 3205}, {"solidity": 0.9981189725011694, "top": 635, "right": 2780, "bottom": 2015, "left": 945}, {"solidity": 0.9956359512563094, "top": 640, "right": 5040, "bottom": 2010, "left": 3215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725742f.jpg"} -{"rects": [{"solidity": 0.9931839978611587, "top": 435, "right": 3175, "bottom": 3605, "left": 580}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714811f.jpg"} -{"rects": [{"solidity": 0.9931853045119076, "top": 445, "right": 3015, "bottom": 1870, "left": 1025}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701008f.jpg"} -{"rects": [{"solidity": 0.9931853589691894, "top": 4115, "right": 3265, "bottom": 5450, "left": 640}, {"solidity": 0.9973382910576888, "top": 2345, "right": 3285, "bottom": 3650, "left": 660}, {"solidity": 0.9968223896988063, "top": 610, "right": 3270, "bottom": 1885, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732072f.jpg"} -{"rects": [{"solidity": 0.9931867789727504, "top": 545, "right": 3490, "bottom": 2925, "left": 295}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715426f.jpg"} -{"rects": [{"solidity": 0.9931874361068591, "top": 635, "right": 4960, "bottom": 3195, "left": 1320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730692f.jpg"} -{"rects": [{"solidity": 0.9931910131277267, "top": 665, "right": 2735, "bottom": 2075, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703708f.jpg"} -{"rects": [{"solidity": 0.9931924112124991, "top": 890, "right": 2055, "bottom": 3290, "left": 450}, {"solidity": 0.9949144569554506, "top": 900, "right": 3905, "bottom": 3310, "left": 2295}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729241f.jpg"} -{"rects": [{"solidity": 0.993192726868585, "top": 780, "right": 5920, "bottom": 3570, "left": 3960}, {"solidity": 0.9789295033735667, "top": 845, "right": 3940, "bottom": 3480, "left": 2100}, {"solidity": 0.9947564762862805, "top": 880, "right": 2075, "bottom": 3410, "left": 240}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702749f.jpg"} -{"rects": [{"solidity": 0.9931931158839296, "top": 405, "right": 3205, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700745f.jpg"} -{"rects": [{"solidity": 0.9931970573201166, "top": 395, "right": 3490, "bottom": 2275, "left": 730}, {"solidity": 0.9964461370833885, "top": 2625, "right": 3460, "bottom": 4450, "left": 735}], "shape": {"h": 6860, "w": 4385}, "file": "/usr/local/google/home/danvk/milstein/711418f.jpg"} -{"rects": [{"solidity": 0.9931982468398654, "top": 370, "right": 2765, "bottom": 3465, "left": 1115}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714341f.jpg"} -{"rects": [{"solidity": 0.993199202357213, "top": 130, "right": 1625, "bottom": 3525, "left": 130}], "shape": {"h": 3655, "w": 1755}, "file": "/usr/local/google/home/danvk/milstein/1558028.jpg"} -{"rects": [{"solidity": 0.9932036830431135, "top": 430, "right": 5115, "bottom": 3685, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719927f.jpg"} -{"rects": [{"solidity": 0.993204804045512, "top": 420, "right": 3055, "bottom": 1315, "left": 1890}, {"solidity": 0.9972322680640637, "top": 425, "right": 1650, "bottom": 1335, "left": 520}, {"solidity": 0.9968638158137475, "top": 1455, "right": 1660, "bottom": 2365, "left": 530}, {"solidity": 0.9989716836798676, "top": 1460, "right": 3050, "bottom": 2340, "left": 1905}], "shape": {"h": 2555, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727084f.jpg"} -{"rects": [{"solidity": 0.9932083860959213, "top": 730, "right": 2535, "bottom": 2215, "left": 440}, {"solidity": 0.9928215460088533, "top": 2445, "right": 2515, "bottom": 3935, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716250f.jpg"} -{"rects": [{"solidity": 0.9932119787828696, "top": 765, "right": 1980, "bottom": 3150, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711877f.jpg"} -{"rects": [{"solidity": 0.9932125145690975, "top": 4060, "right": 3145, "bottom": 5700, "left": 725}, {"solidity": 0.9940518454015674, "top": 400, "right": 3200, "bottom": 1995, "left": 785}, {"solidity": 0.9946869210321403, "top": 2210, "right": 3190, "bottom": 3795, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706297f.jpg"} -{"rects": [{"solidity": 0.9932140960153291, "top": 770, "right": 2740, "bottom": 2175, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728071f.jpg"} -{"rects": [{"solidity": 0.9932143317437814, "top": 2275, "right": 3075, "bottom": 3905, "left": 655}, {"solidity": 0.995915836360744, "top": 390, "right": 3075, "bottom": 2005, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709551f.jpg"} -{"rects": [{"solidity": 0.9932152085957889, "top": 425, "right": 2960, "bottom": 1930, "left": 995}, {"solidity": 0.9466205494080059, "top": 2325, "right": 2975, "bottom": 3825, "left": 985}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/720832f.jpg"} -{"rects": [{"solidity": 0.9932182869375258, "top": 2110, "right": 3060, "bottom": 3580, "left": 1100}, {"solidity": 0.9885317753413267, "top": 305, "right": 3025, "bottom": 1775, "left": 1080}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719937f.jpg"} -{"rects": [{"solidity": 0.9932183460959467, "top": 455, "right": 4990, "bottom": 3690, "left": 1030}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719134f.jpg"} -{"rects": [{"solidity": 0.9932185019187392, "top": 670, "right": 2715, "bottom": 2100, "left": 905}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726461f.jpg"} -{"rects": [{"solidity": 0.9932194521317322, "top": 665, "right": 3335, "bottom": 2595, "left": 610}, {"solidity": 0.9937401034779119, "top": 3240, "right": 3305, "bottom": 5150, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714024f.jpg"} -{"rects": [{"solidity": 0.9932205740552392, "top": 950, "right": 3835, "bottom": 3350, "left": 2235}, {"solidity": 0.9957884446706081, "top": 990, "right": 5660, "bottom": 3375, "left": 4075}, {"solidity": 0.9961860867640103, "top": 965, "right": 2035, "bottom": 3345, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710323f.jpg"} -{"rects": [{"solidity": 0.9932223643463041, "top": 450, "right": 2945, "bottom": 3795, "left": 690}], "shape": {"h": 6140, "w": 3910}, "file": "/usr/local/google/home/danvk/milstein/714422f.jpg"} -{"rects": [{"solidity": 0.9932269246666389, "top": 130, "right": 5370, "bottom": 3830, "left": 610}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721499f.jpg"} -{"rects": [{"solidity": 0.9932306741133968, "top": 545, "right": 5005, "bottom": 3635, "left": 1240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702094f.jpg"} -{"rects": [{"solidity": 0.9932314355711264, "top": 1005, "right": 2115, "bottom": 3005, "left": 590}, {"solidity": 0.9952451366691164, "top": 1070, "right": 3930, "bottom": 2965, "left": 2410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704216f.jpg"} -{"rects": [{"solidity": 0.993232418567274, "top": 315, "right": 5695, "bottom": 4085, "left": 1145}], "shape": {"h": 4420, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711280f.jpg"} -{"rects": [{"solidity": 0.9932335953278362, "top": 455, "right": 3165, "bottom": 2085, "left": 745}, {"solidity": 1.0, "top": 4780, "right": 3910, "bottom": 6010, "left": 2715}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/703375f.jpg"} -{"rects": [{"solidity": 0.9932343549891923, "top": 1220, "right": 3175, "bottom": 4880, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719968f.jpg"} -{"rects": [{"solidity": 0.9932343820858204, "top": 1440, "right": 1950, "bottom": 2345, "left": 800}, {"solidity": 0.997235957905414, "top": 350, "right": 1930, "bottom": 1230, "left": 795}], "shape": {"h": 3935, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727114f.jpg"} -{"rects": [{"solidity": 0.9932352692588222, "top": 600, "right": 2865, "bottom": 2340, "left": 530}], "shape": {"h": 4430, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/710249f.jpg"} -{"rects": [{"solidity": 0.9932352840265786, "top": 555, "right": 2735, "bottom": 1815, "left": 970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706557f.jpg"} -{"rects": [{"solidity": 0.9932366204387957, "top": 625, "right": 5355, "bottom": 3670, "left": 2940}, {"solidity": 0.9989010778075302, "top": 635, "right": 2720, "bottom": 2070, "left": 890}, {"solidity": 0.9949604100984333, "top": 2130, "right": 2715, "bottom": 3565, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703562f.jpg"} -{"rects": [{"solidity": 0.9932398300535398, "top": 450, "right": 3160, "bottom": 3680, "left": 685}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/713766f.jpg"} -{"rects": [{"solidity": 0.9932416391803088, "top": 485, "right": 2915, "bottom": 1875, "left": 1095}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725426f.jpg"} -{"rects": [{"solidity": 0.9932424422050978, "top": 465, "right": 2935, "bottom": 1870, "left": 1110}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/728053f.jpg"} -{"rects": [{"solidity": 0.9932426545331332, "top": 395, "right": 3030, "bottom": 2045, "left": 610}, {"solidity": 0.9962944231554786, "top": 2285, "right": 3020, "bottom": 3900, "left": 615}, {"solidity": 0.9948711406805552, "top": 4200, "right": 3010, "bottom": 5805, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713004f.jpg"} -{"rects": [{"solidity": 0.9932440221122956, "top": 595, "right": 2780, "bottom": 2005, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706910f.jpg"} -{"rects": [{"solidity": 0.9932441151688591, "top": 900, "right": 3280, "bottom": 2500, "left": 2230}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721144f.jpg"} -{"rects": [{"solidity": 0.9932462356067316, "top": 790, "right": 2150, "bottom": 3210, "left": 525}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710841f.jpg"} -{"rects": [{"solidity": 0.9932490068484804, "top": 670, "right": 5250, "bottom": 2100, "left": 3430}, {"solidity": 0.9954355082273254, "top": 2145, "right": 2695, "bottom": 3575, "left": 890}, {"solidity": 0.9956071170600115, "top": 670, "right": 2690, "bottom": 2095, "left": 890}, {"solidity": 0.9943172213549176, "top": 2150, "right": 5235, "bottom": 3570, "left": 3435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725198f.jpg"} -{"rects": [{"solidity": 0.9932497809110841, "top": 2350, "right": 3165, "bottom": 3965, "left": 755}, {"solidity": 0.9945834852653562, "top": 465, "right": 3190, "bottom": 2065, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707640f.jpg"} -{"rects": [{"solidity": 0.9932501470056698, "top": 550, "right": 4905, "bottom": 3610, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712937f.jpg"} -{"rects": [{"solidity": 0.9932501805030238, "top": 805, "right": 2150, "bottom": 3195, "left": 535}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719440f.jpg"} -{"rects": [{"solidity": 0.9932512121609226, "top": 430, "right": 3695, "bottom": 2660, "left": 1095}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509475.jpg"} -{"rects": [{"solidity": 0.9932533424751457, "top": 1000, "right": 4080, "bottom": 1940, "left": 3090}, {"solidity": 0.9988356923422222, "top": 2285, "right": 4020, "bottom": 3260, "left": 3095}, {"solidity": 0.9923426018293454, "top": 990, "right": 5210, "bottom": 1965, "left": 4265}, {"solidity": 0.9951815424732859, "top": 2310, "right": 1710, "bottom": 3270, "left": 775}, {"solidity": 0.9919541700427879, "top": 2290, "right": 5220, "bottom": 3250, "left": 4275}, {"solidity": 0.9946170365068003, "top": 2285, "right": 2820, "bottom": 3250, "left": 1895}, {"solidity": 0.9927229524021682, "top": 990, "right": 2810, "bottom": 1955, "left": 1915}, {"solidity": 0.9772577402492963, "top": 985, "right": 1685, "bottom": 1900, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732955f.jpg"} -{"rects": [{"solidity": 0.9932539095259237, "top": 825, "right": 1910, "bottom": 3020, "left": 490}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713517f.jpg"} -{"rects": [{"solidity": 0.9932580929227851, "top": 1045, "right": 4640, "bottom": 3175, "left": 1465}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709026f.jpg"} -{"rects": [{"solidity": 0.993258419583437, "top": 610, "right": 5005, "bottom": 3635, "left": 1185}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717041f.jpg"} -{"rects": [{"solidity": 0.9932590167557637, "top": 1935, "right": 2635, "bottom": 3025, "left": 895}, {"solidity": 0.9907838668120107, "top": 570, "right": 2585, "bottom": 1625, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708680f.jpg"} -{"rects": [{"solidity": 0.9932591322182538, "top": 2765, "right": 2415, "bottom": 4195, "left": 390}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508015.jpg"} -{"rects": [{"solidity": 0.9932593286077304, "top": 835, "right": 2075, "bottom": 3230, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714516f.jpg"} -{"rects": [{"solidity": 0.9932633160485276, "top": 655, "right": 2765, "bottom": 2075, "left": 930}, {"solidity": 0.9964974864607674, "top": 675, "right": 5220, "bottom": 2080, "left": 3415}, {"solidity": 0.9971841393152067, "top": 2105, "right": 2745, "bottom": 3505, "left": 940}, {"solidity": 0.9967072999859885, "top": 2120, "right": 5225, "bottom": 3520, "left": 3425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726132f.jpg"} -{"rects": [{"solidity": 0.9932657122252196, "top": 450, "right": 3135, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710309f.jpg"} -{"rects": [{"solidity": 0.9932670567894667, "top": 425, "right": 3130, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/703670f.jpg"} -{"rects": [{"solidity": 0.9932675643247567, "top": 605, "right": 2580, "bottom": 3565, "left": 595}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732535f.jpg"} -{"rects": [{"solidity": 0.99326877716964, "top": 2035, "right": 2670, "bottom": 3425, "left": 870}, {"solidity": 0.9968157409388724, "top": 2040, "right": 5170, "bottom": 3425, "left": 3385}, {"solidity": 0.996575115564367, "top": 610, "right": 5170, "bottom": 1995, "left": 3380}, {"solidity": 0.9950506428035121, "top": 595, "right": 2685, "bottom": 1985, "left": 890}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728116f.jpg"} -{"rects": [{"solidity": 0.9932701463065058, "top": 1045, "right": 3395, "bottom": 4775, "left": 370}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719168f.jpg"} -{"rects": [{"solidity": 0.9932704780743826, "top": 575, "right": 2955, "bottom": 1995, "left": 1125}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725292f.jpg"} -{"rects": [{"solidity": 0.9932731698375415, "top": 405, "right": 2990, "bottom": 1905, "left": 1015}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723237f.jpg"} -{"rects": [{"solidity": 0.9932746226965224, "top": 1005, "right": 3435, "bottom": 4810, "left": 430}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712891f.jpg"} -{"rects": [{"solidity": 0.9932749479104908, "top": 2945, "right": 2400, "bottom": 4435, "left": 390}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507827.jpg"} -{"rects": [{"solidity": 0.9932776920319804, "top": 505, "right": 3270, "bottom": 2430, "left": 565}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727891f.jpg"} -{"rects": [{"solidity": 0.993277909341388, "top": 3345, "right": 3285, "bottom": 5295, "left": 555}, {"solidity": 0.9952309762656208, "top": 750, "right": 3275, "bottom": 2675, "left": 545}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724804f.jpg"} -{"rects": [{"solidity": 0.993278829471213, "top": 935, "right": 3170, "bottom": 5070, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724802f.jpg"} -{"rects": [{"solidity": 0.993279629782873, "top": 385, "right": 3145, "bottom": 3620, "left": 695}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/731747f.jpg"} -{"rects": [{"solidity": 0.9932804708575166, "top": 2095, "right": 3175, "bottom": 3705, "left": 770}, {"solidity": 0.9944577060730165, "top": 275, "right": 3185, "bottom": 1860, "left": 780}, {"solidity": 0.9936109918419923, "top": 3955, "right": 2910, "bottom": 5455, "left": 940}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723723f.jpg"} -{"rects": [{"solidity": 0.9932814936134843, "top": 670, "right": 2690, "bottom": 2115, "left": 870}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705642f.jpg"} -{"rects": [{"solidity": 0.9932815330328473, "top": 310, "right": 5100, "bottom": 3665, "left": 1005}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716855f.jpg"} -{"rects": [{"solidity": 0.993281551380383, "top": 695, "right": 3455, "bottom": 3110, "left": 1840}, {"solidity": 0.9917781539406694, "top": 715, "right": 1745, "bottom": 3115, "left": 135}, {"solidity": 0.9893210557975661, "top": 1100, "right": 5980, "bottom": 2710, "left": 3600}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701003f.jpg"} -{"rects": [{"solidity": 0.9932831414230883, "top": 3940, "right": 3275, "bottom": 5595, "left": 825}, {"solidity": 0.9910564453388714, "top": 2070, "right": 3290, "bottom": 3730, "left": 845}, {"solidity": 0.9926816474685802, "top": 330, "right": 3085, "bottom": 1875, "left": 1105}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700261f.jpg"} -{"rects": [{"solidity": 0.9932833381215141, "top": 490, "right": 3095, "bottom": 1920, "left": 1295}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727751f.jpg"} -{"rects": [{"solidity": 0.9932855320853897, "top": 1105, "right": 3500, "bottom": 5020, "left": 320}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723717f.jpg"} -{"rects": [{"solidity": 0.9932868199806106, "top": 2240, "right": 3140, "bottom": 3910, "left": 680}, {"solidity": 0.9950215710425682, "top": 390, "right": 3170, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722830f.jpg"} -{"rects": [{"solidity": 0.993288925230849, "top": 435, "right": 3065, "bottom": 1855, "left": 1230}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728180f.jpg"} -{"rects": [{"solidity": 0.9932913979519438, "top": 2150, "right": 2760, "bottom": 3345, "left": 760}, {"solidity": 0.9966479567158975, "top": 740, "right": 2730, "bottom": 1885, "left": 770}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713196f.jpg"} -{"rects": [{"solidity": 0.993292680310176, "top": 425, "right": 2970, "bottom": 1980, "left": 1060}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730072f.jpg"} -{"rects": [{"solidity": 0.9932930309791915, "top": 435, "right": 3240, "bottom": 2045, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701926f.jpg"} -{"rects": [{"solidity": 0.9932933014991444, "top": 355, "right": 3325, "bottom": 2215, "left": 670}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724819f.jpg"} -{"rects": [{"solidity": 0.9932936406472587, "top": 1100, "right": 3165, "bottom": 2175, "left": 1545}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509537.jpg"} -{"rects": [{"solidity": 0.9932970990937106, "top": 895, "right": 3665, "bottom": 3275, "left": 410}, {"solidity": 0.9936561696030222, "top": 750, "right": 5670, "bottom": 3165, "left": 4035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714110f.jpg"} -{"rects": [{"solidity": 0.993300528661924, "top": 1160, "right": 3400, "bottom": 4935, "left": 430}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706273f.jpg"} -{"rects": [{"solidity": 0.993302115078087, "top": 940, "right": 1990, "bottom": 3140, "left": 595}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713268f.jpg"} -{"rects": [{"solidity": 0.9933039772153432, "top": 660, "right": 2720, "bottom": 2050, "left": 920}, {"solidity": 0.9952302106910118, "top": 2090, "right": 2700, "bottom": 3480, "left": 900}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726983f.jpg"} -{"rects": [{"solidity": 0.9933043413242257, "top": 685, "right": 3210, "bottom": 2615, "left": 480}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723363f.jpg"} -{"rects": [{"solidity": 0.9933044301417352, "top": 435, "right": 3035, "bottom": 1985, "left": 1125}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714799f.jpg"} -{"rects": [{"solidity": 0.9933052802225569, "top": 3185, "right": 3310, "bottom": 5075, "left": 610}, {"solidity": 0.9887950844240184, "top": 645, "right": 3325, "bottom": 2525, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712530f.jpg"} -{"rects": [{"solidity": 0.993305691200357, "top": 1645, "right": 2990, "bottom": 2855, "left": 965}, {"solidity": 0.996555240314255, "top": 455, "right": 3000, "bottom": 1640, "left": 980}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717545f.jpg"} -{"rects": [{"solidity": 0.9933065249529129, "top": 2080, "right": 3065, "bottom": 3595, "left": 1125}, {"solidity": 0.9941003352392389, "top": 480, "right": 3065, "bottom": 1890, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704727f.jpg"} -{"rects": [{"solidity": 0.9933090358737868, "top": 795, "right": 2090, "bottom": 3210, "left": 470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700982f.jpg"} -{"rects": [{"solidity": 0.9933092340270796, "top": 910, "right": 1955, "bottom": 2945, "left": 500}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701475f.jpg"} -{"rects": [{"solidity": 0.9933110260184019, "top": 860, "right": 5735, "bottom": 3275, "left": 4110}, {"solidity": 0.9946978735923377, "top": 875, "right": 3825, "bottom": 3295, "left": 2220}, {"solidity": 0.9966198274508756, "top": 855, "right": 1930, "bottom": 3245, "left": 345}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713629f.jpg"} -{"rects": [{"solidity": 0.9933113730314087, "top": 325, "right": 2410, "bottom": 1520, "left": 610}, {"solidity": 0.9928495495334985, "top": 1725, "right": 2405, "bottom": 2915, "left": 615}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716428f.jpg"} -{"rects": [{"solidity": 0.9933115527413721, "top": 825, "right": 2055, "bottom": 3180, "left": 490}, {"solidity": 0.9573317077418793, "top": 800, "right": 3840, "bottom": 3190, "left": 2260}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713955f.jpg"} -{"rects": [{"solidity": 0.9933123903228696, "top": 935, "right": 2030, "bottom": 3330, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729035f.jpg"} -{"rects": [{"solidity": 0.9933124987766766, "top": 830, "right": 2060, "bottom": 3235, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720039f.jpg"} -{"rects": [{"solidity": 0.9933136920289186, "top": 130, "right": 3010, "bottom": 3495, "left": 130}], "shape": {"h": 3910, "w": 3140}, "file": "/usr/local/google/home/danvk/milstein/1558040.jpg"} -{"rects": [{"solidity": 0.9933161419394231, "top": 850, "right": 3900, "bottom": 3265, "left": 2280}, {"solidity": 0.9970455135515294, "top": 890, "right": 2015, "bottom": 3275, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701066f.jpg"} -{"rects": [{"solidity": 0.9933161790210513, "top": 1090, "right": 3420, "bottom": 5065, "left": 230}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709095f.jpg"} -{"rects": [{"solidity": 0.9933162074423846, "top": 775, "right": 2050, "bottom": 3165, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713996f.jpg"} -{"rects": [{"solidity": 0.9933165038900844, "top": 325, "right": 2835, "bottom": 3425, "left": 1445}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714583f.jpg"} -{"rects": [{"solidity": 0.9933187078675522, "top": 540, "right": 3690, "bottom": 2525, "left": 1135}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516993.jpg"} -{"rects": [{"solidity": 0.9933206496619479, "top": 620, "right": 4975, "bottom": 3650, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716850f.jpg"} -{"rects": [{"solidity": 0.9933209916875385, "top": 1040, "right": 3830, "bottom": 3040, "left": 2235}, {"solidity": 0.9933606353933979, "top": 1040, "right": 5650, "bottom": 3020, "left": 4090}, {"solidity": 0.9932267846490356, "top": 1040, "right": 1950, "bottom": 3040, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723726f.jpg"} -{"rects": [{"solidity": 0.9933218725204972, "top": 4085, "right": 2970, "bottom": 5565, "left": 1025}, {"solidity": 0.9905706704149716, "top": 465, "right": 2980, "bottom": 1935, "left": 1050}, {"solidity": 0.9955457964356741, "top": 2215, "right": 2875, "bottom": 3705, "left": 1110}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/700617f.jpg"} -{"rects": [{"solidity": 0.9933238261752898, "top": 630, "right": 3070, "bottom": 2065, "left": 1260}, {"solidity": 0.9936629330862896, "top": 2495, "right": 3065, "bottom": 3910, "left": 1250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727386f.jpg"} -{"rects": [{"solidity": 0.9933263716346789, "top": 325, "right": 1945, "bottom": 1245, "left": 790}], "shape": {"h": 3935, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727069f.jpg"} -{"rects": [{"solidity": 0.9933265179701366, "top": 465, "right": 3120, "bottom": 1885, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700468f.jpg"} -{"rects": [{"solidity": 0.9933278850785723, "top": 725, "right": 2705, "bottom": 3605, "left": 870}, {"solidity": 0.9939917105399736, "top": 700, "right": 5120, "bottom": 3550, "left": 3265}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702877f.jpg"} -{"rects": [{"solidity": 0.9933281781918656, "top": 880, "right": 2910, "bottom": 2265, "left": 970}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705347f.jpg"} -{"rects": [{"solidity": 0.9933293643910877, "top": 485, "right": 2090, "bottom": 1935, "left": 230}, {"solidity": 0.9895996694432184, "top": 490, "right": 3990, "bottom": 1955, "left": 2140}, {"solidity": 0.9906849808345612, "top": 530, "right": 5925, "bottom": 1945, "left": 4020}, {"solidity": 0.9922536277540893, "top": 2170, "right": 2175, "bottom": 3530, "left": 260}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730832f.jpg"} -{"rects": [{"solidity": 0.993329506650385, "top": 980, "right": 2535, "bottom": 3995, "left": 250}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507643.jpg"} -{"rects": [{"solidity": 0.993334090781234, "top": 580, "right": 4915, "bottom": 3590, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713417f.jpg"} -{"rects": [{"solidity": 0.9933341709557422, "top": 495, "right": 4890, "bottom": 3510, "left": 1130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722143f.jpg"} -{"rects": [{"solidity": 0.9933351238970625, "top": 505, "right": 3080, "bottom": 1915, "left": 1260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727740f.jpg"} -{"rects": [{"solidity": 0.9933352279045631, "top": 730, "right": 4915, "bottom": 3340, "left": 945}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701723f.jpg"} -{"rects": [{"solidity": 0.9933362392621135, "top": 610, "right": 5345, "bottom": 3520, "left": 3220}, {"solidity": 0.9959945301204323, "top": 615, "right": 2735, "bottom": 3520, "left": 635}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709482f.jpg"} -{"rects": [{"solidity": 0.9933368973561431, "top": 3990, "right": 2920, "bottom": 5430, "left": 1090}, {"solidity": 0.9950524440926183, "top": 2220, "right": 2965, "bottom": 3620, "left": 1105}, {"solidity": 0.9947682480984998, "top": 590, "right": 2955, "bottom": 1935, "left": 1140}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725744f.jpg"} -{"rects": [{"solidity": 0.9933380504901291, "top": 445, "right": 2870, "bottom": 2025, "left": 930}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724127f.jpg"} -{"rects": [{"solidity": 0.9933386474212892, "top": 815, "right": 2040, "bottom": 3215, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714353f.jpg"} -{"rects": [{"solidity": 0.9933395605734476, "top": 615, "right": 5800, "bottom": 3155, "left": 4085}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731931f.jpg"} -{"rects": [{"solidity": 0.9933409155530282, "top": 640, "right": 3735, "bottom": 2805, "left": 670}], "shape": {"h": 6835, "w": 4390}, "file": "/usr/local/google/home/danvk/milstein/711554f.jpg"} -{"rects": [{"solidity": 0.9933432033537659, "top": 620, "right": 4920, "bottom": 3660, "left": 1115}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709867f.jpg"} -{"rects": [{"solidity": 0.9933436293057094, "top": 3170, "right": 3300, "bottom": 5065, "left": 585}, {"solidity": 0.9971884949544008, "top": 745, "right": 3270, "bottom": 2555, "left": 690}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/717735f.jpg"} -{"rects": [{"solidity": 0.9933436301130985, "top": 590, "right": 3175, "bottom": 2185, "left": 785}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707663f.jpg"} -{"rects": [{"solidity": 0.9933445926604454, "top": 2210, "right": 3000, "bottom": 3125, "left": 2025}, {"solidity": 0.9974319021237303, "top": 825, "right": 2955, "bottom": 1775, "left": 2030}, {"solidity": 0.9907256359132379, "top": 2215, "right": 1750, "bottom": 3160, "left": 855}, {"solidity": 0.9886535552193646, "top": 830, "right": 1760, "bottom": 1785, "left": 875}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711019f.jpg"} -{"rects": [{"solidity": 0.9933457471755414, "top": 675, "right": 2975, "bottom": 2010, "left": 925}, {"solidity": 0.9944905699056991, "top": 2380, "right": 2955, "bottom": 3625, "left": 975}, {"solidity": 0.9934020723606697, "top": 4035, "right": 2880, "bottom": 5175, "left": 1105}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717481f.jpg"} -{"rects": [{"solidity": 0.993345947803195, "top": 640, "right": 2700, "bottom": 2075, "left": 875}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704995f.jpg"} -{"rects": [{"solidity": 0.9933475770084814, "top": 275, "right": 3215, "bottom": 5905, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733443f.jpg"} -{"rects": [{"solidity": 0.993347601491387, "top": 760, "right": 3515, "bottom": 2560, "left": 820}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/708334f.jpg"} -{"rects": [{"solidity": 0.9933479239529872, "top": 550, "right": 4840, "bottom": 3460, "left": 1240}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712864f.jpg"} -{"rects": [{"solidity": 0.993348099302344, "top": 990, "right": 2965, "bottom": 2070, "left": 1330}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509683.jpg"} -{"rects": [{"solidity": 0.9933510093287641, "top": 390, "right": 3155, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707771f.jpg"} -{"rects": [{"solidity": 0.9933512179035837, "top": 2055, "right": 2950, "bottom": 3485, "left": 965}, {"solidity": 0.990874792072246, "top": 420, "right": 2825, "bottom": 1800, "left": 1065}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734603f.jpg"} -{"rects": [{"solidity": 0.9933522897236274, "top": 560, "right": 4925, "bottom": 3535, "left": 1120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713345f.jpg"} -{"rects": [{"solidity": 0.9933541043036147, "top": 340, "right": 5085, "bottom": 3695, "left": 1070}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718180f.jpg"} -{"rects": [{"solidity": 0.993355151249888, "top": 1900, "right": 2675, "bottom": 3310, "left": 870}, {"solidity": 0.9973846992404126, "top": 730, "right": 5255, "bottom": 2130, "left": 3455}, {"solidity": 0.9977058153257641, "top": 2180, "right": 5255, "bottom": 3565, "left": 3465}, {"solidity": 0.9954845256215119, "top": 725, "right": 2670, "bottom": 1835, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725481f.jpg"} -{"rects": [{"solidity": 0.9933551675393713, "top": 2180, "right": 5015, "bottom": 3585, "left": 3190}, {"solidity": 0.9972113608258778, "top": 600, "right": 5020, "bottom": 2000, "left": 3220}, {"solidity": 0.9943805758773724, "top": 620, "right": 2790, "bottom": 2005, "left": 985}, {"solidity": 0.9936458312186606, "top": 2190, "right": 2800, "bottom": 3585, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725536f.jpg"} -{"rects": [{"solidity": 0.9933553373478402, "top": 550, "right": 4830, "bottom": 3590, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709834f.jpg"} -{"rects": [{"solidity": 0.9933565891928884, "top": 355, "right": 5285, "bottom": 3575, "left": 1280}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731895f.jpg"} -{"rects": [{"solidity": 0.9933572991559863, "top": 410, "right": 2905, "bottom": 1825, "left": 1065}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703774f.jpg"} -{"rects": [{"solidity": 0.9933574975499735, "top": 325, "right": 5080, "bottom": 3625, "left": 930}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/711845f.jpg"} -{"rects": [{"solidity": 0.9933596883789714, "top": 665, "right": 2745, "bottom": 2105, "left": 925}, {"solidity": 0.9931320751048659, "top": 2125, "right": 2760, "bottom": 3560, "left": 935}, {"solidity": 0.9926251678309431, "top": 675, "right": 5255, "bottom": 2115, "left": 3445}, {"solidity": 0.9950195798869151, "top": 2140, "right": 5265, "bottom": 3565, "left": 3450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726725f.jpg"} -{"rects": [{"solidity": 0.9933613556094845, "top": 380, "right": 2750, "bottom": 1875, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718982f.jpg"} -{"rects": [{"solidity": 0.9933627817419867, "top": 2155, "right": 4135, "bottom": 3500, "left": 2890}, {"solidity": 0.9984318501884063, "top": 3890, "right": 1820, "bottom": 5100, "left": 450}, {"solidity": 0.9752212527510262, "top": 2240, "right": 1850, "bottom": 3480, "left": 505}, {"solidity": 0.9901701750421527, "top": 680, "right": 1830, "bottom": 1795, "left": 460}], "shape": {"h": 5930, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/1238851.jpg"} -{"rects": [{"solidity": 0.9933640092682807, "top": 605, "right": 2510, "bottom": 2105, "left": 420}, {"solidity": 0.9920745632985618, "top": 2385, "right": 2490, "bottom": 3875, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716197f.jpg"} -{"rects": [{"solidity": 0.9933640752385006, "top": 2100, "right": 3380, "bottom": 4060, "left": 595}, {"solidity": 0.995445472048002, "top": 4070, "right": 3345, "bottom": 6010, "left": 570}, {"solidity": 0.9941151466490341, "top": 130, "right": 3400, "bottom": 2100, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725056f.jpg"} -{"rects": [{"solidity": 0.9933655563830357, "top": 2275, "right": 2820, "bottom": 3695, "left": 990}, {"solidity": 0.9978444440049835, "top": 640, "right": 2785, "bottom": 2055, "left": 985}, {"solidity": 0.996040210135482, "top": 650, "right": 4950, "bottom": 2075, "left": 3155}, {"solidity": 0.993401925711301, "top": 2285, "right": 4990, "bottom": 3705, "left": 3180}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725081f.jpg"} -{"rects": [{"solidity": 0.9933665227285733, "top": 835, "right": 3270, "bottom": 2275, "left": 1260}], "shape": {"h": 2955, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507529.jpg"} -{"rects": [{"solidity": 0.9933682808977433, "top": 360, "right": 3805, "bottom": 2820, "left": 805}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715828f.jpg"} -{"rects": [{"solidity": 0.9933689259468025, "top": 545, "right": 3300, "bottom": 2380, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710015f.jpg"} -{"rects": [{"solidity": 0.9933714493148199, "top": 630, "right": 4920, "bottom": 3375, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721456f.jpg"} -{"rects": [{"solidity": 0.9933715619437821, "top": 395, "right": 3065, "bottom": 1745, "left": 830}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701344f.jpg"} -{"rects": [{"solidity": 0.9933721436519327, "top": 1420, "right": 2150, "bottom": 2445, "left": 620}, {"solidity": 0.9942313747717111, "top": 330, "right": 1990, "bottom": 1220, "left": 855}], "shape": {"h": 3950, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727107f.jpg"} -{"rects": [{"solidity": 0.9933725352563466, "top": 555, "right": 4845, "bottom": 3600, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709860f.jpg"} -{"rects": [{"solidity": 0.9933726665519358, "top": 855, "right": 2025, "bottom": 3275, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728715f.jpg"} -{"rects": [{"solidity": 0.9933728535068784, "top": 995, "right": 5490, "bottom": 2655, "left": 705}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713654f.jpg"} -{"rects": [{"solidity": 0.9933736474062548, "top": 435, "right": 5180, "bottom": 3500, "left": 1350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703203f.jpg"} -{"rects": [{"solidity": 0.9933740169128381, "top": 2205, "right": 3175, "bottom": 3825, "left": 755}, {"solidity": 0.995329328036426, "top": 4015, "right": 3170, "bottom": 5620, "left": 760}, {"solidity": 0.9942815403648233, "top": 405, "right": 3170, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721296f.jpg"} -{"rects": [{"solidity": 0.9933748973243742, "top": 775, "right": 2035, "bottom": 3145, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713266f.jpg"} -{"rects": [{"solidity": 0.9933749272682233, "top": 465, "right": 2395, "bottom": 1680, "left": 585}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715849f.jpg"} -{"rects": [{"solidity": 0.9933759236906409, "top": 315, "right": 2365, "bottom": 1510, "left": 560}], "shape": {"h": 4665, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715919f.jpg"} -{"rects": [{"solidity": 0.9933760190739886, "top": 2115, "right": 2980, "bottom": 3755, "left": 570}, {"solidity": 0.9984339835261524, "top": 430, "right": 2995, "bottom": 2050, "left": 590}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722904f.jpg"} -{"rects": [{"solidity": 0.993376391282906, "top": 1470, "right": 3200, "bottom": 4650, "left": 705}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722801f.jpg"} -{"rects": [{"solidity": 0.9933785165797091, "top": 915, "right": 2290, "bottom": 2365, "left": 265}, {"solidity": 0.9951459279972038, "top": 2545, "right": 2290, "bottom": 3980, "left": 270}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508091.jpg"} -{"rects": [{"solidity": 0.9933786996639715, "top": 2210, "right": 2915, "bottom": 3620, "left": 1095}, {"solidity": 0.9946378555416315, "top": 570, "right": 5080, "bottom": 1970, "left": 3265}, {"solidity": 0.9912542854001539, "top": 570, "right": 2890, "bottom": 1970, "left": 1075}, {"solidity": 0.9936799164020739, "top": 2165, "right": 5085, "bottom": 3585, "left": 3295}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725439f.jpg"} -{"rects": [{"solidity": 0.9933811680763218, "top": 440, "right": 3215, "bottom": 3690, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714287f.jpg"} -{"rects": [{"solidity": 0.9933816991733035, "top": 350, "right": 5095, "bottom": 3660, "left": 1020}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718323f.jpg"} -{"rects": [{"solidity": 0.9933850973706079, "top": 910, "right": 5090, "bottom": 3365, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700705f.jpg"} -{"rects": [{"solidity": 0.9933870200776616, "top": 740, "right": 3615, "bottom": 2885, "left": 555}], "shape": {"h": 6850, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711317f.jpg"} -{"rects": [{"solidity": 0.9933874163292813, "top": 385, "right": 2875, "bottom": 1790, "left": 1090}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704211f.jpg"} -{"rects": [{"solidity": 0.9933883223477141, "top": 2420, "right": 2545, "bottom": 3910, "left": 450}, {"solidity": 0.994340667227132, "top": 705, "right": 2555, "bottom": 2190, "left": 465}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716226f.jpg"} -{"rects": [{"solidity": 0.9933899991783148, "top": 1440, "right": 3225, "bottom": 4775, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720055f.jpg"} -{"rects": [{"solidity": 0.9933905350396309, "top": 2920, "right": 2360, "bottom": 4425, "left": 400}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508261.jpg"} -{"rects": [{"solidity": 0.9933927270318607, "top": 435, "right": 3155, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700368f.jpg"} -{"rects": [{"solidity": 0.993394145533103, "top": 785, "right": 1820, "bottom": 3195, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715055f.jpg"} -{"rects": [{"solidity": 0.9933951908098936, "top": 440, "right": 5045, "bottom": 3720, "left": 1060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730334f.jpg"} -{"rects": [{"solidity": 0.9933963178294574, "top": 775, "right": 4670, "bottom": 3205, "left": 1445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714122f.jpg"} -{"rects": [{"solidity": 0.993397350188404, "top": 685, "right": 2725, "bottom": 2120, "left": 895}, {"solidity": 0.9942174575805283, "top": 2165, "right": 2720, "bottom": 3575, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728250f.jpg"} -{"rects": [{"solidity": 0.993397363878004, "top": 590, "right": 4885, "bottom": 3270, "left": 1440}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701633f.jpg"} -{"rects": [{"solidity": 0.9934015090631639, "top": 2335, "right": 3205, "bottom": 3940, "left": 790}, {"solidity": 0.9969572554178127, "top": 475, "right": 3180, "bottom": 2065, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711907f.jpg"} -{"rects": [{"solidity": 0.9934015469377852, "top": 410, "right": 2380, "bottom": 1605, "left": 585}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716507f.jpg"} -{"rects": [{"solidity": 0.993401572641528, "top": 655, "right": 2750, "bottom": 2080, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726836f.jpg"} -{"rects": [{"solidity": 0.9934057672898828, "top": 460, "right": 3185, "bottom": 3875, "left": 670}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714236f.jpg"} -{"rects": [{"solidity": 0.9934066857046867, "top": 425, "right": 3235, "bottom": 2050, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702866f.jpg"} -{"rects": [{"solidity": 0.993407020073922, "top": 695, "right": 3300, "bottom": 2575, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712029f.jpg"} -{"rects": [{"solidity": 0.9934078054661348, "top": 765, "right": 2010, "bottom": 3190, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721863f.jpg"} -{"rects": [{"solidity": 0.993408824767959, "top": 570, "right": 4990, "bottom": 3510, "left": 1230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712938f.jpg"} -{"rects": [{"solidity": 0.9934122435054593, "top": 250, "right": 3570, "bottom": 2765, "left": 240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709806f.jpg"} -{"rects": [{"solidity": 0.9934135835803062, "top": 950, "right": 1905, "bottom": 2980, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707181f.jpg"} -{"rects": [{"solidity": 0.993414116250901, "top": 4055, "right": 3025, "bottom": 5510, "left": 1220}, {"solidity": 0.9945090932370743, "top": 2260, "right": 3040, "bottom": 3685, "left": 1230}, {"solidity": 0.9937079345784615, "top": 485, "right": 3040, "bottom": 1880, "left": 1220}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726762f.jpg"} -{"rects": [{"solidity": 0.993414257696905, "top": 615, "right": 3020, "bottom": 2430, "left": 1805}, {"solidity": 0.9951139294418285, "top": 635, "right": 1555, "bottom": 2420, "left": 345}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715906f.jpg"} -{"rects": [{"solidity": 0.993414817637346, "top": 2130, "right": 2800, "bottom": 3560, "left": 980}, {"solidity": 0.9947566464179435, "top": 460, "right": 2790, "bottom": 1885, "left": 975}, {"solidity": 0.994882846711737, "top": 2105, "right": 5085, "bottom": 3530, "left": 3275}, {"solidity": 0.9947506172106532, "top": 470, "right": 5075, "bottom": 1885, "left": 3270}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725185f.jpg"} -{"rects": [{"solidity": 0.9934152589864702, "top": 595, "right": 3175, "bottom": 2175, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709283f.jpg"} -{"rects": [{"solidity": 0.9934153306467979, "top": 955, "right": 2275, "bottom": 2795, "left": 380}], "shape": {"h": 5995, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465661.jpg"} -{"rects": [{"solidity": 0.9934156658904532, "top": 650, "right": 4605, "bottom": 3475, "left": 1455}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734140f.jpg"} -{"rects": [{"solidity": 0.9934180750156483, "top": 2095, "right": 2775, "bottom": 3515, "left": 925}, {"solidity": 0.9950872404717809, "top": 650, "right": 5200, "bottom": 2070, "left": 3360}, {"solidity": 0.9958116436307066, "top": 645, "right": 2760, "bottom": 2060, "left": 970}, {"solidity": 0.9976788510312605, "top": 2105, "right": 5180, "bottom": 3510, "left": 3385}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727987f.jpg"} -{"rects": [{"solidity": 0.9934183481925523, "top": 555, "right": 4930, "bottom": 3570, "left": 1175}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713421f.jpg"} -{"rects": [{"solidity": 0.9934192437808567, "top": 320, "right": 2885, "bottom": 1450, "left": 975}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701812f.jpg"} -{"rects": [{"solidity": 0.9934198374584411, "top": 830, "right": 2145, "bottom": 3230, "left": 545}, {"solidity": 0.9895655442071462, "top": 820, "right": 4060, "bottom": 3215, "left": 2455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722282f.jpg"} -{"rects": [{"solidity": 0.99342110935789, "top": 655, "right": 2925, "bottom": 2115, "left": 920}, {"solidity": 0.9862547692526614, "top": 2135, "right": 2920, "bottom": 3565, "left": 930}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731475f.jpg"} -{"rects": [{"solidity": 0.9934232031484944, "top": 785, "right": 3835, "bottom": 3195, "left": 2225}, {"solidity": 0.9951387246065833, "top": 785, "right": 1980, "bottom": 3175, "left": 390}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711738f.jpg"} -{"rects": [{"solidity": 0.9934241974215932, "top": 1285, "right": 3235, "bottom": 4710, "left": 640}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711959f.jpg"} -{"rects": [{"solidity": 0.9934243671930647, "top": 450, "right": 2800, "bottom": 1495, "left": 1380}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724798f.jpg"} -{"rects": [{"solidity": 0.9934249615115696, "top": 505, "right": 4860, "bottom": 3560, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709853f.jpg"} -{"rects": [{"solidity": 0.993425491103909, "top": 460, "right": 3140, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720526f.jpg"} -{"rects": [{"solidity": 0.9934261190305426, "top": 410, "right": 3210, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700479f.jpg"} -{"rects": [{"solidity": 0.993428900623318, "top": 690, "right": 2515, "bottom": 2180, "left": 420}, {"solidity": 0.9963983189429618, "top": 2455, "right": 2490, "bottom": 3935, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716186f.jpg"} -{"rects": [{"solidity": 0.9934296871529587, "top": 1015, "right": 1995, "bottom": 3050, "left": 450}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723646f.jpg"} -{"rects": [{"solidity": 0.9934298821405041, "top": 2035, "right": 2405, "bottom": 3300, "left": 755}, {"solidity": 0.9939509268944311, "top": 805, "right": 2405, "bottom": 2025, "left": 755}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713269f.jpg"} -{"rects": [{"solidity": 0.9934301710119937, "top": 380, "right": 3080, "bottom": 3700, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714163f.jpg"} -{"rects": [{"solidity": 0.9934306673488065, "top": 1135, "right": 2585, "bottom": 3995, "left": 405}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509349.jpg"} -{"rects": [{"solidity": 0.9934309233202222, "top": 900, "right": 3200, "bottom": 2360, "left": 1235}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507588.jpg"} -{"rects": [{"solidity": 0.9934315973526998, "top": 765, "right": 2535, "bottom": 3685, "left": 285}], "shape": {"h": 4620, "w": 2930}, "file": "/usr/local/google/home/danvk/milstein/1507532.jpg"} -{"rects": [{"solidity": 0.9934338309234422, "top": 500, "right": 2845, "bottom": 2000, "left": 1015}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700869f.jpg"} -{"rects": [{"solidity": 0.9934345969008749, "top": 1070, "right": 3915, "bottom": 5570, "left": 305}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706380f.jpg"} -{"rects": [{"solidity": 0.9934364397008927, "top": 670, "right": 3190, "bottom": 2075, "left": 1000}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733378f.jpg"} -{"rects": [{"solidity": 0.9934369203162223, "top": 780, "right": 5040, "bottom": 3145, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716976f.jpg"} -{"rects": [{"solidity": 0.993438568414927, "top": 485, "right": 2950, "bottom": 1930, "left": 1125}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727423f.jpg"} -{"rects": [{"solidity": 0.9934390708541568, "top": 540, "right": 3345, "bottom": 2485, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722045f.jpg"} -{"rects": [{"solidity": 0.9934397979066102, "top": 670, "right": 2690, "bottom": 2090, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705394f.jpg"} -{"rects": [{"solidity": 0.9934404528039307, "top": 440, "right": 2130, "bottom": 2540, "left": 695}, {"solidity": 0.9932415106780468, "top": 450, "right": 3845, "bottom": 1495, "left": 2525}, {"solidity": 0.9979265126183849, "top": 1500, "right": 3850, "bottom": 2525, "left": 2530}], "shape": {"h": 2935, "w": 4560}, "file": "/usr/local/google/home/danvk/milstein/727196f.jpg"} -{"rects": [{"solidity": 0.9934417942157991, "top": 420, "right": 2995, "bottom": 2090, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724644f.jpg"} -{"rects": [{"solidity": 0.9934422518387223, "top": 700, "right": 3360, "bottom": 2625, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714308f.jpg"} -{"rects": [{"solidity": 0.9934423942912991, "top": 505, "right": 5050, "bottom": 3720, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701384f.jpg"} -{"rects": [{"solidity": 0.9934433429539465, "top": 640, "right": 2870, "bottom": 3495, "left": 1040}, {"solidity": 0.9949131108174546, "top": 615, "right": 5340, "bottom": 2080, "left": 3470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702631f.jpg"} -{"rects": [{"solidity": 0.9934462369645543, "top": 660, "right": 4890, "bottom": 3665, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709878f.jpg"} -{"rects": [{"solidity": 0.9934463105756648, "top": 2635, "right": 2210, "bottom": 3980, "left": 370}, {"solidity": 0.9986531761667835, "top": 1125, "right": 2215, "bottom": 2390, "left": 425}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508259.jpg"} -{"rects": [{"solidity": 0.9934475697812264, "top": 130, "right": 3765, "bottom": 2870, "left": 135}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509949.jpg"} -{"rects": [{"solidity": 0.9934484133766308, "top": 565, "right": 2505, "bottom": 1995, "left": 480}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716427f.jpg"} -{"rects": [{"solidity": 0.9934489979771761, "top": 415, "right": 3315, "bottom": 2380, "left": 565}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727885f.jpg"} -{"rects": [{"solidity": 0.9934511215077149, "top": 430, "right": 3110, "bottom": 1855, "left": 1275}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725621f.jpg"} -{"rects": [{"solidity": 0.9934531483026212, "top": 600, "right": 2480, "bottom": 2030, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707371f.jpg"} -{"rects": [{"solidity": 0.9934534601992844, "top": 2640, "right": 1990, "bottom": 3680, "left": 450}, {"solidity": 0.9956576630185675, "top": 295, "right": 2005, "bottom": 1320, "left": 470}, {"solidity": 0.9955190440627334, "top": 1485, "right": 1995, "bottom": 2505, "left": 470}], "shape": {"h": 3945, "w": 2575}, "file": "/usr/local/google/home/danvk/milstein/727158f.jpg"} -{"rects": [{"solidity": 0.99345354478963, "top": 4120, "right": 2855, "bottom": 5555, "left": 1010}, {"solidity": 0.9955627347566316, "top": 560, "right": 2905, "bottom": 1990, "left": 1085}, {"solidity": 0.99516040095315, "top": 2325, "right": 2895, "bottom": 3735, "left": 1070}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702717f.jpg"} -{"rects": [{"solidity": 0.9934536646313588, "top": 405, "right": 2765, "bottom": 3805, "left": 1145}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714801f.jpg"} -{"rects": [{"solidity": 0.9934539952124114, "top": 325, "right": 4990, "bottom": 3670, "left": 1005}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721008f.jpg"} -{"rects": [{"solidity": 0.9934570586245227, "top": 370, "right": 5080, "bottom": 3590, "left": 1030}], "shape": {"h": 3910, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708284f.jpg"} -{"rects": [{"solidity": 0.9934595841070955, "top": 740, "right": 2175, "bottom": 3395, "left": 310}, {"solidity": 0.9906793552024389, "top": 740, "right": 4065, "bottom": 3350, "left": 2210}, {"solidity": 0.9604119476747337, "top": 750, "right": 5895, "bottom": 3325, "left": 4090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706527f.jpg"} -{"rects": [{"solidity": 0.993459987643482, "top": 480, "right": 2200, "bottom": 2565, "left": 705}, {"solidity": 0.9928268237307097, "top": 475, "right": 3925, "bottom": 2570, "left": 2455}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716272f.jpg"} -{"rects": [{"solidity": 0.9934604544315301, "top": 800, "right": 3885, "bottom": 3180, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717469f.jpg"} -{"rects": [{"solidity": 0.99346181327017, "top": 700, "right": 2010, "bottom": 3115, "left": 395}, {"solidity": 0.9967944515824527, "top": 700, "right": 3855, "bottom": 3110, "left": 2260}, {"solidity": 0.9943200152783357, "top": 720, "right": 5730, "bottom": 3115, "left": 4130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707778f.jpg"} -{"rects": [{"solidity": 0.993463073089447, "top": 765, "right": 2965, "bottom": 4810, "left": 880}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711863f.jpg"} -{"rects": [{"solidity": 0.9934641187750182, "top": 525, "right": 3060, "bottom": 1925, "left": 1275}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727709f.jpg"} -{"rects": [{"solidity": 0.9934645200659952, "top": 855, "right": 1880, "bottom": 3140, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707935f.jpg"} -{"rects": [{"solidity": 0.9934652921321856, "top": 395, "right": 3195, "bottom": 2030, "left": 785}, {"solidity": 0.9913786907632096, "top": 2240, "right": 3185, "bottom": 3895, "left": 765}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/701961f.jpg"} -{"rects": [{"solidity": 0.993465791496659, "top": 435, "right": 3175, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714333f.jpg"} -{"rects": [{"solidity": 0.9934659567953061, "top": 715, "right": 5280, "bottom": 2135, "left": 3470}, {"solidity": 0.9944758838585827, "top": 705, "right": 2655, "bottom": 2110, "left": 855}, {"solidity": 0.9942557505068456, "top": 2325, "right": 2665, "bottom": 3445, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726584f.jpg"} -{"rects": [{"solidity": 0.9934665700562847, "top": 480, "right": 3220, "bottom": 3805, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714539f.jpg"} -{"rects": [{"solidity": 0.9934703234238533, "top": 920, "right": 2275, "bottom": 3630, "left": 475}], "shape": {"h": 4410, "w": 6890}, "file": "/usr/local/google/home/danvk/milstein/711676f.jpg"} -{"rects": [{"solidity": 0.9934716690147786, "top": 1085, "right": 2030, "bottom": 2905, "left": 810}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509031.jpg"} -{"rects": [{"solidity": 0.9934727760825431, "top": 395, "right": 4235, "bottom": 3055, "left": 765}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718455f.jpg"} -{"rects": [{"solidity": 0.9934734750336067, "top": 410, "right": 4265, "bottom": 3560, "left": 1595}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731138f.jpg"} -{"rects": [{"solidity": 0.9934736579078881, "top": 1120, "right": 2280, "bottom": 3675, "left": 755}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507557.jpg"} -{"rects": [{"solidity": 0.9934739923229566, "top": 200, "right": 3660, "bottom": 2955, "left": 130}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709859f.jpg"} -{"rects": [{"solidity": 0.993475854320709, "top": 590, "right": 4710, "bottom": 3400, "left": 1165}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730404f.jpg"} -{"rects": [{"solidity": 0.9934767393128818, "top": 540, "right": 4990, "bottom": 3575, "left": 1100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720931f.jpg"} -{"rects": [{"solidity": 0.9934771144796638, "top": 770, "right": 2080, "bottom": 3140, "left": 495}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710858f.jpg"} -{"rects": [{"solidity": 0.9934771700953337, "top": 2120, "right": 2930, "bottom": 3670, "left": 1020}, {"solidity": 0.9952595839779955, "top": 2140, "right": 5140, "bottom": 3680, "left": 3235}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714826f.jpg"} -{"rects": [{"solidity": 0.993477438790712, "top": 890, "right": 2265, "bottom": 3620, "left": 440}, {"solidity": 0.9938008306376725, "top": 915, "right": 4415, "bottom": 3635, "left": 2600}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711691f.jpg"} -{"rects": [{"solidity": 0.9934777059445605, "top": 2375, "right": 3860, "bottom": 4645, "left": 645}, {"solidity": 0.9792515368996028, "top": 435, "right": 3625, "bottom": 2255, "left": 905}], "shape": {"h": 6860, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706381f.jpg"} -{"rects": [{"solidity": 0.993477849437319, "top": 455, "right": 3075, "bottom": 1870, "left": 1230}, {"solidity": 0.994307584706248, "top": 2180, "right": 3070, "bottom": 3595, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725778f.jpg"} -{"rects": [{"solidity": 0.993479021853278, "top": 685, "right": 2735, "bottom": 2085, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726151f.jpg"} -{"rects": [{"solidity": 0.9934797321795461, "top": 430, "right": 2805, "bottom": 1700, "left": 1150}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731415f.jpg"} -{"rects": [{"solidity": 0.9934797873407564, "top": 845, "right": 1890, "bottom": 3035, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710134f.jpg"} -{"rects": [{"solidity": 0.9934798179339664, "top": 2090, "right": 3125, "bottom": 3490, "left": 1170}, {"solidity": 0.9874096351783013, "top": 410, "right": 3145, "bottom": 1795, "left": 1180}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704176f.jpg"} -{"rects": [{"solidity": 0.9934804236764908, "top": 350, "right": 3095, "bottom": 1985, "left": 650}, {"solidity": 0.9956484513040216, "top": 4090, "right": 3010, "bottom": 5720, "left": 575}, {"solidity": 0.9939383615577704, "top": 2185, "right": 3060, "bottom": 3855, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701698f.jpg"} -{"rects": [{"solidity": 0.993481806876726, "top": 520, "right": 3315, "bottom": 2145, "left": 885}, {"solidity": 0.9970909808794411, "top": 4170, "right": 2935, "bottom": 5475, "left": 1270}, {"solidity": 0.990844044829988, "top": 2550, "right": 2945, "bottom": 3770, "left": 1310}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705450f.jpg"} -{"rects": [{"solidity": 0.9934830082198504, "top": 510, "right": 3070, "bottom": 1925, "left": 1245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727835f.jpg"} -{"rects": [{"solidity": 0.9934833275837407, "top": 2080, "right": 5230, "bottom": 3560, "left": 3140}, {"solidity": 0.9953600728098565, "top": 510, "right": 5245, "bottom": 1975, "left": 3170}, {"solidity": 0.995473130219834, "top": 2050, "right": 2700, "bottom": 3500, "left": 630}, {"solidity": 0.9957412341468613, "top": 490, "right": 2710, "bottom": 1935, "left": 645}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730038f.jpg"} -{"rects": [{"solidity": 0.9934835010361668, "top": 470, "right": 3120, "bottom": 1920, "left": 1300}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725784f.jpg"} -{"rects": [{"solidity": 0.9934850742096418, "top": 385, "right": 3225, "bottom": 1975, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725590f.jpg"} -{"rects": [{"solidity": 0.9934856483885874, "top": 825, "right": 3380, "bottom": 2300, "left": 1245}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507821.jpg"} -{"rects": [{"solidity": 0.9934882241243899, "top": 665, "right": 2745, "bottom": 2080, "left": 930}, {"solidity": 0.9934884238646483, "top": 2120, "right": 2730, "bottom": 3515, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725264f.jpg"} -{"rects": [{"solidity": 0.9934887201720327, "top": 235, "right": 3855, "bottom": 3210, "left": 160}, {"solidity": 0.9674493117942801, "top": 3460, "right": 2895, "bottom": 4870, "left": 1085}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705762f.jpg"} -{"rects": [{"solidity": 0.9934897915667147, "top": 780, "right": 2015, "bottom": 3165, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717252f.jpg"} -{"rects": [{"solidity": 0.9934901336373674, "top": 2365, "right": 3170, "bottom": 3980, "left": 740}, {"solidity": 0.9965663305720769, "top": 485, "right": 3165, "bottom": 2065, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724917f.jpg"} -{"rects": [{"solidity": 0.993490433590179, "top": 480, "right": 2185, "bottom": 2565, "left": 700}, {"solidity": 0.994185902873284, "top": 495, "right": 3930, "bottom": 2575, "left": 2455}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716243f.jpg"} -{"rects": [{"solidity": 0.9934915579820038, "top": 445, "right": 1735, "bottom": 1335, "left": 595}], "shape": {"h": 2540, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727163f.jpg"} -{"rects": [{"solidity": 0.9934925539800349, "top": 720, "right": 4220, "bottom": 3480, "left": 2305}, {"solidity": 0.9956850955741684, "top": 905, "right": 2010, "bottom": 3325, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711000f.jpg"} -{"rects": [{"solidity": 0.9934937559478724, "top": 535, "right": 2860, "bottom": 1960, "left": 1000}, {"solidity": 0.9937456737637397, "top": 2420, "right": 2850, "bottom": 3845, "left": 1015}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725527f.jpg"} -{"rects": [{"solidity": 0.9934939984350163, "top": 2040, "right": 2625, "bottom": 3465, "left": 810}, {"solidity": 0.9965693715129635, "top": 635, "right": 2580, "bottom": 2025, "left": 805}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706950f.jpg"} -{"rects": [{"solidity": 0.993494753781154, "top": 2325, "right": 3215, "bottom": 3930, "left": 800}, {"solidity": 0.9974262343365107, "top": 495, "right": 3190, "bottom": 2075, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710337f.jpg"} -{"rects": [{"solidity": 0.9934953960133286, "top": 545, "right": 4985, "bottom": 3545, "left": 1175}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716557f.jpg"} -{"rects": [{"solidity": 0.9934981242885805, "top": 890, "right": 3555, "bottom": 2950, "left": 2165}, {"solidity": 0.9734661421277309, "top": 945, "right": 1850, "bottom": 2950, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706889f.jpg"} -{"rects": [{"solidity": 0.9935006843880496, "top": 690, "right": 5545, "bottom": 3505, "left": 4120}, {"solidity": 0.9936706453596353, "top": 705, "right": 3795, "bottom": 3480, "left": 2345}, {"solidity": 0.9931743269127928, "top": 710, "right": 2015, "bottom": 3465, "left": 600}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721188f.jpg"} -{"rects": [{"solidity": 0.9935007857656554, "top": 865, "right": 4070, "bottom": 2955, "left": 2910}, {"solidity": 0.9933282204476099, "top": 3425, "right": 4110, "bottom": 5515, "left": 2960}], "shape": {"h": 6005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/465587.jpg"} -{"rects": [{"solidity": 0.9935015023408567, "top": 635, "right": 2725, "bottom": 3505, "left": 885}, {"solidity": 0.9952747772532893, "top": 2030, "right": 5215, "bottom": 3470, "left": 3390}, {"solidity": 0.9954397172430223, "top": 595, "right": 5210, "bottom": 2025, "left": 3390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707192f.jpg"} -{"rects": [{"solidity": 0.9935024435255118, "top": 805, "right": 3345, "bottom": 2295, "left": 1335}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517073.jpg"} -{"rects": [{"solidity": 0.9935032343811594, "top": 480, "right": 3530, "bottom": 2535, "left": 670}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731269f.jpg"} -{"rects": [{"solidity": 0.9935038858573689, "top": 365, "right": 2400, "bottom": 1560, "left": 605}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715825f.jpg"} -{"rects": [{"solidity": 0.9935042203119531, "top": 2305, "right": 3270, "bottom": 3920, "left": 840}, {"solidity": 0.9935467622604975, "top": 545, "right": 3245, "bottom": 2150, "left": 830}, {"solidity": 0.9977180594563086, "top": 4075, "right": 3245, "bottom": 5660, "left": 845}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726025f.jpg"} -{"rects": [{"solidity": 0.9935043581696905, "top": 2440, "right": 2515, "bottom": 3935, "left": 420}, {"solidity": 0.9911079867791426, "top": 720, "right": 2505, "bottom": 2190, "left": 415}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716208f.jpg"} -{"rects": [{"solidity": 0.9935064283348555, "top": 660, "right": 2725, "bottom": 2065, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727547f.jpg"} -{"rects": [{"solidity": 0.9935066964634547, "top": 325, "right": 3540, "bottom": 2130, "left": 840}, {"solidity": 0.9761522385547576, "top": 2445, "right": 3300, "bottom": 4155, "left": 1145}, {"solidity": 0.9961080088983207, "top": 4530, "right": 3240, "bottom": 6035, "left": 1195}], "shape": {"h": 6850, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711240f.jpg"} -{"rects": [{"solidity": 0.9935087894697057, "top": 430, "right": 3215, "bottom": 2325, "left": 490}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726263f.jpg"} -{"rects": [{"solidity": 0.9935091611206968, "top": 635, "right": 1635, "bottom": 2435, "left": 415}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716406f.jpg"} -{"rects": [{"solidity": 0.9935097598979229, "top": 520, "right": 3970, "bottom": 2600, "left": 2485}, {"solidity": 0.9953879600179861, "top": 505, "right": 2105, "bottom": 2590, "left": 630}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716076f.jpg"} -{"rects": [{"solidity": 0.9935108331501, "top": 585, "right": 5040, "bottom": 3590, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716585f.jpg"} -{"rects": [{"solidity": 0.9935109387033286, "top": 4000, "right": 3245, "bottom": 5725, "left": 675}, {"solidity": 0.9763157135853736, "top": 480, "right": 3210, "bottom": 2195, "left": 650}, {"solidity": 0.9761545145469708, "top": 2240, "right": 3225, "bottom": 3935, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722945f.jpg"} -{"rects": [{"solidity": 0.993511492695425, "top": 400, "right": 3205, "bottom": 2115, "left": 810}, {"solidity": 0.9961726066597294, "top": 2335, "right": 3215, "bottom": 3945, "left": 800}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/700831f.jpg"} -{"rects": [{"solidity": 0.9935118829106347, "top": 1385, "right": 2015, "bottom": 2420, "left": 470}, {"solidity": 0.9937926406442232, "top": 2610, "right": 2005, "bottom": 3640, "left": 465}, {"solidity": 0.9933284006972574, "top": 310, "right": 1910, "bottom": 1195, "left": 765}], "shape": {"h": 3950, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727124f.jpg"} -{"rects": [{"solidity": 0.9935121092823919, "top": 640, "right": 4880, "bottom": 3660, "left": 1140}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709979f.jpg"} -{"rects": [{"solidity": 0.9935124878198882, "top": 2195, "right": 3000, "bottom": 3605, "left": 1240}, {"solidity": 0.9941490727898495, "top": 480, "right": 3035, "bottom": 1895, "left": 1250}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/727471f.jpg"} -{"rects": [{"solidity": 0.9935154648364382, "top": 365, "right": 3355, "bottom": 2270, "left": 680}, {"solidity": 0.9947361996142484, "top": 2500, "right": 2955, "bottom": 3925, "left": 1130}, {"solidity": 0.9935850000521121, "top": 4210, "right": 2905, "bottom": 5590, "left": 1140}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/726976f.jpg"} -{"rects": [{"solidity": 0.9935157006923582, "top": 605, "right": 3310, "bottom": 2520, "left": 605}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707889f.jpg"} -{"rects": [{"solidity": 0.9935157204397865, "top": 405, "right": 3180, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707915f.jpg"} -{"rects": [{"solidity": 0.993517978410739, "top": 390, "right": 4990, "bottom": 3730, "left": 955}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705958f.jpg"} -{"rects": [{"solidity": 0.9935185656802322, "top": 2280, "right": 2885, "bottom": 3840, "left": 965}, {"solidity": 0.9922408362701534, "top": 4085, "right": 2865, "bottom": 5655, "left": 955}, {"solidity": 0.9963375932755811, "top": 460, "right": 2880, "bottom": 2010, "left": 980}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/719789f.jpg"} -{"rects": [{"solidity": 0.9935186447399402, "top": 555, "right": 2790, "bottom": 1690, "left": 970}, {"solidity": 0.9927102219443577, "top": 2020, "right": 2810, "bottom": 3140, "left": 1000}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733456f.jpg"} -{"rects": [{"solidity": 0.9935201851375675, "top": 400, "right": 3225, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702762f.jpg"} -{"rects": [{"solidity": 0.9935202496291906, "top": 3265, "right": 3165, "bottom": 4870, "left": 765}, {"solidity": 0.9952836544940035, "top": 1245, "right": 3160, "bottom": 2855, "left": 755}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708133f.jpg"} -{"rects": [{"solidity": 0.9935216100232794, "top": 645, "right": 5225, "bottom": 2080, "left": 3375}, {"solidity": 0.992434579507325, "top": 2090, "right": 5215, "bottom": 3515, "left": 3370}, {"solidity": 0.9957582396694629, "top": 2085, "right": 2740, "bottom": 3490, "left": 940}, {"solidity": 0.9961099429258036, "top": 665, "right": 2740, "bottom": 2065, "left": 940}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726599f.jpg"} -{"rects": [{"solidity": 0.9935224573227999, "top": 2185, "right": 3175, "bottom": 3910, "left": 515}, {"solidity": 0.9633457102929812, "top": 3900, "right": 3175, "bottom": 5655, "left": 480}, {"solidity": 0.9849467852456626, "top": 465, "right": 3210, "bottom": 2180, "left": 555}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722917f.jpg"} -{"rects": [{"solidity": 0.9935231337594558, "top": 510, "right": 2015, "bottom": 3545, "left": 590}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714190f.jpg"} -{"rects": [{"solidity": 0.9935252268577579, "top": 2250, "right": 4790, "bottom": 3975, "left": 2660}], "shape": {"h": 4440, "w": 5335}, "file": "/usr/local/google/home/danvk/milstein/1596928.jpg"} -{"rects": [{"solidity": 0.9935259828035964, "top": 2235, "right": 3110, "bottom": 3865, "left": 695}, {"solidity": 0.9954156158049601, "top": 4100, "right": 3085, "bottom": 5720, "left": 665}, {"solidity": 0.9938898931799507, "top": 435, "right": 3140, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713394f.jpg"} -{"rects": [{"solidity": 0.9935267725615967, "top": 610, "right": 4925, "bottom": 3440, "left": 1190}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720147f.jpg"} -{"rects": [{"solidity": 0.9935270348653009, "top": 2310, "right": 3030, "bottom": 3720, "left": 1190}, {"solidity": 0.9917960208010254, "top": 4125, "right": 3025, "bottom": 5560, "left": 1170}, {"solidity": 0.9932775590551182, "top": 545, "right": 3005, "bottom": 1955, "left": 1185}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728062f.jpg"} -{"rects": [{"solidity": 0.9935271771641264, "top": 510, "right": 3210, "bottom": 2410, "left": 595}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722017f.jpg"} -{"rects": [{"solidity": 0.9935274823048219, "top": 695, "right": 4960, "bottom": 3220, "left": 1180}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717815f.jpg"} -{"rects": [{"solidity": 0.9935277576602917, "top": 530, "right": 4755, "bottom": 3485, "left": 915}], "shape": {"h": 3855, "w": 6025}, "file": "/usr/local/google/home/danvk/milstein/702586f.jpg"} -{"rects": [{"solidity": 0.9935295990984921, "top": 420, "right": 3210, "bottom": 2150, "left": 790}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/700590f.jpg"} -{"rects": [{"solidity": 0.9935320678154899, "top": 825, "right": 2150, "bottom": 3220, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718447f.jpg"} -{"rects": [{"solidity": 0.9935339788604646, "top": 1440, "right": 2115, "bottom": 2485, "left": 580}, {"solidity": 0.9938192119495236, "top": 290, "right": 2125, "bottom": 1305, "left": 600}], "shape": {"h": 3950, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727106f.jpg"} -{"rects": [{"solidity": 0.9935361588379535, "top": 1070, "right": 5535, "bottom": 3015, "left": 4010}, {"solidity": 0.9972797075578863, "top": 1090, "right": 3740, "bottom": 3015, "left": 2205}, {"solidity": 0.9957602115523307, "top": 1110, "right": 2010, "bottom": 2980, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701026f.jpg"} -{"rects": [{"solidity": 0.9935378911391256, "top": 810, "right": 4445, "bottom": 3240, "left": 1445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732076f.jpg"} -{"rects": [{"solidity": 0.9935383358022168, "top": 935, "right": 2995, "bottom": 2005, "left": 1545}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507641.jpg"} -{"rects": [{"solidity": 0.9935388234885578, "top": 400, "right": 2805, "bottom": 4015, "left": 1195}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714841f.jpg"} -{"rects": [{"solidity": 0.9935391146685535, "top": 2790, "right": 2435, "bottom": 4230, "left": 435}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508081.jpg"} -{"rects": [{"solidity": 0.9935392746994466, "top": 810, "right": 2225, "bottom": 3285, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701960f.jpg"} -{"rects": [{"solidity": 0.9935435720039805, "top": 660, "right": 1515, "bottom": 2445, "left": 315}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715932f.jpg"} -{"rects": [{"solidity": 0.9935443375437436, "top": 420, "right": 3205, "bottom": 1990, "left": 820}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717561f.jpg"} -{"rects": [{"solidity": 0.9935465548983509, "top": 740, "right": 3905, "bottom": 3150, "left": 2285}, {"solidity": 0.9943353059301121, "top": 735, "right": 2000, "bottom": 3145, "left": 420}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708258f.jpg"} -{"rects": [{"solidity": 0.9935491578067136, "top": 785, "right": 5705, "bottom": 3215, "left": 4085}, {"solidity": 0.9941560462071022, "top": 770, "right": 3865, "bottom": 3200, "left": 2255}, {"solidity": 0.9958714389104546, "top": 760, "right": 2000, "bottom": 3170, "left": 405}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725083f.jpg"} -{"rects": [{"solidity": 0.9935492416066558, "top": 590, "right": 2940, "bottom": 2015, "left": 1115}, {"solidity": 0.9978033638779801, "top": 2385, "right": 2920, "bottom": 3805, "left": 1130}, {"solidity": 0.9963274852619508, "top": 4225, "right": 2900, "bottom": 5605, "left": 1085}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725948f.jpg"} -{"rects": [{"solidity": 0.9935493899121784, "top": 680, "right": 3175, "bottom": 2615, "left": 465}, {"solidity": 0.9934065106943486, "top": 3295, "right": 3170, "bottom": 5200, "left": 475}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711893f.jpg"} -{"rects": [{"solidity": 0.9935504550962324, "top": 550, "right": 2145, "bottom": 3000, "left": 670}, {"solidity": 0.9919358171873637, "top": 705, "right": 4150, "bottom": 2815, "left": 2830}, {"solidity": 0.9409304393741489, "top": 3325, "right": 2020, "bottom": 5725, "left": 825}], "shape": {"h": 6070, "w": 4595}, "file": "/usr/local/google/home/danvk/milstein/465717.jpg"} -{"rects": [{"solidity": 0.9935506606228247, "top": 450, "right": 3095, "bottom": 1870, "left": 1245}, {"solidity": 0.9941900684517331, "top": 2160, "right": 3090, "bottom": 3580, "left": 1240}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725908f.jpg"} -{"rects": [{"solidity": 0.9935524868574717, "top": 440, "right": 4730, "bottom": 3400, "left": 975}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703202f.jpg"} -{"rects": [{"solidity": 0.993553268187858, "top": 760, "right": 2310, "bottom": 3175, "left": 665}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705034f.jpg"} -{"rects": [{"solidity": 0.9935536998674713, "top": 820, "right": 3920, "bottom": 3235, "left": 2290}, {"solidity": 0.9958706236882824, "top": 815, "right": 2065, "bottom": 3225, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732502f.jpg"} -{"rects": [{"solidity": 0.9935537686430216, "top": 410, "right": 3200, "bottom": 1995, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717726f.jpg"} -{"rects": [{"solidity": 0.9935543967720494, "top": 2450, "right": 3200, "bottom": 4465, "left": 510}, {"solidity": 0.9952996278454456, "top": 655, "right": 3145, "bottom": 2240, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710320f.jpg"} -{"rects": [{"solidity": 0.9935547432180507, "top": 600, "right": 3145, "bottom": 2220, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720159f.jpg"} -{"rects": [{"solidity": 0.9935555473001839, "top": 315, "right": 5005, "bottom": 3650, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723808f.jpg"} -{"rects": [{"solidity": 0.9935591324107111, "top": 530, "right": 2240, "bottom": 2970, "left": 595}, {"solidity": 0.9952027662464733, "top": 580, "right": 4230, "bottom": 3010, "left": 2590}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710733f.jpg"} -{"rects": [{"solidity": 0.993559210127401, "top": 805, "right": 2025, "bottom": 3185, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713371f.jpg"} -{"rects": [{"solidity": 0.9935638261218199, "top": 1080, "right": 3325, "bottom": 4720, "left": 565}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721196f.jpg"} -{"rects": [{"solidity": 0.9935642958574157, "top": 635, "right": 5110, "bottom": 3305, "left": 1690}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733534f.jpg"} -{"rects": [{"solidity": 0.9935650197940602, "top": 775, "right": 2770, "bottom": 2165, "left": 980}, {"solidity": 0.9935282316917898, "top": 820, "right": 5020, "bottom": 1950, "left": 3195}, {"solidity": 0.994427178891926, "top": 2295, "right": 5015, "bottom": 3420, "left": 3205}, {"solidity": 0.9940259188973232, "top": 2410, "right": 2760, "bottom": 3525, "left": 945}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726000f.jpg"} -{"rects": [{"solidity": 0.9935679183186498, "top": 1225, "right": 3195, "bottom": 2660, "left": 1005}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/730791f.jpg"} -{"rects": [{"solidity": 0.9935687326181962, "top": 680, "right": 2735, "bottom": 2090, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725500f.jpg"} -{"rects": [{"solidity": 0.9935714886509739, "top": 2300, "right": 3035, "bottom": 3860, "left": 1010}], "shape": {"h": 4405, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706383f.jpg"} -{"rects": [{"solidity": 0.9935715794290542, "top": 450, "right": 2910, "bottom": 1970, "left": 1000}, {"solidity": 0.9905618828669327, "top": 2265, "right": 2915, "bottom": 3790, "left": 985}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/700829f.jpg"} -{"rects": [{"solidity": 0.9935716610610827, "top": 4065, "right": 2700, "bottom": 5395, "left": 1290}, {"solidity": 0.992306635526858, "top": 2305, "right": 2690, "bottom": 3650, "left": 1305}, {"solidity": 0.9968198640457162, "top": 540, "right": 2660, "bottom": 1870, "left": 1290}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721240f.jpg"} -{"rects": [{"solidity": 0.9935720411897073, "top": 270, "right": 5085, "bottom": 3705, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714594f.jpg"} -{"rects": [{"solidity": 0.9935723621325322, "top": 635, "right": 2740, "bottom": 2055, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707420f.jpg"} -{"rects": [{"solidity": 0.9935723971143291, "top": 385, "right": 2390, "bottom": 1590, "left": 595}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/707744f.jpg"} -{"rects": [{"solidity": 0.9935727108169591, "top": 430, "right": 2980, "bottom": 2085, "left": 920}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723427f.jpg"} -{"rects": [{"solidity": 0.9935730309828412, "top": 430, "right": 3120, "bottom": 1870, "left": 1080}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725813f.jpg"} -{"rects": [{"solidity": 0.9935736084302781, "top": 415, "right": 3360, "bottom": 2040, "left": 945}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728063f.jpg"} -{"rects": [{"solidity": 0.993573972633987, "top": 825, "right": 2805, "bottom": 3230, "left": 1170}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709332f.jpg"} -{"rects": [{"solidity": 0.9935745862033515, "top": 2280, "right": 3160, "bottom": 3920, "left": 730}, {"solidity": 0.9956590230537576, "top": 425, "right": 3160, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710353f.jpg"} -{"rects": [{"solidity": 0.9935761327987036, "top": 420, "right": 2860, "bottom": 1975, "left": 910}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700711f.jpg"} -{"rects": [{"solidity": 0.9935761635677343, "top": 735, "right": 4655, "bottom": 3275, "left": 1300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723976f.jpg"} -{"rects": [{"solidity": 0.9935761956367167, "top": 2225, "right": 2985, "bottom": 3660, "left": 1165}, {"solidity": 0.99400440693305, "top": 435, "right": 3010, "bottom": 1870, "left": 1200}, {"solidity": 0.9940453686200378, "top": 4025, "right": 2940, "bottom": 5445, "left": 1145}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727713f.jpg"} -{"rects": [{"solidity": 0.9935767263931937, "top": 475, "right": 5055, "bottom": 3705, "left": 995}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733806f.jpg"} -{"rects": [{"solidity": 0.9935777961422819, "top": 445, "right": 2945, "bottom": 1970, "left": 1035}, {"solidity": 0.995917682091702, "top": 4010, "right": 2920, "bottom": 5520, "left": 1015}, {"solidity": 0.9942940862374066, "top": 2205, "right": 2930, "bottom": 3715, "left": 1035}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702062f.jpg"} -{"rects": [{"solidity": 0.9935790802291337, "top": 4035, "right": 3035, "bottom": 5670, "left": 600}, {"solidity": 0.9914906558989491, "top": 2175, "right": 3070, "bottom": 3810, "left": 615}, {"solidity": 0.993415394715247, "top": 365, "right": 3065, "bottom": 1970, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734051f.jpg"} -{"rects": [{"solidity": 0.9935800787899421, "top": 250, "right": 2080, "bottom": 1275, "left": 550}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727148f.jpg"} -{"rects": [{"solidity": 0.9935804813152249, "top": 560, "right": 4770, "bottom": 3580, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713770f.jpg"} -{"rects": [{"solidity": 0.9935809146568277, "top": 590, "right": 2655, "bottom": 2005, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704895f.jpg"} -{"rects": [{"solidity": 0.9935827933783973, "top": 130, "right": 2875, "bottom": 1020, "left": 130}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507813.jpg"} -{"rects": [{"solidity": 0.9935830335406816, "top": 2990, "right": 2795, "bottom": 4985, "left": 1210}, {"solidity": 0.9909910271111146, "top": 515, "right": 3720, "bottom": 2510, "left": 2130}, {"solidity": 0.9865956633539509, "top": 510, "right": 1960, "bottom": 2385, "left": 385}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730871f.jpg"} -{"rects": [{"solidity": 0.9935845836821431, "top": 935, "right": 2955, "bottom": 2055, "left": 1530}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508049.jpg"} -{"rects": [{"solidity": 0.9935850472110047, "top": 2210, "right": 3145, "bottom": 3905, "left": 600}, {"solidity": 0.9985148891492567, "top": 420, "right": 3120, "bottom": 2070, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704072f.jpg"} -{"rects": [{"solidity": 0.9935851097023762, "top": 510, "right": 5080, "bottom": 3745, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700959f.jpg"} -{"rects": [{"solidity": 0.9935863658551566, "top": 1180, "right": 3790, "bottom": 5595, "left": 225}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708829f.jpg"} -{"rects": [{"solidity": 0.9935887480344004, "top": 715, "right": 2755, "bottom": 3530, "left": 900}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705279f.jpg"} -{"rects": [{"solidity": 0.99359056869676, "top": 555, "right": 3125, "bottom": 2170, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721416f.jpg"} -{"rects": [{"solidity": 0.9935914431170279, "top": 655, "right": 3275, "bottom": 2475, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710005f.jpg"} -{"rects": [{"solidity": 0.9935916729370454, "top": 320, "right": 1875, "bottom": 1190, "left": 710}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727146f.jpg"} -{"rects": [{"solidity": 0.9935931635668589, "top": 575, "right": 2810, "bottom": 1830, "left": 640}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729367f.jpg"} -{"rects": [{"solidity": 0.993594785261452, "top": 1160, "right": 3825, "bottom": 2460, "left": 2160}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719302f.jpg"} -{"rects": [{"solidity": 0.993595242179905, "top": 555, "right": 2095, "bottom": 1780, "left": 475}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707253f.jpg"} -{"rects": [{"solidity": 0.9935973384943819, "top": 280, "right": 5115, "bottom": 3720, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710936f.jpg"} -{"rects": [{"solidity": 0.9935988654276446, "top": 3190, "right": 3140, "bottom": 5120, "left": 405}, {"solidity": 0.996660525407155, "top": 665, "right": 3175, "bottom": 2500, "left": 555}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717738f.jpg"} -{"rects": [{"solidity": 0.9936004355465367, "top": 665, "right": 2745, "bottom": 2085, "left": 935}, {"solidity": 0.9956456531520272, "top": 660, "right": 5215, "bottom": 2065, "left": 3420}, {"solidity": 0.9960532436934436, "top": 2110, "right": 2765, "bottom": 3515, "left": 965}, {"solidity": 0.9957992271783972, "top": 2100, "right": 5230, "bottom": 3500, "left": 3435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725458f.jpg"} -{"rects": [{"solidity": 0.9936014284412259, "top": 515, "right": 4915, "bottom": 3610, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717187f.jpg"} -{"rects": [{"solidity": 0.9936053861758739, "top": 520, "right": 3080, "bottom": 1940, "left": 1265}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727911f.jpg"} -{"rects": [{"solidity": 0.9936064461036545, "top": 715, "right": 2580, "bottom": 3490, "left": 700}, {"solidity": 0.9972534421147523, "top": 915, "right": 4235, "bottom": 3330, "left": 2625}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733325f.jpg"} -{"rects": [{"solidity": 0.993607780479988, "top": 500, "right": 4870, "bottom": 3355, "left": 1030}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732906f.jpg"} -{"rects": [{"solidity": 0.9936085640724514, "top": 295, "right": 2875, "bottom": 1740, "left": 935}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719184f.jpg"} -{"rects": [{"solidity": 0.9936088476123526, "top": 2165, "right": 2900, "bottom": 3575, "left": 1090}, {"solidity": 0.9946708448307694, "top": 605, "right": 5050, "bottom": 2015, "left": 3250}, {"solidity": 0.9933779158663395, "top": 620, "right": 2860, "bottom": 1955, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726181f.jpg"} -{"rects": [{"solidity": 0.9936093324034743, "top": 420, "right": 1725, "bottom": 1290, "left": 575}], "shape": {"h": 2540, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727098f.jpg"} -{"rects": [{"solidity": 0.9936102860080229, "top": 765, "right": 3885, "bottom": 3170, "left": 2275}, {"solidity": 0.9965080255321422, "top": 795, "right": 2010, "bottom": 3185, "left": 420}, {"solidity": 0.9629185714382179, "top": 795, "right": 5710, "bottom": 3185, "left": 4125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721427f.jpg"} -{"rects": [{"solidity": 0.9936106828089011, "top": 305, "right": 4980, "bottom": 3635, "left": 975}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718335f.jpg"} -{"rects": [{"solidity": 0.9936114985125103, "top": 455, "right": 3130, "bottom": 2555, "left": 1610}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507590.jpg"} -{"rects": [{"solidity": 0.9936116246578176, "top": 915, "right": 4995, "bottom": 3195, "left": 1185}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716733f.jpg"} -{"rects": [{"solidity": 0.9936119522419546, "top": 855, "right": 3105, "bottom": 2270, "left": 1145}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507581.jpg"} -{"rects": [{"solidity": 0.99361249112846, "top": 825, "right": 2050, "bottom": 3255, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729125f.jpg"} -{"rects": [{"solidity": 0.993613781616955, "top": 665, "right": 2725, "bottom": 2100, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726737f.jpg"} -{"rects": [{"solidity": 0.9936142997378954, "top": 815, "right": 2035, "bottom": 3205, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712250f.jpg"} -{"rects": [{"solidity": 0.993614421421908, "top": 2265, "right": 3200, "bottom": 3870, "left": 800}, {"solidity": 0.9951820428798184, "top": 475, "right": 3195, "bottom": 2070, "left": 790}, {"solidity": 0.9917705562163112, "top": 4045, "right": 3185, "bottom": 5640, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708121f.jpg"} -{"rects": [{"solidity": 0.9936144553116438, "top": 700, "right": 5555, "bottom": 4050, "left": 1240}], "shape": {"h": 4435, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/708320f.jpg"} -{"rects": [{"solidity": 0.9936146746890989, "top": 455, "right": 5365, "bottom": 3640, "left": 820}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730051f.jpg"} -{"rects": [{"solidity": 0.9936147518227911, "top": 965, "right": 3365, "bottom": 2115, "left": 1840}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1508255.jpg"} -{"rects": [{"solidity": 0.9936151822972332, "top": 740, "right": 5155, "bottom": 2215, "left": 3300}, {"solidity": 0.9942908839844773, "top": 720, "right": 2745, "bottom": 2135, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710145f.jpg"} -{"rects": [{"solidity": 0.9936158233276823, "top": 450, "right": 3205, "bottom": 3830, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715284f.jpg"} -{"rects": [{"solidity": 0.9936174604360839, "top": 400, "right": 3805, "bottom": 2775, "left": 790}], "shape": {"h": 3030, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/720758f.jpg"} -{"rects": [{"solidity": 0.9936185810923389, "top": 440, "right": 3100, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723556f.jpg"} -{"rects": [{"solidity": 0.993618688476419, "top": 990, "right": 1860, "bottom": 2805, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700087f.jpg"} -{"rects": [{"solidity": 0.9936194095984561, "top": 445, "right": 5035, "bottom": 3705, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725747f.jpg"} -{"rects": [{"solidity": 0.9936203579454513, "top": 455, "right": 3210, "bottom": 2070, "left": 785}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/700594f.jpg"} -{"rects": [{"solidity": 0.9936209636245776, "top": 1050, "right": 3150, "bottom": 2275, "left": 1340}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509759.jpg"} -{"rects": [{"solidity": 0.9936226308399809, "top": 660, "right": 2730, "bottom": 3520, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703815f.jpg"} -{"rects": [{"solidity": 0.9936233127444577, "top": 690, "right": 3350, "bottom": 2605, "left": 615}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717719f.jpg"} -{"rects": [{"solidity": 0.9936239069554781, "top": 2395, "right": 5015, "bottom": 4095, "left": 2920}, {"solidity": 0.9572278833501637, "top": 2340, "right": 2710, "bottom": 3170, "left": 580}], "shape": {"h": 4515, "w": 5380}, "file": "/usr/local/google/home/danvk/milstein/1596925.jpg"} -{"rects": [{"solidity": 0.9936248085717395, "top": 820, "right": 3210, "bottom": 2630, "left": 580}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730090f.jpg"} -{"rects": [{"solidity": 0.9936253341558708, "top": 520, "right": 3530, "bottom": 2430, "left": 1090}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715956f.jpg"} -{"rects": [{"solidity": 0.9936265622540132, "top": 465, "right": 3145, "bottom": 1875, "left": 1360}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726536f.jpg"} -{"rects": [{"solidity": 0.993628233019096, "top": 795, "right": 2085, "bottom": 3210, "left": 455}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719955f.jpg"} -{"rects": [{"solidity": 0.9936295994292121, "top": 4070, "right": 2990, "bottom": 5460, "left": 1190}, {"solidity": 0.997473236938182, "top": 2345, "right": 3000, "bottom": 3725, "left": 1225}, {"solidity": 0.9948409603507514, "top": 580, "right": 2995, "bottom": 1940, "left": 1225}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725767f.jpg"} -{"rects": [{"solidity": 0.9936337171234878, "top": 2125, "right": 5285, "bottom": 3505, "left": 3460}, {"solidity": 0.9957986817602914, "top": 705, "right": 5270, "bottom": 2085, "left": 3450}, {"solidity": 0.9954850170775285, "top": 2135, "right": 2700, "bottom": 3510, "left": 885}, {"solidity": 0.9949670333032478, "top": 710, "right": 2690, "bottom": 2085, "left": 880}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723048f.jpg"} -{"rects": [{"solidity": 0.9936337973328142, "top": 450, "right": 3340, "bottom": 2075, "left": 915}, {"solidity": 0.9954355751468533, "top": 2310, "right": 3315, "bottom": 3925, "left": 900}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727714f.jpg"} -{"rects": [{"solidity": 0.9936339152583461, "top": 775, "right": 1980, "bottom": 3160, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711852f.jpg"} -{"rects": [{"solidity": 0.9936356779181595, "top": 510, "right": 3195, "bottom": 2610, "left": 395}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507947.jpg"} -{"rects": [{"solidity": 0.9936374912735614, "top": 385, "right": 3210, "bottom": 3580, "left": 655}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714671f.jpg"} -{"rects": [{"solidity": 0.9936377110219426, "top": 855, "right": 2015, "bottom": 3260, "left": 410}, {"solidity": 0.9939181019918827, "top": 900, "right": 3675, "bottom": 3165, "left": 2290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708509f.jpg"} -{"rects": [{"solidity": 0.9936380689668158, "top": 710, "right": 2800, "bottom": 3480, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719425f.jpg"} -{"rects": [{"solidity": 0.9936384865061761, "top": 370, "right": 3110, "bottom": 1995, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729271f.jpg"} -{"rects": [{"solidity": 0.9936410414979179, "top": 475, "right": 3160, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713940f.jpg"} -{"rects": [{"solidity": 0.993643031784841, "top": 425, "right": 3175, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703770f.jpg"} -{"rects": [{"solidity": 0.9936438833260774, "top": 2700, "right": 1875, "bottom": 3600, "left": 730}, {"solidity": 0.9957914455198251, "top": 1530, "right": 1875, "bottom": 2420, "left": 735}, {"solidity": 0.9963325183374083, "top": 360, "right": 1855, "bottom": 1245, "left": 720}], "shape": {"h": 3940, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727176f.jpg"} -{"rects": [{"solidity": 0.9936458163769445, "top": 1470, "right": 3260, "bottom": 4790, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708916f.jpg"} -{"rects": [{"solidity": 0.9936460611978395, "top": 775, "right": 5525, "bottom": 3500, "left": 3565}, {"solidity": 0.9939536673742506, "top": 1080, "right": 3175, "bottom": 3075, "left": 560}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700433f.jpg"} -{"rects": [{"solidity": 0.993647295495129, "top": 485, "right": 5200, "bottom": 3345, "left": 1305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732226f.jpg"} -{"rects": [{"solidity": 0.9936474325039704, "top": 470, "right": 2885, "bottom": 2005, "left": 985}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720232f.jpg"} -{"rects": [{"solidity": 0.993647646615647, "top": 2590, "right": 2015, "bottom": 3635, "left": 470}, {"solidity": 0.9954672946017408, "top": 1420, "right": 2015, "bottom": 2445, "left": 480}, {"solidity": 0.9952827898697305, "top": 255, "right": 2010, "bottom": 1275, "left": 475}], "shape": {"h": 3950, "w": 2565}, "file": "/usr/local/google/home/danvk/milstein/732183f.jpg"} -{"rects": [{"solidity": 0.9936479392996562, "top": 2310, "right": 3045, "bottom": 3930, "left": 625}, {"solidity": 0.9930538207230385, "top": 450, "right": 3040, "bottom": 2055, "left": 620}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728725f.jpg"} -{"rects": [{"solidity": 0.9936480815606024, "top": 730, "right": 3445, "bottom": 4020, "left": 260}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715199f.jpg"} -{"rects": [{"solidity": 0.9936490882305443, "top": 425, "right": 3125, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700902f.jpg"} -{"rects": [{"solidity": 0.9936497936229253, "top": 130, "right": 5090, "bottom": 3510, "left": 1025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726494f.jpg"} -{"rects": [{"solidity": 0.9936504683647229, "top": 370, "right": 3165, "bottom": 1965, "left": 765}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728792f.jpg"} -{"rects": [{"solidity": 0.9936509235206283, "top": 525, "right": 3120, "bottom": 1935, "left": 915}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713758f.jpg"} -{"rects": [{"solidity": 0.9936511106989485, "top": 605, "right": 3220, "bottom": 3580, "left": 540}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716922f.jpg"} -{"rects": [{"solidity": 0.993651279956427, "top": 550, "right": 2495, "bottom": 1860, "left": 790}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732781f.jpg"} -{"rects": [{"solidity": 0.9936524783237612, "top": 980, "right": 3015, "bottom": 4980, "left": 1165}], "shape": {"h": 6140, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/712340f.jpg"} -{"rects": [{"solidity": 0.9936528670061046, "top": 720, "right": 3240, "bottom": 2545, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715358f.jpg"} -{"rects": [{"solidity": 0.9936534216335541, "top": 580, "right": 2640, "bottom": 2015, "left": 800}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703193f.jpg"} -{"rects": [{"solidity": 0.9936535233181837, "top": 485, "right": 3030, "bottom": 1865, "left": 1225}, {"solidity": 0.9962719604827811, "top": 4065, "right": 3000, "bottom": 5430, "left": 1205}, {"solidity": 0.9954636887727594, "top": 2315, "right": 3025, "bottom": 3670, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726295f.jpg"} -{"rects": [{"solidity": 0.993654713056289, "top": 540, "right": 4930, "bottom": 3660, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722781f.jpg"} -{"rects": [{"solidity": 0.993655429700443, "top": 2645, "right": 1860, "bottom": 3545, "left": 700}, {"solidity": 0.99348797828496, "top": 340, "right": 1865, "bottom": 1240, "left": 735}, {"solidity": 0.9974395700505748, "top": 1520, "right": 1860, "bottom": 2400, "left": 725}], "shape": {"h": 3945, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727079f.jpg"} -{"rects": [{"solidity": 0.9936559781413901, "top": 895, "right": 1815, "bottom": 2705, "left": 700}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704918f.jpg"} -{"rects": [{"solidity": 0.9936564383336561, "top": 370, "right": 2645, "bottom": 1655, "left": 970}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721601f.jpg"} -{"rects": [{"solidity": 0.9936566541305394, "top": 485, "right": 3125, "bottom": 1890, "left": 1275}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/726776f.jpg"} -{"rects": [{"solidity": 0.9936568393018228, "top": 2260, "right": 3140, "bottom": 3730, "left": 1295}, {"solidity": 0.993506179525366, "top": 4065, "right": 3100, "bottom": 5515, "left": 1265}, {"solidity": 0.9934344830261506, "top": 500, "right": 3150, "bottom": 1940, "left": 1315}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725740f.jpg"} -{"rects": [{"solidity": 0.9936572019292541, "top": 425, "right": 3240, "bottom": 2030, "left": 830}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/701102f.jpg"} -{"rects": [{"solidity": 0.9936578783136034, "top": 2290, "right": 3180, "bottom": 3895, "left": 770}, {"solidity": 0.9950448107150618, "top": 475, "right": 3165, "bottom": 2080, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707620f.jpg"} -{"rects": [{"solidity": 0.9936580268771951, "top": 825, "right": 2075, "bottom": 3140, "left": 565}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716959f.jpg"} -{"rects": [{"solidity": 0.9936596070576453, "top": 695, "right": 4755, "bottom": 3495, "left": 1090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713555f.jpg"} -{"rects": [{"solidity": 0.9936600710693412, "top": 750, "right": 3210, "bottom": 2660, "left": 480}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715167f.jpg"} -{"rects": [{"solidity": 0.9936621564626625, "top": 575, "right": 2140, "bottom": 1810, "left": 340}, {"solidity": 0.9948075305311403, "top": 2145, "right": 2140, "bottom": 3380, "left": 375}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727156f.jpg"} -{"rects": [{"solidity": 0.9936634407220316, "top": 510, "right": 3110, "bottom": 2130, "left": 725}, {"solidity": 0.9979898920284861, "top": 4155, "right": 3075, "bottom": 5740, "left": 720}, {"solidity": 0.9957940591084907, "top": 2350, "right": 3080, "bottom": 3940, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714233f.jpg"} -{"rects": [{"solidity": 0.9936635483612759, "top": 825, "right": 3985, "bottom": 2615, "left": 1230}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517193.jpg"} -{"rects": [{"solidity": 0.9936640753857552, "top": 600, "right": 3220, "bottom": 3580, "left": 520}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717914f.jpg"} -{"rects": [{"solidity": 0.9936658749010293, "top": 1105, "right": 3510, "bottom": 2380, "left": 1565}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508913.jpg"} -{"rects": [{"solidity": 0.993665882724955, "top": 785, "right": 3840, "bottom": 3190, "left": 2245}, {"solidity": 0.9937217412057969, "top": 800, "right": 2220, "bottom": 3200, "left": 630}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708134f.jpg"} -{"rects": [{"solidity": 0.9936661143891615, "top": 550, "right": 3090, "bottom": 1985, "left": 1120}, {"solidity": 0.9913537756778472, "top": 2435, "right": 2970, "bottom": 3655, "left": 1225}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732802f.jpg"} -{"rects": [{"solidity": 0.993666365960006, "top": 560, "right": 2730, "bottom": 1780, "left": 1075}, {"solidity": 0.9942443231248345, "top": 2110, "right": 4750, "bottom": 3325, "left": 3100}, {"solidity": 0.9874023651933875, "top": 2140, "right": 2745, "bottom": 3360, "left": 1080}, {"solidity": 0.9900805078779966, "top": 555, "right": 4740, "bottom": 1760, "left": 3095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702626f.jpg"} -{"rects": [{"solidity": 0.993666523988131, "top": 430, "right": 3300, "bottom": 2360, "left": 560}, {"solidity": 0.9919211862357966, "top": 2610, "right": 2900, "bottom": 4020, "left": 1090}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702644f.jpg"} -{"rects": [{"solidity": 0.993667278004541, "top": 4080, "right": 3230, "bottom": 5690, "left": 815}, {"solidity": 0.9954440919239227, "top": 545, "right": 3265, "bottom": 2130, "left": 880}, {"solidity": 0.9965971137859049, "top": 2305, "right": 3245, "bottom": 3875, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732819f.jpg"} -{"rects": [{"solidity": 0.9936675966520526, "top": 900, "right": 2060, "bottom": 3320, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731240f.jpg"} -{"rects": [{"solidity": 0.993667972083872, "top": 585, "right": 4895, "bottom": 3630, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709857f.jpg"} -{"rects": [{"solidity": 0.9936682162534435, "top": 1315, "right": 4555, "bottom": 2800, "left": 2560}, {"solidity": 0.9810276714311877, "top": 1330, "right": 2280, "bottom": 2840, "left": 345}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720692f.jpg"} -{"rects": [{"solidity": 0.9936689048233346, "top": 1265, "right": 3940, "bottom": 5775, "left": 330}], "shape": {"h": 6900, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708307f.jpg"} -{"rects": [{"solidity": 0.9936697496302729, "top": 390, "right": 3155, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718001f.jpg"} -{"rects": [{"solidity": 0.993669831336449, "top": 670, "right": 2230, "bottom": 3440, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721951f.jpg"} -{"rects": [{"solidity": 0.9936701198526486, "top": 655, "right": 2715, "bottom": 3495, "left": 910}, {"solidity": 0.9959139111287187, "top": 645, "right": 5220, "bottom": 2135, "left": 3380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726186f.jpg"} -{"rects": [{"solidity": 0.9936739299323, "top": 340, "right": 1945, "bottom": 1250, "left": 805}], "shape": {"h": 3945, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727078f.jpg"} -{"rects": [{"solidity": 0.9936752640271126, "top": 460, "right": 3165, "bottom": 2055, "left": 765}, {"solidity": 0.9942377480237201, "top": 4190, "right": 2900, "bottom": 5640, "left": 1060}, {"solidity": 0.9936668654863566, "top": 2405, "right": 2925, "bottom": 3845, "left": 1090}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/727038f.jpg"} -{"rects": [{"solidity": 0.9936757169338131, "top": 2400, "right": 2675, "bottom": 3845, "left": 655}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507586.jpg"} -{"rects": [{"solidity": 0.9936759021139632, "top": 905, "right": 2040, "bottom": 3330, "left": 405}, {"solidity": 0.9971950108680997, "top": 905, "right": 3885, "bottom": 3300, "left": 2285}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708033f.jpg"} -{"rects": [{"solidity": 0.9936774160266703, "top": 450, "right": 3205, "bottom": 2095, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720293f.jpg"} -{"rects": [{"solidity": 0.9936786484470018, "top": 450, "right": 3080, "bottom": 1860, "left": 1275}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728033f.jpg"} -{"rects": [{"solidity": 0.9936790890831116, "top": 380, "right": 3095, "bottom": 1950, "left": 730}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728105f.jpg"} -{"rects": [{"solidity": 0.9936854804969887, "top": 730, "right": 2595, "bottom": 2155, "left": 740}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727563f.jpg"} -{"rects": [{"solidity": 0.9936870176763505, "top": 430, "right": 2345, "bottom": 1630, "left": 550}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716413f.jpg"} -{"rects": [{"solidity": 0.9936870215767064, "top": 840, "right": 5565, "bottom": 3235, "left": 3950}, {"solidity": 0.9969928967879268, "top": 875, "right": 2255, "bottom": 3270, "left": 655}, {"solidity": 0.9974032360192383, "top": 860, "right": 3905, "bottom": 3235, "left": 2330}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708904f.jpg"} -{"rects": [{"solidity": 0.9936877173500103, "top": 2195, "right": 3145, "bottom": 3805, "left": 720}, {"solidity": 0.9946581683474501, "top": 3985, "right": 3140, "bottom": 5605, "left": 725}, {"solidity": 0.9969649795266938, "top": 415, "right": 3140, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732180f.jpg"} -{"rects": [{"solidity": 0.9936881694056087, "top": 400, "right": 3160, "bottom": 2005, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728807f.jpg"} -{"rects": [{"solidity": 0.9936883287079864, "top": 865, "right": 5755, "bottom": 3295, "left": 4125}, {"solidity": 0.9965096212484916, "top": 870, "right": 3900, "bottom": 3285, "left": 2290}, {"solidity": 0.9969343007758501, "top": 865, "right": 2015, "bottom": 3265, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729016f.jpg"} -{"rects": [{"solidity": 0.9936907245588043, "top": 485, "right": 1605, "bottom": 1375, "left": 175}, {"solidity": 0.9943199214502149, "top": 520, "right": 3090, "bottom": 1355, "left": 1640}, {"solidity": 0.9957691855682219, "top": 1705, "right": 1615, "bottom": 2535, "left": 170}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715820f.jpg"} -{"rects": [{"solidity": 0.9936909031626997, "top": 430, "right": 3195, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702174f.jpg"} -{"rects": [{"solidity": 0.9936913055093192, "top": 600, "right": 2525, "bottom": 3340, "left": 510}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509445.jpg"} -{"rects": [{"solidity": 0.9936915195857968, "top": 625, "right": 5030, "bottom": 3630, "left": 1190}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717319f.jpg"} -{"rects": [{"solidity": 0.9936934466684947, "top": 755, "right": 2065, "bottom": 3140, "left": 460}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714873f.jpg"} -{"rects": [{"solidity": 0.993697095333284, "top": 915, "right": 3215, "bottom": 2285, "left": 1265}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508415.jpg"} -{"rects": [{"solidity": 0.9936978099889712, "top": 395, "right": 3160, "bottom": 1310, "left": 2010}, {"solidity": 0.9947689200861304, "top": 1430, "right": 3160, "bottom": 2340, "left": 2010}, {"solidity": 0.9941953538390097, "top": 1445, "right": 1760, "bottom": 2350, "left": 615}, {"solidity": 0.9929166614613915, "top": 400, "right": 1750, "bottom": 1295, "left": 600}], "shape": {"h": 2545, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/727054f.jpg"} -{"rects": [{"solidity": 0.9936980577762459, "top": 1245, "right": 3395, "bottom": 4680, "left": 415}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715618f.jpg"} -{"rects": [{"solidity": 0.9936985787233202, "top": 610, "right": 3180, "bottom": 2215, "left": 785}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707801f.jpg"} -{"rects": [{"solidity": 0.9936991309841453, "top": 430, "right": 3100, "bottom": 2010, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713790f.jpg"} -{"rects": [{"solidity": 0.9936992947221148, "top": 665, "right": 3340, "bottom": 2590, "left": 585}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717731f.jpg"} -{"rects": [{"solidity": 0.9937012486739147, "top": 900, "right": 3330, "bottom": 2845, "left": 670}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700619f.jpg"} -{"rects": [{"solidity": 0.9937016433630429, "top": 1205, "right": 3425, "bottom": 4995, "left": 420}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717201f.jpg"} -{"rects": [{"solidity": 0.9937027178481367, "top": 1620, "right": 2200, "bottom": 2830, "left": 700}, {"solidity": 0.9942625078031296, "top": 365, "right": 3930, "bottom": 1585, "left": 2440}, {"solidity": 0.99455476808645, "top": 355, "right": 2205, "bottom": 1570, "left": 715}, {"solidity": 0.9953212329927172, "top": 1630, "right": 3920, "bottom": 2830, "left": 2425}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716278f.jpg"} -{"rects": [{"solidity": 0.9937027542807733, "top": 385, "right": 2935, "bottom": 1865, "left": 980}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/731224f.jpg"} -{"rects": [{"solidity": 0.9937050463202716, "top": 1735, "right": 2415, "bottom": 2960, "left": 600}, {"solidity": 0.9939500662528767, "top": 340, "right": 2425, "bottom": 1555, "left": 620}], "shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715845f.jpg"} -{"rects": [{"solidity": 0.9937055968570998, "top": 620, "right": 2755, "bottom": 3490, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703122f.jpg"} -{"rects": [{"solidity": 0.9937068789414377, "top": 395, "right": 3160, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719693f.jpg"} -{"rects": [{"solidity": 0.9937083238745946, "top": 355, "right": 3105, "bottom": 3290, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714624f.jpg"} -{"rects": [{"solidity": 0.9937097573055969, "top": 465, "right": 3040, "bottom": 1875, "left": 1230}, {"solidity": 0.9936035063202693, "top": 2405, "right": 3035, "bottom": 3525, "left": 1225}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727413f.jpg"} -{"rects": [{"solidity": 0.9937101536091738, "top": 715, "right": 2050, "bottom": 3115, "left": 455}, {"solidity": 0.9942410271219408, "top": 725, "right": 3870, "bottom": 3115, "left": 2275}, {"solidity": 0.995969103142161, "top": 735, "right": 5685, "bottom": 3120, "left": 4095}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710137f.jpg"} -{"rects": [{"solidity": 0.993711494953535, "top": 655, "right": 2780, "bottom": 3510, "left": 935}, {"solidity": 0.9943002395268123, "top": 615, "right": 5285, "bottom": 2045, "left": 3460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702856f.jpg"} -{"rects": [{"solidity": 0.9937134761820435, "top": 570, "right": 1845, "bottom": 2050, "left": 685}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729773f.jpg"} -{"rects": [{"solidity": 0.9937138775903028, "top": 720, "right": 3280, "bottom": 2585, "left": 595}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712002f.jpg"} -{"rects": [{"solidity": 0.9937147461724416, "top": 520, "right": 3065, "bottom": 1825, "left": 1315}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726716f.jpg"} -{"rects": [{"solidity": 0.9937148298141012, "top": 510, "right": 3920, "bottom": 2600, "left": 2440}, {"solidity": 0.994550106574781, "top": 515, "right": 2165, "bottom": 2600, "left": 690}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716150f.jpg"} -{"rects": [{"solidity": 0.9937153336911791, "top": 2210, "right": 3145, "bottom": 3885, "left": 690}, {"solidity": 0.9938077506106962, "top": 4060, "right": 3095, "bottom": 5730, "left": 640}, {"solidity": 0.9946242297802145, "top": 380, "right": 3165, "bottom": 2010, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732173f.jpg"} -{"rects": [{"solidity": 0.9937159910181008, "top": 390, "right": 3095, "bottom": 1975, "left": 1155}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725814f.jpg"} -{"rects": [{"solidity": 0.9937165014899824, "top": 705, "right": 2630, "bottom": 2080, "left": 870}], "shape": {"h": 3860, "w": 6040}, "file": "/usr/local/google/home/danvk/milstein/728120f.jpg"} -{"rects": [{"solidity": 0.9937165505570379, "top": 1290, "right": 4550, "bottom": 3120, "left": 1435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722774f.jpg"} -{"rects": [{"solidity": 0.9937190520564966, "top": 615, "right": 2690, "bottom": 3390, "left": 690}, {"solidity": 0.9945664548694583, "top": 675, "right": 5160, "bottom": 3315, "left": 3175}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732920f.jpg"} -{"rects": [{"solidity": 0.9937206225525719, "top": 2235, "right": 3220, "bottom": 3820, "left": 820}, {"solidity": 0.9969439716999743, "top": 425, "right": 3210, "bottom": 2005, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703259f.jpg"} -{"rects": [{"solidity": 0.9937209767223891, "top": 425, "right": 3145, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720527f.jpg"} -{"rects": [{"solidity": 0.9937210083084731, "top": 1065, "right": 3435, "bottom": 5090, "left": 330}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718353f.jpg"} -{"rects": [{"solidity": 0.9937218860231061, "top": 400, "right": 3155, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718877f.jpg"} -{"rects": [{"solidity": 0.9937236902165644, "top": 410, "right": 3110, "bottom": 1900, "left": 1095}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700772f.jpg"} -{"rects": [{"solidity": 0.9937238562901972, "top": 2200, "right": 3205, "bottom": 3795, "left": 810}, {"solidity": 0.9962898631741468, "top": 385, "right": 3210, "bottom": 1975, "left": 815}, {"solidity": 0.9948965221240125, "top": 4055, "right": 3185, "bottom": 5645, "left": 800}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/726906f.jpg"} -{"rects": [{"solidity": 0.9937275356397275, "top": 875, "right": 2090, "bottom": 3315, "left": 445}, {"solidity": 0.9965524615554101, "top": 870, "right": 4020, "bottom": 3295, "left": 2410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723042f.jpg"} -{"rects": [{"solidity": 0.9937279016141429, "top": 375, "right": 2825, "bottom": 1850, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721711f.jpg"} -{"rects": [{"solidity": 0.9937279069673276, "top": 750, "right": 2525, "bottom": 2245, "left": 435}, {"solidity": 0.9958501995409945, "top": 2490, "right": 2520, "bottom": 3975, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716140f.jpg"} -{"rects": [{"solidity": 0.9937283226422184, "top": 460, "right": 3130, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710535f.jpg"} -{"rects": [{"solidity": 0.9937283637497891, "top": 925, "right": 4535, "bottom": 3635, "left": 2695}, {"solidity": 0.9949818209848786, "top": 920, "right": 2390, "bottom": 3610, "left": 565}, {"solidity": 0.9984246196080266, "top": 930, "right": 6600, "bottom": 3625, "left": 4805}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711323f.jpg"} -{"rects": [{"solidity": 0.9937286313091965, "top": 840, "right": 2040, "bottom": 3270, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707485f.jpg"} -{"rects": [{"solidity": 0.9937303926679241, "top": 2990, "right": 3185, "bottom": 4935, "left": 420}, {"solidity": 0.9943550933323128, "top": 750, "right": 3190, "bottom": 2685, "left": 430}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705785f.jpg"} -{"rects": [{"solidity": 0.9937310170502927, "top": 665, "right": 5155, "bottom": 1720, "left": 3365}, {"solidity": 0.99683236867671, "top": 2025, "right": 5140, "bottom": 3045, "left": 3330}, {"solidity": 0.9951164697235257, "top": 2060, "right": 2865, "bottom": 3065, "left": 1090}, {"solidity": 0.9416091040103365, "top": 665, "right": 2855, "bottom": 1670, "left": 1085}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715574f.jpg"} -{"rects": [{"solidity": 0.9937310284381545, "top": 470, "right": 3155, "bottom": 1915, "left": 1335}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726089f.jpg"} -{"rects": [{"solidity": 0.9937311591121966, "top": 425, "right": 3155, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730574f.jpg"} -{"rects": [{"solidity": 0.9937316541994129, "top": 485, "right": 4130, "bottom": 2620, "left": 1265}], "shape": {"h": 3005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508231.jpg"} -{"rects": [{"solidity": 0.9937330412893524, "top": 395, "right": 3105, "bottom": 2010, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702248f.jpg"} -{"rects": [{"solidity": 0.9937348618404893, "top": 415, "right": 3215, "bottom": 2115, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701525f.jpg"} -{"rects": [{"solidity": 0.993735637157335, "top": 615, "right": 2750, "bottom": 3475, "left": 895}, {"solidity": 0.9956336452158179, "top": 1990, "right": 5175, "bottom": 3440, "left": 3325}, {"solidity": 0.9952784192968951, "top": 595, "right": 5150, "bottom": 1975, "left": 3330}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702782f.jpg"} -{"rects": [{"solidity": 0.9937369008077069, "top": 500, "right": 2120, "bottom": 2605, "left": 645}, {"solidity": 0.9964078452003222, "top": 525, "right": 3960, "bottom": 2630, "left": 2480}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716087f.jpg"} -{"rects": [{"solidity": 0.9937369378631189, "top": 655, "right": 2655, "bottom": 3615, "left": 760}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725096f.jpg"} -{"rects": [{"solidity": 0.9937371646376526, "top": 420, "right": 3205, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704957f.jpg"} -{"rects": [{"solidity": 0.9937379560348241, "top": 420, "right": 3115, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701095f.jpg"} -{"rects": [{"solidity": 0.9937380721215905, "top": 545, "right": 4850, "bottom": 3525, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713907f.jpg"} -{"rects": [{"solidity": 0.9937381350807869, "top": 840, "right": 4775, "bottom": 3485, "left": 1370}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709035f.jpg"} -{"rects": [{"solidity": 0.9937383689841065, "top": 600, "right": 4990, "bottom": 3550, "left": 1165}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710237f.jpg"} -{"rects": [{"solidity": 0.993738931124029, "top": 470, "right": 3300, "bottom": 3870, "left": 650}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724485f.jpg"} -{"rects": [{"solidity": 0.993739148395092, "top": 355, "right": 3215, "bottom": 1990, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701463f.jpg"} -{"rects": [{"solidity": 0.993740537068474, "top": 835, "right": 2130, "bottom": 3235, "left": 525}, {"solidity": 0.995864211021265, "top": 830, "right": 3940, "bottom": 3220, "left": 2345}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722235f.jpg"} -{"rects": [{"solidity": 0.9937406206505089, "top": 1075, "right": 3290, "bottom": 4700, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721193f.jpg"} -{"rects": [{"solidity": 0.9937417670702109, "top": 635, "right": 4975, "bottom": 2070, "left": 3125}, {"solidity": 0.9963578442322821, "top": 2325, "right": 2765, "bottom": 3740, "left": 930}, {"solidity": 0.9958379524281852, "top": 650, "right": 2740, "bottom": 2085, "left": 930}, {"solidity": 0.9961964741761921, "top": 2270, "right": 4930, "bottom": 3690, "left": 3120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725364f.jpg"} -{"rects": [{"solidity": 0.9937433266176762, "top": 700, "right": 2735, "bottom": 2125, "left": 900}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725343f.jpg"} -{"rects": [{"solidity": 0.9937440598645348, "top": 350, "right": 1920, "bottom": 1265, "left": 765}, {"solidity": 0.9941872484282466, "top": 1550, "right": 1915, "bottom": 2450, "left": 755}, {"solidity": 0.9911571811058436, "top": 2725, "right": 1920, "bottom": 3625, "left": 755}], "shape": {"h": 3940, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727050f.jpg"} -{"rects": [{"solidity": 0.993744177204213, "top": 620, "right": 4925, "bottom": 3640, "left": 1170}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709889f.jpg"} -{"rects": [{"solidity": 0.9937454677302393, "top": 445, "right": 3180, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701229f.jpg"} -{"rects": [{"solidity": 0.993745687443605, "top": 425, "right": 2950, "bottom": 1940, "left": 1035}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701443f.jpg"} -{"rects": [{"solidity": 0.9937462231765175, "top": 285, "right": 3205, "bottom": 2145, "left": 520}, {"solidity": 0.9977374193816039, "top": 4135, "right": 3035, "bottom": 5760, "left": 610}, {"solidity": 0.996563584847866, "top": 2300, "right": 3045, "bottom": 3935, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701634f.jpg"} -{"rects": [{"solidity": 0.993746675098116, "top": 475, "right": 3125, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711929f.jpg"} -{"rects": [{"solidity": 0.9937466789819229, "top": 740, "right": 4930, "bottom": 3055, "left": 1825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718278f.jpg"} -{"rects": [{"solidity": 0.9937487277937649, "top": 450, "right": 5030, "bottom": 3615, "left": 1050}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717548f.jpg"} -{"rects": [{"solidity": 0.9937488105172237, "top": 675, "right": 5245, "bottom": 2105, "left": 3425}, {"solidity": 0.9953789872280342, "top": 2110, "right": 2750, "bottom": 3505, "left": 900}, {"solidity": 0.9931622747558309, "top": 675, "right": 2725, "bottom": 2095, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726145f.jpg"} -{"rects": [{"solidity": 0.9937505707149917, "top": 380, "right": 3095, "bottom": 3605, "left": 625}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714061f.jpg"} -{"rects": [{"solidity": 0.993750705244363, "top": 750, "right": 2080, "bottom": 3125, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709743f.jpg"} -{"rects": [{"solidity": 0.9937507575859608, "top": 675, "right": 4955, "bottom": 3595, "left": 1120}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720848f.jpg"} -{"rects": [{"solidity": 0.9937515645630758, "top": 515, "right": 3025, "bottom": 1940, "left": 1205}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727899f.jpg"} -{"rects": [{"solidity": 0.9937518585714811, "top": 495, "right": 3155, "bottom": 2090, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724747f.jpg"} -{"rects": [{"solidity": 0.9937526084304472, "top": 945, "right": 3905, "bottom": 3380, "left": 2285}, {"solidity": 0.9926776726977656, "top": 935, "right": 2170, "bottom": 3365, "left": 535}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730431f.jpg"} -{"rects": [{"solidity": 0.9937527737829913, "top": 715, "right": 3380, "bottom": 2635, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717963f.jpg"} -{"rects": [{"solidity": 0.9937537306373804, "top": 345, "right": 3105, "bottom": 1970, "left": 680}, {"solidity": 0.9949377754518315, "top": 2210, "right": 3095, "bottom": 3815, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728610f.jpg"} -{"rects": [{"solidity": 0.9937538625383339, "top": 905, "right": 2075, "bottom": 2930, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718927f.jpg"} -{"rects": [{"solidity": 0.9937539996012598, "top": 130, "right": 2845, "bottom": 3455, "left": 130}], "shape": {"h": 3720, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1557976.jpg"} -{"rects": [{"solidity": 0.9937546371055732, "top": 2685, "right": 2350, "bottom": 4115, "left": 320}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507540.jpg"} -{"rects": [{"solidity": 0.9937572711442976, "top": 1045, "right": 2950, "bottom": 2090, "left": 1335}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509573.jpg"} -{"rects": [{"solidity": 0.9937573027057641, "top": 850, "right": 4345, "bottom": 3575, "left": 2530}, {"solidity": 0.9966448919639751, "top": 865, "right": 6445, "bottom": 3575, "left": 4640}, {"solidity": 0.9958631432889559, "top": 865, "right": 2255, "bottom": 3570, "left": 440}], "shape": {"h": 4400, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711371f.jpg"} -{"rects": [{"solidity": 0.9937598657454887, "top": 850, "right": 2020, "bottom": 3275, "left": 400}, {"solidity": 0.995367804776279, "top": 880, "right": 3855, "bottom": 3295, "left": 2230}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729122f.jpg"} -{"rects": [{"solidity": 0.9937603510134451, "top": 770, "right": 2030, "bottom": 3160, "left": 425}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721528f.jpg"} -{"rects": [{"solidity": 0.9937603868302507, "top": 2235, "right": 2845, "bottom": 3755, "left": 885}, {"solidity": 0.9927744669123979, "top": 4040, "right": 2885, "bottom": 5570, "left": 915}, {"solidity": 0.9818973183363944, "top": 470, "right": 2865, "bottom": 1950, "left": 900}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715267f.jpg"} -{"rects": [{"solidity": 0.9937612589220802, "top": 350, "right": 3120, "bottom": 1880, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713263f.jpg"} -{"rects": [{"solidity": 0.9937615213449397, "top": 730, "right": 2550, "bottom": 2135, "left": 760}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725345f.jpg"} -{"rects": [{"solidity": 0.993761777473229, "top": 420, "right": 3210, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701392f.jpg"} -{"rects": [{"solidity": 0.9937634829059121, "top": 800, "right": 2025, "bottom": 3205, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707019f.jpg"} -{"rects": [{"solidity": 0.9937649829333475, "top": 545, "right": 5025, "bottom": 3590, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709038f.jpg"} -{"rects": [{"solidity": 0.9937651064122952, "top": 405, "right": 2385, "bottom": 1630, "left": 560}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716419f.jpg"} -{"rects": [{"solidity": 0.9937653199827219, "top": 405, "right": 3175, "bottom": 2265, "left": 560}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700727f.jpg"} -{"rects": [{"solidity": 0.9937657238326172, "top": 2275, "right": 3080, "bottom": 3905, "left": 660}, {"solidity": 0.9953501470270412, "top": 4125, "right": 3065, "bottom": 5755, "left": 645}, {"solidity": 0.996935494674794, "top": 425, "right": 3075, "bottom": 2005, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734712f.jpg"} -{"rects": [{"solidity": 0.9937657774163736, "top": 2240, "right": 3090, "bottom": 3880, "left": 680}, {"solidity": 0.9959035676799716, "top": 370, "right": 3100, "bottom": 1980, "left": 710}, {"solidity": 0.9952367277012507, "top": 4155, "right": 3070, "bottom": 5755, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728698f.jpg"} -{"rects": [{"solidity": 0.9937667673074029, "top": 445, "right": 2885, "bottom": 1950, "left": 980}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701495f.jpg"} -{"rects": [{"solidity": 0.993767037500921, "top": 465, "right": 3065, "bottom": 1910, "left": 1230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725970f.jpg"} -{"rects": [{"solidity": 0.9937675308461825, "top": 2250, "right": 3135, "bottom": 3870, "left": 715}, {"solidity": 0.9944219600010512, "top": 430, "right": 3125, "bottom": 2030, "left": 725}, {"solidity": 0.9939214139807478, "top": 4095, "right": 3105, "bottom": 5720, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717985f.jpg"} -{"rects": [{"solidity": 0.9937685859023596, "top": 2190, "right": 2665, "bottom": 3610, "left": 870}, {"solidity": 0.9969358732761163, "top": 725, "right": 2650, "bottom": 2140, "left": 865}, {"solidity": 0.9949996743274863, "top": 725, "right": 5270, "bottom": 2140, "left": 3485}, {"solidity": 0.9939266361823419, "top": 2195, "right": 5280, "bottom": 3610, "left": 3490}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730487f.jpg"} -{"rects": [{"solidity": 0.9937690675155856, "top": 825, "right": 2140, "bottom": 3230, "left": 525}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721359f.jpg"} -{"rects": [{"solidity": 0.9937698760159757, "top": 790, "right": 3780, "bottom": 3210, "left": 2180}, {"solidity": 0.9965088148327838, "top": 795, "right": 1930, "bottom": 3180, "left": 320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724625f.jpg"} -{"rects": [{"solidity": 0.9937726370528095, "top": 560, "right": 3275, "bottom": 2370, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710017f.jpg"} -{"rects": [{"solidity": 0.9937735114800882, "top": 495, "right": 1305, "bottom": 2025, "left": 280}], "shape": {"h": 2535, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727181f.jpg"} -{"rects": [{"solidity": 0.9937736881913191, "top": 600, "right": 3085, "bottom": 1985, "left": 890}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710449f.jpg"} -{"rects": [{"solidity": 0.9937744938968074, "top": 655, "right": 2735, "bottom": 2055, "left": 930}, {"solidity": 0.9950931339432205, "top": 2065, "right": 2725, "bottom": 3460, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727347f.jpg"} -{"rects": [{"solidity": 0.9937748785662932, "top": 500, "right": 5155, "bottom": 2055, "left": 3295}, {"solidity": 0.9957628429159063, "top": 2170, "right": 2935, "bottom": 3710, "left": 1075}, {"solidity": 0.9950512053365632, "top": 495, "right": 2920, "bottom": 2010, "left": 1075}, {"solidity": 0.9948337920813043, "top": 2225, "right": 5140, "bottom": 3670, "left": 3270}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719546f.jpg"} -{"rects": [{"solidity": 0.9937750164286995, "top": 465, "right": 3380, "bottom": 1835, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701853f.jpg"} -{"rects": [{"solidity": 0.9937754307098627, "top": 720, "right": 4830, "bottom": 3445, "left": 1260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723834f.jpg"} -{"rects": [{"solidity": 0.9937772730118906, "top": 675, "right": 2635, "bottom": 3515, "left": 565}, {"solidity": 0.9965518287661138, "top": 685, "right": 5245, "bottom": 3520, "left": 3195}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709563f.jpg"} -{"rects": [{"solidity": 0.9937786227503785, "top": 1190, "right": 3325, "bottom": 5020, "left": 285}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717061f.jpg"} -{"rects": [{"solidity": 0.9937786232190902, "top": 400, "right": 3195, "bottom": 2005, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712736f.jpg"} -{"rects": [{"solidity": 0.9937808256862707, "top": 410, "right": 3260, "bottom": 2020, "left": 855}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/700893f.jpg"} -{"rects": [{"solidity": 0.9937835195638237, "top": 600, "right": 4940, "bottom": 3535, "left": 1005}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705953f.jpg"} -{"rects": [{"solidity": 0.9937846919959189, "top": 575, "right": 2910, "bottom": 1850, "left": 745}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710849f.jpg"} -{"rects": [{"solidity": 0.9937853932401953, "top": 520, "right": 2160, "bottom": 2610, "left": 670}, {"solidity": 0.9969761100484311, "top": 515, "right": 3985, "bottom": 2605, "left": 2500}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716138f.jpg"} -{"rects": [{"solidity": 0.9937854363187242, "top": 580, "right": 5020, "bottom": 3670, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701940f.jpg"} -{"rects": [{"solidity": 0.9937864772469017, "top": 3270, "right": 3280, "bottom": 5190, "left": 560}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713359f.jpg"} -{"rects": [{"solidity": 0.9937866697958225, "top": 405, "right": 2440, "bottom": 1605, "left": 645}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715850f.jpg"} -{"rects": [{"solidity": 0.9937872187688643, "top": 860, "right": 2050, "bottom": 3275, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730260f.jpg"} -{"rects": [{"solidity": 0.9937885933777411, "top": 410, "right": 3095, "bottom": 2345, "left": 365}, {"solidity": 0.9953538458588834, "top": 2485, "right": 3105, "bottom": 4145, "left": 655}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723509f.jpg"} -{"rects": [{"solidity": 0.9937892988492111, "top": 410, "right": 2450, "bottom": 1605, "left": 665}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715852f.jpg"} -{"rects": [{"solidity": 0.993792663476874, "top": 4020, "right": 3020, "bottom": 5670, "left": 585}, {"solidity": 0.9951784642349263, "top": 295, "right": 3015, "bottom": 1910, "left": 580}, {"solidity": 0.9974225973774928, "top": 2130, "right": 3015, "bottom": 3750, "left": 600}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729854f.jpg"} -{"rects": [{"solidity": 0.993793397726832, "top": 645, "right": 5215, "bottom": 2065, "left": 3375}, {"solidity": 0.9945424892285971, "top": 2075, "right": 2745, "bottom": 3495, "left": 915}, {"solidity": 0.9967316985142262, "top": 665, "right": 2735, "bottom": 2060, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726375f.jpg"} -{"rects": [{"solidity": 0.9937934061394676, "top": 2005, "right": 5145, "bottom": 3390, "left": 3370}, {"solidity": 0.9936099593643047, "top": 615, "right": 2690, "bottom": 1975, "left": 885}, {"solidity": 0.9950123136746597, "top": 2020, "right": 2665, "bottom": 3395, "left": 895}, {"solidity": 0.9945257384496221, "top": 615, "right": 5160, "bottom": 1970, "left": 3365}], "shape": {"h": 3860, "w": 6050}, "file": "/usr/local/google/home/danvk/milstein/728123f.jpg"} -{"rects": [{"solidity": 0.9937958061724274, "top": 445, "right": 3165, "bottom": 2055, "left": 745}, {"solidity": 0.9887067901434028, "top": 4065, "right": 3150, "bottom": 5695, "left": 730}, {"solidity": 0.9911961766252773, "top": 2240, "right": 3155, "bottom": 3845, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701600f.jpg"} -{"rects": [{"solidity": 0.9937967327839374, "top": 2295, "right": 2995, "bottom": 3850, "left": 650}, {"solidity": 0.9938040788940299, "top": 4050, "right": 2975, "bottom": 5600, "left": 630}, {"solidity": 0.9731065612608794, "top": 765, "right": 2920, "bottom": 1950, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707572f.jpg"} -{"rects": [{"solidity": 0.9937982342019174, "top": 780, "right": 3130, "bottom": 2205, "left": 1015}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508917.jpg"} -{"rects": [{"solidity": 0.993798261280664, "top": 405, "right": 3235, "bottom": 2005, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727706f.jpg"} -{"rects": [{"solidity": 0.9937984648176481, "top": 720, "right": 1985, "bottom": 3125, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706612f.jpg"} -{"rects": [{"solidity": 0.9937997964943268, "top": 360, "right": 5230, "bottom": 3590, "left": 1170}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732218f.jpg"} -{"rects": [{"solidity": 0.9938000183975715, "top": 405, "right": 2955, "bottom": 1550, "left": 1105}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703703f.jpg"} -{"rects": [{"solidity": 0.9938009638185573, "top": 1340, "right": 2885, "bottom": 2955, "left": 325}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732186f.jpg"} -{"rects": [{"solidity": 0.9938019467311388, "top": 665, "right": 2020, "bottom": 3060, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728064f.jpg"} -{"rects": [{"solidity": 0.9938019959674004, "top": 415, "right": 3180, "bottom": 1985, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726437f.jpg"} -{"rects": [{"solidity": 0.9938026528419205, "top": 475, "right": 3065, "bottom": 2015, "left": 1060}, {"solidity": 0.9962073741837609, "top": 2390, "right": 3060, "bottom": 3935, "left": 1070}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/702794f.jpg"} -{"rects": [{"solidity": 0.9938029507588456, "top": 435, "right": 3170, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719378f.jpg"} -{"rects": [{"solidity": 0.9938033527311129, "top": 615, "right": 5030, "bottom": 3595, "left": 1235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720480f.jpg"} -{"rects": [{"solidity": 0.9938035951615678, "top": 3085, "right": 2255, "bottom": 5485, "left": 155}], "shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465513.jpg"} -{"rects": [{"solidity": 0.9938056282807252, "top": 435, "right": 2965, "bottom": 2855, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717514f.jpg"} -{"rects": [{"solidity": 0.9938079256630993, "top": 430, "right": 3145, "bottom": 3640, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714437f.jpg"} -{"rects": [{"solidity": 0.9938090499024183, "top": 1140, "right": 3185, "bottom": 2780, "left": 765}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/709235f.jpg"} -{"rects": [{"solidity": 0.9938093373788783, "top": 495, "right": 3060, "bottom": 1905, "left": 1230}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727939f.jpg"} -{"rects": [{"solidity": 0.9938100320170757, "top": 355, "right": 2690, "bottom": 1725, "left": 1205}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722028f.jpg"} -{"rects": [{"solidity": 0.9938100395630389, "top": 1180, "right": 5515, "bottom": 2810, "left": 700}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719219f.jpg"} -{"rects": [{"solidity": 0.9938104150871873, "top": 710, "right": 1505, "bottom": 2500, "left": 300}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/723932f.jpg"} -{"rects": [{"solidity": 0.9938128862892667, "top": 485, "right": 3605, "bottom": 5660, "left": 225}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723905f.jpg"} -{"rects": [{"solidity": 0.9938132222011745, "top": 890, "right": 2060, "bottom": 3060, "left": 525}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723904f.jpg"} -{"rects": [{"solidity": 0.9938132733408324, "top": 655, "right": 2690, "bottom": 2100, "left": 860}, {"solidity": 0.994897810431791, "top": 2095, "right": 5255, "bottom": 3525, "left": 3435}, {"solidity": 0.9963834823776959, "top": 625, "right": 5225, "bottom": 2040, "left": 3460}, {"solidity": 0.9934106737953808, "top": 2160, "right": 2645, "bottom": 3575, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731973f.jpg"} -{"rects": [{"solidity": 0.9938136779612683, "top": 420, "right": 3160, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711859f.jpg"} -{"rects": [{"solidity": 0.9938137372525495, "top": 445, "right": 2670, "bottom": 1470, "left": 1350}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715053f.jpg"} -{"rects": [{"solidity": 0.9938139647653814, "top": 735, "right": 2665, "bottom": 3765, "left": 190}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508419.jpg"} -{"rects": [{"solidity": 0.9938147506258425, "top": 290, "right": 1620, "bottom": 1440, "left": 190}, {"solidity": 0.9937625655054217, "top": 280, "right": 3120, "bottom": 1365, "left": 1700}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716523f.jpg"} -{"rects": [{"solidity": 0.9938152658671455, "top": 540, "right": 2270, "bottom": 1885, "left": 550}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703832f.jpg"} -{"rects": [{"solidity": 0.9938161321767153, "top": 440, "right": 3175, "bottom": 2150, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701670f.jpg"} -{"rects": [{"solidity": 0.9938162716167646, "top": 785, "right": 2445, "bottom": 2310, "left": 310}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508189.jpg"} -{"rects": [{"solidity": 0.9938168441149244, "top": 510, "right": 5210, "bottom": 3775, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726796f.jpg"} -{"rects": [{"solidity": 0.9938171306861403, "top": 460, "right": 3605, "bottom": 2660, "left": 725}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509257.jpg"} -{"rects": [{"solidity": 0.9938173214826449, "top": 2320, "right": 3125, "bottom": 3915, "left": 745}, {"solidity": 0.9972408817153298, "top": 495, "right": 3125, "bottom": 2080, "left": 745}, {"solidity": 0.9961493617550309, "top": 4155, "right": 3145, "bottom": 5730, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714197f.jpg"} -{"rects": [{"solidity": 0.993817473483886, "top": 300, "right": 2890, "bottom": 1715, "left": 1090}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726092f.jpg"} -{"rects": [{"solidity": 0.9938182147547665, "top": 825, "right": 2435, "bottom": 3245, "left": 805}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706865f.jpg"} -{"rects": [{"solidity": 0.9938182403540681, "top": 400, "right": 5095, "bottom": 3780, "left": 1040}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720820f.jpg"} -{"rects": [{"solidity": 0.993818331754898, "top": 2250, "right": 3110, "bottom": 3860, "left": 675}, {"solidity": 0.9955000929328633, "top": 405, "right": 3105, "bottom": 2000, "left": 680}, {"solidity": 0.9956364232439964, "top": 4115, "right": 3105, "bottom": 5715, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730209f.jpg"} -{"rects": [{"solidity": 0.9938183352518752, "top": 605, "right": 5250, "bottom": 2155, "left": 3240}, {"solidity": 0.9886912619245267, "top": 600, "right": 2910, "bottom": 2025, "left": 940}, {"solidity": 0.9915568292713056, "top": 2300, "right": 5015, "bottom": 3550, "left": 3360}, {"solidity": 0.992832282946101, "top": 2270, "right": 2755, "bottom": 3515, "left": 1130}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704470f.jpg"} -{"rects": [{"solidity": 0.9938203184808124, "top": 285, "right": 5070, "bottom": 3720, "left": 985}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704719f.jpg"} -{"rects": [{"solidity": 0.9938206276677384, "top": 805, "right": 2655, "bottom": 2210, "left": 860}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727958f.jpg"} -{"rects": [{"solidity": 0.993820909104252, "top": 525, "right": 3035, "bottom": 1950, "left": 1210}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727390f.jpg"} -{"rects": [{"solidity": 0.9938213938861398, "top": 675, "right": 1790, "bottom": 2665, "left": 400}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465651.jpg"} -{"rects": [{"solidity": 0.993821865456184, "top": 550, "right": 3130, "bottom": 2145, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710115f.jpg"} -{"rects": [{"solidity": 0.9938219447702737, "top": 4155, "right": 3125, "bottom": 5575, "left": 1325}, {"solidity": 0.9955668524652503, "top": 520, "right": 3160, "bottom": 1935, "left": 1355}, {"solidity": 0.9947359697016882, "top": 2365, "right": 3160, "bottom": 3785, "left": 1385}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726223f.jpg"} -{"rects": [{"solidity": 0.9938222813120368, "top": 450, "right": 2180, "bottom": 2745, "left": 665}, {"solidity": 0.9965262017365331, "top": 455, "right": 4035, "bottom": 2740, "left": 2525}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716348f.jpg"} -{"rects": [{"solidity": 0.993822791745893, "top": 805, "right": 1990, "bottom": 3220, "left": 375}, {"solidity": 0.9957103660137583, "top": 830, "right": 3895, "bottom": 3230, "left": 2285}, {"solidity": 0.9957459799178396, "top": 855, "right": 5805, "bottom": 3245, "left": 4215}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733370f.jpg"} -{"rects": [{"solidity": 0.993823171002452, "top": 665, "right": 2730, "bottom": 2080, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728261f.jpg"} -{"rects": [{"solidity": 0.9938234279974614, "top": 2065, "right": 2730, "bottom": 3470, "left": 915}, {"solidity": 0.9933385167164104, "top": 655, "right": 2735, "bottom": 2060, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727500f.jpg"} -{"rects": [{"solidity": 0.9938243225440457, "top": 1075, "right": 4335, "bottom": 2910, "left": 1735}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702028f.jpg"} -{"rects": [{"solidity": 0.9938250406588351, "top": 850, "right": 2065, "bottom": 3275, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719775f.jpg"} -{"rects": [{"solidity": 0.9938251705849394, "top": 695, "right": 3045, "bottom": 2295, "left": 985}, {"solidity": 0.9932706082781585, "top": 2335, "right": 3030, "bottom": 3920, "left": 970}, {"solidity": 0.9951950311157893, "top": 685, "right": 5890, "bottom": 2255, "left": 3885}], "shape": {"h": 4430, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/702900f.jpg"} -{"rects": [{"solidity": 0.993826714038217, "top": 575, "right": 4900, "bottom": 3590, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709908f.jpg"} -{"rects": [{"solidity": 0.9938274202130951, "top": 600, "right": 3345, "bottom": 2490, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712054f.jpg"} -{"rects": [{"solidity": 0.9938286551757097, "top": 785, "right": 3850, "bottom": 3210, "left": 2215}, {"solidity": 0.9963218420317811, "top": 790, "right": 5625, "bottom": 3220, "left": 4010}, {"solidity": 0.9985557723871434, "top": 780, "right": 2075, "bottom": 3200, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724313f.jpg"} -{"rects": [{"solidity": 0.9938289987251049, "top": 1130, "right": 3345, "bottom": 5045, "left": 310}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/732937f.jpg"} -{"rects": [{"solidity": 0.9938292705159257, "top": 445, "right": 3345, "bottom": 3660, "left": 680}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714498f.jpg"} -{"rects": [{"solidity": 0.9938302781821603, "top": 665, "right": 2745, "bottom": 2090, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726138f.jpg"} -{"rects": [{"solidity": 0.9938336407360869, "top": 385, "right": 3160, "bottom": 2025, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729810f.jpg"} -{"rects": [{"solidity": 0.9938346013239798, "top": 825, "right": 2040, "bottom": 3235, "left": 440}, {"solidity": 0.9970666496822499, "top": 845, "right": 3750, "bottom": 3210, "left": 2245}, {"solidity": 0.9955416674236506, "top": 830, "right": 5455, "bottom": 3225, "left": 3990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719386f.jpg"} -{"rects": [{"solidity": 0.9938346525945471, "top": 2250, "right": 2815, "bottom": 3810, "left": 960}, {"solidity": 0.9917993458844866, "top": 4065, "right": 2815, "bottom": 5615, "left": 955}, {"solidity": 0.992787359362325, "top": 430, "right": 2795, "bottom": 1975, "left": 930}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719549f.jpg"} -{"rects": [{"solidity": 0.9938354656425059, "top": 490, "right": 2950, "bottom": 1915, "left": 1120}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727225f.jpg"} -{"rects": [{"solidity": 0.9938359536547741, "top": 410, "right": 3265, "bottom": 2015, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725171f.jpg"} -{"rects": [{"solidity": 0.9938364771510828, "top": 435, "right": 3095, "bottom": 2035, "left": 710}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713786f.jpg"} -{"rects": [{"solidity": 0.9938378788332385, "top": 750, "right": 2975, "bottom": 2140, "left": 1155}, {"solidity": 0.9940431777872913, "top": 2590, "right": 2950, "bottom": 3735, "left": 1110}, {"solidity": 0.9916251949788308, "top": 4255, "right": 2920, "bottom": 5400, "left": 1090}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726477f.jpg"} -{"rects": [{"solidity": 0.9938394440266349, "top": 490, "right": 3255, "bottom": 4190, "left": 625}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713697f.jpg"} -{"rects": [{"solidity": 0.9938397615984457, "top": 725, "right": 1980, "bottom": 3140, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720487f.jpg"} -{"rects": [{"solidity": 0.9938400917751509, "top": 660, "right": 2640, "bottom": 2080, "left": 850}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725449f.jpg"} -{"rects": [{"solidity": 0.9938405151569142, "top": 1420, "right": 1710, "bottom": 2290, "left": 565}, {"solidity": 0.9891556343827199, "top": 420, "right": 1735, "bottom": 1290, "left": 570}, {"solidity": 0.9788215531722445, "top": 1415, "right": 3250, "bottom": 2280, "left": 2100}, {"solidity": 0.980606413377077, "top": 435, "right": 3270, "bottom": 1275, "left": 2130}], "shape": {"h": 2525, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727077f.jpg"} -{"rects": [{"solidity": 0.9938408630563502, "top": 2140, "right": 5235, "bottom": 3585, "left": 3410}, {"solidity": 0.9952302744804933, "top": 2150, "right": 2740, "bottom": 3570, "left": 920}, {"solidity": 0.993321777389306, "top": 660, "right": 5225, "bottom": 2095, "left": 3415}, {"solidity": 0.9978327302168751, "top": 675, "right": 2740, "bottom": 2085, "left": 930}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731981f.jpg"} -{"rects": [{"solidity": 0.993840923160257, "top": 750, "right": 3385, "bottom": 2660, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715339f.jpg"} -{"rects": [{"solidity": 0.993841688934506, "top": 350, "right": 2380, "bottom": 1550, "left": 590}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715939f.jpg"} -{"rects": [{"solidity": 0.9938423270216762, "top": 460, "right": 2955, "bottom": 1850, "left": 1145}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725654f.jpg"} -{"rects": [{"solidity": 0.9938423830127804, "top": 600, "right": 2430, "bottom": 2005, "left": 630}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704798f.jpg"} -{"rects": [{"solidity": 0.9938426218271192, "top": 450, "right": 3340, "bottom": 2410, "left": 560}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704517f.jpg"} -{"rects": [{"solidity": 0.9938434355286225, "top": 485, "right": 5250, "bottom": 3660, "left": 3205}, {"solidity": 0.9982360017387261, "top": 2010, "right": 2695, "bottom": 3430, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704236f.jpg"} -{"rects": [{"solidity": 0.9938437623371497, "top": 155, "right": 3120, "bottom": 1520, "left": 860}, {"solidity": 0.9956343261965257, "top": 1600, "right": 3110, "bottom": 2960, "left": 865}, {"solidity": 0.9621076183018235, "top": 4535, "right": 3100, "bottom": 5835, "left": 880}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729989f.jpg"} -{"rects": [{"solidity": 0.9938438802209516, "top": 765, "right": 3320, "bottom": 2695, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717964f.jpg"} -{"rects": [{"solidity": 0.993844410233212, "top": 405, "right": 2770, "bottom": 3810, "left": 1205}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/714913f.jpg"} -{"rects": [{"solidity": 0.9938456386735398, "top": 840, "right": 2755, "bottom": 2215, "left": 930}, {"solidity": 0.9972325339001761, "top": 2230, "right": 2730, "bottom": 3595, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731390f.jpg"} -{"rects": [{"solidity": 0.9938457250636816, "top": 365, "right": 2785, "bottom": 2790, "left": 1160}, {"solidity": 0.9944579114047777, "top": 2915, "right": 3260, "bottom": 4540, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727285f.jpg"} -{"rects": [{"solidity": 0.9938469127682316, "top": 4085, "right": 3030, "bottom": 5695, "left": 615}, {"solidity": 0.9957259452300029, "top": 2255, "right": 3040, "bottom": 3845, "left": 640}, {"solidity": 0.9949005321760827, "top": 400, "right": 3020, "bottom": 1995, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734354f.jpg"} -{"rects": [{"solidity": 0.9938472095150961, "top": 820, "right": 4385, "bottom": 3530, "left": 2555}, {"solidity": 0.9967765236324003, "top": 810, "right": 2255, "bottom": 3515, "left": 445}, {"solidity": 0.9950560752535115, "top": 805, "right": 6680, "bottom": 2195, "left": 4405}, {"solidity": 0.9920946920277416, "top": 2255, "right": 6685, "bottom": 3550, "left": 4405}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711286f.jpg"} -{"rects": [{"solidity": 0.9938473067176762, "top": 560, "right": 3050, "bottom": 1995, "left": 1235}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727953f.jpg"} -{"rects": [{"solidity": 0.9938473231924464, "top": 835, "right": 3780, "bottom": 3245, "left": 2180}, {"solidity": 0.9920030322823, "top": 835, "right": 1955, "bottom": 3210, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730067f.jpg"} -{"rects": [{"solidity": 0.9938473974940495, "top": 780, "right": 2055, "bottom": 3235, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720465f.jpg"} -{"rects": [{"solidity": 0.9938485362679362, "top": 495, "right": 3165, "bottom": 2095, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710500f.jpg"} -{"rects": [{"solidity": 0.9938486598866182, "top": 740, "right": 3310, "bottom": 2570, "left": 695}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/717730f.jpg"} -{"rects": [{"solidity": 0.9938497951280794, "top": 355, "right": 3095, "bottom": 3555, "left": 650}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714598f.jpg"} -{"rects": [{"solidity": 0.9938502595288353, "top": 400, "right": 3170, "bottom": 2020, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717725f.jpg"} -{"rects": [{"solidity": 0.9938506616803694, "top": 505, "right": 2985, "bottom": 1935, "left": 1145}, {"solidity": 0.9948092106219738, "top": 515, "right": 5175, "bottom": 1945, "left": 3345}, {"solidity": 0.9957933246320979, "top": 2180, "right": 2955, "bottom": 3615, "left": 1130}, {"solidity": 0.994851441596353, "top": 2195, "right": 5155, "bottom": 3610, "left": 3355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726180f.jpg"} -{"rects": [{"solidity": 0.9938509395402673, "top": 300, "right": 5005, "bottom": 3640, "left": 1000}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731996f.jpg"} -{"rects": [{"solidity": 0.9938510541050106, "top": 1055, "right": 1775, "bottom": 2830, "left": 775}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715181f.jpg"} -{"rects": [{"solidity": 0.9938510808646918, "top": 2420, "right": 3170, "bottom": 4320, "left": 480}, {"solidity": 0.9938520580931598, "top": 455, "right": 3180, "bottom": 2340, "left": 520}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727889f.jpg"} -{"rects": [{"solidity": 0.9938521248491569, "top": 770, "right": 2000, "bottom": 3185, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710930f.jpg"} -{"rects": [{"solidity": 0.9938524337456375, "top": 1100, "right": 3490, "bottom": 5020, "left": 360}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714394f.jpg"} -{"rects": [{"solidity": 0.9938525896183507, "top": 225, "right": 2390, "bottom": 1440, "left": 585}], "shape": {"h": 4600, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/702435f.jpg"} -{"rects": [{"solidity": 0.99385339345882, "top": 800, "right": 3935, "bottom": 3235, "left": 2295}, {"solidity": 0.9972061848403488, "top": 790, "right": 2100, "bottom": 3220, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719920f.jpg"} -{"rects": [{"solidity": 0.9938553587539769, "top": 2260, "right": 3095, "bottom": 3915, "left": 655}, {"solidity": 0.995776843620052, "top": 400, "right": 3075, "bottom": 2020, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710620f.jpg"} -{"rects": [{"solidity": 0.9938555824329834, "top": 940, "right": 3710, "bottom": 2490, "left": 1575}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509301.jpg"} -{"rects": [{"solidity": 0.9938558691334286, "top": 630, "right": 2630, "bottom": 2060, "left": 815}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704312f.jpg"} -{"rects": [{"solidity": 0.9938572895779332, "top": 775, "right": 2055, "bottom": 3185, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730381f.jpg"} -{"rects": [{"solidity": 0.9938572940899271, "top": 690, "right": 2055, "bottom": 3085, "left": 460}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711114f.jpg"} -{"rects": [{"solidity": 0.99385903252604, "top": 950, "right": 2055, "bottom": 3375, "left": 425}, {"solidity": 0.9954886685780296, "top": 950, "right": 3955, "bottom": 3365, "left": 2330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722908f.jpg"} -{"rects": [{"solidity": 0.9938591895661244, "top": 3340, "right": 3145, "bottom": 5260, "left": 400}, {"solidity": 0.9942826939632051, "top": 825, "right": 3195, "bottom": 2660, "left": 570}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717748f.jpg"} -{"rects": [{"solidity": 0.9938592832183374, "top": 425, "right": 2930, "bottom": 2270, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709812f.jpg"} -{"rects": [{"solidity": 0.9938594772787149, "top": 800, "right": 1995, "bottom": 3170, "left": 405}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718875f.jpg"} -{"rects": [{"solidity": 0.9938596900309348, "top": 470, "right": 3620, "bottom": 2470, "left": 775}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722895f.jpg"} -{"rects": [{"solidity": 0.9938603511228931, "top": 920, "right": 4005, "bottom": 2835, "left": 2420}, {"solidity": 0.9962243003351146, "top": 510, "right": 2195, "bottom": 1830, "left": 495}, {"solidity": 0.9979526212469741, "top": 2090, "right": 2210, "bottom": 3330, "left": 520}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706756f.jpg"} -{"rects": [{"solidity": 0.9938605012628716, "top": 725, "right": 3945, "bottom": 3140, "left": 2330}, {"solidity": 0.9972887497833289, "top": 725, "right": 2060, "bottom": 3125, "left": 455}, {"solidity": 0.9963746203486479, "top": 740, "right": 5785, "bottom": 3140, "left": 4200}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733606f.jpg"} -{"rects": [{"solidity": 0.9938614384104053, "top": 575, "right": 2765, "bottom": 2040, "left": 935}, {"solidity": 0.9966553890768487, "top": 2275, "right": 5000, "bottom": 3710, "left": 3180}, {"solidity": 0.9978093109242031, "top": 615, "right": 4975, "bottom": 2020, "left": 3165}, {"solidity": 0.99584505496698, "top": 2295, "right": 2765, "bottom": 3700, "left": 960}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725579f.jpg"} -{"rects": [{"solidity": 0.9938620848034406, "top": 1045, "right": 3285, "bottom": 2810, "left": 1910}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704241f.jpg"} -{"rects": [{"solidity": 0.9938631462616808, "top": 415, "right": 3200, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700900f.jpg"} -{"rects": [{"solidity": 0.9938639213038866, "top": 1405, "right": 1675, "bottom": 2320, "left": 525}, {"solidity": 0.9934472211139724, "top": 445, "right": 1690, "bottom": 1360, "left": 540}], "shape": {"h": 2555, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/727115f.jpg"} -{"rects": [{"solidity": 0.9938639413647156, "top": 555, "right": 3985, "bottom": 2680, "left": 1035}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508787.jpg"} -{"rects": [{"solidity": 0.9938640537585325, "top": 660, "right": 3310, "bottom": 2505, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712062f.jpg"} -{"rects": [{"solidity": 0.9938641862017186, "top": 705, "right": 3000, "bottom": 2145, "left": 835}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517107.jpg"} -{"rects": [{"solidity": 0.9938660039130665, "top": 1290, "right": 3330, "bottom": 4830, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732935f.jpg"} -{"rects": [{"solidity": 0.9938663778992168, "top": 495, "right": 5080, "bottom": 3665, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731371f.jpg"} -{"rects": [{"solidity": 0.9938665522996554, "top": 910, "right": 2260, "bottom": 3625, "left": 460}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711284f.jpg"} -{"rects": [{"solidity": 0.9938670485087892, "top": 430, "right": 3145, "bottom": 2020, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734050f.jpg"} -{"rects": [{"solidity": 0.9938671482028681, "top": 435, "right": 3045, "bottom": 1935, "left": 1045}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700461f.jpg"} -{"rects": [{"solidity": 0.9938684117888079, "top": 470, "right": 5080, "bottom": 3695, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723698f.jpg"} -{"rects": [{"solidity": 0.9938695538955314, "top": 560, "right": 5030, "bottom": 3680, "left": 1175}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709210f.jpg"} -{"rects": [{"solidity": 0.993870607485131, "top": 835, "right": 2015, "bottom": 3240, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700418f.jpg"} -{"rects": [{"solidity": 0.9938707882833854, "top": 2125, "right": 5310, "bottom": 3555, "left": 3485}, {"solidity": 0.9951887382282834, "top": 660, "right": 5300, "bottom": 2085, "left": 3485}, {"solidity": 0.9727602815857725, "top": 675, "right": 2675, "bottom": 2090, "left": 865}, {"solidity": 0.9833445081067902, "top": 2135, "right": 2690, "bottom": 3525, "left": 895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707152f.jpg"} -{"rects": [{"solidity": 0.9938710458360233, "top": 2260, "right": 3070, "bottom": 3675, "left": 840}, {"solidity": 0.9967965722107701, "top": 540, "right": 3090, "bottom": 1940, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718930f.jpg"} -{"rects": [{"solidity": 0.993872030634281, "top": 485, "right": 5090, "bottom": 3850, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714953f.jpg"} -{"rects": [{"solidity": 0.9938722397150033, "top": 475, "right": 3105, "bottom": 2035, "left": 1140}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703093f.jpg"} -{"rects": [{"solidity": 0.9938734239141256, "top": 1170, "right": 3230, "bottom": 4565, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731144f.jpg"} -{"rects": [{"solidity": 0.9938742073283982, "top": 485, "right": 3220, "bottom": 2085, "left": 830}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709594f.jpg"} -{"rects": [{"solidity": 0.9938742227222382, "top": 925, "right": 5855, "bottom": 3290, "left": 2775}, {"solidity": 0.9947993308378129, "top": 575, "right": 2635, "bottom": 3615, "left": 290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717674f.jpg"} -{"rects": [{"solidity": 0.9938746806991101, "top": 900, "right": 3420, "bottom": 2355, "left": 1390}], "shape": {"h": 2980, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1507308.jpg"} -{"rects": [{"solidity": 0.9938761257848375, "top": 575, "right": 3155, "bottom": 2175, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720946f.jpg"} -{"rects": [{"solidity": 0.9938770152229149, "top": 425, "right": 2905, "bottom": 1930, "left": 1005}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702100f.jpg"} -{"rects": [{"solidity": 0.993877114108328, "top": 610, "right": 1825, "bottom": 3500, "left": 700}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715666f.jpg"} -{"rects": [{"solidity": 0.9938774386592164, "top": 600, "right": 4945, "bottom": 3595, "left": 1180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709827f.jpg"} -{"rects": [{"solidity": 0.9938788361002231, "top": 495, "right": 3070, "bottom": 1930, "left": 1255}, {"solidity": 0.9963424903953001, "top": 2345, "right": 3080, "bottom": 3745, "left": 1270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727603f.jpg"} -{"rects": [{"solidity": 0.9938789844037179, "top": 720, "right": 2810, "bottom": 3125, "left": 1190}, {"solidity": 0.9958303782018506, "top": 3170, "right": 2820, "bottom": 5565, "left": 1215}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709327f.jpg"} -{"rects": [{"solidity": 0.9938802219056554, "top": 4040, "right": 3435, "bottom": 5990, "left": 630}, {"solidity": 0.9933347858580321, "top": 2045, "right": 3420, "bottom": 3995, "left": 625}, {"solidity": 0.9902311653704999, "top": 180, "right": 3360, "bottom": 1965, "left": 715}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725062f.jpg"} -{"rects": [{"solidity": 0.993881447711694, "top": 1085, "right": 2660, "bottom": 3795, "left": 325}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509297.jpg"} -{"rects": [{"solidity": 0.9938836716862016, "top": 935, "right": 2030, "bottom": 2950, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702357f.jpg"} -{"rects": [{"solidity": 0.9938839034405113, "top": 890, "right": 2195, "bottom": 3275, "left": 590}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708208f.jpg"} -{"rects": [{"solidity": 0.9938852654622591, "top": 410, "right": 3170, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702742f.jpg"} -{"rects": [{"solidity": 0.9938875187699154, "top": 410, "right": 3200, "bottom": 2040, "left": 780}, {"solidity": 0.9917164260823076, "top": 2255, "right": 3165, "bottom": 3915, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702121f.jpg"} -{"rects": [{"solidity": 0.993887756391767, "top": 790, "right": 2070, "bottom": 3210, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720577f.jpg"} -{"rects": [{"solidity": 0.993888019326959, "top": 445, "right": 2885, "bottom": 2000, "left": 975}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720238f.jpg"} -{"rects": [{"solidity": 0.9938882545208267, "top": 2255, "right": 3070, "bottom": 3860, "left": 655}, {"solidity": 0.9960394803009338, "top": 4120, "right": 3065, "bottom": 5710, "left": 650}, {"solidity": 0.9952565775458031, "top": 395, "right": 3055, "bottom": 1990, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728295f.jpg"} -{"rects": [{"solidity": 0.9938890047880488, "top": 425, "right": 2925, "bottom": 1810, "left": 1095}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704154f.jpg"} -{"rects": [{"solidity": 0.9938909439016504, "top": 650, "right": 2985, "bottom": 3630, "left": 965}, {"solidity": 0.9944705973476079, "top": 630, "right": 5115, "bottom": 3630, "left": 3160}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723899f.jpg"} -{"rects": [{"solidity": 0.9938913046334126, "top": 835, "right": 3825, "bottom": 3240, "left": 2190}, {"solidity": 0.9939648299808271, "top": 860, "right": 2050, "bottom": 3255, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731630f.jpg"} -{"rects": [{"solidity": 0.9938916511847982, "top": 1880, "right": 2910, "bottom": 4335, "left": 1260}, {"solidity": 0.9967814273364956, "top": 180, "right": 3260, "bottom": 1810, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710483f.jpg"} -{"rects": [{"solidity": 0.9938918198230382, "top": 780, "right": 3860, "bottom": 3220, "left": 2215}, {"solidity": 0.995256376887038, "top": 780, "right": 2010, "bottom": 3185, "left": 390}, {"solidity": 0.9952470832151624, "top": 830, "right": 5670, "bottom": 3235, "left": 4055}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718153f.jpg"} -{"rects": [{"solidity": 0.9938923945533046, "top": 395, "right": 3190, "bottom": 1995, "left": 795}, {"solidity": 0.994755585562883, "top": 2160, "right": 2920, "bottom": 3610, "left": 1050}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706832f.jpg"} -{"rects": [{"solidity": 0.9938929634131008, "top": 490, "right": 2800, "bottom": 3625, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723895f.jpg"} -{"rects": [{"solidity": 0.9938930285667337, "top": 325, "right": 4975, "bottom": 3690, "left": 940}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713061f.jpg"} -{"rects": [{"solidity": 0.9938932300216692, "top": 2985, "right": 3325, "bottom": 4885, "left": 590}, {"solidity": 0.9954412234821316, "top": 585, "right": 3305, "bottom": 2390, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713561f.jpg"} -{"rects": [{"solidity": 0.9938947258033859, "top": 460, "right": 3270, "bottom": 2065, "left": 860}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/700903f.jpg"} -{"rects": [{"solidity": 0.9938947858259408, "top": 410, "right": 3180, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724176f.jpg"} -{"rects": [{"solidity": 0.993895123156186, "top": 865, "right": 2040, "bottom": 3290, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714447f.jpg"} -{"rects": [{"solidity": 0.9938951940017208, "top": 2170, "right": 2975, "bottom": 3140, "left": 2005}, {"solidity": 0.99312323334599, "top": 2195, "right": 4110, "bottom": 3150, "left": 3155}, {"solidity": 0.9930750674045693, "top": 2175, "right": 1820, "bottom": 3150, "left": 880}, {"solidity": 0.9944217072779971, "top": 915, "right": 5270, "bottom": 1825, "left": 4310}, {"solidity": 0.9929386361646874, "top": 890, "right": 4105, "bottom": 1845, "left": 3185}, {"solidity": 0.9915574836042826, "top": 2175, "right": 5225, "bottom": 3145, "left": 4310}, {"solidity": 0.9961616518132886, "top": 865, "right": 1805, "bottom": 1820, "left": 900}, {"solidity": 0.9944593762669109, "top": 865, "right": 2970, "bottom": 1800, "left": 2060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732953f.jpg"} -{"rects": [{"solidity": 0.9938964061258901, "top": 440, "right": 2915, "bottom": 3715, "left": 425}, {"solidity": 0.9964610228362418, "top": 830, "right": 5070, "bottom": 3285, "left": 3425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700013f.jpg"} -{"rects": [{"solidity": 0.9938975165001005, "top": 820, "right": 1985, "bottom": 3220, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709434f.jpg"} -{"rects": [{"solidity": 0.9938977766596123, "top": 450, "right": 2960, "bottom": 1870, "left": 1120}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728070f.jpg"} -{"rects": [{"solidity": 0.9938995633852099, "top": 320, "right": 2225, "bottom": 1485, "left": 770}, {"solidity": 0.9940556459738046, "top": 1645, "right": 3085, "bottom": 2800, "left": 1655}, {"solidity": 0.9933108807081132, "top": 305, "right": 3860, "bottom": 1445, "left": 2425}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516967.jpg"} -{"rects": [{"solidity": 0.9938996954738414, "top": 805, "right": 3925, "bottom": 3215, "left": 2310}, {"solidity": 0.9976119246312917, "top": 775, "right": 2020, "bottom": 3175, "left": 420}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732414f.jpg"} -{"rects": [{"solidity": 0.9938999258099085, "top": 2220, "right": 2725, "bottom": 3650, "left": 895}, {"solidity": 0.9972224140823113, "top": 620, "right": 4855, "bottom": 2045, "left": 3060}, {"solidity": 0.9946826204602438, "top": 620, "right": 2685, "bottom": 2045, "left": 895}, {"solidity": 0.9941454041422517, "top": 2225, "right": 4870, "bottom": 3625, "left": 3060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727804f.jpg"} -{"rects": [{"solidity": 0.9938999734644107, "top": 395, "right": 3025, "bottom": 2005, "left": 535}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729535f.jpg"} -{"rects": [{"solidity": 0.9939003727549983, "top": 4120, "right": 2885, "bottom": 5575, "left": 1070}, {"solidity": 0.9979216961295849, "top": 2295, "right": 2885, "bottom": 3730, "left": 1080}, {"solidity": 0.9954392901029195, "top": 435, "right": 2875, "bottom": 1875, "left": 1070}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726538f.jpg"} -{"rects": [{"solidity": 0.9939016655770976, "top": 3685, "right": 2795, "bottom": 5125, "left": 985}, {"solidity": 0.9978315847459749, "top": 295, "right": 2775, "bottom": 1705, "left": 990}, {"solidity": 0.9962743709862875, "top": 1985, "right": 2795, "bottom": 3375, "left": 980}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719840f.jpg"} -{"rects": [{"solidity": 0.9939021860232817, "top": 1080, "right": 4790, "bottom": 3480, "left": 1365}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709027f.jpg"} -{"rects": [{"solidity": 0.9939055872688056, "top": 630, "right": 2735, "bottom": 2070, "left": 905}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705816f.jpg"} -{"rects": [{"solidity": 0.99390662519011, "top": 2225, "right": 3215, "bottom": 3830, "left": 805}, {"solidity": 0.9979152602946432, "top": 410, "right": 3220, "bottom": 1995, "left": 820}, {"solidity": 0.9954918303896275, "top": 4095, "right": 3200, "bottom": 5680, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725642f.jpg"} -{"rects": [{"solidity": 0.9939078626337313, "top": 710, "right": 5240, "bottom": 2135, "left": 3445}, {"solidity": 0.9967156975638086, "top": 2090, "right": 2705, "bottom": 3490, "left": 905}, {"solidity": 0.949162417254371, "top": 720, "right": 2685, "bottom": 2035, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728241f.jpg"} -{"rects": [{"solidity": 0.993907866876841, "top": 1270, "right": 3165, "bottom": 4605, "left": 655}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714672f.jpg"} -{"rects": [{"solidity": 0.9939079573433041, "top": 360, "right": 3495, "bottom": 1995, "left": 385}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730669f.jpg"} -{"rects": [{"solidity": 0.9939082366673005, "top": 845, "right": 2015, "bottom": 3250, "left": 395}, {"solidity": 0.9960791202381031, "top": 845, "right": 3840, "bottom": 3240, "left": 2250}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710199f.jpg"} -{"rects": [{"solidity": 0.993909230475923, "top": 655, "right": 3140, "bottom": 2245, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710393f.jpg"} -{"rects": [{"solidity": 0.9939097699903423, "top": 695, "right": 2695, "bottom": 2110, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706946f.jpg"} -{"rects": [{"solidity": 0.9939098939639772, "top": 545, "right": 3145, "bottom": 2170, "left": 735}, {"solidity": 0.992603550295858, "top": 2380, "right": 3135, "bottom": 4000, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724444f.jpg"} -{"rects": [{"solidity": 0.9939101312588232, "top": 480, "right": 5010, "bottom": 3540, "left": 1185}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731125f.jpg"} -{"rects": [{"solidity": 0.9939104129963827, "top": 480, "right": 2930, "bottom": 1900, "left": 1120}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725276f.jpg"} -{"rects": [{"solidity": 0.9939104477611941, "top": 615, "right": 3205, "bottom": 2210, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708092f.jpg"} -{"rects": [{"solidity": 0.9939104705896411, "top": 260, "right": 5030, "bottom": 3665, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719502f.jpg"} -{"rects": [{"solidity": 0.9939111227366524, "top": 1070, "right": 3340, "bottom": 4880, "left": 365}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701980f.jpg"} -{"rects": [{"solidity": 0.9939115549027919, "top": 725, "right": 3195, "bottom": 2330, "left": 795}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/707538f.jpg"} -{"rects": [{"solidity": 0.9939117314465498, "top": 535, "right": 4760, "bottom": 3600, "left": 965}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728276f.jpg"} -{"rects": [{"solidity": 0.9939130821758629, "top": 595, "right": 5330, "bottom": 2000, "left": 3480}, {"solidity": 0.9953722948709601, "top": 630, "right": 2750, "bottom": 2040, "left": 950}, {"solidity": 0.9935347218720056, "top": 2065, "right": 2765, "bottom": 3485, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702715f.jpg"} -{"rects": [{"solidity": 0.9939136884463239, "top": 275, "right": 5245, "bottom": 3655, "left": 795}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720013f.jpg"} -{"rects": [{"solidity": 0.9939139895046717, "top": 860, "right": 2025, "bottom": 3305, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707662f.jpg"} -{"rects": [{"solidity": 0.9939140807534447, "top": 340, "right": 3140, "bottom": 1965, "left": 720}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722697f.jpg"} -{"rects": [{"solidity": 0.9939146801304583, "top": 450, "right": 6010, "bottom": 3820, "left": 130}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732453f.jpg"} -{"rects": [{"solidity": 0.993916027696856, "top": 380, "right": 3860, "bottom": 2800, "left": 850}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716521f.jpg"} -{"rects": [{"solidity": 0.993917040012359, "top": 435, "right": 2000, "bottom": 1785, "left": 1020}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713291f.jpg"} -{"rects": [{"solidity": 0.9939179896871687, "top": 470, "right": 3140, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717540f.jpg"} -{"rects": [{"solidity": 0.9939181527677559, "top": 690, "right": 2740, "bottom": 2110, "left": 925}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726932f.jpg"} -{"rects": [{"solidity": 0.9939189462200493, "top": 440, "right": 3265, "bottom": 2040, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725763f.jpg"} -{"rects": [{"solidity": 0.9939200939746984, "top": 520, "right": 3385, "bottom": 2470, "left": 550}, {"solidity": 0.9944345000827304, "top": 2650, "right": 3145, "bottom": 4120, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726587f.jpg"} -{"rects": [{"solidity": 0.9939205686606545, "top": 2205, "right": 2895, "bottom": 3625, "left": 1075}, {"solidity": 0.9966424119005637, "top": 470, "right": 2905, "bottom": 1860, "left": 1080}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/728061f.jpg"} -{"rects": [{"solidity": 0.993921358181286, "top": 2200, "right": 2765, "bottom": 3615, "left": 930}, {"solidity": 0.9960000987629936, "top": 740, "right": 2750, "bottom": 2150, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726130f.jpg"} -{"rects": [{"solidity": 0.993922425843466, "top": 505, "right": 2240, "bottom": 2595, "left": 745}, {"solidity": 0.9932889711510812, "top": 525, "right": 3995, "bottom": 2620, "left": 2505}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716132f.jpg"} -{"rects": [{"solidity": 0.9939229845563313, "top": 790, "right": 2025, "bottom": 3180, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721663f.jpg"} -{"rects": [{"solidity": 0.9939240456629073, "top": 2260, "right": 3100, "bottom": 3875, "left": 680}, {"solidity": 0.9951739656098871, "top": 425, "right": 3090, "bottom": 2010, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734840f.jpg"} -{"rects": [{"solidity": 0.9939241385296416, "top": 450, "right": 1765, "bottom": 1345, "left": 620}], "shape": {"h": 2560, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727126f.jpg"} -{"rects": [{"solidity": 0.9939255664951604, "top": 450, "right": 1915, "bottom": 2785, "left": 415}, {"solidity": 0.9930528099406947, "top": 455, "right": 3920, "bottom": 1650, "left": 2420}, {"solidity": 0.9946825332617474, "top": 1710, "right": 4005, "bottom": 2745, "left": 2345}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716504f.jpg"} -{"rects": [{"solidity": 0.9939261797227846, "top": 430, "right": 3145, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718224f.jpg"} -{"rects": [{"solidity": 0.9939266360849368, "top": 795, "right": 2065, "bottom": 3225, "left": 455}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701456f.jpg"} -{"rects": [{"solidity": 0.9939268992003367, "top": 445, "right": 3190, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721618f.jpg"} -{"rects": [{"solidity": 0.9939278181829494, "top": 520, "right": 2330, "bottom": 1765, "left": 685}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707050f.jpg"} -{"rects": [{"solidity": 0.9939295482801492, "top": 555, "right": 3150, "bottom": 2150, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718542f.jpg"} -{"rects": [{"solidity": 0.9939295669624314, "top": 685, "right": 2715, "bottom": 2090, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725488f.jpg"} -{"rects": [{"solidity": 0.9939295831647107, "top": 745, "right": 2030, "bottom": 3155, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714566f.jpg"} -{"rects": [{"solidity": 0.9939310813195155, "top": 780, "right": 3885, "bottom": 3165, "left": 2300}, {"solidity": 0.9955957719410634, "top": 780, "right": 2030, "bottom": 3160, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712245f.jpg"} -{"rects": [{"solidity": 0.9939312204989885, "top": 430, "right": 3320, "bottom": 2020, "left": 925}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727671f.jpg"} -{"rects": [{"solidity": 0.9939330716226974, "top": 700, "right": 3340, "bottom": 2590, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713139f.jpg"} -{"rects": [{"solidity": 0.9939336426736549, "top": 1160, "right": 3375, "bottom": 4880, "left": 370}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722177f.jpg"} -{"rects": [{"solidity": 0.9939346935528776, "top": 820, "right": 2070, "bottom": 3210, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710107f.jpg"} -{"rects": [{"solidity": 0.9939357724346838, "top": 355, "right": 2395, "bottom": 1555, "left": 610}], "shape": {"h": 4655, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715780f.jpg"} -{"rects": [{"solidity": 0.9939366872057287, "top": 2800, "right": 2325, "bottom": 3960, "left": 855}, {"solidity": 0.9936591891494807, "top": 1085, "right": 2320, "bottom": 2240, "left": 890}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517171.jpg"} -{"rects": [{"solidity": 0.993937086146572, "top": 475, "right": 5120, "bottom": 3730, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706046f.jpg"} -{"rects": [{"solidity": 0.993937552889101, "top": 430, "right": 2945, "bottom": 1920, "left": 985}, {"solidity": 0.9899664668761387, "top": 2270, "right": 3080, "bottom": 3570, "left": 860}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734446f.jpg"} -{"rects": [{"solidity": 0.9939378395130473, "top": 585, "right": 4745, "bottom": 3570, "left": 985}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709920f.jpg"} -{"rects": [{"solidity": 0.9939384624251913, "top": 420, "right": 3195, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700654f.jpg"} -{"rects": [{"solidity": 0.9939389771450841, "top": 1025, "right": 3540, "bottom": 5060, "left": 130}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712417f.jpg"} -{"rects": [{"solidity": 0.9939401586516272, "top": 355, "right": 3065, "bottom": 1965, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718046f.jpg"} -{"rects": [{"solidity": 0.9939407855293202, "top": 435, "right": 3200, "bottom": 2090, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730582f.jpg"} -{"rects": [{"solidity": 0.9939409716572841, "top": 2255, "right": 3085, "bottom": 3870, "left": 665}, {"solidity": 0.9968639428642437, "top": 400, "right": 3095, "bottom": 1995, "left": 680}, {"solidity": 0.9944524787603068, "top": 4125, "right": 3070, "bottom": 5720, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734841f.jpg"} -{"rects": [{"solidity": 0.9939424988295611, "top": 970, "right": 3505, "bottom": 5020, "left": 255}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714670f.jpg"} -{"rects": [{"solidity": 0.9939427041815516, "top": 715, "right": 2620, "bottom": 2140, "left": 800}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725487f.jpg"} -{"rects": [{"solidity": 0.9939443362177018, "top": 1075, "right": 3050, "bottom": 2135, "left": 1440}], "shape": {"h": 3000, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509555.jpg"} -{"rects": [{"solidity": 0.9939463087248323, "top": 770, "right": 2020, "bottom": 3150, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712244f.jpg"} -{"rects": [{"solidity": 0.9939466223950998, "top": 755, "right": 5060, "bottom": 3420, "left": 1050}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702085f.jpg"} -{"rects": [{"solidity": 0.9939470254269115, "top": 950, "right": 3140, "bottom": 2010, "left": 1485}], "shape": {"h": 2990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1507318.jpg"} -{"rects": [{"solidity": 0.9939484179230242, "top": 2150, "right": 3020, "bottom": 3590, "left": 1155}, {"solidity": 0.9965533915655833, "top": 465, "right": 2990, "bottom": 1835, "left": 1200}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725876f.jpg"} -{"rects": [{"solidity": 0.9939485332195562, "top": 865, "right": 3915, "bottom": 3275, "left": 2295}, {"solidity": 0.9933868166404763, "top": 845, "right": 5805, "bottom": 3240, "left": 4185}, {"solidity": 0.9944855498221465, "top": 840, "right": 2025, "bottom": 3225, "left": 425}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733369f.jpg"} -{"rects": [{"solidity": 0.9939488501458517, "top": 455, "right": 3115, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720976f.jpg"} -{"rects": [{"solidity": 0.9939490735330399, "top": 420, "right": 3140, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708204f.jpg"} -{"rects": [{"solidity": 0.9939491068962343, "top": 1010, "right": 3590, "bottom": 5080, "left": 345}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708685f.jpg"} -{"rects": [{"solidity": 0.993949668254757, "top": 2170, "right": 3060, "bottom": 3610, "left": 1225}, {"solidity": 0.9947360855708274, "top": 410, "right": 3055, "bottom": 1840, "left": 1250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726557f.jpg"} -{"rects": [{"solidity": 0.9939498361207656, "top": 690, "right": 5295, "bottom": 2100, "left": 3485}, {"solidity": 0.9992927864214993, "top": 695, "right": 2690, "bottom": 2095, "left": 885}, {"solidity": 0.9959844177405723, "top": 2160, "right": 2695, "bottom": 3560, "left": 890}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725207f.jpg"} -{"rects": [{"solidity": 0.9939499369854933, "top": 730, "right": 2050, "bottom": 3110, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724893f.jpg"} -{"rects": [{"solidity": 0.9939506933898671, "top": 655, "right": 2735, "bottom": 2065, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727437f.jpg"} -{"rects": [{"solidity": 0.993950849033858, "top": 465, "right": 5095, "bottom": 3515, "left": 1270}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703204f.jpg"} -{"rects": [{"solidity": 0.9939509022980403, "top": 1945, "right": 5255, "bottom": 3415, "left": 3300}, {"solidity": 0.9951095751023135, "top": 1970, "right": 3190, "bottom": 3420, "left": 1245}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730995f.jpg"} -{"rects": [{"solidity": 0.993951461539717, "top": 945, "right": 5615, "bottom": 3355, "left": 4005}, {"solidity": 0.9873910203617982, "top": 1150, "right": 3695, "bottom": 2995, "left": 2250}, {"solidity": 0.9977718817338278, "top": 1165, "right": 1955, "bottom": 2985, "left": 535}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702318f.jpg"} -{"rects": [{"solidity": 0.9939522626879254, "top": 515, "right": 4885, "bottom": 3570, "left": 1135}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709898f.jpg"} -{"rects": [{"solidity": 0.9939522960178491, "top": 880, "right": 2015, "bottom": 3310, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701963f.jpg"} -{"rects": [{"solidity": 0.99395259457389, "top": 2160, "right": 3155, "bottom": 3800, "left": 730}, {"solidity": 0.9947752398385493, "top": 360, "right": 3155, "bottom": 1990, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723632f.jpg"} -{"rects": [{"solidity": 0.9939528000127309, "top": 2290, "right": 3160, "bottom": 3950, "left": 730}, {"solidity": 0.9928670261773535, "top": 460, "right": 3140, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710489f.jpg"} -{"rects": [{"solidity": 0.9939538812343297, "top": 400, "right": 3015, "bottom": 1990, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728368f.jpg"} -{"rects": [{"solidity": 0.9939545784384868, "top": 670, "right": 2750, "bottom": 3510, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728008f.jpg"} -{"rects": [{"solidity": 0.993954758662064, "top": 695, "right": 3330, "bottom": 2610, "left": 595}, {"solidity": 0.994458542140112, "top": 3255, "right": 3325, "bottom": 5160, "left": 590}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714029f.jpg"} -{"rects": [{"solidity": 0.9939548651836374, "top": 420, "right": 3245, "bottom": 2020, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733277f.jpg"} -{"rects": [{"solidity": 0.9939553406343337, "top": 540, "right": 3110, "bottom": 2115, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722104f.jpg"} -{"rects": [{"solidity": 0.9939556220590262, "top": 635, "right": 2535, "bottom": 2085, "left": 720}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725472f.jpg"} -{"rects": [{"solidity": 0.9939583653931566, "top": 130, "right": 4260, "bottom": 2890, "left": 600}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509939.jpg"} -{"rects": [{"solidity": 0.9939590094539297, "top": 425, "right": 2860, "bottom": 1950, "left": 940}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700090f.jpg"} -{"rects": [{"solidity": 0.9939622331522688, "top": 855, "right": 2400, "bottom": 3570, "left": 590}], "shape": {"h": 4400, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711028f.jpg"} -{"rects": [{"solidity": 0.9939624470018171, "top": 425, "right": 3290, "bottom": 2345, "left": 565}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717771f.jpg"} -{"rects": [{"solidity": 0.9939626115281122, "top": 555, "right": 3190, "bottom": 4000, "left": 565}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723451f.jpg"} -{"rects": [{"solidity": 0.993965225446707, "top": 935, "right": 3385, "bottom": 2350, "left": 1380}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508397.jpg"} -{"rects": [{"solidity": 0.9939654216733905, "top": 455, "right": 2925, "bottom": 1865, "left": 1065}, {"solidity": 0.9952001618491263, "top": 2205, "right": 2905, "bottom": 3595, "left": 1110}, {"solidity": 0.9950945538806222, "top": 3975, "right": 2870, "bottom": 5365, "left": 1090}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717109f.jpg"} -{"rects": [{"solidity": 0.9939663241136919, "top": 650, "right": 5180, "bottom": 3535, "left": 3310}, {"solidity": 0.9936167382233779, "top": 720, "right": 2660, "bottom": 3585, "left": 805}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702609f.jpg"} -{"rects": [{"solidity": 0.9939667891729485, "top": 735, "right": 3115, "bottom": 2555, "left": 520}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709987f.jpg"} -{"rects": [{"solidity": 0.9939674927981054, "top": 1340, "right": 3140, "bottom": 4880, "left": 710}], "shape": {"h": 6140, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/721304f.jpg"} -{"rects": [{"solidity": 0.9939680068305667, "top": 415, "right": 2930, "bottom": 1800, "left": 1110}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725366f.jpg"} -{"rects": [{"solidity": 0.9939686051411715, "top": 425, "right": 3195, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719404f.jpg"} -{"rects": [{"solidity": 0.9939687253661845, "top": 360, "right": 2345, "bottom": 1530, "left": 580}], "shape": {"h": 4595, "w": 2955}, "file": "/usr/local/google/home/danvk/milstein/707078f.jpg"} -{"rects": [{"solidity": 0.9939692927258998, "top": 305, "right": 5055, "bottom": 3710, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706080f.jpg"} -{"rects": [{"solidity": 0.993969362356125, "top": 2265, "right": 2930, "bottom": 3825, "left": 980}, {"solidity": 0.9921559895133101, "top": 435, "right": 2945, "bottom": 1980, "left": 1000}, {"solidity": 0.993711702303329, "top": 4115, "right": 2895, "bottom": 5615, "left": 990}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701082f.jpg"} -{"rects": [{"solidity": 0.9939694179471928, "top": 445, "right": 2110, "bottom": 1490, "left": 490}, {"solidity": 0.9923868188800867, "top": 1630, "right": 2105, "bottom": 2680, "left": 485}, {"solidity": 0.9756915661170981, "top": 905, "right": 3480, "bottom": 2505, "left": 2400}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509569.jpg"} -{"rects": [{"solidity": 0.9939696300369564, "top": 395, "right": 3105, "bottom": 2115, "left": 705}, {"solidity": 0.996142713173053, "top": 2375, "right": 3120, "bottom": 4005, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701061f.jpg"} -{"rects": [{"solidity": 0.9939697743494124, "top": 860, "right": 4835, "bottom": 3175, "left": 1245}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707785f.jpg"} -{"rects": [{"solidity": 0.9939704807360519, "top": 335, "right": 5245, "bottom": 3595, "left": 1175}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702224f.jpg"} -{"rects": [{"solidity": 0.9939719646240711, "top": 650, "right": 2620, "bottom": 2115, "left": 765}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704593f.jpg"} -{"rects": [{"solidity": 0.9939720739030328, "top": 820, "right": 2140, "bottom": 3220, "left": 535}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710950f.jpg"} -{"rects": [{"solidity": 0.9939721482336333, "top": 780, "right": 3260, "bottom": 2835, "left": 2060}, {"solidity": 0.9947474196239761, "top": 795, "right": 1820, "bottom": 2825, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713188f.jpg"} -{"rects": [{"solidity": 0.9939764014954471, "top": 2380, "right": 2930, "bottom": 3795, "left": 1080}, {"solidity": 0.992789325869994, "top": 535, "right": 2945, "bottom": 1965, "left": 1085}, {"solidity": 0.9936431272106354, "top": 4150, "right": 2920, "bottom": 5570, "left": 1065}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725777f.jpg"} -{"rects": [{"solidity": 0.9939766437221287, "top": 800, "right": 2150, "bottom": 3195, "left": 535}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711053f.jpg"} -{"rects": [{"solidity": 0.9939769131433416, "top": 2265, "right": 5140, "bottom": 3690, "left": 3335}, {"solidity": 0.9945845788966574, "top": 670, "right": 2955, "bottom": 2085, "left": 1145}, {"solidity": 0.9960515285445716, "top": 650, "right": 5135, "bottom": 2060, "left": 3330}, {"solidity": 0.9950180931798763, "top": 2380, "right": 2975, "bottom": 3505, "left": 1175}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727414f.jpg"} -{"rects": [{"solidity": 0.9939776446087807, "top": 445, "right": 2920, "bottom": 1980, "left": 985}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701887f.jpg"} -{"rects": [{"solidity": 0.9939789262418465, "top": 430, "right": 2360, "bottom": 1625, "left": 565}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716411f.jpg"} -{"rects": [{"solidity": 0.9939790533800958, "top": 850, "right": 3035, "bottom": 2355, "left": 945}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509269.jpg"} -{"rects": [{"solidity": 0.9939800511960456, "top": 730, "right": 2060, "bottom": 2030, "left": 405}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714610f.jpg"} -{"rects": [{"solidity": 0.9939801760151401, "top": 510, "right": 5000, "bottom": 3775, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705567f.jpg"} -{"rects": [{"solidity": 0.9939803350963421, "top": 680, "right": 2170, "bottom": 3410, "left": 310}, {"solidity": 0.996101645229144, "top": 1130, "right": 3800, "bottom": 2895, "left": 2405}, {"solidity": 0.9708403272307512, "top": 1110, "right": 5355, "bottom": 2935, "left": 4095}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733513f.jpg"} -{"rects": [{"solidity": 0.9939810268639966, "top": 420, "right": 3025, "bottom": 1895, "left": 1060}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700773f.jpg"} -{"rects": [{"solidity": 0.9939816833842128, "top": 310, "right": 1865, "bottom": 1205, "left": 725}], "shape": {"h": 3935, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727195f.jpg"} -{"rects": [{"solidity": 0.9939827915343756, "top": 2470, "right": 3550, "bottom": 4325, "left": 815}, {"solidity": 0.9957954692688181, "top": 400, "right": 3545, "bottom": 2230, "left": 820}], "shape": {"h": 6915, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/711249f.jpg"} -{"rects": [{"solidity": 0.993982983352435, "top": 665, "right": 2755, "bottom": 2085, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726726f.jpg"} -{"rects": [{"solidity": 0.9939833263422819, "top": 380, "right": 3155, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706325f.jpg"} -{"rects": [{"solidity": 0.9939844112265336, "top": 565, "right": 5220, "bottom": 3615, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730576f.jpg"} -{"rects": [{"solidity": 0.9939845144870446, "top": 1095, "right": 2885, "bottom": 5005, "left": 1055}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709052f.jpg"} -{"rects": [{"solidity": 0.9939846593949644, "top": 815, "right": 2040, "bottom": 3215, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714354f.jpg"} -{"rects": [{"solidity": 0.9939860678059754, "top": 640, "right": 2655, "bottom": 2065, "left": 845}, {"solidity": 0.99623245407206, "top": 2120, "right": 2645, "bottom": 3540, "left": 865}, {"solidity": 0.9984746550295978, "top": 625, "right": 5270, "bottom": 2030, "left": 3495}, {"solidity": 0.9970993698097043, "top": 2105, "right": 5285, "bottom": 3470, "left": 3495}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731348f.jpg"} -{"rects": [{"solidity": 0.9939864435367642, "top": 775, "right": 3950, "bottom": 3230, "left": 2285}, {"solidity": 0.9950322822298545, "top": 775, "right": 2075, "bottom": 3220, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707238f.jpg"} -{"rects": [{"solidity": 0.9939870170869343, "top": 495, "right": 2950, "bottom": 1915, "left": 1135}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725274f.jpg"} -{"rects": [{"solidity": 0.9939875255996574, "top": 4140, "right": 2805, "bottom": 5695, "left": 860}, {"solidity": 0.9926015163060367, "top": 445, "right": 2805, "bottom": 2010, "left": 890}, {"solidity": 0.9945953797974015, "top": 2290, "right": 2820, "bottom": 3855, "left": 910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711834f.jpg"} -{"rects": [{"solidity": 0.993987657002479, "top": 350, "right": 4065, "bottom": 2695, "left": 1185}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509991.jpg"} -{"rects": [{"solidity": 0.9939880316561504, "top": 665, "right": 2460, "bottom": 2190, "left": 345}], "shape": {"h": 4645, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509581.jpg"} -{"rects": [{"solidity": 0.9939880932954234, "top": 390, "right": 5225, "bottom": 3640, "left": 1185}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731316f.jpg"} -{"rects": [{"solidity": 0.9939893178440321, "top": 340, "right": 3420, "bottom": 2165, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725541f.jpg"} -{"rects": [{"solidity": 0.9939893327168546, "top": 840, "right": 2045, "bottom": 3250, "left": 450}, {"solidity": 0.9962040088318956, "top": 835, "right": 3855, "bottom": 3235, "left": 2260}, {"solidity": 0.9962719188062101, "top": 795, "right": 5330, "bottom": 1785, "left": 4050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701986f.jpg"} -{"rects": [{"solidity": 0.9939912813461503, "top": 1000, "right": 3545, "bottom": 4930, "left": 410}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727512f.jpg"} -{"rects": [{"solidity": 0.9939919216681707, "top": 2335, "right": 2885, "bottom": 3785, "left": 1055}, {"solidity": 0.9974019619835115, "top": 535, "right": 2865, "bottom": 1965, "left": 1065}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725547f.jpg"} -{"rects": [{"solidity": 0.9939927709616657, "top": 460, "right": 3055, "bottom": 1870, "left": 1285}], "shape": {"h": 6140, "w": 4065}, "file": "/usr/local/google/home/danvk/milstein/726963f.jpg"} -{"rects": [{"solidity": 0.9939941186907103, "top": 855, "right": 2070, "bottom": 2945, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718611f.jpg"} -{"rects": [{"solidity": 0.9939967424574779, "top": 385, "right": 3340, "bottom": 2255, "left": 660}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713797f.jpg"} -{"rects": [{"solidity": 0.9939970630021848, "top": 650, "right": 5180, "bottom": 3535, "left": 3310}, {"solidity": 0.9934299998548066, "top": 720, "right": 2660, "bottom": 3585, "left": 805}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702606f.jpg"} -{"rects": [{"solidity": 0.9939981732126546, "top": 415, "right": 3200, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/701519f.jpg"} -{"rects": [{"solidity": 0.9939986231255051, "top": 455, "right": 3095, "bottom": 1845, "left": 1270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725761f.jpg"} -{"rects": [{"solidity": 0.9939987474789315, "top": 540, "right": 2920, "bottom": 1945, "left": 1090}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726894f.jpg"} -{"rects": [{"solidity": 0.9939991533051924, "top": 495, "right": 3920, "bottom": 2580, "left": 2450}, {"solidity": 0.9977603391974834, "top": 510, "right": 2090, "bottom": 2550, "left": 640}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716078f.jpg"} -{"rects": [{"solidity": 0.9939995560781303, "top": 475, "right": 5180, "bottom": 3665, "left": 2535}, {"solidity": 0.9974954999789946, "top": 805, "right": 1975, "bottom": 3215, "left": 355}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719142f.jpg"} -{"rects": [{"solidity": 0.994000151394973, "top": 640, "right": 2065, "bottom": 3050, "left": 455}, {"solidity": 0.9980479333101772, "top": 690, "right": 3850, "bottom": 3000, "left": 2280}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705456f.jpg"} -{"rects": [{"solidity": 0.9940002838364906, "top": 760, "right": 2610, "bottom": 2195, "left": 810}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707455f.jpg"} -{"rects": [{"solidity": 0.994000452402081, "top": 2250, "right": 2605, "bottom": 3935, "left": 450}, {"solidity": 0.9814020424542662, "top": 245, "right": 2510, "bottom": 1975, "left": 385}, {"solidity": 0.9744035669683274, "top": 285, "right": 4940, "bottom": 1980, "left": 2815}, {"solidity": 0.99549674029386, "top": 2225, "right": 4910, "bottom": 3825, "left": 2875}], "shape": {"h": 4365, "w": 5280}, "file": "/usr/local/google/home/danvk/milstein/1596957.jpg"} -{"rects": [{"solidity": 0.994000767426022, "top": 545, "right": 4390, "bottom": 3155, "left": 970}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717311f.jpg"} -{"rects": [{"solidity": 0.9940016692701652, "top": 2280, "right": 3055, "bottom": 3895, "left": 635}, {"solidity": 0.9946397788258253, "top": 415, "right": 3050, "bottom": 2025, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728380f.jpg"} -{"rects": [{"solidity": 0.9940024427740677, "top": 460, "right": 2145, "bottom": 1720, "left": 485}, {"solidity": 0.9869119621586332, "top": 455, "right": 4065, "bottom": 1710, "left": 2415}, {"solidity": 0.9871739453021672, "top": 2140, "right": 2150, "bottom": 3350, "left": 515}, {"solidity": 0.988174221114182, "top": 2125, "right": 3895, "bottom": 3325, "left": 2600}, {"solidity": 0.9728171867916323, "top": 445, "right": 5615, "bottom": 1630, "left": 4430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732791f.jpg"} -{"rects": [{"solidity": 0.994002665482008, "top": 2255, "right": 5160, "bottom": 3670, "left": 3385}, {"solidity": 0.9969325153374233, "top": 810, "right": 5160, "bottom": 2210, "left": 3385}, {"solidity": 0.9969083769771854, "top": 805, "right": 2510, "bottom": 2140, "left": 720}, {"solidity": 0.994534537074233, "top": 2205, "right": 2510, "bottom": 3545, "left": 720}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725451f.jpg"} -{"rects": [{"solidity": 0.9940028218163725, "top": 4115, "right": 3120, "bottom": 5720, "left": 720}, {"solidity": 0.9960161979486539, "top": 2260, "right": 3125, "bottom": 3870, "left": 725}, {"solidity": 0.989397226056662, "top": 430, "right": 3125, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722845f.jpg"} -{"rects": [{"solidity": 0.9940050179111849, "top": 580, "right": 4885, "bottom": 3630, "left": 1005}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705994f.jpg"} -{"rects": [{"solidity": 0.994005155566213, "top": 1210, "right": 3760, "bottom": 5510, "left": 375}], "shape": {"h": 6910, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708820f.jpg"} -{"rects": [{"solidity": 0.994006187797348, "top": 900, "right": 2355, "bottom": 2890, "left": 425}, {"solidity": 0.9476879962634283, "top": 3530, "right": 4305, "bottom": 5525, "left": 2460}, {"solidity": 0.9455711072811445, "top": 3560, "right": 2215, "bottom": 5575, "left": 455}], "shape": {"h": 6005, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465689.jpg"} -{"rects": [{"solidity": 0.9940069428684302, "top": 2160, "right": 2860, "bottom": 3700, "left": 910}, {"solidity": 0.9900189354092153, "top": 3975, "right": 2875, "bottom": 5520, "left": 925}, {"solidity": 0.994259568493181, "top": 420, "right": 2835, "bottom": 1920, "left": 940}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731470f.jpg"} -{"rects": [{"solidity": 0.994008152841216, "top": 2290, "right": 2825, "bottom": 3720, "left": 1020}, {"solidity": 0.9942998943514901, "top": 665, "right": 2820, "bottom": 2090, "left": 1010}, {"solidity": 0.9965295750208275, "top": 660, "right": 4980, "bottom": 2085, "left": 3185}, {"solidity": 0.9956237404670645, "top": 2275, "right": 4990, "bottom": 3700, "left": 3195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727759f.jpg"} -{"rects": [{"solidity": 0.9940090264428074, "top": 390, "right": 3230, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700968f.jpg"} -{"rects": [{"solidity": 0.9940091029647943, "top": 815, "right": 2065, "bottom": 3205, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715171f.jpg"} -{"rects": [{"solidity": 0.9940108210602023, "top": 420, "right": 3185, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732135f.jpg"} -{"rects": [{"solidity": 0.994011415738748, "top": 1065, "right": 3260, "bottom": 2105, "left": 1825}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507819.jpg"} -{"rects": [{"solidity": 0.9940114379948625, "top": 990, "right": 2570, "bottom": 3665, "left": 780}], "shape": {"h": 4425, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/708332f.jpg"} -{"rects": [{"solidity": 0.9940116436240055, "top": 880, "right": 3185, "bottom": 2810, "left": 455}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714309f.jpg"} -{"rects": [{"solidity": 0.9940130643115024, "top": 660, "right": 4900, "bottom": 3585, "left": 1205}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719835f.jpg"} -{"rects": [{"solidity": 0.9940137792279132, "top": 430, "right": 3155, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709258f.jpg"} -{"rects": [{"solidity": 0.9940138397977326, "top": 1895, "right": 2910, "bottom": 3450, "left": 1005}, {"solidity": 0.9927120994067886, "top": 225, "right": 2950, "bottom": 1670, "left": 960}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/717473f.jpg"} -{"rects": [{"solidity": 0.9940143901465754, "top": 885, "right": 3480, "bottom": 2345, "left": 1360}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508911.jpg"} -{"rects": [{"solidity": 0.994014758787568, "top": 840, "right": 1895, "bottom": 2945, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700335f.jpg"} -{"rects": [{"solidity": 0.9940151473306972, "top": 2270, "right": 3060, "bottom": 3885, "left": 655}, {"solidity": 0.9962067090245196, "top": 405, "right": 3045, "bottom": 1980, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734704f.jpg"} -{"rects": [{"solidity": 0.9940174262300392, "top": 415, "right": 3070, "bottom": 2045, "left": 655}, {"solidity": 0.9969518768989513, "top": 2280, "right": 3070, "bottom": 3880, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719707f.jpg"} -{"rects": [{"solidity": 0.994018135924266, "top": 910, "right": 3475, "bottom": 2935, "left": 695}, {"solidity": 0.9886290824545987, "top": 3215, "right": 3505, "bottom": 5235, "left": 670}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713446f.jpg"} -{"rects": [{"solidity": 0.9940228992819716, "top": 775, "right": 4015, "bottom": 3195, "left": 2390}, {"solidity": 0.9953444944432197, "top": 800, "right": 2150, "bottom": 3210, "left": 525}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722083f.jpg"} -{"rects": [{"solidity": 0.9940229948669701, "top": 2065, "right": 4020, "bottom": 3010, "left": 3045}, {"solidity": 0.9934913004636917, "top": 895, "right": 1735, "bottom": 1850, "left": 795}, {"solidity": 0.9980312433126471, "top": 925, "right": 4025, "bottom": 1845, "left": 3060}, {"solidity": 0.9907066456251096, "top": 2065, "right": 5175, "bottom": 3015, "left": 4250}, {"solidity": 0.9967351784521777, "top": 2055, "right": 1710, "bottom": 2970, "left": 775}, {"solidity": 0.9928019951316399, "top": 2075, "right": 2835, "bottom": 3020, "left": 1915}, {"solidity": 0.9918000544645829, "top": 935, "right": 5155, "bottom": 1885, "left": 4255}, {"solidity": 0.9962213142453381, "top": 905, "right": 2835, "bottom": 1855, "left": 1960}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732961f.jpg"} -{"rects": [{"solidity": 0.9940233092793643, "top": 1075, "right": 2565, "bottom": 3995, "left": 240}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517149.jpg"} -{"rects": [{"solidity": 0.994025276185488, "top": 690, "right": 2710, "bottom": 2120, "left": 875}, {"solidity": 0.9965030324069347, "top": 2190, "right": 2685, "bottom": 3575, "left": 900}, {"solidity": 0.9962709311915092, "top": 2170, "right": 5200, "bottom": 3555, "left": 3420}, {"solidity": 0.9958846256602067, "top": 715, "right": 5195, "bottom": 2100, "left": 3420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705304f.jpg"} -{"rects": [{"solidity": 0.9940252890247269, "top": 610, "right": 2610, "bottom": 2005, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704166f.jpg"} -{"rects": [{"solidity": 0.9940255428973901, "top": 2255, "right": 4950, "bottom": 3675, "left": 3130}, {"solidity": 0.9959334639132207, "top": 635, "right": 2685, "bottom": 2035, "left": 875}, {"solidity": 0.9931969735509902, "top": 2270, "right": 2685, "bottom": 3670, "left": 870}, {"solidity": 0.9936758377884991, "top": 635, "right": 4935, "bottom": 2040, "left": 3130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727018f.jpg"} -{"rects": [{"solidity": 0.9940256536238096, "top": 595, "right": 2650, "bottom": 1965, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727368f.jpg"} -{"rects": [{"solidity": 0.9940261518582091, "top": 2265, "right": 3010, "bottom": 3695, "left": 1175}, {"solidity": 0.996929609182403, "top": 4145, "right": 2980, "bottom": 5550, "left": 1170}, {"solidity": 0.9949103851531714, "top": 460, "right": 3010, "bottom": 1835, "left": 1195}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727431f.jpg"} -{"rects": [{"solidity": 0.9940263026021487, "top": 400, "right": 3165, "bottom": 2120, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701117f.jpg"} -{"rects": [{"solidity": 0.9940271900085476, "top": 515, "right": 3620, "bottom": 2365, "left": 1005}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716387f.jpg"} -{"rects": [{"solidity": 0.9940283006620797, "top": 345, "right": 5105, "bottom": 3605, "left": 1080}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732229f.jpg"} -{"rects": [{"solidity": 0.9940291806958473, "top": 680, "right": 2735, "bottom": 2055, "left": 885}, {"solidity": 0.9949735090340986, "top": 2075, "right": 2715, "bottom": 3440, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702473f.jpg"} -{"rects": [{"solidity": 0.9940293456762747, "top": 1380, "right": 3330, "bottom": 4865, "left": 500}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717119f.jpg"} -{"rects": [{"solidity": 0.9940296271204107, "top": 355, "right": 3190, "bottom": 1980, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700137f.jpg"} -{"rects": [{"solidity": 0.9940337621220385, "top": 880, "right": 2275, "bottom": 3270, "left": 680}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708791f.jpg"} -{"rects": [{"solidity": 0.9940361872030729, "top": 740, "right": 2650, "bottom": 2195, "left": 835}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704079f.jpg"} -{"rects": [{"solidity": 0.9940365370257028, "top": 435, "right": 5270, "bottom": 3470, "left": 1395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733441f.jpg"} -{"rects": [{"solidity": 0.9940396339575758, "top": 2270, "right": 2985, "bottom": 3625, "left": 725}, {"solidity": 0.9913300154771504, "top": 490, "right": 2830, "bottom": 1990, "left": 1000}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709761f.jpg"} -{"rects": [{"solidity": 0.9940416060835897, "top": 455, "right": 3150, "bottom": 2070, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717542f.jpg"} -{"rects": [{"solidity": 0.9940419008277696, "top": 690, "right": 3380, "bottom": 2770, "left": 325}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715515f.jpg"} -{"rects": [{"solidity": 0.9940439616860818, "top": 1130, "right": 3475, "bottom": 5055, "left": 430}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721393f.jpg"} -{"rects": [{"solidity": 0.9940441723881215, "top": 770, "right": 1965, "bottom": 3170, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700419f.jpg"} -{"rects": [{"solidity": 0.994044390979816, "top": 470, "right": 3715, "bottom": 2710, "left": 860}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716371f.jpg"} -{"rects": [{"solidity": 0.9940449829613325, "top": 635, "right": 4905, "bottom": 3655, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709869f.jpg"} -{"rects": [{"solidity": 0.9940457234914272, "top": 735, "right": 3245, "bottom": 2560, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724227f.jpg"} -{"rects": [{"solidity": 0.9940462775917951, "top": 2455, "right": 2535, "bottom": 3950, "left": 450}, {"solidity": 0.9923503066046466, "top": 675, "right": 2545, "bottom": 2160, "left": 465}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716200f.jpg"} -{"rects": [{"solidity": 0.9940477163300461, "top": 875, "right": 5620, "bottom": 3290, "left": 3985}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723681f.jpg"} -{"rects": [{"solidity": 0.9940480886819993, "top": 510, "right": 2955, "bottom": 1925, "left": 1130}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728067f.jpg"} -{"rects": [{"solidity": 0.9940488918569497, "top": 415, "right": 3215, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717805f.jpg"} -{"rects": [{"solidity": 0.9940490085516733, "top": 2240, "right": 3140, "bottom": 3840, "left": 710}, {"solidity": 0.9959094273198248, "top": 410, "right": 3130, "bottom": 1985, "left": 725}, {"solidity": 0.9954807381461028, "top": 4100, "right": 3120, "bottom": 5695, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729064f.jpg"} -{"rects": [{"solidity": 0.9940491665944479, "top": 915, "right": 2785, "bottom": 2135, "left": 970}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508423.jpg"} -{"rects": [{"solidity": 0.9940494466131555, "top": 450, "right": 3050, "bottom": 1880, "left": 1210}, {"solidity": 0.9933288214251185, "top": 2275, "right": 3020, "bottom": 3660, "left": 1195}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/727906f.jpg"} -{"rects": [{"solidity": 0.9940494791666666, "top": 2250, "right": 2935, "bottom": 3750, "left": 980}, {"solidity": 0.9937523423204956, "top": 490, "right": 2895, "bottom": 1955, "left": 940}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718235f.jpg"} -{"rects": [{"solidity": 0.9940504684401286, "top": 690, "right": 2740, "bottom": 2125, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726393f.jpg"} -{"rects": [{"solidity": 0.9940505481959727, "top": 510, "right": 2965, "bottom": 1930, "left": 1150}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727894f.jpg"} -{"rects": [{"solidity": 0.994050891924373, "top": 490, "right": 5120, "bottom": 3710, "left": 1095}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709130f.jpg"} -{"rects": [{"solidity": 0.994052636159077, "top": 2540, "right": 3290, "bottom": 4490, "left": 670}, {"solidity": 0.9938269854080661, "top": 420, "right": 3255, "bottom": 2345, "left": 710}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731319f.jpg"} -{"rects": [{"solidity": 0.994053908570745, "top": 505, "right": 3005, "bottom": 1915, "left": 1190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727428f.jpg"} -{"rects": [{"solidity": 0.9940541148950539, "top": 655, "right": 2770, "bottom": 2080, "left": 940}, {"solidity": 0.9958499450946252, "top": 2090, "right": 2775, "bottom": 3475, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703067f.jpg"} -{"rects": [{"solidity": 0.9940546779653211, "top": 275, "right": 2795, "bottom": 3560, "left": 130}], "shape": {"h": 3690, "w": 2925}, "file": "/usr/local/google/home/danvk/milstein/1558061.jpg"} -{"rects": [{"solidity": 0.9940556901504393, "top": 2330, "right": 3170, "bottom": 3950, "left": 730}, {"solidity": 0.9957312107599758, "top": 490, "right": 3155, "bottom": 2085, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700410f.jpg"} -{"rects": [{"solidity": 0.9940559715683317, "top": 810, "right": 2040, "bottom": 3225, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713645f.jpg"} -{"rects": [{"solidity": 0.9940587572751056, "top": 440, "right": 2900, "bottom": 1935, "left": 1010}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700232f.jpg"} -{"rects": [{"solidity": 0.9940589208060269, "top": 545, "right": 5255, "bottom": 3635, "left": 835}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732256f.jpg"} -{"rects": [{"solidity": 0.9940606244077077, "top": 780, "right": 3875, "bottom": 3180, "left": 2265}, {"solidity": 0.996461815716813, "top": 795, "right": 2140, "bottom": 3195, "left": 550}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711006f.jpg"} -{"rects": [{"solidity": 0.9940623307567328, "top": 345, "right": 2980, "bottom": 1965, "left": 565}, {"solidity": 0.9941585754673303, "top": 2265, "right": 2965, "bottom": 3880, "left": 555}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709680f.jpg"} -{"rects": [{"solidity": 0.9940630919482735, "top": 480, "right": 2135, "bottom": 2555, "left": 645}, {"solidity": 0.9911984942100741, "top": 485, "right": 3930, "bottom": 2570, "left": 2450}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716209f.jpg"} -{"rects": [{"solidity": 0.9940636220472441, "top": 735, "right": 2365, "bottom": 3440, "left": 515}, {"solidity": 0.9961241104936119, "top": 1095, "right": 5640, "bottom": 3060, "left": 4075}, {"solidity": 0.9958510069206047, "top": 1100, "right": 3965, "bottom": 3060, "left": 2430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701364f.jpg"} -{"rects": [{"solidity": 0.9940637549732831, "top": 420, "right": 2005, "bottom": 2720, "left": 525}, {"solidity": 0.9964721829598906, "top": 655, "right": 3335, "bottom": 2465, "left": 2125}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715763f.jpg"} -{"rects": [{"solidity": 0.9940642202230335, "top": 525, "right": 3035, "bottom": 2025, "left": 1075}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720690f.jpg"} -{"rects": [{"solidity": 0.9940644034800759, "top": 2165, "right": 5100, "bottom": 3555, "left": 3275}, {"solidity": 0.9953791571137193, "top": 775, "right": 5130, "bottom": 2160, "left": 3305}, {"solidity": 0.9950245165015906, "top": 2125, "right": 2655, "bottom": 3500, "left": 840}, {"solidity": 0.9943133983771751, "top": 755, "right": 2685, "bottom": 2125, "left": 870}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731392f.jpg"} -{"rects": [{"solidity": 0.9940647921356845, "top": 380, "right": 3160, "bottom": 1990, "left": 760}, {"solidity": 0.9946948813041667, "top": 2230, "right": 3130, "bottom": 3845, "left": 730}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728171f.jpg"} -{"rects": [{"solidity": 0.9940650717432258, "top": 610, "right": 2715, "bottom": 3495, "left": 850}, {"solidity": 0.996001245354245, "top": 535, "right": 5170, "bottom": 1955, "left": 3330}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705882f.jpg"} -{"rects": [{"solidity": 0.9940652648896218, "top": 980, "right": 3550, "bottom": 5025, "left": 295}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709285f.jpg"} -{"rects": [{"solidity": 0.9940653004950806, "top": 705, "right": 2185, "bottom": 1950, "left": 550}, {"solidity": 0.9885145577824309, "top": 1955, "right": 2190, "bottom": 3195, "left": 545}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713413f.jpg"} -{"rects": [{"solidity": 0.994066124895467, "top": 1060, "right": 3505, "bottom": 5040, "left": 320}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722365f.jpg"} -{"rects": [{"solidity": 0.9940663176265271, "top": 470, "right": 2895, "bottom": 1985, "left": 970}, {"solidity": 0.9946463191220675, "top": 2270, "right": 2900, "bottom": 3760, "left": 965}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700067f.jpg"} -{"rects": [{"solidity": 0.994066906430926, "top": 1160, "right": 5405, "bottom": 2760, "left": 620}], "shape": {"h": 3865, "w": 6050}, "file": "/usr/local/google/home/danvk/milstein/734185f.jpg"} -{"rects": [{"solidity": 0.9940672773734627, "top": 650, "right": 2730, "bottom": 2060, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725235f.jpg"} -{"rects": [{"solidity": 0.9940676363024927, "top": 485, "right": 3005, "bottom": 1840, "left": 1230}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725646f.jpg"} -{"rects": [{"solidity": 0.994067852089093, "top": 635, "right": 2630, "bottom": 2040, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706854f.jpg"} -{"rects": [{"solidity": 0.9940679451670582, "top": 430, "right": 3285, "bottom": 2345, "left": 460}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727763f.jpg"} -{"rects": [{"solidity": 0.994068101172748, "top": 410, "right": 2930, "bottom": 2005, "left": 940}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700958f.jpg"} -{"rects": [{"solidity": 0.994068362487876, "top": 2085, "right": 2715, "bottom": 3515, "left": 885}, {"solidity": 0.9962894431211984, "top": 630, "right": 2700, "bottom": 2045, "left": 885}, {"solidity": 0.9950733339895659, "top": 2100, "right": 5225, "bottom": 3505, "left": 3400}, {"solidity": 0.9945765581322099, "top": 635, "right": 5230, "bottom": 2045, "left": 3405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718093f.jpg"} -{"rects": [{"solidity": 0.9940708599879348, "top": 1710, "right": 5375, "bottom": 3810, "left": 1570}, {"solidity": 0.9984348720344001, "top": 170, "right": 5500, "bottom": 1685, "left": 1445}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734451f.jpg"} -{"rects": [{"solidity": 0.9940713509541343, "top": 505, "right": 5020, "bottom": 3720, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701107f.jpg"} -{"rects": [{"solidity": 0.9940714847329964, "top": 450, "right": 5135, "bottom": 3630, "left": 1140}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732032f.jpg"} -{"rects": [{"solidity": 0.994072133583557, "top": 610, "right": 2655, "bottom": 3375, "left": 1230}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721192f.jpg"} -{"rects": [{"solidity": 0.9940721439622181, "top": 440, "right": 3145, "bottom": 2075, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734125f.jpg"} -{"rects": [{"solidity": 0.9940724264642654, "top": 935, "right": 2965, "bottom": 2175, "left": 1145}], "shape": {"h": 3015, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/1509653.jpg"} -{"rects": [{"solidity": 0.9940738287287795, "top": 410, "right": 3160, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734481f.jpg"} -{"rects": [{"solidity": 0.9940746996935076, "top": 810, "right": 4000, "bottom": 3215, "left": 2395}, {"solidity": 0.9929342265931818, "top": 810, "right": 2145, "bottom": 3205, "left": 545}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723622f.jpg"} -{"rects": [{"solidity": 0.9940747823315514, "top": 2000, "right": 5250, "bottom": 3430, "left": 3420}, {"solidity": 0.9974674311647791, "top": 665, "right": 2755, "bottom": 2030, "left": 930}, {"solidity": 0.9665815723072071, "top": 2040, "right": 2780, "bottom": 3450, "left": 930}, {"solidity": 0.9956748158800715, "top": 625, "right": 5165, "bottom": 1995, "left": 3470}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705458f.jpg"} -{"rects": [{"solidity": 0.9940750953307563, "top": 400, "right": 2915, "bottom": 1935, "left": 1025}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700361f.jpg"} -{"rects": [{"solidity": 0.9940756775231775, "top": 595, "right": 5260, "bottom": 1965, "left": 3310}, {"solidity": 0.9968719304873441, "top": 595, "right": 2700, "bottom": 1955, "left": 840}, {"solidity": 0.9971044552371369, "top": 2025, "right": 2700, "bottom": 3370, "left": 870}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731436f.jpg"} -{"rects": [{"solidity": 0.9940761798659266, "top": 990, "right": 2130, "bottom": 3045, "left": 520}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712122f.jpg"} -{"rects": [{"solidity": 0.9940763839692339, "top": 480, "right": 3375, "bottom": 2130, "left": 945}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702036f.jpg"} -{"rects": [{"solidity": 0.9940767800645813, "top": 415, "right": 3090, "bottom": 2020, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728437f.jpg"} -{"rects": [{"solidity": 0.9940771628396706, "top": 1465, "right": 3320, "bottom": 4920, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718853f.jpg"} -{"rects": [{"solidity": 0.9940772974633982, "top": 460, "right": 2965, "bottom": 1880, "left": 1135}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728058f.jpg"} -{"rects": [{"solidity": 0.9940781618614418, "top": 385, "right": 3130, "bottom": 2035, "left": 695}, {"solidity": 0.9938446923484842, "top": 2245, "right": 3115, "bottom": 3875, "left": 690}, {"solidity": 0.9954991536451964, "top": 4125, "right": 3090, "bottom": 5740, "left": 675}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732176f.jpg"} -{"rects": [{"solidity": 0.9940784119292403, "top": 255, "right": 5095, "bottom": 3610, "left": 1045}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724035f.jpg"} -{"rects": [{"solidity": 0.9940785710016479, "top": 1285, "right": 2240, "bottom": 2810, "left": 260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731256f.jpg"} -{"rects": [{"solidity": 0.9940789058594566, "top": 580, "right": 4940, "bottom": 2025, "left": 3125}, {"solidity": 0.9961045047155995, "top": 2210, "right": 2755, "bottom": 3650, "left": 950}, {"solidity": 0.9945959415814445, "top": 2240, "right": 4945, "bottom": 3670, "left": 3135}, {"solidity": 0.9964710075449156, "top": 595, "right": 2760, "bottom": 2005, "left": 980}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727401f.jpg"} -{"rects": [{"solidity": 0.9940791981453362, "top": 575, "right": 4865, "bottom": 3720, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724871f.jpg"} -{"rects": [{"solidity": 0.9940810119248781, "top": 2300, "right": 3015, "bottom": 3740, "left": 1185}, {"solidity": 0.9969273538664131, "top": 475, "right": 3010, "bottom": 1905, "left": 1200}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728258f.jpg"} -{"rects": [{"solidity": 0.9940815302765171, "top": 320, "right": 3265, "bottom": 2275, "left": 505}, {"solidity": 0.9988810361348158, "top": 2450, "right": 3080, "bottom": 4070, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705296f.jpg"} -{"rects": [{"solidity": 0.9940815780760512, "top": 675, "right": 1850, "bottom": 3105, "left": 220}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723511f.jpg"} -{"rects": [{"solidity": 0.9940829716631203, "top": 415, "right": 3020, "bottom": 1855, "left": 1050}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700407f.jpg"} -{"rects": [{"solidity": 0.9940833131694456, "top": 760, "right": 3265, "bottom": 5290, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713602f.jpg"} -{"rects": [{"solidity": 0.994083938699639, "top": 695, "right": 2665, "bottom": 2125, "left": 850}, {"solidity": 0.9979006612916931, "top": 2175, "right": 2655, "bottom": 3595, "left": 875}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731346f.jpg"} -{"rects": [{"solidity": 0.9940840822415903, "top": 925, "right": 3875, "bottom": 3355, "left": 2235}, {"solidity": 0.995633145270917, "top": 915, "right": 1940, "bottom": 3320, "left": 325}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710803f.jpg"} -{"rects": [{"solidity": 0.9940841302669802, "top": 365, "right": 2355, "bottom": 1565, "left": 560}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716430f.jpg"} -{"rects": [{"solidity": 0.99408439790992, "top": 2120, "right": 3070, "bottom": 3525, "left": 1245}, {"solidity": 0.9948788674691464, "top": 460, "right": 3065, "bottom": 1845, "left": 1270}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725945f.jpg"} -{"rects": [{"solidity": 0.9940854301165061, "top": 2140, "right": 2850, "bottom": 3395, "left": 1105}, {"solidity": 0.9900426307516346, "top": 545, "right": 2780, "bottom": 1790, "left": 1120}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705328f.jpg"} -{"rects": [{"solidity": 0.9940856720405146, "top": 340, "right": 2065, "bottom": 1535, "left": 560}, {"solidity": 0.9880014998125234, "top": 1610, "right": 3780, "bottom": 2755, "left": 2370}, {"solidity": 0.9862987615073846, "top": 1680, "right": 2080, "bottom": 2780, "left": 675}, {"solidity": 0.9851036605398302, "top": 435, "right": 3675, "bottom": 1495, "left": 2285}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516961.jpg"} -{"rects": [{"solidity": 0.9940864682581301, "top": 435, "right": 2585, "bottom": 3245, "left": 350}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509189.jpg"} -{"rects": [{"solidity": 0.9940866503288759, "top": 950, "right": 3260, "bottom": 4865, "left": 385}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715072f.jpg"} -{"rects": [{"solidity": 0.9940866766145164, "top": 435, "right": 3275, "bottom": 2050, "left": 870}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702122f.jpg"} -{"rects": [{"solidity": 0.9940869864529295, "top": 1540, "right": 1910, "bottom": 2430, "left": 750}, {"solidity": 0.991231320242065, "top": 355, "right": 1910, "bottom": 1250, "left": 755}], "shape": {"h": 3965, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727096f.jpg"} -{"rects": [{"solidity": 0.9940875978404071, "top": 2245, "right": 3230, "bottom": 3885, "left": 800}, {"solidity": 0.9957282316713622, "top": 405, "right": 3200, "bottom": 2005, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733932f.jpg"} -{"rects": [{"solidity": 0.994087603561366, "top": 625, "right": 4730, "bottom": 3525, "left": 1055}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721363f.jpg"} -{"rects": [{"solidity": 0.9940878242095853, "top": 740, "right": 2050, "bottom": 3160, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724376f.jpg"} -{"rects": [{"solidity": 0.9940884329191799, "top": 990, "right": 3025, "bottom": 2250, "left": 1195}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509749.jpg"} -{"rects": [{"solidity": 0.9940892676585296, "top": 505, "right": 2840, "bottom": 1785, "left": 1110}, {"solidity": 0.992951924148162, "top": 2115, "right": 2845, "bottom": 3360, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706210f.jpg"} -{"rects": [{"solidity": 0.9940896175364929, "top": 710, "right": 2920, "bottom": 3540, "left": 590}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702015f.jpg"} -{"rects": [{"solidity": 0.9940898268045272, "top": 405, "right": 3140, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719753f.jpg"} -{"rects": [{"solidity": 0.9940906398880497, "top": 130, "right": 6010, "bottom": 3865, "left": 850}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715068f.jpg"} -{"rects": [{"solidity": 0.9940929365170915, "top": 730, "right": 2610, "bottom": 2175, "left": 770}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704550f.jpg"} -{"rects": [{"solidity": 0.99409301350563, "top": 415, "right": 3160, "bottom": 3635, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732404f.jpg"} -{"rects": [{"solidity": 0.9940933934852927, "top": 2235, "right": 3175, "bottom": 3830, "left": 765}, {"solidity": 0.9954247586485645, "top": 4065, "right": 3165, "bottom": 5690, "left": 740}, {"solidity": 0.9986192037408239, "top": 400, "right": 3175, "bottom": 1975, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733690f.jpg"} -{"rects": [{"solidity": 0.9940934292729432, "top": 600, "right": 3280, "bottom": 2425, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709993f.jpg"} -{"rects": [{"solidity": 0.9940936482073223, "top": 485, "right": 3260, "bottom": 3955, "left": 640}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714728f.jpg"} -{"rects": [{"solidity": 0.9940944491130094, "top": 405, "right": 3175, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707570f.jpg"} -{"rects": [{"solidity": 0.9940948991992691, "top": 700, "right": 5560, "bottom": 4070, "left": 1385}], "shape": {"h": 4415, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708815f.jpg"} -{"rects": [{"solidity": 0.9940952270021225, "top": 405, "right": 3185, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722098f.jpg"} -{"rects": [{"solidity": 0.9940957746689567, "top": 275, "right": 5105, "bottom": 3650, "left": 1085}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720629f.jpg"} -{"rects": [{"solidity": 0.9940972053068317, "top": 1350, "right": 3795, "bottom": 2515, "left": 1010}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508481.jpg"} -{"rects": [{"solidity": 0.9940972660417838, "top": 1050, "right": 3385, "bottom": 2290, "left": 1560}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509601.jpg"} -{"rects": [{"solidity": 0.994097908705261, "top": 415, "right": 3140, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701594f.jpg"} -{"rects": [{"solidity": 0.994098276763564, "top": 1795, "right": 2915, "bottom": 2990, "left": 995}, {"solidity": 0.9937678754281275, "top": 420, "right": 2915, "bottom": 1570, "left": 1035}, {"solidity": 0.9938690128461588, "top": 3220, "right": 2895, "bottom": 4375, "left": 1015}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/719388f.jpg"} -{"rects": [{"solidity": 0.9940985330732101, "top": 400, "right": 1870, "bottom": 3110, "left": 420}, {"solidity": 0.9498636789639602, "top": 3215, "right": 3815, "bottom": 5600, "left": 2500}, {"solidity": 0.9483448112520041, "top": 3380, "right": 2085, "bottom": 5755, "left": 845}], "shape": {"h": 6010, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/465681.jpg"} -{"rects": [{"solidity": 0.9940989939637827, "top": 2270, "right": 3135, "bottom": 3890, "left": 715}, {"solidity": 0.996576480322091, "top": 4110, "right": 3145, "bottom": 5720, "left": 740}, {"solidity": 0.9941148062415693, "top": 420, "right": 3130, "bottom": 2000, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728412f.jpg"} -{"rects": [{"solidity": 0.9940992243762794, "top": 780, "right": 2505, "bottom": 2270, "left": 420}, {"solidity": 0.9932552302623511, "top": 2535, "right": 2490, "bottom": 4030, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716256f.jpg"} -{"rects": [{"solidity": 0.9940995266030941, "top": 580, "right": 2940, "bottom": 2410, "left": 1695}, {"solidity": 0.994779671426378, "top": 550, "right": 1520, "bottom": 2375, "left": 290}], "shape": {"h": 2955, "w": 4565}, "file": "/usr/local/google/home/danvk/milstein/707738f.jpg"} -{"rects": [{"solidity": 0.99409989541726, "top": 2325, "right": 3105, "bottom": 3985, "left": 660}, {"solidity": 0.9934042635459092, "top": 450, "right": 3110, "bottom": 2085, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710521f.jpg"} -{"rects": [{"solidity": 0.994100314517464, "top": 830, "right": 2050, "bottom": 3225, "left": 445}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721093f.jpg"} -{"rects": [{"solidity": 0.9941003383575415, "top": 895, "right": 6010, "bottom": 3180, "left": 3020}, {"solidity": 0.9963954872954045, "top": 925, "right": 3000, "bottom": 3115, "left": 1570}, {"solidity": 0.9935046597006495, "top": 930, "right": 1550, "bottom": 3090, "left": 140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709658f.jpg"} -{"rects": [{"solidity": 0.9941023510729552, "top": 300, "right": 3240, "bottom": 5865, "left": 1045}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730542f.jpg"} -{"rects": [{"solidity": 0.9941025397127367, "top": 800, "right": 2050, "bottom": 3220, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724172f.jpg"} -{"rects": [{"solidity": 0.9941027494737034, "top": 1050, "right": 2040, "bottom": 3060, "left": 655}, {"solidity": 0.9926658356792388, "top": 1040, "right": 3870, "bottom": 3025, "left": 2500}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708016f.jpg"} -{"rects": [{"solidity": 0.9941029745362414, "top": 380, "right": 3095, "bottom": 1800, "left": 1275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727388f.jpg"} -{"rects": [{"solidity": 0.9941029973699282, "top": 865, "right": 4920, "bottom": 3265, "left": 1230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723906f.jpg"} -{"rects": [{"solidity": 0.9941030135856256, "top": 410, "right": 3240, "bottom": 2035, "left": 815}, {"solidity": 0.9926460390318, "top": 2280, "right": 3195, "bottom": 3895, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722229f.jpg"} -{"rects": [{"solidity": 0.9941034438937604, "top": 500, "right": 3010, "bottom": 1900, "left": 1230}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726314f.jpg"} -{"rects": [{"solidity": 0.9941040965252831, "top": 795, "right": 3865, "bottom": 3225, "left": 2245}, {"solidity": 0.997325925203886, "top": 820, "right": 5765, "bottom": 3245, "left": 4165}, {"solidity": 0.993208886462137, "top": 795, "right": 1930, "bottom": 3175, "left": 355}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730126f.jpg"} -{"rects": [{"solidity": 0.9941054758142036, "top": 2275, "right": 3220, "bottom": 3885, "left": 805}, {"solidity": 0.9956096357806462, "top": 455, "right": 3210, "bottom": 2060, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712825f.jpg"} -{"rects": [{"solidity": 0.9941061723166561, "top": 910, "right": 2910, "bottom": 2750, "left": 760}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509119.jpg"} -{"rects": [{"solidity": 0.9941067153720397, "top": 130, "right": 4065, "bottom": 2830, "left": 260}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507634.jpg"} -{"rects": [{"solidity": 0.994106985402175, "top": 800, "right": 2735, "bottom": 2225, "left": 920}, {"solidity": 0.9918867620240917, "top": 2235, "right": 2760, "bottom": 3370, "left": 950}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727986f.jpg"} -{"rects": [{"solidity": 0.9941072775241525, "top": 530, "right": 3180, "bottom": 2480, "left": 450}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705721f.jpg"} -{"rects": [{"solidity": 0.9941089837997055, "top": 505, "right": 1320, "bottom": 2045, "left": 285}, {"solidity": 0.9947971527977273, "top": 505, "right": 2485, "bottom": 2040, "left": 1455}], "shape": {"h": 2565, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/732455f.jpg"} -{"rects": [{"solidity": 0.994109363054762, "top": 630, "right": 3265, "bottom": 2440, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710008f.jpg"} -{"rects": [{"solidity": 0.9941093801393416, "top": 2225, "right": 2960, "bottom": 3645, "left": 1140}, {"solidity": 0.9956792750394272, "top": 470, "right": 2950, "bottom": 1875, "left": 1150}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728085f.jpg"} -{"rects": [{"solidity": 0.9941105133032717, "top": 2275, "right": 3145, "bottom": 3865, "left": 755}, {"solidity": 0.9882707406797343, "top": 435, "right": 3145, "bottom": 2000, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726287f.jpg"} -{"rects": [{"solidity": 0.9941111322068223, "top": 450, "right": 3045, "bottom": 2440, "left": 1025}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711995f.jpg"} -{"rects": [{"solidity": 0.9941113330749277, "top": 660, "right": 2730, "bottom": 2075, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727348f.jpg"} -{"rects": [{"solidity": 0.9941123706437262, "top": 440, "right": 2345, "bottom": 1630, "left": 555}, {"solidity": 0.969305296085502, "top": 3225, "right": 2295, "bottom": 4265, "left": 535}, {"solidity": 0.9385090218423552, "top": 2045, "right": 2310, "bottom": 2975, "left": 605}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716417f.jpg"} -{"rects": [{"solidity": 0.9941134856273687, "top": 130, "right": 5150, "bottom": 3530, "left": 1050}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725341f.jpg"} -{"rects": [{"solidity": 0.9941137493979366, "top": 370, "right": 3350, "bottom": 2140, "left": 645}, {"solidity": 0.9979676372894938, "top": 4070, "right": 3195, "bottom": 5680, "left": 775}, {"solidity": 0.9967806821447183, "top": 2390, "right": 2905, "bottom": 3815, "left": 1085}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727882f.jpg"} -{"rects": [{"solidity": 0.9941140546031271, "top": 425, "right": 3180, "bottom": 2125, "left": 795}, {"solidity": 0.9935354479428316, "top": 2385, "right": 3215, "bottom": 3995, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700685f.jpg"} -{"rects": [{"solidity": 0.9941143959741305, "top": 385, "right": 3125, "bottom": 2040, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729074f.jpg"} -{"rects": [{"solidity": 0.9941150050857981, "top": 1005, "right": 2150, "bottom": 3400, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721378f.jpg"} -{"rects": [{"solidity": 0.9941154113314373, "top": 995, "right": 3495, "bottom": 2430, "left": 1460}], "shape": {"h": 2965, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507517.jpg"} -{"rects": [{"solidity": 0.9941164953991195, "top": 685, "right": 2675, "bottom": 2085, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706311f.jpg"} -{"rects": [{"solidity": 0.9941166214162951, "top": 735, "right": 2615, "bottom": 2145, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704734f.jpg"} -{"rects": [{"solidity": 0.9941168991782152, "top": 855, "right": 2840, "bottom": 2065, "left": 1030}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509623.jpg"} -{"rects": [{"solidity": 0.994119502889835, "top": 435, "right": 3125, "bottom": 2045, "left": 715}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700750f.jpg"} -{"rects": [{"solidity": 0.9941195592862202, "top": 1755, "right": 2360, "bottom": 2965, "left": 555}, {"solidity": 0.995929269601325, "top": 460, "right": 2365, "bottom": 1665, "left": 565}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715867f.jpg"} -{"rects": [{"solidity": 0.9941197273662551, "top": 405, "right": 3205, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701618f.jpg"} -{"rects": [{"solidity": 0.9941200169141077, "top": 795, "right": 2030, "bottom": 3185, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720152f.jpg"} -{"rects": [{"solidity": 0.9941209987385672, "top": 2275, "right": 3020, "bottom": 3870, "left": 605}, {"solidity": 0.9955218113546521, "top": 425, "right": 3000, "bottom": 2010, "left": 595}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729959f.jpg"} -{"rects": [{"solidity": 0.9941218618969269, "top": 460, "right": 3135, "bottom": 2055, "left": 735}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/729230f.jpg"} -{"rects": [{"solidity": 0.9941221585809631, "top": 2305, "right": 3195, "bottom": 3920, "left": 785}, {"solidity": 0.9928036481043837, "top": 465, "right": 3175, "bottom": 2070, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700357f.jpg"} -{"rects": [{"solidity": 0.9941222360514765, "top": 2090, "right": 2765, "bottom": 3380, "left": 1095}, {"solidity": 0.99187446396239, "top": 550, "right": 2740, "bottom": 1750, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704101f.jpg"} -{"rects": [{"solidity": 0.9941223109471453, "top": 485, "right": 3940, "bottom": 2585, "left": 2445}, {"solidity": 0.9955735274954391, "top": 475, "right": 2200, "bottom": 2560, "left": 715}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716168f.jpg"} -{"rects": [{"solidity": 0.9941226427840723, "top": 650, "right": 2750, "bottom": 2080, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704844f.jpg"} -{"rects": [{"solidity": 0.9941238203971208, "top": 500, "right": 3320, "bottom": 3910, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714250f.jpg"} -{"rects": [{"solidity": 0.9941250110895344, "top": 470, "right": 2895, "bottom": 1905, "left": 1095}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725238f.jpg"} -{"rects": [{"solidity": 0.9941265730683989, "top": 625, "right": 2670, "bottom": 2045, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705165f.jpg"} -{"rects": [{"solidity": 0.994128434411464, "top": 785, "right": 2020, "bottom": 3195, "left": 380}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711962f.jpg"} -{"rects": [{"solidity": 0.9941289326774664, "top": 605, "right": 5265, "bottom": 2030, "left": 3420}, {"solidity": 0.9979591228697414, "top": 615, "right": 2665, "bottom": 2010, "left": 845}, {"solidity": 0.995219211169843, "top": 2080, "right": 2665, "bottom": 3480, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705887f.jpg"} -{"rects": [{"solidity": 0.994130326007467, "top": 2190, "right": 2950, "bottom": 3635, "left": 685}, {"solidity": 0.9965283153234047, "top": 530, "right": 5490, "bottom": 1980, "left": 3245}, {"solidity": 0.9967667675435193, "top": 530, "right": 2875, "bottom": 1905, "left": 745}, {"solidity": 0.9971344693063485, "top": 2265, "right": 5395, "bottom": 3640, "left": 3305}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710751f.jpg"} -{"rects": [{"solidity": 0.9941312052668334, "top": 770, "right": 2045, "bottom": 3180, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716830f.jpg"} -{"rects": [{"solidity": 0.9941323664971096, "top": 305, "right": 5060, "bottom": 3665, "left": 1030}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719131f.jpg"} -{"rects": [{"solidity": 0.9941334205362983, "top": 2240, "right": 3150, "bottom": 3855, "left": 745}, {"solidity": 0.9949331438197515, "top": 420, "right": 3155, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720733f.jpg"} -{"rects": [{"solidity": 0.9941334673129212, "top": 2275, "right": 2945, "bottom": 3695, "left": 1115}, {"solidity": 0.9955156286268835, "top": 4085, "right": 2935, "bottom": 5490, "left": 1115}, {"solidity": 0.9701388923822987, "top": 435, "right": 2945, "bottom": 1865, "left": 1080}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725630f.jpg"} -{"rects": [{"solidity": 0.9941340556139847, "top": 475, "right": 4890, "bottom": 3485, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712862f.jpg"} -{"rects": [{"solidity": 0.9941373610634535, "top": 1010, "right": 3415, "bottom": 5005, "left": 285}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714365f.jpg"} -{"rects": [{"solidity": 0.9941379925473718, "top": 700, "right": 2690, "bottom": 2100, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727257f.jpg"} -{"rects": [{"solidity": 0.9941383664517844, "top": 910, "right": 1925, "bottom": 2885, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706880f.jpg"} -{"rects": [{"solidity": 0.9941408750283109, "top": 735, "right": 2740, "bottom": 2165, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728184f.jpg"} -{"rects": [{"solidity": 0.9941427258326325, "top": 335, "right": 3205, "bottom": 1970, "left": 780}, {"solidity": 0.9939864368003922, "top": 2200, "right": 3185, "bottom": 3835, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719387f.jpg"} -{"rects": [{"solidity": 0.994143038589705, "top": 480, "right": 3020, "bottom": 3675, "left": 495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714549f.jpg"} -{"rects": [{"solidity": 0.9941442886425298, "top": 610, "right": 3300, "bottom": 2415, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710020f.jpg"} -{"rects": [{"solidity": 0.9941445687465139, "top": 635, "right": 3350, "bottom": 2550, "left": 625}, {"solidity": 0.9974351293204826, "top": 3175, "right": 3325, "bottom": 5075, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715368f.jpg"} -{"rects": [{"solidity": 0.9941469001543736, "top": 610, "right": 4870, "bottom": 3640, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709931f.jpg"} -{"rects": [{"solidity": 0.9941471544367336, "top": 820, "right": 2085, "bottom": 3210, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712649f.jpg"} -{"rects": [{"solidity": 0.9941478515097167, "top": 2250, "right": 2925, "bottom": 3680, "left": 1110}, {"solidity": 0.9961538269919639, "top": 640, "right": 5110, "bottom": 2045, "left": 3305}, {"solidity": 0.9936352362881176, "top": 2215, "right": 5100, "bottom": 3630, "left": 3295}, {"solidity": 0.9943815655285896, "top": 725, "right": 2915, "bottom": 1845, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725312f.jpg"} -{"rects": [{"solidity": 0.9941478577887436, "top": 525, "right": 4910, "bottom": 3545, "left": 1135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713422f.jpg"} -{"rects": [{"solidity": 0.9941478960244148, "top": 470, "right": 2455, "bottom": 3540, "left": 430}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508741.jpg"} -{"rects": [{"solidity": 0.9941480038948394, "top": 450, "right": 3150, "bottom": 2085, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717804f.jpg"} -{"rects": [{"solidity": 0.9941485477851696, "top": 2190, "right": 5055, "bottom": 3565, "left": 3230}, {"solidity": 0.9969480403875989, "top": 580, "right": 5030, "bottom": 1950, "left": 3220}, {"solidity": 0.9957334594447329, "top": 565, "right": 2810, "bottom": 1940, "left": 1015}, {"solidity": 0.9948301863405363, "top": 2165, "right": 2825, "bottom": 3530, "left": 1015}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727491f.jpg"} -{"rects": [{"solidity": 0.9941488633365506, "top": 855, "right": 2325, "bottom": 3245, "left": 735}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708479f.jpg"} -{"rects": [{"solidity": 0.9941490556747946, "top": 505, "right": 3065, "bottom": 1950, "left": 1220}, {"solidity": 0.9957767854112421, "top": 2320, "right": 3055, "bottom": 3755, "left": 1240}, {"solidity": 0.9944027095414849, "top": 4095, "right": 3025, "bottom": 5520, "left": 1215}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726505f.jpg"} -{"rects": [{"solidity": 0.9941496011691994, "top": 370, "right": 2920, "bottom": 1845, "left": 950}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720400f.jpg"} -{"rects": [{"solidity": 0.9941502777698291, "top": 2490, "right": 2435, "bottom": 3975, "left": 340}, {"solidity": 0.9967277514615056, "top": 700, "right": 2425, "bottom": 2165, "left": 390}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716091f.jpg"} -{"rects": [{"solidity": 0.9941503259683925, "top": 600, "right": 2620, "bottom": 1995, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706029f.jpg"} -{"rects": [{"solidity": 0.9941506085864223, "top": 450, "right": 5090, "bottom": 3735, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715622f.jpg"} -{"rects": [{"solidity": 0.9941508956441045, "top": 1000, "right": 2330, "bottom": 3930, "left": 335}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507945.jpg"} -{"rects": [{"solidity": 0.9941510682137387, "top": 570, "right": 4955, "bottom": 3580, "left": 1200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717507f.jpg"} -{"rects": [{"solidity": 0.9941514737357848, "top": 645, "right": 2630, "bottom": 2035, "left": 850}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728115f.jpg"} -{"rects": [{"solidity": 0.994152176648679, "top": 940, "right": 3250, "bottom": 2015, "left": 1625}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509565.jpg"} -{"rects": [{"solidity": 0.9941536820747601, "top": 765, "right": 1965, "bottom": 3185, "left": 345}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719416f.jpg"} -{"rects": [{"solidity": 0.9941536912181118, "top": 2335, "right": 2985, "bottom": 3785, "left": 1630}], "shape": {"h": 5980, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465618.jpg"} -{"rects": [{"solidity": 0.9941545114925371, "top": 660, "right": 4995, "bottom": 3470, "left": 1110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705928f.jpg"} -{"rects": [{"solidity": 0.9941553019760646, "top": 740, "right": 3800, "bottom": 3130, "left": 2205}, {"solidity": 0.9963742572263068, "top": 755, "right": 5605, "bottom": 3130, "left": 4025}, {"solidity": 0.9950089078533926, "top": 745, "right": 1970, "bottom": 3130, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724548f.jpg"} -{"rects": [{"solidity": 0.9941560344776021, "top": 635, "right": 1545, "bottom": 2415, "left": 355}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715912f.jpg"} -{"rects": [{"solidity": 0.9941571208059143, "top": 2295, "right": 3195, "bottom": 3910, "left": 785}, {"solidity": 0.9957694324395622, "top": 440, "right": 3205, "bottom": 2045, "left": 790}, {"solidity": 0.9925071260218293, "top": 4150, "right": 3205, "bottom": 5760, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702161f.jpg"} -{"rects": [{"solidity": 0.9941574159085218, "top": 715, "right": 2670, "bottom": 2140, "left": 850}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727350f.jpg"} -{"rects": [{"solidity": 0.9941583805927865, "top": 290, "right": 3370, "bottom": 2135, "left": 640}, {"solidity": 0.9972123322508706, "top": 2345, "right": 3200, "bottom": 3970, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709643f.jpg"} -{"rects": [{"solidity": 0.9941594391478372, "top": 1150, "right": 3260, "bottom": 5000, "left": 600}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716847f.jpg"} -{"rects": [{"solidity": 0.9941598203316954, "top": 1005, "right": 1925, "bottom": 2855, "left": 485}, {"solidity": 0.9948287098693718, "top": 900, "right": 3065, "bottom": 1830, "left": 2090}, {"solidity": 0.9921482412060302, "top": 1985, "right": 4125, "bottom": 2940, "left": 3225}, {"solidity": 0.9940055727087883, "top": 2010, "right": 5260, "bottom": 2935, "left": 4340}, {"solidity": 0.9912948527404531, "top": 2000, "right": 3020, "bottom": 2900, "left": 2050}, {"solidity": 0.9951883545999939, "top": 925, "right": 4145, "bottom": 1880, "left": 3265}, {"solidity": 0.9922648040927611, "top": 945, "right": 5255, "bottom": 1890, "left": 4365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732960f.jpg"} -{"rects": [{"solidity": 0.99416068275944, "top": 490, "right": 3675, "bottom": 3140, "left": 215}, {"solidity": 0.9967954796461361, "top": 3220, "right": 3675, "bottom": 5855, "left": 235}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/717242f.jpg"} -{"rects": [{"solidity": 0.9941612407751225, "top": 790, "right": 5005, "bottom": 3350, "left": 1195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709935f.jpg"} -{"rects": [{"solidity": 0.9941615479115479, "top": 400, "right": 3210, "bottom": 2140, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701581f.jpg"} -{"rects": [{"solidity": 0.9941627449966386, "top": 2255, "right": 3205, "bottom": 3875, "left": 775}, {"solidity": 0.9960408106073689, "top": 425, "right": 3215, "bottom": 2030, "left": 805}, {"solidity": 0.9958557191076315, "top": 4095, "right": 3175, "bottom": 5685, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734009f.jpg"} -{"rects": [{"solidity": 0.9941630321741072, "top": 1215, "right": 3395, "bottom": 2925, "left": 2015}, {"solidity": 0.994463535700649, "top": 1220, "right": 1815, "bottom": 2930, "left": 450}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714322f.jpg"} -{"rects": [{"solidity": 0.9941630608882498, "top": 775, "right": 3895, "bottom": 3170, "left": 2285}, {"solidity": 0.9945670426931663, "top": 785, "right": 2045, "bottom": 3190, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709607f.jpg"} -{"rects": [{"solidity": 0.9941644273007625, "top": 845, "right": 2735, "bottom": 2260, "left": 930}, {"solidity": 0.9960582306830907, "top": 820, "right": 5145, "bottom": 2230, "left": 3345}, {"solidity": 0.9960822784019195, "top": 2295, "right": 2735, "bottom": 3405, "left": 915}, {"solidity": 0.9937701054240851, "top": 2290, "right": 5130, "bottom": 3405, "left": 3345}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727985f.jpg"} -{"rects": [{"solidity": 0.9941650645890249, "top": 650, "right": 3110, "bottom": 2240, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710414f.jpg"} -{"rects": [{"solidity": 0.9941651211436023, "top": 2200, "right": 5180, "bottom": 3700, "left": 3190}, {"solidity": 0.9957217413715341, "top": 2220, "right": 2880, "bottom": 3700, "left": 900}, {"solidity": 0.9908572832443483, "top": 575, "right": 5165, "bottom": 2055, "left": 3210}, {"solidity": 0.9667798711625024, "top": 595, "right": 2885, "bottom": 2050, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715330f.jpg"} -{"rects": [{"solidity": 0.9941653176307179, "top": 655, "right": 2745, "bottom": 2070, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706541f.jpg"} -{"rects": [{"solidity": 0.9941660529818327, "top": 745, "right": 2065, "bottom": 3120, "left": 495}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708976f.jpg"} -{"rects": [{"solidity": 0.9941664913161005, "top": 790, "right": 2045, "bottom": 3220, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719755f.jpg"} -{"rects": [{"solidity": 0.9941674288182588, "top": 545, "right": 5270, "bottom": 3405, "left": 3435}, {"solidity": 0.9933819970564703, "top": 605, "right": 2825, "bottom": 3430, "left": 970}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707190f.jpg"} -{"rects": [{"solidity": 0.9941689622000348, "top": 2225, "right": 3040, "bottom": 3845, "left": 635}, {"solidity": 0.9971868942366792, "top": 4125, "right": 3015, "bottom": 5700, "left": 640}, {"solidity": 0.9946579325924476, "top": 395, "right": 3020, "bottom": 1995, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720883f.jpg"} -{"rects": [{"solidity": 0.9941690157938579, "top": 965, "right": 3365, "bottom": 2185, "left": 1475}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507711.jpg"} -{"rects": [{"solidity": 0.9941692704031604, "top": 410, "right": 3125, "bottom": 2035, "left": 890}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722687f.jpg"} -{"rects": [{"solidity": 0.9941693808184165, "top": 820, "right": 3425, "bottom": 2880, "left": 630}, {"solidity": 0.9988353984079211, "top": 3265, "right": 3440, "bottom": 5255, "left": 675}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/733572f.jpg"} -{"rects": [{"solidity": 0.9941694081146861, "top": 575, "right": 3250, "bottom": 2395, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710016f.jpg"} -{"rects": [{"solidity": 0.9941702485055086, "top": 830, "right": 2170, "bottom": 3220, "left": 570}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721366f.jpg"} -{"rects": [{"solidity": 0.9941726911284886, "top": 275, "right": 4980, "bottom": 3680, "left": 955}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711042f.jpg"} -{"rects": [{"solidity": 0.9941730210377289, "top": 475, "right": 2900, "bottom": 1880, "left": 1080}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/728181f.jpg"} -{"rects": [{"solidity": 0.994173318185586, "top": 740, "right": 2860, "bottom": 2140, "left": 1005}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726277f.jpg"} -{"rects": [{"solidity": 0.9941736904785403, "top": 455, "right": 3160, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700353f.jpg"} -{"rects": [{"solidity": 0.994174772181413, "top": 595, "right": 4910, "bottom": 3625, "left": 1110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709809f.jpg"} -{"rects": [{"solidity": 0.9941749692374866, "top": 530, "right": 2905, "bottom": 1925, "left": 1080}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727622f.jpg"} -{"rects": [{"solidity": 0.9941750457662778, "top": 750, "right": 2650, "bottom": 3785, "left": 220}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508329.jpg"} -{"rects": [{"solidity": 0.9941750972394409, "top": 945, "right": 3340, "bottom": 2285, "left": 1320}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509121.jpg"} -{"rects": [{"solidity": 0.9941755030799823, "top": 625, "right": 3020, "bottom": 2045, "left": 1180}, {"solidity": 0.9946670976082741, "top": 2215, "right": 5210, "bottom": 3645, "left": 3395}, {"solidity": 0.997456146825104, "top": 625, "right": 5185, "bottom": 2050, "left": 3390}, {"solidity": 0.9955276972807022, "top": 2240, "right": 3020, "bottom": 3665, "left": 1220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725889f.jpg"} -{"rects": [{"solidity": 0.9941758153698212, "top": 840, "right": 1995, "bottom": 3270, "left": 355}, {"solidity": 0.996947069575701, "top": 850, "right": 3845, "bottom": 3265, "left": 2235}, {"solidity": 0.9955901603224594, "top": 855, "right": 5725, "bottom": 3270, "left": 4115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729133f.jpg"} -{"rects": [{"solidity": 0.9941764699631247, "top": 720, "right": 3255, "bottom": 2545, "left": 655}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714098f.jpg"} -{"rects": [{"solidity": 0.9941765001300047, "top": 360, "right": 3045, "bottom": 2030, "left": 930}, {"solidity": 0.9931357532148327, "top": 2280, "right": 3050, "bottom": 3950, "left": 930}, {"solidity": 0.9806357092808459, "top": 4185, "right": 2925, "bottom": 5680, "left": 1065}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709069f.jpg"} -{"rects": [{"solidity": 0.9941772655656208, "top": 445, "right": 3200, "bottom": 2070, "left": 790}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/702145f.jpg"} -{"rects": [{"solidity": 0.9941773538020932, "top": 850, "right": 2230, "bottom": 3405, "left": 340}, {"solidity": 0.996269489371198, "top": 1050, "right": 5685, "bottom": 3040, "left": 4370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702090f.jpg"} -{"rects": [{"solidity": 0.9941789684800807, "top": 355, "right": 3220, "bottom": 2190, "left": 480}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704733f.jpg"} -{"rects": [{"solidity": 0.9941793231053889, "top": 2275, "right": 3000, "bottom": 3725, "left": 1180}, {"solidity": 0.99441183445986, "top": 520, "right": 3020, "bottom": 1930, "left": 1190}, {"solidity": 0.9937069238691277, "top": 4135, "right": 2965, "bottom": 5545, "left": 1120}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726882f.jpg"} -{"rects": [{"solidity": 0.9941793515086662, "top": 865, "right": 3555, "bottom": 3170, "left": 2065}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712185f.jpg"} -{"rects": [{"solidity": 0.9941806499396423, "top": 585, "right": 5245, "bottom": 2035, "left": 3405}, {"solidity": 0.9961828925943285, "top": 2040, "right": 2740, "bottom": 3470, "left": 915}, {"solidity": 0.9952943089596155, "top": 635, "right": 2705, "bottom": 2025, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706779f.jpg"} -{"rects": [{"solidity": 0.9941810039279787, "top": 450, "right": 3245, "bottom": 2810, "left": 655}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714559f.jpg"} -{"rects": [{"solidity": 0.9941818828375422, "top": 2130, "right": 5060, "bottom": 3550, "left": 3255}, {"solidity": 0.9940858054368913, "top": 490, "right": 5060, "bottom": 1900, "left": 3245}, {"solidity": 0.993534310990675, "top": 2120, "right": 2890, "bottom": 3540, "left": 1100}, {"solidity": 0.9961859284026932, "top": 520, "right": 2875, "bottom": 1925, "left": 1090}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727934f.jpg"} -{"rects": [{"solidity": 0.9941833607682649, "top": 425, "right": 3065, "bottom": 2035, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700746f.jpg"} -{"rects": [{"solidity": 0.9941839072565017, "top": 380, "right": 3340, "bottom": 2275, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709357f.jpg"} -{"rects": [{"solidity": 0.994185346384765, "top": 2110, "right": 3120, "bottom": 3545, "left": 1075}, {"solidity": 0.9932613271201268, "top": 465, "right": 3095, "bottom": 1900, "left": 1065}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700825f.jpg"} -{"rects": [{"solidity": 0.9941873846168914, "top": 620, "right": 2705, "bottom": 2035, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705611f.jpg"} -{"rects": [{"solidity": 0.9941875861507018, "top": 460, "right": 3280, "bottom": 2410, "left": 420}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726449f.jpg"} -{"rects": [{"solidity": 0.9941882094687764, "top": 320, "right": 5085, "bottom": 3685, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713966f.jpg"} -{"rects": [{"solidity": 0.9941887050188983, "top": 375, "right": 2410, "bottom": 1585, "left": 605}], "shape": {"h": 4645, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715806f.jpg"} -{"rects": [{"solidity": 0.9941889060643612, "top": 650, "right": 4915, "bottom": 3095, "left": 1665}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701123f.jpg"} -{"rects": [{"solidity": 0.9941894951499973, "top": 500, "right": 5030, "bottom": 3710, "left": 980}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720143f.jpg"} -{"rects": [{"solidity": 0.9941904976356677, "top": 735, "right": 2730, "bottom": 2120, "left": 900}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726567f.jpg"} -{"rects": [{"solidity": 0.9941910930092809, "top": 435, "right": 2985, "bottom": 1795, "left": 1150}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701278f.jpg"} -{"rects": [{"solidity": 0.9941912326905106, "top": 830, "right": 1780, "bottom": 2845, "left": 590}, {"solidity": 0.9924457510849783, "top": 850, "right": 3200, "bottom": 2805, "left": 2045}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717575f.jpg"} -{"rects": [{"solidity": 0.9941921673217293, "top": 2110, "right": 2930, "bottom": 3665, "left": 1070}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720393f.jpg"} -{"rects": [{"solidity": 0.9941922468641765, "top": 905, "right": 3820, "bottom": 3315, "left": 2230}, {"solidity": 0.9958455131542066, "top": 885, "right": 1985, "bottom": 3290, "left": 400}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724564f.jpg"} -{"rects": [{"solidity": 0.9941925552756787, "top": 660, "right": 2725, "bottom": 2075, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725493f.jpg"} -{"rects": [{"solidity": 0.9941925710994005, "top": 580, "right": 4915, "bottom": 3645, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718771f.jpg"} -{"rects": [{"solidity": 0.9941942268102312, "top": 665, "right": 2675, "bottom": 2080, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707472f.jpg"} -{"rects": [{"solidity": 0.9941951240356708, "top": 500, "right": 5010, "bottom": 3510, "left": 1200}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700192f.jpg"} -{"rects": [{"solidity": 0.9941961751843018, "top": 810, "right": 2055, "bottom": 3230, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714634f.jpg"} -{"rects": [{"solidity": 0.9941979673217719, "top": 460, "right": 3390, "bottom": 2365, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724595f.jpg"} -{"rects": [{"solidity": 0.9941983770824369, "top": 505, "right": 5070, "bottom": 3520, "left": 1265}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700191f.jpg"} -{"rects": [{"solidity": 0.9942000394555139, "top": 1105, "right": 2810, "bottom": 2590, "left": 860}, {"solidity": 0.9852690055159342, "top": 1105, "right": 5270, "bottom": 2575, "left": 3295}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731183f.jpg"} -{"rects": [{"solidity": 0.9942003791115432, "top": 4080, "right": 2940, "bottom": 5495, "left": 1095}, {"solidity": 0.9968334075503439, "top": 475, "right": 2965, "bottom": 1875, "left": 1140}, {"solidity": 0.9957583382545511, "top": 2295, "right": 2965, "bottom": 3655, "left": 1150}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726372f.jpg"} -{"rects": [{"solidity": 0.9942006970938722, "top": 365, "right": 2420, "bottom": 1570, "left": 625}], "shape": {"h": 4655, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/725111f.jpg"} -{"rects": [{"solidity": 0.9942010776330732, "top": 2400, "right": 2910, "bottom": 3830, "left": 1060}, {"solidity": 0.9947132111411301, "top": 4195, "right": 2870, "bottom": 5610, "left": 1020}, {"solidity": 0.9952476176972459, "top": 520, "right": 2910, "bottom": 1945, "left": 1100}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725743f.jpg"} -{"rects": [{"solidity": 0.9942013147403694, "top": 1785, "right": 2990, "bottom": 2975, "left": 1055}, {"solidity": 0.9968292806114718, "top": 370, "right": 2985, "bottom": 1550, "left": 1070}, {"solidity": 0.9970842001159499, "top": 3230, "right": 2970, "bottom": 4370, "left": 1020}, {"solidity": 0.9968244061823122, "top": 4615, "right": 2960, "bottom": 5705, "left": 1060}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701819f.jpg"} -{"rects": [{"solidity": 0.9942013753205863, "top": 1895, "right": 2985, "bottom": 3420, "left": 1120}, {"solidity": 0.9940860658366086, "top": 280, "right": 2930, "bottom": 1780, "left": 1070}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723215f.jpg"} -{"rects": [{"solidity": 0.9942016781649587, "top": 415, "right": 3160, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700885f.jpg"} -{"rects": [{"solidity": 0.9942021382137608, "top": 395, "right": 3130, "bottom": 1990, "left": 755}, {"solidity": 0.9922658244859562, "top": 4125, "right": 3085, "bottom": 5715, "left": 710}, {"solidity": 0.99533205167122, "top": 2260, "right": 3100, "bottom": 3860, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731358f.jpg"} -{"rects": [{"solidity": 0.9942028697944053, "top": 785, "right": 1995, "bottom": 3175, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714593f.jpg"} -{"rects": [{"solidity": 0.9942034581248113, "top": 2360, "right": 3030, "bottom": 3780, "left": 1225}, {"solidity": 0.9931116638172947, "top": 520, "right": 3050, "bottom": 1950, "left": 1245}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726873f.jpg"} -{"rects": [{"solidity": 0.9942036480033515, "top": 420, "right": 3240, "bottom": 2040, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712110f.jpg"} -{"rects": [{"solidity": 0.9942043749267633, "top": 300, "right": 5085, "bottom": 3650, "left": 1085}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721720f.jpg"} -{"rects": [{"solidity": 0.9942046501490941, "top": 480, "right": 3020, "bottom": 1895, "left": 1210}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727557f.jpg"} -{"rects": [{"solidity": 0.9942058667582725, "top": 1015, "right": 3550, "bottom": 5050, "left": 200}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700009f.jpg"} -{"rects": [{"solidity": 0.9942068452255102, "top": 440, "right": 3050, "bottom": 2005, "left": 1135}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724118f.jpg"} -{"rects": [{"solidity": 0.9942071802306591, "top": 595, "right": 5125, "bottom": 3680, "left": 1200}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/720125f.jpg"} -{"rects": [{"solidity": 0.9942075905063983, "top": 915, "right": 3340, "bottom": 2355, "left": 1310}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509173.jpg"} -{"rects": [{"solidity": 0.994208201975793, "top": 780, "right": 2295, "bottom": 3175, "left": 695}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707863f.jpg"} -{"rects": [{"solidity": 0.9942082378144904, "top": 205, "right": 2390, "bottom": 1425, "left": 580}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/706206f.jpg"} -{"rects": [{"solidity": 0.9942093024753783, "top": 405, "right": 3215, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700376f.jpg"} -{"rects": [{"solidity": 0.9942094265607444, "top": 2195, "right": 3115, "bottom": 3605, "left": 1295}, {"solidity": 0.993974111370524, "top": 470, "right": 3120, "bottom": 1865, "left": 1320}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725328f.jpg"} -{"rects": [{"solidity": 0.9942096120440069, "top": 725, "right": 2135, "bottom": 3150, "left": 510}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719336f.jpg"} -{"rects": [{"solidity": 0.9942103616719205, "top": 2325, "right": 2915, "bottom": 3785, "left": 1080}, {"solidity": 0.9953512061398033, "top": 4175, "right": 2885, "bottom": 5585, "left": 1080}, {"solidity": 0.9952984812791339, "top": 485, "right": 2920, "bottom": 1900, "left": 1120}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726515f.jpg"} -{"rects": [{"solidity": 0.9942105862635664, "top": 2235, "right": 3200, "bottom": 3855, "left": 780}, {"solidity": 0.9975290769407933, "top": 395, "right": 3185, "bottom": 1990, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721159f.jpg"} -{"rects": [{"solidity": 0.9942109160281261, "top": 310, "right": 5005, "bottom": 3665, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719763f.jpg"} -{"rects": [{"solidity": 0.9942110298830502, "top": 290, "right": 5075, "bottom": 3665, "left": 1020}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722430f.jpg"} -{"rects": [{"solidity": 0.9942112396760431, "top": 450, "right": 3180, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707484f.jpg"} -{"rects": [{"solidity": 0.9942125935527576, "top": 425, "right": 3165, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714418f.jpg"} -{"rects": [{"solidity": 0.9942126084106577, "top": 750, "right": 2065, "bottom": 3145, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720934f.jpg"} -{"rects": [{"solidity": 0.9942138471090365, "top": 775, "right": 3890, "bottom": 3200, "left": 2285}, {"solidity": 0.9974236133985148, "top": 780, "right": 2030, "bottom": 3200, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720483f.jpg"} -{"rects": [{"solidity": 0.9942138632561212, "top": 590, "right": 3230, "bottom": 2265, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723140f.jpg"} -{"rects": [{"solidity": 0.9942145400538914, "top": 540, "right": 5085, "bottom": 3605, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709795f.jpg"} -{"rects": [{"solidity": 0.9942147578037824, "top": 285, "right": 2345, "bottom": 1535, "left": 520}, {"solidity": 0.9962947596491835, "top": 1690, "right": 2320, "bottom": 2915, "left": 520}], "shape": {"h": 4665, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715920f.jpg"} -{"rects": [{"solidity": 0.9942149186601884, "top": 445, "right": 3830, "bottom": 2600, "left": 850}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508783.jpg"} -{"rects": [{"solidity": 0.9942158846723551, "top": 1110, "right": 3455, "bottom": 5010, "left": 340}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721731f.jpg"} -{"rects": [{"solidity": 0.9942170579709437, "top": 690, "right": 2670, "bottom": 2120, "left": 845}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702888f.jpg"} -{"rects": [{"solidity": 0.9942186831351687, "top": 2550, "right": 2000, "bottom": 3555, "left": 490}, {"solidity": 0.9919265649192657, "top": 1450, "right": 1835, "bottom": 2345, "left": 675}, {"solidity": 0.9911571904709195, "top": 295, "right": 1845, "bottom": 1205, "left": 705}], "shape": {"h": 3945, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727086f.jpg"} -{"rects": [{"solidity": 0.9942194835680751, "top": 660, "right": 5305, "bottom": 2080, "left": 3480}, {"solidity": 0.9947200063578475, "top": 2135, "right": 2610, "bottom": 3505, "left": 755}, {"solidity": 0.9974756545338442, "top": 2120, "right": 5285, "bottom": 3530, "left": 3495}, {"solidity": 0.9963818410515713, "top": 720, "right": 2610, "bottom": 2080, "left": 755}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706942f.jpg"} -{"rects": [{"solidity": 0.994219882545897, "top": 405, "right": 3150, "bottom": 2010, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728461f.jpg"} -{"rects": [{"solidity": 0.9942201051719307, "top": 420, "right": 3155, "bottom": 2055, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718043f.jpg"} -{"rects": [{"solidity": 0.9942203914806654, "top": 495, "right": 3300, "bottom": 2325, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710000f.jpg"} -{"rects": [{"solidity": 0.9942211844119148, "top": 515, "right": 2980, "bottom": 1955, "left": 1165}, {"solidity": 0.9961156083288584, "top": 2275, "right": 2975, "bottom": 3660, "left": 1155}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726989f.jpg"} -{"rects": [{"solidity": 0.9942225948411132, "top": 430, "right": 3145, "bottom": 2045, "left": 730}, {"solidity": 0.9955398488095676, "top": 2300, "right": 3135, "bottom": 3870, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724212f.jpg"} -{"rects": [{"solidity": 0.9942230667561194, "top": 525, "right": 2215, "bottom": 2630, "left": 710}, {"solidity": 0.9952765219645779, "top": 535, "right": 3955, "bottom": 2625, "left": 2455}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716233f.jpg"} -{"rects": [{"solidity": 0.9942230984365688, "top": 525, "right": 3170, "bottom": 2130, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725933f.jpg"} -{"rects": [{"solidity": 0.9942240037159052, "top": 760, "right": 3450, "bottom": 2195, "left": 1400}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508051.jpg"} -{"rects": [{"solidity": 0.9942241492576533, "top": 680, "right": 2630, "bottom": 2040, "left": 850}, {"solidity": 0.9929673958870099, "top": 2235, "right": 2600, "bottom": 3510, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713342f.jpg"} -{"rects": [{"solidity": 0.9942245420714321, "top": 625, "right": 2790, "bottom": 2085, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720304f.jpg"} -{"rects": [{"solidity": 0.9942247576580721, "top": 475, "right": 3110, "bottom": 2070, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711915f.jpg"} -{"rects": [{"solidity": 0.9942253134829824, "top": 485, "right": 3255, "bottom": 2655, "left": 515}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509989.jpg"} -{"rects": [{"solidity": 0.9942253514546414, "top": 2890, "right": 2405, "bottom": 4275, "left": 445}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508445.jpg"} -{"rects": [{"solidity": 0.9942257038944852, "top": 680, "right": 2725, "bottom": 2115, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705237f.jpg"} -{"rects": [{"solidity": 0.9942257533933999, "top": 830, "right": 3945, "bottom": 3280, "left": 2290}, {"solidity": 0.9949271009144568, "top": 885, "right": 5770, "bottom": 3330, "left": 4130}, {"solidity": 0.9918751968529244, "top": 795, "right": 2055, "bottom": 3225, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720713f.jpg"} -{"rects": [{"solidity": 0.9942259112233851, "top": 625, "right": 2680, "bottom": 2060, "left": 865}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706486f.jpg"} -{"rects": [{"solidity": 0.994227324645657, "top": 770, "right": 2040, "bottom": 3180, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704454f.jpg"} -{"rects": [{"solidity": 0.9942276722482004, "top": 700, "right": 3285, "bottom": 2625, "left": 575}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724545f.jpg"} -{"rects": [{"solidity": 0.9942278423271094, "top": 465, "right": 3005, "bottom": 1955, "left": 1035}, {"solidity": 0.9968443834213772, "top": 2275, "right": 2970, "bottom": 3675, "left": 1030}, {"solidity": 0.9922318583646774, "top": 4035, "right": 2865, "bottom": 5335, "left": 1210}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/700614f.jpg"} -{"rects": [{"solidity": 0.9942279636289612, "top": 425, "right": 2940, "bottom": 1980, "left": 1000}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720267f.jpg"} -{"rects": [{"solidity": 0.9942281296938934, "top": 870, "right": 3860, "bottom": 3285, "left": 2245}, {"solidity": 0.9963180327868852, "top": 875, "right": 2000, "bottom": 3285, "left": 400}, {"solidity": 0.9949459981068398, "top": 880, "right": 5665, "bottom": 3265, "left": 4080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710538f.jpg"} -{"rects": [{"solidity": 0.9942283026934587, "top": 1010, "right": 3430, "bottom": 2260, "left": 1515}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508661.jpg"} -{"rects": [{"solidity": 0.9942284501937823, "top": 440, "right": 3205, "bottom": 2080, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704644f.jpg"} -{"rects": [{"solidity": 0.9942290149001151, "top": 765, "right": 2025, "bottom": 3165, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713969f.jpg"} -{"rects": [{"solidity": 0.9942293458396924, "top": 625, "right": 3200, "bottom": 2265, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707526f.jpg"} -{"rects": [{"solidity": 0.9942297281779556, "top": 2470, "right": 2530, "bottom": 3945, "left": 445}, {"solidity": 0.9929786359901397, "top": 695, "right": 2550, "bottom": 2170, "left": 455}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716248f.jpg"} -{"rects": [{"solidity": 0.9942304148336459, "top": 810, "right": 3335, "bottom": 2770, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721786f.jpg"} -{"rects": [{"solidity": 0.9942305979528354, "top": 2240, "right": 3065, "bottom": 3835, "left": 655}, {"solidity": 0.9946430600391661, "top": 405, "right": 3060, "bottom": 1985, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728377f.jpg"} -{"rects": [{"solidity": 0.9942310226512893, "top": 2230, "right": 3045, "bottom": 3650, "left": 1205}, {"solidity": 0.9916198657613056, "top": 445, "right": 3070, "bottom": 1865, "left": 1235}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727486f.jpg"} -{"rects": [{"solidity": 0.9942333734577189, "top": 385, "right": 2030, "bottom": 2640, "left": 545}, {"solidity": 0.9908440607766239, "top": 400, "right": 4055, "bottom": 1560, "left": 2590}, {"solidity": 0.9903552216877177, "top": 1575, "right": 4040, "bottom": 2700, "left": 2595}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716514f.jpg"} -{"rects": [{"solidity": 0.994234994795883, "top": 340, "right": 2295, "bottom": 1570, "left": 480}, {"solidity": 0.9944062111945409, "top": 1670, "right": 2245, "bottom": 2915, "left": 420}], "shape": {"h": 4595, "w": 2940}, "file": "/usr/local/google/home/danvk/milstein/734090f.jpg"} -{"rects": [{"solidity": 0.9942351360516477, "top": 1940, "right": 4180, "bottom": 3495, "left": 2285}, {"solidity": 0.9686708311643242, "top": 3830, "right": 2090, "bottom": 5515, "left": 360}, {"solidity": 0.9715816869088263, "top": 3840, "right": 4145, "bottom": 5475, "left": 2475}], "shape": {"h": 6035, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465531.jpg"} -{"rects": [{"solidity": 0.9942353384567486, "top": 430, "right": 3125, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700742f.jpg"} -{"rects": [{"solidity": 0.9942354102140715, "top": 2170, "right": 2955, "bottom": 3605, "left": 1100}, {"solidity": 0.9932351097802405, "top": 460, "right": 2940, "bottom": 1875, "left": 1145}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726199f.jpg"} -{"rects": [{"solidity": 0.9942373240385911, "top": 4110, "right": 3205, "bottom": 5565, "left": 1365}, {"solidity": 0.9958217001091672, "top": 2290, "right": 3205, "bottom": 3725, "left": 1385}, {"solidity": 0.9955389243524837, "top": 495, "right": 3190, "bottom": 1925, "left": 1370}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727404f.jpg"} -{"rects": [{"solidity": 0.9942373473653084, "top": 385, "right": 3080, "bottom": 1975, "left": 705}, {"solidity": 0.960754463456123, "top": 2815, "right": 2980, "bottom": 3725, "left": 820}], "shape": {"h": 6000, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/728129f.jpg"} -{"rects": [{"solidity": 0.9942376235557296, "top": 385, "right": 5430, "bottom": 3635, "left": 1360}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732441f.jpg"} -{"rects": [{"solidity": 0.994238255501962, "top": 495, "right": 3225, "bottom": 1795, "left": 695}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706481f.jpg"} -{"rects": [{"solidity": 0.9942388045027774, "top": 2215, "right": 2735, "bottom": 3630, "left": 910}, {"solidity": 0.9947216442102881, "top": 520, "right": 5110, "bottom": 1940, "left": 3300}, {"solidity": 0.9949172076163083, "top": 535, "right": 2715, "bottom": 1950, "left": 900}, {"solidity": 0.9957554279607402, "top": 2200, "right": 5065, "bottom": 3600, "left": 3275}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725619f.jpg"} -{"rects": [{"solidity": 0.9942388922322271, "top": 665, "right": 4715, "bottom": 3325, "left": 1370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701504f.jpg"} -{"rects": [{"solidity": 0.9942394580140447, "top": 2365, "right": 3075, "bottom": 3805, "left": 1250}, {"solidity": 0.9943442530233656, "top": 480, "right": 3060, "bottom": 1905, "left": 1250}, {"solidity": 0.9939401565291793, "top": 4195, "right": 3030, "bottom": 5615, "left": 1255}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726761f.jpg"} -{"rects": [{"solidity": 0.9942403084897007, "top": 2260, "right": 5070, "bottom": 3705, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725456f.jpg"} -{"rects": [{"solidity": 0.9942406266198237, "top": 575, "right": 2930, "bottom": 2385, "left": 1710}, {"solidity": 0.9958873994327048, "top": 585, "right": 4300, "bottom": 2390, "left": 3095}, {"solidity": 0.9913514494946438, "top": 595, "right": 1535, "bottom": 2370, "left": 335}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716448f.jpg"} -{"rects": [{"solidity": 0.9942412756155363, "top": 705, "right": 1960, "bottom": 3085, "left": 360}, {"solidity": 0.994546419672109, "top": 725, "right": 3815, "bottom": 3085, "left": 2230}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728101f.jpg"} -{"rects": [{"solidity": 0.9942413078819026, "top": 740, "right": 2030, "bottom": 3155, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720469f.jpg"} -{"rects": [{"solidity": 0.9942413083747372, "top": 435, "right": 3200, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703691f.jpg"} -{"rects": [{"solidity": 0.9942416310786609, "top": 770, "right": 3230, "bottom": 2175, "left": 1265}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508427.jpg"} -{"rects": [{"solidity": 0.9942418332993762, "top": 2310, "right": 2940, "bottom": 3730, "left": 1095}, {"solidity": 0.9959729507554999, "top": 470, "right": 2930, "bottom": 1900, "left": 1125}, {"solidity": 0.9942821274801149, "top": 4185, "right": 2895, "bottom": 5615, "left": 1080}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725101f.jpg"} -{"rects": [{"solidity": 0.9942419934056632, "top": 550, "right": 3290, "bottom": 2415, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712041f.jpg"} -{"rects": [{"solidity": 0.9942422800967218, "top": 435, "right": 3165, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702834f.jpg"} -{"rects": [{"solidity": 0.994242740570061, "top": 440, "right": 3195, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702147f.jpg"} -{"rects": [{"solidity": 0.9942445406691275, "top": 4100, "right": 3110, "bottom": 5530, "left": 1275}, {"solidity": 0.9948870320653977, "top": 2260, "right": 3150, "bottom": 3675, "left": 1330}, {"solidity": 0.9962047612078145, "top": 425, "right": 3135, "bottom": 1810, "left": 1330}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727499f.jpg"} -{"rects": [{"solidity": 0.9942449281419798, "top": 660, "right": 3675, "bottom": 3090, "left": 2020}, {"solidity": 0.9957351786096812, "top": 650, "right": 1820, "bottom": 3080, "left": 215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712006f.jpg"} -{"rects": [{"solidity": 0.9942453774944432, "top": 630, "right": 5190, "bottom": 2070, "left": 3375}, {"solidity": 0.9944327679749744, "top": 2085, "right": 5185, "bottom": 3495, "left": 3345}, {"solidity": 0.9952792536911437, "top": 655, "right": 2750, "bottom": 2080, "left": 920}, {"solidity": 0.9931535147258455, "top": 2090, "right": 2770, "bottom": 3510, "left": 940}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704005f.jpg"} -{"rects": [{"solidity": 0.9942467904401364, "top": 830, "right": 2060, "bottom": 3275, "left": 435}, {"solidity": 0.9959555073530361, "top": 855, "right": 3865, "bottom": 3275, "left": 2245}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724580f.jpg"} -{"rects": [{"solidity": 0.9942482562173611, "top": 3145, "right": 3530, "bottom": 5820, "left": 170}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731067f.jpg"} -{"rects": [{"solidity": 0.9942492654629467, "top": 495, "right": 3165, "bottom": 1880, "left": 1350}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725905f.jpg"} -{"rects": [{"solidity": 0.9942496912187359, "top": 1005, "right": 3970, "bottom": 5615, "left": 290}], "shape": {"h": 6920, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708855f.jpg"} -{"rects": [{"solidity": 0.9942509912373168, "top": 550, "right": 4975, "bottom": 3590, "left": 1155}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702417f.jpg"} -{"rects": [{"solidity": 0.9942510693403446, "top": 390, "right": 3125, "bottom": 2020, "left": 695}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/728852f.jpg"} -{"rects": [{"solidity": 0.9942513945274047, "top": 2195, "right": 3210, "bottom": 3815, "left": 785}, {"solidity": 0.9979823716186941, "top": 4070, "right": 3215, "bottom": 5680, "left": 795}, {"solidity": 0.9939873293965821, "top": 365, "right": 3205, "bottom": 1965, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731023f.jpg"} -{"rects": [{"solidity": 0.9942520440323391, "top": 280, "right": 5115, "bottom": 3690, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719531f.jpg"} -{"rects": [{"solidity": 0.9942533656340184, "top": 770, "right": 2560, "bottom": 2180, "left": 775}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725702f.jpg"} -{"rects": [{"solidity": 0.9942534871306891, "top": 650, "right": 5435, "bottom": 1960, "left": 3335}, {"solidity": 0.9942542390139595, "top": 645, "right": 2790, "bottom": 1900, "left": 710}, {"solidity": 0.9946460683341507, "top": 2165, "right": 5410, "bottom": 3400, "left": 3405}, {"solidity": 0.9934125687757909, "top": 2230, "right": 2775, "bottom": 3405, "left": 765}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723553f.jpg"} -{"rects": [{"solidity": 0.994253677037292, "top": 580, "right": 2540, "bottom": 2130, "left": 270}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716343f.jpg"} -{"rects": [{"solidity": 0.9942539047627383, "top": 835, "right": 1895, "bottom": 2850, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700312f.jpg"} -{"rects": [{"solidity": 0.9942540292174822, "top": 650, "right": 2740, "bottom": 2045, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725259f.jpg"} -{"rects": [{"solidity": 0.9942540516302607, "top": 2145, "right": 3185, "bottom": 3785, "left": 740}, {"solidity": 0.9953929689719235, "top": 345, "right": 3145, "bottom": 1970, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733475f.jpg"} -{"rects": [{"solidity": 0.994254723165862, "top": 490, "right": 2505, "bottom": 2605, "left": 1000}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509183.jpg"} -{"rects": [{"solidity": 0.9942549502194163, "top": 535, "right": 4995, "bottom": 3410, "left": 1120}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716867f.jpg"} -{"rects": [{"solidity": 0.9942555320440267, "top": 935, "right": 5645, "bottom": 3335, "left": 4030}, {"solidity": 0.9963856670467122, "top": 975, "right": 3840, "bottom": 3345, "left": 2245}, {"solidity": 0.9948336236780517, "top": 1045, "right": 2040, "bottom": 3340, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709639f.jpg"} -{"rects": [{"solidity": 0.9942563287047811, "top": 545, "right": 3000, "bottom": 2160, "left": 570}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703255f.jpg"} -{"rects": [{"solidity": 0.9942571773126897, "top": 2285, "right": 2850, "bottom": 3705, "left": 1015}, {"solidity": 0.9967881444456377, "top": 2255, "right": 5005, "bottom": 3680, "left": 3190}, {"solidity": 0.9955685840057256, "top": 695, "right": 2800, "bottom": 2135, "left": 1010}, {"solidity": 0.9927280928157968, "top": 705, "right": 4995, "bottom": 2125, "left": 3220}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726344f.jpg"} -{"rects": [{"solidity": 0.9942575399835472, "top": 500, "right": 3210, "bottom": 2320, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710013f.jpg"} -{"rects": [{"solidity": 0.994258136150297, "top": 2140, "right": 3285, "bottom": 3570, "left": 1265}, {"solidity": 0.9949695772843723, "top": 455, "right": 3290, "bottom": 1880, "left": 1280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727306f.jpg"} -{"rects": [{"solidity": 0.9942586729982852, "top": 365, "right": 3180, "bottom": 1970, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711969f.jpg"} -{"rects": [{"solidity": 0.9942587228267961, "top": 2010, "right": 3255, "bottom": 3630, "left": 835}, {"solidity": 0.9952691026407606, "top": 270, "right": 3255, "bottom": 1875, "left": 850}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725232f.jpg"} -{"rects": [{"solidity": 0.9942587432696407, "top": 2125, "right": 2655, "bottom": 3540, "left": 850}, {"solidity": 0.9970197048239565, "top": 720, "right": 2655, "bottom": 2065, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727361f.jpg"} -{"rects": [{"solidity": 0.994259125166008, "top": 425, "right": 3245, "bottom": 2040, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702130f.jpg"} -{"rects": [{"solidity": 0.9942593708765699, "top": 370, "right": 3145, "bottom": 1990, "left": 730}, {"solidity": 0.996338181972739, "top": 2210, "right": 3130, "bottom": 3815, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730603f.jpg"} -{"rects": [{"solidity": 0.9942601661478676, "top": 850, "right": 2060, "bottom": 3245, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713851f.jpg"} -{"rects": [{"solidity": 0.9942605361065611, "top": 635, "right": 2540, "bottom": 3450, "left": 405}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509347.jpg"} -{"rects": [{"solidity": 0.9942609305178306, "top": 455, "right": 3080, "bottom": 1900, "left": 1240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725914f.jpg"} -{"rects": [{"solidity": 0.9942616666831183, "top": 835, "right": 2140, "bottom": 3230, "left": 525}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713324f.jpg"} -{"rects": [{"solidity": 0.9942617425134623, "top": 460, "right": 3935, "bottom": 2545, "left": 2445}, {"solidity": 0.9902149055023973, "top": 450, "right": 2175, "bottom": 2540, "left": 725}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716218f.jpg"} -{"rects": [{"solidity": 0.9942623088839496, "top": 1090, "right": 3830, "bottom": 3085, "left": 2325}, {"solidity": 0.994659721674164, "top": 1160, "right": 2025, "bottom": 3105, "left": 545}, {"solidity": 0.9934574803255172, "top": 1115, "right": 5665, "bottom": 2980, "left": 4130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715331f.jpg"} -{"rects": [{"solidity": 0.9942624778519178, "top": 620, "right": 4950, "bottom": 3395, "left": 1170}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721245f.jpg"} -{"rects": [{"solidity": 0.9942631207817064, "top": 410, "right": 3285, "bottom": 2265, "left": 585}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701608f.jpg"} -{"rects": [{"solidity": 0.9942634415438336, "top": 695, "right": 2600, "bottom": 2130, "left": 790}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726387f.jpg"} -{"rects": [{"solidity": 0.9942646282611974, "top": 630, "right": 4920, "bottom": 3490, "left": 1160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709221f.jpg"} -{"rects": [{"solidity": 0.9942661632078263, "top": 380, "right": 3095, "bottom": 2010, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729715f.jpg"} -{"rects": [{"solidity": 0.9942667131204657, "top": 725, "right": 2685, "bottom": 2120, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727596f.jpg"} -{"rects": [{"solidity": 0.9942679736683244, "top": 910, "right": 3110, "bottom": 2130, "left": 1295}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508001.jpg"} -{"rects": [{"solidity": 0.9942681708823081, "top": 390, "right": 2670, "bottom": 1810, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725907f.jpg"} -{"rects": [{"solidity": 0.9942682676178668, "top": 710, "right": 3170, "bottom": 2305, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708008f.jpg"} -{"rects": [{"solidity": 0.9942685415861113, "top": 455, "right": 3045, "bottom": 1890, "left": 1245}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726555f.jpg"} -{"rects": [{"solidity": 0.994268651930823, "top": 465, "right": 3070, "bottom": 1875, "left": 1245}, {"solidity": 0.9966030886543161, "top": 2190, "right": 3050, "bottom": 3565, "left": 1230}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725050f.jpg"} -{"rects": [{"solidity": 0.994269560292084, "top": 435, "right": 2920, "bottom": 1820, "left": 1105}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728146f.jpg"} -{"rects": [{"solidity": 0.9942698755609823, "top": 290, "right": 5070, "bottom": 3680, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721961f.jpg"} -{"rects": [{"solidity": 0.9942705256940343, "top": 790, "right": 2925, "bottom": 2575, "left": 1725}, {"solidity": 0.9936255884531746, "top": 775, "right": 1505, "bottom": 2565, "left": 325}], "shape": {"h": 3030, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/722782f.jpg"} -{"rects": [{"solidity": 0.9942707120871163, "top": 2320, "right": 3080, "bottom": 3950, "left": 660}, {"solidity": 0.9923168691728154, "top": 440, "right": 3085, "bottom": 2050, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730919f.jpg"} -{"rects": [{"solidity": 0.9942707241776382, "top": 615, "right": 5255, "bottom": 3510, "left": 3400}, {"solidity": 0.9993087112056463, "top": 2080, "right": 2825, "bottom": 3515, "left": 1010}, {"solidity": 0.9993013507219376, "top": 640, "right": 2835, "bottom": 2070, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703324f.jpg"} -{"rects": [{"solidity": 0.9942709332557109, "top": 495, "right": 2790, "bottom": 2910, "left": 1155}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707900f.jpg"} -{"rects": [{"solidity": 0.9942710120068611, "top": 735, "right": 5195, "bottom": 2160, "left": 3375}, {"solidity": 0.995515849746473, "top": 2205, "right": 2650, "bottom": 3620, "left": 840}, {"solidity": 0.9961370790756795, "top": 740, "right": 2645, "bottom": 2150, "left": 840}, {"solidity": 0.9933000656076661, "top": 2195, "right": 5175, "bottom": 3610, "left": 3375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725190f.jpg"} -{"rects": [{"solidity": 0.9942717997040376, "top": 445, "right": 3210, "bottom": 2060, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734626f.jpg"} -{"rects": [{"solidity": 0.9942728778708126, "top": 405, "right": 3195, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706565f.jpg"} -{"rects": [{"solidity": 0.994273177212466, "top": 420, "right": 5110, "bottom": 3750, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720176f.jpg"} -{"rects": [{"solidity": 0.9942743076221469, "top": 1040, "right": 3545, "bottom": 5095, "left": 340}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721308f.jpg"} -{"rects": [{"solidity": 0.9942743254191124, "top": 2195, "right": 3040, "bottom": 3600, "left": 1225}, {"solidity": 0.9933426734130264, "top": 500, "right": 3045, "bottom": 1885, "left": 1235}, {"solidity": 0.9938131807045356, "top": 4040, "right": 2975, "bottom": 5430, "left": 1200}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727583f.jpg"} -{"rects": [{"solidity": 0.9942746945502833, "top": 410, "right": 3195, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709281f.jpg"} -{"rects": [{"solidity": 0.9942749643825122, "top": 960, "right": 5005, "bottom": 3365, "left": 965}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717691f.jpg"} -{"rects": [{"solidity": 0.9942749763891459, "top": 2230, "right": 3050, "bottom": 3675, "left": 1245}, {"solidity": 0.9963433275719096, "top": 480, "right": 3060, "bottom": 1895, "left": 1260}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726888f.jpg"} -{"rects": [{"solidity": 0.9942752551184284, "top": 320, "right": 5075, "bottom": 3650, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713011f.jpg"} -{"rects": [{"solidity": 0.9942752930620843, "top": 575, "right": 3010, "bottom": 2005, "left": 1180}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727402f.jpg"} -{"rects": [{"solidity": 0.9942761899839785, "top": 745, "right": 2065, "bottom": 3175, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732509f.jpg"} -{"rects": [{"solidity": 0.9942762094633651, "top": 675, "right": 3340, "bottom": 2625, "left": 585}, {"solidity": 0.9960966854658077, "top": 3275, "right": 3305, "bottom": 5195, "left": 590}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/721116f.jpg"} -{"rects": [{"solidity": 0.9942770824779371, "top": 4065, "right": 2890, "bottom": 5500, "left": 1085}, {"solidity": 0.9948169544998259, "top": 2240, "right": 2910, "bottom": 3660, "left": 1150}, {"solidity": 0.9943574668320986, "top": 480, "right": 2950, "bottom": 1850, "left": 1145}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728103f.jpg"} -{"rects": [{"solidity": 0.9942778122873961, "top": 470, "right": 3185, "bottom": 3880, "left": 665}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714342f.jpg"} -{"rects": [{"solidity": 0.9942781690140845, "top": 615, "right": 2975, "bottom": 2020, "left": 1135}, {"solidity": 0.9939556550020544, "top": 4115, "right": 3015, "bottom": 5530, "left": 1185}, {"solidity": 0.9942420467320956, "top": 2410, "right": 2985, "bottom": 3795, "left": 1170}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726343f.jpg"} -{"rects": [{"solidity": 0.9942786863552507, "top": 1005, "right": 2155, "bottom": 3155, "left": 575}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509195.jpg"} -{"rects": [{"solidity": 0.9942790150043775, "top": 555, "right": 2675, "bottom": 1980, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706965f.jpg"} -{"rects": [{"solidity": 0.9942791035296252, "top": 2070, "right": 2215, "bottom": 3530, "left": 305}, {"solidity": 0.9967605061825786, "top": 450, "right": 2195, "bottom": 1895, "left": 325}, {"solidity": 0.9965484737782488, "top": 995, "right": 3795, "bottom": 2880, "left": 2360}, {"solidity": 0.997355020284453, "top": 430, "right": 5820, "bottom": 1870, "left": 3955}, {"solidity": 0.9989601879509327, "top": 2155, "right": 5800, "bottom": 3520, "left": 3920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731457f.jpg"} -{"rects": [{"solidity": 0.9942791415685444, "top": 640, "right": 2615, "bottom": 2045, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703704f.jpg"} -{"rects": [{"solidity": 0.9942791505754445, "top": 755, "right": 3925, "bottom": 3195, "left": 2275}, {"solidity": 0.9964592067075138, "top": 765, "right": 2025, "bottom": 3185, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730567f.jpg"} -{"rects": [{"solidity": 0.9942800450737348, "top": 505, "right": 2145, "bottom": 2605, "left": 665}, {"solidity": 0.9937983925695177, "top": 525, "right": 3945, "bottom": 2615, "left": 2460}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716079f.jpg"} -{"rects": [{"solidity": 0.9942801325726283, "top": 635, "right": 2635, "bottom": 2070, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702595f.jpg"} -{"rects": [{"solidity": 0.9942806403012344, "top": 1065, "right": 3340, "bottom": 4945, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713711f.jpg"} -{"rects": [{"solidity": 0.9942808623600714, "top": 435, "right": 3060, "bottom": 2065, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729324f.jpg"} -{"rects": [{"solidity": 0.994281041839261, "top": 1070, "right": 3235, "bottom": 4975, "left": 510}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717293f.jpg"} -{"rects": [{"solidity": 0.9942816328612971, "top": 465, "right": 3270, "bottom": 3865, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714395f.jpg"} -{"rects": [{"solidity": 0.9942817024653798, "top": 520, "right": 3030, "bottom": 1920, "left": 1255}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726544f.jpg"} -{"rects": [{"solidity": 0.9942825356992273, "top": 535, "right": 3160, "bottom": 2420, "left": 470}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/700630f.jpg"} -{"rects": [{"solidity": 0.9942828184425846, "top": 655, "right": 2740, "bottom": 2080, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728247f.jpg"} -{"rects": [{"solidity": 0.994283422408211, "top": 735, "right": 2635, "bottom": 2175, "left": 815}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726396f.jpg"} -{"rects": [{"solidity": 0.9942844048275358, "top": 425, "right": 3170, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724169f.jpg"} -{"rects": [{"solidity": 0.9942854006515289, "top": 435, "right": 3170, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734683f.jpg"} -{"rects": [{"solidity": 0.9942885465474811, "top": 860, "right": 3025, "bottom": 2110, "left": 1210}], "shape": {"h": 2975, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509735.jpg"} -{"rects": [{"solidity": 0.9942887361184558, "top": 710, "right": 2745, "bottom": 2185, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706051f.jpg"} -{"rects": [{"solidity": 0.9942889973581088, "top": 485, "right": 3045, "bottom": 1910, "left": 1220}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728215f.jpg"} -{"rects": [{"solidity": 0.9942893654406773, "top": 445, "right": 3180, "bottom": 2045, "left": 795}], "shape": {"h": 5995, "w": 3850}, "file": "/usr/local/google/home/danvk/milstein/727529f.jpg"} -{"rects": [{"solidity": 0.9942904548116338, "top": 750, "right": 2635, "bottom": 2155, "left": 775}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705708f.jpg"} -{"rects": [{"solidity": 0.9942905490714353, "top": 860, "right": 5785, "bottom": 3270, "left": 4160}, {"solidity": 0.9895485689932138, "top": 880, "right": 1995, "bottom": 3275, "left": 380}, {"solidity": 0.990597670043893, "top": 875, "right": 3885, "bottom": 3265, "left": 2280}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717364f.jpg"} -{"rects": [{"solidity": 0.9942908225383629, "top": 1005, "right": 3495, "bottom": 2230, "left": 1590}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508697.jpg"} -{"rects": [{"solidity": 0.994290852749286, "top": 435, "right": 3185, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702310f.jpg"} -{"rects": [{"solidity": 0.9942915591057425, "top": 2230, "right": 3150, "bottom": 3860, "left": 725}, {"solidity": 0.9951958646628795, "top": 4060, "right": 3125, "bottom": 5690, "left": 700}, {"solidity": 0.9928080183223515, "top": 375, "right": 3160, "bottom": 1995, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729481f.jpg"} -{"rects": [{"solidity": 0.994292362851921, "top": 755, "right": 3990, "bottom": 2135, "left": 2155}, {"solidity": 0.9957203061665811, "top": 2185, "right": 3990, "bottom": 3555, "left": 2155}, {"solidity": 0.9975625559223721, "top": 760, "right": 2140, "bottom": 2115, "left": 330}, {"solidity": 0.9948909976917159, "top": 760, "right": 5815, "bottom": 2125, "left": 4005}, {"solidity": 0.9957479845343863, "top": 2185, "right": 2130, "bottom": 3545, "left": 325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718191f.jpg"} -{"rects": [{"solidity": 0.9942931462766784, "top": 3225, "right": 3335, "bottom": 5150, "left": 575}, {"solidity": 0.9967398125791114, "top": 705, "right": 3300, "bottom": 2540, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712069f.jpg"} -{"rects": [{"solidity": 0.9942937388857653, "top": 900, "right": 2310, "bottom": 3620, "left": 475}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711211f.jpg"} -{"rects": [{"solidity": 0.9942951912890957, "top": 650, "right": 1910, "bottom": 1960, "left": 795}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718274f.jpg"} -{"rects": [{"solidity": 0.9942952212848659, "top": 855, "right": 4910, "bottom": 3285, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734455f.jpg"} -{"rects": [{"solidity": 0.9942971480569975, "top": 570, "right": 3270, "bottom": 2435, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707753f.jpg"} -{"rects": [{"solidity": 0.9942972828423025, "top": 930, "right": 2170, "bottom": 3330, "left": 565}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708120f.jpg"} -{"rects": [{"solidity": 0.9942987341772151, "top": 420, "right": 3170, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701509f.jpg"} -{"rects": [{"solidity": 0.9943010373641771, "top": 585, "right": 4900, "bottom": 3585, "left": 1110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709851f.jpg"} -{"rects": [{"solidity": 0.9943010505700158, "top": 635, "right": 3285, "bottom": 2560, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707891f.jpg"} -{"rects": [{"solidity": 0.9943020811803783, "top": 595, "right": 4900, "bottom": 3605, "left": 1155}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709828f.jpg"} -{"rects": [{"solidity": 0.9943021983746614, "top": 375, "right": 3200, "bottom": 1995, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720020f.jpg"} -{"rects": [{"solidity": 0.9943022871289784, "top": 495, "right": 2885, "bottom": 1990, "left": 1000}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700227f.jpg"} -{"rects": [{"solidity": 0.9943025496508014, "top": 1100, "right": 3335, "bottom": 2310, "left": 1450}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507707.jpg"} -{"rects": [{"solidity": 0.9943028351925547, "top": 365, "right": 3225, "bottom": 3755, "left": 610}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714606f.jpg"} -{"rects": [{"solidity": 0.9943039285386417, "top": 625, "right": 2420, "bottom": 3640, "left": 450}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717003f.jpg"} -{"rects": [{"solidity": 0.9943043078178213, "top": 375, "right": 5215, "bottom": 3635, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732600f.jpg"} -{"rects": [{"solidity": 0.9943043325636931, "top": 555, "right": 3050, "bottom": 1965, "left": 1230}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/726973f.jpg"} -{"rects": [{"solidity": 0.9943043336107479, "top": 470, "right": 2705, "bottom": 2560, "left": 1075}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719176f.jpg"} -{"rects": [{"solidity": 0.9943048480964763, "top": 535, "right": 3610, "bottom": 2225, "left": 200}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730583f.jpg"} -{"rects": [{"solidity": 0.9943049705139005, "top": 1450, "right": 1990, "bottom": 2455, "left": 485}, {"solidity": 0.9878245729137752, "top": 345, "right": 1980, "bottom": 1230, "left": 820}], "shape": {"h": 3935, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727067f.jpg"} -{"rects": [{"solidity": 0.9943055370510182, "top": 640, "right": 2745, "bottom": 2060, "left": 935}, {"solidity": 0.9949564189316664, "top": 665, "right": 5220, "bottom": 1790, "left": 3415}, {"solidity": 0.9960346979688072, "top": 2200, "right": 2755, "bottom": 3315, "left": 955}, {"solidity": 0.9957040693948258, "top": 2180, "right": 5215, "bottom": 3290, "left": 3420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728236f.jpg"} -{"rects": [{"solidity": 0.9943060324882492, "top": 1980, "right": 2895, "bottom": 3415, "left": 1050}, {"solidity": 0.9952882918219259, "top": 345, "right": 2905, "bottom": 1755, "left": 1070}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705682f.jpg"} -{"rects": [{"solidity": 0.9943063626153621, "top": 445, "right": 3185, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700269f.jpg"} -{"rects": [{"solidity": 0.9943072293680875, "top": 665, "right": 2695, "bottom": 2085, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727543f.jpg"} -{"rects": [{"solidity": 0.9943081775810931, "top": 670, "right": 5105, "bottom": 3470, "left": 3175}, {"solidity": 0.9965394024835171, "top": 680, "right": 2750, "bottom": 3305, "left": 825}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727654f.jpg"} -{"rects": [{"solidity": 0.9943085918373225, "top": 875, "right": 3090, "bottom": 2095, "left": 1275}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509591.jpg"} -{"rects": [{"solidity": 0.9943086543962439, "top": 490, "right": 2915, "bottom": 1900, "left": 1100}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728068f.jpg"} -{"rects": [{"solidity": 0.9943088048490183, "top": 2080, "right": 2690, "bottom": 3495, "left": 905}, {"solidity": 0.9956930384205124, "top": 660, "right": 2695, "bottom": 2065, "left": 910}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727322f.jpg"} -{"rects": [{"solidity": 0.9943091962451186, "top": 585, "right": 4940, "bottom": 3615, "left": 1205}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718431f.jpg"} -{"rects": [{"solidity": 0.9943097836492437, "top": 390, "right": 3900, "bottom": 1545, "left": 2450}, {"solidity": 0.9944274727130379, "top": 305, "right": 2155, "bottom": 1460, "left": 725}, {"solidity": 0.9940139779981851, "top": 1715, "right": 2230, "bottom": 2840, "left": 810}, {"solidity": 0.9312307228107818, "top": 1690, "right": 3875, "bottom": 2800, "left": 2485}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516965.jpg"} -{"rects": [{"solidity": 0.9943111048008725, "top": 395, "right": 3115, "bottom": 2035, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726861f.jpg"} -{"rects": [{"solidity": 0.994311226710585, "top": 690, "right": 3000, "bottom": 3430, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724759f.jpg"} -{"rects": [{"solidity": 0.9943119963870599, "top": 600, "right": 3365, "bottom": 2545, "left": 625}, {"solidity": 0.9967111317196526, "top": 3115, "right": 3345, "bottom": 5055, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707933f.jpg"} -{"rects": [{"solidity": 0.9943120834484842, "top": 2250, "right": 3205, "bottom": 3905, "left": 765}, {"solidity": 0.9946574827639832, "top": 395, "right": 3230, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731866f.jpg"} -{"rects": [{"solidity": 0.9943125725375751, "top": 660, "right": 2620, "bottom": 2105, "left": 795}, {"solidity": 0.9981692255533492, "top": 665, "right": 5285, "bottom": 2085, "left": 3455}, {"solidity": 0.9964921800810094, "top": 2160, "right": 5280, "bottom": 3585, "left": 3450}, {"solidity": 0.9951627441161742, "top": 2170, "right": 2610, "bottom": 3560, "left": 790}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707109f.jpg"} -{"rects": [{"solidity": 0.9943138279345176, "top": 465, "right": 3005, "bottom": 1905, "left": 975}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721071f.jpg"} -{"rects": [{"solidity": 0.9943138627955939, "top": 1310, "right": 3395, "bottom": 4995, "left": 425}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/718799f.jpg"} -{"rects": [{"solidity": 0.9943138970646727, "top": 1040, "right": 5400, "bottom": 2700, "left": 575}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722962f.jpg"} -{"rects": [{"solidity": 0.9943144800303728, "top": 845, "right": 1825, "bottom": 2825, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708708f.jpg"} -{"rects": [{"solidity": 0.9943148431072981, "top": 665, "right": 2695, "bottom": 2060, "left": 845}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704972f.jpg"} -{"rects": [{"solidity": 0.9943150904012742, "top": 415, "right": 3160, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730268f.jpg"} -{"rects": [{"solidity": 0.9943151933262387, "top": 505, "right": 2055, "bottom": 3665, "left": 740}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714794f.jpg"} -{"rects": [{"solidity": 0.9943164866323173, "top": 530, "right": 5085, "bottom": 3590, "left": 1195}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718772f.jpg"} -{"rects": [{"solidity": 0.9943180374789361, "top": 2365, "right": 2895, "bottom": 3915, "left": 975}, {"solidity": 0.99255575725036, "top": 450, "right": 2925, "bottom": 2005, "left": 1000}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723535f.jpg"} -{"rects": [{"solidity": 0.9943195210484137, "top": 840, "right": 2045, "bottom": 3220, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717571f.jpg"} -{"rects": [{"solidity": 0.9943195383555041, "top": 295, "right": 2790, "bottom": 1815, "left": 925}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723001f.jpg"} -{"rects": [{"solidity": 0.9943199155028752, "top": 1010, "right": 5030, "bottom": 3620, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725351f.jpg"} -{"rects": [{"solidity": 0.9943202432862109, "top": 440, "right": 3210, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724664f.jpg"} -{"rects": [{"solidity": 0.9943202504915167, "top": 2370, "right": 3025, "bottom": 3810, "left": 1210}, {"solidity": 0.9951316477424065, "top": 525, "right": 3040, "bottom": 1945, "left": 1230}, {"solidity": 0.9948364974408077, "top": 4235, "right": 3000, "bottom": 5625, "left": 1165}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725561f.jpg"} -{"rects": [{"solidity": 0.9943204319562635, "top": 585, "right": 2625, "bottom": 2030, "left": 790}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703905f.jpg"} -{"rects": [{"solidity": 0.9943206514791235, "top": 615, "right": 3865, "bottom": 3055, "left": 2245}, {"solidity": 0.9948348177299089, "top": 650, "right": 5715, "bottom": 3065, "left": 4095}, {"solidity": 0.9983591673682299, "top": 655, "right": 2005, "bottom": 3060, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726020f.jpg"} -{"rects": [{"solidity": 0.9943208961772075, "top": 3060, "right": 2875, "bottom": 4470, "left": 1040}, {"solidity": 0.9959401427545472, "top": 810, "right": 2865, "bottom": 2215, "left": 1030}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731069f.jpg"} -{"rects": [{"solidity": 0.9943213834644904, "top": 635, "right": 2720, "bottom": 2060, "left": 890}, {"solidity": 0.995760748137705, "top": 2090, "right": 2705, "bottom": 3505, "left": 875}, {"solidity": 0.9957561984526211, "top": 630, "right": 5245, "bottom": 2020, "left": 3465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702899f.jpg"} -{"rects": [{"solidity": 0.9943214279531172, "top": 645, "right": 2025, "bottom": 1830, "left": 150}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715703f.jpg"} -{"rects": [{"solidity": 0.994321900203286, "top": 800, "right": 3995, "bottom": 3245, "left": 2335}, {"solidity": 0.9963684310146257, "top": 830, "right": 5780, "bottom": 3260, "left": 4150}, {"solidity": 0.9947490347490348, "top": 785, "right": 2090, "bottom": 3215, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701814f.jpg"} -{"rects": [{"solidity": 0.9943226948657831, "top": 835, "right": 3370, "bottom": 2795, "left": 660}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707020f.jpg"} -{"rects": [{"solidity": 0.9943235727675948, "top": 395, "right": 3290, "bottom": 2035, "left": 870}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727281f.jpg"} -{"rects": [{"solidity": 0.9943237192150665, "top": 805, "right": 2050, "bottom": 3210, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712111f.jpg"} -{"rects": [{"solidity": 0.9943240019992181, "top": 4120, "right": 3005, "bottom": 5550, "left": 1200}, {"solidity": 0.9951650335224342, "top": 525, "right": 3015, "bottom": 1955, "left": 1215}, {"solidity": 0.9960833043391819, "top": 2350, "right": 3020, "bottom": 3770, "left": 1230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726754f.jpg"} -{"rects": [{"solidity": 0.994324055224723, "top": 410, "right": 3185, "bottom": 2080, "left": 755}, {"solidity": 1.0, "top": 4985, "right": 3880, "bottom": 6010, "left": 2475}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/703376f.jpg"} -{"rects": [{"solidity": 0.9943243610657966, "top": 2115, "right": 2770, "bottom": 3530, "left": 925}, {"solidity": 0.9952574096887127, "top": 670, "right": 2745, "bottom": 2080, "left": 905}, {"solidity": 0.9942210662181719, "top": 2110, "right": 5230, "bottom": 3525, "left": 3390}, {"solidity": 0.9946257481342824, "top": 665, "right": 5210, "bottom": 2080, "left": 3395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726135f.jpg"} -{"rects": [{"solidity": 0.9943244470389829, "top": 430, "right": 3200, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700150f.jpg"} -{"rects": [{"solidity": 0.9943245699509051, "top": 575, "right": 2835, "bottom": 3475, "left": 970}, {"solidity": 0.995936434221029, "top": 615, "right": 5300, "bottom": 2030, "left": 3445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703789f.jpg"} -{"rects": [{"solidity": 0.9943250480969092, "top": 2290, "right": 3035, "bottom": 3740, "left": 1210}, {"solidity": 0.997655003308294, "top": 510, "right": 3045, "bottom": 1930, "left": 1220}, {"solidity": 0.9952471807584016, "top": 4130, "right": 3010, "bottom": 5560, "left": 1185}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727730f.jpg"} -{"rects": [{"solidity": 0.9943255439882043, "top": 485, "right": 3000, "bottom": 1905, "left": 1165}, {"solidity": 0.9937997827661115, "top": 4160, "right": 2930, "bottom": 5560, "left": 1120}, {"solidity": 0.9962623943328426, "top": 2290, "right": 2960, "bottom": 3650, "left": 1150}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725070f.jpg"} -{"rects": [{"solidity": 0.9943269827464049, "top": 3165, "right": 3265, "bottom": 5080, "left": 560}, {"solidity": 0.9927730561384462, "top": 710, "right": 3270, "bottom": 2510, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713314f.jpg"} -{"rects": [{"solidity": 0.9943270631871771, "top": 770, "right": 2000, "bottom": 3160, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722571f.jpg"} -{"rects": [{"solidity": 0.9943271058199161, "top": 530, "right": 3355, "bottom": 2470, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717718f.jpg"} -{"rects": [{"solidity": 0.9943277889922608, "top": 365, "right": 2990, "bottom": 1960, "left": 855}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718557f.jpg"} -{"rects": [{"solidity": 0.9943280735951162, "top": 770, "right": 2025, "bottom": 3180, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723268f.jpg"} -{"rects": [{"solidity": 0.9943281445696904, "top": 325, "right": 2430, "bottom": 1510, "left": 640}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716367f.jpg"} -{"rects": [{"solidity": 0.9943294206444224, "top": 340, "right": 3180, "bottom": 1945, "left": 760}, {"solidity": 0.9962586265903329, "top": 2215, "right": 3175, "bottom": 3800, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724620f.jpg"} -{"rects": [{"solidity": 0.9943295984080901, "top": 510, "right": 5100, "bottom": 3755, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700863f.jpg"} -{"rects": [{"solidity": 0.9943302668281642, "top": 820, "right": 2055, "bottom": 3245, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720581f.jpg"} -{"rects": [{"solidity": 0.9943306463128108, "top": 715, "right": 2035, "bottom": 3130, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720123f.jpg"} -{"rects": [{"solidity": 0.9943308308462756, "top": 590, "right": 2810, "bottom": 2045, "left": 830}, {"solidity": 0.9890320811625994, "top": 570, "right": 5155, "bottom": 2025, "left": 3190}, {"solidity": 0.9937949037817358, "top": 2250, "right": 2785, "bottom": 3655, "left": 810}, {"solidity": 0.9913356832921628, "top": 2230, "right": 5105, "bottom": 3675, "left": 3205}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706761f.jpg"} -{"rects": [{"solidity": 0.9943308621155101, "top": 520, "right": 4930, "bottom": 3520, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716837f.jpg"} -{"rects": [{"solidity": 0.9943308896472267, "top": 485, "right": 5080, "bottom": 3750, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728650f.jpg"} -{"rects": [{"solidity": 0.994331237965517, "top": 590, "right": 2960, "bottom": 2015, "left": 1145}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727417f.jpg"} -{"rects": [{"solidity": 0.9943315487620331, "top": 380, "right": 3300, "bottom": 2005, "left": 845}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727867f.jpg"} -{"rects": [{"solidity": 0.9943320502059757, "top": 640, "right": 2890, "bottom": 2065, "left": 1045}, {"solidity": 0.9969920434698234, "top": 2255, "right": 5050, "bottom": 3675, "left": 3220}, {"solidity": 0.9984493863166849, "top": 650, "right": 5045, "bottom": 2065, "left": 3215}, {"solidity": 0.9945900228939732, "top": 2280, "right": 2895, "bottom": 3695, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725256f.jpg"} -{"rects": [{"solidity": 0.994332132987187, "top": 405, "right": 3190, "bottom": 1980, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725189f.jpg"} -{"rects": [{"solidity": 0.9943323568079006, "top": 905, "right": 3265, "bottom": 2775, "left": 645}, {"solidity": 0.9957335563304525, "top": 1055, "right": 5440, "bottom": 2625, "left": 3445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701467f.jpg"} -{"rects": [{"solidity": 0.9943348601954155, "top": 575, "right": 3365, "bottom": 2485, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714099f.jpg"} -{"rects": [{"solidity": 0.9943356043500982, "top": 1125, "right": 3785, "bottom": 2925, "left": 2350}, {"solidity": 0.9960372429897295, "top": 2105, "right": 2345, "bottom": 3535, "left": 555}, {"solidity": 0.9957040667506672, "top": 635, "right": 5610, "bottom": 2045, "left": 3795}, {"solidity": 0.9953085868729699, "top": 2070, "right": 5620, "bottom": 3505, "left": 3820}, {"solidity": 0.9958016555173989, "top": 645, "right": 2330, "bottom": 2065, "left": 540}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717810f.jpg"} -{"rects": [{"solidity": 0.9943356514485795, "top": 2085, "right": 2760, "bottom": 3525, "left": 945}, {"solidity": 0.9941827124014657, "top": 660, "right": 2760, "bottom": 2080, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727728f.jpg"} -{"rects": [{"solidity": 0.9943357830747496, "top": 2235, "right": 3190, "bottom": 3845, "left": 775}, {"solidity": 0.9977608004060415, "top": 410, "right": 3190, "bottom": 1995, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720557f.jpg"} -{"rects": [{"solidity": 0.9943360256697552, "top": 365, "right": 3115, "bottom": 2025, "left": 680}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723959f.jpg"} -{"rects": [{"solidity": 0.9943367569371737, "top": 520, "right": 4955, "bottom": 3605, "left": 1210}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710572f.jpg"} -{"rects": [{"solidity": 0.9943370575187317, "top": 505, "right": 4465, "bottom": 2575, "left": 890}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708232f.jpg"} -{"rects": [{"solidity": 0.9943382595705315, "top": 2210, "right": 3120, "bottom": 3840, "left": 715}, {"solidity": 0.9948604169688658, "top": 385, "right": 3125, "bottom": 2000, "left": 735}, {"solidity": 0.9961868098738765, "top": 4085, "right": 3090, "bottom": 5690, "left": 705}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701077f.jpg"} -{"rects": [{"solidity": 0.9943385525829121, "top": 455, "right": 2950, "bottom": 1870, "left": 1130}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726233f.jpg"} -{"rects": [{"solidity": 0.9943387269234353, "top": 430, "right": 2900, "bottom": 1945, "left": 1010}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702086f.jpg"} -{"rects": [{"solidity": 0.9943394667646648, "top": 515, "right": 3260, "bottom": 2240, "left": 675}, {"solidity": 0.9902066441935362, "top": 2865, "right": 3040, "bottom": 3835, "left": 870}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728109f.jpg"} -{"rects": [{"solidity": 0.99434026983764, "top": 440, "right": 2960, "bottom": 1695, "left": 815}, {"solidity": 0.9919405609869041, "top": 2015, "right": 2915, "bottom": 3235, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713233f.jpg"} -{"rects": [{"solidity": 0.9943419322251396, "top": 290, "right": 5090, "bottom": 3720, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720829f.jpg"} -{"rects": [{"solidity": 0.9943419361022153, "top": 750, "right": 2030, "bottom": 3145, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718104f.jpg"} -{"rects": [{"solidity": 0.9943423263168297, "top": 2240, "right": 2895, "bottom": 3665, "left": 1080}, {"solidity": 0.9937676205425836, "top": 4065, "right": 2835, "bottom": 5530, "left": 1145}, {"solidity": 0.9967150643712029, "top": 455, "right": 2885, "bottom": 1830, "left": 1120}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726246f.jpg"} -{"rects": [{"solidity": 0.9943431326224801, "top": 780, "right": 2040, "bottom": 3180, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721967f.jpg"} -{"rects": [{"solidity": 0.9943433669640623, "top": 755, "right": 1995, "bottom": 3140, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713000f.jpg"} -{"rects": [{"solidity": 0.9943447341686421, "top": 430, "right": 3185, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728619f.jpg"} -{"rects": [{"solidity": 0.9943464227014396, "top": 470, "right": 3035, "bottom": 1890, "left": 1220}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/726780f.jpg"} -{"rects": [{"solidity": 0.9943468035699713, "top": 595, "right": 2525, "bottom": 2095, "left": 260}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716337f.jpg"} -{"rects": [{"solidity": 0.9943474913383806, "top": 455, "right": 3195, "bottom": 2080, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734628f.jpg"} -{"rects": [{"solidity": 0.9943478654761785, "top": 1415, "right": 2165, "bottom": 3555, "left": 990}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508623.jpg"} -{"rects": [{"solidity": 0.9943482413565952, "top": 130, "right": 4985, "bottom": 3115, "left": 1045}], "shape": {"h": 3625, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708770f.jpg"} -{"rects": [{"solidity": 0.9943485008992141, "top": 480, "right": 3180, "bottom": 1905, "left": 1345}, {"solidity": 0.9952363721082399, "top": 2230, "right": 3160, "bottom": 3660, "left": 1345}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726001f.jpg"} -{"rects": [{"solidity": 0.994348944346776, "top": 355, "right": 3160, "bottom": 1945, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712016f.jpg"} -{"rects": [{"solidity": 0.9943490293704812, "top": 455, "right": 3180, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701004f.jpg"} -{"rects": [{"solidity": 0.9943490659809766, "top": 3070, "right": 3260, "bottom": 4960, "left": 570}, {"solidity": 0.9936701527085764, "top": 635, "right": 3270, "bottom": 2445, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711563f.jpg"} -{"rects": [{"solidity": 0.9943496995514153, "top": 510, "right": 2295, "bottom": 1950, "left": 465}, {"solidity": 0.9920955072585714, "top": 2160, "right": 2270, "bottom": 3580, "left": 455}, {"solidity": 0.9913996446029608, "top": 1230, "right": 3870, "bottom": 2660, "left": 2450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725626f.jpg"} -{"rects": [{"solidity": 0.9943497493560072, "top": 1370, "right": 3180, "bottom": 4695, "left": 870}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721381f.jpg"} -{"rects": [{"solidity": 0.9943501525031553, "top": 840, "right": 3790, "bottom": 3265, "left": 2195}, {"solidity": 0.9957205467043214, "top": 850, "right": 1930, "bottom": 3275, "left": 360}, {"solidity": 0.9956695626325817, "top": 835, "right": 5625, "bottom": 3265, "left": 4085}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731813f.jpg"} -{"rects": [{"solidity": 0.9943507288744914, "top": 495, "right": 3150, "bottom": 1895, "left": 1320}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725841f.jpg"} -{"rects": [{"solidity": 0.9943514671346357, "top": 795, "right": 3885, "bottom": 3220, "left": 2255}, {"solidity": 0.9966560933050512, "top": 795, "right": 2060, "bottom": 3210, "left": 445}, {"solidity": 0.9958789910048546, "top": 825, "right": 5700, "bottom": 3235, "left": 4080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733896f.jpg"} -{"rects": [{"solidity": 0.9943518676092485, "top": 410, "right": 3025, "bottom": 1855, "left": 1115}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720007f.jpg"} -{"rects": [{"solidity": 0.9943519065474291, "top": 450, "right": 3135, "bottom": 3695, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714843f.jpg"} -{"rects": [{"solidity": 0.9943524471070597, "top": 345, "right": 2820, "bottom": 1760, "left": 1010}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708589f.jpg"} -{"rects": [{"solidity": 0.9943530426036353, "top": 2225, "right": 5080, "bottom": 3675, "left": 3255}, {"solidity": 0.9966269724878277, "top": 620, "right": 5060, "bottom": 2050, "left": 3255}, {"solidity": 0.9959337046889774, "top": 2225, "right": 2825, "bottom": 3650, "left": 1020}, {"solidity": 0.9944535672294129, "top": 605, "right": 2830, "bottom": 2015, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727768f.jpg"} -{"rects": [{"solidity": 0.9943533908611802, "top": 755, "right": 1525, "bottom": 2560, "left": 315}], "shape": {"h": 3015, "w": 4675}, "file": "/usr/local/google/home/danvk/milstein/715945f.jpg"} -{"rects": [{"solidity": 0.9943534838408239, "top": 735, "right": 2725, "bottom": 2145, "left": 920}, {"solidity": 0.9947751645137705, "top": 735, "right": 5230, "bottom": 2125, "left": 3430}, {"solidity": 0.9920854200519779, "top": 2200, "right": 2730, "bottom": 3575, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725503f.jpg"} -{"rects": [{"solidity": 0.9943535068358931, "top": 1780, "right": 2820, "bottom": 3185, "left": 1005}, {"solidity": 0.994532886362138, "top": 210, "right": 2825, "bottom": 1605, "left": 1040}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725783f.jpg"} -{"rects": [{"solidity": 0.9943535115639689, "top": 665, "right": 5210, "bottom": 2085, "left": 3400}, {"solidity": 0.9944137113503903, "top": 2080, "right": 2735, "bottom": 3495, "left": 925}, {"solidity": 0.9961478892816013, "top": 2105, "right": 5215, "bottom": 3520, "left": 3415}, {"solidity": 0.9937653916892671, "top": 670, "right": 2540, "bottom": 2065, "left": 1085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726568f.jpg"} -{"rects": [{"solidity": 0.9943536365385933, "top": 2290, "right": 3130, "bottom": 3905, "left": 720}, {"solidity": 0.9942894109456788, "top": 415, "right": 3125, "bottom": 2020, "left": 720}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728783f.jpg"} -{"rects": [{"solidity": 0.9943543855382886, "top": 805, "right": 2045, "bottom": 3205, "left": 440}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722547f.jpg"} -{"rects": [{"solidity": 0.9943544679739253, "top": 825, "right": 2065, "bottom": 3225, "left": 470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712682f.jpg"} -{"rects": [{"solidity": 0.9943551315485426, "top": 655, "right": 2780, "bottom": 3055, "left": 1170}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708062f.jpg"} -{"rects": [{"solidity": 0.994355402376419, "top": 2100, "right": 2665, "bottom": 3540, "left": 835}, {"solidity": 0.9949006847651887, "top": 660, "right": 2695, "bottom": 2100, "left": 855}, {"solidity": 0.9931543564750838, "top": 680, "right": 5205, "bottom": 2120, "left": 3360}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706981f.jpg"} -{"rects": [{"solidity": 0.994356034102553, "top": 500, "right": 3140, "bottom": 2105, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711991f.jpg"} -{"rects": [{"solidity": 0.9943574026866783, "top": 2090, "right": 2680, "bottom": 3525, "left": 825}, {"solidity": 0.9957036425430595, "top": 650, "right": 2665, "bottom": 2080, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705227f.jpg"} -{"rects": [{"solidity": 0.9943583901686072, "top": 555, "right": 2590, "bottom": 1975, "left": 780}, {"solidity": 0.9934985451991573, "top": 2000, "right": 2575, "bottom": 3415, "left": 795}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727984f.jpg"} -{"rects": [{"solidity": 0.9943591225744726, "top": 815, "right": 2130, "bottom": 3200, "left": 535}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707751f.jpg"} -{"rects": [{"solidity": 0.994360908382689, "top": 825, "right": 2075, "bottom": 3240, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717392f.jpg"} -{"rects": [{"solidity": 0.9943618408874693, "top": 555, "right": 5040, "bottom": 3600, "left": 1190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709104f.jpg"} -{"rects": [{"solidity": 0.9943619465913611, "top": 780, "right": 2040, "bottom": 3170, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732465f.jpg"} -{"rects": [{"solidity": 0.9943625534285316, "top": 555, "right": 3535, "bottom": 2465, "left": 1060}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716410f.jpg"} -{"rects": [{"solidity": 0.994362849138297, "top": 725, "right": 2655, "bottom": 3560, "left": 820}, {"solidity": 0.9995443627268901, "top": 685, "right": 5185, "bottom": 2085, "left": 3370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704427f.jpg"} -{"rects": [{"solidity": 0.9943630755269346, "top": 465, "right": 5010, "bottom": 3490, "left": 1200}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706503f.jpg"} -{"rects": [{"solidity": 0.9943630882276691, "top": 910, "right": 3205, "bottom": 2010, "left": 1590}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509519.jpg"} -{"rects": [{"solidity": 0.9943647049246258, "top": 645, "right": 4860, "bottom": 3405, "left": 1080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734057f.jpg"} -{"rects": [{"solidity": 0.994365229199788, "top": 635, "right": 1855, "bottom": 2760, "left": 420}], "shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465652.jpg"} -{"rects": [{"solidity": 0.9943655987621439, "top": 2215, "right": 3325, "bottom": 3885, "left": 865}, {"solidity": 0.9933502937712684, "top": 445, "right": 3320, "bottom": 2065, "left": 910}, {"solidity": 0.9949625228789527, "top": 4085, "right": 3290, "bottom": 5740, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734104f.jpg"} -{"rects": [{"solidity": 0.9943656530208149, "top": 2280, "right": 3265, "bottom": 3905, "left": 830}, {"solidity": 0.996128990460148, "top": 415, "right": 3250, "bottom": 2025, "left": 835}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733273f.jpg"} -{"rects": [{"solidity": 0.9943657651890969, "top": 865, "right": 2080, "bottom": 3250, "left": 480}, {"solidity": 0.9985038446150174, "top": 855, "right": 3945, "bottom": 3230, "left": 2370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713177f.jpg"} -{"rects": [{"solidity": 0.9943668727089421, "top": 2105, "right": 2750, "bottom": 3525, "left": 920}, {"solidity": 0.9947111412357822, "top": 665, "right": 5220, "bottom": 2075, "left": 3405}, {"solidity": 0.9950145800018813, "top": 675, "right": 2725, "bottom": 2090, "left": 915}, {"solidity": 0.9957371710592852, "top": 2100, "right": 5200, "bottom": 3505, "left": 3415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726589f.jpg"} -{"rects": [{"solidity": 0.9943670791027035, "top": 680, "right": 2105, "bottom": 3435, "left": 290}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711793f.jpg"} -{"rects": [{"solidity": 0.9943671827166973, "top": 575, "right": 1555, "bottom": 2370, "left": 340}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716450f.jpg"} -{"rects": [{"solidity": 0.9943678859729118, "top": 2290, "right": 2945, "bottom": 3845, "left": 1025}, {"solidity": 0.9968867728193607, "top": 4140, "right": 2950, "bottom": 5660, "left": 995}, {"solidity": 0.9981455112846704, "top": 445, "right": 2930, "bottom": 1995, "left": 1020}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731421f.jpg"} -{"rects": [{"solidity": 0.9943693033185919, "top": 605, "right": 2960, "bottom": 2405, "left": 1765}, {"solidity": 0.9957574186249323, "top": 595, "right": 1575, "bottom": 2390, "left": 380}, {"solidity": 0.9953607603594816, "top": 615, "right": 4320, "bottom": 2405, "left": 3130}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715851f.jpg"} -{"rects": [{"solidity": 0.9943697814169823, "top": 445, "right": 3170, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712383f.jpg"} -{"rects": [{"solidity": 0.9943698250710008, "top": 1110, "right": 2555, "bottom": 4105, "left": 280}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507731.jpg"} -{"rects": [{"solidity": 0.9943698464387412, "top": 985, "right": 3420, "bottom": 5005, "left": 230}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700713f.jpg"} -{"rects": [{"solidity": 0.994369995910141, "top": 265, "right": 5060, "bottom": 3665, "left": 1010}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721595f.jpg"} -{"rects": [{"solidity": 0.9943700953424233, "top": 545, "right": 3325, "bottom": 2465, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714142f.jpg"} -{"rects": [{"solidity": 0.9943708413346458, "top": 645, "right": 3240, "bottom": 2450, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710032f.jpg"} -{"rects": [{"solidity": 0.9943712596160119, "top": 635, "right": 1595, "bottom": 2420, "left": 395}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715934f.jpg"} -{"rects": [{"solidity": 0.9943717687144337, "top": 455, "right": 5080, "bottom": 3515, "left": 1230}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727877f.jpg"} -{"rects": [{"solidity": 0.9943721021998619, "top": 2205, "right": 3075, "bottom": 3620, "left": 1260}, {"solidity": 0.996689946710136, "top": 495, "right": 3070, "bottom": 1895, "left": 1260}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727410f.jpg"} -{"rects": [{"solidity": 0.9943731404598588, "top": 335, "right": 1995, "bottom": 1220, "left": 845}], "shape": {"h": 3950, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727112f.jpg"} -{"rects": [{"solidity": 0.9943740349482503, "top": 610, "right": 4465, "bottom": 3660, "left": 2560}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723863f.jpg"} -{"rects": [{"solidity": 0.9943746613467317, "top": 810, "right": 2035, "bottom": 3205, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724235f.jpg"} -{"rects": [{"solidity": 0.9943747787423798, "top": 800, "right": 4030, "bottom": 3215, "left": 2405}, {"solidity": 0.9959940269831363, "top": 795, "right": 5835, "bottom": 3200, "left": 4225}, {"solidity": 0.9940303036299711, "top": 815, "right": 2150, "bottom": 3215, "left": 550}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717913f.jpg"} -{"rects": [{"solidity": 0.994375839847773, "top": 535, "right": 2705, "bottom": 3720, "left": 660}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721548f.jpg"} -{"rects": [{"solidity": 0.9943759159945293, "top": 2220, "right": 3170, "bottom": 3835, "left": 760}, {"solidity": 0.9958412937020101, "top": 485, "right": 3155, "bottom": 2085, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733219f.jpg"} -{"rects": [{"solidity": 0.9943764344182883, "top": 935, "right": 1870, "bottom": 2920, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701469f.jpg"} -{"rects": [{"solidity": 0.9943775675815882, "top": 365, "right": 3205, "bottom": 2300, "left": 530}, {"solidity": 0.9945258466851229, "top": 2450, "right": 2820, "bottom": 3900, "left": 970}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710380f.jpg"} -{"rects": [{"solidity": 0.9943778026765951, "top": 710, "right": 3515, "bottom": 2690, "left": 915}], "shape": {"h": 3015, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/1509643.jpg"} -{"rects": [{"solidity": 0.9943781194873715, "top": 380, "right": 3180, "bottom": 2010, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713675f.jpg"} -{"rects": [{"solidity": 0.9943782919062495, "top": 550, "right": 3305, "bottom": 2445, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707873f.jpg"} -{"rects": [{"solidity": 0.9943784438988491, "top": 475, "right": 3305, "bottom": 3920, "left": 350}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721651f.jpg"} -{"rects": [{"solidity": 0.9943792189505942, "top": 985, "right": 3285, "bottom": 5070, "left": 310}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723261f.jpg"} -{"rects": [{"solidity": 0.9943793202342214, "top": 2620, "right": 3425, "bottom": 4630, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719195f.jpg"} -{"rects": [{"solidity": 0.9943795097769209, "top": 965, "right": 3220, "bottom": 4960, "left": 355}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723471f.jpg"} -{"rects": [{"solidity": 0.9943798215333092, "top": 615, "right": 5005, "bottom": 3610, "left": 1245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721213f.jpg"} -{"rects": [{"solidity": 0.9943809571335895, "top": 2315, "right": 3235, "bottom": 3910, "left": 830}, {"solidity": 0.9953498960505921, "top": 510, "right": 3230, "bottom": 2085, "left": 840}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710640f.jpg"} -{"rects": [{"solidity": 0.9943809719276642, "top": 890, "right": 1855, "bottom": 2910, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720636f.jpg"} -{"rects": [{"solidity": 0.9943816543470312, "top": 525, "right": 2740, "bottom": 3445, "left": 680}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732974f.jpg"} -{"rects": [{"solidity": 0.9943817517755784, "top": 2245, "right": 3180, "bottom": 3875, "left": 750}, {"solidity": 0.9968811082396464, "top": 415, "right": 3165, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734697f.jpg"} -{"rects": [{"solidity": 0.9943822395687415, "top": 4135, "right": 3000, "bottom": 5575, "left": 1135}, {"solidity": 0.9950054983117519, "top": 510, "right": 3045, "bottom": 1930, "left": 1190}, {"solidity": 0.9969646543268316, "top": 2370, "right": 3030, "bottom": 3780, "left": 1195}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725524f.jpg"} -{"rects": [{"solidity": 0.9943826532634109, "top": 580, "right": 2780, "bottom": 2970, "left": 1175}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/707584f.jpg"} -{"rects": [{"solidity": 0.9943828677466272, "top": 445, "right": 3180, "bottom": 1855, "left": 1350}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725745f.jpg"} -{"rects": [{"solidity": 0.9943830484548447, "top": 500, "right": 3075, "bottom": 1915, "left": 1260}, {"solidity": 0.9928583810019067, "top": 2290, "right": 3065, "bottom": 3705, "left": 1245}, {"solidity": 0.9927168217760486, "top": 4045, "right": 3050, "bottom": 5450, "left": 1245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725053f.jpg"} -{"rects": [{"solidity": 0.9943839177630927, "top": 2175, "right": 3005, "bottom": 3795, "left": 595}, {"solidity": 0.9946910465308212, "top": 3990, "right": 2935, "bottom": 5580, "left": 565}, {"solidity": 0.9949978586723769, "top": 420, "right": 2975, "bottom": 2025, "left": 610}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721472f.jpg"} -{"rects": [{"solidity": 0.9943851948660412, "top": 3180, "right": 3220, "bottom": 5095, "left": 515}, {"solidity": 0.994838183230018, "top": 700, "right": 3270, "bottom": 2540, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715224f.jpg"} -{"rects": [{"solidity": 0.9943856868836697, "top": 670, "right": 2770, "bottom": 2085, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726600f.jpg"} -{"rects": [{"solidity": 0.9943858683830021, "top": 365, "right": 3295, "bottom": 2020, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706095f.jpg"} -{"rects": [{"solidity": 0.9943877350197462, "top": 2240, "right": 3155, "bottom": 3845, "left": 745}, {"solidity": 0.9960805367359106, "top": 380, "right": 3135, "bottom": 1975, "left": 735}, {"solidity": 0.9961279427964564, "top": 4110, "right": 3165, "bottom": 5705, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724166f.jpg"} -{"rects": [{"solidity": 0.9943902246540748, "top": 435, "right": 3110, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713115f.jpg"} -{"rects": [{"solidity": 0.9943913466491158, "top": 2295, "right": 3120, "bottom": 3865, "left": 720}, {"solidity": 0.9984511643321408, "top": 430, "right": 3135, "bottom": 1990, "left": 750}, {"solidity": 0.9985758696159583, "top": 4165, "right": 3070, "bottom": 5720, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730913f.jpg"} -{"rects": [{"solidity": 0.9943921347754467, "top": 1015, "right": 3390, "bottom": 4920, "left": 345}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724108f.jpg"} -{"rects": [{"solidity": 0.994392875503316, "top": 4130, "right": 3205, "bottom": 5760, "left": 770}, {"solidity": 0.9970339867916156, "top": 2300, "right": 3215, "bottom": 3905, "left": 805}, {"solidity": 0.9968519380360349, "top": 445, "right": 3230, "bottom": 2035, "left": 840}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730702f.jpg"} -{"rects": [{"solidity": 0.9943935810654964, "top": 495, "right": 5070, "bottom": 3635, "left": 1095}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731419f.jpg"} -{"rects": [{"solidity": 0.9943937353793458, "top": 465, "right": 3145, "bottom": 2165, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700596f.jpg"} -{"rects": [{"solidity": 0.9943939914584459, "top": 4155, "right": 3095, "bottom": 5770, "left": 685}, {"solidity": 0.996003471194736, "top": 2295, "right": 3115, "bottom": 3880, "left": 715}, {"solidity": 0.9959149642894214, "top": 415, "right": 3105, "bottom": 1985, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728598f.jpg"} -{"rects": [{"solidity": 0.994394690688311, "top": 300, "right": 2830, "bottom": 1450, "left": 935}, {"solidity": 0.9960674900484648, "top": 1635, "right": 2825, "bottom": 2755, "left": 945}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717778f.jpg"} -{"rects": [{"solidity": 0.9943952530687963, "top": 645, "right": 3155, "bottom": 2240, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710109f.jpg"} -{"rects": [{"solidity": 0.9943955069184538, "top": 140, "right": 3375, "bottom": 2080, "left": 615}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706248f.jpg"} -{"rects": [{"solidity": 0.9943963915155257, "top": 405, "right": 3160, "bottom": 2070, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706680f.jpg"} -{"rects": [{"solidity": 0.9943964408909416, "top": 495, "right": 2965, "bottom": 1910, "left": 1120}, {"solidity": 0.9962354585850517, "top": 2215, "right": 2945, "bottom": 3625, "left": 1150}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725530f.jpg"} -{"rects": [{"solidity": 0.9943966320913025, "top": 740, "right": 2745, "bottom": 2180, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704389f.jpg"} -{"rects": [{"solidity": 0.9943971593828641, "top": 770, "right": 1990, "bottom": 3165, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722715f.jpg"} -{"rects": [{"solidity": 0.994397300799059, "top": 2230, "right": 2945, "bottom": 3780, "left": 1090}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/715006f.jpg"} -{"rects": [{"solidity": 0.9943973826040206, "top": 755, "right": 2030, "bottom": 3165, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713078f.jpg"} -{"rects": [{"solidity": 0.9943973921674333, "top": 460, "right": 2915, "bottom": 1855, "left": 1110}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727314f.jpg"} -{"rects": [{"solidity": 0.9943978520674515, "top": 420, "right": 3165, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711981f.jpg"} -{"rects": [{"solidity": 0.9943981260477147, "top": 515, "right": 4945, "bottom": 3550, "left": 1195}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712902f.jpg"} -{"rects": [{"solidity": 0.9943982722381843, "top": 385, "right": 3180, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715076f.jpg"} -{"rects": [{"solidity": 0.994398487459399, "top": 545, "right": 3300, "bottom": 2580, "left": 475}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708026f.jpg"} -{"rects": [{"solidity": 0.9943985292412674, "top": 430, "right": 3200, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700818f.jpg"} -{"rects": [{"solidity": 0.9943986874487285, "top": 490, "right": 3170, "bottom": 2090, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701899f.jpg"} -{"rects": [{"solidity": 0.9943987235879207, "top": 535, "right": 3335, "bottom": 2460, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707895f.jpg"} -{"rects": [{"solidity": 0.9943988234253651, "top": 745, "right": 2085, "bottom": 3160, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709716f.jpg"} -{"rects": [{"solidity": 0.994398838883389, "top": 420, "right": 4855, "bottom": 3680, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733574f.jpg"} -{"rects": [{"solidity": 0.9944000183605956, "top": 520, "right": 3135, "bottom": 2145, "left": 720}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/723095f.jpg"} -{"rects": [{"solidity": 0.994400208548509, "top": 2250, "right": 3175, "bottom": 3855, "left": 775}, {"solidity": 0.9951982384698033, "top": 420, "right": 3165, "bottom": 2010, "left": 770}, {"solidity": 0.9942744284403303, "top": 4115, "right": 3165, "bottom": 5715, "left": 765}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/731301f.jpg"} -{"rects": [{"solidity": 0.9944006248755609, "top": 475, "right": 2210, "bottom": 2805, "left": 445}], "shape": {"h": 6005, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/465690.jpg"} -{"rects": [{"solidity": 0.9944007634699503, "top": 550, "right": 4185, "bottom": 2895, "left": 995}], "shape": {"h": 4440, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/708386f.jpg"} -{"rects": [{"solidity": 0.9944010685885507, "top": 830, "right": 2030, "bottom": 3230, "left": 425}, {"solidity": 0.9503912228682269, "top": 1260, "right": 3820, "bottom": 3110, "left": 2415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717400f.jpg"} -{"rects": [{"solidity": 0.9944012554961064, "top": 435, "right": 3140, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719357f.jpg"} -{"rects": [{"solidity": 0.9944016417932379, "top": 455, "right": 2990, "bottom": 1870, "left": 1150}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/725639f.jpg"} -{"rects": [{"solidity": 0.9944019786460931, "top": 825, "right": 2070, "bottom": 3200, "left": 500}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721037f.jpg"} -{"rects": [{"solidity": 0.9944025136859836, "top": 420, "right": 3220, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719772f.jpg"} -{"rects": [{"solidity": 0.9944029820962477, "top": 805, "right": 4730, "bottom": 3165, "left": 1350}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701653f.jpg"} -{"rects": [{"solidity": 0.9944030846084827, "top": 630, "right": 5185, "bottom": 2045, "left": 3340}, {"solidity": 0.9939595023176384, "top": 2210, "right": 5210, "bottom": 3655, "left": 3365}, {"solidity": 0.9969103296812998, "top": 635, "right": 2765, "bottom": 2045, "left": 975}, {"solidity": 0.9988019363627518, "top": 2255, "right": 2790, "bottom": 3390, "left": 965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726348f.jpg"} -{"rects": [{"solidity": 0.99440352906029, "top": 595, "right": 3295, "bottom": 5550, "left": 455}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720860f.jpg"} -{"rects": [{"solidity": 0.9944038175297095, "top": 1065, "right": 5205, "bottom": 3385, "left": 1950}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/708337f.jpg"} -{"rects": [{"solidity": 0.9944039270092193, "top": 940, "right": 3700, "bottom": 3105, "left": 2330}, {"solidity": 0.9790998977156495, "top": 940, "right": 1990, "bottom": 3105, "left": 620}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710097f.jpg"} -{"rects": [{"solidity": 0.994404386571277, "top": 1710, "right": 4895, "bottom": 3395, "left": 850}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725357f.jpg"} -{"rects": [{"solidity": 0.9944052854722044, "top": 760, "right": 2005, "bottom": 3155, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708241f.jpg"} -{"rects": [{"solidity": 0.994406122044107, "top": 2230, "right": 3150, "bottom": 3860, "left": 745}, {"solidity": 0.9951935373505661, "top": 375, "right": 3125, "bottom": 1975, "left": 745}, {"solidity": 0.9957058400575217, "top": 4070, "right": 3135, "bottom": 5665, "left": 755}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728148f.jpg"} -{"rects": [{"solidity": 0.9944068052157757, "top": 400, "right": 2920, "bottom": 1830, "left": 1085}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719954f.jpg"} -{"rects": [{"solidity": 0.9944068466708528, "top": 3030, "right": 2365, "bottom": 4235, "left": 555}, {"solidity": 0.9945168921674883, "top": 1675, "right": 2370, "bottom": 2875, "left": 565}, {"solidity": 0.9947097979680019, "top": 335, "right": 2375, "bottom": 1535, "left": 570}], "shape": {"h": 4600, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/724344f.jpg"} -{"rects": [{"solidity": 0.9944071208556668, "top": 2255, "right": 2910, "bottom": 3690, "left": 1090}, {"solidity": 0.9960188590656546, "top": 600, "right": 5225, "bottom": 2030, "left": 3415}, {"solidity": 0.9935477563789227, "top": 610, "right": 2885, "bottom": 2030, "left": 1045}, {"solidity": 0.99464195135404, "top": 2220, "right": 5245, "bottom": 3640, "left": 3425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726466f.jpg"} -{"rects": [{"solidity": 0.9944079508057009, "top": 475, "right": 3200, "bottom": 2080, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723603f.jpg"} -{"rects": [{"solidity": 0.9944084882392863, "top": 770, "right": 2005, "bottom": 3165, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709888f.jpg"} -{"rects": [{"solidity": 0.9944093054222883, "top": 415, "right": 3200, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/718017f.jpg"} -{"rects": [{"solidity": 0.9944093713321717, "top": 400, "right": 3245, "bottom": 2015, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723797f.jpg"} -{"rects": [{"solidity": 0.9944099851970579, "top": 495, "right": 3120, "bottom": 2105, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714815f.jpg"} -{"rects": [{"solidity": 0.9944100265509465, "top": 915, "right": 3115, "bottom": 2175, "left": 1280}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509607.jpg"} -{"rects": [{"solidity": 0.9944100443600817, "top": 455, "right": 2990, "bottom": 2005, "left": 1045}, {"solidity": 0.9929127211640522, "top": 2295, "right": 2985, "bottom": 3865, "left": 1035}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/701524f.jpg"} -{"rects": [{"solidity": 0.9944102086070697, "top": 330, "right": 3260, "bottom": 1970, "left": 810}, {"solidity": 0.9943250692220337, "top": 2150, "right": 3265, "bottom": 3780, "left": 825}, {"solidity": 0.9956932356963029, "top": 4005, "right": 3260, "bottom": 5635, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701037f.jpg"} -{"rects": [{"solidity": 0.9944116883241798, "top": 555, "right": 3085, "bottom": 2005, "left": 1250}, {"solidity": 0.9944133806819562, "top": 2375, "right": 3075, "bottom": 3805, "left": 1260}, {"solidity": 0.9954885235656288, "top": 4160, "right": 3070, "bottom": 5595, "left": 1265}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726875f.jpg"} -{"rects": [{"solidity": 0.9944118360417172, "top": 2120, "right": 5260, "bottom": 3560, "left": 3435}, {"solidity": 0.9955460494437456, "top": 2030, "right": 2650, "bottom": 3455, "left": 840}, {"solidity": 0.9947029517752004, "top": 620, "right": 5265, "bottom": 2045, "left": 3455}, {"solidity": 0.996845490380535, "top": 600, "right": 2660, "bottom": 1955, "left": 840}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706908f.jpg"} -{"rects": [{"solidity": 0.9944120560952403, "top": 415, "right": 3220, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700429f.jpg"} -{"rects": [{"solidity": 0.9944128294527044, "top": 800, "right": 2015, "bottom": 3185, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724541f.jpg"} -{"rects": [{"solidity": 0.9944128805365933, "top": 565, "right": 5010, "bottom": 3705, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731219f.jpg"} -{"rects": [{"solidity": 0.9944143713845991, "top": 705, "right": 2790, "bottom": 3095, "left": 1185}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708124f.jpg"} -{"rects": [{"solidity": 0.9944145762336528, "top": 1425, "right": 1835, "bottom": 2325, "left": 690}, {"solidity": 0.9934193468732638, "top": 400, "right": 1835, "bottom": 1300, "left": 690}, {"solidity": 0.9982192667862124, "top": 410, "right": 3200, "bottom": 1305, "left": 2065}, {"solidity": 0.993843579465278, "top": 1435, "right": 3210, "bottom": 2325, "left": 2065}], "shape": {"h": 2535, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/727057f.jpg"} -{"rects": [{"solidity": 0.9944152431011827, "top": 645, "right": 3650, "bottom": 2500, "left": 1105}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508887.jpg"} -{"rects": [{"solidity": 0.9944164234746378, "top": 475, "right": 3650, "bottom": 4215, "left": 830}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708891f.jpg"} -{"rects": [{"solidity": 0.994416768620347, "top": 605, "right": 5700, "bottom": 1775, "left": 4100}, {"solidity": 0.9810379457054619, "top": 2120, "right": 2050, "bottom": 3295, "left": 520}, {"solidity": 0.9832431284376122, "top": 595, "right": 3810, "bottom": 1760, "left": 2300}, {"solidity": 0.9927268096836049, "top": 635, "right": 2030, "bottom": 1750, "left": 495}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732794f.jpg"} -{"rects": [{"solidity": 0.9944171720088555, "top": 770, "right": 2210, "bottom": 3165, "left": 625}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708135f.jpg"} -{"rects": [{"solidity": 0.9944171725680425, "top": 850, "right": 3085, "bottom": 2665, "left": 1865}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507620.jpg"} -{"rects": [{"solidity": 0.994417285785853, "top": 1095, "right": 5550, "bottom": 2730, "left": 3140}, {"solidity": 0.9962570095692146, "top": 1115, "right": 2945, "bottom": 2685, "left": 575}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733758f.jpg"} -{"rects": [{"solidity": 0.9944176491604144, "top": 505, "right": 5005, "bottom": 3565, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721783f.jpg"} -{"rects": [{"solidity": 0.9944186212541146, "top": 565, "right": 3325, "bottom": 2435, "left": 680}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712723f.jpg"} -{"rects": [{"solidity": 0.9944191549851276, "top": 410, "right": 3145, "bottom": 2025, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724184f.jpg"} -{"rects": [{"solidity": 0.9944192479655184, "top": 300, "right": 2010, "bottom": 1330, "left": 475}], "shape": {"h": 3965, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727165f.jpg"} -{"rects": [{"solidity": 0.9944195082517611, "top": 400, "right": 3180, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734612f.jpg"} -{"rects": [{"solidity": 0.9944197334632262, "top": 425, "right": 3210, "bottom": 3840, "left": 550}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714727f.jpg"} -{"rects": [{"solidity": 0.9944202324352879, "top": 565, "right": 2945, "bottom": 2380, "left": 1645}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507681.jpg"} -{"rects": [{"solidity": 0.9944210638856221, "top": 735, "right": 2040, "bottom": 3160, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723358f.jpg"} -{"rects": [{"solidity": 0.9944213503874062, "top": 585, "right": 2665, "bottom": 2030, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707002f.jpg"} -{"rects": [{"solidity": 0.9944217328541745, "top": 1165, "right": 2600, "bottom": 3685, "left": 445}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507556.jpg"} -{"rects": [{"solidity": 0.9944221427406297, "top": 905, "right": 2035, "bottom": 2915, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702543f.jpg"} -{"rects": [{"solidity": 0.9944221468515746, "top": 665, "right": 2775, "bottom": 2105, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706543f.jpg"} -{"rects": [{"solidity": 0.9944225811516468, "top": 520, "right": 5030, "bottom": 3675, "left": 1070}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731123f.jpg"} -{"rects": [{"solidity": 0.9944232521350834, "top": 440, "right": 2885, "bottom": 1835, "left": 1070}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707769f.jpg"} -{"rects": [{"solidity": 0.9944237561328072, "top": 535, "right": 5045, "bottom": 3625, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701794f.jpg"} -{"rects": [{"solidity": 0.9944238213336466, "top": 2280, "right": 3210, "bottom": 3950, "left": 750}, {"solidity": 0.9954591804218978, "top": 395, "right": 3225, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720549f.jpg"} -{"rects": [{"solidity": 0.9944239884136289, "top": 420, "right": 3285, "bottom": 3845, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715220f.jpg"} -{"rects": [{"solidity": 0.9944243913677905, "top": 575, "right": 3070, "bottom": 3420, "left": 1040}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732554f.jpg"} -{"rects": [{"solidity": 0.9944246304218246, "top": 400, "right": 3220, "bottom": 2010, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700895f.jpg"} -{"rects": [{"solidity": 0.9944251140867495, "top": 655, "right": 2665, "bottom": 2090, "left": 830}, {"solidity": 0.9943354884351603, "top": 2155, "right": 2645, "bottom": 3560, "left": 815}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706786f.jpg"} -{"rects": [{"solidity": 0.9944257353140871, "top": 190, "right": 3155, "bottom": 1775, "left": 795}, {"solidity": 0.9950387763509035, "top": 1885, "right": 2985, "bottom": 3280, "left": 955}, {"solidity": 0.9957836099377544, "top": 3400, "right": 2690, "bottom": 4540, "left": 1240}, {"solidity": 0.9945451679016238, "top": 4655, "right": 2680, "bottom": 5770, "left": 1235}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722739f.jpg"} -{"rects": [{"solidity": 0.9944262563825632, "top": 2220, "right": 3070, "bottom": 3675, "left": 1260}, {"solidity": 0.99614129410481, "top": 430, "right": 3075, "bottom": 1850, "left": 1275}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726885f.jpg"} -{"rects": [{"solidity": 0.9944287322910939, "top": 455, "right": 3210, "bottom": 2060, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711936f.jpg"} -{"rects": [{"solidity": 0.9944291863885155, "top": 730, "right": 2680, "bottom": 1800, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734072f.jpg"} -{"rects": [{"solidity": 0.9944292771874129, "top": 3240, "right": 3165, "bottom": 5115, "left": 485}, {"solidity": 0.9952019213474824, "top": 760, "right": 3185, "bottom": 2580, "left": 545}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715361f.jpg"} -{"rects": [{"solidity": 0.9944312625006654, "top": 675, "right": 3750, "bottom": 2845, "left": 695}], "shape": {"h": 6825, "w": 4390}, "file": "/usr/local/google/home/danvk/milstein/711553f.jpg"} -{"rects": [{"solidity": 0.994431656348683, "top": 600, "right": 5025, "bottom": 3605, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722119f.jpg"} -{"rects": [{"solidity": 0.9944328518907205, "top": 420, "right": 3235, "bottom": 3890, "left": 530}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731748f.jpg"} -{"rects": [{"solidity": 0.9944332672942935, "top": 1165, "right": 3400, "bottom": 5095, "left": 255}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715613f.jpg"} -{"rects": [{"solidity": 0.9944336563247458, "top": 4110, "right": 2970, "bottom": 5550, "left": 1115}, {"solidity": 0.9974722290792397, "top": 2335, "right": 3000, "bottom": 3735, "left": 1175}, {"solidity": 0.9968194545897249, "top": 555, "right": 2995, "bottom": 1930, "left": 1185}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727394f.jpg"} -{"rects": [{"solidity": 0.9944341620395845, "top": 430, "right": 5250, "bottom": 3435, "left": 1465}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733437f.jpg"} -{"rects": [{"solidity": 0.9944342690539378, "top": 1035, "right": 3105, "bottom": 3240, "left": 1565}], "shape": {"h": 5985, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465598.jpg"} -{"rects": [{"solidity": 0.9944353632664418, "top": 605, "right": 2800, "bottom": 2010, "left": 965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705822f.jpg"} -{"rects": [{"solidity": 0.9944364262768285, "top": 420, "right": 3140, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705829f.jpg"} -{"rects": [{"solidity": 0.9944368262037749, "top": 570, "right": 1215, "bottom": 1775, "left": 265}, {"solidity": 0.9930398709380042, "top": 580, "right": 2165, "bottom": 1770, "left": 1235}], "shape": {"h": 3920, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/726219f.jpg"} -{"rects": [{"solidity": 0.9944369963363996, "top": 840, "right": 4660, "bottom": 3215, "left": 1395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700854f.jpg"} -{"rects": [{"solidity": 0.994437011478065, "top": 790, "right": 2285, "bottom": 1745, "left": 1335}, {"solidity": 0.997166770262652, "top": 2050, "right": 4160, "bottom": 2965, "left": 3200}, {"solidity": 0.9918084528545633, "top": 785, "right": 3435, "bottom": 1770, "left": 2545}, {"solidity": 0.9921802716012535, "top": 815, "right": 4585, "bottom": 1770, "left": 3685}, {"solidity": 0.992129695084594, "top": 2050, "right": 2795, "bottom": 2960, "left": 1905}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732958f.jpg"} -{"rects": [{"solidity": 0.9944383461397731, "top": 2280, "right": 2915, "bottom": 3715, "left": 1095}, {"solidity": 0.9946734872212786, "top": 465, "right": 2910, "bottom": 1880, "left": 1090}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725917f.jpg"} -{"rects": [{"solidity": 0.9944384261555959, "top": 540, "right": 3100, "bottom": 2120, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718475f.jpg"} -{"rects": [{"solidity": 0.9944392266088027, "top": 800, "right": 2085, "bottom": 3220, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721864f.jpg"} -{"rects": [{"solidity": 0.9944393346633158, "top": 790, "right": 2065, "bottom": 3205, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707509f.jpg"} -{"rects": [{"solidity": 0.9944397304309515, "top": 485, "right": 3970, "bottom": 2580, "left": 2480}, {"solidity": 0.9928832908842244, "top": 470, "right": 2190, "bottom": 2550, "left": 710}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716152f.jpg"} -{"rects": [{"solidity": 0.9944399018806214, "top": 795, "right": 2000, "bottom": 3190, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713072f.jpg"} -{"rects": [{"solidity": 0.9944400735836018, "top": 420, "right": 5140, "bottom": 3685, "left": 1115}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732903f.jpg"} -{"rects": [{"solidity": 0.9944401340442742, "top": 700, "right": 2010, "bottom": 3095, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711155f.jpg"} -{"rects": [{"solidity": 0.9944412891769975, "top": 430, "right": 3200, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703036f.jpg"} -{"rects": [{"solidity": 0.9944419911376406, "top": 490, "right": 3100, "bottom": 1875, "left": 1300}, {"solidity": 0.9924513511725093, "top": 2360, "right": 3075, "bottom": 3750, "left": 1275}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/726783f.jpg"} -{"rects": [{"solidity": 0.9944425217308435, "top": 655, "right": 2930, "bottom": 2070, "left": 1145}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703612f.jpg"} -{"rects": [{"solidity": 0.9944425496057621, "top": 670, "right": 2465, "bottom": 2290, "left": 495}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714681f.jpg"} -{"rects": [{"solidity": 0.9944426187911032, "top": 705, "right": 2930, "bottom": 2290, "left": 985}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708035f.jpg"} -{"rects": [{"solidity": 0.9944431183127861, "top": 565, "right": 4840, "bottom": 3505, "left": 1175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713888f.jpg"} -{"rects": [{"solidity": 0.9944432251242044, "top": 445, "right": 2880, "bottom": 1850, "left": 1080}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725152f.jpg"} -{"rects": [{"solidity": 0.9944436027324168, "top": 770, "right": 2050, "bottom": 3175, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712046f.jpg"} -{"rects": [{"solidity": 0.9944441473977903, "top": 2275, "right": 2980, "bottom": 3715, "left": 1160}, {"solidity": 0.9936787030643702, "top": 4100, "right": 2970, "bottom": 5540, "left": 1140}, {"solidity": 0.9960071643445219, "top": 455, "right": 2985, "bottom": 1865, "left": 1175}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727393f.jpg"} -{"rects": [{"solidity": 0.9944444630821824, "top": 775, "right": 3810, "bottom": 3155, "left": 2220}, {"solidity": 0.9803192808536805, "top": 780, "right": 2010, "bottom": 3150, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713309f.jpg"} -{"rects": [{"solidity": 0.9944447316868598, "top": 1725, "right": 2390, "bottom": 2950, "left": 575}, {"solidity": 0.998031438738723, "top": 415, "right": 2395, "bottom": 1620, "left": 600}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715972f.jpg"} -{"rects": [{"solidity": 0.9944448190712893, "top": 815, "right": 2035, "bottom": 3240, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728884f.jpg"} -{"rects": [{"solidity": 0.9944460441485805, "top": 515, "right": 2925, "bottom": 1940, "left": 1090}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727231f.jpg"} -{"rects": [{"solidity": 0.9944484217377156, "top": 390, "right": 3090, "bottom": 2010, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729851f.jpg"} -{"rects": [{"solidity": 0.9944499283861727, "top": 480, "right": 3025, "bottom": 1915, "left": 1205}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728221f.jpg"} -{"rects": [{"solidity": 0.9944515108804015, "top": 345, "right": 2350, "bottom": 1405, "left": 605}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/705599f.jpg"} -{"rects": [{"solidity": 0.994451831660129, "top": 320, "right": 3225, "bottom": 1900, "left": 830}, {"solidity": 0.9935891790979059, "top": 2160, "right": 3020, "bottom": 3630, "left": 1065}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717722f.jpg"} -{"rects": [{"solidity": 0.9944528651901454, "top": 725, "right": 3335, "bottom": 2715, "left": 525}, {"solidity": 0.9965017142802187, "top": 3135, "right": 3230, "bottom": 5125, "left": 600}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709753f.jpg"} -{"rects": [{"solidity": 0.9944531309749403, "top": 620, "right": 4880, "bottom": 3760, "left": 1115}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717766f.jpg"} -{"rects": [{"solidity": 0.9944536653276033, "top": 2130, "right": 2955, "bottom": 3765, "left": 515}, {"solidity": 0.9970280884240185, "top": 345, "right": 2975, "bottom": 1965, "left": 555}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734066f.jpg"} -{"rects": [{"solidity": 0.9944541517891058, "top": 300, "right": 1980, "bottom": 1170, "left": 830}], "shape": {"h": 3930, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727063f.jpg"} -{"rects": [{"solidity": 0.9944542236859538, "top": 870, "right": 2550, "bottom": 2005, "left": 740}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705393f.jpg"} -{"rects": [{"solidity": 0.9944544503449828, "top": 770, "right": 2025, "bottom": 3170, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719960f.jpg"} -{"rects": [{"solidity": 0.9944545723213426, "top": 390, "right": 3175, "bottom": 1985, "left": 785}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728169f.jpg"} -{"rects": [{"solidity": 0.9944554252749743, "top": 795, "right": 3330, "bottom": 2685, "left": 585}, {"solidity": 0.9956561981360909, "top": 3260, "right": 3155, "bottom": 4905, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703849f.jpg"} -{"rects": [{"solidity": 0.9944556782520779, "top": 515, "right": 3175, "bottom": 2110, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730493f.jpg"} -{"rects": [{"solidity": 0.9944561034467506, "top": 2225, "right": 5080, "bottom": 3640, "left": 3245}, {"solidity": 0.9944254091228623, "top": 575, "right": 5075, "bottom": 2005, "left": 3270}, {"solidity": 0.9950574964625226, "top": 2220, "right": 2895, "bottom": 3650, "left": 1120}, {"solidity": 0.9986011584629912, "top": 580, "right": 2910, "bottom": 1960, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726234f.jpg"} -{"rects": [{"solidity": 0.9944565924386091, "top": 385, "right": 3165, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730300f.jpg"} -{"rects": [{"solidity": 0.9944576380076903, "top": 715, "right": 2055, "bottom": 3155, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701402f.jpg"} -{"rects": [{"solidity": 0.9944579682721147, "top": 740, "right": 2055, "bottom": 3150, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713902f.jpg"} -{"rects": [{"solidity": 0.9944588683952063, "top": 440, "right": 3110, "bottom": 3670, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712563f.jpg"} -{"rects": [{"solidity": 0.9944591173383868, "top": 510, "right": 3010, "bottom": 1915, "left": 1200}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727959f.jpg"} -{"rects": [{"solidity": 0.9944593102119175, "top": 410, "right": 3120, "bottom": 2030, "left": 1000}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/701526f.jpg"} -{"rects": [{"solidity": 0.9944593991687498, "top": 1150, "right": 3530, "bottom": 4970, "left": 435}], "shape": {"h": 6230, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/714552f.jpg"} -{"rects": [{"solidity": 0.9944598536483978, "top": 2625, "right": 2185, "bottom": 3745, "left": 535}, {"solidity": 0.9951170815338874, "top": 875, "right": 2165, "bottom": 1975, "left": 530}], "shape": {"h": 4645, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509701.jpg"} -{"rects": [{"solidity": 0.9944606908666274, "top": 415, "right": 3095, "bottom": 2015, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729910f.jpg"} -{"rects": [{"solidity": 0.9944612136994949, "top": 660, "right": 2735, "bottom": 2085, "left": 920}, {"solidity": 0.9955482614631013, "top": 650, "right": 5225, "bottom": 2055, "left": 3435}, {"solidity": 0.9940333680133372, "top": 2115, "right": 2720, "bottom": 3245, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725469f.jpg"} -{"rects": [{"solidity": 0.9944624100208058, "top": 605, "right": 3280, "bottom": 2430, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707886f.jpg"} -{"rects": [{"solidity": 0.9944629826555682, "top": 425, "right": 3245, "bottom": 1320, "left": 2085}, {"solidity": 0.9934265990591973, "top": 1425, "right": 1815, "bottom": 2330, "left": 665}, {"solidity": 0.9916325658095645, "top": 1440, "right": 3235, "bottom": 2340, "left": 2075}, {"solidity": 0.9919767755212033, "top": 390, "right": 1825, "bottom": 1300, "left": 670}], "shape": {"h": 2555, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727189f.jpg"} -{"rects": [{"solidity": 0.9944632714428906, "top": 375, "right": 3185, "bottom": 2035, "left": 730}, {"solidity": 0.9960161290322581, "top": 2175, "right": 3140, "bottom": 3810, "left": 710}, {"solidity": 0.995303995161692, "top": 3960, "right": 3125, "bottom": 5600, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719587f.jpg"} -{"rects": [{"solidity": 0.994463991339222, "top": 655, "right": 2730, "bottom": 2075, "left": 905}, {"solidity": 0.9959720318476696, "top": 675, "right": 5255, "bottom": 2090, "left": 3450}, {"solidity": 0.996269121996718, "top": 2105, "right": 2740, "bottom": 3515, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726579f.jpg"} -{"rects": [{"solidity": 0.9944646758922069, "top": 2470, "right": 2495, "bottom": 3970, "left": 385}, {"solidity": 0.9956998976942485, "top": 675, "right": 2510, "bottom": 2170, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716093f.jpg"} -{"rects": [{"solidity": 0.9944646919903805, "top": 3170, "right": 3295, "bottom": 5110, "left": 580}, {"solidity": 0.9969646675732333, "top": 725, "right": 3265, "bottom": 2565, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715520f.jpg"} -{"rects": [{"solidity": 0.9944664227079418, "top": 2190, "right": 2870, "bottom": 3620, "left": 1065}, {"solidity": 0.9927191179957322, "top": 605, "right": 4965, "bottom": 2035, "left": 3160}, {"solidity": 0.9931367451533833, "top": 595, "right": 2870, "bottom": 2030, "left": 1070}, {"solidity": 0.9934165450266615, "top": 2175, "right": 4940, "bottom": 3605, "left": 3140}], "shape": {"h": 3855, "w": 6035}, "file": "/usr/local/google/home/danvk/milstein/728092f.jpg"} -{"rects": [{"solidity": 0.9944678516824034, "top": 370, "right": 2335, "bottom": 1570, "left": 525}], "shape": {"h": 4655, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/728925f.jpg"} -{"rects": [{"solidity": 0.9944678967794648, "top": 2980, "right": 2385, "bottom": 4485, "left": 405}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508619.jpg"} -{"rects": [{"solidity": 0.9944683526891863, "top": 500, "right": 2915, "bottom": 1920, "left": 1100}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726969f.jpg"} -{"rects": [{"solidity": 0.9944684756817982, "top": 575, "right": 2705, "bottom": 2020, "left": 870}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706498f.jpg"} -{"rects": [{"solidity": 0.9944684912801681, "top": 2405, "right": 3125, "bottom": 4005, "left": 735}, {"solidity": 0.9943327634003419, "top": 555, "right": 3150, "bottom": 2150, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718513f.jpg"} -{"rects": [{"solidity": 0.994468514217955, "top": 2220, "right": 3175, "bottom": 3845, "left": 765}, {"solidity": 0.9953110605950148, "top": 385, "right": 3165, "bottom": 1985, "left": 775}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730350f.jpg"} -{"rects": [{"solidity": 0.994468514217955, "top": 2220, "right": 3175, "bottom": 3845, "left": 765}, {"solidity": 0.9953110605950148, "top": 385, "right": 3165, "bottom": 1985, "left": 775}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730361f.jpg"} -{"rects": [{"solidity": 0.9944692388314544, "top": 2160, "right": 5170, "bottom": 3590, "left": 3365}, {"solidity": 0.9968833944286966, "top": 695, "right": 2650, "bottom": 2120, "left": 860}, {"solidity": 0.9936366057951284, "top": 2175, "right": 2665, "bottom": 3600, "left": 865}, {"solidity": 0.9956392674764933, "top": 695, "right": 5160, "bottom": 2110, "left": 3365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714085f.jpg"} -{"rects": [{"solidity": 0.9944699091346635, "top": 905, "right": 5775, "bottom": 3330, "left": 4155}, {"solidity": 0.9957759669101149, "top": 915, "right": 3870, "bottom": 3320, "left": 2255}, {"solidity": 0.9962500780549046, "top": 920, "right": 1990, "bottom": 3330, "left": 395}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728826f.jpg"} -{"rects": [{"solidity": 0.9944699904816806, "top": 775, "right": 1990, "bottom": 3150, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714878f.jpg"} -{"rects": [{"solidity": 0.9944700134304275, "top": 2215, "right": 3185, "bottom": 3840, "left": 770}, {"solidity": 0.9972791138054276, "top": 360, "right": 3185, "bottom": 1980, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719656f.jpg"} -{"rects": [{"solidity": 0.9944710034706542, "top": 1070, "right": 3315, "bottom": 4705, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708466f.jpg"} -{"rects": [{"solidity": 0.99447178241265, "top": 205, "right": 3390, "bottom": 2045, "left": 730}, {"solidity": 0.9958829192355748, "top": 2255, "right": 3060, "bottom": 3815, "left": 1080}, {"solidity": 0.9936225759943889, "top": 3990, "right": 2830, "bottom": 5930, "left": 1295}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701418f.jpg"} -{"rects": [{"solidity": 0.9944722793644384, "top": 420, "right": 2885, "bottom": 1965, "left": 950}, {"solidity": 0.99228515748847, "top": 2240, "right": 2885, "bottom": 3785, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731471f.jpg"} -{"rects": [{"solidity": 0.9944723798577688, "top": 2100, "right": 3020, "bottom": 3765, "left": 915}, {"solidity": 0.9905612894439214, "top": 465, "right": 2900, "bottom": 1765, "left": 1220}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721710f.jpg"} -{"rects": [{"solidity": 0.9944727344638354, "top": 670, "right": 2720, "bottom": 2090, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726430f.jpg"} -{"rects": [{"solidity": 0.994472786987018, "top": 2225, "right": 2790, "bottom": 3620, "left": 980}, {"solidity": 0.9942743502915423, "top": 790, "right": 2760, "bottom": 2185, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725233f.jpg"} -{"rects": [{"solidity": 0.9944734626192496, "top": 425, "right": 3200, "bottom": 2075, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706999f.jpg"} -{"rects": [{"solidity": 0.9944743252301003, "top": 820, "right": 2035, "bottom": 3235, "left": 430}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700882f.jpg"} -{"rects": [{"solidity": 0.9944743297747302, "top": 475, "right": 3060, "bottom": 1905, "left": 1245}, {"solidity": 0.9905049396267838, "top": 2235, "right": 3060, "bottom": 3680, "left": 1290}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726760f.jpg"} -{"rects": [{"solidity": 0.9944748139528061, "top": 525, "right": 2905, "bottom": 1955, "left": 1100}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725586f.jpg"} -{"rects": [{"solidity": 0.9944755641054308, "top": 730, "right": 3115, "bottom": 2335, "left": 1075}], "shape": {"h": 4435, "w": 6880}, "file": "/usr/local/google/home/danvk/milstein/703408f.jpg"} -{"rects": [{"solidity": 0.9944765909932849, "top": 535, "right": 4975, "bottom": 3650, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720958f.jpg"} -{"rects": [{"solidity": 0.9944769424353322, "top": 600, "right": 2755, "bottom": 2050, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703099f.jpg"} -{"rects": [{"solidity": 0.9944770041051278, "top": 370, "right": 3905, "bottom": 2885, "left": 830}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509431.jpg"} -{"rects": [{"solidity": 0.9944788393021751, "top": 560, "right": 5075, "bottom": 3590, "left": 1165}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/711625f.jpg"} -{"rects": [{"solidity": 0.9944788754423352, "top": 625, "right": 2745, "bottom": 3475, "left": 470}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725559f.jpg"} -{"rects": [{"solidity": 0.9944790316871105, "top": 2255, "right": 3205, "bottom": 3885, "left": 780}, {"solidity": 0.9374029585570275, "top": 510, "right": 3200, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730929f.jpg"} -{"rects": [{"solidity": 0.9944790408961789, "top": 360, "right": 2770, "bottom": 1775, "left": 975}, {"solidity": 0.993967922596704, "top": 1985, "right": 2775, "bottom": 3385, "left": 965}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708481f.jpg"} -{"rects": [{"solidity": 0.9944808572483279, "top": 845, "right": 2320, "bottom": 3550, "left": 510}], "shape": {"h": 4410, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711344f.jpg"} -{"rects": [{"solidity": 0.9944813660334451, "top": 695, "right": 2620, "bottom": 2115, "left": 800}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726139f.jpg"} -{"rects": [{"solidity": 0.9944814394288111, "top": 640, "right": 2615, "bottom": 2015, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704259f.jpg"} -{"rects": [{"solidity": 0.9944818725394917, "top": 790, "right": 2025, "bottom": 3195, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705838f.jpg"} -{"rects": [{"solidity": 0.9944822255023807, "top": 535, "right": 4945, "bottom": 3565, "left": 1185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709910f.jpg"} -{"rects": [{"solidity": 0.9944822745507099, "top": 665, "right": 2800, "bottom": 2060, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726279f.jpg"} -{"rects": [{"solidity": 0.9944823192919352, "top": 380, "right": 3140, "bottom": 2010, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728333f.jpg"} -{"rects": [{"solidity": 0.9944824932773684, "top": 1885, "right": 3070, "bottom": 5970, "left": 830}, {"solidity": 0.9888806188961815, "top": 400, "right": 3050, "bottom": 1855, "left": 1115}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722525f.jpg"} -{"rects": [{"solidity": 0.9944846661780362, "top": 450, "right": 3095, "bottom": 2045, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729441f.jpg"} -{"rects": [{"solidity": 0.9944851752718621, "top": 4120, "right": 3200, "bottom": 5745, "left": 775}, {"solidity": 0.9952733440269268, "top": 445, "right": 3180, "bottom": 2055, "left": 770}, {"solidity": 0.9917583434573227, "top": 2295, "right": 3195, "bottom": 3875, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733997f.jpg"} -{"rects": [{"solidity": 0.9944851803473066, "top": 2265, "right": 3125, "bottom": 3880, "left": 710}, {"solidity": 0.9956505873186512, "top": 410, "right": 3140, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733631f.jpg"} -{"rects": [{"solidity": 0.994485788729756, "top": 595, "right": 3190, "bottom": 2165, "left": 820}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709282f.jpg"} -{"rects": [{"solidity": 0.9944865020884037, "top": 735, "right": 4745, "bottom": 3390, "left": 1335}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723156f.jpg"} -{"rects": [{"solidity": 0.9944873863085282, "top": 635, "right": 2905, "bottom": 2045, "left": 1090}, {"solidity": 0.9941997381169313, "top": 645, "right": 5100, "bottom": 2045, "left": 3285}, {"solidity": 0.9951067458088544, "top": 2300, "right": 5100, "bottom": 3670, "left": 3255}, {"solidity": 0.9970473439443854, "top": 2285, "right": 2895, "bottom": 3620, "left": 1125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726373f.jpg"} -{"rects": [{"solidity": 0.9944878227065821, "top": 470, "right": 3145, "bottom": 2065, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710806f.jpg"} -{"rects": [{"solidity": 0.9944878227879085, "top": 480, "right": 3045, "bottom": 1905, "left": 1225}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725564f.jpg"} -{"rects": [{"solidity": 0.9944879030348112, "top": 1225, "right": 2555, "bottom": 4305, "left": 220}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507739.jpg"} -{"rects": [{"solidity": 0.9944879858195477, "top": 460, "right": 3175, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708013f.jpg"} -{"rects": [{"solidity": 0.9944883461630223, "top": 2305, "right": 3090, "bottom": 3730, "left": 1270}, {"solidity": 0.9934395876598193, "top": 565, "right": 3070, "bottom": 1980, "left": 1280}, {"solidity": 0.9937554339487547, "top": 4095, "right": 3075, "bottom": 5490, "left": 1285}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727798f.jpg"} -{"rects": [{"solidity": 0.9944884928668639, "top": 1065, "right": 3330, "bottom": 4755, "left": 315}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724113f.jpg"} -{"rects": [{"solidity": 0.9944896126738908, "top": 330, "right": 1890, "bottom": 1230, "left": 745}], "shape": {"h": 3935, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727194f.jpg"} -{"rects": [{"solidity": 0.9944902350954326, "top": 1140, "right": 2580, "bottom": 4310, "left": 180}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508881.jpg"} -{"rects": [{"solidity": 0.9944922722342733, "top": 650, "right": 4745, "bottom": 3310, "left": 1395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731924f.jpg"} -{"rects": [{"solidity": 0.9944925647549046, "top": 525, "right": 5295, "bottom": 3530, "left": 1255}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719628f.jpg"} -{"rects": [{"solidity": 0.9944928472429484, "top": 675, "right": 2495, "bottom": 2165, "left": 420}, {"solidity": 0.9907480339061907, "top": 2445, "right": 2525, "bottom": 3940, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716199f.jpg"} -{"rects": [{"solidity": 0.9944928503174809, "top": 280, "right": 2985, "bottom": 1480, "left": 1100}, {"solidity": 0.9965252920326169, "top": 1695, "right": 2970, "bottom": 2855, "left": 1080}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701937f.jpg"} -{"rects": [{"solidity": 0.9944930395416746, "top": 865, "right": 1985, "bottom": 3270, "left": 375}, {"solidity": 0.9971690230836023, "top": 850, "right": 3835, "bottom": 3260, "left": 2235}, {"solidity": 0.9956595937774358, "top": 850, "right": 5680, "bottom": 3250, "left": 4080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728530f.jpg"} -{"rects": [{"solidity": 0.9944949283812625, "top": 590, "right": 4885, "bottom": 3590, "left": 1065}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709879f.jpg"} -{"rects": [{"solidity": 0.9944950163928266, "top": 2190, "right": 3065, "bottom": 3665, "left": 1220}, {"solidity": 0.9948042934465656, "top": 450, "right": 3080, "bottom": 1870, "left": 1235}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725738f.jpg"} -{"rects": [{"solidity": 0.9944954646392412, "top": 665, "right": 2795, "bottom": 2145, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702636f.jpg"} -{"rects": [{"solidity": 0.9944963798208869, "top": 590, "right": 4880, "bottom": 3570, "left": 1110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709919f.jpg"} -{"rects": [{"solidity": 0.9944970946992026, "top": 705, "right": 2015, "bottom": 3125, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719944f.jpg"} -{"rects": [{"solidity": 0.9944978636532668, "top": 590, "right": 3265, "bottom": 2490, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720867f.jpg"} -{"rects": [{"solidity": 0.9944987048001692, "top": 745, "right": 2100, "bottom": 3130, "left": 495}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709773f.jpg"} -{"rects": [{"solidity": 0.9944989512145612, "top": 700, "right": 2735, "bottom": 1895, "left": 1170}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712711f.jpg"} -{"rects": [{"solidity": 0.9944995850674678, "top": 225, "right": 3240, "bottom": 5960, "left": 455}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702627f.jpg"} -{"rects": [{"solidity": 0.9944997667440347, "top": 850, "right": 3135, "bottom": 2075, "left": 1320}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509593.jpg"} -{"rects": [{"solidity": 0.9945003916487919, "top": 755, "right": 2005, "bottom": 3150, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719901f.jpg"} -{"rects": [{"solidity": 0.9945004210932189, "top": 810, "right": 2645, "bottom": 2195, "left": 840}, {"solidity": 0.9915657684579319, "top": 2225, "right": 2650, "bottom": 3600, "left": 855}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731334f.jpg"} -{"rects": [{"solidity": 0.9945004582951421, "top": 730, "right": 3295, "bottom": 2545, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713964f.jpg"} -{"rects": [{"solidity": 0.9945018693644161, "top": 4065, "right": 2910, "bottom": 5575, "left": 1010}, {"solidity": 0.9947903088255439, "top": 425, "right": 2895, "bottom": 1925, "left": 990}, {"solidity": 0.9936890545505935, "top": 2240, "right": 2895, "bottom": 3740, "left": 990}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701083f.jpg"} -{"rects": [{"solidity": 0.9945019697667371, "top": 400, "right": 3210, "bottom": 1995, "left": 1200}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726057f.jpg"} -{"rects": [{"solidity": 0.9945025335007, "top": 470, "right": 3140, "bottom": 2075, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727828f.jpg"} -{"rects": [{"solidity": 0.9945025792188651, "top": 675, "right": 2745, "bottom": 2105, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726429f.jpg"} -{"rects": [{"solidity": 0.9945030164778781, "top": 800, "right": 2055, "bottom": 3210, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718630f.jpg"} -{"rects": [{"solidity": 0.9945036950171413, "top": 665, "right": 3220, "bottom": 2505, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714092f.jpg"} -{"rects": [{"solidity": 0.9945040102394567, "top": 875, "right": 5730, "bottom": 3315, "left": 4095}, {"solidity": 0.9967994057423376, "top": 870, "right": 1980, "bottom": 3280, "left": 360}, {"solidity": 0.9956694521338321, "top": 865, "right": 3860, "bottom": 3280, "left": 2235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722301f.jpg"} -{"rects": [{"solidity": 0.9945045152091255, "top": 560, "right": 2505, "bottom": 1965, "left": 655}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706278f.jpg"} -{"rects": [{"solidity": 0.9945047189167009, "top": 375, "right": 3065, "bottom": 1975, "left": 665}, {"solidity": 0.9950583276637406, "top": 2235, "right": 3060, "bottom": 3820, "left": 665}, {"solidity": 0.9623431130712615, "top": 4085, "right": 3010, "bottom": 5490, "left": 665}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728835f.jpg"} -{"rects": [{"solidity": 0.9945048299308609, "top": 430, "right": 3085, "bottom": 2035, "left": 680}, {"solidity": 0.9971335830212235, "top": 2310, "right": 3055, "bottom": 3900, "left": 670}, {"solidity": 0.996531536211097, "top": 4165, "right": 3035, "bottom": 5755, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728863f.jpg"} -{"rects": [{"solidity": 0.9945048747079204, "top": 400, "right": 3130, "bottom": 2035, "left": 700}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729126f.jpg"} -{"rects": [{"solidity": 0.9945054825728241, "top": 475, "right": 5045, "bottom": 3510, "left": 1230}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706501f.jpg"} -{"rects": [{"solidity": 0.9945059361421459, "top": 4065, "right": 3070, "bottom": 5530, "left": 1230}, {"solidity": 0.9947197876202932, "top": 520, "right": 3100, "bottom": 1940, "left": 1260}, {"solidity": 0.9943040419300742, "top": 2275, "right": 3095, "bottom": 3700, "left": 1275}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727644f.jpg"} -{"rects": [{"solidity": 0.9945068003869676, "top": 320, "right": 3150, "bottom": 1910, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708136f.jpg"} -{"rects": [{"solidity": 0.9945068875179582, "top": 485, "right": 3935, "bottom": 2590, "left": 2420}, {"solidity": 0.9957658739171344, "top": 480, "right": 2135, "bottom": 2570, "left": 640}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716131f.jpg"} -{"rects": [{"solidity": 0.9945069861201763, "top": 880, "right": 3055, "bottom": 2100, "left": 1250}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509739.jpg"} -{"rects": [{"solidity": 0.9945073364449831, "top": 2260, "right": 3195, "bottom": 3900, "left": 765}, {"solidity": 0.9965169473903098, "top": 415, "right": 3195, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734551f.jpg"} -{"rects": [{"solidity": 0.9945076180263351, "top": 2460, "right": 2850, "bottom": 3800, "left": 1105}, {"solidity": 0.9970902255215925, "top": 410, "right": 2645, "bottom": 2115, "left": 1330}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734441f.jpg"} -{"rects": [{"solidity": 0.9945078695668392, "top": 655, "right": 2750, "bottom": 3490, "left": 690}, {"solidity": 0.9957113605591905, "top": 685, "right": 5240, "bottom": 3500, "left": 3225}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709616f.jpg"} -{"rects": [{"solidity": 0.9945082989294414, "top": 450, "right": 3085, "bottom": 2085, "left": 670}, {"solidity": 0.9969696672838357, "top": 2325, "right": 3085, "bottom": 3930, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722848f.jpg"} -{"rects": [{"solidity": 0.9945085302751501, "top": 380, "right": 2935, "bottom": 1835, "left": 1050}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703839f.jpg"} -{"rects": [{"solidity": 0.9945095413458319, "top": 2070, "right": 2725, "bottom": 3530, "left": 890}, {"solidity": 0.9956446625339354, "top": 650, "right": 5225, "bottom": 2085, "left": 3405}, {"solidity": 0.9968910436436377, "top": 2100, "right": 5205, "bottom": 3530, "left": 3415}, {"solidity": 0.995013714782487, "top": 665, "right": 2710, "bottom": 2080, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726293f.jpg"} -{"rects": [{"solidity": 0.994510018299939, "top": 790, "right": 2045, "bottom": 3185, "left": 455}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730272f.jpg"} -{"rects": [{"solidity": 0.9945101984642982, "top": 365, "right": 5060, "bottom": 3650, "left": 1025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702929f.jpg"} -{"rects": [{"solidity": 0.9945106078793683, "top": 830, "right": 2115, "bottom": 3205, "left": 540}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718612f.jpg"} -{"rects": [{"solidity": 0.9945108730052419, "top": 490, "right": 3255, "bottom": 3845, "left": 665}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721950f.jpg"} -{"rects": [{"solidity": 0.9945111438482175, "top": 1405, "right": 3650, "bottom": 5420, "left": 400}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/716625f.jpg"} -{"rects": [{"solidity": 0.994511952191235, "top": 380, "right": 3140, "bottom": 1975, "left": 750}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728971f.jpg"} -{"rects": [{"solidity": 0.994512247629933, "top": 975, "right": 2105, "bottom": 2990, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702359f.jpg"} -{"rects": [{"solidity": 0.9945125810095249, "top": 360, "right": 2055, "bottom": 1395, "left": 515}, {"solidity": 0.992234280681056, "top": 1450, "right": 2030, "bottom": 2500, "left": 490}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727147f.jpg"} -{"rects": [{"solidity": 0.9945130670531676, "top": 1680, "right": 3225, "bottom": 3320, "left": 795}, {"solidity": 0.9922016802364777, "top": 3810, "right": 3195, "bottom": 5455, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730945f.jpg"} -{"rects": [{"solidity": 0.9945134593113578, "top": 625, "right": 4950, "bottom": 3610, "left": 1215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709904f.jpg"} -{"rects": [{"solidity": 0.9945136389011877, "top": 1130, "right": 3380, "bottom": 5025, "left": 525}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717375f.jpg"} -{"rects": [{"solidity": 0.9945140407965751, "top": 615, "right": 2705, "bottom": 2005, "left": 860}, {"solidity": 0.9961949682418574, "top": 2080, "right": 2700, "bottom": 3470, "left": 865}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704269f.jpg"} -{"rects": [{"solidity": 0.9945143668617369, "top": 925, "right": 2980, "bottom": 2115, "left": 1105}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508721.jpg"} -{"rects": [{"solidity": 0.994514426557189, "top": 470, "right": 3315, "bottom": 2345, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727883f.jpg"} -{"rects": [{"solidity": 0.9945147721817712, "top": 490, "right": 3230, "bottom": 2070, "left": 850}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710111f.jpg"} -{"rects": [{"solidity": 0.9945149214931891, "top": 775, "right": 3815, "bottom": 3190, "left": 2200}, {"solidity": 0.9944889483732556, "top": 780, "right": 1980, "bottom": 3190, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706866f.jpg"} -{"rects": [{"solidity": 0.9945153818174857, "top": 565, "right": 4975, "bottom": 3590, "left": 1045}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710232f.jpg"} -{"rects": [{"solidity": 0.9945159548773904, "top": 720, "right": 2510, "bottom": 2210, "left": 415}, {"solidity": 0.9946511569689334, "top": 2495, "right": 2495, "bottom": 3950, "left": 415}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716137f.jpg"} -{"rects": [{"solidity": 0.9945169645265339, "top": 1030, "right": 2950, "bottom": 4990, "left": 1215}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712339f.jpg"} -{"rects": [{"solidity": 0.9945176119266445, "top": 455, "right": 3165, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723720f.jpg"} -{"rects": [{"solidity": 0.9945179958122434, "top": 860, "right": 2550, "bottom": 3620, "left": 340}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507961.jpg"} -{"rects": [{"solidity": 0.9945192266961234, "top": 790, "right": 2015, "bottom": 3195, "left": 400}, {"solidity": 0.9975100618532254, "top": 805, "right": 5705, "bottom": 3200, "left": 4110}, {"solidity": 0.9960457390451167, "top": 800, "right": 3860, "bottom": 3200, "left": 2265}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724245f.jpg"} -{"rects": [{"solidity": 0.9945192295270454, "top": 805, "right": 2150, "bottom": 3230, "left": 530}, {"solidity": 0.9942475068733834, "top": 825, "right": 3975, "bottom": 3230, "left": 2350}, {"solidity": 0.9937296270970397, "top": 825, "right": 5780, "bottom": 3220, "left": 4190}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722039f.jpg"} -{"rects": [{"solidity": 0.9945193387634916, "top": 750, "right": 1975, "bottom": 3165, "left": 375}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721996f.jpg"} -{"rects": [{"solidity": 0.9945193541359025, "top": 2205, "right": 2690, "bottom": 3630, "left": 855}, {"solidity": 0.9944487869479282, "top": 735, "right": 2670, "bottom": 2155, "left": 875}, {"solidity": 0.9569278296671241, "top": 730, "right": 5225, "bottom": 2145, "left": 3430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727514f.jpg"} -{"rects": [{"solidity": 0.9945195199463323, "top": 200, "right": 3470, "bottom": 2145, "left": 2315}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716668f.jpg"} -{"rects": [{"solidity": 0.9945203762169152, "top": 385, "right": 3170, "bottom": 1995, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728498f.jpg"} -{"rects": [{"solidity": 0.9945206486062803, "top": 455, "right": 3325, "bottom": 2355, "left": 610}, {"solidity": 0.993399648188795, "top": 2520, "right": 2875, "bottom": 3900, "left": 1105}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721768f.jpg"} -{"rects": [{"solidity": 0.9945208415812348, "top": 565, "right": 2900, "bottom": 3385, "left": 855}, {"solidity": 0.9575352543364385, "top": 555, "right": 5300, "bottom": 3370, "left": 3255}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708245f.jpg"} -{"rects": [{"solidity": 0.9945221875930002, "top": 445, "right": 3165, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720466f.jpg"} -{"rects": [{"solidity": 0.9945222816858659, "top": 385, "right": 5135, "bottom": 3610, "left": 1055}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/710184f.jpg"} -{"rects": [{"solidity": 0.9945226286779513, "top": 1020, "right": 3375, "bottom": 2265, "left": 1550}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509681.jpg"} -{"rects": [{"solidity": 0.9945227639274818, "top": 680, "right": 3370, "bottom": 2600, "left": 645}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/709359f.jpg"} -{"rects": [{"solidity": 0.9945231746581336, "top": 290, "right": 5100, "bottom": 3640, "left": 1095}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720649f.jpg"} -{"rects": [{"solidity": 0.9945235487404163, "top": 2260, "right": 3190, "bottom": 3855, "left": 800}, {"solidity": 0.9749757810360403, "top": 530, "right": 3080, "bottom": 1975, "left": 885}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700565f.jpg"} -{"rects": [{"solidity": 0.9945235752423661, "top": 710, "right": 3270, "bottom": 2530, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710023f.jpg"} -{"rects": [{"solidity": 0.9945237575204019, "top": 475, "right": 2330, "bottom": 2575, "left": 800}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509037.jpg"} -{"rects": [{"solidity": 0.9945238168867448, "top": 840, "right": 2575, "bottom": 3560, "left": 745}], "shape": {"h": 4420, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708374f.jpg"} -{"rects": [{"solidity": 0.9945240833355621, "top": 665, "right": 3160, "bottom": 2245, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710104f.jpg"} -{"rects": [{"solidity": 0.9945241103736773, "top": 1275, "right": 3350, "bottom": 4960, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733311f.jpg"} -{"rects": [{"solidity": 0.9945241320999038, "top": 2315, "right": 3235, "bottom": 3910, "left": 830}, {"solidity": 0.99489710501115, "top": 510, "right": 3230, "bottom": 2085, "left": 840}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710641f.jpg"} -{"rects": [{"solidity": 0.9945243324356287, "top": 595, "right": 2755, "bottom": 2010, "left": 960}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703150f.jpg"} -{"rects": [{"solidity": 0.9945245175351517, "top": 590, "right": 4955, "bottom": 3590, "left": 1190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709818f.jpg"} -{"rects": [{"solidity": 0.9945249660889471, "top": 470, "right": 3300, "bottom": 2070, "left": 895}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727379f.jpg"} -{"rects": [{"solidity": 0.9945256548611793, "top": 795, "right": 2055, "bottom": 3190, "left": 445}, {"solidity": 0.9975131709223123, "top": 795, "right": 3955, "bottom": 3175, "left": 2355}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720119f.jpg"} -{"rects": [{"solidity": 0.994525816480241, "top": 4015, "right": 3310, "bottom": 5650, "left": 870}, {"solidity": 0.9951699132337236, "top": 2195, "right": 3305, "bottom": 3800, "left": 880}, {"solidity": 0.9951192391523614, "top": 540, "right": 3080, "bottom": 1965, "left": 1270}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734730f.jpg"} -{"rects": [{"solidity": 0.994526348546565, "top": 595, "right": 4950, "bottom": 3595, "left": 1175}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709915f.jpg"} -{"rects": [{"solidity": 0.9945264430655819, "top": 2260, "right": 3185, "bottom": 3870, "left": 755}, {"solidity": 0.9952518977703853, "top": 395, "right": 3190, "bottom": 2005, "left": 765}, {"solidity": 0.993434087076122, "top": 4120, "right": 3160, "bottom": 5735, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726903f.jpg"} -{"rects": [{"solidity": 0.9945266910414718, "top": 2315, "right": 3125, "bottom": 3960, "left": 690}, {"solidity": 0.9967184437506783, "top": 425, "right": 3115, "bottom": 2060, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710791f.jpg"} -{"rects": [{"solidity": 0.9945273066745268, "top": 475, "right": 5105, "bottom": 3790, "left": 1060}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720819f.jpg"} -{"rects": [{"solidity": 0.9945273154746355, "top": 420, "right": 3170, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703045f.jpg"} -{"rects": [{"solidity": 0.9945280165552371, "top": 2265, "right": 2885, "bottom": 3695, "left": 1095}, {"solidity": 0.9960390112494076, "top": 2230, "right": 5030, "bottom": 3655, "left": 3250}, {"solidity": 0.9956801837794647, "top": 650, "right": 2845, "bottom": 2075, "left": 1060}, {"solidity": 0.996791915627381, "top": 625, "right": 5030, "bottom": 2020, "left": 3215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727620f.jpg"} -{"rects": [{"solidity": 0.9945281752926926, "top": 450, "right": 4965, "bottom": 3645, "left": 1015}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717320f.jpg"} -{"rects": [{"solidity": 0.994528298255855, "top": 420, "right": 3170, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708019f.jpg"} -{"rects": [{"solidity": 0.9945283377139945, "top": 385, "right": 2900, "bottom": 1805, "left": 1110}, {"solidity": 0.9953297065110578, "top": 2170, "right": 2895, "bottom": 3580, "left": 1115}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728088f.jpg"} -{"rects": [{"solidity": 0.9945287680903636, "top": 920, "right": 2345, "bottom": 3305, "left": 750}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709195f.jpg"} -{"rects": [{"solidity": 0.9945295739446928, "top": 2835, "right": 2310, "bottom": 4285, "left": 300}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507603.jpg"} -{"rects": [{"solidity": 0.9945297144422981, "top": 560, "right": 3110, "bottom": 2135, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709569f.jpg"} -{"rects": [{"solidity": 0.994530311402197, "top": 310, "right": 4250, "bottom": 2770, "left": 1210}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517029.jpg"} -{"rects": [{"solidity": 0.9945306544032658, "top": 615, "right": 2680, "bottom": 2030, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706768f.jpg"} -{"rects": [{"solidity": 0.9945310283427744, "top": 420, "right": 3315, "bottom": 2345, "left": 620}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700503f.jpg"} -{"rects": [{"solidity": 0.9945314887737653, "top": 445, "right": 3210, "bottom": 2340, "left": 555}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700721f.jpg"} -{"rects": [{"solidity": 0.9945327502460908, "top": 2245, "right": 3200, "bottom": 3885, "left": 760}, {"solidity": 0.9945347018795293, "top": 405, "right": 3190, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710884f.jpg"} -{"rects": [{"solidity": 0.9945330152159143, "top": 805, "right": 2045, "bottom": 3255, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714471f.jpg"} -{"rects": [{"solidity": 0.9945331260797798, "top": 480, "right": 2950, "bottom": 1915, "left": 1120}, {"solidity": 0.996250565333048, "top": 2355, "right": 2955, "bottom": 3775, "left": 1130}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727430f.jpg"} -{"rects": [{"solidity": 0.9945332016884124, "top": 495, "right": 3150, "bottom": 2085, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721023f.jpg"} -{"rects": [{"solidity": 0.9945339427730169, "top": 515, "right": 2860, "bottom": 1935, "left": 1065}, {"solidity": 0.9965682944373402, "top": 2175, "right": 2880, "bottom": 3580, "left": 1080}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726971f.jpg"} -{"rects": [{"solidity": 0.994533981493161, "top": 855, "right": 2065, "bottom": 3280, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714053f.jpg"} -{"rects": [{"solidity": 0.9945344100207315, "top": 465, "right": 3055, "bottom": 1905, "left": 1230}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725566f.jpg"} -{"rects": [{"solidity": 0.9945344466251954, "top": 485, "right": 3130, "bottom": 2075, "left": 745}, {"solidity": 0.996806922042299, "top": 2385, "right": 2900, "bottom": 3600, "left": 940}, {"solidity": 0.9940506389955513, "top": 3925, "right": 2920, "bottom": 5150, "left": 970}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717554f.jpg"} -{"rects": [{"solidity": 0.9945344678957182, "top": 1155, "right": 3400, "bottom": 5055, "left": 285}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718529f.jpg"} -{"rects": [{"solidity": 0.9945345169099846, "top": 830, "right": 2055, "bottom": 3215, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714060f.jpg"} -{"rects": [{"solidity": 0.9945345652249811, "top": 4075, "right": 3185, "bottom": 5720, "left": 760}, {"solidity": 0.9965906399929931, "top": 2210, "right": 3170, "bottom": 3820, "left": 760}, {"solidity": 0.9943641819647349, "top": 380, "right": 3170, "bottom": 1985, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710767f.jpg"} -{"rects": [{"solidity": 0.9945348969600364, "top": 440, "right": 2930, "bottom": 1870, "left": 1120}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703955f.jpg"} -{"rects": [{"solidity": 0.9945355457037035, "top": 720, "right": 3235, "bottom": 2645, "left": 520}, {"solidity": 0.9928066087274542, "top": 3305, "right": 3260, "bottom": 5215, "left": 535}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711895f.jpg"} -{"rects": [{"solidity": 0.9945358936947347, "top": 920, "right": 3800, "bottom": 3350, "left": 2190}, {"solidity": 0.9948112351767248, "top": 915, "right": 1975, "bottom": 3325, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728793f.jpg"} -{"rects": [{"solidity": 0.9945360340238614, "top": 1235, "right": 3425, "bottom": 4760, "left": 340}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723410f.jpg"} -{"rects": [{"solidity": 0.9945363850346469, "top": 390, "right": 3160, "bottom": 1985, "left": 750}, {"solidity": 0.9951847127021792, "top": 2245, "right": 3170, "bottom": 3835, "left": 755}, {"solidity": 0.9945528026708839, "top": 4110, "right": 3135, "bottom": 5695, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701987f.jpg"} -{"rects": [{"solidity": 0.9945369093231162, "top": 1050, "right": 3435, "bottom": 4955, "left": 270}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708930f.jpg"} -{"rects": [{"solidity": 0.9945373112050816, "top": 490, "right": 5030, "bottom": 3580, "left": 1120}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723094f.jpg"} -{"rects": [{"solidity": 0.9945374485938604, "top": 3970, "right": 2930, "bottom": 5525, "left": 970}, {"solidity": 0.9967066504011558, "top": 2165, "right": 2930, "bottom": 3725, "left": 985}, {"solidity": 0.9949412589864983, "top": 400, "right": 2925, "bottom": 1915, "left": 1015}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701371f.jpg"} -{"rects": [{"solidity": 0.9945377515995896, "top": 405, "right": 3190, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707067f.jpg"} -{"rects": [{"solidity": 0.9945379101483761, "top": 725, "right": 2615, "bottom": 2150, "left": 810}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730491f.jpg"} -{"rects": [{"solidity": 0.9945380456560202, "top": 1165, "right": 1555, "bottom": 3005, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706277f.jpg"} -{"rects": [{"solidity": 0.9945384398596709, "top": 660, "right": 5190, "bottom": 2120, "left": 3365}, {"solidity": 0.9964717345090938, "top": 2155, "right": 2625, "bottom": 3580, "left": 825}, {"solidity": 0.9958939019761521, "top": 670, "right": 2630, "bottom": 2110, "left": 845}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706963f.jpg"} -{"rects": [{"solidity": 0.9945386480223946, "top": 770, "right": 2045, "bottom": 3155, "left": 455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724048f.jpg"} -{"rects": [{"solidity": 0.9945387213608432, "top": 280, "right": 2005, "bottom": 1300, "left": 475}, {"solidity": 0.9938646504709965, "top": 1535, "right": 1890, "bottom": 2420, "left": 735}], "shape": {"h": 3945, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727184f.jpg"} -{"rects": [{"solidity": 0.9945396799951909, "top": 880, "right": 3905, "bottom": 3260, "left": 2315}, {"solidity": 0.997910139357696, "top": 885, "right": 2245, "bottom": 3260, "left": 670}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708992f.jpg"} -{"rects": [{"solidity": 0.9945403337933985, "top": 415, "right": 2560, "bottom": 1815, "left": 740}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728147f.jpg"} -{"rects": [{"solidity": 0.9945406618666689, "top": 410, "right": 2975, "bottom": 2005, "left": 1060}, {"solidity": 0.9951544571546236, "top": 2130, "right": 2765, "bottom": 4075, "left": 1270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719893f.jpg"} -{"rects": [{"solidity": 0.9945423432713245, "top": 510, "right": 5085, "bottom": 3730, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705954f.jpg"} -{"rects": [{"solidity": 0.9945430458351276, "top": 770, "right": 3860, "bottom": 3165, "left": 2250}, {"solidity": 0.9961382120587657, "top": 770, "right": 2015, "bottom": 3155, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730344f.jpg"} -{"rects": [{"solidity": 0.9945440324357112, "top": 330, "right": 3180, "bottom": 1970, "left": 755}, {"solidity": 0.9944568781554156, "top": 2140, "right": 3155, "bottom": 3770, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730546f.jpg"} -{"rects": [{"solidity": 0.9945440562620014, "top": 665, "right": 5235, "bottom": 2120, "left": 3405}, {"solidity": 0.9958268538020905, "top": 2090, "right": 2665, "bottom": 3505, "left": 840}, {"solidity": 0.9792706922546188, "top": 645, "right": 2660, "bottom": 2025, "left": 860}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704364f.jpg"} -{"rects": [{"solidity": 0.9945442741680911, "top": 655, "right": 1560, "bottom": 2430, "left": 365}, {"solidity": 0.9969070933842847, "top": 660, "right": 2920, "bottom": 2450, "left": 1740}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716515f.jpg"} -{"rects": [{"solidity": 0.9945449910782564, "top": 525, "right": 3640, "bottom": 2365, "left": 915}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711383f.jpg"} -{"rects": [{"solidity": 0.9945451757889725, "top": 260, "right": 1980, "bottom": 1290, "left": 445}], "shape": {"h": 3940, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727173f.jpg"} -{"rects": [{"solidity": 0.9945452417183659, "top": 830, "right": 2055, "bottom": 3210, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709437f.jpg"} -{"rects": [{"solidity": 0.994545858935928, "top": 740, "right": 3865, "bottom": 3125, "left": 2270}, {"solidity": 0.9984579437685843, "top": 760, "right": 2005, "bottom": 3145, "left": 430}, {"solidity": 0.9976064267274516, "top": 750, "right": 5705, "bottom": 3125, "left": 4120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713722f.jpg"} -{"rects": [{"solidity": 0.994545966661261, "top": 1295, "right": 2955, "bottom": 4915, "left": 910}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717127f.jpg"} -{"rects": [{"solidity": 0.9945463769341337, "top": 445, "right": 2865, "bottom": 1835, "left": 930}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700231f.jpg"} -{"rects": [{"solidity": 0.9945473198905664, "top": 2230, "right": 3145, "bottom": 3880, "left": 705}, {"solidity": 0.9958846035193955, "top": 370, "right": 3155, "bottom": 2005, "left": 720}, {"solidity": 0.9958476710432727, "top": 4080, "right": 3115, "bottom": 5745, "left": 665}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722445f.jpg"} -{"rects": [{"solidity": 0.9945481623317909, "top": 865, "right": 2265, "bottom": 3260, "left": 655}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708600f.jpg"} -{"rects": [{"solidity": 0.9945484281301108, "top": 730, "right": 2470, "bottom": 2190, "left": 605}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706608f.jpg"} -{"rects": [{"solidity": 0.9945491949214239, "top": 755, "right": 4755, "bottom": 3345, "left": 1370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701052f.jpg"} -{"rects": [{"solidity": 0.994549481313877, "top": 650, "right": 5030, "bottom": 2110, "left": 3170}, {"solidity": 0.9922293400093267, "top": 2230, "right": 4975, "bottom": 3675, "left": 3155}, {"solidity": 0.9963748991644342, "top": 2225, "right": 2450, "bottom": 3625, "left": 640}, {"solidity": 0.9982436331702421, "top": 645, "right": 2440, "bottom": 2040, "left": 640}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727652f.jpg"} -{"rects": [{"solidity": 0.9945497138451502, "top": 315, "right": 2365, "bottom": 1505, "left": 560}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715812f.jpg"} -{"rects": [{"solidity": 0.9945499693637331, "top": 390, "right": 3095, "bottom": 3400, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715633f.jpg"} -{"rects": [{"solidity": 0.9945503819642191, "top": 745, "right": 2040, "bottom": 3150, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713007f.jpg"} -{"rects": [{"solidity": 0.9945504087193461, "top": 365, "right": 4625, "bottom": 3720, "left": 1540}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718915f.jpg"} -{"rects": [{"solidity": 0.9945513578066105, "top": 1550, "right": 1910, "bottom": 2435, "left": 755}, {"solidity": 0.9926678158335207, "top": 380, "right": 1915, "bottom": 1280, "left": 760}], "shape": {"h": 3945, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727073f.jpg"} -{"rects": [{"solidity": 0.9945514055617614, "top": 685, "right": 2600, "bottom": 2155, "left": 770}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704921f.jpg"} -{"rects": [{"solidity": 0.9945525420917309, "top": 400, "right": 3055, "bottom": 2000, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729590f.jpg"} -{"rects": [{"solidity": 0.9945526582796123, "top": 480, "right": 5065, "bottom": 3700, "left": 1005}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723753f.jpg"} -{"rects": [{"solidity": 0.9945542159348209, "top": 605, "right": 4765, "bottom": 3580, "left": 1485}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700960f.jpg"} -{"rects": [{"solidity": 0.9945548948679527, "top": 475, "right": 3060, "bottom": 1930, "left": 1225}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726756f.jpg"} -{"rects": [{"solidity": 0.9945552527051538, "top": 475, "right": 3145, "bottom": 2075, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710524f.jpg"} -{"rects": [{"solidity": 0.9945555544394331, "top": 790, "right": 2820, "bottom": 3190, "left": 1190}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708103f.jpg"} -{"rects": [{"solidity": 0.9945564784965213, "top": 485, "right": 1370, "bottom": 2040, "left": 320}], "shape": {"h": 2580, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/705114f.jpg"} -{"rects": [{"solidity": 0.9945566730132647, "top": 510, "right": 2525, "bottom": 2060, "left": 1480}, {"solidity": 0.9969543794747501, "top": 510, "right": 1330, "bottom": 2050, "left": 300}], "shape": {"h": 2540, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719908f.jpg"} -{"rects": [{"solidity": 0.9945571978035269, "top": 750, "right": 3160, "bottom": 2685, "left": 415}, {"solidity": 0.9950479773480758, "top": 3365, "right": 3100, "bottom": 5270, "left": 400}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712350f.jpg"} -{"rects": [{"solidity": 0.9945573736842442, "top": 560, "right": 3055, "bottom": 2205, "left": 630}, {"solidity": 0.9964234805436052, "top": 590, "right": 5570, "bottom": 2230, "left": 3155}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701574f.jpg"} -{"rects": [{"solidity": 0.9945585641164053, "top": 550, "right": 3065, "bottom": 1990, "left": 1235}, {"solidity": 0.9937268997321217, "top": 2350, "right": 3075, "bottom": 3780, "left": 1250}, {"solidity": 0.9947490242589855, "top": 4105, "right": 3025, "bottom": 5505, "left": 1265}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703563f.jpg"} -{"rects": [{"solidity": 0.9945586596980486, "top": 420, "right": 3185, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/700803f.jpg"} -{"rects": [{"solidity": 0.9945591411095619, "top": 295, "right": 5060, "bottom": 3640, "left": 1005}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731990f.jpg"} -{"rects": [{"solidity": 0.9945592023265476, "top": 465, "right": 3160, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719741f.jpg"} -{"rects": [{"solidity": 0.994559653632585, "top": 455, "right": 5015, "bottom": 3650, "left": 985}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708410f.jpg"} -{"rects": [{"solidity": 0.9945597765308564, "top": 550, "right": 2520, "bottom": 2040, "left": 755}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706260f.jpg"} -{"rects": [{"solidity": 0.9945600280772744, "top": 2160, "right": 2715, "bottom": 3530, "left": 930}, {"solidity": 0.980498972823254, "top": 715, "right": 2740, "bottom": 2100, "left": 925}], "shape": {"h": 3885, "w": 6060}, "file": "/usr/local/google/home/danvk/milstein/728139f.jpg"} -{"rects": [{"solidity": 0.9945602370878746, "top": 2370, "right": 2985, "bottom": 3805, "left": 1170}, {"solidity": 0.9949347079379439, "top": 550, "right": 2980, "bottom": 1940, "left": 1155}, {"solidity": 0.9958487635885797, "top": 4160, "right": 2960, "bottom": 5550, "left": 1130}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727657f.jpg"} -{"rects": [{"solidity": 0.9945605383710231, "top": 475, "right": 3280, "bottom": 2380, "left": 575}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701030f.jpg"} -{"rects": [{"solidity": 0.9945605764619182, "top": 960, "right": 3005, "bottom": 2180, "left": 1200}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508325.jpg"} -{"rects": [{"solidity": 0.9945623214188313, "top": 885, "right": 2650, "bottom": 3770, "left": 535}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509219.jpg"} -{"rects": [{"solidity": 0.994562458737389, "top": 870, "right": 2290, "bottom": 3260, "left": 690}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709438f.jpg"} -{"rects": [{"solidity": 0.9945625817449704, "top": 915, "right": 2900, "bottom": 1990, "left": 1260}], "shape": {"h": 3020, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509541.jpg"} -{"rects": [{"solidity": 0.9945630635499265, "top": 750, "right": 2020, "bottom": 3165, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727493f.jpg"} -{"rects": [{"solidity": 0.9945633170807514, "top": 495, "right": 3385, "bottom": 2425, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714266f.jpg"} -{"rects": [{"solidity": 0.9945635459965675, "top": 710, "right": 3175, "bottom": 2305, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709228f.jpg"} -{"rects": [{"solidity": 0.9945640475356694, "top": 370, "right": 3170, "bottom": 2000, "left": 740}, {"solidity": 0.995381151619979, "top": 2225, "right": 3160, "bottom": 3865, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728392f.jpg"} -{"rects": [{"solidity": 0.9945641196550122, "top": 820, "right": 2220, "bottom": 3470, "left": 330}, {"solidity": 0.9970871903152257, "top": 935, "right": 4045, "bottom": 3365, "left": 2410}, {"solidity": 0.9986503162116305, "top": 950, "right": 5840, "bottom": 3365, "left": 4220}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701113f.jpg"} -{"rects": [{"solidity": 0.9945648147524533, "top": 435, "right": 3140, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700564f.jpg"} -{"rects": [{"solidity": 0.9945649029919204, "top": 3665, "right": 3900, "bottom": 5220, "left": 955}, {"solidity": 0.9981085048719107, "top": 910, "right": 3230, "bottom": 3000, "left": 1735}, {"solidity": 0.9667703282727923, "top": 630, "right": 1520, "bottom": 3290, "left": 545}, {"solidity": 0.9531176099637395, "top": 640, "right": 4340, "bottom": 2915, "left": 3480}], "shape": {"h": 6005, "w": 4750}, "file": "/usr/local/google/home/danvk/milstein/465589.jpg"} -{"rects": [{"solidity": 0.9945653224092288, "top": 635, "right": 3330, "bottom": 2560, "left": 615}, {"solidity": 0.9881624467529679, "top": 3170, "right": 3320, "bottom": 5090, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707934f.jpg"} -{"rects": [{"solidity": 0.9945657979684445, "top": 655, "right": 2865, "bottom": 3435, "left": 905}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720188f.jpg"} -{"rects": [{"solidity": 0.9945667647337952, "top": 545, "right": 3140, "bottom": 1960, "left": 835}, {"solidity": 0.9957625734813847, "top": 2275, "right": 2980, "bottom": 3870, "left": 1035}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728260f.jpg"} -{"rects": [{"solidity": 0.9945669097231232, "top": 465, "right": 3200, "bottom": 2080, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724011f.jpg"} -{"rects": [{"solidity": 0.9945669184971879, "top": 475, "right": 3155, "bottom": 2080, "left": 750}, {"solidity": 0.9969050393242063, "top": 2315, "right": 3155, "bottom": 3910, "left": 755}, {"solidity": 0.9926364984228175, "top": 4150, "right": 3175, "bottom": 5745, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734022f.jpg"} -{"rects": [{"solidity": 0.994566941817951, "top": 2140, "right": 2985, "bottom": 3575, "left": 1130}, {"solidity": 0.9947513514043814, "top": 470, "right": 2980, "bottom": 1895, "left": 1160}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704075f.jpg"} -{"rects": [{"solidity": 0.9945671371391546, "top": 725, "right": 5335, "bottom": 3555, "left": 3265}, {"solidity": 0.9971922340240292, "top": 715, "right": 2715, "bottom": 3540, "left": 665}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709548f.jpg"} -{"rects": [{"solidity": 0.9945699504763885, "top": 2300, "right": 3200, "bottom": 3915, "left": 790}, {"solidity": 0.9953566072978874, "top": 445, "right": 3195, "bottom": 2050, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702246f.jpg"} -{"rects": [{"solidity": 0.994570227685138, "top": 505, "right": 4965, "bottom": 3570, "left": 1145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700567f.jpg"} -{"rects": [{"solidity": 0.9945702277879666, "top": 2310, "right": 3205, "bottom": 3925, "left": 810}, {"solidity": 0.9931050856176241, "top": 485, "right": 3215, "bottom": 2085, "left": 820}, {"solidity": 0.9933011881039983, "top": 4160, "right": 3180, "bottom": 5750, "left": 810}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710118f.jpg"} -{"rects": [{"solidity": 0.9945714391225673, "top": 795, "right": 4990, "bottom": 3360, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701636f.jpg"} -{"rects": [{"solidity": 0.994571557346625, "top": 400, "right": 3220, "bottom": 1995, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705410f.jpg"} -{"rects": [{"solidity": 0.9945721415905957, "top": 425, "right": 3145, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/730229f.jpg"} -{"rects": [{"solidity": 0.9945725347519343, "top": 590, "right": 1525, "bottom": 2380, "left": 345}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716437f.jpg"} -{"rects": [{"solidity": 0.9945728239428039, "top": 755, "right": 3890, "bottom": 3145, "left": 2285}, {"solidity": 0.997800464947871, "top": 770, "right": 2015, "bottom": 3135, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707869f.jpg"} -{"rects": [{"solidity": 0.9945732406175963, "top": 300, "right": 5095, "bottom": 3660, "left": 1080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723480f.jpg"} -{"rects": [{"solidity": 0.9945740796859893, "top": 565, "right": 5245, "bottom": 1995, "left": 3390}, {"solidity": 0.9947668538090562, "top": 2050, "right": 2680, "bottom": 3475, "left": 860}, {"solidity": 0.9944092801024554, "top": 615, "right": 2670, "bottom": 2030, "left": 860}, {"solidity": 0.9940330046286979, "top": 2005, "right": 5200, "bottom": 3395, "left": 3390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707155f.jpg"} -{"rects": [{"solidity": 0.9945744898655565, "top": 2200, "right": 2795, "bottom": 3615, "left": 965}, {"solidity": 0.9957892268688359, "top": 625, "right": 4965, "bottom": 2050, "left": 3155}, {"solidity": 0.9944620173213545, "top": 605, "right": 2750, "bottom": 1995, "left": 950}, {"solidity": 0.9957659599643991, "top": 2230, "right": 4950, "bottom": 3610, "left": 3165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726366f.jpg"} -{"rects": [{"solidity": 0.9945746388443018, "top": 2230, "right": 3265, "bottom": 3885, "left": 830}, {"solidity": 0.9981730485794157, "top": 485, "right": 3260, "bottom": 2100, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712073f.jpg"} -{"rects": [{"solidity": 0.9945760578117847, "top": 460, "right": 3065, "bottom": 1860, "left": 855}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733345f.jpg"} -{"rects": [{"solidity": 0.9945765099066122, "top": 710, "right": 4950, "bottom": 3460, "left": 1020}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702818f.jpg"} -{"rects": [{"solidity": 0.9945772366086353, "top": 425, "right": 3260, "bottom": 2070, "left": 820}, {"solidity": 0.9920885029860943, "top": 2355, "right": 2955, "bottom": 3910, "left": 1105}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720899f.jpg"} -{"rects": [{"solidity": 0.994577498769785, "top": 590, "right": 3025, "bottom": 2055, "left": 1165}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727412f.jpg"} -{"rects": [{"solidity": 0.9945782502292397, "top": 425, "right": 3255, "bottom": 2745, "left": 535}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714574f.jpg"} -{"rects": [{"solidity": 0.994578275544941, "top": 600, "right": 2840, "bottom": 2055, "left": 1005}, {"solidity": 0.9944121104805586, "top": 2250, "right": 2875, "bottom": 3690, "left": 1045}, {"solidity": 0.9974307806210254, "top": 2215, "right": 5045, "bottom": 3645, "left": 3245}, {"solidity": 0.9957662231998915, "top": 605, "right": 5020, "bottom": 2005, "left": 3220}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725391f.jpg"} -{"rects": [{"solidity": 0.9945787057530376, "top": 610, "right": 3030, "bottom": 2035, "left": 1220}, {"solidity": 0.9947681367881526, "top": 2400, "right": 3045, "bottom": 3785, "left": 1235}, {"solidity": 0.9942704296417879, "top": 4145, "right": 3020, "bottom": 5525, "left": 1205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727489f.jpg"} -{"rects": [{"solidity": 0.9945792861044482, "top": 395, "right": 2360, "bottom": 1585, "left": 570}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716365f.jpg"} -{"rects": [{"solidity": 0.9945792978307365, "top": 415, "right": 3110, "bottom": 2040, "left": 705}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719971f.jpg"} -{"rects": [{"solidity": 0.9945793958361349, "top": 3195, "right": 3235, "bottom": 5115, "left": 535}, {"solidity": 0.9936539936214778, "top": 730, "right": 3255, "bottom": 2530, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713320f.jpg"} -{"rects": [{"solidity": 0.9945799727506887, "top": 2280, "right": 2985, "bottom": 3675, "left": 1160}, {"solidity": 0.9908795376557703, "top": 545, "right": 2975, "bottom": 1950, "left": 1180}, {"solidity": 0.9944429889968159, "top": 4025, "right": 2965, "bottom": 5415, "left": 1160}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727546f.jpg"} -{"rects": [{"solidity": 0.9945801836950338, "top": 750, "right": 2410, "bottom": 3160, "left": 785}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724155f.jpg"} -{"rects": [{"solidity": 0.994580265095729, "top": 455, "right": 3180, "bottom": 2080, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734517f.jpg"} -{"rects": [{"solidity": 0.994580359931762, "top": 490, "right": 5120, "bottom": 3745, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708186f.jpg"} -{"rects": [{"solidity": 0.9945804019254721, "top": 320, "right": 3175, "bottom": 1895, "left": 795}, {"solidity": 0.9972665686821077, "top": 2150, "right": 3180, "bottom": 3710, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724680f.jpg"} -{"rects": [{"solidity": 0.9945810452019328, "top": 2225, "right": 3035, "bottom": 3830, "left": 635}, {"solidity": 0.9961793679252149, "top": 4100, "right": 3005, "bottom": 5710, "left": 605}, {"solidity": 0.9969327704534643, "top": 370, "right": 3050, "bottom": 1955, "left": 660}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/728954f.jpg"} -{"rects": [{"solidity": 0.9945811121435908, "top": 2285, "right": 3075, "bottom": 3710, "left": 1260}, {"solidity": 0.9934478806451772, "top": 520, "right": 3075, "bottom": 1935, "left": 1245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727799f.jpg"} -{"rects": [{"solidity": 0.9945818472392758, "top": 465, "right": 3055, "bottom": 1895, "left": 1235}, {"solidity": 0.996391848213501, "top": 4210, "right": 2990, "bottom": 5625, "left": 1165}, {"solidity": 0.9959756874663007, "top": 2350, "right": 3025, "bottom": 3780, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726499f.jpg"} -{"rects": [{"solidity": 0.9945824016705903, "top": 465, "right": 3120, "bottom": 1895, "left": 1300}, {"solidity": 0.9939969736809466, "top": 2180, "right": 3115, "bottom": 3600, "left": 1295}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725949f.jpg"} -{"rects": [{"solidity": 0.9945825303661834, "top": 715, "right": 3775, "bottom": 3215, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722798f.jpg"} -{"rects": [{"solidity": 0.9945827832658078, "top": 610, "right": 3140, "bottom": 2220, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710471f.jpg"} -{"rects": [{"solidity": 0.9945829145728643, "top": 690, "right": 2675, "bottom": 2105, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734585f.jpg"} -{"rects": [{"solidity": 0.9945842335981672, "top": 1070, "right": 3555, "bottom": 2660, "left": 700}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509673.jpg"} -{"rects": [{"solidity": 0.9945846520953817, "top": 710, "right": 2045, "bottom": 3100, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710352f.jpg"} -{"rects": [{"solidity": 0.9945849673617368, "top": 395, "right": 2970, "bottom": 1890, "left": 965}, {"solidity": 0.9943377113618064, "top": 2190, "right": 2955, "bottom": 3670, "left": 980}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721724f.jpg"} -{"rects": [{"solidity": 0.9945857160238472, "top": 745, "right": 3330, "bottom": 2660, "left": 615}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711062f.jpg"} -{"rects": [{"solidity": 0.9945858228221583, "top": 405, "right": 2970, "bottom": 1810, "left": 1135}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703779f.jpg"} -{"rects": [{"solidity": 0.9945873368858306, "top": 485, "right": 3175, "bottom": 2100, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701686f.jpg"} -{"rects": [{"solidity": 0.9945876848122331, "top": 480, "right": 2920, "bottom": 1905, "left": 1075}, {"solidity": 0.9957262813631758, "top": 4165, "right": 2910, "bottom": 5555, "left": 1100}, {"solidity": 0.9455175222124645, "top": 2335, "right": 2925, "bottom": 3740, "left": 1060}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726350f.jpg"} -{"rects": [{"solidity": 0.9945886433469816, "top": 680, "right": 3295, "bottom": 2625, "left": 585}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714504f.jpg"} -{"rects": [{"solidity": 0.9945888015463301, "top": 2085, "right": 2725, "bottom": 3535, "left": 890}, {"solidity": 0.9979514798874757, "top": 605, "right": 5230, "bottom": 2035, "left": 3395}, {"solidity": 0.9946478447582512, "top": 630, "right": 2710, "bottom": 2085, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705886f.jpg"} -{"rects": [{"solidity": 0.9945888015463301, "top": 2310, "right": 3065, "bottom": 3765, "left": 1235}, {"solidity": 0.9988930275695972, "top": 4170, "right": 3030, "bottom": 5585, "left": 1245}, {"solidity": 0.9949191987079818, "top": 510, "right": 3040, "bottom": 1905, "left": 1235}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726988f.jpg"} -{"rects": [{"solidity": 0.9945891218111504, "top": 805, "right": 2025, "bottom": 3190, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718792f.jpg"} -{"rects": [{"solidity": 0.9945893894970852, "top": 735, "right": 4650, "bottom": 3365, "left": 1400}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715148f.jpg"} -{"rects": [{"solidity": 0.9945900062856928, "top": 665, "right": 2750, "bottom": 1985, "left": 960}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725512f.jpg"} -{"rects": [{"solidity": 0.994590151828914, "top": 855, "right": 1990, "bottom": 3280, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723950f.jpg"} -{"rects": [{"solidity": 0.9945903158051351, "top": 450, "right": 4970, "bottom": 3250, "left": 1065}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728819f.jpg"} -{"rects": [{"solidity": 0.9945903386406655, "top": 380, "right": 3250, "bottom": 3545, "left": 735}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/715179f.jpg"} -{"rects": [{"solidity": 0.9945905671739286, "top": 835, "right": 3250, "bottom": 2265, "left": 2385}, {"solidity": 0.9971462197827378, "top": 845, "right": 4340, "bottom": 2245, "left": 3470}, {"solidity": 0.9951655292501703, "top": 855, "right": 1140, "bottom": 2220, "left": 280}, {"solidity": 0.9992683205670516, "top": 855, "right": 2165, "bottom": 2220, "left": 1355}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715821f.jpg"} -{"rects": [{"solidity": 0.9945907392656337, "top": 445, "right": 3120, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717567f.jpg"} -{"rects": [{"solidity": 0.9945909385414127, "top": 340, "right": 4990, "bottom": 3645, "left": 955}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714031f.jpg"} -{"rects": [{"solidity": 0.9945911652462136, "top": 2205, "right": 3205, "bottom": 3835, "left": 775}, {"solidity": 0.9960258955659086, "top": 420, "right": 3185, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710482f.jpg"} -{"rects": [{"solidity": 0.9945916206962613, "top": 575, "right": 2755, "bottom": 1995, "left": 925}, {"solidity": 0.99677038724837, "top": 2195, "right": 4890, "bottom": 3565, "left": 3080}, {"solidity": 0.9961806427798768, "top": 2215, "right": 2725, "bottom": 3590, "left": 925}, {"solidity": 0.9952371890157029, "top": 585, "right": 4875, "bottom": 1960, "left": 3075}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727487f.jpg"} -{"rects": [{"solidity": 0.9945917592875905, "top": 770, "right": 1950, "bottom": 2910, "left": 465}], "shape": {"h": 5915, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/464816.jpg"} -{"rects": [{"solidity": 0.9945927462821509, "top": 965, "right": 2050, "bottom": 2770, "left": 835}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507610.jpg"} -{"rects": [{"solidity": 0.9945932064769869, "top": 4025, "right": 3110, "bottom": 5840, "left": 575}, {"solidity": 0.9948654858407626, "top": 2075, "right": 3115, "bottom": 3890, "left": 625}, {"solidity": 0.9958154984463206, "top": 265, "right": 3155, "bottom": 1985, "left": 550}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731131f.jpg"} -{"rects": [{"solidity": 0.9945932152795832, "top": 500, "right": 2845, "bottom": 1945, "left": 1015}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703700f.jpg"} -{"rects": [{"solidity": 0.994593253801985, "top": 1365, "right": 3385, "bottom": 4995, "left": 265}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723442f.jpg"} -{"rects": [{"solidity": 0.9945950342339145, "top": 500, "right": 3350, "bottom": 2390, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709425f.jpg"} -{"rects": [{"solidity": 0.9945955789486052, "top": 2175, "right": 2625, "bottom": 3475, "left": 970}, {"solidity": 0.9965274086673045, "top": 550, "right": 2640, "bottom": 1840, "left": 980}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706752f.jpg"} -{"rects": [{"solidity": 0.9945957480596304, "top": 2100, "right": 5185, "bottom": 3520, "left": 3390}, {"solidity": 0.995034539088686, "top": 2085, "right": 2745, "bottom": 3505, "left": 960}, {"solidity": 0.9961868065503077, "top": 615, "right": 2750, "bottom": 2030, "left": 965}, {"solidity": 0.9961841847276895, "top": 625, "right": 5175, "bottom": 2035, "left": 3395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703611f.jpg"} -{"rects": [{"solidity": 0.9945964312694427, "top": 750, "right": 2020, "bottom": 3150, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717551f.jpg"} -{"rects": [{"solidity": 0.9945965825506393, "top": 925, "right": 4435, "bottom": 3635, "left": 2610}, {"solidity": 0.9981133791562179, "top": 915, "right": 2260, "bottom": 3610, "left": 465}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711700f.jpg"} -{"rects": [{"solidity": 0.9945966547503606, "top": 2090, "right": 2770, "bottom": 3525, "left": 940}, {"solidity": 0.9969827670520118, "top": 655, "right": 5215, "bottom": 2075, "left": 3395}, {"solidity": 0.9958416598095686, "top": 660, "right": 2740, "bottom": 2080, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726728f.jpg"} -{"rects": [{"solidity": 0.9945975637122407, "top": 775, "right": 1985, "bottom": 3155, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724698f.jpg"} -{"rects": [{"solidity": 0.9945981343383316, "top": 715, "right": 3225, "bottom": 2535, "left": 620}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710026f.jpg"} -{"rects": [{"solidity": 0.9945986845553169, "top": 400, "right": 3135, "bottom": 2005, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728468f.jpg"} -{"rects": [{"solidity": 0.9945987579093098, "top": 725, "right": 3195, "bottom": 2345, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708075f.jpg"} -{"rects": [{"solidity": 0.9945989582945557, "top": 540, "right": 5075, "bottom": 3620, "left": 1220}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720973f.jpg"} -{"rects": [{"solidity": 0.9945990956470967, "top": 495, "right": 3140, "bottom": 2100, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711910f.jpg"} -{"rects": [{"solidity": 0.9945998258008323, "top": 470, "right": 3210, "bottom": 2080, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701523f.jpg"} -{"rects": [{"solidity": 0.9946003902401329, "top": 2360, "right": 3100, "bottom": 3800, "left": 1280}, {"solidity": 0.9935706838629957, "top": 480, "right": 3090, "bottom": 1925, "left": 1265}, {"solidity": 0.995773557949878, "top": 4135, "right": 3055, "bottom": 5540, "left": 1245}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726309f.jpg"} -{"rects": [{"solidity": 0.9946013410515847, "top": 2285, "right": 3185, "bottom": 3900, "left": 760}, {"solidity": 0.9902350944587697, "top": 410, "right": 3205, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734279f.jpg"} -{"rects": [{"solidity": 0.9946017475050997, "top": 625, "right": 2675, "bottom": 2100, "left": 840}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705725f.jpg"} -{"rects": [{"solidity": 0.9946018629440383, "top": 555, "right": 2685, "bottom": 1980, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705437f.jpg"} -{"rects": [{"solidity": 0.9946025371014351, "top": 770, "right": 2035, "bottom": 3185, "left": 430}, {"solidity": 0.9970275168891086, "top": 780, "right": 3860, "bottom": 3180, "left": 2265}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723084f.jpg"} -{"rects": [{"solidity": 0.9946025845964216, "top": 695, "right": 2625, "bottom": 2140, "left": 795}, {"solidity": 0.9973552309936115, "top": 2205, "right": 2590, "bottom": 3595, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704280f.jpg"} -{"rects": [{"solidity": 0.9946041525497972, "top": 2195, "right": 2795, "bottom": 5300, "left": 525}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714301f.jpg"} -{"rects": [{"solidity": 0.9946042123823191, "top": 400, "right": 3090, "bottom": 2015, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701865f.jpg"} -{"rects": [{"solidity": 0.994605008367004, "top": 540, "right": 3135, "bottom": 2130, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727548f.jpg"} -{"rects": [{"solidity": 0.9946061589799442, "top": 395, "right": 3050, "bottom": 3795, "left": 715}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714512f.jpg"} -{"rects": [{"solidity": 0.9946067873566564, "top": 950, "right": 4115, "bottom": 2160, "left": 525}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716532f.jpg"} -{"rects": [{"solidity": 0.9946069685786674, "top": 490, "right": 3955, "bottom": 2575, "left": 2470}, {"solidity": 0.9926554614330391, "top": 485, "right": 2205, "bottom": 2565, "left": 710}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716273f.jpg"} -{"rects": [{"solidity": 0.994606969257801, "top": 775, "right": 3905, "bottom": 3200, "left": 2285}, {"solidity": 0.9954910720016431, "top": 775, "right": 2055, "bottom": 3200, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722552f.jpg"} -{"rects": [{"solidity": 0.994607070308947, "top": 430, "right": 2985, "bottom": 2075, "left": 945}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734663f.jpg"} -{"rects": [{"solidity": 0.9946081528834033, "top": 835, "right": 2095, "bottom": 3250, "left": 455}, {"solidity": 0.9962604673944783, "top": 1210, "right": 3500, "bottom": 2570, "left": 2505}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712253f.jpg"} -{"rects": [{"solidity": 0.994608195542775, "top": 680, "right": 2705, "bottom": 2055, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726383f.jpg"} -{"rects": [{"solidity": 0.9946083802837389, "top": 400, "right": 2945, "bottom": 1845, "left": 1110}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703607f.jpg"} -{"rects": [{"solidity": 0.994609900558781, "top": 925, "right": 5160, "bottom": 2770, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715033f.jpg"} -{"rects": [{"solidity": 0.994610041237939, "top": 650, "right": 2715, "bottom": 2040, "left": 895}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731991f.jpg"} -{"rects": [{"solidity": 0.9946104211566238, "top": 415, "right": 3035, "bottom": 3650, "left": 625}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714550f.jpg"} -{"rects": [{"solidity": 0.9946104666902684, "top": 945, "right": 1930, "bottom": 2920, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700342f.jpg"} -{"rects": [{"solidity": 0.9946111083287424, "top": 780, "right": 1990, "bottom": 3165, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722211f.jpg"} -{"rects": [{"solidity": 0.994611249565955, "top": 850, "right": 3350, "bottom": 2765, "left": 1845}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700555f.jpg"} -{"rects": [{"solidity": 0.9946119500326093, "top": 730, "right": 2640, "bottom": 2150, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705246f.jpg"} -{"rects": [{"solidity": 0.9946121865790858, "top": 2350, "right": 3025, "bottom": 3765, "left": 1220}, {"solidity": 0.9953027815096781, "top": 4130, "right": 3015, "bottom": 5530, "left": 1195}, {"solidity": 0.9947101337844072, "top": 590, "right": 3015, "bottom": 1980, "left": 1240}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725999f.jpg"} -{"rects": [{"solidity": 0.9946129759940743, "top": 480, "right": 3145, "bottom": 2065, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704873f.jpg"} -{"rects": [{"solidity": 0.9946138762030085, "top": 2225, "right": 3255, "bottom": 3865, "left": 825}, {"solidity": 0.9958116676824129, "top": 390, "right": 3265, "bottom": 2015, "left": 845}, {"solidity": 0.9946775284992972, "top": 4080, "right": 3235, "bottom": 5720, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733111f.jpg"} -{"rects": [{"solidity": 0.994614613635808, "top": 760, "right": 3365, "bottom": 2665, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717962f.jpg"} -{"rects": [{"solidity": 0.9946146194216718, "top": 575, "right": 1600, "bottom": 2400, "left": 370}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715960f.jpg"} -{"rects": [{"solidity": 0.9946149809786173, "top": 925, "right": 2240, "bottom": 3330, "left": 630}, {"solidity": 0.9935161380559737, "top": 920, "right": 3900, "bottom": 3305, "left": 2305}, {"solidity": 0.9921859515098986, "top": 920, "right": 5515, "bottom": 3305, "left": 3930}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709472f.jpg"} -{"rects": [{"solidity": 0.994615915972137, "top": 4140, "right": 3170, "bottom": 5765, "left": 745}, {"solidity": 0.9957005792903693, "top": 2265, "right": 3170, "bottom": 3885, "left": 750}, {"solidity": 0.9985454569885249, "top": 420, "right": 3165, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733261f.jpg"} -{"rects": [{"solidity": 0.9946162891592097, "top": 795, "right": 2020, "bottom": 3170, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717461f.jpg"} -{"rects": [{"solidity": 0.9946164101497, "top": 665, "right": 3350, "bottom": 2585, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709413f.jpg"} -{"rects": [{"solidity": 0.9946166215554868, "top": 725, "right": 5670, "bottom": 3115, "left": 4085}, {"solidity": 0.9903632743377689, "top": 730, "right": 3840, "bottom": 3115, "left": 2255}, {"solidity": 0.9485164209170616, "top": 750, "right": 1915, "bottom": 3010, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718344f.jpg"} -{"rects": [{"solidity": 0.9946169812107621, "top": 2230, "right": 3140, "bottom": 3860, "left": 715}, {"solidity": 0.9970184194696884, "top": 400, "right": 3135, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734332f.jpg"} -{"rects": [{"solidity": 0.994617708377654, "top": 495, "right": 3060, "bottom": 1835, "left": 1285}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726746f.jpg"} -{"rects": [{"solidity": 0.9946177387798792, "top": 600, "right": 4895, "bottom": 3610, "left": 1145}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713971f.jpg"} -{"rects": [{"solidity": 0.994618131405461, "top": 650, "right": 5220, "bottom": 3525, "left": 3415}, {"solidity": 0.9965374133730576, "top": 2090, "right": 2740, "bottom": 3500, "left": 940}, {"solidity": 0.9957922511456371, "top": 665, "right": 2735, "bottom": 2065, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726304f.jpg"} -{"rects": [{"solidity": 0.9946188632592641, "top": 575, "right": 2205, "bottom": 1770, "left": 570}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706074f.jpg"} -{"rects": [{"solidity": 0.9946194390918569, "top": 735, "right": 5695, "bottom": 3160, "left": 4040}, {"solidity": 0.9954956718004918, "top": 720, "right": 3850, "bottom": 3120, "left": 2230}, {"solidity": 0.9969184877593661, "top": 715, "right": 2005, "bottom": 3115, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722418f.jpg"} -{"rects": [{"solidity": 0.9946197626655902, "top": 820, "right": 3930, "bottom": 3220, "left": 2225}, {"solidity": 0.9963193331195896, "top": 815, "right": 1995, "bottom": 3250, "left": 380}, {"solidity": 0.9934235164977078, "top": 780, "right": 5785, "bottom": 3200, "left": 4160}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701717f.jpg"} -{"rects": [{"solidity": 0.9946202622902495, "top": 1955, "right": 3160, "bottom": 3590, "left": 730}, {"solidity": 0.9968564567406317, "top": 220, "right": 3145, "bottom": 1830, "left": 725}, {"solidity": 0.9958485492931358, "top": 3590, "right": 2760, "bottom": 5985, "left": 1150}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734095f.jpg"} -{"rects": [{"solidity": 0.9946202715528095, "top": 700, "right": 2770, "bottom": 2110, "left": 915}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706189f.jpg"} -{"rects": [{"solidity": 0.9946204442810629, "top": 405, "right": 3230, "bottom": 2010, "left": 835}, {"solidity": 0.9946326619617794, "top": 2365, "right": 2930, "bottom": 3765, "left": 1105}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707788f.jpg"} -{"rects": [{"solidity": 0.9946212128695755, "top": 2205, "right": 2800, "bottom": 3625, "left": 995}, {"solidity": 0.9944211925503896, "top": 535, "right": 2810, "bottom": 1955, "left": 1000}, {"solidity": 0.9925737193583775, "top": 565, "right": 5110, "bottom": 1970, "left": 3315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725186f.jpg"} -{"rects": [{"solidity": 0.9946233750303812, "top": 1090, "right": 3545, "bottom": 4920, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708421f.jpg"} -{"rects": [{"solidity": 0.9946233951127722, "top": 640, "right": 5075, "bottom": 3635, "left": 1290}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717146f.jpg"} -{"rects": [{"solidity": 0.9946234973805522, "top": 1350, "right": 3165, "bottom": 4760, "left": 480}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714436f.jpg"} -{"rects": [{"solidity": 0.994623497477104, "top": 405, "right": 3215, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734570f.jpg"} -{"rects": [{"solidity": 0.9946235510567615, "top": 360, "right": 3125, "bottom": 1995, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732443f.jpg"} -{"rects": [{"solidity": 0.9946242911153119, "top": 475, "right": 2930, "bottom": 1905, "left": 1125}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726883f.jpg"} -{"rects": [{"solidity": 0.9946243511820089, "top": 385, "right": 3320, "bottom": 2260, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713793f.jpg"} -{"rects": [{"solidity": 0.9946247687982853, "top": 550, "right": 3130, "bottom": 2145, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710728f.jpg"} -{"rects": [{"solidity": 0.9946249377642826, "top": 670, "right": 2835, "bottom": 3830, "left": 560}], "shape": {"h": 4410, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711639f.jpg"} -{"rects": [{"solidity": 0.9946249911303484, "top": 460, "right": 3060, "bottom": 3885, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724449f.jpg"} -{"rects": [{"solidity": 0.994625621154388, "top": 1155, "right": 3370, "bottom": 4980, "left": 470}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717053f.jpg"} -{"rects": [{"solidity": 0.994625642063713, "top": 720, "right": 2625, "bottom": 2125, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725349f.jpg"} -{"rects": [{"solidity": 0.994625987967246, "top": 380, "right": 3160, "bottom": 1980, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712067f.jpg"} -{"rects": [{"solidity": 0.994626584706235, "top": 395, "right": 3090, "bottom": 2030, "left": 675}, {"solidity": 0.9941860465116279, "top": 2270, "right": 3095, "bottom": 3895, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710768f.jpg"} -{"rects": [{"solidity": 0.9946267466396398, "top": 670, "right": 2050, "bottom": 3055, "left": 455}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721401f.jpg"} -{"rects": [{"solidity": 0.9946268177070781, "top": 800, "right": 2135, "bottom": 3235, "left": 500}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722248f.jpg"} -{"rects": [{"solidity": 0.994627914072593, "top": 450, "right": 3275, "bottom": 2075, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/711784f.jpg"} -{"rects": [{"solidity": 0.9946290653327967, "top": 1365, "right": 2835, "bottom": 4815, "left": 1305}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721024f.jpg"} -{"rects": [{"solidity": 0.9946300645292775, "top": 575, "right": 2120, "bottom": 3515, "left": 290}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713795f.jpg"} -{"rects": [{"solidity": 0.9946304588695772, "top": 385, "right": 3200, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724744f.jpg"} -{"rects": [{"solidity": 0.9946308266258523, "top": 845, "right": 5240, "bottom": 3565, "left": 1850}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734428f.jpg"} -{"rects": [{"solidity": 0.9946310422134733, "top": 190, "right": 2700, "bottom": 3280, "left": 220}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508865.jpg"} -{"rects": [{"solidity": 0.9946323623818064, "top": 930, "right": 1995, "bottom": 2890, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700339f.jpg"} -{"rects": [{"solidity": 0.9946327080714901, "top": 780, "right": 2840, "bottom": 2295, "left": 730}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509061.jpg"} -{"rects": [{"solidity": 0.9946328210740051, "top": 860, "right": 2025, "bottom": 3305, "left": 385}, {"solidity": 0.9963636363636363, "top": 880, "right": 3875, "bottom": 3300, "left": 2245}, {"solidity": 0.9880227782841797, "top": 905, "right": 5710, "bottom": 3320, "left": 4095}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728920f.jpg"} -{"rects": [{"solidity": 0.9946331640494639, "top": 590, "right": 5005, "bottom": 3495, "left": 1175}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721467f.jpg"} -{"rects": [{"solidity": 0.9946333063024483, "top": 340, "right": 1840, "bottom": 1470, "left": 600}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508897.jpg"} -{"rects": [{"solidity": 0.9946339606081727, "top": 865, "right": 5590, "bottom": 3290, "left": 3965}, {"solidity": 0.996271388670445, "top": 850, "right": 1965, "bottom": 3145, "left": 340}, {"solidity": 0.9944242092825686, "top": 1135, "right": 3755, "bottom": 2790, "left": 2185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718492f.jpg"} -{"rects": [{"solidity": 0.9946341415121425, "top": 550, "right": 3135, "bottom": 2145, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723807f.jpg"} -{"rects": [{"solidity": 0.9946341425657815, "top": 435, "right": 5060, "bottom": 3670, "left": 1020}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721301f.jpg"} -{"rects": [{"solidity": 0.9946348819674032, "top": 2245, "right": 3120, "bottom": 3875, "left": 695}, {"solidity": 0.9938445060280611, "top": 4080, "right": 3105, "bottom": 5725, "left": 670}, {"solidity": 0.9958925822378591, "top": 405, "right": 3110, "bottom": 2010, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722969f.jpg"} -{"rects": [{"solidity": 0.9946352036563, "top": 710, "right": 2670, "bottom": 2130, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726462f.jpg"} -{"rects": [{"solidity": 0.9946354247979565, "top": 835, "right": 2190, "bottom": 3240, "left": 570}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724942f.jpg"} -{"rects": [{"solidity": 0.994635843526061, "top": 895, "right": 3020, "bottom": 2810, "left": 1415}, {"solidity": 0.9516722654791976, "top": 3605, "right": 1905, "bottom": 5640, "left": 420}, {"solidity": 0.9690451010304261, "top": 3670, "right": 3930, "bottom": 5560, "left": 2460}], "shape": {"h": 6060, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465718.jpg"} -{"rects": [{"solidity": 0.9946373751635341, "top": 2280, "right": 3135, "bottom": 3930, "left": 700}, {"solidity": 0.9943580359865812, "top": 415, "right": 3185, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724763f.jpg"} -{"rects": [{"solidity": 0.9946377579367643, "top": 2190, "right": 3330, "bottom": 3820, "left": 910}, {"solidity": 0.994124092191636, "top": 465, "right": 3060, "bottom": 1915, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726059f.jpg"} -{"rects": [{"solidity": 0.9946380346435274, "top": 805, "right": 1985, "bottom": 3215, "left": 365}, {"solidity": 0.9934365689143748, "top": 850, "right": 3830, "bottom": 3250, "left": 2200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713436f.jpg"} -{"rects": [{"solidity": 0.9946382873696107, "top": 715, "right": 2025, "bottom": 3140, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720371f.jpg"} -{"rects": [{"solidity": 0.9946389517892741, "top": 665, "right": 2600, "bottom": 3425, "left": 710}, {"solidity": 0.9959864324667335, "top": 750, "right": 5155, "bottom": 3170, "left": 3510}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718107f.jpg"} -{"rects": [{"solidity": 0.9946393198120289, "top": 445, "right": 3135, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719672f.jpg"} -{"rects": [{"solidity": 0.9946395009941983, "top": 1040, "right": 3630, "bottom": 2285, "left": 1710}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508701.jpg"} -{"rects": [{"solidity": 0.994640061559689, "top": 785, "right": 2030, "bottom": 3180, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713410f.jpg"} -{"rects": [{"solidity": 0.9946401926651135, "top": 4075, "right": 3060, "bottom": 5690, "left": 645}, {"solidity": 0.9939020782243377, "top": 2205, "right": 3085, "bottom": 3825, "left": 675}, {"solidity": 0.996008846718779, "top": 385, "right": 3075, "bottom": 1970, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732079f.jpg"} -{"rects": [{"solidity": 0.9946403703564304, "top": 485, "right": 3260, "bottom": 2110, "left": 1180}], "shape": {"h": 6875, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711223f.jpg"} -{"rects": [{"solidity": 0.994641129332374, "top": 425, "right": 3050, "bottom": 1830, "left": 1235}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726842f.jpg"} -{"rects": [{"solidity": 0.9946412562420643, "top": 495, "right": 2220, "bottom": 2585, "left": 730}, {"solidity": 0.9939593987040756, "top": 490, "right": 3945, "bottom": 2580, "left": 2460}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716221f.jpg"} -{"rects": [{"solidity": 0.99464208347374, "top": 510, "right": 2880, "bottom": 1980, "left": 1095}, {"solidity": 0.9886591287222845, "top": 2325, "right": 2895, "bottom": 3800, "left": 1125}, {"solidity": 0.9880282345564716, "top": 4215, "right": 2895, "bottom": 5695, "left": 1125}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723589f.jpg"} -{"rects": [{"solidity": 0.9946421158654511, "top": 1005, "right": 3355, "bottom": 4950, "left": 360}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721316f.jpg"} -{"rects": [{"solidity": 0.9946427159387438, "top": 1150, "right": 3620, "bottom": 5220, "left": 335}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717597f.jpg"} -{"rects": [{"solidity": 0.9946428259093328, "top": 865, "right": 2380, "bottom": 3675, "left": 560}], "shape": {"h": 4585, "w": 2960}, "file": "/usr/local/google/home/danvk/milstein/719460f.jpg"} -{"rects": [{"solidity": 0.9946429704855602, "top": 2305, "right": 3095, "bottom": 3960, "left": 660}, {"solidity": 0.996398471577514, "top": 425, "right": 3090, "bottom": 2065, "left": 665}, {"solidity": 0.9954299998091858, "top": 4150, "right": 3090, "bottom": 5790, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710632f.jpg"} -{"rects": [{"solidity": 0.9946430082794399, "top": 735, "right": 2715, "bottom": 2145, "left": 905}, {"solidity": 0.9953752238401693, "top": 2190, "right": 2705, "bottom": 3590, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727346f.jpg"} -{"rects": [{"solidity": 0.9946434678112686, "top": 390, "right": 3235, "bottom": 2025, "left": 800}, {"solidity": 0.9958771070607743, "top": 2275, "right": 3195, "bottom": 3895, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707957f.jpg"} -{"rects": [{"solidity": 0.9946437415544156, "top": 2130, "right": 2565, "bottom": 3380, "left": 905}, {"solidity": 0.9956109178418684, "top": 520, "right": 2545, "bottom": 1760, "left": 900}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706221f.jpg"} -{"rects": [{"solidity": 0.9946449717691548, "top": 850, "right": 2250, "bottom": 3255, "left": 640}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714134f.jpg"} -{"rects": [{"solidity": 0.9946450040744534, "top": 365, "right": 5255, "bottom": 3585, "left": 1260}], "shape": {"h": 3920, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730094f.jpg"} -{"rects": [{"solidity": 0.9946451319119012, "top": 780, "right": 2690, "bottom": 2020, "left": 880}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509619.jpg"} -{"rects": [{"solidity": 0.994645960643606, "top": 605, "right": 4980, "bottom": 3545, "left": 1165}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718383f.jpg"} -{"rects": [{"solidity": 0.994646766968644, "top": 440, "right": 3120, "bottom": 1835, "left": 1310}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725904f.jpg"} -{"rects": [{"solidity": 0.9946471553669339, "top": 605, "right": 5340, "bottom": 3255, "left": 925}], "shape": {"h": 4430, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711654f.jpg"} -{"rects": [{"solidity": 0.9946471633927377, "top": 620, "right": 2770, "bottom": 2040, "left": 970}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707447f.jpg"} -{"rects": [{"solidity": 0.9946472844821136, "top": 680, "right": 2725, "bottom": 2095, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730010f.jpg"} -{"rects": [{"solidity": 0.9946475670759436, "top": 540, "right": 5325, "bottom": 2000, "left": 3390}, {"solidity": 0.9939229994372272, "top": 2025, "right": 2835, "bottom": 3415, "left": 900}, {"solidity": 0.9961415981282242, "top": 625, "right": 2800, "bottom": 2010, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718980f.jpg"} -{"rects": [{"solidity": 0.9946476747671666, "top": 1230, "right": 3445, "bottom": 5125, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709076f.jpg"} -{"rects": [{"solidity": 0.9946484737401851, "top": 600, "right": 4925, "bottom": 3595, "left": 1195}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704796f.jpg"} -{"rects": [{"solidity": 0.9946485387267414, "top": 450, "right": 3195, "bottom": 2060, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701274f.jpg"} -{"rects": [{"solidity": 0.9946496690227757, "top": 335, "right": 2160, "bottom": 1545, "left": 660}, {"solidity": 0.9944305931102293, "top": 1615, "right": 3880, "bottom": 2830, "left": 2390}, {"solidity": 0.9982147519351948, "top": 1620, "right": 2160, "bottom": 2820, "left": 670}, {"solidity": 0.9949191653317715, "top": 340, "right": 3890, "bottom": 1545, "left": 2400}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716283f.jpg"} -{"rects": [{"solidity": 0.9946499484597057, "top": 840, "right": 2035, "bottom": 3210, "left": 445}], "shape": {"h": 3910, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714633f.jpg"} -{"rects": [{"solidity": 0.9946501673231833, "top": 410, "right": 3170, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734014f.jpg"} -{"rects": [{"solidity": 0.9946501880067304, "top": 2240, "right": 3175, "bottom": 3835, "left": 780}, {"solidity": 0.9961088976540311, "top": 475, "right": 3160, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731617f.jpg"} -{"rects": [{"solidity": 0.9946503045188484, "top": 435, "right": 5095, "bottom": 3630, "left": 1085}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708676f.jpg"} -{"rects": [{"solidity": 0.9946504695663323, "top": 1740, "right": 3170, "bottom": 3405, "left": 725}, {"solidity": 0.9946766840043665, "top": 3455, "right": 3130, "bottom": 5125, "left": 685}, {"solidity": 0.9949025709416908, "top": 285, "right": 2835, "bottom": 1700, "left": 1010}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734417f.jpg"} -{"rects": [{"solidity": 0.9946505868313538, "top": 2245, "right": 3375, "bottom": 4105, "left": 540}, {"solidity": 0.9969757423733454, "top": 325, "right": 3395, "bottom": 2145, "left": 560}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720947f.jpg"} -{"rects": [{"solidity": 0.9946512335063084, "top": 455, "right": 2965, "bottom": 1880, "left": 1170}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725326f.jpg"} -{"rects": [{"solidity": 0.9946517302853675, "top": 2285, "right": 3190, "bottom": 3945, "left": 745}, {"solidity": 0.9928150876656837, "top": 435, "right": 3195, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734242f.jpg"} -{"rects": [{"solidity": 0.9946517735192418, "top": 805, "right": 3895, "bottom": 3240, "left": 2250}, {"solidity": 0.9955090157473983, "top": 800, "right": 2080, "bottom": 3230, "left": 445}, {"solidity": 0.986497995335552, "top": 845, "right": 5790, "bottom": 1965, "left": 4050}, {"solidity": 0.9916201860997591, "top": 2125, "right": 5765, "bottom": 3240, "left": 4045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717550f.jpg"} -{"rects": [{"solidity": 0.9946518249712883, "top": 465, "right": 3100, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714294f.jpg"} -{"rects": [{"solidity": 0.994651971780617, "top": 330, "right": 2025, "bottom": 1350, "left": 500}], "shape": {"h": 4005, "w": 2605}, "file": "/usr/local/google/home/danvk/milstein/715754f.jpg"} -{"rects": [{"solidity": 0.9946520210697654, "top": 3025, "right": 3615, "bottom": 5690, "left": 250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730117f.jpg"} -{"rects": [{"solidity": 0.9946523720664326, "top": 455, "right": 3170, "bottom": 2070, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700542f.jpg"} -{"rects": [{"solidity": 0.9946526700496937, "top": 440, "right": 3195, "bottom": 2040, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717533f.jpg"} -{"rects": [{"solidity": 0.9946528562159045, "top": 650, "right": 3320, "bottom": 2600, "left": 590}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710594f.jpg"} -{"rects": [{"solidity": 0.9946529958023813, "top": 3950, "right": 3095, "bottom": 5605, "left": 635}, {"solidity": 0.9954207742821992, "top": 365, "right": 3120, "bottom": 2015, "left": 670}, {"solidity": 0.9951479445132112, "top": 2155, "right": 3095, "bottom": 3810, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730814f.jpg"} -{"rects": [{"solidity": 0.994653863975298, "top": 955, "right": 2085, "bottom": 2980, "left": 455}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702840f.jpg"} -{"rects": [{"solidity": 0.9946541396924726, "top": 775, "right": 3105, "bottom": 2215, "left": 1070}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507584.jpg"} -{"rects": [{"solidity": 0.9946547103539429, "top": 3130, "right": 3330, "bottom": 5055, "left": 610}, {"solidity": 0.9899905443739024, "top": 675, "right": 3285, "bottom": 2490, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712055f.jpg"} -{"rects": [{"solidity": 0.9946548956661316, "top": 410, "right": 3150, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705617f.jpg"} -{"rects": [{"solidity": 0.9946554908217315, "top": 610, "right": 2390, "bottom": 1925, "left": 545}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712965f.jpg"} -{"rects": [{"solidity": 0.9946557265290222, "top": 490, "right": 3985, "bottom": 2575, "left": 2490}, {"solidity": 0.9995955849312494, "top": 490, "right": 2210, "bottom": 2570, "left": 730}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716007f.jpg"} -{"rects": [{"solidity": 0.9946561669583253, "top": 790, "right": 1985, "bottom": 3210, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723838f.jpg"} -{"rects": [{"solidity": 0.9946575287022922, "top": 405, "right": 3025, "bottom": 1820, "left": 1030}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701400f.jpg"} -{"rects": [{"solidity": 0.9946576604237027, "top": 400, "right": 1925, "bottom": 1305, "left": 785}, {"solidity": 0.9949885022995401, "top": 2700, "right": 1930, "bottom": 3595, "left": 790}, {"solidity": 0.9961661584401452, "top": 1570, "right": 1925, "bottom": 2455, "left": 790}], "shape": {"h": 3945, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727076f.jpg"} -{"rects": [{"solidity": 0.9946577391552105, "top": 350, "right": 2445, "bottom": 1560, "left": 665}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715771f.jpg"} -{"rects": [{"solidity": 0.9946578065469743, "top": 2180, "right": 3275, "bottom": 3820, "left": 840}, {"solidity": 0.9991261735041723, "top": 315, "right": 3275, "bottom": 1935, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702163f.jpg"} -{"rects": [{"solidity": 0.9946579245059302, "top": 360, "right": 3175, "bottom": 1985, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721682f.jpg"} -{"rects": [{"solidity": 0.9946581473793461, "top": 4130, "right": 3155, "bottom": 5755, "left": 740}, {"solidity": 0.9938690462485733, "top": 2280, "right": 3170, "bottom": 3885, "left": 765}, {"solidity": 0.9960064058998876, "top": 440, "right": 3175, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734440f.jpg"} -{"rects": [{"solidity": 0.994658300279602, "top": 390, "right": 3135, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715583f.jpg"} -{"rects": [{"solidity": 0.9946584703530185, "top": 1025, "right": 2375, "bottom": 3270, "left": 680}, {"solidity": 0.9905438014030333, "top": 1010, "right": 4220, "bottom": 2310, "left": 2430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723428f.jpg"} -{"rects": [{"solidity": 0.9946585373292409, "top": 1315, "right": 3105, "bottom": 4800, "left": 470}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708205f.jpg"} -{"rects": [{"solidity": 0.9946587459351124, "top": 390, "right": 3205, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720523f.jpg"} -{"rects": [{"solidity": 0.9946600003472041, "top": 830, "right": 5235, "bottom": 3700, "left": 1440}], "shape": {"h": 4430, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/1552833.jpg"} -{"rects": [{"solidity": 0.9946609119609959, "top": 995, "right": 3715, "bottom": 2995, "left": 2120}, {"solidity": 0.9955148281328539, "top": 1000, "right": 1885, "bottom": 2980, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723732f.jpg"} -{"rects": [{"solidity": 0.9946616672757026, "top": 1445, "right": 2120, "bottom": 2485, "left": 580}, {"solidity": 0.9932825401890781, "top": 285, "right": 2135, "bottom": 1320, "left": 590}], "shape": {"h": 3950, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727125f.jpg"} -{"rects": [{"solidity": 0.9946617674517858, "top": 435, "right": 3235, "bottom": 2020, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728027f.jpg"} -{"rects": [{"solidity": 0.9946619418659187, "top": 2340, "right": 3370, "bottom": 4275, "left": 495}, {"solidity": 0.9937444897884987, "top": 310, "right": 3390, "bottom": 2255, "left": 520}, {"solidity": 0.9931303219814555, "top": 4360, "right": 2835, "bottom": 5770, "left": 1060}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726198f.jpg"} -{"rects": [{"solidity": 0.9946623014458403, "top": 1170, "right": 3365, "bottom": 4790, "left": 445}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/720983f.jpg"} -{"rects": [{"solidity": 0.9946624596141855, "top": 415, "right": 3115, "bottom": 2075, "left": 680}, {"solidity": 0.9973618609697502, "top": 2310, "right": 3120, "bottom": 3925, "left": 705}, {"solidity": 0.9973253298059166, "top": 4165, "right": 3115, "bottom": 5785, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709371f.jpg"} -{"rects": [{"solidity": 0.9946634184276725, "top": 565, "right": 2500, "bottom": 2085, "left": 380}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517051.jpg"} -{"rects": [{"solidity": 0.9946636004481396, "top": 420, "right": 3095, "bottom": 2030, "left": 700}, {"solidity": 0.9971145548384517, "top": 2295, "right": 3090, "bottom": 3870, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728439f.jpg"} -{"rects": [{"solidity": 0.9946636712899655, "top": 2375, "right": 3165, "bottom": 3980, "left": 735}, {"solidity": 0.9942969884958185, "top": 615, "right": 3135, "bottom": 2215, "left": 720}, {"solidity": 0.9962013043953026, "top": 4140, "right": 3125, "bottom": 5735, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710093f.jpg"} -{"rects": [{"solidity": 0.9946640506899103, "top": 4105, "right": 3070, "bottom": 5740, "left": 650}, {"solidity": 0.9979910765659574, "top": 2260, "right": 3075, "bottom": 3855, "left": 675}, {"solidity": 0.9972362874791231, "top": 400, "right": 3080, "bottom": 1990, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734811f.jpg"} -{"rects": [{"solidity": 0.9946643208313465, "top": 1945, "right": 3110, "bottom": 3320, "left": 845}, {"solidity": 0.9969879643208794, "top": 340, "right": 3120, "bottom": 1690, "left": 875}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729990f.jpg"} -{"rects": [{"solidity": 0.9946645693393419, "top": 520, "right": 4980, "bottom": 3645, "left": 1155}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722206f.jpg"} -{"rects": [{"solidity": 0.9946649121892751, "top": 830, "right": 2070, "bottom": 3245, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723078f.jpg"} -{"rects": [{"solidity": 0.9946650830660196, "top": 2380, "right": 2930, "bottom": 3815, "left": 1080}, {"solidity": 0.9932984189232793, "top": 555, "right": 2940, "bottom": 1965, "left": 1110}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725531f.jpg"} -{"rects": [{"solidity": 0.994665810862393, "top": 355, "right": 2810, "bottom": 3805, "left": 1280}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714543f.jpg"} -{"rects": [{"solidity": 0.9946658531399358, "top": 255, "right": 3955, "bottom": 2800, "left": 635}], "shape": {"h": 5685, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1823522.jpg"} -{"rects": [{"solidity": 0.994666329461964, "top": 800, "right": 2055, "bottom": 3230, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718116f.jpg"} -{"rects": [{"solidity": 0.9946673202787567, "top": 565, "right": 3120, "bottom": 2175, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719444f.jpg"} -{"rects": [{"solidity": 0.9946675016140698, "top": 580, "right": 3305, "bottom": 2505, "left": 600}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707890f.jpg"} -{"rects": [{"solidity": 0.9946685277242279, "top": 1680, "right": 3020, "bottom": 2860, "left": 1130}, {"solidity": 0.9971472236372899, "top": 320, "right": 3010, "bottom": 1435, "left": 1115}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701942f.jpg"} -{"rects": [{"solidity": 0.9946688551285614, "top": 825, "right": 3865, "bottom": 3240, "left": 2240}, {"solidity": 0.9959726478376567, "top": 835, "right": 2010, "bottom": 3245, "left": 400}, {"solidity": 0.9959908531084012, "top": 830, "right": 5700, "bottom": 3235, "left": 4100}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728777f.jpg"} -{"rects": [{"solidity": 0.9946689499963913, "top": 380, "right": 3065, "bottom": 1995, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700749f.jpg"} -{"rects": [{"solidity": 0.9946697093665062, "top": 1010, "right": 3550, "bottom": 5060, "left": 180}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714494f.jpg"} -{"rects": [{"solidity": 0.9946698016867338, "top": 2370, "right": 2895, "bottom": 3765, "left": 1065}, {"solidity": 0.996108377629252, "top": 530, "right": 2905, "bottom": 1905, "left": 1090}, {"solidity": 0.9950438896780062, "top": 4185, "right": 2865, "bottom": 5565, "left": 1055}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730794f.jpg"} -{"rects": [{"solidity": 0.9946698610508174, "top": 760, "right": 2055, "bottom": 3170, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711525f.jpg"} -{"rects": [{"solidity": 0.994670725855401, "top": 820, "right": 3950, "bottom": 3260, "left": 2295}, {"solidity": 0.9933118155768721, "top": 770, "right": 2060, "bottom": 3200, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723081f.jpg"} -{"rects": [{"solidity": 0.9946707503828484, "top": 460, "right": 4255, "bottom": 3785, "left": 1565}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717250f.jpg"} -{"rects": [{"solidity": 0.9946709995019174, "top": 530, "right": 2920, "bottom": 1985, "left": 1115}, {"solidity": 0.9926045633933278, "top": 4145, "right": 2950, "bottom": 5570, "left": 1115}, {"solidity": 0.9949445605174686, "top": 2350, "right": 2935, "bottom": 3765, "left": 1150}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726889f.jpg"} -{"rects": [{"solidity": 0.9946713068854011, "top": 645, "right": 2630, "bottom": 2055, "left": 800}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704931f.jpg"} -{"rects": [{"solidity": 0.9946716878330195, "top": 610, "right": 4915, "bottom": 3595, "left": 1110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709913f.jpg"} -{"rects": [{"solidity": 0.994671944967227, "top": 500, "right": 3190, "bottom": 2120, "left": 780}, {"solidity": 0.9955222034924209, "top": 2305, "right": 3180, "bottom": 3915, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729984f.jpg"} -{"rects": [{"solidity": 0.9946729801716484, "top": 225, "right": 2030, "bottom": 1260, "left": 500}], "shape": {"h": 4005, "w": 2605}, "file": "/usr/local/google/home/danvk/milstein/715751f.jpg"} -{"rects": [{"solidity": 0.9946731001206273, "top": 2265, "right": 3175, "bottom": 3885, "left": 735}, {"solidity": 0.9950934722549073, "top": 4135, "right": 3160, "bottom": 5755, "left": 730}, {"solidity": 0.9938577128650933, "top": 410, "right": 3175, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734495f.jpg"} -{"rects": [{"solidity": 0.9946732057880936, "top": 365, "right": 1850, "bottom": 2205, "left": 435}, {"solidity": 0.9897197125606333, "top": 375, "right": 3525, "bottom": 2220, "left": 2095}, {"solidity": 0.9573858497161827, "top": 2450, "right": 3525, "bottom": 4280, "left": 2110}, {"solidity": 0.9588868132493648, "top": 4425, "right": 3005, "bottom": 5800, "left": 1180}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734160f.jpg"} -{"rects": [{"solidity": 0.9946736063819438, "top": 490, "right": 3935, "bottom": 2585, "left": 2440}, {"solidity": 0.9975686176212558, "top": 480, "right": 2200, "bottom": 2555, "left": 745}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716258f.jpg"} -{"rects": [{"solidity": 0.99467390545933, "top": 2295, "right": 3160, "bottom": 3895, "left": 765}, {"solidity": 0.9908602078802353, "top": 445, "right": 3165, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714332f.jpg"} -{"rects": [{"solidity": 0.9946755713146405, "top": 345, "right": 2440, "bottom": 1570, "left": 620}, {"solidity": 0.9944843973300121, "top": 1710, "right": 2435, "bottom": 2930, "left": 615}], "shape": {"h": 4645, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715807f.jpg"} -{"rects": [{"solidity": 0.994675664317975, "top": 500, "right": 4030, "bottom": 2580, "left": 2530}, {"solidity": 0.9964580630547147, "top": 505, "right": 2210, "bottom": 2590, "left": 735}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716037f.jpg"} -{"rects": [{"solidity": 0.9946759592135669, "top": 445, "right": 3355, "bottom": 2020, "left": 965}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725645f.jpg"} -{"rects": [{"solidity": 0.9946760467263458, "top": 650, "right": 2600, "bottom": 2045, "left": 795}, {"solidity": 0.9957781490278169, "top": 2105, "right": 2590, "bottom": 3495, "left": 790}, {"solidity": 0.9958370749482229, "top": 660, "right": 5165, "bottom": 2030, "left": 3390}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728110f.jpg"} -{"rects": [{"solidity": 0.9946762575645781, "top": 420, "right": 3105, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729331f.jpg"} -{"rects": [{"solidity": 0.9946764473709544, "top": 615, "right": 2770, "bottom": 2060, "left": 955}, {"solidity": 0.996924873491631, "top": 625, "right": 5005, "bottom": 2055, "left": 3195}, {"solidity": 0.9937278949645048, "top": 2295, "right": 5010, "bottom": 3385, "left": 3185}, {"solidity": 0.9952262362948349, "top": 2335, "right": 2785, "bottom": 3425, "left": 975}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727398f.jpg"} -{"rects": [{"solidity": 0.9946765726214963, "top": 775, "right": 2605, "bottom": 1895, "left": 765}, {"solidity": 0.9945518161637653, "top": 2215, "right": 2600, "bottom": 3335, "left": 765}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725342f.jpg"} -{"rects": [{"solidity": 0.9946768972545258, "top": 780, "right": 5120, "bottom": 3245, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727297f.jpg"} -{"rects": [{"solidity": 0.9946774020590867, "top": 425, "right": 5305, "bottom": 3570, "left": 1240}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733392f.jpg"} -{"rects": [{"solidity": 0.994677512995795, "top": 410, "right": 3190, "bottom": 1985, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724743f.jpg"} -{"rects": [{"solidity": 0.9946782104489763, "top": 640, "right": 2750, "bottom": 2055, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728255f.jpg"} -{"rects": [{"solidity": 0.9946783822790766, "top": 4085, "right": 3140, "bottom": 5745, "left": 690}, {"solidity": 0.9970300416561434, "top": 405, "right": 3185, "bottom": 2030, "left": 760}, {"solidity": 0.9953043134945163, "top": 2250, "right": 3145, "bottom": 3885, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724428f.jpg"} -{"rects": [{"solidity": 0.9946786737617683, "top": 505, "right": 3015, "bottom": 1895, "left": 1215}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727998f.jpg"} -{"rects": [{"solidity": 0.9946789780507844, "top": 445, "right": 3205, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709216f.jpg"} -{"rects": [{"solidity": 0.9946797177555804, "top": 2305, "right": 3150, "bottom": 3980, "left": 745}, {"solidity": 0.9965388138126074, "top": 440, "right": 3155, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733866f.jpg"} -{"rects": [{"solidity": 0.9946798797791016, "top": 515, "right": 3045, "bottom": 1920, "left": 1225}, {"solidity": 0.9956187122736418, "top": 2245, "right": 3055, "bottom": 3635, "left": 1245}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727702f.jpg"} -{"rects": [{"solidity": 0.9946804223422262, "top": 445, "right": 3020, "bottom": 1850, "left": 1230}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726559f.jpg"} -{"rects": [{"solidity": 0.9946807118555352, "top": 410, "right": 3120, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729945f.jpg"} -{"rects": [{"solidity": 0.9946807461744754, "top": 660, "right": 2720, "bottom": 2080, "left": 915}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728254f.jpg"} -{"rects": [{"solidity": 0.9946808248903936, "top": 2115, "right": 5250, "bottom": 3535, "left": 3435}, {"solidity": 0.9961440923044981, "top": 2090, "right": 2690, "bottom": 3505, "left": 885}, {"solidity": 0.9968600329895269, "top": 645, "right": 5210, "bottom": 2045, "left": 3395}, {"solidity": 0.9960272703470222, "top": 660, "right": 2690, "bottom": 2055, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725200f.jpg"} -{"rects": [{"solidity": 0.9946816354216844, "top": 655, "right": 2735, "bottom": 2075, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704085f.jpg"} -{"rects": [{"solidity": 0.9946816955072234, "top": 405, "right": 3215, "bottom": 1990, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725631f.jpg"} -{"rects": [{"solidity": 0.9946818463841479, "top": 695, "right": 2625, "bottom": 2125, "left": 830}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726298f.jpg"} -{"rects": [{"solidity": 0.9946821041744477, "top": 4070, "right": 3145, "bottom": 5810, "left": 595}, {"solidity": 0.9956769878215075, "top": 2210, "right": 3160, "bottom": 3905, "left": 615}, {"solidity": 0.9968752557228888, "top": 390, "right": 3145, "bottom": 2045, "left": 625}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700181f.jpg"} -{"rects": [{"solidity": 0.9946822157434402, "top": 420, "right": 3175, "bottom": 2005, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721740f.jpg"} -{"rects": [{"solidity": 0.9946822600283584, "top": 555, "right": 4900, "bottom": 3560, "left": 1125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709930f.jpg"} -{"rects": [{"solidity": 0.9946826800275076, "top": 420, "right": 3345, "bottom": 1310, "left": 2185}, {"solidity": 0.9939162561576355, "top": 1370, "right": 1680, "bottom": 2270, "left": 540}, {"solidity": 0.9948765026237765, "top": 430, "right": 1675, "bottom": 1325, "left": 535}, {"solidity": 0.9916649042708036, "top": 1355, "right": 3345, "bottom": 2240, "left": 2190}], "shape": {"h": 2530, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/725107f.jpg"} -{"rects": [{"solidity": 0.9946826803523716, "top": 815, "right": 1985, "bottom": 3210, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719180f.jpg"} -{"rects": [{"solidity": 0.9946827183515461, "top": 780, "right": 3895, "bottom": 3215, "left": 2280}, {"solidity": 0.9951284467302685, "top": 780, "right": 2020, "bottom": 3200, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730210f.jpg"} -{"rects": [{"solidity": 0.9946828195108451, "top": 465, "right": 5070, "bottom": 3525, "left": 1240}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727875f.jpg"} -{"rects": [{"solidity": 0.9946828896748121, "top": 935, "right": 3440, "bottom": 2780, "left": 2015}, {"solidity": 0.9953587517582833, "top": 935, "right": 1655, "bottom": 2765, "left": 525}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725080f.jpg"} -{"rects": [{"solidity": 0.9946831521972451, "top": 2310, "right": 3070, "bottom": 3905, "left": 670}, {"solidity": 0.9957642262432658, "top": 395, "right": 3075, "bottom": 2005, "left": 695}, {"solidity": 0.9940270667142914, "top": 4190, "right": 3055, "bottom": 5790, "left": 670}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/731714f.jpg"} -{"rects": [{"solidity": 0.9946835338015899, "top": 940, "right": 4860, "bottom": 2570, "left": 1310}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733748f.jpg"} -{"rects": [{"solidity": 0.9946836788942052, "top": 810, "right": 2025, "bottom": 3220, "left": 405}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730366f.jpg"} -{"rects": [{"solidity": 0.9946837169162698, "top": 2095, "right": 2730, "bottom": 3535, "left": 880}, {"solidity": 0.9965574691396554, "top": 620, "right": 2740, "bottom": 2045, "left": 895}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702592f.jpg"} -{"rects": [{"solidity": 0.9946844185818582, "top": 1030, "right": 3540, "bottom": 5065, "left": 290}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722203f.jpg"} -{"rects": [{"solidity": 0.9946848899012908, "top": 415, "right": 3135, "bottom": 2040, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729285f.jpg"} -{"rects": [{"solidity": 0.994685605546435, "top": 4630, "right": 3625, "bottom": 6470, "left": 915}, {"solidity": 0.9957749847899452, "top": 2520, "right": 3625, "bottom": 4330, "left": 935}, {"solidity": 0.9987444138161466, "top": 430, "right": 3630, "bottom": 2220, "left": 940}], "shape": {"h": 6905, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711706f.jpg"} -{"rects": [{"solidity": 0.9946859081077266, "top": 370, "right": 3075, "bottom": 1910, "left": 1095}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700333f.jpg"} -{"rects": [{"solidity": 0.9946870831158285, "top": 330, "right": 2435, "bottom": 1550, "left": 635}], "shape": {"h": 4700, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/703159f.jpg"} -{"rects": [{"solidity": 0.9946874505041973, "top": 825, "right": 2020, "bottom": 3225, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729906f.jpg"} -{"rects": [{"solidity": 0.9946880748966992, "top": 510, "right": 3020, "bottom": 1955, "left": 1200}, {"solidity": 0.9946886145935027, "top": 2365, "right": 3020, "bottom": 3800, "left": 1190}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727427f.jpg"} -{"rects": [{"solidity": 0.9946881715237704, "top": 540, "right": 3055, "bottom": 1980, "left": 1230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727391f.jpg"} -{"rects": [{"solidity": 0.9946883200891942, "top": 490, "right": 2970, "bottom": 1875, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712072f.jpg"} -{"rects": [{"solidity": 0.9946886042049083, "top": 2245, "right": 3090, "bottom": 3865, "left": 660}, {"solidity": 0.9982132969339531, "top": 4125, "right": 3080, "bottom": 5735, "left": 650}, {"solidity": 0.9932675325358742, "top": 390, "right": 3070, "bottom": 1990, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730783f.jpg"} -{"rects": [{"solidity": 0.9946886672147384, "top": 2285, "right": 3185, "bottom": 3920, "left": 755}, {"solidity": 0.9969644121580866, "top": 425, "right": 3175, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733763f.jpg"} -{"rects": [{"solidity": 0.9946889862610593, "top": 2240, "right": 3090, "bottom": 3865, "left": 675}, {"solidity": 0.9950997584295627, "top": 410, "right": 3090, "bottom": 2005, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710623f.jpg"} -{"rects": [{"solidity": 0.9946892048788405, "top": 730, "right": 3340, "bottom": 2620, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712475f.jpg"} -{"rects": [{"solidity": 0.9946894188623251, "top": 670, "right": 2765, "bottom": 2105, "left": 950}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705569f.jpg"} -{"rects": [{"solidity": 0.9946894238471677, "top": 770, "right": 3710, "bottom": 3210, "left": 2090}, {"solidity": 0.9903990629291543, "top": 980, "right": 1990, "bottom": 2970, "left": 410}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700951f.jpg"} -{"rects": [{"solidity": 0.9946895069210524, "top": 785, "right": 2015, "bottom": 3160, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714757f.jpg"} -{"rects": [{"solidity": 0.9946900632093469, "top": 955, "right": 1855, "bottom": 2935, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701006f.jpg"} -{"rects": [{"solidity": 0.9946905862304175, "top": 605, "right": 4900, "bottom": 3560, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712658f.jpg"} -{"rects": [{"solidity": 0.9946906864512763, "top": 890, "right": 2280, "bottom": 3615, "left": 465}], "shape": {"h": 4410, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711338f.jpg"} -{"rects": [{"solidity": 0.9946910546677017, "top": 800, "right": 2085, "bottom": 3225, "left": 460}, {"solidity": 0.9969966362325805, "top": 810, "right": 3925, "bottom": 3220, "left": 2315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732485f.jpg"} -{"rects": [{"solidity": 0.9946923555800864, "top": 1400, "right": 3030, "bottom": 4650, "left": 610}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709184f.jpg"} -{"rects": [{"solidity": 0.994692473042186, "top": 615, "right": 4860, "bottom": 3645, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713724f.jpg"} -{"rects": [{"solidity": 0.9946926339996233, "top": 860, "right": 2010, "bottom": 3295, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703771f.jpg"} -{"rects": [{"solidity": 0.9946928415484833, "top": 620, "right": 1555, "bottom": 2415, "left": 350}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716467f.jpg"} -{"rects": [{"solidity": 0.9946935474325844, "top": 485, "right": 3080, "bottom": 1895, "left": 1255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727901f.jpg"} -{"rects": [{"solidity": 0.9946942501153073, "top": 2240, "right": 3090, "bottom": 3870, "left": 675}, {"solidity": 0.9953318172823326, "top": 375, "right": 3110, "bottom": 2005, "left": 700}, {"solidity": 0.99669281420738, "top": 4110, "right": 3080, "bottom": 5705, "left": 675}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722902f.jpg"} -{"rects": [{"solidity": 0.9946945976031298, "top": 955, "right": 1920, "bottom": 3365, "left": 305}, {"solidity": 0.9962015600501211, "top": 970, "right": 3755, "bottom": 3375, "left": 2155}], "shape": {"h": 4095, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712676f.jpg"} -{"rects": [{"solidity": 0.9946949079651887, "top": 550, "right": 3130, "bottom": 2160, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709620f.jpg"} -{"rects": [{"solidity": 0.9946953042633789, "top": 400, "right": 3175, "bottom": 1990, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724213f.jpg"} -{"rects": [{"solidity": 0.9946958642141239, "top": 495, "right": 3075, "bottom": 1945, "left": 1240}, {"solidity": 0.9968515014796487, "top": 2370, "right": 3070, "bottom": 3805, "left": 1255}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727653f.jpg"} -{"rects": [{"solidity": 0.9946963439551363, "top": 2265, "right": 2845, "bottom": 3710, "left": 1030}, {"solidity": 0.9963449004756033, "top": 670, "right": 5115, "bottom": 2085, "left": 3290}, {"solidity": 0.996061806929838, "top": 685, "right": 2840, "bottom": 2085, "left": 1015}, {"solidity": 0.9939871726349546, "top": 2285, "right": 5095, "bottom": 3710, "left": 3300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728272f.jpg"} -{"rects": [{"solidity": 0.99469652327637, "top": 430, "right": 3175, "bottom": 2050, "left": 750}, {"solidity": 0.9952550838387442, "top": 2255, "right": 3165, "bottom": 3865, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719469f.jpg"} -{"rects": [{"solidity": 0.9946973219497235, "top": 575, "right": 5315, "bottom": 1975, "left": 3490}, {"solidity": 0.9933343636735285, "top": 2190, "right": 2650, "bottom": 3585, "left": 830}, {"solidity": 0.9938877158242491, "top": 2200, "right": 5335, "bottom": 3570, "left": 3510}, {"solidity": 0.993304726254603, "top": 600, "right": 2630, "bottom": 1985, "left": 810}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723444f.jpg"} -{"rects": [{"solidity": 0.9946973402480621, "top": 440, "right": 3135, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707551f.jpg"} -{"rects": [{"solidity": 0.9946973915700353, "top": 655, "right": 2740, "bottom": 2080, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727374f.jpg"} -{"rects": [{"solidity": 0.9946976815053709, "top": 2215, "right": 2815, "bottom": 3640, "left": 1050}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719045f.jpg"} -{"rects": [{"solidity": 0.9946980017052638, "top": 635, "right": 2600, "bottom": 2065, "left": 790}, {"solidity": 0.9967177242888403, "top": 2090, "right": 2585, "bottom": 3515, "left": 785}, {"solidity": 0.9984484175390065, "top": 2105, "right": 5370, "bottom": 3485, "left": 3580}, {"solidity": 0.9344208692453495, "top": 625, "right": 5365, "bottom": 2035, "left": 3565}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725300f.jpg"} -{"rects": [{"solidity": 0.9946980645175825, "top": 445, "right": 5115, "bottom": 3415, "left": 1335}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728283f.jpg"} -{"rects": [{"solidity": 0.9946998247274316, "top": 505, "right": 2150, "bottom": 3615, "left": 700}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715654f.jpg"} -{"rects": [{"solidity": 0.9946999608721944, "top": 800, "right": 5665, "bottom": 3235, "left": 4040}, {"solidity": 0.9968776019983348, "top": 770, "right": 2030, "bottom": 3185, "left": 410}, {"solidity": 0.9933661222146846, "top": 785, "right": 3835, "bottom": 3205, "left": 2220}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733455f.jpg"} -{"rects": [{"solidity": 0.9947000512898262, "top": 690, "right": 3870, "bottom": 3120, "left": 2260}, {"solidity": 0.995295111529901, "top": 695, "right": 2015, "bottom": 3120, "left": 410}, {"solidity": 0.9961368689618081, "top": 710, "right": 5745, "bottom": 3125, "left": 4150}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726846f.jpg"} -{"rects": [{"solidity": 0.994700494685801, "top": 660, "right": 2725, "bottom": 2095, "left": 925}, {"solidity": 0.9958926076776262, "top": 2110, "right": 2720, "bottom": 3540, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726299f.jpg"} -{"rects": [{"solidity": 0.9947006417258328, "top": 380, "right": 2910, "bottom": 1895, "left": 935}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723298f.jpg"} -{"rects": [{"solidity": 0.9947008934599344, "top": 515, "right": 3315, "bottom": 2380, "left": 655}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717863f.jpg"} -{"rects": [{"solidity": 0.9947018761780299, "top": 385, "right": 3195, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725229f.jpg"} -{"rects": [{"solidity": 0.9947023746987453, "top": 2270, "right": 3070, "bottom": 3905, "left": 625}, {"solidity": 0.9959246997105066, "top": 420, "right": 3080, "bottom": 2045, "left": 645}, {"solidity": 0.9967558851983231, "top": 4105, "right": 3045, "bottom": 5725, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731044f.jpg"} -{"rects": [{"solidity": 0.9947025031901611, "top": 1150, "right": 3330, "bottom": 4955, "left": 430}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713058f.jpg"} -{"rects": [{"solidity": 0.994703285602776, "top": 860, "right": 3790, "bottom": 3280, "left": 2190}, {"solidity": 0.9960090711930203, "top": 890, "right": 5660, "bottom": 3300, "left": 4075}, {"solidity": 0.9958708360397142, "top": 870, "right": 1950, "bottom": 3275, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728578f.jpg"} -{"rects": [{"solidity": 0.9947035046184257, "top": 445, "right": 3130, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718257f.jpg"} -{"rects": [{"solidity": 0.9947039762261622, "top": 2255, "right": 3245, "bottom": 3865, "left": 820}, {"solidity": 0.9951222990338587, "top": 410, "right": 3260, "bottom": 2020, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702339f.jpg"} -{"rects": [{"solidity": 0.9947042231097397, "top": 535, "right": 4975, "bottom": 3605, "left": 1065}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717368f.jpg"} -{"rects": [{"solidity": 0.9947052734287936, "top": 465, "right": 3025, "bottom": 1905, "left": 1235}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726502f.jpg"} -{"rects": [{"solidity": 0.9947060711437864, "top": 555, "right": 3135, "bottom": 2150, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719439f.jpg"} -{"rects": [{"solidity": 0.9947061782891641, "top": 400, "right": 3170, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724316f.jpg"} -{"rects": [{"solidity": 0.9947061862266056, "top": 3255, "right": 3320, "bottom": 5210, "left": 585}, {"solidity": 0.9954556246735362, "top": 620, "right": 3375, "bottom": 2575, "left": 635}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/714571f.jpg"} -{"rects": [{"solidity": 0.9947063065425462, "top": 735, "right": 3945, "bottom": 3140, "left": 2335}, {"solidity": 0.9964882606153307, "top": 730, "right": 2070, "bottom": 3125, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721364f.jpg"} -{"rects": [{"solidity": 0.9947070368305924, "top": 740, "right": 2740, "bottom": 2230, "left": 865}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705006f.jpg"} -{"rects": [{"solidity": 0.9947071683350592, "top": 2060, "right": 2755, "bottom": 3465, "left": 945}, {"solidity": 0.9936776190740283, "top": 650, "right": 2740, "bottom": 2045, "left": 935}, {"solidity": 0.994739873878244, "top": 665, "right": 5215, "bottom": 2055, "left": 3410}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727264f.jpg"} -{"rects": [{"solidity": 0.9947074092903148, "top": 390, "right": 3215, "bottom": 1970, "left": 835}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728153f.jpg"} -{"rects": [{"solidity": 0.9947074566723134, "top": 2045, "right": 2920, "bottom": 3410, "left": 1070}, {"solidity": 0.9944840036104704, "top": 405, "right": 2910, "bottom": 1780, "left": 1070}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703296f.jpg"} -{"rects": [{"solidity": 0.994707720732762, "top": 4160, "right": 2980, "bottom": 5580, "left": 1130}, {"solidity": 0.9941565568178448, "top": 2420, "right": 2975, "bottom": 3845, "left": 1175}, {"solidity": 0.9955955248541796, "top": 595, "right": 2980, "bottom": 1995, "left": 1170}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725520f.jpg"} -{"rects": [{"solidity": 0.9947083990092321, "top": 2280, "right": 3080, "bottom": 3915, "left": 660}, {"solidity": 0.9952630649832949, "top": 405, "right": 3080, "bottom": 2020, "left": 685}, {"solidity": 0.9944800815816309, "top": 4175, "right": 3075, "bottom": 5780, "left": 665}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/707642f.jpg"} -{"rects": [{"solidity": 0.9947092603920351, "top": 745, "right": 4700, "bottom": 3170, "left": 1265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732964f.jpg"} -{"rects": [{"solidity": 0.9947092732489273, "top": 2290, "right": 3130, "bottom": 3890, "left": 730}, {"solidity": 0.9944079698844843, "top": 475, "right": 3155, "bottom": 2070, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720530f.jpg"} -{"rects": [{"solidity": 0.9947093532632109, "top": 495, "right": 2855, "bottom": 1940, "left": 1030}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725539f.jpg"} -{"rects": [{"solidity": 0.9947098588023767, "top": 655, "right": 4575, "bottom": 3195, "left": 1325}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720626f.jpg"} -{"rects": [{"solidity": 0.9947101079017763, "top": 630, "right": 5255, "bottom": 2035, "left": 3450}, {"solidity": 0.997692918839635, "top": 2050, "right": 2590, "bottom": 3425, "left": 790}, {"solidity": 0.996124740632247, "top": 645, "right": 2565, "bottom": 2045, "left": 785}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702734f.jpg"} -{"rects": [{"solidity": 0.9947102638555738, "top": 305, "right": 2025, "bottom": 1180, "left": 880}], "shape": {"h": 3945, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727092f.jpg"} -{"rects": [{"solidity": 0.9947105282225925, "top": 865, "right": 3835, "bottom": 3295, "left": 2230}, {"solidity": 0.9967735490959944, "top": 895, "right": 5685, "bottom": 3310, "left": 4110}, {"solidity": 0.9933272510538548, "top": 880, "right": 1970, "bottom": 3285, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728591f.jpg"} -{"rects": [{"solidity": 0.9947109007843586, "top": 2325, "right": 3220, "bottom": 3935, "left": 820}, {"solidity": 0.9964190646242316, "top": 4090, "right": 3230, "bottom": 5690, "left": 820}, {"solidity": 0.9963763070822808, "top": 595, "right": 3205, "bottom": 2190, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733146f.jpg"} -{"rects": [{"solidity": 0.9947112415071031, "top": 955, "right": 3865, "bottom": 3385, "left": 2240}, {"solidity": 0.9955310935638634, "top": 955, "right": 2025, "bottom": 3375, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730461f.jpg"} -{"rects": [{"solidity": 0.9947117666550245, "top": 2230, "right": 2945, "bottom": 3730, "left": 1060}, {"solidity": 0.9929644010336195, "top": 4030, "right": 2930, "bottom": 5530, "left": 1040}, {"solidity": 0.994901279617237, "top": 455, "right": 2940, "bottom": 1955, "left": 1065}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/700830f.jpg"} -{"rects": [{"solidity": 0.994712323135258, "top": 725, "right": 2405, "bottom": 3330, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721510f.jpg"} -{"rects": [{"solidity": 0.9947125959350899, "top": 380, "right": 5165, "bottom": 3690, "left": 1060}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721345f.jpg"} -{"rects": [{"solidity": 0.9947127821330543, "top": 2080, "right": 2790, "bottom": 3470, "left": 915}, {"solidity": 0.994517419182606, "top": 2045, "right": 5100, "bottom": 3460, "left": 3285}, {"solidity": 0.9948459349716982, "top": 690, "right": 2755, "bottom": 2055, "left": 925}, {"solidity": 0.9979114336476393, "top": 685, "right": 5030, "bottom": 1995, "left": 3300}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707087f.jpg"} -{"rects": [{"solidity": 0.9947143058040802, "top": 4115, "right": 3000, "bottom": 5565, "left": 1170}, {"solidity": 0.9940369418723033, "top": 2285, "right": 3020, "bottom": 3725, "left": 1205}, {"solidity": 0.9954798952089866, "top": 540, "right": 3025, "bottom": 1950, "left": 1220}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726501f.jpg"} -{"rects": [{"solidity": 0.9947146136039973, "top": 675, "right": 2750, "bottom": 2085, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707414f.jpg"} -{"rects": [{"solidity": 0.994715032513069, "top": 2260, "right": 3175, "bottom": 3910, "left": 720}, {"solidity": 0.9949326989012263, "top": 410, "right": 3200, "bottom": 2045, "left": 770}, {"solidity": 0.9943294428539969, "top": 4135, "right": 3145, "bottom": 5760, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733906f.jpg"} -{"rects": [{"solidity": 0.9947151120099965, "top": 415, "right": 3085, "bottom": 2025, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729905f.jpg"} -{"rects": [{"solidity": 0.9947158215518083, "top": 420, "right": 3115, "bottom": 1890, "left": 1080}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701277f.jpg"} -{"rects": [{"solidity": 0.9947159084396456, "top": 340, "right": 2340, "bottom": 1565, "left": 520}, {"solidity": 0.9941473934277822, "top": 1745, "right": 2330, "bottom": 2965, "left": 520}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715922f.jpg"} -{"rects": [{"solidity": 0.9947162459481702, "top": 580, "right": 3060, "bottom": 2165, "left": 690}, {"solidity": 0.9928859984499011, "top": 2465, "right": 2900, "bottom": 3955, "left": 935}, {"solidity": 0.9962813450792452, "top": 4190, "right": 2825, "bottom": 5595, "left": 1015}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719394f.jpg"} -{"rects": [{"solidity": 0.9947166788898754, "top": 675, "right": 2740, "bottom": 2135, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727344f.jpg"} -{"rects": [{"solidity": 0.994716970015368, "top": 2055, "right": 4790, "bottom": 3495, "left": 2985}, {"solidity": 0.994697221244815, "top": 530, "right": 2755, "bottom": 1945, "left": 955}, {"solidity": 0.9953819669934337, "top": 2125, "right": 2735, "bottom": 3510, "left": 960}, {"solidity": 0.9953836167726859, "top": 520, "right": 4765, "bottom": 1890, "left": 2980}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727801f.jpg"} -{"rects": [{"solidity": 0.9947172403162629, "top": 1000, "right": 5885, "bottom": 3000, "left": 290}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712640f.jpg"} -{"rects": [{"solidity": 0.9947175757121028, "top": 1185, "right": 3170, "bottom": 4565, "left": 555}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714298f.jpg"} -{"rects": [{"solidity": 0.9947180451755807, "top": 545, "right": 3095, "bottom": 2150, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724885f.jpg"} -{"rects": [{"solidity": 0.9947180621167957, "top": 635, "right": 2880, "bottom": 2040, "left": 1075}, {"solidity": 0.9956665144364947, "top": 655, "right": 5145, "bottom": 2060, "left": 3375}, {"solidity": 0.9960142775179865, "top": 2240, "right": 2865, "bottom": 3630, "left": 1075}, {"solidity": 0.9964506597891679, "top": 2315, "right": 5180, "bottom": 3425, "left": 3360}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725943f.jpg"} -{"rects": [{"solidity": 0.9947190803613978, "top": 390, "right": 3170, "bottom": 2015, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729719f.jpg"} -{"rects": [{"solidity": 0.9947192669099946, "top": 485, "right": 2145, "bottom": 2570, "left": 660}, {"solidity": 0.9974673656079761, "top": 495, "right": 3910, "bottom": 2580, "left": 2440}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716153f.jpg"} -{"rects": [{"solidity": 0.9947199351155299, "top": 290, "right": 5130, "bottom": 3715, "left": 1080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722431f.jpg"} -{"rects": [{"solidity": 0.9947210104609464, "top": 940, "right": 3445, "bottom": 4845, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724551f.jpg"} -{"rects": [{"solidity": 0.9947213537480357, "top": 390, "right": 3140, "bottom": 2030, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706254f.jpg"} -{"rects": [{"solidity": 0.9947214000272026, "top": 355, "right": 3135, "bottom": 1970, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724077f.jpg"} -{"rects": [{"solidity": 0.9947215484131797, "top": 550, "right": 3345, "bottom": 2410, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708094f.jpg"} -{"rects": [{"solidity": 0.9947215781094133, "top": 4065, "right": 3125, "bottom": 5675, "left": 725}, {"solidity": 0.9956169120077288, "top": 390, "right": 1810, "bottom": 2175, "left": 415}, {"solidity": 0.9968657967931938, "top": 2450, "right": 2930, "bottom": 3850, "left": 1160}, {"solidity": 0.9973230327915539, "top": 405, "right": 3390, "bottom": 2195, "left": 2020}], "shape": {"h": 6075, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/728167f.jpg"} -{"rects": [{"solidity": 0.9947216859190419, "top": 910, "right": 2125, "bottom": 3305, "left": 505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707858f.jpg"} -{"rects": [{"solidity": 0.994722569121053, "top": 425, "right": 5095, "bottom": 3665, "left": 1020}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732912f.jpg"} -{"rects": [{"solidity": 0.9947227557908747, "top": 525, "right": 4975, "bottom": 3770, "left": 950}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705965f.jpg"} -{"rects": [{"solidity": 0.9947228707583075, "top": 440, "right": 3340, "bottom": 2285, "left": 535}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703650f.jpg"} -{"rects": [{"solidity": 0.9947239707595159, "top": 425, "right": 3190, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730323f.jpg"} -{"rects": [{"solidity": 0.994724027962162, "top": 650, "right": 2705, "bottom": 2080, "left": 895}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702895f.jpg"} -{"rects": [{"solidity": 0.9947251170971917, "top": 415, "right": 4915, "bottom": 3645, "left": 995}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700174f.jpg"} -{"rects": [{"solidity": 0.9947252256720563, "top": 675, "right": 2225, "bottom": 3370, "left": 335}, {"solidity": 0.9885390583943863, "top": 660, "right": 3805, "bottom": 2345, "left": 2835}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710896f.jpg"} -{"rects": [{"solidity": 0.994725773060366, "top": 430, "right": 3135, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707608f.jpg"} -{"rects": [{"solidity": 0.994725778350125, "top": 3825, "right": 3255, "bottom": 5490, "left": 790}, {"solidity": 0.9955659712009514, "top": 2135, "right": 3300, "bottom": 3810, "left": 835}, {"solidity": 0.9659023196424771, "top": 790, "right": 3175, "bottom": 1910, "left": 970}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727554f.jpg"} -{"rects": [{"solidity": 0.9947258953577959, "top": 415, "right": 3135, "bottom": 2015, "left": 740}, {"solidity": 0.9966595911447208, "top": 2255, "right": 3145, "bottom": 3830, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724713f.jpg"} -{"rects": [{"solidity": 0.9947265120484151, "top": 1190, "right": 3405, "bottom": 5005, "left": 505}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716654f.jpg"} -{"rects": [{"solidity": 0.9947268987357382, "top": 2090, "right": 2715, "bottom": 3515, "left": 905}, {"solidity": 0.9951878205192537, "top": 660, "right": 2725, "bottom": 2070, "left": 925}, {"solidity": 0.9973267351988369, "top": 665, "right": 5210, "bottom": 2045, "left": 3420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727503f.jpg"} -{"rects": [{"solidity": 0.9947269949480784, "top": 470, "right": 3135, "bottom": 2060, "left": 735}, {"solidity": 0.9949649570296564, "top": 2350, "right": 3135, "bottom": 3940, "left": 745}, {"solidity": 0.9929444730025299, "top": 4175, "right": 2830, "bottom": 5565, "left": 1015}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724746f.jpg"} -{"rects": [{"solidity": 0.994727047146402, "top": 2265, "right": 3290, "bottom": 3895, "left": 855}, {"solidity": 0.9957295442901705, "top": 440, "right": 3295, "bottom": 2050, "left": 880}, {"solidity": 0.9933920776650921, "top": 4100, "right": 3265, "bottom": 5715, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727287f.jpg"} -{"rects": [{"solidity": 0.9947270664387484, "top": 620, "right": 4995, "bottom": 3645, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701939f.jpg"} -{"rects": [{"solidity": 0.9947271049750697, "top": 2255, "right": 2990, "bottom": 3715, "left": 1150}, {"solidity": 0.9952104087814146, "top": 510, "right": 2990, "bottom": 1925, "left": 1195}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726545f.jpg"} -{"rects": [{"solidity": 0.994727214240591, "top": 460, "right": 3745, "bottom": 2730, "left": 870}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716377f.jpg"} -{"rects": [{"solidity": 0.9947273619335023, "top": 400, "right": 3150, "bottom": 1995, "left": 765}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730219f.jpg"} -{"rects": [{"solidity": 0.9947274125860508, "top": 645, "right": 2780, "bottom": 2080, "left": 955}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705073f.jpg"} -{"rects": [{"solidity": 0.9947275080285674, "top": 2175, "right": 2590, "bottom": 3615, "left": 745}, {"solidity": 0.9938923527166306, "top": 585, "right": 5075, "bottom": 2025, "left": 3270}, {"solidity": 0.9932804936537996, "top": 560, "right": 2550, "bottom": 1985, "left": 725}, {"solidity": 0.9891686826478997, "top": 2185, "right": 5065, "bottom": 3610, "left": 3270}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727558f.jpg"} -{"rects": [{"solidity": 0.9947283710079954, "top": 810, "right": 2045, "bottom": 3220, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720037f.jpg"} -{"rects": [{"solidity": 0.9947283904559536, "top": 4085, "right": 2960, "bottom": 5660, "left": 980}, {"solidity": 0.9974950022438905, "top": 2260, "right": 2960, "bottom": 3830, "left": 990}, {"solidity": 0.9882587097276201, "top": 425, "right": 2945, "bottom": 1990, "left": 970}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700056f.jpg"} -{"rects": [{"solidity": 0.9947291409247577, "top": 405, "right": 3180, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730477f.jpg"} -{"rects": [{"solidity": 0.9947297821151018, "top": 660, "right": 2080, "bottom": 3050, "left": 360}, {"solidity": 0.9974531592181036, "top": 700, "right": 5770, "bottom": 3110, "left": 4155}, {"solidity": 0.9899409965400238, "top": 700, "right": 3940, "bottom": 3025, "left": 2300}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726221f.jpg"} -{"rects": [{"solidity": 0.9947301891192027, "top": 3165, "right": 3310, "bottom": 5085, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715166f.jpg"} -{"rects": [{"solidity": 0.9947305025138359, "top": 645, "right": 2705, "bottom": 3455, "left": 740}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708724f.jpg"} -{"rects": [{"solidity": 0.994731376007649, "top": 455, "right": 3200, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700142f.jpg"} -{"rects": [{"solidity": 0.9947317457451872, "top": 405, "right": 3180, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724509f.jpg"} -{"rects": [{"solidity": 0.99473375152628, "top": 2820, "right": 2385, "bottom": 4205, "left": 420}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508349.jpg"} -{"rects": [{"solidity": 0.9947347376067932, "top": 340, "right": 3085, "bottom": 2010, "left": 600}, {"solidity": 0.9953700274094377, "top": 2225, "right": 3085, "bottom": 3880, "left": 605}, {"solidity": 0.9978046494735374, "top": 4095, "right": 3035, "bottom": 5705, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718342f.jpg"} -{"rects": [{"solidity": 0.994735181606657, "top": 2130, "right": 5295, "bottom": 3545, "left": 3480}, {"solidity": 0.9965149356355278, "top": 2145, "right": 2700, "bottom": 3565, "left": 905}, {"solidity": 0.9963026095426467, "top": 670, "right": 2690, "bottom": 2085, "left": 890}, {"solidity": 0.9958993560433053, "top": 660, "right": 5275, "bottom": 2070, "left": 3490}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705124f.jpg"} -{"rects": [{"solidity": 0.9947353656255844, "top": 1245, "right": 3535, "bottom": 4990, "left": 600}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708734f.jpg"} -{"rects": [{"solidity": 0.9947354302193012, "top": 465, "right": 3320, "bottom": 2295, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730858f.jpg"} -{"rects": [{"solidity": 0.9947356273959032, "top": 565, "right": 4865, "bottom": 3570, "left": 1130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709897f.jpg"} -{"rects": [{"solidity": 0.9947366850400053, "top": 1260, "right": 3385, "bottom": 5020, "left": 355}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708920f.jpg"} -{"rects": [{"solidity": 0.9947370142614157, "top": 2245, "right": 3150, "bottom": 3865, "left": 740}, {"solidity": 0.9949499644737804, "top": 445, "right": 3145, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718114f.jpg"} -{"rects": [{"solidity": 0.9947373427147552, "top": 760, "right": 4890, "bottom": 3445, "left": 1125}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702427f.jpg"} -{"rects": [{"solidity": 0.9947374778415824, "top": 820, "right": 2105, "bottom": 3235, "left": 480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713160f.jpg"} -{"rects": [{"solidity": 0.9947375869539185, "top": 525, "right": 3590, "bottom": 2655, "left": 875}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509737.jpg"} -{"rects": [{"solidity": 0.9947383768437311, "top": 845, "right": 5665, "bottom": 3285, "left": 4030}, {"solidity": 0.9975688602127745, "top": 925, "right": 2005, "bottom": 3300, "left": 395}, {"solidity": 0.9962029795817262, "top": 955, "right": 3835, "bottom": 3260, "left": 2275}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717967f.jpg"} -{"rects": [{"solidity": 0.9947384364134443, "top": 445, "right": 3175, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706632f.jpg"} -{"rects": [{"solidity": 0.9947386663876318, "top": 820, "right": 2140, "bottom": 3235, "left": 515}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722105f.jpg"} -{"rects": [{"solidity": 0.994740130356962, "top": 525, "right": 1290, "bottom": 2030, "left": 290}], "shape": {"h": 2570, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727087f.jpg"} -{"rects": [{"solidity": 0.99474083643511, "top": 495, "right": 4975, "bottom": 3535, "left": 1090}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709778f.jpg"} -{"rects": [{"solidity": 0.9947408886218415, "top": 415, "right": 3090, "bottom": 2030, "left": 665}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728992f.jpg"} -{"rects": [{"solidity": 0.9947418041151943, "top": 370, "right": 3190, "bottom": 2000, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724132f.jpg"} -{"rects": [{"solidity": 0.9947420647705453, "top": 4135, "right": 3145, "bottom": 5765, "left": 725}, {"solidity": 0.9975637102689289, "top": 2275, "right": 3145, "bottom": 3890, "left": 735}, {"solidity": 0.9971679741294113, "top": 430, "right": 3150, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734789f.jpg"} -{"rects": [{"solidity": 0.9947421021534438, "top": 530, "right": 3390, "bottom": 2190, "left": 940}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706573f.jpg"} -{"rects": [{"solidity": 0.994742774189756, "top": 880, "right": 2325, "bottom": 3610, "left": 480}], "shape": {"h": 4410, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711674f.jpg"} -{"rects": [{"solidity": 0.9947428582452722, "top": 2385, "right": 3000, "bottom": 3805, "left": 1140}, {"solidity": 0.9954127538227051, "top": 540, "right": 3015, "bottom": 1950, "left": 1195}, {"solidity": 0.9935573348021954, "top": 4155, "right": 2965, "bottom": 5575, "left": 1135}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725544f.jpg"} -{"rects": [{"solidity": 0.9947431738048159, "top": 855, "right": 3870, "bottom": 3285, "left": 2240}, {"solidity": 0.9965925763854926, "top": 865, "right": 5700, "bottom": 3285, "left": 4080}, {"solidity": 0.9966215443528493, "top": 850, "right": 2020, "bottom": 3260, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730246f.jpg"} -{"rects": [{"solidity": 0.9947434037074128, "top": 675, "right": 2515, "bottom": 2170, "left": 420}, {"solidity": 0.9927683188192368, "top": 2460, "right": 2480, "bottom": 3930, "left": 395}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716149f.jpg"} -{"rects": [{"solidity": 0.9947450816157628, "top": 465, "right": 2905, "bottom": 1875, "left": 1100}, {"solidity": 0.9934855530800325, "top": 2260, "right": 2915, "bottom": 3665, "left": 1105}, {"solidity": 0.9941379979104497, "top": 4185, "right": 2885, "bottom": 5305, "left": 1060}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726993f.jpg"} -{"rects": [{"solidity": 0.9947453269449209, "top": 745, "right": 3870, "bottom": 3170, "left": 2255}, {"solidity": 0.9958876233468017, "top": 715, "right": 5725, "bottom": 3130, "left": 4120}, {"solidity": 0.9963843602253377, "top": 790, "right": 2025, "bottom": 3200, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720707f.jpg"} -{"rects": [{"solidity": 0.9947453330260428, "top": 535, "right": 5115, "bottom": 3855, "left": 1080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712126f.jpg"} -{"rects": [{"solidity": 0.9947456202069218, "top": 380, "right": 5180, "bottom": 3585, "left": 1165}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719888f.jpg"} -{"rects": [{"solidity": 0.9947457838359057, "top": 390, "right": 3075, "bottom": 1990, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729897f.jpg"} -{"rects": [{"solidity": 0.9947464167404099, "top": 2155, "right": 3105, "bottom": 3755, "left": 690}, {"solidity": 0.9972526466170922, "top": 360, "right": 3100, "bottom": 1940, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724869f.jpg"} -{"rects": [{"solidity": 0.9947469976672523, "top": 970, "right": 3140, "bottom": 2210, "left": 1325}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509625.jpg"} -{"rects": [{"solidity": 0.9947475191234236, "top": 800, "right": 2040, "bottom": 3225, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720787f.jpg"} -{"rects": [{"solidity": 0.9947487344595511, "top": 415, "right": 3560, "bottom": 2350, "left": 860}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/706389f.jpg"} -{"rects": [{"solidity": 0.9947487947637014, "top": 560, "right": 3995, "bottom": 3640, "left": 365}, {"solidity": 0.9961990324809952, "top": 840, "right": 5695, "bottom": 3255, "left": 4095}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708557f.jpg"} -{"rects": [{"solidity": 0.9947493482582628, "top": 750, "right": 2520, "bottom": 2140, "left": 770}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705406f.jpg"} -{"rects": [{"solidity": 0.9947495374361855, "top": 725, "right": 2760, "bottom": 2160, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728183f.jpg"} -{"rects": [{"solidity": 0.9947510275809641, "top": 810, "right": 2015, "bottom": 3205, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714862f.jpg"} -{"rects": [{"solidity": 0.9947511130452248, "top": 2270, "right": 3060, "bottom": 3860, "left": 680}, {"solidity": 0.9966443182361826, "top": 520, "right": 3050, "bottom": 2080, "left": 690}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728197f.jpg"} -{"rects": [{"solidity": 0.9947516401124649, "top": 675, "right": 2820, "bottom": 2365, "left": 1335}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509049.jpg"} -{"rects": [{"solidity": 0.9947516875343159, "top": 675, "right": 3200, "bottom": 2475, "left": 600}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710031f.jpg"} -{"rects": [{"solidity": 0.9947517840071843, "top": 2265, "right": 2820, "bottom": 3695, "left": 975}, {"solidity": 0.9967325990202667, "top": 630, "right": 2800, "bottom": 2045, "left": 970}, {"solidity": 0.9978286229646404, "top": 640, "right": 5130, "bottom": 2055, "left": 3310}, {"solidity": 0.9980653225931939, "top": 2265, "right": 5125, "bottom": 3630, "left": 3345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727484f.jpg"} -{"rects": [{"solidity": 0.9947521746476278, "top": 715, "right": 2520, "bottom": 2100, "left": 730}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725100f.jpg"} -{"rects": [{"solidity": 0.994752691637543, "top": 680, "right": 3120, "bottom": 2270, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708470f.jpg"} -{"rects": [{"solidity": 0.994752703303706, "top": 480, "right": 3130, "bottom": 2070, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717569f.jpg"} -{"rects": [{"solidity": 0.9947529075883768, "top": 395, "right": 3180, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707658f.jpg"} -{"rects": [{"solidity": 0.9947533661439153, "top": 980, "right": 2060, "bottom": 3075, "left": 480}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711434f.jpg"} -{"rects": [{"solidity": 0.9947541197266278, "top": 2255, "right": 2980, "bottom": 3830, "left": 1010}, {"solidity": 0.9941264821169087, "top": 380, "right": 2975, "bottom": 1995, "left": 1020}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708665f.jpg"} -{"rects": [{"solidity": 0.9947550016653355, "top": 2175, "right": 3045, "bottom": 3815, "left": 615}, {"solidity": 0.994419014198494, "top": 4035, "right": 3020, "bottom": 5670, "left": 585}, {"solidity": 0.9955157970670713, "top": 340, "right": 3055, "bottom": 1955, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729320f.jpg"} -{"rects": [{"solidity": 0.994755098629221, "top": 1590, "right": 2195, "bottom": 2805, "left": 690}, {"solidity": 0.9962582769856007, "top": 345, "right": 2185, "bottom": 1550, "left": 690}, {"solidity": 0.9981936594624725, "top": 345, "right": 3925, "bottom": 1545, "left": 2435}, {"solidity": 0.9948440156019664, "top": 1610, "right": 3910, "bottom": 2820, "left": 2425}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716280f.jpg"} -{"rects": [{"solidity": 0.994755342744357, "top": 545, "right": 1270, "bottom": 2080, "left": 240}, {"solidity": 0.9952152327359872, "top": 550, "right": 2435, "bottom": 2075, "left": 1420}], "shape": {"h": 2530, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723836f.jpg"} -{"rects": [{"solidity": 0.9947556121209592, "top": 705, "right": 5345, "bottom": 3320, "left": 2100}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724937f.jpg"} -{"rects": [{"solidity": 0.9947559372364907, "top": 765, "right": 2460, "bottom": 3505, "left": 570}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718433f.jpg"} -{"rects": [{"solidity": 0.994756075004624, "top": 670, "right": 2745, "bottom": 2065, "left": 925}, {"solidity": 0.995459160505921, "top": 2095, "right": 2705, "bottom": 3495, "left": 920}, {"solidity": 0.9964850429047097, "top": 670, "right": 5225, "bottom": 2035, "left": 3470}, {"solidity": 0.9949547585071643, "top": 2075, "right": 5225, "bottom": 3425, "left": 3465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731353f.jpg"} -{"rects": [{"solidity": 0.9947563232572486, "top": 1205, "right": 3460, "bottom": 4975, "left": 415}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/719316f.jpg"} -{"rects": [{"solidity": 0.9947563901302713, "top": 1080, "right": 3815, "bottom": 5535, "left": 225}], "shape": {"h": 6720, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708341f.jpg"} -{"rects": [{"solidity": 0.9947564287201146, "top": 310, "right": 5065, "bottom": 3635, "left": 1030}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732025f.jpg"} -{"rects": [{"solidity": 0.9947567326096668, "top": 440, "right": 3075, "bottom": 2050, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728331f.jpg"} -{"rects": [{"solidity": 0.9947578565160011, "top": 1215, "right": 3295, "bottom": 3095, "left": 1295}, {"solidity": 0.9722532963427003, "top": 3665, "right": 2265, "bottom": 5500, "left": 365}, {"solidity": 0.9600478696122942, "top": 3635, "right": 4205, "bottom": 5435, "left": 2300}], "shape": {"h": 5975, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465609.jpg"} -{"rects": [{"solidity": 0.9947582307556393, "top": 475, "right": 3190, "bottom": 2075, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734083f.jpg"} -{"rects": [{"solidity": 0.9947598929607036, "top": 695, "right": 2125, "bottom": 3225, "left": 380}, {"solidity": 0.9580859900999488, "top": 1530, "right": 5685, "bottom": 3075, "left": 4265}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725612f.jpg"} -{"rects": [{"solidity": 0.9947600267765139, "top": 300, "right": 4530, "bottom": 3780, "left": 1535}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714830f.jpg"} -{"rects": [{"solidity": 0.9947608487231384, "top": 365, "right": 3150, "bottom": 1990, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718879f.jpg"} -{"rects": [{"solidity": 0.9947611119060317, "top": 835, "right": 2050, "bottom": 3245, "left": 435}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714630f.jpg"} -{"rects": [{"solidity": 0.9947627270586583, "top": 505, "right": 5015, "bottom": 3635, "left": 1130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719978f.jpg"} -{"rects": [{"solidity": 0.9947633843443583, "top": 435, "right": 2880, "bottom": 1890, "left": 1040}, {"solidity": 0.9941703274033444, "top": 2150, "right": 2875, "bottom": 3590, "left": 1045}, {"solidity": 0.9949305504877277, "top": 3910, "right": 2885, "bottom": 5350, "left": 1055}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704255f.jpg"} -{"rects": [{"solidity": 0.9947638426766706, "top": 570, "right": 3165, "bottom": 2170, "left": 770}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708274f.jpg"} -{"rects": [{"solidity": 0.9947640552392172, "top": 425, "right": 2340, "bottom": 1615, "left": 555}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716364f.jpg"} -{"rects": [{"solidity": 0.9947644238144489, "top": 520, "right": 3085, "bottom": 1940, "left": 1275}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725944f.jpg"} -{"rects": [{"solidity": 0.9947644327138189, "top": 830, "right": 2105, "bottom": 3215, "left": 510}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713163f.jpg"} -{"rects": [{"solidity": 0.9947645972547452, "top": 510, "right": 2980, "bottom": 2160, "left": 550}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706575f.jpg"} -{"rects": [{"solidity": 0.9947649115745516, "top": 510, "right": 3360, "bottom": 2400, "left": 675}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/712722f.jpg"} -{"rects": [{"solidity": 0.9947650860410843, "top": 810, "right": 2030, "bottom": 3245, "left": 410}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707787f.jpg"} -{"rects": [{"solidity": 0.9947654713626619, "top": 485, "right": 4980, "bottom": 3730, "left": 950}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705969f.jpg"} -{"rects": [{"solidity": 0.9947655925403734, "top": 785, "right": 4720, "bottom": 3135, "left": 1555}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708799f.jpg"} -{"rects": [{"solidity": 0.9947661298897698, "top": 815, "right": 2595, "bottom": 3650, "left": 340}], "shape": {"h": 4560, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/723016f.jpg"} -{"rects": [{"solidity": 0.994766711432656, "top": 750, "right": 1965, "bottom": 2700, "left": 470}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704468f.jpg"} -{"rects": [{"solidity": 0.9947675045851764, "top": 2215, "right": 2885, "bottom": 3630, "left": 1025}, {"solidity": 0.9947671015939684, "top": 450, "right": 2900, "bottom": 1860, "left": 1075}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728074f.jpg"} -{"rects": [{"solidity": 0.9947681874066338, "top": 405, "right": 3220, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701348f.jpg"} -{"rects": [{"solidity": 0.994769648728593, "top": 395, "right": 3015, "bottom": 1875, "left": 955}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700776f.jpg"} -{"rects": [{"solidity": 0.9947696594568668, "top": 795, "right": 5630, "bottom": 3210, "left": 4025}, {"solidity": 0.995825448068574, "top": 795, "right": 3805, "bottom": 3210, "left": 2210}, {"solidity": 0.9971306966049321, "top": 805, "right": 2005, "bottom": 3200, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720697f.jpg"} -{"rects": [{"solidity": 0.9947698042512924, "top": 665, "right": 5745, "bottom": 3080, "left": 4095}, {"solidity": 0.9973993907327241, "top": 665, "right": 1990, "bottom": 3075, "left": 355}, {"solidity": 0.9974024556266214, "top": 670, "right": 3880, "bottom": 3085, "left": 2255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720182f.jpg"} -{"rects": [{"solidity": 0.9947701006735598, "top": 455, "right": 3010, "bottom": 2030, "left": 1000}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703635f.jpg"} -{"rects": [{"solidity": 0.9947708682145113, "top": 550, "right": 5805, "bottom": 3975, "left": 1225}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706372f.jpg"} -{"rects": [{"solidity": 0.9947708938443913, "top": 2050, "right": 2630, "bottom": 3505, "left": 780}, {"solidity": 0.9950266124057328, "top": 600, "right": 2615, "bottom": 2045, "left": 765}, {"solidity": 0.9955812987266907, "top": 560, "right": 5240, "bottom": 1985, "left": 3420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705307f.jpg"} -{"rects": [{"solidity": 0.9947712222455278, "top": 435, "right": 3030, "bottom": 1825, "left": 1210}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727433f.jpg"} -{"rects": [{"solidity": 0.9947725166651721, "top": 305, "right": 5040, "bottom": 3655, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713033f.jpg"} -{"rects": [{"solidity": 0.9947737363057708, "top": 4095, "right": 3040, "bottom": 5580, "left": 1040}, {"solidity": 0.9946711452044846, "top": 2300, "right": 3050, "bottom": 3750, "left": 1100}, {"solidity": 0.9948998262883613, "top": 540, "right": 3055, "bottom": 1960, "left": 1125}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731410f.jpg"} -{"rects": [{"solidity": 0.9947741892060806, "top": 3075, "right": 3300, "bottom": 4990, "left": 550}, {"solidity": 0.9952382854631886, "top": 625, "right": 3275, "bottom": 2440, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713562f.jpg"} -{"rects": [{"solidity": 0.9947745911646638, "top": 400, "right": 3255, "bottom": 2005, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726018f.jpg"} -{"rects": [{"solidity": 0.9947750098415911, "top": 760, "right": 3880, "bottom": 3175, "left": 2270}, {"solidity": 0.9961871841031388, "top": 745, "right": 2040, "bottom": 3160, "left": 425}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726921f.jpg"} -{"rects": [{"solidity": 0.9947750847283557, "top": 395, "right": 3295, "bottom": 2065, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719646f.jpg"} -{"rects": [{"solidity": 0.9947757276841865, "top": 430, "right": 2965, "bottom": 1850, "left": 1155}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728042f.jpg"} -{"rects": [{"solidity": 0.9947760351211916, "top": 790, "right": 3340, "bottom": 2740, "left": 635}, {"solidity": 0.9953462649368715, "top": 3270, "right": 3375, "bottom": 5225, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719065f.jpg"} -{"rects": [{"solidity": 0.9947761084574731, "top": 365, "right": 3345, "bottom": 2280, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724659f.jpg"} -{"rects": [{"solidity": 0.9947762443493028, "top": 705, "right": 2280, "bottom": 3480, "left": 375}, {"solidity": 0.9965575214154191, "top": 875, "right": 4115, "bottom": 3305, "left": 2490}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716707f.jpg"} -{"rects": [{"solidity": 0.9947767463988906, "top": 645, "right": 2635, "bottom": 2035, "left": 835}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706962f.jpg"} -{"rects": [{"solidity": 0.9947769091591848, "top": 630, "right": 2845, "bottom": 2045, "left": 1000}, {"solidity": 0.9946580569415908, "top": 2060, "right": 5240, "bottom": 3495, "left": 3440}, {"solidity": 0.9940022895824001, "top": 2070, "right": 2800, "bottom": 3485, "left": 1000}, {"solidity": 0.9953729792003205, "top": 650, "right": 5240, "bottom": 1755, "left": 3415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725085f.jpg"} -{"rects": [{"solidity": 0.9947774361637466, "top": 410, "right": 2420, "bottom": 1600, "left": 620}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715875f.jpg"} -{"rects": [{"solidity": 0.9947780849920721, "top": 765, "right": 2015, "bottom": 3170, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705480f.jpg"} -{"rects": [{"solidity": 0.9947783149813381, "top": 410, "right": 3225, "bottom": 3505, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713396f.jpg"} -{"rects": [{"solidity": 0.9947785829837045, "top": 765, "right": 2070, "bottom": 3165, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720157f.jpg"} -{"rects": [{"solidity": 0.994778692527389, "top": 765, "right": 2355, "bottom": 3425, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722961f.jpg"} -{"rects": [{"solidity": 0.9947787537968968, "top": 685, "right": 2765, "bottom": 3100, "left": 1140}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708055f.jpg"} -{"rects": [{"solidity": 0.9947789753202124, "top": 480, "right": 3050, "bottom": 1850, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701039f.jpg"} -{"rects": [{"solidity": 0.9947791740828249, "top": 680, "right": 3875, "bottom": 2555, "left": 840}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1510015.jpg"} -{"rects": [{"solidity": 0.9947805704126379, "top": 2080, "right": 5210, "bottom": 3480, "left": 3385}, {"solidity": 0.9937837931770676, "top": 630, "right": 2730, "bottom": 2040, "left": 930}, {"solidity": 0.9950956620856184, "top": 650, "right": 5210, "bottom": 2045, "left": 3395}, {"solidity": 0.9954217788049027, "top": 2240, "right": 2745, "bottom": 3350, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725209f.jpg"} -{"rects": [{"solidity": 0.9947832555686863, "top": 820, "right": 2710, "bottom": 2290, "left": 845}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705248f.jpg"} -{"rects": [{"solidity": 0.9947842094497852, "top": 2425, "right": 2780, "bottom": 3650, "left": 890}, {"solidity": 0.9955427064074331, "top": 290, "right": 2395, "bottom": 2185, "left": 1250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701466f.jpg"} -{"rects": [{"solidity": 0.9947844935988791, "top": 390, "right": 2420, "bottom": 1575, "left": 635}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715855f.jpg"} -{"rects": [{"solidity": 0.9947845687694845, "top": 970, "right": 3510, "bottom": 4960, "left": 340}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/732823f.jpg"} -{"rects": [{"solidity": 0.9947846102297394, "top": 575, "right": 3075, "bottom": 2010, "left": 1250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727415f.jpg"} -{"rects": [{"solidity": 0.9947849066007663, "top": 490, "right": 3200, "bottom": 2380, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700540f.jpg"} -{"rects": [{"solidity": 0.9947860041344461, "top": 905, "right": 2300, "bottom": 3625, "left": 475}, {"solidity": 0.9945583755308202, "top": 910, "right": 4475, "bottom": 3625, "left": 2655}, {"solidity": 0.9956334814243637, "top": 2340, "right": 6660, "bottom": 3650, "left": 4505}, {"solidity": 0.9953440271886944, "top": 900, "right": 6660, "bottom": 2185, "left": 4505}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711673f.jpg"} -{"rects": [{"solidity": 0.9947861189212704, "top": 880, "right": 2055, "bottom": 3310, "left": 415}, {"solidity": 0.9968454258675079, "top": 895, "right": 3875, "bottom": 3295, "left": 2290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729947f.jpg"} -{"rects": [{"solidity": 0.9947864752559837, "top": 2205, "right": 3075, "bottom": 3820, "left": 655}, {"solidity": 0.997928194907031, "top": 4080, "right": 3090, "bottom": 5680, "left": 685}, {"solidity": 0.9959392637562483, "top": 405, "right": 3025, "bottom": 1990, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734302f.jpg"} -{"rects": [{"solidity": 0.9947869812156773, "top": 455, "right": 3135, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712153f.jpg"} -{"rects": [{"solidity": 0.9947871641201478, "top": 410, "right": 3235, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722623f.jpg"} -{"rects": [{"solidity": 0.9947873202472092, "top": 805, "right": 3330, "bottom": 2730, "left": 605}, {"solidity": 0.9943077546708595, "top": 3370, "right": 3315, "bottom": 5265, "left": 600}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713353f.jpg"} -{"rects": [{"solidity": 0.9947883030663119, "top": 920, "right": 5565, "bottom": 3335, "left": 3920}, {"solidity": 0.9951782616449683, "top": 885, "right": 3795, "bottom": 3295, "left": 2160}, {"solidity": 0.9940254629856972, "top": 855, "right": 2025, "bottom": 3255, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731629f.jpg"} -{"rects": [{"solidity": 0.9947885948543417, "top": 655, "right": 2845, "bottom": 2100, "left": 1005}, {"solidity": 0.9969559855906942, "top": 2230, "right": 4985, "bottom": 3655, "left": 3160}, {"solidity": 0.9939061370439913, "top": 2260, "right": 2835, "bottom": 3690, "left": 1015}, {"solidity": 0.9956615832692852, "top": 625, "right": 4975, "bottom": 2010, "left": 3165}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726249f.jpg"} -{"rects": [{"solidity": 0.9947887374310393, "top": 795, "right": 2045, "bottom": 3210, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721171f.jpg"} -{"rects": [{"solidity": 0.9947893693919065, "top": 4080, "right": 3050, "bottom": 5690, "left": 650}, {"solidity": 0.9953601142534501, "top": 410, "right": 3035, "bottom": 2005, "left": 645}, {"solidity": 0.9966812039126152, "top": 2225, "right": 3030, "bottom": 3810, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720599f.jpg"} -{"rects": [{"solidity": 0.9947896128410831, "top": 355, "right": 3665, "bottom": 2830, "left": 485}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508849.jpg"} -{"rects": [{"solidity": 0.994789719285808, "top": 2390, "right": 3120, "bottom": 3830, "left": 1300}, {"solidity": 0.9962420347475628, "top": 620, "right": 3135, "bottom": 2040, "left": 1330}, {"solidity": 0.9934102386374889, "top": 4130, "right": 3095, "bottom": 5555, "left": 1285}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725441f.jpg"} -{"rects": [{"solidity": 0.9947908922393711, "top": 665, "right": 2745, "bottom": 2080, "left": 940}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727434f.jpg"} -{"rects": [{"solidity": 0.9947910207118938, "top": 355, "right": 4110, "bottom": 2670, "left": 1305}], "shape": {"h": 3000, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508453.jpg"} -{"rects": [{"solidity": 0.9947914128170886, "top": 380, "right": 3110, "bottom": 2005, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728428f.jpg"} -{"rects": [{"solidity": 0.9947917694174279, "top": 710, "right": 2760, "bottom": 2120, "left": 935}, {"solidity": 0.9956838548260085, "top": 2170, "right": 2750, "bottom": 3570, "left": 930}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727999f.jpg"} -{"rects": [{"solidity": 0.9947922807844987, "top": 2265, "right": 2985, "bottom": 3875, "left": 585}, {"solidity": 0.9955218602622108, "top": 415, "right": 2990, "bottom": 2010, "left": 595}, {"solidity": 0.9949909572727003, "top": 4130, "right": 2975, "bottom": 5735, "left": 580}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733600f.jpg"} -{"rects": [{"solidity": 0.9947923574087336, "top": 385, "right": 3000, "bottom": 1805, "left": 990}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701413f.jpg"} -{"rects": [{"solidity": 0.994792361240765, "top": 740, "right": 2040, "bottom": 3125, "left": 450}, {"solidity": 0.9956966074810765, "top": 750, "right": 3870, "bottom": 3135, "left": 2290}, {"solidity": 0.9954755842777393, "top": 745, "right": 5690, "bottom": 3135, "left": 4110}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710372f.jpg"} -{"rects": [{"solidity": 0.9947927881214049, "top": 495, "right": 2960, "bottom": 2045, "left": 1095}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718038f.jpg"} -{"rects": [{"solidity": 0.9947929373782206, "top": 420, "right": 3230, "bottom": 1995, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727243f.jpg"} -{"rects": [{"solidity": 0.9947933081628322, "top": 4110, "right": 3105, "bottom": 5745, "left": 675}, {"solidity": 0.9974036877966868, "top": 2250, "right": 3110, "bottom": 3865, "left": 695}, {"solidity": 0.9974390726201204, "top": 370, "right": 3105, "bottom": 1980, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728941f.jpg"} -{"rects": [{"solidity": 0.9947940719593602, "top": 1610, "right": 3895, "bottom": 2820, "left": 2400}, {"solidity": 0.9975008975649591, "top": 325, "right": 2175, "bottom": 1525, "left": 680}, {"solidity": 0.9976330027051398, "top": 1610, "right": 2175, "bottom": 2810, "left": 680}, {"solidity": 0.9949920407962021, "top": 320, "right": 3885, "bottom": 1525, "left": 2390}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716284f.jpg"} -{"rects": [{"solidity": 0.9947942760191473, "top": 1045, "right": 3300, "bottom": 5045, "left": 300}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/716853f.jpg"} -{"rects": [{"solidity": 0.9947942942894694, "top": 2270, "right": 3115, "bottom": 3920, "left": 685}, {"solidity": 0.9946181280724866, "top": 4125, "right": 3090, "bottom": 5765, "left": 665}, {"solidity": 0.9949378990993196, "top": 440, "right": 3140, "bottom": 2080, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732142f.jpg"} -{"rects": [{"solidity": 0.9947945166370864, "top": 2230, "right": 2900, "bottom": 3670, "left": 1030}, {"solidity": 0.995943233876619, "top": 4035, "right": 2885, "bottom": 5480, "left": 1030}, {"solidity": 0.9938824610991032, "top": 450, "right": 2885, "bottom": 1875, "left": 1040}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703558f.jpg"} -{"rects": [{"solidity": 0.9947945343479099, "top": 415, "right": 3465, "bottom": 2910, "left": 560}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733329f.jpg"} -{"rects": [{"solidity": 0.994794578410545, "top": 320, "right": 1880, "bottom": 1220, "left": 745}], "shape": {"h": 3950, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727129f.jpg"} -{"rects": [{"solidity": 0.9947945845004669, "top": 610, "right": 1555, "bottom": 2410, "left": 345}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716459f.jpg"} -{"rects": [{"solidity": 0.9947949896485723, "top": 4025, "right": 3170, "bottom": 5650, "left": 780}, {"solidity": 0.9957424578816769, "top": 2160, "right": 3175, "bottom": 3765, "left": 770}, {"solidity": 0.9933523171300256, "top": 320, "right": 3180, "bottom": 1905, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720136f.jpg"} -{"rects": [{"solidity": 0.9947953926162898, "top": 440, "right": 3070, "bottom": 2050, "left": 1065}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718954f.jpg"} -{"rects": [{"solidity": 0.9947955564635237, "top": 805, "right": 3850, "bottom": 3190, "left": 2250}, {"solidity": 0.9957273152400273, "top": 805, "right": 2100, "bottom": 3195, "left": 505}, {"solidity": 0.9968324145088895, "top": 820, "right": 5590, "bottom": 3185, "left": 4010}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731612f.jpg"} -{"rects": [{"solidity": 0.9947958730546199, "top": 725, "right": 3170, "bottom": 2535, "left": 470}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703903f.jpg"} -{"rects": [{"solidity": 0.9947958865690246, "top": 845, "right": 2580, "bottom": 3815, "left": 260}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/712978f.jpg"} -{"rects": [{"solidity": 0.9947962302493284, "top": 725, "right": 2520, "bottom": 2200, "left": 440}, {"solidity": 0.9934214049440387, "top": 2455, "right": 2505, "bottom": 3935, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716198f.jpg"} -{"rects": [{"solidity": 0.9947962737950587, "top": 440, "right": 3185, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/717746f.jpg"} -{"rects": [{"solidity": 0.9947962765655425, "top": 780, "right": 2010, "bottom": 3155, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714807f.jpg"} -{"rects": [{"solidity": 0.9947973025197094, "top": 2165, "right": 2750, "bottom": 3595, "left": 920}, {"solidity": 0.9954442137095785, "top": 675, "right": 2750, "bottom": 2095, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705532f.jpg"} -{"rects": [{"solidity": 0.9947979952310946, "top": 615, "right": 3360, "bottom": 2540, "left": 615}, {"solidity": 0.9957964820903563, "top": 3165, "right": 3355, "bottom": 5110, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714012f.jpg"} -{"rects": [{"solidity": 0.994798191189209, "top": 545, "right": 3970, "bottom": 2390, "left": 950}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507578.jpg"} -{"rects": [{"solidity": 0.9947982749721098, "top": 405, "right": 3180, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712228f.jpg"} -{"rects": [{"solidity": 0.9947989837094605, "top": 465, "right": 3030, "bottom": 1860, "left": 1205}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/726779f.jpg"} -{"rects": [{"solidity": 0.9947993722730757, "top": 275, "right": 5685, "bottom": 4065, "left": 1075}], "shape": {"h": 4410, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/711532f.jpg"} -{"rects": [{"solidity": 0.9947996387317584, "top": 2265, "right": 3210, "bottom": 3900, "left": 750}, {"solidity": 0.9959373223377005, "top": 395, "right": 3170, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732968f.jpg"} -{"rects": [{"solidity": 0.9948008553431532, "top": 2335, "right": 3220, "bottom": 3990, "left": 800}, {"solidity": 0.9956042714653093, "top": 480, "right": 3210, "bottom": 2105, "left": 845}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718566f.jpg"} -{"rects": [{"solidity": 0.9948010126283687, "top": 435, "right": 5225, "bottom": 3515, "left": 1340}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700649f.jpg"} -{"rects": [{"solidity": 0.9948016469004092, "top": 440, "right": 3160, "bottom": 2075, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722559f.jpg"} -{"rects": [{"solidity": 0.9948017089901974, "top": 585, "right": 4925, "bottom": 3575, "left": 1170}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709817f.jpg"} -{"rects": [{"solidity": 0.9948019448766006, "top": 300, "right": 4025, "bottom": 2720, "left": 1000}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507929.jpg"} -{"rects": [{"solidity": 0.9948021426151399, "top": 750, "right": 2985, "bottom": 2195, "left": 940}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508087.jpg"} -{"rects": [{"solidity": 0.99480221097496, "top": 470, "right": 3165, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711948f.jpg"} -{"rects": [{"solidity": 0.9948022206354414, "top": 770, "right": 3225, "bottom": 2405, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720654f.jpg"} -{"rects": [{"solidity": 0.994802253181209, "top": 500, "right": 3080, "bottom": 1905, "left": 1250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727997f.jpg"} -{"rects": [{"solidity": 0.9948026177618667, "top": 3255, "right": 3350, "bottom": 5170, "left": 620}, {"solidity": 0.9978546864789004, "top": 630, "right": 3275, "bottom": 2445, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717729f.jpg"} -{"rects": [{"solidity": 0.9948027869207239, "top": 2240, "right": 3235, "bottom": 3870, "left": 795}, {"solidity": 0.9975442282859364, "top": 460, "right": 3230, "bottom": 2065, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734105f.jpg"} -{"rects": [{"solidity": 0.994803408550332, "top": 455, "right": 3480, "bottom": 2265, "left": 775}], "shape": {"h": 6925, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711194f.jpg"} -{"rects": [{"solidity": 0.994803892522619, "top": 465, "right": 3210, "bottom": 2075, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723260f.jpg"} -{"rects": [{"solidity": 0.9948039374928637, "top": 330, "right": 3475, "bottom": 2770, "left": 240}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708117f.jpg"} -{"rects": [{"solidity": 0.9948048978471881, "top": 670, "right": 2835, "bottom": 3475, "left": 840}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712541f.jpg"} -{"rects": [{"solidity": 0.9948053151221579, "top": 450, "right": 3125, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723517f.jpg"} -{"rects": [{"solidity": 0.9948054712155929, "top": 435, "right": 3190, "bottom": 2035, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719389f.jpg"} -{"rects": [{"solidity": 0.9948063637647785, "top": 780, "right": 3900, "bottom": 3180, "left": 2285}, {"solidity": 0.9958013289190072, "top": 765, "right": 2015, "bottom": 3165, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726881f.jpg"} -{"rects": [{"solidity": 0.994807121661721, "top": 295, "right": 1965, "bottom": 1310, "left": 445}, {"solidity": 0.9914182587077004, "top": 1495, "right": 1975, "bottom": 2510, "left": 460}], "shape": {"h": 3935, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/724168f.jpg"} -{"rects": [{"solidity": 0.9948075441358748, "top": 605, "right": 2815, "bottom": 2075, "left": 960}, {"solidity": 0.9951283960700473, "top": 610, "right": 5400, "bottom": 2040, "left": 3560}, {"solidity": 0.9951929392646365, "top": 2065, "right": 2785, "bottom": 3485, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706693f.jpg"} -{"rects": [{"solidity": 0.9948076026828231, "top": 450, "right": 3485, "bottom": 2305, "left": 745}], "shape": {"h": 6935, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711193f.jpg"} -{"rects": [{"solidity": 0.9948078091036144, "top": 535, "right": 5285, "bottom": 3615, "left": 1245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718091f.jpg"} -{"rects": [{"solidity": 0.994808702669763, "top": 430, "right": 3135, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707701f.jpg"} -{"rects": [{"solidity": 0.9948094828037356, "top": 735, "right": 3265, "bottom": 2665, "left": 505}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725552f.jpg"} -{"rects": [{"solidity": 0.9948098490803716, "top": 2230, "right": 2825, "bottom": 3645, "left": 995}, {"solidity": 0.9947288118909341, "top": 590, "right": 2800, "bottom": 2025, "left": 990}, {"solidity": 0.9963469003325066, "top": 2200, "right": 5055, "bottom": 3605, "left": 3240}, {"solidity": 0.9973357462423968, "top": 605, "right": 5050, "bottom": 1990, "left": 3240}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725706f.jpg"} -{"rects": [{"solidity": 0.9948104992067108, "top": 4090, "right": 3125, "bottom": 5715, "left": 700}, {"solidity": 0.9930893940179358, "top": 395, "right": 3135, "bottom": 2020, "left": 705}, {"solidity": 0.9986335902009829, "top": 2250, "right": 3135, "bottom": 3850, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728696f.jpg"} -{"rects": [{"solidity": 0.9948106250911625, "top": 595, "right": 5715, "bottom": 2210, "left": 3300}, {"solidity": 0.9931498916226815, "top": 615, "right": 2255, "bottom": 1885, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718906f.jpg"} -{"rects": [{"solidity": 0.9948110744643245, "top": 475, "right": 3110, "bottom": 2100, "left": 700}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719635f.jpg"} -{"rects": [{"solidity": 0.9948111993296958, "top": 705, "right": 2575, "bottom": 2125, "left": 810}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725026f.jpg"} -{"rects": [{"solidity": 0.9948114938494185, "top": 750, "right": 2055, "bottom": 3175, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706296f.jpg"} -{"rects": [{"solidity": 0.9948119004202014, "top": 2025, "right": 5230, "bottom": 3455, "left": 3430}, {"solidity": 0.9939530762723319, "top": 670, "right": 2740, "bottom": 2085, "left": 935}, {"solidity": 0.935139617864976, "top": 2105, "right": 2720, "bottom": 3425, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731337f.jpg"} -{"rects": [{"solidity": 0.9948126594569584, "top": 455, "right": 3160, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734569f.jpg"} -{"rects": [{"solidity": 0.994812869550503, "top": 785, "right": 1975, "bottom": 3190, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724800f.jpg"} -{"rects": [{"solidity": 0.9948134385227259, "top": 1405, "right": 3465, "bottom": 4910, "left": 375}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723864f.jpg"} -{"rects": [{"solidity": 0.9948135835029417, "top": 2015, "right": 3035, "bottom": 3640, "left": 615}, {"solidity": 0.9936812674133466, "top": 3785, "right": 2995, "bottom": 5390, "left": 580}, {"solidity": 0.9958828402845135, "top": 405, "right": 2810, "bottom": 1800, "left": 1015}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734834f.jpg"} -{"rects": [{"solidity": 0.9948141236215802, "top": 1035, "right": 2835, "bottom": 5075, "left": 1030}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717071f.jpg"} -{"rects": [{"solidity": 0.9948147115864776, "top": 2285, "right": 4665, "bottom": 3600, "left": 2965}, {"solidity": 0.9946709061245876, "top": 530, "right": 4675, "bottom": 1810, "left": 2995}, {"solidity": 0.9945610408487874, "top": 2235, "right": 2400, "bottom": 3515, "left": 715}, {"solidity": 0.9965294239208392, "top": 515, "right": 2370, "bottom": 1765, "left": 705}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732917f.jpg"} -{"rects": [{"solidity": 0.994814855842767, "top": 405, "right": 2990, "bottom": 1885, "left": 990}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730145f.jpg"} -{"rects": [{"solidity": 0.9948149481494815, "top": 445, "right": 3005, "bottom": 1840, "left": 1195}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726534f.jpg"} -{"rects": [{"solidity": 0.9948150231128609, "top": 875, "right": 4670, "bottom": 3085, "left": 1180}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716998f.jpg"} -{"rects": [{"solidity": 0.9948152010195805, "top": 445, "right": 2835, "bottom": 1905, "left": 1040}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700769f.jpg"} -{"rects": [{"solidity": 0.9948158764590435, "top": 2195, "right": 3100, "bottom": 3825, "left": 675}, {"solidity": 0.99592780999057, "top": 4095, "right": 3075, "bottom": 5705, "left": 655}, {"solidity": 0.995761923871233, "top": 365, "right": 3085, "bottom": 1975, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729753f.jpg"} -{"rects": [{"solidity": 0.9948164032334508, "top": 870, "right": 2335, "bottom": 3285, "left": 700}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708593f.jpg"} -{"rects": [{"solidity": 0.9948169130212178, "top": 480, "right": 3135, "bottom": 2075, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724687f.jpg"} -{"rects": [{"solidity": 0.9948171623840061, "top": 695, "right": 2705, "bottom": 2100, "left": 890}, {"solidity": 0.9952273723645929, "top": 2165, "right": 2690, "bottom": 3575, "left": 890}, {"solidity": 0.9952529668956902, "top": 2120, "right": 5220, "bottom": 3535, "left": 3425}, {"solidity": 0.994174859365964, "top": 710, "right": 5230, "bottom": 2065, "left": 3445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725491f.jpg"} -{"rects": [{"solidity": 0.9948173510833959, "top": 2265, "right": 3205, "bottom": 3895, "left": 770}, {"solidity": 0.9960705785802216, "top": 450, "right": 3180, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734128f.jpg"} -{"rects": [{"solidity": 0.9948175954852363, "top": 665, "right": 2560, "bottom": 3445, "left": 760}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707048f.jpg"} -{"rects": [{"solidity": 0.9948178126710223, "top": 725, "right": 3875, "bottom": 3100, "left": 2305}, {"solidity": 0.9974711264335085, "top": 715, "right": 2010, "bottom": 3085, "left": 440}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731744f.jpg"} -{"rects": [{"solidity": 0.9948189751376667, "top": 545, "right": 2520, "bottom": 2065, "left": 250}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716354f.jpg"} -{"rects": [{"solidity": 0.9948190064549152, "top": 2565, "right": 2095, "bottom": 3820, "left": 255}, {"solidity": 0.9963646532438478, "top": 980, "right": 2160, "bottom": 2205, "left": 350}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509529.jpg"} -{"rects": [{"solidity": 0.9948190087429227, "top": 510, "right": 2715, "bottom": 1935, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706894f.jpg"} -{"rects": [{"solidity": 0.9948192919699026, "top": 760, "right": 2055, "bottom": 3145, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720282f.jpg"} -{"rects": [{"solidity": 0.994819316222902, "top": 700, "right": 3310, "bottom": 2675, "left": 510}, {"solidity": 0.996294525460196, "top": 3025, "right": 3165, "bottom": 4655, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710308f.jpg"} -{"rects": [{"solidity": 0.9948195484028941, "top": 570, "right": 2720, "bottom": 2020, "left": 875}, {"solidity": 0.9948779974243085, "top": 2080, "right": 2695, "bottom": 3510, "left": 880}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731983f.jpg"} -{"rects": [{"solidity": 0.9948201045100926, "top": 390, "right": 3240, "bottom": 2005, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734267f.jpg"} -{"rects": [{"solidity": 0.9948202648048711, "top": 2440, "right": 2505, "bottom": 3950, "left": 395}, {"solidity": 0.996537898658537, "top": 695, "right": 2520, "bottom": 2180, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716108f.jpg"} -{"rects": [{"solidity": 0.9948216027763118, "top": 840, "right": 5655, "bottom": 3280, "left": 4000}, {"solidity": 0.9964232670488264, "top": 790, "right": 3835, "bottom": 3225, "left": 2190}, {"solidity": 0.997809965950802, "top": 795, "right": 2000, "bottom": 3205, "left": 385}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721803f.jpg"} -{"rects": [{"solidity": 0.9948227676711567, "top": 490, "right": 4885, "bottom": 3505, "left": 1030}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718260f.jpg"} -{"rects": [{"solidity": 0.9948227772329559, "top": 385, "right": 3170, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/728831f.jpg"} -{"rects": [{"solidity": 0.9948228635348895, "top": 595, "right": 2525, "bottom": 2050, "left": 685}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706004f.jpg"} -{"rects": [{"solidity": 0.9948229493500672, "top": 2265, "right": 3135, "bottom": 3910, "left": 695}, {"solidity": 0.9951151156394876, "top": 4155, "right": 3115, "bottom": 5760, "left": 695}, {"solidity": 0.9951198074160561, "top": 425, "right": 3160, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733734f.jpg"} -{"rects": [{"solidity": 0.9948231743323929, "top": 495, "right": 3170, "bottom": 2110, "left": 760}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725995f.jpg"} -{"rects": [{"solidity": 0.9948234787236738, "top": 350, "right": 3255, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733798f.jpg"} -{"rects": [{"solidity": 0.9948238980781304, "top": 980, "right": 3435, "bottom": 4825, "left": 460}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712895f.jpg"} -{"rects": [{"solidity": 0.9948239782481814, "top": 425, "right": 5195, "bottom": 3650, "left": 1090}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/711435f.jpg"} -{"rects": [{"solidity": 0.99482453963222, "top": 395, "right": 4915, "bottom": 3640, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700175f.jpg"} -{"rects": [{"solidity": 0.9948247867911363, "top": 805, "right": 2085, "bottom": 3195, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713751f.jpg"} -{"rects": [{"solidity": 0.9948248268710146, "top": 425, "right": 3005, "bottom": 1850, "left": 1185}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725655f.jpg"} -{"rects": [{"solidity": 0.9948248823836905, "top": 505, "right": 2810, "bottom": 1845, "left": 1000}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704901f.jpg"} -{"rects": [{"solidity": 0.994825289422766, "top": 560, "right": 5030, "bottom": 3675, "left": 1175}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709212f.jpg"} -{"rects": [{"solidity": 0.9948261598275101, "top": 435, "right": 2955, "bottom": 1905, "left": 950}, {"solidity": 0.9966650976491381, "top": 2200, "right": 2925, "bottom": 3660, "left": 940}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722228f.jpg"} -{"rects": [{"solidity": 0.9948264271169266, "top": 425, "right": 3185, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704170f.jpg"} -{"rects": [{"solidity": 0.9948265219573066, "top": 2110, "right": 5880, "bottom": 3615, "left": 3970}, {"solidity": 0.9965001403565963, "top": 2125, "right": 2155, "bottom": 3595, "left": 255}, {"solidity": 0.9959815704946701, "top": 1035, "right": 3810, "bottom": 2935, "left": 2335}, {"solidity": 0.9963357885253058, "top": 485, "right": 2145, "bottom": 1935, "left": 260}, {"solidity": 0.9953038974810523, "top": 480, "right": 5860, "bottom": 1915, "left": 3995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731455f.jpg"} -{"rects": [{"solidity": 0.994826642662425, "top": 440, "right": 3605, "bottom": 2275, "left": 885}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711239f.jpg"} -{"rects": [{"solidity": 0.9948267109845093, "top": 3500, "right": 3130, "bottom": 5140, "left": 700}, {"solidity": 0.9948408745693834, "top": 910, "right": 3160, "bottom": 2515, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731072f.jpg"} -{"rects": [{"solidity": 0.9948267628800339, "top": 755, "right": 2015, "bottom": 3140, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721631f.jpg"} -{"rects": [{"solidity": 0.994826874705235, "top": 570, "right": 2695, "bottom": 1975, "left": 870}, {"solidity": 0.9966485623318121, "top": 1995, "right": 2690, "bottom": 3410, "left": 875}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704088f.jpg"} -{"rects": [{"solidity": 0.9948271381570883, "top": 2120, "right": 5285, "bottom": 3535, "left": 3460}, {"solidity": 0.9995512886890233, "top": 655, "right": 2670, "bottom": 2065, "left": 860}, {"solidity": 0.9952762710854146, "top": 2140, "right": 2675, "bottom": 3545, "left": 870}, {"solidity": 0.9960821453494169, "top": 645, "right": 5285, "bottom": 2035, "left": 3465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705210f.jpg"} -{"rects": [{"solidity": 0.9948274036934743, "top": 495, "right": 3025, "bottom": 1930, "left": 1180}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726535f.jpg"} -{"rects": [{"solidity": 0.9948274462637339, "top": 1015, "right": 3290, "bottom": 2085, "left": 1670}], "shape": {"h": 3020, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509539.jpg"} -{"rects": [{"solidity": 0.9948284386433304, "top": 420, "right": 3130, "bottom": 2025, "left": 725}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/730336f.jpg"} -{"rects": [{"solidity": 0.9948285973236658, "top": 2270, "right": 3145, "bottom": 3710, "left": 1315}, {"solidity": 0.9943088557136157, "top": 500, "right": 3160, "bottom": 1925, "left": 1345}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727488f.jpg"} -{"rects": [{"solidity": 0.9948286194830552, "top": 300, "right": 3250, "bottom": 1940, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706208f.jpg"} -{"rects": [{"solidity": 0.9948297738618981, "top": 840, "right": 3530, "bottom": 2380, "left": 1395}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508999.jpg"} -{"rects": [{"solidity": 0.9948298756277774, "top": 420, "right": 3215, "bottom": 2045, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724875f.jpg"} -{"rects": [{"solidity": 0.9948305628914867, "top": 705, "right": 3280, "bottom": 2625, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717695f.jpg"} -{"rects": [{"solidity": 0.9948307438537762, "top": 600, "right": 2715, "bottom": 3470, "left": 845}, {"solidity": 0.9946964424010117, "top": 555, "right": 5125, "bottom": 1985, "left": 3320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706011f.jpg"} -{"rects": [{"solidity": 0.9948310535141769, "top": 360, "right": 2915, "bottom": 1975, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711816f.jpg"} -{"rects": [{"solidity": 0.9948321297785687, "top": 880, "right": 3090, "bottom": 2125, "left": 1260}], "shape": {"h": 2975, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509733.jpg"} -{"rects": [{"solidity": 0.994832547123647, "top": 685, "right": 2925, "bottom": 2100, "left": 1100}, {"solidity": 0.9934382813040428, "top": 4070, "right": 2910, "bottom": 5495, "left": 1090}, {"solidity": 0.9910976740515693, "top": 2400, "right": 2915, "bottom": 3815, "left": 1095}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710775f.jpg"} -{"rects": [{"solidity": 0.99483332039237, "top": 735, "right": 2020, "bottom": 3155, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723952f.jpg"} -{"rects": [{"solidity": 0.9948335532409327, "top": 240, "right": 3215, "bottom": 5940, "left": 410}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703589f.jpg"} -{"rects": [{"solidity": 0.994833879766914, "top": 855, "right": 3125, "bottom": 2675, "left": 515}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709988f.jpg"} -{"rects": [{"solidity": 0.9948340062698385, "top": 505, "right": 3030, "bottom": 1920, "left": 1195}, {"solidity": 0.9944270358176986, "top": 2215, "right": 3005, "bottom": 3635, "left": 1180}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725069f.jpg"} -{"rects": [{"solidity": 0.9948342236568722, "top": 440, "right": 3215, "bottom": 2370, "left": 650}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/716650f.jpg"} -{"rects": [{"solidity": 0.9948342259053766, "top": 405, "right": 3205, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710683f.jpg"} -{"rects": [{"solidity": 0.9948342897067481, "top": 360, "right": 3205, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710452f.jpg"} -{"rects": [{"solidity": 0.9948346182859626, "top": 395, "right": 3205, "bottom": 2050, "left": 765}, {"solidity": 0.9961592469815785, "top": 2280, "right": 3180, "bottom": 3900, "left": 750}, {"solidity": 0.997427409192115, "top": 4165, "right": 3180, "bottom": 5770, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733731f.jpg"} -{"rects": [{"solidity": 0.9948348160990563, "top": 650, "right": 1580, "bottom": 2435, "left": 395}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/712526f.jpg"} -{"rects": [{"solidity": 0.9948351037368683, "top": 650, "right": 2825, "bottom": 2075, "left": 1005}, {"solidity": 0.9944095345510294, "top": 615, "right": 5120, "bottom": 2040, "left": 3295}, {"solidity": 0.9946788703133881, "top": 2285, "right": 2825, "bottom": 3705, "left": 1005}, {"solidity": 0.9958108442683833, "top": 2245, "right": 5125, "bottom": 3665, "left": 3330}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725553f.jpg"} -{"rects": [{"solidity": 0.9948351850151501, "top": 625, "right": 5195, "bottom": 2095, "left": 3290}, {"solidity": 0.9955020723436323, "top": 2105, "right": 2815, "bottom": 3560, "left": 965}, {"solidity": 0.9961365845795829, "top": 655, "right": 2775, "bottom": 2050, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706954f.jpg"} -{"rects": [{"solidity": 0.9948361168065705, "top": 610, "right": 1620, "bottom": 2400, "left": 410}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/715837f.jpg"} -{"rects": [{"solidity": 0.9948373324390299, "top": 365, "right": 3110, "bottom": 2005, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706668f.jpg"} -{"rects": [{"solidity": 0.9948373476633721, "top": 2075, "right": 5315, "bottom": 3515, "left": 3485}, {"solidity": 0.9958768673870857, "top": 2060, "right": 2740, "bottom": 3490, "left": 920}, {"solidity": 0.9966920574505926, "top": 600, "right": 2730, "bottom": 1995, "left": 910}, {"solidity": 0.9958257608689959, "top": 585, "right": 5245, "bottom": 2020, "left": 3565}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731967f.jpg"} -{"rects": [{"solidity": 0.994837383830736, "top": 830, "right": 3295, "bottom": 2270, "left": 1160}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507747.jpg"} -{"rects": [{"solidity": 0.9948375674258585, "top": 785, "right": 2625, "bottom": 3785, "left": 280}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508021.jpg"} -{"rects": [{"solidity": 0.9948378543429356, "top": 2145, "right": 2635, "bottom": 3420, "left": 710}, {"solidity": 0.9950112029127574, "top": 630, "right": 2570, "bottom": 1805, "left": 710}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722655f.jpg"} -{"rects": [{"solidity": 0.9948380914413947, "top": 320, "right": 5055, "bottom": 3665, "left": 1020}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713823f.jpg"} -{"rects": [{"solidity": 0.9948387940555308, "top": 3130, "right": 3225, "bottom": 5065, "left": 525}, {"solidity": 0.9965835138153997, "top": 635, "right": 3225, "bottom": 2460, "left": 585}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715109f.jpg"} -{"rects": [{"solidity": 0.9948391586088923, "top": 2180, "right": 5110, "bottom": 3625, "left": 3290}, {"solidity": 0.9956136712936986, "top": 2195, "right": 2890, "bottom": 3620, "left": 1070}, {"solidity": 0.9938356812892745, "top": 565, "right": 2855, "bottom": 1985, "left": 1060}, {"solidity": 0.9951744542956917, "top": 595, "right": 5100, "bottom": 1985, "left": 3285}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725082f.jpg"} -{"rects": [{"solidity": 0.9948391950665917, "top": 485, "right": 2880, "bottom": 2000, "left": 905}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717480f.jpg"} -{"rects": [{"solidity": 0.9948393929626291, "top": 335, "right": 3110, "bottom": 1930, "left": 710}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/722585f.jpg"} -{"rects": [{"solidity": 0.9948397703801438, "top": 1010, "right": 5695, "bottom": 3360, "left": 4115}, {"solidity": 0.9965156310733522, "top": 1015, "right": 3875, "bottom": 3330, "left": 2305}, {"solidity": 0.9954386015045114, "top": 1000, "right": 2015, "bottom": 3320, "left": 490}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712702f.jpg"} -{"rects": [{"solidity": 0.9948403210036689, "top": 720, "right": 2670, "bottom": 2160, "left": 845}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727463f.jpg"} -{"rects": [{"solidity": 0.9948412393897612, "top": 900, "right": 3255, "bottom": 2740, "left": 480}, {"solidity": 0.9939055164840181, "top": 3220, "right": 3220, "bottom": 5055, "left": 475}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728093f.jpg"} -{"rects": [{"solidity": 0.994841253542531, "top": 315, "right": 2050, "bottom": 1330, "left": 525}], "shape": {"h": 3950, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727104f.jpg"} -{"rects": [{"solidity": 0.9948413439554848, "top": 2280, "right": 3140, "bottom": 3890, "left": 705}, {"solidity": 0.9971366984129036, "top": 4130, "right": 3145, "bottom": 5740, "left": 725}, {"solidity": 0.9964084195746009, "top": 425, "right": 3110, "bottom": 2035, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729456f.jpg"} -{"rects": [{"solidity": 0.9948413957349164, "top": 505, "right": 3100, "bottom": 1755, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723091f.jpg"} -{"rects": [{"solidity": 0.9948417366153395, "top": 385, "right": 3200, "bottom": 1975, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724726f.jpg"} -{"rects": [{"solidity": 0.9948417781219903, "top": 670, "right": 2735, "bottom": 2075, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725514f.jpg"} -{"rects": [{"solidity": 0.9948422704589939, "top": 435, "right": 2800, "bottom": 1950, "left": 895}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721081f.jpg"} -{"rects": [{"solidity": 0.9948427049546344, "top": 655, "right": 5230, "bottom": 2075, "left": 3420}, {"solidity": 0.9960489358335312, "top": 2100, "right": 2735, "bottom": 3510, "left": 925}, {"solidity": 0.9958505812164349, "top": 2105, "right": 5230, "bottom": 3520, "left": 3430}, {"solidity": 0.9964507320677106, "top": 655, "right": 2715, "bottom": 2070, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725502f.jpg"} -{"rects": [{"solidity": 0.994842882176962, "top": 375, "right": 3170, "bottom": 2010, "left": 735}, {"solidity": 0.9956693899728971, "top": 2245, "right": 3155, "bottom": 3855, "left": 725}, {"solidity": 0.9954156200788683, "top": 4105, "right": 3140, "bottom": 5725, "left": 715}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/727234f.jpg"} -{"rects": [{"solidity": 0.9948432005552973, "top": 815, "right": 5870, "bottom": 3220, "left": 4265}, {"solidity": 0.9995053765568273, "top": 840, "right": 4020, "bottom": 3215, "left": 2415}, {"solidity": 0.9975157993814711, "top": 840, "right": 2135, "bottom": 3215, "left": 555}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711097f.jpg"} -{"rects": [{"solidity": 0.994843221150776, "top": 390, "right": 3275, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/712700f.jpg"} -{"rects": [{"solidity": 0.9948435094920473, "top": 2195, "right": 3065, "bottom": 3845, "left": 625}, {"solidity": 0.9956929162076426, "top": 410, "right": 3070, "bottom": 2005, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714057f.jpg"} -{"rects": [{"solidity": 0.9948436818817304, "top": 650, "right": 2650, "bottom": 2045, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705135f.jpg"} -{"rects": [{"solidity": 0.9948440422708597, "top": 285, "right": 2055, "bottom": 1315, "left": 520}], "shape": {"h": 3940, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727178f.jpg"} -{"rects": [{"solidity": 0.99484462600429, "top": 585, "right": 5055, "bottom": 3565, "left": 1255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708575f.jpg"} -{"rects": [{"solidity": 0.9948448659148147, "top": 1055, "right": 3105, "bottom": 2125, "left": 1485}], "shape": {"h": 3000, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509551.jpg"} -{"rects": [{"solidity": 0.9948448800869213, "top": 520, "right": 3255, "bottom": 2465, "left": 470}, {"solidity": 0.9945115819257189, "top": 2750, "right": 3210, "bottom": 4635, "left": 460}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721815f.jpg"} -{"rects": [{"solidity": 0.9948452602729038, "top": 445, "right": 2990, "bottom": 1870, "left": 1170}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726050f.jpg"} -{"rects": [{"solidity": 0.9948452604312062, "top": 475, "right": 3205, "bottom": 2110, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710186f.jpg"} -{"rects": [{"solidity": 0.9948453608247423, "top": 415, "right": 2350, "bottom": 1625, "left": 555}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716355f.jpg"} -{"rects": [{"solidity": 0.9948458703418671, "top": 375, "right": 3915, "bottom": 1580, "left": 2425}, {"solidity": 0.9947733091264973, "top": 1635, "right": 3905, "bottom": 2835, "left": 2415}, {"solidity": 0.9973834631990947, "top": 1640, "right": 2245, "bottom": 2820, "left": 760}, {"solidity": 0.9960507612725488, "top": 370, "right": 2210, "bottom": 1565, "left": 765}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716291f.jpg"} -{"rects": [{"solidity": 0.9948460343500922, "top": 2225, "right": 2905, "bottom": 3655, "left": 1065}, {"solidity": 0.9946400692117222, "top": 4065, "right": 2855, "bottom": 5470, "left": 1030}, {"solidity": 0.9945449211077241, "top": 445, "right": 2915, "bottom": 1845, "left": 1095}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726216f.jpg"} -{"rects": [{"solidity": 0.9948461102671701, "top": 560, "right": 2960, "bottom": 1945, "left": 1140}, {"solidity": 0.9930386390690059, "top": 2320, "right": 2920, "bottom": 3705, "left": 1100}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726330f.jpg"} -{"rects": [{"solidity": 0.9948461548618233, "top": 615, "right": 2940, "bottom": 2090, "left": 995}, {"solidity": 0.9904877592119864, "top": 640, "right": 5375, "bottom": 2075, "left": 3405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718932f.jpg"} -{"rects": [{"solidity": 0.994846283759261, "top": 2135, "right": 2755, "bottom": 3575, "left": 935}, {"solidity": 0.9960919696279128, "top": 2095, "right": 5255, "bottom": 3530, "left": 3430}, {"solidity": 0.9934339194114307, "top": 650, "right": 2765, "bottom": 2070, "left": 925}, {"solidity": 0.9957306791449058, "top": 665, "right": 5245, "bottom": 2020, "left": 3425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706970f.jpg"} -{"rects": [{"solidity": 0.9948463296172831, "top": 660, "right": 2735, "bottom": 2075, "left": 925}, {"solidity": 0.9953036347962069, "top": 2120, "right": 2740, "bottom": 3520, "left": 940}, {"solidity": 0.9959480990170577, "top": 655, "right": 5225, "bottom": 2040, "left": 3425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725461f.jpg"} -{"rects": [{"solidity": 0.9948468475397543, "top": 2335, "right": 3050, "bottom": 3785, "left": 1225}, {"solidity": 0.9973281515666748, "top": 520, "right": 3055, "bottom": 1950, "left": 1240}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726312f.jpg"} -{"rects": [{"solidity": 0.9948470512599885, "top": 465, "right": 3185, "bottom": 2085, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701449f.jpg"} -{"rects": [{"solidity": 0.994847054909296, "top": 2480, "right": 2505, "bottom": 3970, "left": 405}, {"solidity": 0.9957152622926806, "top": 670, "right": 2505, "bottom": 2165, "left": 415}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716005f.jpg"} -{"rects": [{"solidity": 0.9948471436233403, "top": 2105, "right": 2645, "bottom": 3520, "left": 845}, {"solidity": 0.9942282488154047, "top": 660, "right": 2665, "bottom": 2060, "left": 860}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728097f.jpg"} -{"rects": [{"solidity": 0.99484730304621, "top": 2215, "right": 3120, "bottom": 3865, "left": 685}, {"solidity": 0.9953071919861278, "top": 340, "right": 3135, "bottom": 1990, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728675f.jpg"} -{"rects": [{"solidity": 0.9948473476011765, "top": 2130, "right": 5255, "bottom": 3500, "left": 3435}, {"solidity": 0.9958048260038637, "top": 2115, "right": 2670, "bottom": 3485, "left": 885}, {"solidity": 0.9957383181465331, "top": 715, "right": 5250, "bottom": 2070, "left": 3460}, {"solidity": 0.994862502664677, "top": 725, "right": 2655, "bottom": 2070, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726294f.jpg"} -{"rects": [{"solidity": 0.9948476637578372, "top": 1035, "right": 3505, "bottom": 5000, "left": 320}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726332f.jpg"} -{"rects": [{"solidity": 0.9948479169484212, "top": 485, "right": 3160, "bottom": 2095, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701460f.jpg"} -{"rects": [{"solidity": 0.9948479664048526, "top": 3420, "right": 2870, "bottom": 4835, "left": 1025}, {"solidity": 0.9940448336838786, "top": 1105, "right": 2915, "bottom": 2515, "left": 1065}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731070f.jpg"} -{"rects": [{"solidity": 0.9948481256580559, "top": 790, "right": 5710, "bottom": 3190, "left": 4125}, {"solidity": 0.998452256121461, "top": 780, "right": 2030, "bottom": 3150, "left": 445}, {"solidity": 0.9955948624745793, "top": 785, "right": 3895, "bottom": 3155, "left": 2320}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708940f.jpg"} -{"rects": [{"solidity": 0.9948482442829915, "top": 555, "right": 3125, "bottom": 2150, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719443f.jpg"} -{"rects": [{"solidity": 0.9948483302335533, "top": 415, "right": 3185, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725963f.jpg"} -{"rects": [{"solidity": 0.9948484077947553, "top": 750, "right": 2220, "bottom": 3160, "left": 610}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708785f.jpg"} -{"rects": [{"solidity": 0.9948486394445144, "top": 785, "right": 2005, "bottom": 3180, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714410f.jpg"} -{"rects": [{"solidity": 0.9948486552203016, "top": 2045, "right": 2710, "bottom": 3470, "left": 865}, {"solidity": 0.9946820448269469, "top": 620, "right": 2700, "bottom": 2040, "left": 870}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703567f.jpg"} -{"rects": [{"solidity": 0.9948486852645286, "top": 595, "right": 2455, "bottom": 2070, "left": 365}, {"solidity": 0.9956096052767185, "top": 2460, "right": 2440, "bottom": 3940, "left": 360}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716051f.jpg"} -{"rects": [{"solidity": 0.9948513911200378, "top": 830, "right": 5585, "bottom": 3590, "left": 3190}, {"solidity": 0.969237085713186, "top": 990, "right": 2830, "bottom": 3620, "left": 460}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717165f.jpg"} -{"rects": [{"solidity": 0.9948520570818867, "top": 2320, "right": 3215, "bottom": 3935, "left": 790}, {"solidity": 0.9954322026464635, "top": 465, "right": 3210, "bottom": 2075, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700701f.jpg"} -{"rects": [{"solidity": 0.9948522136710292, "top": 730, "right": 5855, "bottom": 3780, "left": 1835}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700391f.jpg"} -{"rects": [{"solidity": 0.9948525626884329, "top": 740, "right": 4020, "bottom": 2160, "left": 2205}, {"solidity": 0.9960993343322444, "top": 2200, "right": 4015, "bottom": 3620, "left": 2205}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727271f.jpg"} -{"rects": [{"solidity": 0.9948529470899046, "top": 445, "right": 1320, "bottom": 1985, "left": 290}], "shape": {"h": 2560, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727145f.jpg"} -{"rects": [{"solidity": 0.9948537484316186, "top": 520, "right": 3140, "bottom": 2155, "left": 725}, {"solidity": 0.9958401199531599, "top": 2395, "right": 3130, "bottom": 4010, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707870f.jpg"} -{"rects": [{"solidity": 0.9948539647349969, "top": 385, "right": 3190, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731449f.jpg"} -{"rects": [{"solidity": 0.9948544788940311, "top": 885, "right": 3410, "bottom": 2380, "left": 1325}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508393.jpg"} -{"rects": [{"solidity": 0.9948545308854138, "top": 625, "right": 2765, "bottom": 2030, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706744f.jpg"} -{"rects": [{"solidity": 0.9948545515236877, "top": 2415, "right": 2510, "bottom": 3910, "left": 410}, {"solidity": 0.9975385042433248, "top": 650, "right": 2520, "bottom": 2135, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716166f.jpg"} -{"rects": [{"solidity": 0.9948550477041553, "top": 800, "right": 4960, "bottom": 3290, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706691f.jpg"} -{"rects": [{"solidity": 0.9948552193703859, "top": 2250, "right": 3260, "bottom": 3890, "left": 815}, {"solidity": 0.9996909526384918, "top": 395, "right": 3270, "bottom": 2005, "left": 845}, {"solidity": 0.9950113961028538, "top": 4130, "right": 3230, "bottom": 5765, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719761f.jpg"} -{"rects": [{"solidity": 0.994855472033886, "top": 590, "right": 4860, "bottom": 3565, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709819f.jpg"} -{"rects": [{"solidity": 0.9948566187055177, "top": 510, "right": 4695, "bottom": 3425, "left": 1440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717342f.jpg"} -{"rects": [{"solidity": 0.994856923587929, "top": 470, "right": 5755, "bottom": 4105, "left": 1185}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/708344f.jpg"} -{"rects": [{"solidity": 0.9948571607011172, "top": 680, "right": 2775, "bottom": 3550, "left": 915}, {"solidity": 0.9955164115315099, "top": 615, "right": 5210, "bottom": 2005, "left": 3375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702647f.jpg"} -{"rects": [{"solidity": 0.9948574268172278, "top": 420, "right": 3125, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729245f.jpg"} -{"rects": [{"solidity": 0.9948578446101137, "top": 500, "right": 5040, "bottom": 3645, "left": 1080}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731383f.jpg"} -{"rects": [{"solidity": 0.9948578826029326, "top": 590, "right": 2645, "bottom": 1970, "left": 850}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703812f.jpg"} -{"rects": [{"solidity": 0.9948581526350373, "top": 865, "right": 5640, "bottom": 3315, "left": 4005}, {"solidity": 0.995558148605394, "top": 830, "right": 3810, "bottom": 3250, "left": 2195}, {"solidity": 0.9938334616016256, "top": 820, "right": 1975, "bottom": 3245, "left": 360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721570f.jpg"} -{"rects": [{"solidity": 0.9948587451577873, "top": 2335, "right": 3215, "bottom": 3950, "left": 800}, {"solidity": 0.9970109077366854, "top": 500, "right": 3210, "bottom": 2115, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710556f.jpg"} -{"rects": [{"solidity": 0.9948588462886246, "top": 655, "right": 3315, "bottom": 2600, "left": 595}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713912f.jpg"} -{"rects": [{"solidity": 0.9948592881935661, "top": 430, "right": 3180, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724913f.jpg"} -{"rects": [{"solidity": 0.9948595105528939, "top": 2255, "right": 3140, "bottom": 3890, "left": 725}, {"solidity": 0.9954128440366973, "top": 435, "right": 3145, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722581f.jpg"} -{"rects": [{"solidity": 0.9948598688133572, "top": 1460, "right": 1760, "bottom": 2375, "left": 600}, {"solidity": 0.9972730957732985, "top": 425, "right": 3155, "bottom": 1325, "left": 2010}, {"solidity": 0.9958852791254683, "top": 445, "right": 1745, "bottom": 1345, "left": 600}, {"solidity": 0.9934625928820413, "top": 1460, "right": 3155, "bottom": 2355, "left": 2010}], "shape": {"h": 2560, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727140f.jpg"} -{"rects": [{"solidity": 0.9948601831799166, "top": 845, "right": 2480, "bottom": 3240, "left": 870}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732886f.jpg"} -{"rects": [{"solidity": 0.9948613062412988, "top": 2295, "right": 3100, "bottom": 3930, "left": 660}, {"solidity": 0.9978401015646898, "top": 415, "right": 3100, "bottom": 2005, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731582f.jpg"} -{"rects": [{"solidity": 0.9948613411474923, "top": 405, "right": 3060, "bottom": 2020, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728614f.jpg"} -{"rects": [{"solidity": 0.9948613715414454, "top": 575, "right": 3370, "bottom": 2500, "left": 590}, {"solidity": 0.9959343538552825, "top": 3095, "right": 3335, "bottom": 5045, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715388f.jpg"} -{"rects": [{"solidity": 0.9948614780522094, "top": 280, "right": 2110, "bottom": 1305, "left": 580}], "shape": {"h": 3930, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727060f.jpg"} -{"rects": [{"solidity": 0.9948615799633456, "top": 575, "right": 5130, "bottom": 3490, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722562f.jpg"} -{"rects": [{"solidity": 0.9948622791528248, "top": 485, "right": 3125, "bottom": 2085, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713119f.jpg"} -{"rects": [{"solidity": 0.9948623124054677, "top": 2500, "right": 2515, "bottom": 3995, "left": 420}, {"solidity": 0.9906763590391909, "top": 705, "right": 2510, "bottom": 2210, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716266f.jpg"} -{"rects": [{"solidity": 0.9948628222247071, "top": 785, "right": 2020, "bottom": 3200, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718883f.jpg"} -{"rects": [{"solidity": 0.9948631300919587, "top": 385, "right": 3190, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705361f.jpg"} -{"rects": [{"solidity": 0.9948635032682316, "top": 655, "right": 2745, "bottom": 2070, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726580f.jpg"} -{"rects": [{"solidity": 0.9948638253832609, "top": 1175, "right": 3405, "bottom": 5005, "left": 370}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712666f.jpg"} -{"rects": [{"solidity": 0.9948642980331456, "top": 635, "right": 2905, "bottom": 2070, "left": 1055}, {"solidity": 0.9961733258300507, "top": 2255, "right": 5075, "bottom": 3690, "left": 3270}, {"solidity": 0.9957360883756947, "top": 635, "right": 5040, "bottom": 2065, "left": 3235}, {"solidity": 0.9912199562466047, "top": 2255, "right": 2915, "bottom": 3695, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725254f.jpg"} -{"rects": [{"solidity": 0.9948644017140879, "top": 1175, "right": 3400, "bottom": 4985, "left": 315}], "shape": {"h": 6240, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/701017f.jpg"} -{"rects": [{"solidity": 0.9948645233337252, "top": 415, "right": 2490, "bottom": 1925, "left": 205}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716409f.jpg"} -{"rects": [{"solidity": 0.9948647350411267, "top": 2260, "right": 4980, "bottom": 3695, "left": 3165}, {"solidity": 0.9953809587873895, "top": 670, "right": 4980, "bottom": 2095, "left": 3175}, {"solidity": 0.9959412427575616, "top": 2260, "right": 2805, "bottom": 3675, "left": 1005}, {"solidity": 0.9959458647820777, "top": 670, "right": 2805, "bottom": 2080, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726644f.jpg"} -{"rects": [{"solidity": 0.9948647810629776, "top": 375, "right": 2920, "bottom": 1920, "left": 965}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700696f.jpg"} -{"rects": [{"solidity": 0.994864931037297, "top": 425, "right": 3165, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/732528f.jpg"} -{"rects": [{"solidity": 0.9948657979364647, "top": 855, "right": 3865, "bottom": 3245, "left": 2260}, {"solidity": 0.9966243886263781, "top": 855, "right": 2200, "bottom": 3245, "left": 610}, {"solidity": 0.9964891671450121, "top": 865, "right": 5505, "bottom": 3250, "left": 3920}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708786f.jpg"} -{"rects": [{"solidity": 0.9948659063485267, "top": 805, "right": 3150, "bottom": 2330, "left": 1000}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508979.jpg"} -{"rects": [{"solidity": 0.9948660671485821, "top": 2225, "right": 2845, "bottom": 3675, "left": 1000}, {"solidity": 0.9925568794243599, "top": 590, "right": 4980, "bottom": 2020, "left": 3130}, {"solidity": 0.994952341401677, "top": 2220, "right": 4950, "bottom": 3650, "left": 3140}, {"solidity": 0.9947826262463165, "top": 605, "right": 2810, "bottom": 1985, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726646f.jpg"} -{"rects": [{"solidity": 0.9948661944876553, "top": 820, "right": 1955, "bottom": 3170, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712638f.jpg"} -{"rects": [{"solidity": 0.994866646893751, "top": 485, "right": 3265, "bottom": 2110, "left": 855}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727382f.jpg"} -{"rects": [{"solidity": 0.9948673185575027, "top": 1020, "right": 3405, "bottom": 4715, "left": 470}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723772f.jpg"} -{"rects": [{"solidity": 0.9948674985516598, "top": 1260, "right": 2625, "bottom": 4250, "left": 185}], "shape": {"h": 4645, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509495.jpg"} -{"rects": [{"solidity": 0.9948678950297603, "top": 485, "right": 2980, "bottom": 2005, "left": 1010}, {"solidity": 0.9712270696540987, "top": 2365, "right": 3000, "bottom": 3895, "left": 1010}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721775f.jpg"} -{"rects": [{"solidity": 0.9948686112091047, "top": 225, "right": 5020, "bottom": 3630, "left": 990}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717903f.jpg"} -{"rects": [{"solidity": 0.9948691004384941, "top": 425, "right": 3160, "bottom": 2060, "left": 740}, {"solidity": 0.9949534830065933, "top": 2340, "right": 3145, "bottom": 3965, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718251f.jpg"} -{"rects": [{"solidity": 0.9948694542552226, "top": 835, "right": 3345, "bottom": 2780, "left": 625}, {"solidity": 0.9970726065848281, "top": 3450, "right": 3355, "bottom": 5370, "left": 620}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/711881f.jpg"} -{"rects": [{"solidity": 0.994869543340026, "top": 745, "right": 2605, "bottom": 2155, "left": 790}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730485f.jpg"} -{"rects": [{"solidity": 0.9948696875103691, "top": 2590, "right": 3495, "bottom": 4415, "left": 770}, {"solidity": 0.9969623754068941, "top": 450, "right": 3480, "bottom": 2255, "left": 785}], "shape": {"h": 6925, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711201f.jpg"} -{"rects": [{"solidity": 0.9948698090019971, "top": 3335, "right": 3170, "bottom": 4980, "left": 725}, {"solidity": 0.9956711495036359, "top": 845, "right": 3180, "bottom": 2455, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730877f.jpg"} -{"rects": [{"solidity": 0.9948704454493477, "top": 635, "right": 3185, "bottom": 2270, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710343f.jpg"} -{"rects": [{"solidity": 0.9948705922764925, "top": 2325, "right": 3215, "bottom": 3930, "left": 820}, {"solidity": 0.99507908495436, "top": 475, "right": 3205, "bottom": 2075, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710178f.jpg"} -{"rects": [{"solidity": 0.9948708661315464, "top": 440, "right": 3185, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720552f.jpg"} -{"rects": [{"solidity": 0.9948708931480308, "top": 2160, "right": 3160, "bottom": 3750, "left": 755}, {"solidity": 0.9932052705198341, "top": 440, "right": 3035, "bottom": 1875, "left": 1245}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728232f.jpg"} -{"rects": [{"solidity": 0.9948720522665864, "top": 450, "right": 2900, "bottom": 1995, "left": 940}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700337f.jpg"} -{"rects": [{"solidity": 0.9948725545478004, "top": 430, "right": 5055, "bottom": 3705, "left": 1005}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714691f.jpg"} -{"rects": [{"solidity": 0.994872604691035, "top": 750, "right": 3895, "bottom": 3170, "left": 2270}, {"solidity": 0.9951088573493014, "top": 750, "right": 2025, "bottom": 3160, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722682f.jpg"} -{"rects": [{"solidity": 0.9948727829684954, "top": 420, "right": 3190, "bottom": 2045, "left": 785}, {"solidity": 0.9952327352181686, "top": 2280, "right": 3180, "bottom": 3890, "left": 780}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732313f.jpg"} -{"rects": [{"solidity": 0.9948728475207861, "top": 570, "right": 4845, "bottom": 3570, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709820f.jpg"} -{"rects": [{"solidity": 0.9948730653960243, "top": 400, "right": 5255, "bottom": 3645, "left": 1220}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731311f.jpg"} -{"rects": [{"solidity": 0.9948733718452786, "top": 630, "right": 3040, "bottom": 2060, "left": 1010}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721072f.jpg"} -{"rects": [{"solidity": 0.9948735054471028, "top": 2310, "right": 3060, "bottom": 3945, "left": 645}, {"solidity": 0.9953373364006186, "top": 435, "right": 3050, "bottom": 2070, "left": 635}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700437f.jpg"} -{"rects": [{"solidity": 0.9948736276867958, "top": 705, "right": 5100, "bottom": 3565, "left": 3035}, {"solidity": 0.9951715793084904, "top": 680, "right": 2585, "bottom": 3515, "left": 650}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703723f.jpg"} -{"rects": [{"solidity": 0.9948740933069569, "top": 835, "right": 2345, "bottom": 3540, "left": 520}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711349f.jpg"} -{"rects": [{"solidity": 0.9948742136851275, "top": 605, "right": 2760, "bottom": 2035, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705935f.jpg"} -{"rects": [{"solidity": 0.994874279508813, "top": 560, "right": 3150, "bottom": 2145, "left": 765}], "shape": {"h": 6140, "w": 3910}, "file": "/usr/local/google/home/danvk/milstein/722357f.jpg"} -{"rects": [{"solidity": 0.9948743004352847, "top": 690, "right": 3350, "bottom": 2675, "left": 490}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707795f.jpg"} -{"rects": [{"solidity": 0.9948745894516694, "top": 715, "right": 2655, "bottom": 2130, "left": 830}, {"solidity": 0.9954789098052378, "top": 2160, "right": 5340, "bottom": 3570, "left": 3525}, {"solidity": 0.9912622290912213, "top": 725, "right": 5345, "bottom": 2115, "left": 3540}, {"solidity": 0.9944965721058705, "top": 2170, "right": 2635, "bottom": 3520, "left": 840}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726027f.jpg"} -{"rects": [{"solidity": 0.9948748724334247, "top": 2260, "right": 3085, "bottom": 3880, "left": 650}, {"solidity": 0.9935842823045856, "top": 420, "right": 3085, "bottom": 2035, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729457f.jpg"} -{"rects": [{"solidity": 0.9948759866775654, "top": 510, "right": 2225, "bottom": 2600, "left": 735}, {"solidity": 0.9941473850321101, "top": 505, "right": 3915, "bottom": 2590, "left": 2425}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716211f.jpg"} -{"rects": [{"solidity": 0.9948760883573982, "top": 665, "right": 3480, "bottom": 3050, "left": 285}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721976f.jpg"} -{"rects": [{"solidity": 0.9948771608571491, "top": 370, "right": 3335, "bottom": 2290, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724707f.jpg"} -{"rects": [{"solidity": 0.9948777670930362, "top": 455, "right": 3330, "bottom": 2390, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724635f.jpg"} -{"rects": [{"solidity": 0.9948779188923137, "top": 405, "right": 3170, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700547f.jpg"} -{"rects": [{"solidity": 0.9948780283343114, "top": 1020, "right": 3290, "bottom": 2590, "left": 1360}, {"solidity": 0.9500060968174613, "top": 3525, "right": 2085, "bottom": 5485, "left": 515}, {"solidity": 0.932987502507429, "top": 3520, "right": 4185, "bottom": 5420, "left": 2715}], "shape": {"h": 6005, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465699.jpg"} -{"rects": [{"solidity": 0.9948782020937289, "top": 565, "right": 5040, "bottom": 3580, "left": 1270}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709903f.jpg"} -{"rects": [{"solidity": 0.9948784022157175, "top": 370, "right": 3205, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734241f.jpg"} -{"rects": [{"solidity": 0.9948784217820887, "top": 395, "right": 4715, "bottom": 3680, "left": 1195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733085f.jpg"} -{"rects": [{"solidity": 0.9948786295092769, "top": 685, "right": 2795, "bottom": 2090, "left": 995}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706513f.jpg"} -{"rects": [{"solidity": 0.994878734121486, "top": 2255, "right": 3255, "bottom": 3865, "left": 825}, {"solidity": 0.9951290635787094, "top": 420, "right": 3260, "bottom": 2030, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705508f.jpg"} -{"rects": [{"solidity": 0.9948788539070756, "top": 430, "right": 3155, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723742f.jpg"} -{"rects": [{"solidity": 0.9948790124732071, "top": 425, "right": 3610, "bottom": 2255, "left": 900}], "shape": {"h": 6855, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711647f.jpg"} -{"rects": [{"solidity": 0.9948801946233998, "top": 2240, "right": 3160, "bottom": 3880, "left": 725}, {"solidity": 0.9948063217813927, "top": 4150, "right": 3120, "bottom": 5765, "left": 695}, {"solidity": 0.9968048279674625, "top": 385, "right": 3150, "bottom": 1990, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734469f.jpg"} -{"rects": [{"solidity": 0.9948804795121666, "top": 530, "right": 3125, "bottom": 2150, "left": 705}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722058f.jpg"} -{"rects": [{"solidity": 0.9948808246076536, "top": 2155, "right": 5245, "bottom": 3570, "left": 3440}, {"solidity": 0.9948373773877129, "top": 690, "right": 5240, "bottom": 2100, "left": 3430}, {"solidity": 0.9947422665013667, "top": 685, "right": 2755, "bottom": 2085, "left": 940}, {"solidity": 0.9959737602002349, "top": 2145, "right": 2755, "bottom": 3500, "left": 940}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733453f.jpg"} -{"rects": [{"solidity": 0.9948810972526272, "top": 760, "right": 2050, "bottom": 3175, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718627f.jpg"} -{"rects": [{"solidity": 0.9948820137020533, "top": 390, "right": 3140, "bottom": 2015, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734545f.jpg"} -{"rects": [{"solidity": 0.9948828394210889, "top": 640, "right": 1540, "bottom": 2460, "left": 310}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716449f.jpg"} -{"rects": [{"solidity": 0.9948832634334359, "top": 2245, "right": 3240, "bottom": 3885, "left": 805}, {"solidity": 0.9945372504160428, "top": 420, "right": 3220, "bottom": 2035, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704875f.jpg"} -{"rects": [{"solidity": 0.9948838371221583, "top": 660, "right": 2575, "bottom": 2065, "left": 775}, {"solidity": 0.9955311399904637, "top": 2090, "right": 2560, "bottom": 3490, "left": 785}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730498f.jpg"} -{"rects": [{"solidity": 0.9948840592216374, "top": 420, "right": 1865, "bottom": 1315, "left": 715}, {"solidity": 0.9923997041495575, "top": 430, "right": 3290, "bottom": 1315, "left": 2160}], "shape": {"h": 2555, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727075f.jpg"} -{"rects": [{"solidity": 0.9948844478168452, "top": 690, "right": 2665, "bottom": 2065, "left": 830}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706157f.jpg"} -{"rects": [{"solidity": 0.9948849354993301, "top": 2285, "right": 3135, "bottom": 3900, "left": 730}, {"solidity": 0.9955666316894018, "top": 4110, "right": 3135, "bottom": 5715, "left": 730}, {"solidity": 0.9970756630550994, "top": 485, "right": 3130, "bottom": 2070, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711940f.jpg"} -{"rects": [{"solidity": 0.9948850869239563, "top": 405, "right": 3200, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733865f.jpg"} -{"rects": [{"solidity": 0.9948852331175422, "top": 690, "right": 4250, "bottom": 2510, "left": 3030}, {"solidity": 0.997656990366335, "top": 700, "right": 2860, "bottom": 2500, "left": 1655}, {"solidity": 0.9942515615030235, "top": 695, "right": 1495, "bottom": 2485, "left": 280}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716533f.jpg"} -{"rects": [{"solidity": 0.9948854474603601, "top": 425, "right": 5190, "bottom": 3740, "left": 1070}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730012f.jpg"} -{"rects": [{"solidity": 0.9948854600936949, "top": 640, "right": 2745, "bottom": 2080, "left": 905}, {"solidity": 0.9978589457763286, "top": 2130, "right": 2750, "bottom": 3530, "left": 915}, {"solidity": 0.9947523513502604, "top": 640, "right": 5230, "bottom": 2020, "left": 3415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705720f.jpg"} -{"rects": [{"solidity": 0.9948857824752813, "top": 740, "right": 2010, "bottom": 3125, "left": 410}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732356f.jpg"} -{"rects": [{"solidity": 0.9948860006777732, "top": 625, "right": 4815, "bottom": 3555, "left": 1185}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718950f.jpg"} -{"rects": [{"solidity": 0.9948861371539311, "top": 360, "right": 3205, "bottom": 1975, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721929f.jpg"} -{"rects": [{"solidity": 0.9948865378274727, "top": 1040, "right": 4230, "bottom": 2260, "left": 2420}, {"solidity": 0.9962063644906435, "top": 1045, "right": 2185, "bottom": 2255, "left": 385}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716317f.jpg"} -{"rects": [{"solidity": 0.994886952808154, "top": 290, "right": 5690, "bottom": 4090, "left": 1140}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711294f.jpg"} -{"rects": [{"solidity": 0.994887130264246, "top": 475, "right": 3520, "bottom": 2300, "left": 795}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/703401f.jpg"} -{"rects": [{"solidity": 0.9948874589087658, "top": 730, "right": 1385, "bottom": 2085, "left": 380}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716469f.jpg"} -{"rects": [{"solidity": 0.9948877847226539, "top": 645, "right": 2510, "bottom": 2100, "left": 665}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704597f.jpg"} -{"rects": [{"solidity": 0.9948882954903554, "top": 565, "right": 3155, "bottom": 2145, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718538f.jpg"} -{"rects": [{"solidity": 0.994888852921971, "top": 590, "right": 4890, "bottom": 3610, "left": 1145}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709909f.jpg"} -{"rects": [{"solidity": 0.9948892260411196, "top": 600, "right": 2620, "bottom": 2055, "left": 775}, {"solidity": 0.9930519325379218, "top": 2075, "right": 2580, "bottom": 3525, "left": 740}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731988f.jpg"} -{"rects": [{"solidity": 0.9948900138835367, "top": 2180, "right": 2730, "bottom": 3555, "left": 990}, {"solidity": 0.994866469943155, "top": 3965, "right": 2745, "bottom": 5340, "left": 995}, {"solidity": 0.9936367459635392, "top": 570, "right": 2710, "bottom": 1825, "left": 1060}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724029f.jpg"} -{"rects": [{"solidity": 0.9948903225806451, "top": 915, "right": 3355, "bottom": 2395, "left": 1300}], "shape": {"h": 2990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1507314.jpg"} -{"rects": [{"solidity": 0.9948903393336309, "top": 345, "right": 5240, "bottom": 3615, "left": 1165}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732220f.jpg"} -{"rects": [{"solidity": 0.9948906733028815, "top": 410, "right": 3100, "bottom": 2040, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729284f.jpg"} -{"rects": [{"solidity": 0.994890955752899, "top": 1135, "right": 3275, "bottom": 5095, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708991f.jpg"} -{"rects": [{"solidity": 0.9948912818284259, "top": 2045, "right": 2735, "bottom": 3450, "left": 925}, {"solidity": 0.9889763382271328, "top": 620, "right": 2735, "bottom": 2040, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725430f.jpg"} -{"rects": [{"solidity": 0.9948915435397674, "top": 2195, "right": 2990, "bottom": 3640, "left": 1155}, {"solidity": 0.9987732316158576, "top": 485, "right": 2970, "bottom": 1890, "left": 1165}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726647f.jpg"} -{"rects": [{"solidity": 0.994891601479674, "top": 815, "right": 2050, "bottom": 3230, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712687f.jpg"} -{"rects": [{"solidity": 0.9948919247292075, "top": 805, "right": 2060, "bottom": 3235, "left": 445}, {"solidity": 0.9974544310734518, "top": 805, "right": 3925, "bottom": 3225, "left": 2320}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720429f.jpg"} -{"rects": [{"solidity": 0.9948921532457949, "top": 640, "right": 2710, "bottom": 2010, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707369f.jpg"} -{"rects": [{"solidity": 0.9948923750456038, "top": 675, "right": 2805, "bottom": 2135, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705752f.jpg"} -{"rects": [{"solidity": 0.9948929821541287, "top": 4090, "right": 3145, "bottom": 5740, "left": 700}, {"solidity": 0.9960832383670264, "top": 2240, "right": 3155, "bottom": 3870, "left": 725}, {"solidity": 0.9969265546969628, "top": 390, "right": 3140, "bottom": 2000, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728659f.jpg"} -{"rects": [{"solidity": 0.9948932762497305, "top": 440, "right": 2925, "bottom": 1555, "left": 1090}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704684f.jpg"} -{"rects": [{"solidity": 0.9948933341391188, "top": 465, "right": 3005, "bottom": 1970, "left": 1050}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707446f.jpg"} -{"rects": [{"solidity": 0.9948933786055177, "top": 950, "right": 2110, "bottom": 3325, "left": 520}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708619f.jpg"} -{"rects": [{"solidity": 0.9948957619653519, "top": 2315, "right": 3120, "bottom": 3740, "left": 1300}, {"solidity": 0.9948447275175569, "top": 510, "right": 3135, "bottom": 1925, "left": 1320}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726347f.jpg"} -{"rects": [{"solidity": 0.9948958970011238, "top": 665, "right": 4860, "bottom": 3500, "left": 1255}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723894f.jpg"} -{"rects": [{"solidity": 0.9948961265421012, "top": 440, "right": 3175, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734212f.jpg"} -{"rects": [{"solidity": 0.9948963439086521, "top": 355, "right": 3220, "bottom": 5920, "left": 430}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705881f.jpg"} -{"rects": [{"solidity": 0.9948963761738018, "top": 2095, "right": 5190, "bottom": 3430, "left": 3680}, {"solidity": 0.9921352835061581, "top": 2070, "right": 2465, "bottom": 3455, "left": 1050}, {"solidity": 0.9944410579879148, "top": 660, "right": 5140, "bottom": 1995, "left": 3705}, {"solidity": 0.9954346686485159, "top": 665, "right": 2480, "bottom": 1985, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703843f.jpg"} -{"rects": [{"solidity": 0.9948967664599178, "top": 620, "right": 3305, "bottom": 2525, "left": 625}, {"solidity": 0.9952132701421801, "top": 3135, "right": 3290, "bottom": 5030, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712533f.jpg"} -{"rects": [{"solidity": 0.994896930441428, "top": 660, "right": 2650, "bottom": 3455, "left": 835}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706131f.jpg"} -{"rects": [{"solidity": 0.9948969336212319, "top": 815, "right": 3845, "bottom": 3230, "left": 2220}, {"solidity": 0.99563665470353, "top": 830, "right": 2050, "bottom": 3240, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731017f.jpg"} -{"rects": [{"solidity": 0.9948978968149674, "top": 470, "right": 3120, "bottom": 3800, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714421f.jpg"} -{"rects": [{"solidity": 0.994897975669257, "top": 4070, "right": 3025, "bottom": 5690, "left": 590}, {"solidity": 0.9951178128321562, "top": 2220, "right": 3050, "bottom": 3835, "left": 620}, {"solidity": 0.9951071600854524, "top": 380, "right": 3035, "bottom": 1985, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730921f.jpg"} -{"rects": [{"solidity": 0.9948980438628812, "top": 820, "right": 2065, "bottom": 3210, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713201f.jpg"} -{"rects": [{"solidity": 0.9948985931142432, "top": 435, "right": 3275, "bottom": 3865, "left": 675}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714860f.jpg"} -{"rects": [{"solidity": 0.9948994619644189, "top": 645, "right": 2745, "bottom": 2070, "left": 905}, {"solidity": 0.9949513606698682, "top": 615, "right": 5305, "bottom": 2025, "left": 3485}, {"solidity": 0.996908162451129, "top": 2030, "right": 5290, "bottom": 3435, "left": 3490}, {"solidity": 0.994438680845121, "top": 2050, "right": 2705, "bottom": 3470, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705608f.jpg"} -{"rects": [{"solidity": 0.9948997565974891, "top": 590, "right": 2450, "bottom": 2120, "left": 1415}, {"solidity": 0.9952954917833331, "top": 595, "right": 1260, "bottom": 2125, "left": 240}, {"solidity": 0.9969675043292331, "top": 580, "right": 3680, "bottom": 2110, "left": 2665}], "shape": {"h": 2530, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/723339f.jpg"} -{"rects": [{"solidity": 0.9948997849656493, "top": 380, "right": 3210, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725957f.jpg"} -{"rects": [{"solidity": 0.9949002409917664, "top": 2140, "right": 3180, "bottom": 3760, "left": 755}, {"solidity": 0.9971909926263557, "top": 305, "right": 3180, "bottom": 1895, "left": 785}, {"solidity": 0.9947158875647221, "top": 3995, "right": 3135, "bottom": 5610, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709293f.jpg"} -{"rects": [{"solidity": 0.9949003058666606, "top": 655, "right": 3020, "bottom": 2465, "left": 1790}, {"solidity": 0.9955635091434293, "top": 660, "right": 1580, "bottom": 2470, "left": 355}, {"solidity": 0.9934757646403841, "top": 655, "right": 4455, "bottom": 2460, "left": 3225}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/707735f.jpg"} -{"rects": [{"solidity": 0.9949006340016346, "top": 810, "right": 2020, "bottom": 3225, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728569f.jpg"} -{"rects": [{"solidity": 0.9949016540656412, "top": 4120, "right": 3155, "bottom": 5750, "left": 735}, {"solidity": 0.9951368639504032, "top": 425, "right": 3150, "bottom": 2040, "left": 750}, {"solidity": 0.9933553813353031, "top": 2285, "right": 3125, "bottom": 3875, "left": 745}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/732423f.jpg"} -{"rects": [{"solidity": 0.9949018504156076, "top": 415, "right": 5025, "bottom": 3335, "left": 1000}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732736f.jpg"} -{"rects": [{"solidity": 0.9949018786228089, "top": 330, "right": 3140, "bottom": 1940, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713239f.jpg"} -{"rects": [{"solidity": 0.9949023425184438, "top": 460, "right": 3735, "bottom": 2715, "left": 885}], "shape": {"h": 2965, "w": 4575}, "file": "/usr/local/google/home/danvk/milstein/733778f.jpg"} -{"rects": [{"solidity": 0.9949025255155932, "top": 1145, "right": 5465, "bottom": 2805, "left": 655}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734759f.jpg"} -{"rects": [{"solidity": 0.9949026228558975, "top": 790, "right": 2035, "bottom": 3205, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714440f.jpg"} -{"rects": [{"solidity": 0.9949026257986554, "top": 400, "right": 3185, "bottom": 1980, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719963f.jpg"} -{"rects": [{"solidity": 0.9949027181124293, "top": 745, "right": 2005, "bottom": 3155, "left": 395}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730365f.jpg"} -{"rects": [{"solidity": 0.9949029118333609, "top": 2200, "right": 3210, "bottom": 3835, "left": 795}, {"solidity": 0.9955133753146109, "top": 420, "right": 3215, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712075f.jpg"} -{"rects": [{"solidity": 0.9949033328876875, "top": 745, "right": 2035, "bottom": 3160, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732331f.jpg"} -{"rects": [{"solidity": 0.9949033409571137, "top": 630, "right": 3120, "bottom": 2230, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710176f.jpg"} -{"rects": [{"solidity": 0.9949033999028742, "top": 2250, "right": 5050, "bottom": 3660, "left": 3245}, {"solidity": 0.9955052438821375, "top": 2280, "right": 2875, "bottom": 3665, "left": 1065}, {"solidity": 0.9922970212121976, "top": 635, "right": 5025, "bottom": 2035, "left": 3210}, {"solidity": 0.995841225188262, "top": 665, "right": 2855, "bottom": 2045, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725919f.jpg"} -{"rects": [{"solidity": 0.9949036141668255, "top": 370, "right": 3290, "bottom": 2195, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711587f.jpg"} -{"rects": [{"solidity": 0.9949039819615403, "top": 595, "right": 4980, "bottom": 3570, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701946f.jpg"} -{"rects": [{"solidity": 0.9949041455551927, "top": 4010, "right": 3195, "bottom": 5635, "left": 770}, {"solidity": 0.9997837667826464, "top": 2200, "right": 3195, "bottom": 3795, "left": 790}, {"solidity": 0.9948880385348116, "top": 400, "right": 3190, "bottom": 2005, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730709f.jpg"} -{"rects": [{"solidity": 0.9949043236865067, "top": 385, "right": 5135, "bottom": 3680, "left": 1040}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712962f.jpg"} -{"rects": [{"solidity": 0.994904441606168, "top": 760, "right": 2000, "bottom": 3160, "left": 425}, {"solidity": 0.9774993962270901, "top": 910, "right": 3770, "bottom": 3070, "left": 2370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712179f.jpg"} -{"rects": [{"solidity": 0.9949051158672945, "top": 1445, "right": 3280, "bottom": 4745, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708918f.jpg"} -{"rects": [{"solidity": 0.9949059825761449, "top": 395, "right": 3170, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732053f.jpg"} -{"rects": [{"solidity": 0.9949061072989671, "top": 2230, "right": 2925, "bottom": 3645, "left": 1080}, {"solidity": 0.9952315808121568, "top": 475, "right": 2900, "bottom": 1875, "left": 1065}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727237f.jpg"} -{"rects": [{"solidity": 0.9949061155446772, "top": 2290, "right": 3080, "bottom": 3930, "left": 640}, {"solidity": 0.9969864830599388, "top": 480, "right": 3085, "bottom": 2090, "left": 670}, {"solidity": 0.9948588706403515, "top": 4120, "right": 3045, "bottom": 5745, "left": 615}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731873f.jpg"} -{"rects": [{"solidity": 0.9949062077189442, "top": 1065, "right": 3175, "bottom": 4455, "left": 585}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719078f.jpg"} -{"rects": [{"solidity": 0.9949066818635133, "top": 415, "right": 3115, "bottom": 2035, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729223f.jpg"} -{"rects": [{"solidity": 0.9949073826497242, "top": 550, "right": 5050, "bottom": 3590, "left": 1025}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717814f.jpg"} -{"rects": [{"solidity": 0.9949074694509082, "top": 480, "right": 2215, "bottom": 2580, "left": 725}, {"solidity": 0.994954401065683, "top": 500, "right": 3920, "bottom": 2585, "left": 2440}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716160f.jpg"} -{"rects": [{"solidity": 0.9949074965174584, "top": 810, "right": 2035, "bottom": 3220, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720676f.jpg"} -{"rects": [{"solidity": 0.9949075782209771, "top": 2470, "right": 2475, "bottom": 3970, "left": 375}, {"solidity": 0.9943115786898281, "top": 600, "right": 2475, "bottom": 2095, "left": 385}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716060f.jpg"} -{"rects": [{"solidity": 0.9949080447022136, "top": 385, "right": 3140, "bottom": 2000, "left": 725}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729849f.jpg"} -{"rects": [{"solidity": 0.9949093183239525, "top": 415, "right": 2940, "bottom": 1955, "left": 960}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720057f.jpg"} -{"rects": [{"solidity": 0.9949097502874006, "top": 400, "right": 2270, "bottom": 1550, "left": 365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723138f.jpg"} -{"rects": [{"solidity": 0.9949097815764483, "top": 300, "right": 1955, "bottom": 1180, "left": 815}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727155f.jpg"} -{"rects": [{"solidity": 0.9949099889004919, "top": 840, "right": 2015, "bottom": 3235, "left": 410}, {"solidity": 0.9962956066027321, "top": 855, "right": 3860, "bottom": 3255, "left": 2280}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729524f.jpg"} -{"rects": [{"solidity": 0.994910124872031, "top": 880, "right": 3835, "bottom": 3310, "left": 2220}, {"solidity": 0.9959942507992162, "top": 890, "right": 5715, "bottom": 3315, "left": 4100}, {"solidity": 0.9950926118897515, "top": 895, "right": 1995, "bottom": 3310, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722844f.jpg"} -{"rects": [{"solidity": 0.9949107278589434, "top": 2155, "right": 4015, "bottom": 3590, "left": 130}, {"solidity": 0.9940946308238533, "top": 405, "right": 5215, "bottom": 1815, "left": 3235}, {"solidity": 0.9946068923009989, "top": 2160, "right": 6010, "bottom": 3575, "left": 4035}, {"solidity": 0.993918256627687, "top": 390, "right": 2725, "bottom": 1810, "left": 760}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726745f.jpg"} -{"rects": [{"solidity": 0.9949109114309667, "top": 405, "right": 2960, "bottom": 2025, "left": 955}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702006f.jpg"} -{"rects": [{"solidity": 0.9949109171349994, "top": 2030, "right": 2805, "bottom": 3475, "left": 955}, {"solidity": 0.9948752293043707, "top": 2045, "right": 5275, "bottom": 3470, "left": 3440}, {"solidity": 0.9946054636720822, "top": 590, "right": 5255, "bottom": 2020, "left": 3430}, {"solidity": 0.9954716382859606, "top": 590, "right": 2755, "bottom": 2015, "left": 945}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705294f.jpg"} -{"rects": [{"solidity": 0.9949111159881489, "top": 495, "right": 2300, "bottom": 1965, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720565f.jpg"} -{"rects": [{"solidity": 0.9949113834475216, "top": 830, "right": 2035, "bottom": 3255, "left": 400}, {"solidity": 0.9979652406070582, "top": 845, "right": 3880, "bottom": 3260, "left": 2270}, {"solidity": 0.9959567945337161, "top": 880, "right": 5735, "bottom": 3295, "left": 4125}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728955f.jpg"} -{"rects": [{"solidity": 0.9949117583123114, "top": 595, "right": 3165, "bottom": 2450, "left": 470}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706692f.jpg"} -{"rects": [{"solidity": 0.9949117923801468, "top": 805, "right": 2145, "bottom": 3205, "left": 540}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724868f.jpg"} -{"rects": [{"solidity": 0.9949120290406628, "top": 395, "right": 2430, "bottom": 1595, "left": 630}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715964f.jpg"} -{"rects": [{"solidity": 0.9949123920693714, "top": 440, "right": 3165, "bottom": 2150, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701393f.jpg"} -{"rects": [{"solidity": 0.9949124531139895, "top": 2240, "right": 3165, "bottom": 3905, "left": 700}, {"solidity": 0.9938769553489237, "top": 385, "right": 3195, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701619f.jpg"} -{"rects": [{"solidity": 0.994912557578557, "top": 2330, "right": 3205, "bottom": 3985, "left": 760}, {"solidity": 0.9955235821707711, "top": 450, "right": 3195, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719490f.jpg"} -{"rects": [{"solidity": 0.9949128225080855, "top": 1030, "right": 5450, "bottom": 2650, "left": 635}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730245f.jpg"} -{"rects": [{"solidity": 0.994913535019302, "top": 2180, "right": 2855, "bottom": 3595, "left": 1045}, {"solidity": 0.9938165765020053, "top": 555, "right": 4990, "bottom": 1960, "left": 3165}, {"solidity": 0.9962269269802353, "top": 555, "right": 2865, "bottom": 1940, "left": 1055}, {"solidity": 0.9956192351747282, "top": 2155, "right": 4960, "bottom": 3565, "left": 3175}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727755f.jpg"} -{"rects": [{"solidity": 0.9949137484990189, "top": 2405, "right": 2825, "bottom": 3830, "left": 1005}, {"solidity": 0.9953806672369546, "top": 640, "right": 2850, "bottom": 2060, "left": 1030}, {"solidity": 0.9957247397667685, "top": 4175, "right": 2815, "bottom": 5600, "left": 995}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704256f.jpg"} -{"rects": [{"solidity": 0.9949138384786141, "top": 705, "right": 2095, "bottom": 2525, "left": 850}, {"solidity": 0.9960112514986628, "top": 700, "right": 3650, "bottom": 2505, "left": 2430}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509289.jpg"} -{"rects": [{"solidity": 0.9949145020908846, "top": 395, "right": 3205, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704283f.jpg"} -{"rects": [{"solidity": 0.9949147211805975, "top": 465, "right": 3055, "bottom": 1900, "left": 1230}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725567f.jpg"} -{"rects": [{"solidity": 0.9949151727783919, "top": 565, "right": 2735, "bottom": 2030, "left": 905}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704586f.jpg"} -{"rects": [{"solidity": 0.994915680346144, "top": 320, "right": 3190, "bottom": 1910, "left": 785}, {"solidity": 0.9822896148134439, "top": 2125, "right": 2980, "bottom": 3620, "left": 1050}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715270f.jpg"} -{"rects": [{"solidity": 0.9949157730290836, "top": 1435, "right": 3320, "bottom": 4840, "left": 515}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723890f.jpg"} -{"rects": [{"solidity": 0.9949164482410657, "top": 780, "right": 2030, "bottom": 3220, "left": 395}, {"solidity": 0.9967546447139267, "top": 785, "right": 3905, "bottom": 3210, "left": 2290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716619f.jpg"} -{"rects": [{"solidity": 0.9949166150147052, "top": 450, "right": 2920, "bottom": 2005, "left": 965}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/700871f.jpg"} -{"rects": [{"solidity": 0.9949166327775518, "top": 2230, "right": 3075, "bottom": 3860, "left": 645}, {"solidity": 0.9968300174726028, "top": 400, "right": 3070, "bottom": 2000, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729454f.jpg"} -{"rects": [{"solidity": 0.994916797846994, "top": 635, "right": 5585, "bottom": 4050, "left": 1255}], "shape": {"h": 4410, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/711531f.jpg"} -{"rects": [{"solidity": 0.9949168712174665, "top": 440, "right": 3090, "bottom": 1855, "left": 1280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725982f.jpg"} -{"rects": [{"solidity": 0.99491694049336, "top": 495, "right": 6010, "bottom": 3840, "left": 130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714886f.jpg"} -{"rects": [{"solidity": 0.9949171065996005, "top": 550, "right": 5030, "bottom": 3520, "left": 1180}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720146f.jpg"} -{"rects": [{"solidity": 0.9949172297795745, "top": 1175, "right": 3125, "bottom": 2245, "left": 1510}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509567.jpg"} -{"rects": [{"solidity": 0.9949172966403691, "top": 3025, "right": 2425, "bottom": 4330, "left": 540}, {"solidity": 0.9966771662622314, "top": 1695, "right": 2420, "bottom": 2965, "left": 515}, {"solidity": 0.997816420727613, "top": 350, "right": 2420, "bottom": 1630, "left": 555}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517163.jpg"} -{"rects": [{"solidity": 0.9949174570515446, "top": 425, "right": 3120, "bottom": 2040, "left": 695}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700147f.jpg"} -{"rects": [{"solidity": 0.9949179824991382, "top": 3970, "right": 3200, "bottom": 5610, "left": 755}, {"solidity": 0.9967782346033958, "top": 2045, "right": 3195, "bottom": 3655, "left": 800}, {"solidity": 0.9905780564033472, "top": 330, "right": 2985, "bottom": 1770, "left": 1060}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714708f.jpg"} -{"rects": [{"solidity": 0.9949183326257729, "top": 785, "right": 5780, "bottom": 3225, "left": 4145}, {"solidity": 0.9969988264641944, "top": 805, "right": 2055, "bottom": 3230, "left": 435}, {"solidity": 0.998352648953353, "top": 805, "right": 3925, "bottom": 3220, "left": 2305}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707702f.jpg"} -{"rects": [{"solidity": 0.9949188901922915, "top": 360, "right": 3100, "bottom": 2015, "left": 665}, {"solidity": 0.9965391126114475, "top": 2255, "right": 3045, "bottom": 3860, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728457f.jpg"} -{"rects": [{"solidity": 0.9949192027749713, "top": 2225, "right": 3175, "bottom": 3860, "left": 740}, {"solidity": 0.9959863425505999, "top": 420, "right": 3165, "bottom": 2040, "left": 755}, {"solidity": 0.9962864342958333, "top": 4060, "right": 3150, "bottom": 5675, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734516f.jpg"} -{"rects": [{"solidity": 0.9949194276308804, "top": 480, "right": 3125, "bottom": 2080, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710552f.jpg"} -{"rects": [{"solidity": 0.9949196388904832, "top": 640, "right": 2815, "bottom": 3600, "left": 770}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702857f.jpg"} -{"rects": [{"solidity": 0.9949196945916284, "top": 600, "right": 2230, "bottom": 1855, "left": 525}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702629f.jpg"} -{"rects": [{"solidity": 0.9949205409076717, "top": 850, "right": 2050, "bottom": 3275, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705160f.jpg"} -{"rects": [{"solidity": 0.9949220066872614, "top": 520, "right": 5040, "bottom": 3520, "left": 1080}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732086f.jpg"} -{"rects": [{"solidity": 0.9949227019051896, "top": 860, "right": 3880, "bottom": 3300, "left": 2240}, {"solidity": 0.9943187030654103, "top": 805, "right": 2020, "bottom": 3220, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720044f.jpg"} -{"rects": [{"solidity": 0.9949235289573173, "top": 425, "right": 3330, "bottom": 2270, "left": 580}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703214f.jpg"} -{"rects": [{"solidity": 0.9949242837367339, "top": 410, "right": 3170, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700535f.jpg"} -{"rects": [{"solidity": 0.9949245109454304, "top": 390, "right": 3285, "bottom": 2015, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727307f.jpg"} -{"rects": [{"solidity": 0.9949245763074482, "top": 430, "right": 3135, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728381f.jpg"} -{"rects": [{"solidity": 0.9949246920610413, "top": 755, "right": 2920, "bottom": 2370, "left": 860}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507917.jpg"} -{"rects": [{"solidity": 0.9949247552375626, "top": 420, "right": 3120, "bottom": 2065, "left": 695}, {"solidity": 0.9952833883876696, "top": 2315, "right": 3095, "bottom": 3960, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720276f.jpg"} -{"rects": [{"solidity": 0.9949250220810337, "top": 650, "right": 2715, "bottom": 2080, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727818f.jpg"} -{"rects": [{"solidity": 0.9949251656660795, "top": 380, "right": 3045, "bottom": 2145, "left": 615}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726935f.jpg"} -{"rects": [{"solidity": 0.9949253808383929, "top": 420, "right": 3195, "bottom": 2050, "left": 790}, {"solidity": 0.9961091660580416, "top": 2230, "right": 3190, "bottom": 3840, "left": 790}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/731707f.jpg"} -{"rects": [{"solidity": 0.9949259167623212, "top": 665, "right": 2550, "bottom": 2160, "left": 450}, {"solidity": 0.9942743025634952, "top": 2420, "right": 2530, "bottom": 3905, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716240f.jpg"} -{"rects": [{"solidity": 0.9949261957793801, "top": 555, "right": 3350, "bottom": 1990, "left": 980}, {"solidity": 0.9970703726516785, "top": 2355, "right": 3340, "bottom": 3750, "left": 990}, {"solidity": 0.9970989632943762, "top": 4105, "right": 3305, "bottom": 5495, "left": 1010}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/727028f.jpg"} -{"rects": [{"solidity": 0.9949264282778463, "top": 385, "right": 3160, "bottom": 2000, "left": 770}, {"solidity": 0.9965265313177243, "top": 2230, "right": 3145, "bottom": 3825, "left": 765}], "shape": {"h": 6070, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/728126f.jpg"} -{"rects": [{"solidity": 0.994926825465907, "top": 2560, "right": 3180, "bottom": 4205, "left": 750}, {"solidity": 0.9944156936683917, "top": 690, "right": 3215, "bottom": 2320, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708152f.jpg"} -{"rects": [{"solidity": 0.9949277014493488, "top": 290, "right": 4970, "bottom": 3635, "left": 940}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713917f.jpg"} -{"rects": [{"solidity": 0.9949277250947293, "top": 360, "right": 3140, "bottom": 1950, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719666f.jpg"} -{"rects": [{"solidity": 0.994927725742034, "top": 780, "right": 2030, "bottom": 3200, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721573f.jpg"} -{"rects": [{"solidity": 0.9949279058805297, "top": 515, "right": 3135, "bottom": 2145, "left": 715}, {"solidity": 0.9980370017066729, "top": 2375, "right": 3105, "bottom": 3990, "left": 705}, {"solidity": 0.9966590721347297, "top": 4215, "right": 3110, "bottom": 5805, "left": 720}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717935f.jpg"} -{"rects": [{"solidity": 0.9949283424946443, "top": 4010, "right": 3120, "bottom": 5615, "left": 710}, {"solidity": 0.9714402216036611, "top": 2145, "right": 3110, "bottom": 3715, "left": 720}, {"solidity": 0.9947144931283438, "top": 495, "right": 3090, "bottom": 1885, "left": 1265}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728025f.jpg"} -{"rects": [{"solidity": 0.9949284820464346, "top": 770, "right": 3190, "bottom": 2690, "left": 505}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712424f.jpg"} -{"rects": [{"solidity": 0.9949286246605432, "top": 740, "right": 2590, "bottom": 3510, "left": 620}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717145f.jpg"} -{"rects": [{"solidity": 0.9949292751334001, "top": 430, "right": 3570, "bottom": 2680, "left": 580}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508789.jpg"} -{"rects": [{"solidity": 0.9949294221510409, "top": 785, "right": 2210, "bottom": 3195, "left": 605}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720156f.jpg"} -{"rects": [{"solidity": 0.9949303213940437, "top": 2335, "right": 3225, "bottom": 3935, "left": 850}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718519f.jpg"} -{"rects": [{"solidity": 0.9949307177586882, "top": 665, "right": 2515, "bottom": 3700, "left": 445}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713279f.jpg"} -{"rects": [{"solidity": 0.9949309372866797, "top": 750, "right": 3825, "bottom": 3160, "left": 2220}, {"solidity": 0.9979891952759494, "top": 765, "right": 1975, "bottom": 3150, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717193f.jpg"} -{"rects": [{"solidity": 0.9949309745243579, "top": 820, "right": 2285, "bottom": 2305, "left": 250}, {"solidity": 0.9960341169848899, "top": 2545, "right": 2265, "bottom": 3995, "left": 240}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517169.jpg"} -{"rects": [{"solidity": 0.9949313309625766, "top": 860, "right": 2180, "bottom": 3235, "left": 600}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708660f.jpg"} -{"rects": [{"solidity": 0.9949313663616283, "top": 660, "right": 2755, "bottom": 2080, "left": 935}, {"solidity": 0.9963708954778072, "top": 2120, "right": 2770, "bottom": 3520, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725224f.jpg"} -{"rects": [{"solidity": 0.994931545697546, "top": 1110, "right": 2035, "bottom": 2890, "left": 845}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507600.jpg"} -{"rects": [{"solidity": 0.994931674140436, "top": 2230, "right": 5205, "bottom": 3680, "left": 3385}, {"solidity": 0.9961125473223535, "top": 585, "right": 2895, "bottom": 2020, "left": 1080}, {"solidity": 0.9965130735459808, "top": 2245, "right": 2910, "bottom": 3670, "left": 1090}, {"solidity": 0.9947178813105496, "top": 585, "right": 5210, "bottom": 2015, "left": 3390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726506f.jpg"} -{"rects": [{"solidity": 0.9949319584736251, "top": 1015, "right": 3510, "bottom": 5050, "left": 305}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721055f.jpg"} -{"rects": [{"solidity": 0.994932388506046, "top": 410, "right": 3175, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734188f.jpg"} -{"rects": [{"solidity": 0.9949325331372588, "top": 805, "right": 2035, "bottom": 3200, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733996f.jpg"} -{"rects": [{"solidity": 0.9949327275904246, "top": 815, "right": 2000, "bottom": 3220, "left": 410}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714642f.jpg"} -{"rects": [{"solidity": 0.9949328552237052, "top": 3140, "right": 3360, "bottom": 4940, "left": 1975}, {"solidity": 0.9943620608389834, "top": 3200, "right": 1755, "bottom": 4855, "left": 485}, {"solidity": 0.9929689548561776, "top": 1075, "right": 3335, "bottom": 2745, "left": 2065}, {"solidity": 0.9966072578913464, "top": 1085, "right": 1740, "bottom": 2720, "left": 480}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718270f.jpg"} -{"rects": [{"solidity": 0.9949328924333787, "top": 590, "right": 5240, "bottom": 2015, "left": 3415}, {"solidity": 0.9958749012609345, "top": 2105, "right": 2685, "bottom": 3535, "left": 875}, {"solidity": 0.9964307860571172, "top": 665, "right": 2685, "bottom": 2090, "left": 865}, {"solidity": 0.9956175690282009, "top": 2055, "right": 5240, "bottom": 3460, "left": 3410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704006f.jpg"} -{"rects": [{"solidity": 0.9949329432244461, "top": 820, "right": 1780, "bottom": 3090, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705924f.jpg"} -{"rects": [{"solidity": 0.994933188914463, "top": 510, "right": 3065, "bottom": 1845, "left": 1245}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727729f.jpg"} -{"rects": [{"solidity": 0.9949341885874576, "top": 4155, "right": 2960, "bottom": 5590, "left": 1150}, {"solidity": 0.9947509298849376, "top": 510, "right": 2985, "bottom": 1920, "left": 1185}, {"solidity": 0.993991740506801, "top": 2315, "right": 2980, "bottom": 3750, "left": 1185}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727752f.jpg"} -{"rects": [{"solidity": 0.9949341886207811, "top": 560, "right": 5325, "bottom": 3685, "left": 2945}, {"solidity": 0.9952701487753204, "top": 795, "right": 2620, "bottom": 3415, "left": 770}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704383f.jpg"} -{"rects": [{"solidity": 0.9949342039192831, "top": 535, "right": 3290, "bottom": 3610, "left": 795}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713695f.jpg"} -{"rects": [{"solidity": 0.99493543349398, "top": 745, "right": 2020, "bottom": 3120, "left": 430}, {"solidity": 0.994819683181665, "top": 730, "right": 3770, "bottom": 3130, "left": 2205}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712527f.jpg"} -{"rects": [{"solidity": 0.9949355565414287, "top": 320, "right": 2370, "bottom": 1540, "left": 560}, {"solidity": 0.9946708807465381, "top": 3095, "right": 2345, "bottom": 4320, "left": 535}, {"solidity": 0.9970481288384474, "top": 1715, "right": 2355, "bottom": 2925, "left": 555}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/707111f.jpg"} -{"rects": [{"solidity": 0.9949356666296372, "top": 4135, "right": 3180, "bottom": 5750, "left": 765}, {"solidity": 0.9940376873018413, "top": 2285, "right": 3205, "bottom": 3900, "left": 795}, {"solidity": 0.9949308424410396, "top": 420, "right": 3215, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709611f.jpg"} -{"rects": [{"solidity": 0.9949362085387901, "top": 390, "right": 3010, "bottom": 2015, "left": 595}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728300f.jpg"} -{"rects": [{"solidity": 0.9949362724851292, "top": 805, "right": 2015, "bottom": 3225, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708874f.jpg"} -{"rects": [{"solidity": 0.9949363261323911, "top": 935, "right": 5000, "bottom": 3005, "left": 1055}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706860f.jpg"} -{"rects": [{"solidity": 0.9949369089573473, "top": 2045, "right": 2925, "bottom": 5315, "left": 435}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/714299f.jpg"} -{"rects": [{"solidity": 0.9949376114081997, "top": 4090, "right": 3180, "bottom": 5730, "left": 750}, {"solidity": 0.9941928028728276, "top": 2230, "right": 3195, "bottom": 3855, "left": 775}, {"solidity": 0.9947599629651518, "top": 410, "right": 3230, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734225f.jpg"} -{"rects": [{"solidity": 0.994938493920164, "top": 420, "right": 3205, "bottom": 2220, "left": 505}, {"solidity": 0.9970905047734347, "top": 2375, "right": 3120, "bottom": 4105, "left": 535}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722740f.jpg"} -{"rects": [{"solidity": 0.9949388742049788, "top": 860, "right": 3880, "bottom": 3295, "left": 2235}, {"solidity": 0.9963699210809713, "top": 860, "right": 2000, "bottom": 3270, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731339f.jpg"} -{"rects": [{"solidity": 0.9949390315243973, "top": 680, "right": 4780, "bottom": 3370, "left": 1435}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720316f.jpg"} -{"rects": [{"solidity": 0.9949398775635437, "top": 505, "right": 3050, "bottom": 1950, "left": 1250}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726884f.jpg"} -{"rects": [{"solidity": 0.9949398776675856, "top": 400, "right": 5040, "bottom": 3645, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715230f.jpg"} -{"rects": [{"solidity": 0.9949403133105617, "top": 2905, "right": 3060, "bottom": 5660, "left": 880}, {"solidity": 0.9521343432051796, "top": 520, "right": 3445, "bottom": 2530, "left": 330}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716807f.jpg"} -{"rects": [{"solidity": 0.9949403854060291, "top": 810, "right": 2060, "bottom": 3210, "left": 475}, {"solidity": 0.9989085520123364, "top": 810, "right": 3865, "bottom": 3195, "left": 2285}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717015f.jpg"} -{"rects": [{"solidity": 0.9949404688234857, "top": 720, "right": 3535, "bottom": 5390, "left": 275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716970f.jpg"} -{"rects": [{"solidity": 0.9949406044785644, "top": 755, "right": 3220, "bottom": 2675, "left": 485}, {"solidity": 0.9879836234376, "top": 3385, "right": 3165, "bottom": 5290, "left": 475}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724803f.jpg"} -{"rects": [{"solidity": 0.9949406563330614, "top": 825, "right": 2070, "bottom": 3225, "left": 465}, {"solidity": 0.9938322903629537, "top": 830, "right": 3940, "bottom": 3215, "left": 2350}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713008f.jpg"} -{"rects": [{"solidity": 0.9949413121329452, "top": 130, "right": 5215, "bottom": 3575, "left": 1080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725821f.jpg"} -{"rects": [{"solidity": 0.9949413459977269, "top": 560, "right": 2650, "bottom": 1985, "left": 835}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706487f.jpg"} -{"rects": [{"solidity": 0.9949420190554988, "top": 810, "right": 3850, "bottom": 3230, "left": 2235}, {"solidity": 0.9964230468635991, "top": 820, "right": 2020, "bottom": 3230, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722544f.jpg"} -{"rects": [{"solidity": 0.9949421187756545, "top": 1145, "right": 3955, "bottom": 3170, "left": 2335}, {"solidity": 0.9968530405010178, "top": 1170, "right": 2125, "bottom": 3185, "left": 520}, {"solidity": 0.9965690016760119, "top": 1140, "right": 5555, "bottom": 3165, "left": 4135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721083f.jpg"} -{"rects": [{"solidity": 0.9949421361575902, "top": 415, "right": 3270, "bottom": 2250, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700821f.jpg"} -{"rects": [{"solidity": 0.9949422428808985, "top": 575, "right": 2590, "bottom": 1980, "left": 765}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707213f.jpg"} -{"rects": [{"solidity": 0.9949427945043248, "top": 790, "right": 4825, "bottom": 3360, "left": 1345}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721506f.jpg"} -{"rects": [{"solidity": 0.994942988812465, "top": 475, "right": 3215, "bottom": 2010, "left": 1055}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711428f.jpg"} -{"rects": [{"solidity": 0.9949431967691375, "top": 315, "right": 2430, "bottom": 1540, "left": 615}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715908f.jpg"} -{"rects": [{"solidity": 0.9949436656684701, "top": 2245, "right": 3110, "bottom": 3910, "left": 665}, {"solidity": 0.9953722548829884, "top": 420, "right": 3095, "bottom": 2005, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729881f.jpg"} -{"rects": [{"solidity": 0.9949436967195096, "top": 305, "right": 1875, "bottom": 1200, "left": 715}, {"solidity": 0.9962415905588755, "top": 2630, "right": 1850, "bottom": 3515, "left": 705}, {"solidity": 0.993869491631668, "top": 1470, "right": 1865, "bottom": 2360, "left": 725}], "shape": {"h": 3945, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727082f.jpg"} -{"rects": [{"solidity": 0.9949437109014869, "top": 3940, "right": 3000, "bottom": 5595, "left": 570}, {"solidity": 0.996511668916341, "top": 305, "right": 3015, "bottom": 1930, "left": 595}, {"solidity": 0.9956764618384953, "top": 2135, "right": 3015, "bottom": 3730, "left": 595}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700890f.jpg"} -{"rects": [{"solidity": 0.9949447468127173, "top": 885, "right": 4750, "bottom": 3410, "left": 1400}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732035f.jpg"} -{"rects": [{"solidity": 0.9949448852067683, "top": 640, "right": 2905, "bottom": 2435, "left": 1700}, {"solidity": 0.9963001618312733, "top": 645, "right": 1565, "bottom": 2440, "left": 360}], "shape": {"h": 3040, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715795f.jpg"} -{"rects": [{"solidity": 0.994945273831032, "top": 955, "right": 3445, "bottom": 2795, "left": 2065}, {"solidity": 0.9956759902594916, "top": 3205, "right": 1870, "bottom": 5045, "left": 520}, {"solidity": 0.9969402475524547, "top": 975, "right": 1860, "bottom": 2800, "left": 510}, {"solidity": 0.9951244894242527, "top": 3235, "right": 3445, "bottom": 5045, "left": 2100}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707060f.jpg"} -{"rects": [{"solidity": 0.9949453006153803, "top": 1035, "right": 3510, "bottom": 4995, "left": 270}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/733594f.jpg"} -{"rects": [{"solidity": 0.9949466181775695, "top": 995, "right": 2345, "bottom": 2105, "left": 740}, {"solidity": 0.9929620082931749, "top": 965, "right": 4045, "bottom": 2055, "left": 2450}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508785.jpg"} -{"rects": [{"solidity": 0.9949468108533459, "top": 4050, "right": 3235, "bottom": 5765, "left": 710}, {"solidity": 0.9959819789971514, "top": 2235, "right": 3195, "bottom": 3860, "left": 770}, {"solidity": 0.9959402922728489, "top": 435, "right": 3200, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713387f.jpg"} -{"rects": [{"solidity": 0.994946863364488, "top": 970, "right": 5525, "bottom": 2710, "left": 4170}, {"solidity": 0.9938212275161334, "top": 990, "right": 3695, "bottom": 2685, "left": 2380}, {"solidity": 0.9951318011175389, "top": 990, "right": 1905, "bottom": 2660, "left": 595}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734275f.jpg"} -{"rects": [{"solidity": 0.9949470656309977, "top": 650, "right": 2780, "bottom": 2080, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727951f.jpg"} -{"rects": [{"solidity": 0.9949470668784213, "top": 455, "right": 3255, "bottom": 2050, "left": 860}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710502f.jpg"} -{"rects": [{"solidity": 0.9949476258668684, "top": 870, "right": 2045, "bottom": 3295, "left": 430}, {"solidity": 0.9909097758399859, "top": 895, "right": 4005, "bottom": 3160, "left": 2295}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722483f.jpg"} -{"rects": [{"solidity": 0.9949480472948764, "top": 775, "right": 5700, "bottom": 3180, "left": 4090}, {"solidity": 0.9961815419621629, "top": 800, "right": 3845, "bottom": 3160, "left": 2280}, {"solidity": 0.9968813869298039, "top": 800, "right": 2035, "bottom": 3155, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714231f.jpg"} -{"rects": [{"solidity": 0.9949480677226643, "top": 745, "right": 2710, "bottom": 2160, "left": 910}, {"solidity": 0.9958193351050494, "top": 2235, "right": 2720, "bottom": 3345, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728188f.jpg"} -{"rects": [{"solidity": 0.9949483973476672, "top": 2185, "right": 2715, "bottom": 3605, "left": 875}, {"solidity": 0.9950003397827332, "top": 2180, "right": 5250, "bottom": 3600, "left": 3415}, {"solidity": 0.9963208098111739, "top": 710, "right": 2710, "bottom": 2125, "left": 880}, {"solidity": 0.9963935386267142, "top": 710, "right": 5245, "bottom": 2125, "left": 3420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726329f.jpg"} -{"rects": [{"solidity": 0.9949485070466615, "top": 470, "right": 2945, "bottom": 1880, "left": 1105}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727327f.jpg"} -{"rects": [{"solidity": 0.9949486567034934, "top": 1080, "right": 3265, "bottom": 2175, "left": 1615}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509523.jpg"} -{"rects": [{"solidity": 0.9949488323274731, "top": 745, "right": 5745, "bottom": 3155, "left": 4125}, {"solidity": 0.99852306106333, "top": 745, "right": 3865, "bottom": 3140, "left": 2275}, {"solidity": 0.9959059803234708, "top": 745, "right": 2025, "bottom": 3135, "left": 430}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731302f.jpg"} -{"rects": [{"solidity": 0.9949490381273832, "top": 420, "right": 2940, "bottom": 1880, "left": 1100}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703553f.jpg"} -{"rects": [{"solidity": 0.9949492506119921, "top": 715, "right": 2795, "bottom": 2140, "left": 960}, {"solidity": 0.9963938192381184, "top": 2200, "right": 2760, "bottom": 3525, "left": 1030}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702850f.jpg"} -{"rects": [{"solidity": 0.9949493082446882, "top": 1115, "right": 1820, "bottom": 3110, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733320f.jpg"} -{"rects": [{"solidity": 0.9949493393314743, "top": 825, "right": 4050, "bottom": 2675, "left": 1385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721328f.jpg"} -{"rects": [{"solidity": 0.9949498891121821, "top": 385, "right": 3110, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729433f.jpg"} -{"rects": [{"solidity": 0.9949500515056416, "top": 610, "right": 2695, "bottom": 2050, "left": 845}, {"solidity": 0.9951731333677878, "top": 595, "right": 5250, "bottom": 2030, "left": 3430}, {"solidity": 0.9955868320610687, "top": 2090, "right": 2690, "bottom": 3515, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705275f.jpg"} -{"rects": [{"solidity": 0.9949503029818211, "top": 665, "right": 2635, "bottom": 2050, "left": 805}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706023f.jpg"} -{"rects": [{"solidity": 0.9949503710128168, "top": 745, "right": 3890, "bottom": 3180, "left": 2260}, {"solidity": 0.9962850848482633, "top": 800, "right": 2015, "bottom": 3195, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717113f.jpg"} -{"rects": [{"solidity": 0.9949510017671493, "top": 725, "right": 3615, "bottom": 3190, "left": 475}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/716971f.jpg"} -{"rects": [{"solidity": 0.9949512576436333, "top": 710, "right": 2860, "bottom": 2135, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725445f.jpg"} -{"rects": [{"solidity": 0.9949515901320147, "top": 415, "right": 3135, "bottom": 2020, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703038f.jpg"} -{"rects": [{"solidity": 0.9949515954621946, "top": 435, "right": 3180, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721716f.jpg"} -{"rects": [{"solidity": 0.9949517340469942, "top": 420, "right": 3190, "bottom": 2035, "left": 775}, {"solidity": 0.9981090419799212, "top": 2250, "right": 3175, "bottom": 3855, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713367f.jpg"} -{"rects": [{"solidity": 0.9949524556007104, "top": 2135, "right": 3250, "bottom": 4145, "left": 355}, {"solidity": 0.9961761303407116, "top": 540, "right": 2920, "bottom": 1975, "left": 1090}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703652f.jpg"} -{"rects": [{"solidity": 0.9949525227716645, "top": 4095, "right": 3055, "bottom": 5735, "left": 620}, {"solidity": 0.9963916504545351, "top": 2270, "right": 3060, "bottom": 3875, "left": 640}, {"solidity": 0.9967811264416846, "top": 420, "right": 3055, "bottom": 2020, "left": 655}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/731770f.jpg"} -{"rects": [{"solidity": 0.9949526483106386, "top": 3765, "right": 2870, "bottom": 5200, "left": 1000}, {"solidity": 0.995212913457843, "top": 480, "right": 2815, "bottom": 1910, "left": 995}, {"solidity": 0.9965352034099862, "top": 2115, "right": 2830, "bottom": 3540, "left": 1015}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727611f.jpg"} -{"rects": [{"solidity": 0.9949532033051067, "top": 385, "right": 3205, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707541f.jpg"} -{"rects": [{"solidity": 0.9949534199679301, "top": 1290, "right": 2750, "bottom": 2905, "left": 350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722873f.jpg"} -{"rects": [{"solidity": 0.9949536905820685, "top": 4120, "right": 3205, "bottom": 5735, "left": 790}, {"solidity": 0.9971675655143734, "top": 425, "right": 3195, "bottom": 2025, "left": 790}, {"solidity": 0.9943648868658006, "top": 2275, "right": 3185, "bottom": 3865, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724220f.jpg"} -{"rects": [{"solidity": 0.9949537398795727, "top": 820, "right": 2125, "bottom": 3235, "left": 500}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721512f.jpg"} -{"rects": [{"solidity": 0.9949538390962784, "top": 580, "right": 2640, "bottom": 1860, "left": 905}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706321f.jpg"} -{"rects": [{"solidity": 0.9949541543702398, "top": 480, "right": 5060, "bottom": 3540, "left": 1145}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732084f.jpg"} -{"rects": [{"solidity": 0.9949550161041368, "top": 2130, "right": 3125, "bottom": 3745, "left": 720}, {"solidity": 0.9953009960310022, "top": 300, "right": 3145, "bottom": 1905, "left": 740}, {"solidity": 0.9953395229081909, "top": 4015, "right": 3115, "bottom": 5615, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709689f.jpg"} -{"rects": [{"solidity": 0.994955089965409, "top": 410, "right": 3200, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721986f.jpg"} -{"rects": [{"solidity": 0.9949553217961769, "top": 765, "right": 3930, "bottom": 3190, "left": 2295}, {"solidity": 0.9945471019826043, "top": 750, "right": 2075, "bottom": 3155, "left": 470}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726019f.jpg"} -{"rects": [{"solidity": 0.9949556389708052, "top": 725, "right": 4630, "bottom": 3185, "left": 1380}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721447f.jpg"} -{"rects": [{"solidity": 0.9949556490179894, "top": 840, "right": 2030, "bottom": 3245, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729423f.jpg"} -{"rects": [{"solidity": 0.9949557061809736, "top": 1060, "right": 2030, "bottom": 3030, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720227f.jpg"} -{"rects": [{"solidity": 0.9949564089631818, "top": 3340, "right": 3185, "bottom": 5295, "left": 450}, {"solidity": 0.9943224432849181, "top": 800, "right": 3190, "bottom": 2625, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715525f.jpg"} -{"rects": [{"solidity": 0.9949565518250895, "top": 2215, "right": 2915, "bottom": 3710, "left": 1010}, {"solidity": 0.9919374226464487, "top": 440, "right": 2920, "bottom": 1940, "left": 1015}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700448f.jpg"} -{"rects": [{"solidity": 0.9949568127955432, "top": 830, "right": 1835, "bottom": 2560, "left": 530}, {"solidity": 0.9947993802547336, "top": 835, "right": 3230, "bottom": 2550, "left": 1930}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723108f.jpg"} -{"rects": [{"solidity": 0.9949570629934874, "top": 450, "right": 3140, "bottom": 2090, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707308f.jpg"} -{"rects": [{"solidity": 0.994957077414636, "top": 2195, "right": 3105, "bottom": 3845, "left": 670}, {"solidity": 0.9949565659589122, "top": 4085, "right": 3075, "bottom": 5730, "left": 645}, {"solidity": 0.9984771392297377, "top": 380, "right": 3085, "bottom": 1985, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718049f.jpg"} -{"rects": [{"solidity": 0.9949570808592776, "top": 390, "right": 3215, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727831f.jpg"} -{"rects": [{"solidity": 0.9949571390079934, "top": 810, "right": 3815, "bottom": 3205, "left": 2225}, {"solidity": 0.9966293965499684, "top": 835, "right": 2030, "bottom": 3200, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717765f.jpg"} -{"rects": [{"solidity": 0.9949578582052553, "top": 670, "right": 2835, "bottom": 2070, "left": 1010}, {"solidity": 0.9959688670971857, "top": 2095, "right": 2845, "bottom": 3490, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706766f.jpg"} -{"rects": [{"solidity": 0.99495809814772, "top": 380, "right": 3170, "bottom": 1995, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719712f.jpg"} -{"rects": [{"solidity": 0.9949581230511677, "top": 485, "right": 3010, "bottom": 1915, "left": 1195}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728213f.jpg"} -{"rects": [{"solidity": 0.9949584946491065, "top": 805, "right": 3395, "bottom": 2345, "left": 960}], "shape": {"h": 3015, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/1509659.jpg"} -{"rects": [{"solidity": 0.9949590244726689, "top": 2240, "right": 2975, "bottom": 3740, "left": 1175}, {"solidity": 0.994122299739032, "top": 450, "right": 2940, "bottom": 1965, "left": 1180}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713031f.jpg"} -{"rects": [{"solidity": 0.9949598113866918, "top": 465, "right": 3120, "bottom": 1870, "left": 1295}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726972f.jpg"} -{"rects": [{"solidity": 0.9949605136344238, "top": 620, "right": 5300, "bottom": 2100, "left": 3455}, {"solidity": 0.9943208313085649, "top": 655, "right": 2765, "bottom": 2075, "left": 900}, {"solidity": 0.9941263433500749, "top": 2060, "right": 2740, "bottom": 3455, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705929f.jpg"} -{"rects": [{"solidity": 0.994960928007776, "top": 745, "right": 3180, "bottom": 2220, "left": 1135}], "shape": {"h": 2980, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1507294.jpg"} -{"rects": [{"solidity": 0.9949611663978642, "top": 770, "right": 3890, "bottom": 3195, "left": 2260}, {"solidity": 0.9941015343827456, "top": 745, "right": 2045, "bottom": 3170, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734288f.jpg"} -{"rects": [{"solidity": 0.9949615693621783, "top": 825, "right": 2035, "bottom": 3235, "left": 425}, {"solidity": 0.9967566017009097, "top": 815, "right": 3830, "bottom": 3225, "left": 2225}, {"solidity": 0.9962651764259517, "top": 995, "right": 5610, "bottom": 3005, "left": 4020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711567f.jpg"} -{"rects": [{"solidity": 0.9949620246807103, "top": 1415, "right": 3915, "bottom": 5685, "left": 495}], "shape": {"h": 6900, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708813f.jpg"} -{"rects": [{"solidity": 0.9949626456263777, "top": 770, "right": 5685, "bottom": 3165, "left": 4070}, {"solidity": 0.9966070245195494, "top": 760, "right": 2035, "bottom": 3150, "left": 445}, {"solidity": 0.9960612299704592, "top": 765, "right": 3855, "bottom": 3155, "left": 2265}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731627f.jpg"} -{"rects": [{"solidity": 0.9949633971655082, "top": 430, "right": 3190, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720201f.jpg"} -{"rects": [{"solidity": 0.9949636776246561, "top": 910, "right": 5765, "bottom": 3340, "left": 4130}, {"solidity": 0.9967070802565348, "top": 905, "right": 3905, "bottom": 3335, "left": 2280}, {"solidity": 0.9955190869660964, "top": 885, "right": 2045, "bottom": 3315, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730241f.jpg"} -{"rects": [{"solidity": 0.9949643616602347, "top": 675, "right": 2735, "bottom": 2095, "left": 905}, {"solidity": 0.9951775537045155, "top": 2110, "right": 2735, "bottom": 3520, "left": 910}, {"solidity": 0.9946338415648021, "top": 640, "right": 5170, "bottom": 2040, "left": 3375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734394f.jpg"} -{"rects": [{"solidity": 0.994964632538065, "top": 365, "right": 2365, "bottom": 1595, "left": 540}, {"solidity": 0.995871451489555, "top": 1780, "right": 2345, "bottom": 3000, "left": 535}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715826f.jpg"} -{"rects": [{"solidity": 0.9949655600695909, "top": 605, "right": 2900, "bottom": 3520, "left": 1050}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705092f.jpg"} -{"rects": [{"solidity": 0.9949656884787581, "top": 435, "right": 3150, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717685f.jpg"} -{"rects": [{"solidity": 0.994965975566079, "top": 490, "right": 2585, "bottom": 2605, "left": 1040}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507575.jpg"} -{"rects": [{"solidity": 0.9949667106184175, "top": 810, "right": 2020, "bottom": 3230, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704960f.jpg"} -{"rects": [{"solidity": 0.9949667356041163, "top": 325, "right": 1945, "bottom": 1210, "left": 795}], "shape": {"h": 3945, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727090f.jpg"} -{"rects": [{"solidity": 0.9949671059130332, "top": 930, "right": 3305, "bottom": 2750, "left": 1900}, {"solidity": 0.9973007628712698, "top": 935, "right": 1885, "bottom": 2740, "left": 485}, {"solidity": 0.9967612888254375, "top": 3440, "right": 3310, "bottom": 5230, "left": 1910}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731352f.jpg"} -{"rects": [{"solidity": 0.9949671779529297, "top": 510, "right": 3085, "bottom": 2125, "left": 660}, {"solidity": 0.9976530962459346, "top": 2395, "right": 3075, "bottom": 3995, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730444f.jpg"} -{"rects": [{"solidity": 0.9949673835903651, "top": 400, "right": 3190, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702940f.jpg"} -{"rects": [{"solidity": 0.9949675693166616, "top": 525, "right": 3100, "bottom": 1965, "left": 1280}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728223f.jpg"} -{"rects": [{"solidity": 0.994968046100897, "top": 490, "right": 3110, "bottom": 2090, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712450f.jpg"} -{"rects": [{"solidity": 0.994968376908125, "top": 2295, "right": 2905, "bottom": 3790, "left": 895}, {"solidity": 0.9946213268251674, "top": 490, "right": 2925, "bottom": 1975, "left": 940}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/709801f.jpg"} -{"rects": [{"solidity": 0.9949686033636419, "top": 500, "right": 2530, "bottom": 2035, "left": 225}, {"solidity": 0.99611866133889, "top": 2580, "right": 2370, "bottom": 3805, "left": 560}], "shape": {"h": 4645, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715799f.jpg"} -{"rects": [{"solidity": 0.99496866919121, "top": 2260, "right": 2960, "bottom": 3680, "left": 1105}, {"solidity": 0.9957897099144282, "top": 2230, "right": 5155, "bottom": 3655, "left": 3330}, {"solidity": 0.9955808908843263, "top": 640, "right": 5100, "bottom": 2040, "left": 3305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725550f.jpg"} -{"rects": [{"solidity": 0.9949690151254126, "top": 525, "right": 3320, "bottom": 2415, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712039f.jpg"} -{"rects": [{"solidity": 0.994969555126101, "top": 430, "right": 3175, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721611f.jpg"} -{"rects": [{"solidity": 0.9949696141432351, "top": 615, "right": 1595, "bottom": 2415, "left": 380}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715757f.jpg"} -{"rects": [{"solidity": 0.9949700806521551, "top": 2215, "right": 3110, "bottom": 3850, "left": 690}, {"solidity": 0.9952525180462685, "top": 375, "right": 3120, "bottom": 2000, "left": 700}, {"solidity": 0.9961315785181923, "top": 4115, "right": 3100, "bottom": 5720, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718736f.jpg"} -{"rects": [{"solidity": 0.9949700833337628, "top": 465, "right": 2825, "bottom": 1835, "left": 1025}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704208f.jpg"} -{"rects": [{"solidity": 0.9949702241103194, "top": 645, "right": 2725, "bottom": 2080, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704601f.jpg"} -{"rects": [{"solidity": 0.9949707741858523, "top": 595, "right": 5210, "bottom": 2025, "left": 3345}, {"solidity": 0.9943329535828003, "top": 650, "right": 2635, "bottom": 2075, "left": 785}, {"solidity": 0.9954727201735787, "top": 2105, "right": 2655, "bottom": 3500, "left": 805}, {"solidity": 0.9949626688877473, "top": 2060, "right": 5195, "bottom": 3460, "left": 3370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702450f.jpg"} -{"rects": [{"solidity": 0.9949712548295869, "top": 770, "right": 1980, "bottom": 3160, "left": 375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712058f.jpg"} -{"rects": [{"solidity": 0.9949717075630029, "top": 415, "right": 3190, "bottom": 2015, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703054f.jpg"} -{"rects": [{"solidity": 0.9949719007806876, "top": 1240, "right": 2535, "bottom": 2925, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722929f.jpg"} -{"rects": [{"solidity": 0.9949719446752862, "top": 390, "right": 3205, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733248f.jpg"} -{"rects": [{"solidity": 0.9949723123114617, "top": 660, "right": 2940, "bottom": 2115, "left": 1075}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/732816f.jpg"} -{"rects": [{"solidity": 0.9949724315265642, "top": 420, "right": 3230, "bottom": 2070, "left": 800}, {"solidity": 0.995561753783621, "top": 2240, "right": 3205, "bottom": 3880, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732531f.jpg"} -{"rects": [{"solidity": 0.9949726830735302, "top": 645, "right": 2670, "bottom": 2030, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705818f.jpg"} -{"rects": [{"solidity": 0.9949728218179533, "top": 440, "right": 3695, "bottom": 2590, "left": 880}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716526f.jpg"} -{"rects": [{"solidity": 0.9949731331046028, "top": 2095, "right": 2725, "bottom": 3515, "left": 900}, {"solidity": 0.9962378628666088, "top": 655, "right": 2705, "bottom": 2075, "left": 920}, {"solidity": 0.9943894884092725, "top": 640, "right": 5210, "bottom": 2065, "left": 3395}, {"solidity": 0.9918920822058365, "top": 2090, "right": 5190, "bottom": 3475, "left": 3370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727623f.jpg"} -{"rects": [{"solidity": 0.9949732137750465, "top": 3745, "right": 2985, "bottom": 5420, "left": 525}, {"solidity": 0.9939745134740134, "top": 1970, "right": 3055, "bottom": 3635, "left": 595}, {"solidity": 0.9968842498831594, "top": 275, "right": 3030, "bottom": 1865, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734109f.jpg"} -{"rects": [{"solidity": 0.9949738361864426, "top": 825, "right": 2160, "bottom": 3245, "left": 545}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722100f.jpg"} -{"rects": [{"solidity": 0.9949739533088945, "top": 465, "right": 3095, "bottom": 2095, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720277f.jpg"} -{"rects": [{"solidity": 0.9949742958916185, "top": 1190, "right": 2935, "bottom": 2795, "left": 545}, {"solidity": 0.9973723835525772, "top": 1205, "right": 5605, "bottom": 2785, "left": 3190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734308f.jpg"} -{"rects": [{"solidity": 0.9949745695016027, "top": 455, "right": 3120, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720595f.jpg"} -{"rects": [{"solidity": 0.9949754836581971, "top": 2180, "right": 2225, "bottom": 3620, "left": 415}, {"solidity": 0.9971170516327703, "top": 590, "right": 2220, "bottom": 2015, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727571f.jpg"} -{"rects": [{"solidity": 0.9949755689070643, "top": 740, "right": 2510, "bottom": 2235, "left": 415}, {"solidity": 0.9974201173785459, "top": 2550, "right": 2490, "bottom": 4030, "left": 400}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716029f.jpg"} -{"rects": [{"solidity": 0.9949761052568435, "top": 445, "right": 3120, "bottom": 1840, "left": 1300}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725632f.jpg"} -{"rects": [{"solidity": 0.9949769481252216, "top": 2430, "right": 3175, "bottom": 4055, "left": 755}, {"solidity": 0.9962816337409235, "top": 655, "right": 3155, "bottom": 2260, "left": 740}, {"solidity": 0.9946807458820273, "top": 4220, "right": 3180, "bottom": 5820, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710070f.jpg"} -{"rects": [{"solidity": 0.9949770402128438, "top": 395, "right": 3215, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725091f.jpg"} -{"rects": [{"solidity": 0.9949779089144027, "top": 500, "right": 3575, "bottom": 2325, "left": 850}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711341f.jpg"} -{"rects": [{"solidity": 0.9949781257310087, "top": 645, "right": 2665, "bottom": 2045, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705181f.jpg"} -{"rects": [{"solidity": 0.9949789829390917, "top": 455, "right": 3160, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724223f.jpg"} -{"rects": [{"solidity": 0.9949792194143219, "top": 475, "right": 3000, "bottom": 1925, "left": 1155}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727432f.jpg"} -{"rects": [{"solidity": 0.9949796153808551, "top": 720, "right": 2715, "bottom": 2115, "left": 845}, {"solidity": 0.9953257147340869, "top": 2180, "right": 2680, "bottom": 3455, "left": 910}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706741f.jpg"} -{"rects": [{"solidity": 0.9949797168639788, "top": 210, "right": 3250, "bottom": 1810, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720853f.jpg"} -{"rects": [{"solidity": 0.9949800889834356, "top": 505, "right": 3160, "bottom": 2120, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702019f.jpg"} -{"rects": [{"solidity": 0.9949803111508465, "top": 995, "right": 3505, "bottom": 5105, "left": 255}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703719f.jpg"} -{"rects": [{"solidity": 0.9949806873459272, "top": 345, "right": 3115, "bottom": 1960, "left": 710}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718836f.jpg"} -{"rects": [{"solidity": 0.9949808173749065, "top": 460, "right": 2210, "bottom": 2555, "left": 710}, {"solidity": 0.9917039032054029, "top": 460, "right": 3930, "bottom": 2550, "left": 2445}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716164f.jpg"} -{"rects": [{"solidity": 0.994981067900759, "top": 370, "right": 2405, "bottom": 1560, "left": 610}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/712597f.jpg"} -{"rects": [{"solidity": 0.9949812155899393, "top": 2210, "right": 3140, "bottom": 3905, "left": 675}, {"solidity": 0.99543103648213, "top": 385, "right": 3180, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733736f.jpg"} -{"rects": [{"solidity": 0.9949812529292298, "top": 4145, "right": 2940, "bottom": 5575, "left": 1125}, {"solidity": 0.9943661283623659, "top": 2340, "right": 2975, "bottom": 3755, "left": 1125}, {"solidity": 0.9951819206370298, "top": 545, "right": 2975, "bottom": 1940, "left": 1130}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725724f.jpg"} -{"rects": [{"solidity": 0.9949817636255465, "top": 425, "right": 3255, "bottom": 2030, "left": 825}, {"solidity": 0.9963320488452626, "top": 2310, "right": 3255, "bottom": 3915, "left": 835}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700965f.jpg"} -{"rects": [{"solidity": 0.9949819702729378, "top": 2090, "right": 2750, "bottom": 3515, "left": 935}, {"solidity": 0.9944484424796957, "top": 660, "right": 2740, "bottom": 2085, "left": 920}, {"solidity": 0.9970313992300346, "top": 670, "right": 5215, "bottom": 2090, "left": 3410}, {"solidity": 0.9938303215323255, "top": 2100, "right": 5215, "bottom": 3525, "left": 3410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727272f.jpg"} -{"rects": [{"solidity": 0.9949824311010255, "top": 585, "right": 3315, "bottom": 2480, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712344f.jpg"} -{"rects": [{"solidity": 0.9949827102498858, "top": 450, "right": 3255, "bottom": 2065, "left": 845}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725176f.jpg"} -{"rects": [{"solidity": 0.9949832419941199, "top": 445, "right": 3330, "bottom": 2360, "left": 545}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706216f.jpg"} -{"rects": [{"solidity": 0.9949835027944246, "top": 585, "right": 2675, "bottom": 2010, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703783f.jpg"} -{"rects": [{"solidity": 0.9949836380381322, "top": 800, "right": 2030, "bottom": 3205, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721630f.jpg"} -{"rects": [{"solidity": 0.9949836616449561, "top": 955, "right": 1980, "bottom": 2950, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720516f.jpg"} -{"rects": [{"solidity": 0.9949840900096844, "top": 2310, "right": 3090, "bottom": 3930, "left": 665}, {"solidity": 0.9968336109449035, "top": 430, "right": 3080, "bottom": 2035, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710761f.jpg"} -{"rects": [{"solidity": 0.9949841552453778, "top": 425, "right": 3050, "bottom": 2010, "left": 655}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729542f.jpg"} -{"rects": [{"solidity": 0.9949845064729874, "top": 705, "right": 2605, "bottom": 3740, "left": 555}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716603f.jpg"} -{"rects": [{"solidity": 0.9949846729105407, "top": 390, "right": 3075, "bottom": 1815, "left": 1095}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701438f.jpg"} -{"rects": [{"solidity": 0.9949849682961613, "top": 420, "right": 3295, "bottom": 2005, "left": 915}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727670f.jpg"} -{"rects": [{"solidity": 0.9949850095393841, "top": 665, "right": 2745, "bottom": 2080, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727902f.jpg"} -{"rects": [{"solidity": 0.9949855231956399, "top": 705, "right": 2035, "bottom": 3115, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705146f.jpg"} -{"rects": [{"solidity": 0.994985679131873, "top": 535, "right": 2730, "bottom": 2625, "left": 1215}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509231.jpg"} -{"rects": [{"solidity": 0.9949861954721149, "top": 950, "right": 3395, "bottom": 2175, "left": 1505}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507637.jpg"} -{"rects": [{"solidity": 0.9949862981055642, "top": 540, "right": 3000, "bottom": 1970, "left": 1140}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727610f.jpg"} -{"rects": [{"solidity": 0.9949864932924317, "top": 360, "right": 3100, "bottom": 1975, "left": 700}, {"solidity": 0.9964102850424165, "top": 2230, "right": 3090, "bottom": 3830, "left": 685}, {"solidity": 0.9957827488689649, "top": 4145, "right": 3070, "bottom": 5735, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734130f.jpg"} -{"rects": [{"solidity": 0.9949873970473082, "top": 1080, "right": 3625, "bottom": 5080, "left": 310}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732740f.jpg"} -{"rects": [{"solidity": 0.9949874428298927, "top": 435, "right": 3200, "bottom": 3740, "left": 575}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714452f.jpg"} -{"rects": [{"solidity": 0.9949878890110918, "top": 365, "right": 3155, "bottom": 2010, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707834f.jpg"} -{"rects": [{"solidity": 0.9949879254567823, "top": 465, "right": 2965, "bottom": 1860, "left": 1160}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726231f.jpg"} -{"rects": [{"solidity": 0.9949885431999962, "top": 680, "right": 2805, "bottom": 3490, "left": 890}, {"solidity": 0.9954639105941341, "top": 710, "right": 5210, "bottom": 3480, "left": 3300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726351f.jpg"} -{"rects": [{"solidity": 0.994989080880655, "top": 4145, "right": 3105, "bottom": 5745, "left": 700}, {"solidity": 0.9932885906040269, "top": 2300, "right": 3110, "bottom": 3900, "left": 710}, {"solidity": 0.9950303864922312, "top": 495, "right": 3125, "bottom": 2085, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731297f.jpg"} -{"rects": [{"solidity": 0.9949891590098958, "top": 430, "right": 3260, "bottom": 2355, "left": 485}, {"solidity": 0.9953343327759518, "top": 2555, "right": 2795, "bottom": 3995, "left": 945}, {"solidity": 0.9737751248384517, "top": 4185, "right": 2780, "bottom": 5620, "left": 930}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706033f.jpg"} -{"rects": [{"solidity": 0.9949900026164397, "top": 830, "right": 3835, "bottom": 3255, "left": 2210}, {"solidity": 0.9958046870426621, "top": 830, "right": 5700, "bottom": 3245, "left": 4090}, {"solidity": 0.9959984110859316, "top": 845, "right": 1965, "bottom": 3260, "left": 360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728716f.jpg"} -{"rects": [{"solidity": 0.9949900173112795, "top": 880, "right": 2770, "bottom": 4425, "left": 320}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508743.jpg"} -{"rects": [{"solidity": 0.994990271430326, "top": 2235, "right": 3150, "bottom": 3860, "left": 735}, {"solidity": 0.9973241765063351, "top": 405, "right": 3160, "bottom": 2000, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728553f.jpg"} -{"rects": [{"solidity": 0.994990524985963, "top": 420, "right": 2900, "bottom": 1935, "left": 990}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700360f.jpg"} -{"rects": [{"solidity": 0.9949908353225032, "top": 2220, "right": 3155, "bottom": 3850, "left": 725}, {"solidity": 0.9951978928814645, "top": 590, "right": 3075, "bottom": 1990, "left": 1265}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727575f.jpg"} -{"rects": [{"solidity": 0.994991258565601, "top": 445, "right": 2985, "bottom": 1845, "left": 1180}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725350f.jpg"} -{"rects": [{"solidity": 0.9949914156588482, "top": 2000, "right": 3280, "bottom": 3635, "left": 810}, {"solidity": 0.994691037950936, "top": 225, "right": 3245, "bottom": 1830, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710790f.jpg"} -{"rects": [{"solidity": 0.9949915306905839, "top": 2440, "right": 2505, "bottom": 3935, "left": 415}, {"solidity": 0.995634452735811, "top": 700, "right": 2515, "bottom": 2185, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716125f.jpg"} -{"rects": [{"solidity": 0.9949915880816399, "top": 400, "right": 2915, "bottom": 1625, "left": 1020}, {"solidity": 0.9933705403386298, "top": 1970, "right": 2885, "bottom": 3080, "left": 1025}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701464f.jpg"} -{"rects": [{"solidity": 0.9949917565162776, "top": 2155, "right": 3150, "bottom": 3765, "left": 740}, {"solidity": 0.9974489125003287, "top": 355, "right": 3170, "bottom": 1950, "left": 770}, {"solidity": 0.9969986375613348, "top": 3995, "right": 3130, "bottom": 5580, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717990f.jpg"} -{"rects": [{"solidity": 0.9949929006767099, "top": 465, "right": 5310, "bottom": 2050, "left": 3290}, {"solidity": 0.9796652870253734, "top": 2165, "right": 5245, "bottom": 3740, "left": 3365}, {"solidity": 0.9830859799701231, "top": 2165, "right": 2745, "bottom": 3710, "left": 885}, {"solidity": 0.9667211665930181, "top": 470, "right": 2755, "bottom": 2010, "left": 890}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708712f.jpg"} -{"rects": [{"solidity": 0.994994064958124, "top": 420, "right": 3115, "bottom": 2010, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729920f.jpg"} -{"rects": [{"solidity": 0.9949946564868949, "top": 710, "right": 5245, "bottom": 3555, "left": 3190}, {"solidity": 0.9967810062897227, "top": 865, "right": 2475, "bottom": 3270, "left": 885}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730715f.jpg"} -{"rects": [{"solidity": 0.9949948659168517, "top": 625, "right": 5050, "bottom": 2070, "left": 3190}, {"solidity": 0.9952633463321173, "top": 655, "right": 2815, "bottom": 2070, "left": 975}, {"solidity": 0.9963755299818292, "top": 2275, "right": 5050, "bottom": 3690, "left": 3210}, {"solidity": 0.9953404253255884, "top": 2260, "right": 2810, "bottom": 3675, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725573f.jpg"} -{"rects": [{"solidity": 0.9949949209542689, "top": 590, "right": 2745, "bottom": 2005, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702593f.jpg"} -{"rects": [{"solidity": 0.9949954635367743, "top": 2180, "right": 3155, "bottom": 3830, "left": 720}, {"solidity": 0.9948104002606317, "top": 415, "right": 3165, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720208f.jpg"} -{"rects": [{"solidity": 0.9949956990575947, "top": 650, "right": 2750, "bottom": 2095, "left": 905}, {"solidity": 0.9956541857680546, "top": 2160, "right": 2750, "bottom": 3600, "left": 910}, {"solidity": 0.9954386352396637, "top": 630, "right": 5290, "bottom": 2065, "left": 3450}, {"solidity": 0.9944858728159924, "top": 2135, "right": 5295, "bottom": 3540, "left": 3465}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705009f.jpg"} -{"rects": [{"solidity": 0.9949957119868437, "top": 2210, "right": 3085, "bottom": 3855, "left": 635}, {"solidity": 0.9956990430451681, "top": 375, "right": 3100, "bottom": 2010, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732841f.jpg"} -{"rects": [{"solidity": 0.9949957643031186, "top": 425, "right": 3030, "bottom": 1860, "left": 1010}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708180f.jpg"} -{"rects": [{"solidity": 0.9949958381887798, "top": 825, "right": 2035, "bottom": 3215, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714257f.jpg"} -{"rects": [{"solidity": 0.9949960700083269, "top": 460, "right": 3615, "bottom": 2275, "left": 915}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706445f.jpg"} -{"rects": [{"solidity": 0.994996238160512, "top": 370, "right": 3825, "bottom": 2830, "left": 830}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/715834f.jpg"} -{"rects": [{"solidity": 0.9949968061270481, "top": 425, "right": 3335, "bottom": 2045, "left": 920}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727258f.jpg"} -{"rects": [{"solidity": 0.994996830350612, "top": 575, "right": 3075, "bottom": 2005, "left": 1260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727409f.jpg"} -{"rects": [{"solidity": 0.9949970063387523, "top": 2330, "right": 2985, "bottom": 5365, "left": 430}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714773f.jpg"} -{"rects": [{"solidity": 0.9949973582306164, "top": 525, "right": 3065, "bottom": 3975, "left": 875}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713152f.jpg"} -{"rects": [{"solidity": 0.9949977700129308, "top": 345, "right": 3150, "bottom": 1975, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729559f.jpg"} -{"rects": [{"solidity": 0.994997970536972, "top": 2160, "right": 5210, "bottom": 3765, "left": 3220}, {"solidity": 0.9948852285400236, "top": 490, "right": 5160, "bottom": 2090, "left": 3180}, {"solidity": 0.9965089372818086, "top": 500, "right": 2955, "bottom": 2095, "left": 980}, {"solidity": 0.9963133863603363, "top": 2175, "right": 2975, "bottom": 3770, "left": 1010}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708731f.jpg"} -{"rects": [{"solidity": 0.994998232099511, "top": 3420, "right": 3750, "bottom": 5405, "left": 550}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728949f.jpg"} -{"rects": [{"solidity": 0.9949984056162482, "top": 685, "right": 3250, "bottom": 2590, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733286f.jpg"} -{"rects": [{"solidity": 0.9949985355355483, "top": 3975, "right": 3110, "bottom": 5635, "left": 665}, {"solidity": 0.996872706385423, "top": 2225, "right": 3100, "bottom": 3850, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734112f.jpg"} -{"rects": [{"solidity": 0.9949987680906686, "top": 345, "right": 3225, "bottom": 1980, "left": 790}, {"solidity": 0.9951580792103449, "top": 2215, "right": 3220, "bottom": 3835, "left": 790}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/731396f.jpg"} -{"rects": [{"solidity": 0.9949991887067986, "top": 420, "right": 3215, "bottom": 2070, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705162f.jpg"} -{"rects": [{"solidity": 0.994999772273298, "top": 800, "right": 4010, "bottom": 3215, "left": 2395}, {"solidity": 0.9954819476209992, "top": 785, "right": 5765, "bottom": 3180, "left": 4170}, {"solidity": 0.9949748743718593, "top": 820, "right": 2245, "bottom": 3215, "left": 650}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709606f.jpg"} -{"rects": [{"solidity": 0.9950000637746967, "top": 460, "right": 3140, "bottom": 2110, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708018f.jpg"} -{"rects": [{"solidity": 0.9950004463887153, "top": 665, "right": 2750, "bottom": 2070, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730977f.jpg"} -{"rects": [{"solidity": 0.9950006729863288, "top": 2180, "right": 3265, "bottom": 3820, "left": 820}, {"solidity": 0.9967226917970141, "top": 365, "right": 3265, "bottom": 1975, "left": 845}, {"solidity": 0.9946790111883003, "top": 4045, "right": 3245, "bottom": 5675, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725669f.jpg"} -{"rects": [{"solidity": 0.9950018984275782, "top": 1145, "right": 3140, "bottom": 2760, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708178f.jpg"} -{"rects": [{"solidity": 0.99500226857135, "top": 420, "right": 3550, "bottom": 2835, "left": 480}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732976f.jpg"} -{"rects": [{"solidity": 0.9950026343940096, "top": 400, "right": 3240, "bottom": 2050, "left": 795}, {"solidity": 0.9953127199662132, "top": 2270, "right": 3210, "bottom": 3915, "left": 770}, {"solidity": 0.9956975516791099, "top": 4110, "right": 3190, "bottom": 5745, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734685f.jpg"} -{"rects": [{"solidity": 0.9950027994619884, "top": 770, "right": 2085, "bottom": 3210, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723452f.jpg"} -{"rects": [{"solidity": 0.9950029052876235, "top": 400, "right": 3215, "bottom": 1990, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712078f.jpg"} -{"rects": [{"solidity": 0.995003622373779, "top": 1060, "right": 1590, "bottom": 3090, "left": 340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720349f.jpg"} -{"rects": [{"solidity": 0.9950040242633635, "top": 485, "right": 3140, "bottom": 2100, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713171f.jpg"} -{"rects": [{"solidity": 0.9950042834494733, "top": 415, "right": 3185, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700411f.jpg"} -{"rects": [{"solidity": 0.995004407875404, "top": 420, "right": 3190, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724511f.jpg"} -{"rects": [{"solidity": 0.995004413623793, "top": 605, "right": 3375, "bottom": 2510, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713590f.jpg"} -{"rects": [{"solidity": 0.9950045213480949, "top": 465, "right": 2990, "bottom": 1875, "left": 1145}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728259f.jpg"} -{"rects": [{"solidity": 0.9950049696103876, "top": 650, "right": 3125, "bottom": 2570, "left": 510}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700627f.jpg"} -{"rects": [{"solidity": 0.99500518784837, "top": 555, "right": 3080, "bottom": 2000, "left": 1250}, {"solidity": 0.9959571811056527, "top": 2370, "right": 3070, "bottom": 3800, "left": 1255}, {"solidity": 0.9948429464973996, "top": 4155, "right": 3070, "bottom": 5590, "left": 1260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726871f.jpg"} -{"rects": [{"solidity": 0.9950053082890976, "top": 285, "right": 3180, "bottom": 1905, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712435f.jpg"} -{"rects": [{"solidity": 0.995005372317911, "top": 370, "right": 3080, "bottom": 1985, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729859f.jpg"} -{"rects": [{"solidity": 0.9950057105247876, "top": 525, "right": 2920, "bottom": 1965, "left": 1090}, {"solidity": 0.9946743418798398, "top": 2415, "right": 2915, "bottom": 3850, "left": 1075}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725595f.jpg"} -{"rects": [{"solidity": 0.9950057245704217, "top": 2105, "right": 2710, "bottom": 3560, "left": 855}, {"solidity": 0.9956834668278676, "top": 650, "right": 2715, "bottom": 2100, "left": 870}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704589f.jpg"} -{"rects": [{"solidity": 0.9950061179070014, "top": 2300, "right": 3160, "bottom": 3950, "left": 715}, {"solidity": 0.9931075028177386, "top": 420, "right": 3175, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708906f.jpg"} -{"rects": [{"solidity": 0.9950061182259067, "top": 1825, "right": 3210, "bottom": 3455, "left": 765}, {"solidity": 0.9958922498080038, "top": 165, "right": 3215, "bottom": 1775, "left": 785}, {"solidity": 0.9973559968416121, "top": 3520, "right": 2795, "bottom": 5915, "left": 1190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734150f.jpg"} -{"rects": [{"solidity": 0.9950066385729954, "top": 895, "right": 5750, "bottom": 3320, "left": 4125}, {"solidity": 0.9961777629313667, "top": 895, "right": 3895, "bottom": 3320, "left": 2275}, {"solidity": 0.9945073418638183, "top": 900, "right": 2015, "bottom": 3325, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731233f.jpg"} -{"rects": [{"solidity": 0.9950072020973032, "top": 595, "right": 4960, "bottom": 3630, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709815f.jpg"} -{"rects": [{"solidity": 0.9950075478772212, "top": 620, "right": 2675, "bottom": 2035, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704326f.jpg"} -{"rects": [{"solidity": 0.9950076707535089, "top": 410, "right": 3230, "bottom": 2065, "left": 785}, {"solidity": 0.9965332362000434, "top": 2375, "right": 3250, "bottom": 4010, "left": 810}, {"solidity": 0.996469685834133, "top": 4245, "right": 3275, "bottom": 5875, "left": 850}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730908f.jpg"} -{"rects": [{"solidity": 0.995007975423879, "top": 2245, "right": 5020, "bottom": 3670, "left": 3205}, {"solidity": 0.9950654970066979, "top": 605, "right": 2820, "bottom": 2005, "left": 995}, {"solidity": 0.9954630624328579, "top": 630, "right": 5035, "bottom": 2030, "left": 3225}, {"solidity": 0.9941540045069127, "top": 2225, "right": 2805, "bottom": 3635, "left": 995}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725392f.jpg"} -{"rects": [{"solidity": 0.9950081441027115, "top": 375, "right": 3215, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732338f.jpg"} -{"rects": [{"solidity": 0.9950085051555108, "top": 440, "right": 3110, "bottom": 2015, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729218f.jpg"} -{"rects": [{"solidity": 0.9950086952593897, "top": 800, "right": 3930, "bottom": 3225, "left": 2310}, {"solidity": 0.9962285370795886, "top": 815, "right": 2050, "bottom": 3235, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728324f.jpg"} -{"rects": [{"solidity": 0.9950088089350079, "top": 435, "right": 3250, "bottom": 2050, "left": 830}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/700949f.jpg"} -{"rects": [{"solidity": 0.9950089227372756, "top": 1100, "right": 3455, "bottom": 5090, "left": 335}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711572f.jpg"} -{"rects": [{"solidity": 0.9950089811379254, "top": 1150, "right": 2090, "bottom": 3615, "left": 525}], "shape": {"h": 4665, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509661.jpg"} -{"rects": [{"solidity": 0.9950091352109269, "top": 400, "right": 3215, "bottom": 2015, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725131f.jpg"} -{"rects": [{"solidity": 0.9950094113177572, "top": 470, "right": 2390, "bottom": 1690, "left": 580}, {"solidity": 0.9947604011242583, "top": 1895, "right": 2395, "bottom": 3110, "left": 585}], "shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715839f.jpg"} -{"rects": [{"solidity": 0.9950102241485583, "top": 415, "right": 3265, "bottom": 2030, "left": 855}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711781f.jpg"} -{"rects": [{"solidity": 0.9950103426392866, "top": 480, "right": 2920, "bottom": 1900, "left": 1080}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703098f.jpg"} -{"rects": [{"solidity": 0.9950104315504766, "top": 2250, "right": 3230, "bottom": 3875, "left": 810}, {"solidity": 0.9958879094026302, "top": 4120, "right": 3215, "bottom": 5720, "left": 805}, {"solidity": 0.9960567123044389, "top": 410, "right": 3225, "bottom": 2010, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734616f.jpg"} -{"rects": [{"solidity": 0.9950110734735862, "top": 445, "right": 3155, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/717808f.jpg"} -{"rects": [{"solidity": 0.995011114693455, "top": 1140, "right": 2205, "bottom": 2190, "left": 765}, {"solidity": 0.9946173011675269, "top": 1110, "right": 3920, "bottom": 2165, "left": 2470}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517127.jpg"} -{"rects": [{"solidity": 0.9950112060009279, "top": 745, "right": 3925, "bottom": 3150, "left": 2320}, {"solidity": 0.9940633049581298, "top": 760, "right": 5770, "bottom": 3165, "left": 4175}, {"solidity": 0.9968254289550567, "top": 760, "right": 2030, "bottom": 3135, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708925f.jpg"} -{"rects": [{"solidity": 0.9950113333795247, "top": 610, "right": 2610, "bottom": 2035, "left": 790}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702977f.jpg"} -{"rects": [{"solidity": 0.9950116741133852, "top": 835, "right": 3890, "bottom": 3245, "left": 2275}, {"solidity": 0.9962876149071577, "top": 845, "right": 2015, "bottom": 3250, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730212f.jpg"} -{"rects": [{"solidity": 0.9950117647058824, "top": 490, "right": 2920, "bottom": 1920, "left": 1110}, {"solidity": 0.9948917091944275, "top": 2260, "right": 2915, "bottom": 3690, "left": 1115}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727742f.jpg"} -{"rects": [{"solidity": 0.9950124047975916, "top": 415, "right": 3305, "bottom": 2055, "left": 865}, {"solidity": 0.9981182232676538, "top": 2265, "right": 3270, "bottom": 3880, "left": 850}, {"solidity": 0.9973966370992633, "top": 4150, "right": 3200, "bottom": 5760, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725741f.jpg"} -{"rects": [{"solidity": 0.995012697632506, "top": 440, "right": 3200, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720941f.jpg"} -{"rects": [{"solidity": 0.995012893896156, "top": 1110, "right": 1835, "bottom": 2800, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714321f.jpg"} -{"rects": [{"solidity": 0.9950136721891587, "top": 2240, "right": 3190, "bottom": 3855, "left": 760}, {"solidity": 0.994589049297256, "top": 430, "right": 3190, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/716561f.jpg"} -{"rects": [{"solidity": 0.9950137336398427, "top": 2190, "right": 3130, "bottom": 3800, "left": 720}, {"solidity": 0.9960831057031703, "top": 355, "right": 3170, "bottom": 1945, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730274f.jpg"} -{"rects": [{"solidity": 0.9950138504155125, "top": 1010, "right": 2005, "bottom": 2950, "left": 505}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720991f.jpg"} -{"rects": [{"solidity": 0.9950139094177408, "top": 355, "right": 3100, "bottom": 1995, "left": 665}, {"solidity": 0.9964122307958825, "top": 2260, "right": 3080, "bottom": 3880, "left": 665}, {"solidity": 0.9949898495653532, "top": 4130, "right": 3075, "bottom": 5755, "left": 660}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724159f.jpg"} -{"rects": [{"solidity": 0.9950139165266414, "top": 990, "right": 2085, "bottom": 3400, "left": 445}, {"solidity": 0.9965812799869886, "top": 990, "right": 3910, "bottom": 3405, "left": 2290}, {"solidity": 0.9973526891543609, "top": 1035, "right": 5695, "bottom": 3395, "left": 4095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718570f.jpg"} -{"rects": [{"solidity": 0.9950139660320416, "top": 800, "right": 4015, "bottom": 3225, "left": 2385}, {"solidity": 0.9968675592333814, "top": 825, "right": 2070, "bottom": 3240, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707770f.jpg"} -{"rects": [{"solidity": 0.9950144382699015, "top": 605, "right": 4865, "bottom": 3540, "left": 1155}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732872f.jpg"} -{"rects": [{"solidity": 0.9950144772859782, "top": 665, "right": 2705, "bottom": 2060, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705489f.jpg"} -{"rects": [{"solidity": 0.9950148114276626, "top": 2195, "right": 3040, "bottom": 3620, "left": 1230}, {"solidity": 0.993073385082754, "top": 430, "right": 3070, "bottom": 1825, "left": 1245}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725073f.jpg"} -{"rects": [{"solidity": 0.9950149204820234, "top": 2270, "right": 3085, "bottom": 3670, "left": 1260}, {"solidity": 0.9957607013924703, "top": 535, "right": 3075, "bottom": 1905, "left": 1290}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727720f.jpg"} -{"rects": [{"solidity": 0.9950149452009299, "top": 420, "right": 3160, "bottom": 2005, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728378f.jpg"} -{"rects": [{"solidity": 0.9950153965545545, "top": 670, "right": 2745, "bottom": 2080, "left": 940}, {"solidity": 0.9950947524438014, "top": 2070, "right": 5215, "bottom": 3470, "left": 3425}, {"solidity": 0.9953389873962938, "top": 665, "right": 5210, "bottom": 2050, "left": 3430}, {"solidity": 0.994359726395455, "top": 2095, "right": 2725, "bottom": 3485, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726592f.jpg"} -{"rects": [{"solidity": 0.9950159719816803, "top": 620, "right": 2650, "bottom": 2065, "left": 825}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704970f.jpg"} -{"rects": [{"solidity": 0.9950161214218307, "top": 1610, "right": 1615, "bottom": 2495, "left": 150}, {"solidity": 0.9954432182271271, "top": 495, "right": 1615, "bottom": 1350, "left": 155}], "shape": {"h": 3020, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715779f.jpg"} -{"rects": [{"solidity": 0.99501655216602, "top": 1185, "right": 3020, "bottom": 2805, "left": 605}, {"solidity": 0.9953978093442931, "top": 860, "right": 5090, "bottom": 3275, "left": 3465}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734692f.jpg"} -{"rects": [{"solidity": 0.9950166589730036, "top": 1245, "right": 3425, "bottom": 4825, "left": 470}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721983f.jpg"} -{"rects": [{"solidity": 0.9950169978831984, "top": 910, "right": 3410, "bottom": 4705, "left": 440}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712896f.jpg"} -{"rects": [{"solidity": 0.9950171725392148, "top": 275, "right": 3125, "bottom": 2115, "left": 780}, {"solidity": 0.9958911515588394, "top": 4005, "right": 3080, "bottom": 5825, "left": 760}, {"solidity": 0.9956202948797266, "top": 2160, "right": 3090, "bottom": 3950, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731115f.jpg"} -{"rects": [{"solidity": 0.9950171796465763, "top": 2025, "right": 2610, "bottom": 3470, "left": 785}, {"solidity": 0.9992875894172871, "top": 575, "right": 2590, "bottom": 2000, "left": 780}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703270f.jpg"} -{"rects": [{"solidity": 0.9950176135147233, "top": 375, "right": 3365, "bottom": 2030, "left": 935}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728060f.jpg"} -{"rects": [{"solidity": 0.9950176844550247, "top": 670, "right": 2295, "bottom": 3295, "left": 380}, {"solidity": 0.9899686136514504, "top": 735, "right": 4065, "bottom": 3165, "left": 2430}, {"solidity": 0.9964509283466715, "top": 775, "right": 5795, "bottom": 3175, "left": 4200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701604f.jpg"} -{"rects": [{"solidity": 0.9950184893531936, "top": 2400, "right": 3020, "bottom": 3795, "left": 1185}, {"solidity": 0.9939105528980524, "top": 525, "right": 2990, "bottom": 1945, "left": 1170}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727621f.jpg"} -{"rects": [{"solidity": 0.9950189719272894, "top": 2215, "right": 4905, "bottom": 3665, "left": 3080}, {"solidity": 0.9951229484259096, "top": 630, "right": 4895, "bottom": 2065, "left": 3090}, {"solidity": 0.9955130342676684, "top": 625, "right": 2540, "bottom": 2040, "left": 715}, {"solidity": 0.9971436832030627, "top": 2230, "right": 2545, "bottom": 3630, "left": 740}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727771f.jpg"} -{"rects": [{"solidity": 0.9950195297580551, "top": 2600, "right": 3500, "bottom": 4430, "left": 780}, {"solidity": 0.9965625606207565, "top": 4745, "right": 3480, "bottom": 6550, "left": 785}, {"solidity": 0.9612830139294448, "top": 1085, "right": 3460, "bottom": 2270, "left": 815}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711698f.jpg"} -{"rects": [{"solidity": 0.9950197382398135, "top": 4205, "right": 2920, "bottom": 5625, "left": 1115}, {"solidity": 0.9956310005554233, "top": 585, "right": 2940, "bottom": 2005, "left": 1145}, {"solidity": 0.9931497527559769, "top": 2355, "right": 2920, "bottom": 3750, "left": 1110}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727465f.jpg"} -{"rects": [{"solidity": 0.9950197532435231, "top": 635, "right": 1585, "bottom": 2440, "left": 365}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715940f.jpg"} -{"rects": [{"solidity": 0.9950202029096104, "top": 375, "right": 3265, "bottom": 1985, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725597f.jpg"} -{"rects": [{"solidity": 0.9950202720376667, "top": 430, "right": 3100, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729380f.jpg"} -{"rects": [{"solidity": 0.9950202818566685, "top": 990, "right": 3535, "bottom": 5050, "left": 315}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702381f.jpg"} -{"rects": [{"solidity": 0.9950209981831359, "top": 310, "right": 3260, "bottom": 2140, "left": 470}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719172f.jpg"} -{"rects": [{"solidity": 0.9950211730708134, "top": 2185, "right": 2960, "bottom": 3665, "left": 995}, {"solidity": 0.9942608057584122, "top": 415, "right": 2950, "bottom": 1900, "left": 990}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719023f.jpg"} -{"rects": [{"solidity": 0.995021948825506, "top": 460, "right": 3150, "bottom": 2105, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726855f.jpg"} -{"rects": [{"solidity": 0.9950220613191537, "top": 455, "right": 3535, "bottom": 2260, "left": 820}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711202f.jpg"} -{"rects": [{"solidity": 0.9950221086446654, "top": 275, "right": 5145, "bottom": 3535, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725869f.jpg"} -{"rects": [{"solidity": 0.9950221416681128, "top": 800, "right": 2010, "bottom": 3230, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707796f.jpg"} -{"rects": [{"solidity": 0.9950221561014277, "top": 1030, "right": 3640, "bottom": 3115, "left": 390}, {"solidity": 0.9974569168417547, "top": 3470, "right": 3630, "bottom": 5505, "left": 375}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/724974f.jpg"} -{"rects": [{"solidity": 0.9950225322282686, "top": 565, "right": 2785, "bottom": 2950, "left": 1190}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708188f.jpg"} -{"rects": [{"solidity": 0.9950226986818356, "top": 390, "right": 3190, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719994f.jpg"} -{"rects": [{"solidity": 0.9950229015112548, "top": 720, "right": 5275, "bottom": 2135, "left": 3455}, {"solidity": 0.9952955474316629, "top": 2180, "right": 2610, "bottom": 3595, "left": 790}, {"solidity": 0.9960269519010716, "top": 715, "right": 2615, "bottom": 2125, "left": 795}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726021f.jpg"} -{"rects": [{"solidity": 0.995023431174503, "top": 2175, "right": 2770, "bottom": 3760, "left": 810}, {"solidity": 0.9921663038213955, "top": 2205, "right": 5335, "bottom": 3735, "left": 3570}, {"solidity": 0.991483835149256, "top": 375, "right": 2500, "bottom": 2125, "left": 1035}, {"solidity": 0.9940895391472414, "top": 380, "right": 5225, "bottom": 1970, "left": 3665}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723774f.jpg"} -{"rects": [{"solidity": 0.9950235279211105, "top": 475, "right": 2950, "bottom": 1995, "left": 1045}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701994f.jpg"} -{"rects": [{"solidity": 0.995023874848309, "top": 415, "right": 3155, "bottom": 2010, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710336f.jpg"} -{"rects": [{"solidity": 0.9950239096600036, "top": 2255, "right": 3075, "bottom": 3925, "left": 630}, {"solidity": 0.9954499755097832, "top": 405, "right": 3050, "bottom": 2015, "left": 620}, {"solidity": 0.9952113005509928, "top": 4135, "right": 3045, "bottom": 5745, "left": 630}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731817f.jpg"} -{"rects": [{"solidity": 0.9950243087615807, "top": 425, "right": 5270, "bottom": 3505, "left": 1450}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733435f.jpg"} -{"rects": [{"solidity": 0.9950245817316105, "top": 555, "right": 4915, "bottom": 3520, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712656f.jpg"} -{"rects": [{"solidity": 0.9950258110269985, "top": 2310, "right": 3125, "bottom": 3915, "left": 725}, {"solidity": 0.9943972462282115, "top": 4100, "right": 3120, "bottom": 5690, "left": 725}, {"solidity": 0.9956429154211002, "top": 555, "right": 3115, "bottom": 2140, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721097f.jpg"} -{"rects": [{"solidity": 0.9950258412809116, "top": 885, "right": 3870, "bottom": 3280, "left": 2270}, {"solidity": 0.9968356118706235, "top": 900, "right": 5525, "bottom": 3285, "left": 3940}, {"solidity": 0.9947473736868434, "top": 890, "right": 2190, "bottom": 3255, "left": 610}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708762f.jpg"} -{"rects": [{"solidity": 0.9950258905435495, "top": 450, "right": 3070, "bottom": 1980, "left": 1145}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705821f.jpg"} -{"rects": [{"solidity": 0.9950260393823323, "top": 385, "right": 3065, "bottom": 1995, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729961f.jpg"} -{"rects": [{"solidity": 0.9950260804769001, "top": 855, "right": 3800, "bottom": 3320, "left": 510}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710381f.jpg"} -{"rects": [{"solidity": 0.995026276583553, "top": 385, "right": 3095, "bottom": 1995, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728419f.jpg"} -{"rects": [{"solidity": 0.995026447443848, "top": 760, "right": 3925, "bottom": 3160, "left": 2310}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717790f.jpg"} -{"rects": [{"solidity": 0.9950267013027145, "top": 875, "right": 3375, "bottom": 2710, "left": 1935}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706284f.jpg"} -{"rects": [{"solidity": 0.9950271247739603, "top": 670, "right": 2695, "bottom": 2075, "left": 870}, {"solidity": 0.9986066000545459, "top": 2150, "right": 2685, "bottom": 3565, "left": 890}, {"solidity": 0.998638131314405, "top": 670, "right": 5260, "bottom": 2065, "left": 3470}, {"solidity": 0.9943365695792881, "top": 2190, "right": 5265, "bottom": 3575, "left": 3470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704018f.jpg"} -{"rects": [{"solidity": 0.9950274559634872, "top": 770, "right": 2035, "bottom": 3185, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719163f.jpg"} -{"rects": [{"solidity": 0.9950274840322224, "top": 730, "right": 1975, "bottom": 3130, "left": 380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730343f.jpg"} -{"rects": [{"solidity": 0.9950284067785573, "top": 415, "right": 3185, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700375f.jpg"} -{"rects": [{"solidity": 0.9950290864009155, "top": 385, "right": 2430, "bottom": 1570, "left": 640}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/712523f.jpg"} -{"rects": [{"solidity": 0.9950295787823291, "top": 450, "right": 3210, "bottom": 2060, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724876f.jpg"} -{"rects": [{"solidity": 0.9950296185843376, "top": 250, "right": 2055, "bottom": 1265, "left": 520}], "shape": {"h": 3960, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727217f.jpg"} -{"rects": [{"solidity": 0.9950299601941147, "top": 400, "right": 3180, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715132f.jpg"} -{"rects": [{"solidity": 0.9950302638589259, "top": 2845, "right": 2405, "bottom": 4275, "left": 375}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507546.jpg"} -{"rects": [{"solidity": 0.9950310065193194, "top": 410, "right": 3130, "bottom": 2010, "left": 740}, {"solidity": 0.9963297637575785, "top": 2310, "right": 3140, "bottom": 3900, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721117f.jpg"} -{"rects": [{"solidity": 0.9950313200362692, "top": 3240, "right": 3280, "bottom": 5145, "left": 560}, {"solidity": 0.9959780679429597, "top": 750, "right": 3270, "bottom": 2575, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713357f.jpg"} -{"rects": [{"solidity": 0.9950316096171513, "top": 845, "right": 2645, "bottom": 2330, "left": 1080}], "shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508577.jpg"} -{"rects": [{"solidity": 0.995032163873816, "top": 2115, "right": 2520, "bottom": 3530, "left": 730}, {"solidity": 0.9954779291826645, "top": 685, "right": 2550, "bottom": 2090, "left": 755}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702582f.jpg"} -{"rects": [{"solidity": 0.9950325975658756, "top": 860, "right": 5750, "bottom": 3280, "left": 4140}, {"solidity": 0.9970131887703698, "top": 865, "right": 3895, "bottom": 3275, "left": 2285}, {"solidity": 0.9980824261734077, "top": 865, "right": 2010, "bottom": 3265, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734134f.jpg"} -{"rects": [{"solidity": 0.9950327054541878, "top": 595, "right": 3045, "bottom": 2010, "left": 1230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727416f.jpg"} -{"rects": [{"solidity": 0.9950329459980122, "top": 690, "right": 3335, "bottom": 2605, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713356f.jpg"} -{"rects": [{"solidity": 0.995032977029793, "top": 590, "right": 2005, "bottom": 2525, "left": 545}], "shape": {"h": 2970, "w": 4585}, "file": "/usr/local/google/home/danvk/milstein/730196f.jpg"} -{"rects": [{"solidity": 0.9950331709788405, "top": 445, "right": 3185, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700466f.jpg"} -{"rects": [{"solidity": 0.9950333763595965, "top": 1100, "right": 3620, "bottom": 5100, "left": 305}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727037f.jpg"} -{"rects": [{"solidity": 0.9950333989780711, "top": 2200, "right": 3110, "bottom": 3785, "left": 715}, {"solidity": 0.9966099879860384, "top": 395, "right": 3100, "bottom": 1970, "left": 710}, {"solidity": 0.9947782077202191, "top": 4065, "right": 3105, "bottom": 5645, "left": 715}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/729009f.jpg"} -{"rects": [{"solidity": 0.9950334171316451, "top": 820, "right": 2080, "bottom": 3240, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712459f.jpg"} -{"rects": [{"solidity": 0.9950335248707762, "top": 2690, "right": 3245, "bottom": 4655, "left": 465}, {"solidity": 0.9390486162407935, "top": 475, "right": 3240, "bottom": 2415, "left": 500}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706793f.jpg"} -{"rects": [{"solidity": 0.9950336456683438, "top": 460, "right": 3180, "bottom": 2075, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733844f.jpg"} -{"rects": [{"solidity": 0.9950337118780678, "top": 2005, "right": 2660, "bottom": 3450, "left": 830}, {"solidity": 0.9943811662382264, "top": 615, "right": 2650, "bottom": 1985, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706712f.jpg"} -{"rects": [{"solidity": 0.9950340363798683, "top": 745, "right": 2055, "bottom": 3135, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719265f.jpg"} -{"rects": [{"solidity": 0.9950343203171004, "top": 520, "right": 4595, "bottom": 2815, "left": 1440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722731f.jpg"} -{"rects": [{"solidity": 0.9950347441166312, "top": 400, "right": 3260, "bottom": 2050, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724629f.jpg"} -{"rects": [{"solidity": 0.9950349991860654, "top": 2365, "right": 3170, "bottom": 3980, "left": 765}, {"solidity": 0.9941615436436003, "top": 440, "right": 3210, "bottom": 2085, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724179f.jpg"} -{"rects": [{"solidity": 0.995035052595633, "top": 2295, "right": 3280, "bottom": 3900, "left": 900}, {"solidity": 0.9643464853489648, "top": 475, "right": 3285, "bottom": 2045, "left": 920}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725975f.jpg"} -{"rects": [{"solidity": 0.9950351499687703, "top": 635, "right": 3295, "bottom": 2455, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713354f.jpg"} -{"rects": [{"solidity": 0.9950352564102564, "top": 2315, "right": 3255, "bottom": 3945, "left": 825}, {"solidity": 0.9951197286812999, "top": 450, "right": 3270, "bottom": 2085, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726107f.jpg"} -{"rects": [{"solidity": 0.9950353969748159, "top": 430, "right": 3165, "bottom": 2065, "left": 730}, {"solidity": 0.9962960212098803, "top": 2295, "right": 3145, "bottom": 3925, "left": 715}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/728873f.jpg"} -{"rects": [{"solidity": 0.9950355646806807, "top": 2160, "right": 2950, "bottom": 3835, "left": 500}, {"solidity": 0.9944445155591967, "top": 360, "right": 2985, "bottom": 2025, "left": 545}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734158f.jpg"} -{"rects": [{"solidity": 0.9950360759140668, "top": 665, "right": 2705, "bottom": 2075, "left": 935}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725048f.jpg"} -{"rects": [{"solidity": 0.9950363067019554, "top": 2235, "right": 2905, "bottom": 3655, "left": 1065}, {"solidity": 0.996450269642979, "top": 625, "right": 2905, "bottom": 2035, "left": 1070}, {"solidity": 0.996827116923182, "top": 2210, "right": 5095, "bottom": 3620, "left": 3265}, {"solidity": 0.9964358892227595, "top": 620, "right": 5090, "bottom": 2000, "left": 3280}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725728f.jpg"} -{"rects": [{"solidity": 0.9950363975171933, "top": 390, "right": 3230, "bottom": 2010, "left": 860}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726532f.jpg"} -{"rects": [{"solidity": 0.9950364072548313, "top": 810, "right": 2030, "bottom": 3225, "left": 420}, {"solidity": 0.995433489930681, "top": 815, "right": 3860, "bottom": 3210, "left": 2255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724080f.jpg"} -{"rects": [{"solidity": 0.995036916456418, "top": 430, "right": 3205, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719211f.jpg"} -{"rects": [{"solidity": 0.9950371722329786, "top": 425, "right": 3160, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704871f.jpg"} -{"rects": [{"solidity": 0.9950374213056198, "top": 320, "right": 2405, "bottom": 1545, "left": 595}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/706438f.jpg"} -{"rects": [{"solidity": 0.9950376126056404, "top": 490, "right": 5200, "bottom": 3540, "left": 1150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700372f.jpg"} -{"rects": [{"solidity": 0.9950383709073878, "top": 725, "right": 2625, "bottom": 2155, "left": 785}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705395f.jpg"} -{"rects": [{"solidity": 0.9950383983420439, "top": 790, "right": 5755, "bottom": 3210, "left": 4125}, {"solidity": 0.9965726738640516, "top": 795, "right": 3895, "bottom": 3210, "left": 2275}, {"solidity": 0.9967261438931497, "top": 800, "right": 2050, "bottom": 3215, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731757f.jpg"} -{"rects": [{"solidity": 0.9950384261749041, "top": 1620, "right": 2370, "bottom": 2840, "left": 555}, {"solidity": 0.9937619490443652, "top": 2975, "right": 2350, "bottom": 4195, "left": 530}, {"solidity": 0.9937882790049636, "top": 285, "right": 2380, "bottom": 1500, "left": 575}], "shape": {"h": 4445, "w": 2845}, "file": "/usr/local/google/home/danvk/milstein/732468f.jpg"} -{"rects": [{"solidity": 0.9950389848867006, "top": 475, "right": 5030, "bottom": 3720, "left": 990}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705970f.jpg"} -{"rects": [{"solidity": 0.9950396601570936, "top": 420, "right": 3170, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703725f.jpg"} -{"rects": [{"solidity": 0.995040151157298, "top": 2275, "right": 3250, "bottom": 3915, "left": 825}, {"solidity": 0.9984635709742135, "top": 445, "right": 3250, "bottom": 2045, "left": 840}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726926f.jpg"} -{"rects": [{"solidity": 0.9950402996010747, "top": 445, "right": 3160, "bottom": 2055, "left": 750}, {"solidity": 0.9951136826664494, "top": 2315, "right": 3145, "bottom": 3940, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718022f.jpg"} -{"rects": [{"solidity": 0.9950410039960842, "top": 765, "right": 2040, "bottom": 3210, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723088f.jpg"} -{"rects": [{"solidity": 0.9950415713122688, "top": 460, "right": 3260, "bottom": 2100, "left": 815}, {"solidity": 0.9972651954192023, "top": 2190, "right": 3255, "bottom": 3800, "left": 825}, {"solidity": 0.9981440732229745, "top": 3905, "right": 3235, "bottom": 5515, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733190f.jpg"} -{"rects": [{"solidity": 0.9950418639142544, "top": 705, "right": 3055, "bottom": 2155, "left": 1015}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720638f.jpg"} -{"rects": [{"solidity": 0.9950419340024345, "top": 410, "right": 2880, "bottom": 1905, "left": 985}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700439f.jpg"} -{"rects": [{"solidity": 0.9950422263679908, "top": 420, "right": 3220, "bottom": 2170, "left": 555}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702132f.jpg"} -{"rects": [{"solidity": 0.9950427920417917, "top": 795, "right": 3820, "bottom": 3235, "left": 2155}, {"solidity": 0.9959771548443626, "top": 770, "right": 1995, "bottom": 3195, "left": 350}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718848f.jpg"} -{"rects": [{"solidity": 0.9950429494181264, "top": 1420, "right": 2420, "bottom": 3910, "left": 525}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516995.jpg"} -{"rects": [{"solidity": 0.9950431918384087, "top": 2210, "right": 3080, "bottom": 3850, "left": 655}, {"solidity": 0.9969980598393173, "top": 370, "right": 3080, "bottom": 1995, "left": 670}, {"solidity": 0.9961990147022883, "top": 4115, "right": 3060, "bottom": 5735, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721553f.jpg"} -{"rects": [{"solidity": 0.9950432170505713, "top": 370, "right": 3215, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732391f.jpg"} -{"rects": [{"solidity": 0.9950432315985456, "top": 505, "right": 2885, "bottom": 1935, "left": 1070}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703580f.jpg"} -{"rects": [{"solidity": 0.9950434290030211, "top": 1275, "right": 3270, "bottom": 5275, "left": 405}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718450f.jpg"} -{"rects": [{"solidity": 0.9950434484059246, "top": 2255, "right": 5000, "bottom": 3675, "left": 3150}, {"solidity": 0.99615472381498, "top": 655, "right": 2770, "bottom": 2060, "left": 920}, {"solidity": 0.9961654501216545, "top": 2230, "right": 2765, "bottom": 3665, "left": 955}, {"solidity": 0.9937800157605975, "top": 650, "right": 4980, "bottom": 2070, "left": 3165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726648f.jpg"} -{"rects": [{"solidity": 0.9950436342181506, "top": 240, "right": 3525, "bottom": 2805, "left": 185}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718931f.jpg"} -{"rects": [{"solidity": 0.9950436425568152, "top": 745, "right": 4535, "bottom": 3155, "left": 1380}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722771f.jpg"} -{"rects": [{"solidity": 0.9950437513807379, "top": 420, "right": 3175, "bottom": 2060, "left": 750}, {"solidity": 0.9961661115213347, "top": 2290, "right": 3180, "bottom": 3915, "left": 760}, {"solidity": 0.9932254865704271, "top": 4130, "right": 3150, "bottom": 5745, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709316f.jpg"} -{"rects": [{"solidity": 0.9950438715188904, "top": 435, "right": 3145, "bottom": 2065, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714567f.jpg"} -{"rects": [{"solidity": 0.9950442905737917, "top": 495, "right": 4895, "bottom": 3495, "left": 1155}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726242f.jpg"} -{"rects": [{"solidity": 0.9950446458829643, "top": 690, "right": 3250, "bottom": 2595, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719286f.jpg"} -{"rects": [{"solidity": 0.9950446667550671, "top": 565, "right": 2715, "bottom": 1990, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704284f.jpg"} -{"rects": [{"solidity": 0.9950446939737706, "top": 2190, "right": 2720, "bottom": 3635, "left": 895}, {"solidity": 0.9944737260877742, "top": 715, "right": 2720, "bottom": 2150, "left": 895}, {"solidity": 0.9952366444699134, "top": 720, "right": 5205, "bottom": 2155, "left": 3380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726307f.jpg"} -{"rects": [{"solidity": 0.9950447962188788, "top": 2275, "right": 3145, "bottom": 3870, "left": 715}, {"solidity": 0.99587839620153, "top": 420, "right": 3130, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728876f.jpg"} -{"rects": [{"solidity": 0.9950450698121202, "top": 360, "right": 3060, "bottom": 1975, "left": 640}, {"solidity": 0.9975362593955354, "top": 2275, "right": 2940, "bottom": 3685, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723340f.jpg"} -{"rects": [{"solidity": 0.9950450939563878, "top": 900, "right": 4845, "bottom": 3090, "left": 1225}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716957f.jpg"} -{"rects": [{"solidity": 0.9950453690651683, "top": 4110, "right": 3195, "bottom": 5735, "left": 765}, {"solidity": 0.9966268551488162, "top": 2275, "right": 3200, "bottom": 3895, "left": 780}, {"solidity": 0.9955889025734103, "top": 435, "right": 3215, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731051f.jpg"} -{"rects": [{"solidity": 0.9950454115701499, "top": 410, "right": 3115, "bottom": 2010, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700766f.jpg"} -{"rects": [{"solidity": 0.9950463526853209, "top": 405, "right": 3135, "bottom": 2030, "left": 735}, {"solidity": 0.9954692408526719, "top": 2280, "right": 3145, "bottom": 3885, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730463f.jpg"} -{"rects": [{"solidity": 0.9950466219113384, "top": 2265, "right": 3145, "bottom": 3925, "left": 695}, {"solidity": 0.9955679685290412, "top": 400, "right": 3170, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713538f.jpg"} -{"rects": [{"solidity": 0.9950478013352255, "top": 530, "right": 3125, "bottom": 2135, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721272f.jpg"} -{"rects": [{"solidity": 0.995048469658605, "top": 755, "right": 2045, "bottom": 3185, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708550f.jpg"} -{"rects": [{"solidity": 0.9950489098586047, "top": 655, "right": 5705, "bottom": 3365, "left": 3835}, {"solidity": 0.9945656201368476, "top": 1060, "right": 3605, "bottom": 2855, "left": 2170}, {"solidity": 0.9814721614251103, "top": 2165, "right": 1970, "bottom": 3460, "left": 305}, {"solidity": 0.9467013260504755, "top": 640, "right": 1890, "bottom": 1910, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726200f.jpg"} -{"rects": [{"solidity": 0.9950489573899322, "top": 590, "right": 4965, "bottom": 3585, "left": 1115}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/720560f.jpg"} -{"rects": [{"solidity": 0.9950489950124439, "top": 665, "right": 4925, "bottom": 3695, "left": 1155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709951f.jpg"} -{"rects": [{"solidity": 0.9950497010019406, "top": 470, "right": 3215, "bottom": 2080, "left": 820}, {"solidity": 0.9943785678663252, "top": 2410, "right": 2960, "bottom": 3840, "left": 1115}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727909f.jpg"} -{"rects": [{"solidity": 0.9950500441744224, "top": 690, "right": 1480, "bottom": 2475, "left": 310}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716444f.jpg"} -{"rects": [{"solidity": 0.9950503449711057, "top": 2300, "right": 3070, "bottom": 3955, "left": 630}, {"solidity": 0.9962785769433291, "top": 4135, "right": 3035, "bottom": 5755, "left": 620}, {"solidity": 0.9935041958155464, "top": 445, "right": 3060, "bottom": 2070, "left": 660}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701925f.jpg"} -{"rects": [{"solidity": 0.9950503692936118, "top": 445, "right": 2240, "bottom": 2535, "left": 745}, {"solidity": 0.9934224941772234, "top": 450, "right": 3990, "bottom": 2545, "left": 2495}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716113f.jpg"} -{"rects": [{"solidity": 0.9950506557154757, "top": 2355, "right": 3030, "bottom": 3795, "left": 1200}, {"solidity": 0.995105995155934, "top": 565, "right": 3040, "bottom": 1965, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727399f.jpg"} -{"rects": [{"solidity": 0.9950506648863611, "top": 2340, "right": 3260, "bottom": 3975, "left": 825}, {"solidity": 0.9969649295313012, "top": 660, "right": 3260, "bottom": 2260, "left": 855}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733519f.jpg"} -{"rects": [{"solidity": 0.9950512632301755, "top": 2090, "right": 2810, "bottom": 3540, "left": 950}, {"solidity": 0.9961082071044298, "top": 655, "right": 2810, "bottom": 2090, "left": 955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707256f.jpg"} -{"rects": [{"solidity": 0.9950515872880168, "top": 475, "right": 3105, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721103f.jpg"} -{"rects": [{"solidity": 0.9950516806380728, "top": 770, "right": 3880, "bottom": 3180, "left": 2265}, {"solidity": 0.9981984169696652, "top": 785, "right": 2035, "bottom": 3180, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712535f.jpg"} -{"rects": [{"solidity": 0.9950521779252526, "top": 640, "right": 2710, "bottom": 2070, "left": 900}, {"solidity": 0.9918554527178801, "top": 2120, "right": 2710, "bottom": 3545, "left": 900}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704087f.jpg"} -{"rects": [{"solidity": 0.9950525725639083, "top": 2250, "right": 3240, "bottom": 3875, "left": 835}, {"solidity": 0.9962263901555706, "top": 395, "right": 3250, "bottom": 2000, "left": 855}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718379f.jpg"} -{"rects": [{"solidity": 0.9950527066252483, "top": 705, "right": 4980, "bottom": 3320, "left": 1150}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725421f.jpg"} -{"rects": [{"solidity": 0.995052799074208, "top": 820, "right": 3895, "bottom": 3255, "left": 2265}, {"solidity": 0.9947254251294434, "top": 835, "right": 5740, "bottom": 3270, "left": 4115}, {"solidity": 0.9953662512420525, "top": 795, "right": 2025, "bottom": 3215, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732197f.jpg"} -{"rects": [{"solidity": 0.9950529100529101, "top": 425, "right": 3075, "bottom": 2020, "left": 685}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728880f.jpg"} -{"rects": [{"solidity": 0.9950534449582414, "top": 580, "right": 3045, "bottom": 1990, "left": 1265}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/726979f.jpg"} -{"rects": [{"solidity": 0.9950541778922735, "top": 470, "right": 3045, "bottom": 1890, "left": 1225}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726321f.jpg"} -{"rects": [{"solidity": 0.9950546046118198, "top": 435, "right": 5085, "bottom": 3710, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704175f.jpg"} -{"rects": [{"solidity": 0.9950548488738475, "top": 1030, "right": 3015, "bottom": 2100, "left": 1375}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509615.jpg"} -{"rects": [{"solidity": 0.9950548862202003, "top": 415, "right": 3215, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701455f.jpg"} -{"rects": [{"solidity": 0.995055713517252, "top": 130, "right": 2410, "bottom": 3710, "left": 130}], "shape": {"h": 3840, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/1557833.jpg"} -{"rects": [{"solidity": 0.9950560028001401, "top": 2430, "right": 2895, "bottom": 3850, "left": 1040}, {"solidity": 0.9959898100927203, "top": 605, "right": 2905, "bottom": 2010, "left": 1075}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725529f.jpg"} -{"rects": [{"solidity": 0.9950560130868293, "top": 465, "right": 3160, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719463f.jpg"} -{"rects": [{"solidity": 0.9950562091076702, "top": 2305, "right": 3195, "bottom": 3920, "left": 790}, {"solidity": 0.9999455558239956, "top": 440, "right": 3170, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718031f.jpg"} -{"rects": [{"solidity": 0.9950566042135454, "top": 590, "right": 1550, "bottom": 2400, "left": 350}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716423f.jpg"} -{"rects": [{"solidity": 0.9950568548015837, "top": 365, "right": 2410, "bottom": 1585, "left": 605}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715915f.jpg"} -{"rects": [{"solidity": 0.9950570508855914, "top": 2385, "right": 3015, "bottom": 3810, "left": 1175}, {"solidity": 0.9968960318476986, "top": 530, "right": 3025, "bottom": 1955, "left": 1230}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/726967f.jpg"} -{"rects": [{"solidity": 0.995057399224099, "top": 380, "right": 2985, "bottom": 1980, "left": 975}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701114f.jpg"} -{"rects": [{"solidity": 0.995057595313085, "top": 445, "right": 3215, "bottom": 3060, "left": 1020}], "shape": {"h": 6870, "w": 4420}, "file": "/usr/local/google/home/danvk/milstein/708324f.jpg"} -{"rects": [{"solidity": 0.9950578564978905, "top": 2195, "right": 3120, "bottom": 3835, "left": 690}, {"solidity": 0.9703003099768992, "top": 415, "right": 2890, "bottom": 1900, "left": 995}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732062f.jpg"} -{"rects": [{"solidity": 0.9950578828607868, "top": 445, "right": 3275, "bottom": 2305, "left": 510}, {"solidity": 0.9948383133867005, "top": 2640, "right": 2985, "bottom": 4045, "left": 1150}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728271f.jpg"} -{"rects": [{"solidity": 0.9950580100536619, "top": 920, "right": 3515, "bottom": 2420, "left": 1440}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508391.jpg"} -{"rects": [{"solidity": 0.9950580945513928, "top": 390, "right": 3240, "bottom": 2005, "left": 830}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725221f.jpg"} -{"rects": [{"solidity": 0.9950582114894412, "top": 600, "right": 2705, "bottom": 2070, "left": 675}, {"solidity": 0.99378355715747, "top": 2390, "right": 2705, "bottom": 3825, "left": 680}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509315.jpg"} -{"rects": [{"solidity": 0.995058348988475, "top": 655, "right": 3255, "bottom": 2250, "left": 845}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709231f.jpg"} -{"rects": [{"solidity": 0.9950584810873275, "top": 4010, "right": 3105, "bottom": 5435, "left": 1270}, {"solidity": 0.9955452531707604, "top": 695, "right": 3100, "bottom": 2105, "left": 1275}, {"solidity": 0.9937037082986986, "top": 2480, "right": 3100, "bottom": 3600, "left": 1280}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725518f.jpg"} -{"rects": [{"solidity": 0.9950590287352268, "top": 410, "right": 3200, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720977f.jpg"} -{"rects": [{"solidity": 0.9950590932447922, "top": 665, "right": 5215, "bottom": 2090, "left": 3415}, {"solidity": 0.9941512937972019, "top": 2110, "right": 5225, "bottom": 3525, "left": 3420}, {"solidity": 0.9965824363056534, "top": 2075, "right": 2740, "bottom": 3490, "left": 940}, {"solidity": 0.9988062564406036, "top": 670, "right": 2740, "bottom": 2050, "left": 950}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728016f.jpg"} -{"rects": [{"solidity": 0.9950596125017805, "top": 595, "right": 5050, "bottom": 3400, "left": 1040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722288f.jpg"} -{"rects": [{"solidity": 0.99505963138843, "top": 745, "right": 2745, "bottom": 2085, "left": 925}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706479f.jpg"} -{"rects": [{"solidity": 0.9950599695182559, "top": 2215, "right": 3230, "bottom": 3805, "left": 835}, {"solidity": 0.9965161798893728, "top": 400, "right": 3225, "bottom": 1995, "left": 845}, {"solidity": 0.9956278097997137, "top": 4050, "right": 3225, "bottom": 5645, "left": 835}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733262f.jpg"} -{"rects": [{"solidity": 0.9950600264231145, "top": 2260, "right": 3165, "bottom": 3900, "left": 725}, {"solidity": 0.9956521181083665, "top": 415, "right": 3190, "bottom": 2040, "left": 765}, {"solidity": 0.9953129778364371, "top": 4110, "right": 3175, "bottom": 5745, "left": 740}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733885f.jpg"} -{"rects": [{"solidity": 0.9950600963073661, "top": 4115, "right": 3165, "bottom": 5750, "left": 725}, {"solidity": 0.9954835725390931, "top": 455, "right": 3175, "bottom": 2070, "left": 745}, {"solidity": 0.9966027796025091, "top": 2290, "right": 3170, "bottom": 3910, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734756f.jpg"} -{"rects": [{"solidity": 0.9950603972081773, "top": 675, "right": 2665, "bottom": 2100, "left": 840}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704077f.jpg"} -{"rects": [{"solidity": 0.9950604491612417, "top": 2440, "right": 3210, "bottom": 4090, "left": 775}, {"solidity": 0.9960439061562657, "top": 615, "right": 3160, "bottom": 2245, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710737f.jpg"} -{"rects": [{"solidity": 0.9950606641598423, "top": 480, "right": 2970, "bottom": 1875, "left": 1145}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727012f.jpg"} -{"rects": [{"solidity": 0.9950606785082019, "top": 710, "right": 3155, "bottom": 2525, "left": 555}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709989f.jpg"} -{"rects": [{"solidity": 0.9950607742341927, "top": 790, "right": 2085, "bottom": 3215, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716659f.jpg"} -{"rects": [{"solidity": 0.9950608125256233, "top": 2100, "right": 2730, "bottom": 3530, "left": 920}, {"solidity": 0.9964190588931636, "top": 660, "right": 2725, "bottom": 2080, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726739f.jpg"} -{"rects": [{"solidity": 0.9950612776301819, "top": 630, "right": 4970, "bottom": 2065, "left": 3110}, {"solidity": 0.9949198079427866, "top": 2255, "right": 2850, "bottom": 3700, "left": 1025}, {"solidity": 0.9943865972178723, "top": 660, "right": 2845, "bottom": 2085, "left": 1000}, {"solidity": 0.9942532155217724, "top": 2235, "right": 4950, "bottom": 3640, "left": 3135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728270f.jpg"} -{"rects": [{"solidity": 0.9950623003584405, "top": 645, "right": 2525, "bottom": 2135, "left": 435}, {"solidity": 0.9937197419606599, "top": 2365, "right": 2515, "bottom": 3865, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716232f.jpg"} -{"rects": [{"solidity": 0.9950624643616194, "top": 820, "right": 3850, "bottom": 3240, "left": 2220}, {"solidity": 0.9968922358236884, "top": 820, "right": 1995, "bottom": 3220, "left": 385}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712693f.jpg"} -{"rects": [{"solidity": 0.9950626893104645, "top": 3115, "right": 3335, "bottom": 5055, "left": 525}, {"solidity": 0.9934161949298548, "top": 745, "right": 3335, "bottom": 2670, "left": 545}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726349f.jpg"} -{"rects": [{"solidity": 0.9950627549827197, "top": 415, "right": 3165, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/718041f.jpg"} -{"rects": [{"solidity": 0.9950627926568837, "top": 570, "right": 5615, "bottom": 2200, "left": 3200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731299f.jpg"} -{"rects": [{"solidity": 0.9950635016142285, "top": 420, "right": 5075, "bottom": 3805, "left": 1045}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703594f.jpg"} -{"rects": [{"solidity": 0.9950637897320103, "top": 790, "right": 4770, "bottom": 3395, "left": 1320}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701184f.jpg"} -{"rects": [{"solidity": 0.9950639978213508, "top": 645, "right": 2920, "bottom": 2090, "left": 1105}, {"solidity": 0.9955169652100874, "top": 2265, "right": 2915, "bottom": 3700, "left": 1110}, {"solidity": 0.9948596613771189, "top": 2275, "right": 5135, "bottom": 3700, "left": 3330}, {"solidity": 0.9948614479386156, "top": 675, "right": 5120, "bottom": 2080, "left": 3310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727791f.jpg"} -{"rects": [{"solidity": 0.9950640692375914, "top": 445, "right": 2935, "bottom": 1575, "left": 1100}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704919f.jpg"} -{"rects": [{"solidity": 0.9950643134908764, "top": 2250, "right": 3160, "bottom": 3915, "left": 700}, {"solidity": 0.9954508280515232, "top": 480, "right": 3165, "bottom": 2135, "left": 720}, {"solidity": 0.9940957844929217, "top": 4025, "right": 3115, "bottom": 5670, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710732f.jpg"} -{"rects": [{"solidity": 0.9950647075245561, "top": 420, "right": 3190, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730888f.jpg"} -{"rects": [{"solidity": 0.9950647138203964, "top": 860, "right": 3825, "bottom": 3295, "left": 2185}, {"solidity": 0.9976518592655323, "top": 845, "right": 1990, "bottom": 3265, "left": 365}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717988f.jpg"} -{"rects": [{"solidity": 0.9950657788304116, "top": 410, "right": 3150, "bottom": 2030, "left": 740}, {"solidity": 0.9966314272302332, "top": 4145, "right": 3130, "bottom": 5740, "left": 735}, {"solidity": 0.9970317770519891, "top": 2300, "right": 3115, "bottom": 3890, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733601f.jpg"} -{"rects": [{"solidity": 0.9950658111872417, "top": 940, "right": 2000, "bottom": 3355, "left": 385}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717462f.jpg"} -{"rects": [{"solidity": 0.9950658724950785, "top": 540, "right": 3340, "bottom": 2410, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713819f.jpg"} -{"rects": [{"solidity": 0.9950659493793953, "top": 2475, "right": 2465, "bottom": 3970, "left": 365}, {"solidity": 0.9961375236333244, "top": 665, "right": 2480, "bottom": 2155, "left": 385}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716012f.jpg"} -{"rects": [{"solidity": 0.9950664586463516, "top": 380, "right": 3170, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704327f.jpg"} -{"rects": [{"solidity": 0.9950664795971887, "top": 810, "right": 2040, "bottom": 3235, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719914f.jpg"} -{"rects": [{"solidity": 0.9950665076478907, "top": 370, "right": 3085, "bottom": 2005, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728297f.jpg"} -{"rects": [{"solidity": 0.9950666280486491, "top": 500, "right": 3375, "bottom": 2440, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713092f.jpg"} -{"rects": [{"solidity": 0.9950669301126625, "top": 395, "right": 3120, "bottom": 1995, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728677f.jpg"} -{"rects": [{"solidity": 0.9950670921782147, "top": 2075, "right": 2880, "bottom": 3540, "left": 1005}, {"solidity": 0.9960011124003875, "top": 570, "right": 5275, "bottom": 2000, "left": 3425}, {"solidity": 0.995311936530833, "top": 2040, "right": 5255, "bottom": 3445, "left": 3470}, {"solidity": 0.9683664943992235, "top": 620, "right": 2835, "bottom": 2040, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704305f.jpg"} -{"rects": [{"solidity": 0.9950673166202414, "top": 590, "right": 2130, "bottom": 1825, "left": 355}, {"solidity": 0.9954205871663369, "top": 2045, "right": 2025, "bottom": 3070, "left": 495}], "shape": {"h": 3930, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727056f.jpg"} -{"rects": [{"solidity": 0.9950692766628865, "top": 485, "right": 3910, "bottom": 2565, "left": 2435}, {"solidity": 0.9954059090813913, "top": 495, "right": 2150, "bottom": 2560, "left": 685}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716111f.jpg"} -{"rects": [{"solidity": 0.9950692996443027, "top": 2180, "right": 2695, "bottom": 3610, "left": 890}, {"solidity": 0.9947296719469387, "top": 730, "right": 2700, "bottom": 2130, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727810f.jpg"} -{"rects": [{"solidity": 0.9950696239726085, "top": 330, "right": 3290, "bottom": 2050, "left": 630}, {"solidity": 0.9954923870722674, "top": 2085, "right": 3285, "bottom": 3830, "left": 1005}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722928f.jpg"} -{"rects": [{"solidity": 0.9950697872759181, "top": 2270, "right": 3165, "bottom": 3870, "left": 760}, {"solidity": 0.9966393502743863, "top": 580, "right": 3155, "bottom": 2175, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709347f.jpg"} -{"rects": [{"solidity": 0.9950698166898286, "top": 390, "right": 3075, "bottom": 1985, "left": 675}, {"solidity": 0.9960716383637723, "top": 2255, "right": 3060, "bottom": 3845, "left": 670}, {"solidity": 0.9956088571992334, "top": 4130, "right": 3055, "bottom": 5720, "left": 655}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729565f.jpg"} -{"rects": [{"solidity": 0.9950700297004327, "top": 635, "right": 2620, "bottom": 2030, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706058f.jpg"} -{"rects": [{"solidity": 0.9950709046454768, "top": 580, "right": 2825, "bottom": 2005, "left": 1000}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706143f.jpg"} -{"rects": [{"solidity": 0.9950710420708854, "top": 370, "right": 3090, "bottom": 2465, "left": 1590}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508097.jpg"} -{"rects": [{"solidity": 0.9950713063320022, "top": 800, "right": 1985, "bottom": 3210, "left": 380}, {"solidity": 0.9960512518023332, "top": 800, "right": 3815, "bottom": 3195, "left": 2210}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722513f.jpg"} -{"rects": [{"solidity": 0.9950715871729491, "top": 395, "right": 3065, "bottom": 1990, "left": 660}, {"solidity": 0.9964600224355314, "top": 2310, "right": 3060, "bottom": 3880, "left": 665}, {"solidity": 0.995948177015908, "top": 4150, "right": 3030, "bottom": 5720, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730612f.jpg"} -{"rects": [{"solidity": 0.9950717325879248, "top": 450, "right": 3345, "bottom": 2375, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713090f.jpg"} -{"rects": [{"solidity": 0.9950719763610385, "top": 650, "right": 2755, "bottom": 2080, "left": 925}, {"solidity": 0.9955201325923759, "top": 2055, "right": 5230, "bottom": 3475, "left": 3405}, {"solidity": 0.9964617274404538, "top": 2085, "right": 2750, "bottom": 3520, "left": 950}, {"solidity": 0.9946218608258808, "top": 675, "right": 5220, "bottom": 2040, "left": 3415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726039f.jpg"} -{"rects": [{"solidity": 0.9950720192925202, "top": 840, "right": 2095, "bottom": 3250, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712238f.jpg"} -{"rects": [{"solidity": 0.9950721576909539, "top": 2270, "right": 3045, "bottom": 3915, "left": 600}, {"solidity": 0.9954548128010247, "top": 400, "right": 3030, "bottom": 2015, "left": 610}, {"solidity": 0.9962081937576435, "top": 4130, "right": 3005, "bottom": 5715, "left": 610}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729042f.jpg"} -{"rects": [{"solidity": 0.9950723401781129, "top": 360, "right": 3330, "bottom": 2300, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708271f.jpg"} -{"rects": [{"solidity": 0.9950733651257361, "top": 495, "right": 3040, "bottom": 1865, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727776f.jpg"} -{"rects": [{"solidity": 0.9950733804417651, "top": 475, "right": 3065, "bottom": 1895, "left": 1260}, {"solidity": 0.9869356397760684, "top": 2285, "right": 3055, "bottom": 3710, "left": 1245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727531f.jpg"} -{"rects": [{"solidity": 0.9950733993544454, "top": 825, "right": 5760, "bottom": 3210, "left": 4170}, {"solidity": 0.994451261804407, "top": 805, "right": 2080, "bottom": 3185, "left": 490}, {"solidity": 0.995337140821088, "top": 820, "right": 3905, "bottom": 3205, "left": 2360}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731682f.jpg"} -{"rects": [{"solidity": 0.9950736549444424, "top": 3395, "right": 3135, "bottom": 5045, "left": 685}, {"solidity": 0.995915922106199, "top": 815, "right": 3150, "bottom": 2435, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719031f.jpg"} -{"rects": [{"solidity": 0.9950738668384188, "top": 645, "right": 2675, "bottom": 2065, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705084f.jpg"} -{"rects": [{"solidity": 0.9950739905361721, "top": 1590, "right": 3160, "bottom": 3180, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730874f.jpg"} -{"rects": [{"solidity": 0.9950747744605134, "top": 770, "right": 3930, "bottom": 3190, "left": 2300}, {"solidity": 0.9953798684514269, "top": 770, "right": 5765, "bottom": 3185, "left": 4145}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712297f.jpg"} -{"rects": [{"solidity": 0.9950750619630405, "top": 795, "right": 3910, "bottom": 3225, "left": 2295}, {"solidity": 0.9949176879369638, "top": 815, "right": 5740, "bottom": 3225, "left": 4125}, {"solidity": 0.9918309722019376, "top": 800, "right": 2075, "bottom": 3215, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720709f.jpg"} -{"rects": [{"solidity": 0.9950757013769668, "top": 3375, "right": 2660, "bottom": 5470, "left": 1790}, {"solidity": 0.9852132024977699, "top": 805, "right": 2735, "bottom": 2900, "left": 1875}], "shape": {"h": 6005, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465588.jpg"} -{"rects": [{"solidity": 0.9950757235212868, "top": 395, "right": 2940, "bottom": 2000, "left": 1010}, {"solidity": 0.9934109895281797, "top": 4075, "right": 3000, "bottom": 5625, "left": 1030}, {"solidity": 0.9936571955496953, "top": 2270, "right": 2985, "bottom": 3795, "left": 1030}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/710376f.jpg"} -{"rects": [{"solidity": 0.9950759576750068, "top": 425, "right": 3150, "bottom": 2065, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727721f.jpg"} -{"rects": [{"solidity": 0.9950760639640043, "top": 3075, "right": 3290, "bottom": 4995, "left": 485}, {"solidity": 0.9962450841181756, "top": 810, "right": 3305, "bottom": 2705, "left": 495}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727753f.jpg"} -{"rects": [{"solidity": 0.9950764995500027, "top": 710, "right": 2555, "bottom": 2190, "left": 465}, {"solidity": 0.9925045473226748, "top": 2435, "right": 2540, "bottom": 3925, "left": 450}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716223f.jpg"} -{"rects": [{"solidity": 0.9950773675399153, "top": 385, "right": 3170, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714806f.jpg"} -{"rects": [{"solidity": 0.9950773698237798, "top": 780, "right": 2005, "bottom": 3175, "left": 415}, {"solidity": 0.9933889276953279, "top": 780, "right": 3835, "bottom": 3175, "left": 2240}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716657f.jpg"} -{"rects": [{"solidity": 0.9950776992356725, "top": 465, "right": 3500, "bottom": 2270, "left": 810}], "shape": {"h": 6870, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711620f.jpg"} -{"rects": [{"solidity": 0.9950779010625943, "top": 2225, "right": 3250, "bottom": 3860, "left": 825}, {"solidity": 0.9990168557922752, "top": 390, "right": 3240, "bottom": 1980, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725960f.jpg"} -{"rects": [{"solidity": 0.9950779946025178, "top": 460, "right": 3155, "bottom": 2075, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712095f.jpg"} -{"rects": [{"solidity": 0.9950783627547578, "top": 2240, "right": 5160, "bottom": 3680, "left": 3350}, {"solidity": 0.9989547463794661, "top": 665, "right": 2880, "bottom": 2085, "left": 1065}, {"solidity": 0.9970331929893274, "top": 665, "right": 5160, "bottom": 2090, "left": 3355}, {"solidity": 0.9979493282451758, "top": 2260, "right": 2890, "bottom": 3685, "left": 1090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725676f.jpg"} -{"rects": [{"solidity": 0.9950786530118348, "top": 635, "right": 5010, "bottom": 3270, "left": 1125}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718945f.jpg"} -{"rects": [{"solidity": 0.9950790098057967, "top": 1055, "right": 2645, "bottom": 4055, "left": 210}], "shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508285.jpg"} -{"rects": [{"solidity": 0.995079294356122, "top": 2060, "right": 2770, "bottom": 3470, "left": 905}, {"solidity": 0.9942804591370034, "top": 620, "right": 2735, "bottom": 2040, "left": 875}, {"solidity": 0.9943122552203263, "top": 2030, "right": 5085, "bottom": 3465, "left": 3280}, {"solidity": 0.9957155861632233, "top": 605, "right": 5120, "bottom": 1980, "left": 3260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718099f.jpg"} -{"rects": [{"solidity": 0.9950796398218558, "top": 2230, "right": 3150, "bottom": 3865, "left": 720}, {"solidity": 0.9968833467260501, "top": 380, "right": 3150, "bottom": 1990, "left": 735}, {"solidity": 0.9955537788004953, "top": 4115, "right": 3140, "bottom": 5740, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730600f.jpg"} -{"rects": [{"solidity": 0.995079856140945, "top": 2275, "right": 3575, "bottom": 4100, "left": 865}, {"solidity": 0.995523590559846, "top": 415, "right": 3215, "bottom": 2010, "left": 1195}], "shape": {"h": 6900, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711173f.jpg"} -{"rects": [{"solidity": 0.9950798635659465, "top": 595, "right": 4985, "bottom": 3600, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713904f.jpg"} -{"rects": [{"solidity": 0.9950799366268184, "top": 295, "right": 2390, "bottom": 1515, "left": 570}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/707093f.jpg"} -{"rects": [{"solidity": 0.9950801001703421, "top": 805, "right": 2140, "bottom": 3215, "left": 540}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709666f.jpg"} -{"rects": [{"solidity": 0.9950809541465826, "top": 560, "right": 3120, "bottom": 1970, "left": 1295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726769f.jpg"} -{"rects": [{"solidity": 0.9950813114527416, "top": 2260, "right": 4890, "bottom": 3695, "left": 3095}, {"solidity": 0.9951890719645038, "top": 660, "right": 2710, "bottom": 2060, "left": 900}, {"solidity": 0.9952857865452706, "top": 2250, "right": 2695, "bottom": 3660, "left": 920}, {"solidity": 0.9960592533910226, "top": 655, "right": 4915, "bottom": 2040, "left": 3115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726236f.jpg"} -{"rects": [{"solidity": 0.995081316683841, "top": 385, "right": 3030, "bottom": 2020, "left": 580}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729903f.jpg"} -{"rects": [{"solidity": 0.9950813358877239, "top": 450, "right": 2885, "bottom": 1885, "left": 1070}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726091f.jpg"} -{"rects": [{"solidity": 0.9950814553759693, "top": 875, "right": 1850, "bottom": 2950, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700537f.jpg"} -{"rects": [{"solidity": 0.9950814848645871, "top": 860, "right": 3350, "bottom": 2295, "left": 1325}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509175.jpg"} -{"rects": [{"solidity": 0.9950815056568431, "top": 615, "right": 2960, "bottom": 2425, "left": 1740}, {"solidity": 0.9971336563288752, "top": 625, "right": 1550, "bottom": 2425, "left": 340}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715903f.jpg"} -{"rects": [{"solidity": 0.9950817320044445, "top": 695, "right": 5735, "bottom": 3070, "left": 4140}, {"solidity": 0.9953515712094698, "top": 695, "right": 3875, "bottom": 3060, "left": 2295}, {"solidity": 0.987018798828959, "top": 685, "right": 2030, "bottom": 3080, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731608f.jpg"} -{"rects": [{"solidity": 0.9950817445326375, "top": 845, "right": 2370, "bottom": 3570, "left": 565}], "shape": {"h": 4410, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711372f.jpg"} -{"rects": [{"solidity": 0.9950819367199271, "top": 2375, "right": 3085, "bottom": 4025, "left": 1005}, {"solidity": 0.9964354067885196, "top": 680, "right": 3060, "bottom": 2310, "left": 995}], "shape": {"h": 4435, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/703416f.jpg"} -{"rects": [{"solidity": 0.9950820077678549, "top": 630, "right": 2740, "bottom": 2040, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707234f.jpg"} -{"rects": [{"solidity": 0.9950823931711668, "top": 375, "right": 2795, "bottom": 2800, "left": 1160}, {"solidity": 0.9963056125776223, "top": 2975, "right": 2830, "bottom": 5395, "left": 1205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734114f.jpg"} -{"rects": [{"solidity": 0.9950826407942, "top": 850, "right": 1975, "bottom": 3250, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718003f.jpg"} -{"rects": [{"solidity": 0.9950831171797256, "top": 430, "right": 3305, "bottom": 2030, "left": 880}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725596f.jpg"} -{"rects": [{"solidity": 0.9950833997522495, "top": 400, "right": 3165, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701675f.jpg"} -{"rects": [{"solidity": 0.9950834538369158, "top": 630, "right": 2750, "bottom": 2060, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705901f.jpg"} -{"rects": [{"solidity": 0.9950837834095001, "top": 765, "right": 2055, "bottom": 3165, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720940f.jpg"} -{"rects": [{"solidity": 0.9950838024564995, "top": 755, "right": 2070, "bottom": 3200, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721033f.jpg"} -{"rects": [{"solidity": 0.9950841129588245, "top": 3960, "right": 3145, "bottom": 5565, "left": 750}, {"solidity": 0.9957671546736049, "top": 460, "right": 2930, "bottom": 1880, "left": 1095}, {"solidity": 0.9934708671582135, "top": 2240, "right": 2915, "bottom": 3660, "left": 1115}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/726968f.jpg"} -{"rects": [{"solidity": 0.9950844759882783, "top": 440, "right": 3570, "bottom": 2265, "left": 845}], "shape": {"h": 6880, "w": 4420}, "file": "/usr/local/google/home/danvk/milstein/701643f.jpg"} -{"rects": [{"solidity": 0.9950845214852966, "top": 1065, "right": 3455, "bottom": 4950, "left": 360}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720935f.jpg"} -{"rects": [{"solidity": 0.9950845552563237, "top": 2245, "right": 3210, "bottom": 3890, "left": 775}, {"solidity": 0.9939991814135762, "top": 4100, "right": 3180, "bottom": 5725, "left": 760}, {"solidity": 0.9978579287469208, "top": 420, "right": 3215, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725044f.jpg"} -{"rects": [{"solidity": 0.9950856694516307, "top": 605, "right": 3295, "bottom": 2440, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714086f.jpg"} -{"rects": [{"solidity": 0.9950860348280112, "top": 395, "right": 3200, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728763f.jpg"} -{"rects": [{"solidity": 0.9950860920617692, "top": 815, "right": 2005, "bottom": 3215, "left": 400}, {"solidity": 0.992894707396218, "top": 810, "right": 3840, "bottom": 3200, "left": 2235}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721881f.jpg"} -{"rects": [{"solidity": 0.9950864313202034, "top": 670, "right": 2750, "bottom": 3520, "left": 670}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724002f.jpg"} -{"rects": [{"solidity": 0.9950874169715598, "top": 2245, "right": 3175, "bottom": 3870, "left": 740}, {"solidity": 0.995416459872128, "top": 4055, "right": 3160, "bottom": 5675, "left": 740}, {"solidity": 0.9969121582543401, "top": 445, "right": 3165, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/733838f.jpg"} -{"rects": [{"solidity": 0.9950874818627228, "top": 390, "right": 3110, "bottom": 2020, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729033f.jpg"} -{"rects": [{"solidity": 0.9950875874091885, "top": 855, "right": 3905, "bottom": 3275, "left": 2275}, {"solidity": 0.9961033587353509, "top": 885, "right": 5745, "bottom": 3295, "left": 4120}, {"solidity": 0.9952374588045076, "top": 845, "right": 2065, "bottom": 3255, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713395f.jpg"} -{"rects": [{"solidity": 0.9950878857744401, "top": 385, "right": 3120, "bottom": 3820, "left": 620}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/714596f.jpg"} -{"rects": [{"solidity": 0.9950880782349327, "top": 630, "right": 2165, "bottom": 3295, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714069f.jpg"} -{"rects": [{"solidity": 0.9950880829215901, "top": 390, "right": 5240, "bottom": 3660, "left": 1240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726324f.jpg"} -{"rects": [{"solidity": 0.9950883090163578, "top": 620, "right": 2670, "bottom": 2055, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705226f.jpg"} -{"rects": [{"solidity": 0.9950883383801054, "top": 495, "right": 3085, "bottom": 3690, "left": 915}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713339f.jpg"} -{"rects": [{"solidity": 0.9950884507203129, "top": 2250, "right": 2735, "bottom": 3690, "left": 885}, {"solidity": 0.9950764509660158, "top": 630, "right": 2725, "bottom": 2070, "left": 900}, {"solidity": 0.9969170691604151, "top": 640, "right": 4965, "bottom": 2045, "left": 3130}, {"solidity": 0.9970812220345512, "top": 2235, "right": 4965, "bottom": 3650, "left": 3160}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727026f.jpg"} -{"rects": [{"solidity": 0.9950886952029323, "top": 635, "right": 4855, "bottom": 3650, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709882f.jpg"} -{"rects": [{"solidity": 0.9950889606352099, "top": 555, "right": 3120, "bottom": 2145, "left": 725}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720932f.jpg"} -{"rects": [{"solidity": 0.9950889840995026, "top": 545, "right": 4470, "bottom": 3645, "left": 570}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727580f.jpg"} -{"rects": [{"solidity": 0.9950892252962898, "top": 2255, "right": 5140, "bottom": 3710, "left": 3325}, {"solidity": 0.9950426573291289, "top": 640, "right": 2810, "bottom": 2085, "left": 1000}, {"solidity": 0.9952245247507028, "top": 660, "right": 5145, "bottom": 2105, "left": 3325}, {"solidity": 0.9963689744175533, "top": 2260, "right": 2810, "bottom": 3695, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725735f.jpg"} -{"rects": [{"solidity": 0.9950898184017392, "top": 855, "right": 1995, "bottom": 3255, "left": 375}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711994f.jpg"} -{"rects": [{"solidity": 0.9950900163666121, "top": 2375, "right": 3135, "bottom": 4010, "left": 715}, {"solidity": 0.9958323921021702, "top": 530, "right": 3125, "bottom": 2145, "left": 715}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724899f.jpg"} -{"rects": [{"solidity": 0.995090048446162, "top": 430, "right": 3165, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703758f.jpg"} -{"rects": [{"solidity": 0.9950904392764858, "top": 655, "right": 2775, "bottom": 2085, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727369f.jpg"} -{"rects": [{"solidity": 0.9950905100208352, "top": 1015, "right": 1745, "bottom": 2990, "left": 365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732586f.jpg"} -{"rects": [{"solidity": 0.9950912203103707, "top": 630, "right": 2710, "bottom": 2095, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718691f.jpg"} -{"rects": [{"solidity": 0.995091340210893, "top": 1545, "right": 3165, "bottom": 3185, "left": 745}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/730765f.jpg"} -{"rects": [{"solidity": 0.9950914329530404, "top": 1360, "right": 4335, "bottom": 3080, "left": 3070}, {"solidity": 0.9856687898089171, "top": 910, "right": 1765, "bottom": 1960, "left": 530}], "shape": {"h": 6010, "w": 4670}, "file": "/usr/local/google/home/danvk/milstein/464744.jpg"} -{"rects": [{"solidity": 0.9950914902670981, "top": 480, "right": 3255, "bottom": 2090, "left": 835}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726721f.jpg"} -{"rects": [{"solidity": 0.9950916619285786, "top": 415, "right": 3210, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722648f.jpg"} -{"rects": [{"solidity": 0.9950918103071984, "top": 2320, "right": 3115, "bottom": 3725, "left": 1255}, {"solidity": 0.9969996109706283, "top": 550, "right": 3105, "bottom": 1960, "left": 1265}, {"solidity": 0.997327880431293, "top": 4130, "right": 3055, "bottom": 5545, "left": 1250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727815f.jpg"} -{"rects": [{"solidity": 0.9950920981580368, "top": 625, "right": 3345, "bottom": 2550, "left": 615}, {"solidity": 0.9970737980896598, "top": 3265, "right": 3350, "bottom": 5190, "left": 620}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714564f.jpg"} -{"rects": [{"solidity": 0.9950928480403277, "top": 560, "right": 5045, "bottom": 3645, "left": 1140}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710010f.jpg"} -{"rects": [{"solidity": 0.9950939399007638, "top": 2280, "right": 3165, "bottom": 3880, "left": 755}, {"solidity": 0.9982001013471271, "top": 445, "right": 3150, "bottom": 2035, "left": 745}, {"solidity": 0.9946057927810208, "top": 4125, "right": 3160, "bottom": 5730, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720432f.jpg"} -{"rects": [{"solidity": 0.9950940531421342, "top": 560, "right": 3125, "bottom": 2140, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723777f.jpg"} -{"rects": [{"solidity": 0.9950944357866055, "top": 655, "right": 2690, "bottom": 2095, "left": 875}, {"solidity": 0.9944338887869152, "top": 2135, "right": 2680, "bottom": 3555, "left": 860}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725103f.jpg"} -{"rects": [{"solidity": 0.9950946381301291, "top": 575, "right": 2460, "bottom": 2055, "left": 530}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709994f.jpg"} -{"rects": [{"solidity": 0.9950963551626013, "top": 790, "right": 2455, "bottom": 3205, "left": 840}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722063f.jpg"} -{"rects": [{"solidity": 0.9950974395551307, "top": 500, "right": 5030, "bottom": 3625, "left": 1090}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730078f.jpg"} -{"rects": [{"solidity": 0.9950976343773434, "top": 410, "right": 3070, "bottom": 2025, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730207f.jpg"} -{"rects": [{"solidity": 0.9950976585467591, "top": 735, "right": 5105, "bottom": 3525, "left": 1035}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717752f.jpg"} -{"rects": [{"solidity": 0.9950978343294901, "top": 1080, "right": 3245, "bottom": 4935, "left": 510}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733881f.jpg"} -{"rects": [{"solidity": 0.9950978352647487, "top": 650, "right": 3340, "bottom": 2570, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714096f.jpg"} -{"rects": [{"solidity": 0.9950981194722865, "top": 350, "right": 3155, "bottom": 1980, "left": 735}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723960f.jpg"} -{"rects": [{"solidity": 0.9950989211629317, "top": 2310, "right": 3045, "bottom": 3915, "left": 655}, {"solidity": 0.9956337895614294, "top": 465, "right": 3025, "bottom": 2065, "left": 665}, {"solidity": 0.9956542423434701, "top": 4125, "right": 2995, "bottom": 5730, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717968f.jpg"} -{"rects": [{"solidity": 0.9950992544001831, "top": 390, "right": 3165, "bottom": 2045, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734500f.jpg"} -{"rects": [{"solidity": 0.9950993437664302, "top": 735, "right": 2030, "bottom": 3155, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721909f.jpg"} -{"rects": [{"solidity": 0.9950995868740133, "top": 435, "right": 3140, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718062f.jpg"} -{"rects": [{"solidity": 0.9950997321795114, "top": 825, "right": 4005, "bottom": 3240, "left": 2400}, {"solidity": 0.9983973322898413, "top": 840, "right": 2210, "bottom": 3195, "left": 640}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710089f.jpg"} -{"rects": [{"solidity": 0.9950998768922674, "top": 480, "right": 3335, "bottom": 2400, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724637f.jpg"} -{"rects": [{"solidity": 0.9951001967688484, "top": 780, "right": 2030, "bottom": 3200, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703923f.jpg"} -{"rects": [{"solidity": 0.9951004393610007, "top": 425, "right": 3105, "bottom": 2025, "left": 690}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729560f.jpg"} -{"rects": [{"solidity": 0.9951005090044699, "top": 415, "right": 3170, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733892f.jpg"} -{"rects": [{"solidity": 0.9951007864578123, "top": 480, "right": 4970, "bottom": 3705, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717677f.jpg"} -{"rects": [{"solidity": 0.9951008531443615, "top": 650, "right": 2790, "bottom": 2065, "left": 990}, {"solidity": 0.99480857877385, "top": 2095, "right": 2785, "bottom": 3500, "left": 975}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728189f.jpg"} -{"rects": [{"solidity": 0.9951010410287814, "top": 815, "right": 1985, "bottom": 3210, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722713f.jpg"} -{"rects": [{"solidity": 0.9951014034006554, "top": 825, "right": 3180, "bottom": 2520, "left": 1015}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516981.jpg"} -{"rects": [{"solidity": 0.9951016200022191, "top": 425, "right": 3320, "bottom": 2355, "left": 490}, {"solidity": 0.9891422095977875, "top": 4280, "right": 2950, "bottom": 5700, "left": 1125}, {"solidity": 0.9976992704265432, "top": 2655, "right": 2960, "bottom": 4040, "left": 1155}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727496f.jpg"} -{"rects": [{"solidity": 0.9951020198337257, "top": 440, "right": 4840, "bottom": 3690, "left": 755}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732092f.jpg"} -{"rects": [{"solidity": 0.9951020853875133, "top": 800, "right": 3885, "bottom": 3225, "left": 2255}, {"solidity": 0.9979466521929624, "top": 800, "right": 2045, "bottom": 3195, "left": 435}, {"solidity": 0.9951049936273176, "top": 815, "right": 5730, "bottom": 3235, "left": 4120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718962f.jpg"} -{"rects": [{"solidity": 0.99510214127492, "top": 495, "right": 2900, "bottom": 1905, "left": 1060}, {"solidity": 0.9962141671415475, "top": 4070, "right": 2815, "bottom": 5485, "left": 1005}, {"solidity": 0.9951436585099951, "top": 2235, "right": 2850, "bottom": 3660, "left": 1030}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704249f.jpg"} -{"rects": [{"solidity": 0.995102365196894, "top": 445, "right": 5010, "bottom": 3690, "left": 995}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717638f.jpg"} -{"rects": [{"solidity": 0.9951028552329055, "top": 680, "right": 2725, "bottom": 2070, "left": 925}, {"solidity": 0.9955099059806201, "top": 680, "right": 5235, "bottom": 2055, "left": 3440}, {"solidity": 0.9966840679584444, "top": 2100, "right": 2710, "bottom": 3475, "left": 940}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727345f.jpg"} -{"rects": [{"solidity": 0.9951030138706217, "top": 525, "right": 4010, "bottom": 2790, "left": 1120}], "shape": {"h": 2980, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1507302.jpg"} -{"rects": [{"solidity": 0.9951031319683762, "top": 2210, "right": 3215, "bottom": 3875, "left": 765}, {"solidity": 0.997923405998125, "top": 370, "right": 3225, "bottom": 1995, "left": 805}, {"solidity": 0.997633599045744, "top": 4115, "right": 3175, "bottom": 5740, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727722f.jpg"} -{"rects": [{"solidity": 0.9951036535664095, "top": 435, "right": 5085, "bottom": 3710, "left": 1035}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732904f.jpg"} -{"rects": [{"solidity": 0.9951037171625406, "top": 460, "right": 5095, "bottom": 3770, "left": 1070}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720499f.jpg"} -{"rects": [{"solidity": 0.9951038109815927, "top": 385, "right": 3155, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713526f.jpg"} -{"rects": [{"solidity": 0.9951039982155803, "top": 585, "right": 4950, "bottom": 3590, "left": 1175}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709922f.jpg"} -{"rects": [{"solidity": 0.9951040462095192, "top": 1750, "right": 2425, "bottom": 2965, "left": 610}, {"solidity": 0.9969324976170533, "top": 355, "right": 2440, "bottom": 1565, "left": 630}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715847f.jpg"} -{"rects": [{"solidity": 0.9951041746899792, "top": 600, "right": 2640, "bottom": 2045, "left": 805}, {"solidity": 0.994107597025647, "top": 2220, "right": 2600, "bottom": 3660, "left": 780}, {"solidity": 0.9946095188009466, "top": 640, "right": 4930, "bottom": 2075, "left": 3115}, {"solidity": 0.9936527298947118, "top": 2260, "right": 4915, "bottom": 3610, "left": 3100}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705265f.jpg"} -{"rects": [{"solidity": 0.9951042997020009, "top": 4125, "right": 3045, "bottom": 5745, "left": 620}, {"solidity": 0.9956984988572616, "top": 2265, "right": 3080, "bottom": 3880, "left": 655}, {"solidity": 0.994558164709258, "top": 420, "right": 3125, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732196f.jpg"} -{"rects": [{"solidity": 0.995104668940374, "top": 2255, "right": 2805, "bottom": 3690, "left": 995}, {"solidity": 0.9955087823315794, "top": 2275, "right": 4995, "bottom": 3705, "left": 3200}, {"solidity": 0.9949756477790079, "top": 670, "right": 2785, "bottom": 2095, "left": 1000}, {"solidity": 0.9967993027589108, "top": 655, "right": 4985, "bottom": 2050, "left": 3180}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727569f.jpg"} -{"rects": [{"solidity": 0.9951048779890839, "top": 450, "right": 2380, "bottom": 1870, "left": 560}, {"solidity": 0.994703899855561, "top": 2120, "right": 2370, "bottom": 3545, "left": 555}, {"solidity": 0.9938612226656818, "top": 990, "right": 3685, "bottom": 2825, "left": 2565}, {"solidity": 0.9922636334803077, "top": 2130, "right": 5660, "bottom": 3260, "left": 3825}, {"solidity": 0.9977392471756421, "top": 460, "right": 5685, "bottom": 1560, "left": 3875}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726590f.jpg"} -{"rects": [{"solidity": 0.995105269772395, "top": 780, "right": 2100, "bottom": 3170, "left": 505}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710173f.jpg"} -{"rects": [{"solidity": 0.9951053676583776, "top": 740, "right": 4230, "bottom": 3375, "left": 2390}, {"solidity": 0.9894984297328323, "top": 735, "right": 2205, "bottom": 3365, "left": 365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702089f.jpg"} -{"rects": [{"solidity": 0.9951060892015328, "top": 405, "right": 3090, "bottom": 1960, "left": 1100}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700341f.jpg"} -{"rects": [{"solidity": 0.9951061167346028, "top": 1535, "right": 1925, "bottom": 2435, "left": 790}, {"solidity": 0.9966857712434588, "top": 380, "right": 1930, "bottom": 1280, "left": 800}], "shape": {"h": 3935, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727066f.jpg"} -{"rects": [{"solidity": 0.9951061993528805, "top": 400, "right": 3170, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707031f.jpg"} -{"rects": [{"solidity": 0.9951064432630755, "top": 665, "right": 2890, "bottom": 2100, "left": 1035}, {"solidity": 0.996227968235522, "top": 695, "right": 5075, "bottom": 2125, "left": 3245}, {"solidity": 0.9950172025151264, "top": 2300, "right": 2860, "bottom": 3705, "left": 1035}, {"solidity": 0.9944331853980144, "top": 2320, "right": 5055, "bottom": 3690, "left": 3245}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726363f.jpg"} -{"rects": [{"solidity": 0.9951064840732569, "top": 340, "right": 5045, "bottom": 3645, "left": 990}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712982f.jpg"} -{"rects": [{"solidity": 0.9951068786056689, "top": 935, "right": 3860, "bottom": 3360, "left": 2225}, {"solidity": 0.9958005367589797, "top": 915, "right": 2020, "bottom": 3345, "left": 390}, {"solidity": 0.9958092119369237, "top": 945, "right": 5710, "bottom": 3375, "left": 4090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728772f.jpg"} -{"rects": [{"solidity": 0.9951071930053126, "top": 410, "right": 2565, "bottom": 1930, "left": 270}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716466f.jpg"} -{"rects": [{"solidity": 0.9951072825072944, "top": 385, "right": 3155, "bottom": 1985, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706563f.jpg"} -{"rects": [{"solidity": 0.9951080836014314, "top": 415, "right": 3300, "bottom": 2040, "left": 885}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725047f.jpg"} -{"rects": [{"solidity": 0.9951081414809811, "top": 515, "right": 2895, "bottom": 2060, "left": 990}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720256f.jpg"} -{"rects": [{"solidity": 0.995108170578092, "top": 500, "right": 2240, "bottom": 2590, "left": 760}, {"solidity": 0.9962599556613844, "top": 510, "right": 3965, "bottom": 2595, "left": 2490}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716173f.jpg"} -{"rects": [{"solidity": 0.9951082031917604, "top": 785, "right": 3855, "bottom": 3215, "left": 2245}, {"solidity": 0.9963120521488766, "top": 785, "right": 2020, "bottom": 3210, "left": 410}, {"solidity": 0.996258810712783, "top": 805, "right": 5685, "bottom": 3220, "left": 4085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733931f.jpg"} -{"rects": [{"solidity": 0.9951087978930206, "top": 1685, "right": 2435, "bottom": 2915, "left": 615}, {"solidity": 0.9987658572986625, "top": 320, "right": 2440, "bottom": 1530, "left": 625}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715819f.jpg"} -{"rects": [{"solidity": 0.9951088976436483, "top": 680, "right": 2655, "bottom": 2100, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728252f.jpg"} -{"rects": [{"solidity": 0.9951089630422829, "top": 3830, "right": 3235, "bottom": 5460, "left": 810}, {"solidity": 0.9971206241063721, "top": 350, "right": 3270, "bottom": 1945, "left": 865}, {"solidity": 0.9962699923392668, "top": 2130, "right": 3260, "bottom": 3710, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731550f.jpg"} -{"rects": [{"solidity": 0.9951092527313182, "top": 690, "right": 3240, "bottom": 2360, "left": 765}, {"solidity": 0.9953722092971937, "top": 2820, "right": 2830, "bottom": 5280, "left": 1175}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/730719f.jpg"} -{"rects": [{"solidity": 0.995109760878087, "top": 2065, "right": 2650, "bottom": 3495, "left": 845}, {"solidity": 0.9945341430899126, "top": 2085, "right": 5230, "bottom": 3495, "left": 3405}, {"solidity": 0.9955390855125301, "top": 625, "right": 2685, "bottom": 2005, "left": 835}, {"solidity": 0.9928547740359974, "top": 650, "right": 5245, "bottom": 2035, "left": 3420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731970f.jpg"} -{"rects": [{"solidity": 0.995110087791735, "top": 410, "right": 3060, "bottom": 2030, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729787f.jpg"} -{"rects": [{"solidity": 0.9951104730512709, "top": 2310, "right": 3025, "bottom": 3950, "left": 595}, {"solidity": 0.9958578619847368, "top": 455, "right": 3030, "bottom": 2085, "left": 615}, {"solidity": 0.9952710231090471, "top": 4130, "right": 2785, "bottom": 5655, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721712f.jpg"} -{"rects": [{"solidity": 0.995110779026704, "top": 445, "right": 3165, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718066f.jpg"} -{"rects": [{"solidity": 0.9951110434845889, "top": 420, "right": 3150, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730360f.jpg"} -{"rects": [{"solidity": 0.9951113843271567, "top": 1040, "right": 3345, "bottom": 2110, "left": 1710}], "shape": {"h": 3020, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509547.jpg"} -{"rects": [{"solidity": 0.9951116175209058, "top": 760, "right": 2035, "bottom": 3160, "left": 425}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712994f.jpg"} -{"rects": [{"solidity": 0.9951116642912881, "top": 2255, "right": 3085, "bottom": 3880, "left": 670}, {"solidity": 0.9962642053347017, "top": 390, "right": 3085, "bottom": 2000, "left": 685}, {"solidity": 0.9951345434345745, "top": 4120, "right": 3060, "bottom": 5740, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729379f.jpg"} -{"rects": [{"solidity": 0.995111991913173, "top": 410, "right": 3085, "bottom": 1995, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729511f.jpg"} -{"rects": [{"solidity": 0.9951121060018868, "top": 760, "right": 2005, "bottom": 3160, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713958f.jpg"} -{"rects": [{"solidity": 0.995112126225092, "top": 630, "right": 2665, "bottom": 2060, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705434f.jpg"} -{"rects": [{"solidity": 0.9951123007098801, "top": 2215, "right": 3180, "bottom": 3835, "left": 755}, {"solidity": 0.9964004980932368, "top": 420, "right": 3180, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723319f.jpg"} -{"rects": [{"solidity": 0.9951127684633279, "top": 470, "right": 3140, "bottom": 2090, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720567f.jpg"} -{"rects": [{"solidity": 0.9951130263920779, "top": 1000, "right": 3415, "bottom": 4830, "left": 420}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712897f.jpg"} -{"rects": [{"solidity": 0.9951138952719679, "top": 645, "right": 3340, "bottom": 2575, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712504f.jpg"} -{"rects": [{"solidity": 0.995114507699546, "top": 450, "right": 3550, "bottom": 2280, "left": 830}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711195f.jpg"} -{"rects": [{"solidity": 0.9951145257757907, "top": 645, "right": 3175, "bottom": 2570, "left": 445}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712995f.jpg"} -{"rects": [{"solidity": 0.9951153650169259, "top": 795, "right": 2040, "bottom": 3205, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723450f.jpg"} -{"rects": [{"solidity": 0.9951153897008717, "top": 920, "right": 4480, "bottom": 3635, "left": 2650}, {"solidity": 0.9956045244095411, "top": 880, "right": 6565, "bottom": 3600, "left": 4745}, {"solidity": 0.9967885331137634, "top": 940, "right": 2415, "bottom": 3640, "left": 590}], "shape": {"h": 4410, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711378f.jpg"} -{"rects": [{"solidity": 0.995116078103912, "top": 2175, "right": 3060, "bottom": 3610, "left": 1240}, {"solidity": 0.9945661522894005, "top": 390, "right": 3040, "bottom": 1810, "left": 1270}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726753f.jpg"} -{"rects": [{"solidity": 0.995116183253667, "top": 460, "right": 3240, "bottom": 2045, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725594f.jpg"} -{"rects": [{"solidity": 0.9951168223552384, "top": 500, "right": 2935, "bottom": 2135, "left": 510}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706576f.jpg"} -{"rects": [{"solidity": 0.9951171048352245, "top": 615, "right": 4030, "bottom": 3415, "left": 1995}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733508f.jpg"} -{"rects": [{"solidity": 0.9951174748517537, "top": 480, "right": 3085, "bottom": 1890, "left": 1270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725885f.jpg"} -{"rects": [{"solidity": 0.9951179663982299, "top": 2220, "right": 3030, "bottom": 3865, "left": 600}, {"solidity": 0.9966245869475423, "top": 360, "right": 3055, "bottom": 1980, "left": 640}, {"solidity": 0.9950071026634179, "top": 4085, "right": 3010, "bottom": 5725, "left": 585}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726613f.jpg"} -{"rects": [{"solidity": 0.9951181239647807, "top": 550, "right": 2955, "bottom": 1985, "left": 1135}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725568f.jpg"} -{"rects": [{"solidity": 0.9951190460777587, "top": 880, "right": 2070, "bottom": 3290, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717846f.jpg"} -{"rects": [{"solidity": 0.9951191231269325, "top": 895, "right": 3290, "bottom": 2710, "left": 1885}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727422f.jpg"} -{"rects": [{"solidity": 0.9951197117735706, "top": 655, "right": 2730, "bottom": 2050, "left": 905}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702904f.jpg"} -{"rects": [{"solidity": 0.9951197884706208, "top": 2210, "right": 3215, "bottom": 3865, "left": 780}, {"solidity": 0.9945948408553233, "top": 380, "right": 3195, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707648f.jpg"} -{"rects": [{"solidity": 0.9951198224615893, "top": 685, "right": 2685, "bottom": 2010, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727442f.jpg"} -{"rects": [{"solidity": 0.99511986863711, "top": 480, "right": 3205, "bottom": 2090, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710087f.jpg"} -{"rects": [{"solidity": 0.9951201582442243, "top": 2365, "right": 3015, "bottom": 3780, "left": 1170}, {"solidity": 0.9963798829196294, "top": 520, "right": 3010, "bottom": 1930, "left": 1210}, {"solidity": 0.9925177087539319, "top": 4205, "right": 2990, "bottom": 5620, "left": 1190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727794f.jpg"} -{"rects": [{"solidity": 0.9951201879631303, "top": 2205, "right": 3205, "bottom": 3860, "left": 770}, {"solidity": 0.9939321569721787, "top": 395, "right": 3215, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732192f.jpg"} -{"rects": [{"solidity": 0.9951204565974882, "top": 390, "right": 3165, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/728916f.jpg"} -{"rects": [{"solidity": 0.9951211618989713, "top": 565, "right": 2925, "bottom": 1965, "left": 1085}, {"solidity": 0.9941729854646982, "top": 2295, "right": 2920, "bottom": 3715, "left": 1070}, {"solidity": 0.9969775496853305, "top": 4125, "right": 2890, "bottom": 5495, "left": 1070}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725523f.jpg"} -{"rects": [{"solidity": 0.9951211966924678, "top": 385, "right": 3095, "bottom": 2020, "left": 655}, {"solidity": 0.9974260433774985, "top": 2290, "right": 3075, "bottom": 3900, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700725f.jpg"} -{"rects": [{"solidity": 0.9951212672133684, "top": 650, "right": 2690, "bottom": 2075, "left": 850}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705208f.jpg"} -{"rects": [{"solidity": 0.9951213406042476, "top": 2270, "right": 3180, "bottom": 3900, "left": 755}, {"solidity": 0.9961247801465045, "top": 420, "right": 3190, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714264f.jpg"} -{"rects": [{"solidity": 0.995121555652865, "top": 2225, "right": 3075, "bottom": 3835, "left": 640}, {"solidity": 0.9971524874052328, "top": 370, "right": 3090, "bottom": 1965, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728877f.jpg"} -{"rects": [{"solidity": 0.9951221893996729, "top": 660, "right": 2835, "bottom": 2060, "left": 985}, {"solidity": 0.9896151766845235, "top": 2315, "right": 2815, "bottom": 3725, "left": 980}, {"solidity": 0.9971799266581632, "top": 2295, "right": 5020, "bottom": 3710, "left": 3230}, {"solidity": 0.995577623171661, "top": 650, "right": 5025, "bottom": 2065, "left": 3230}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726773f.jpg"} -{"rects": [{"solidity": 0.9951222508278866, "top": 590, "right": 3485, "bottom": 2400, "left": 765}], "shape": {"h": 6920, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711339f.jpg"} -{"rects": [{"solidity": 0.9951228043544975, "top": 410, "right": 3180, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714320f.jpg"} -{"rects": [{"solidity": 0.9951230610952834, "top": 780, "right": 2035, "bottom": 3180, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717470f.jpg"} -{"rects": [{"solidity": 0.9951231833372193, "top": 2255, "right": 2805, "bottom": 3705, "left": 1000}, {"solidity": 0.9953740456518969, "top": 660, "right": 2795, "bottom": 2095, "left": 995}, {"solidity": 0.9941168966261702, "top": 2245, "right": 4920, "bottom": 3680, "left": 3120}, {"solidity": 0.9907534782350688, "top": 665, "right": 4910, "bottom": 2015, "left": 3175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727426f.jpg"} -{"rects": [{"solidity": 0.9951233051904476, "top": 1145, "right": 3765, "bottom": 5675, "left": 585}], "shape": {"h": 6925, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711282f.jpg"} -{"rects": [{"solidity": 0.9951233181100891, "top": 555, "right": 3040, "bottom": 1985, "left": 1240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727655f.jpg"} -{"rects": [{"solidity": 0.9951233871363391, "top": 590, "right": 3190, "bottom": 2215, "left": 795}, {"solidity": 0.9955103783499737, "top": 4050, "right": 3190, "bottom": 5670, "left": 785}, {"solidity": 0.9959160301575339, "top": 2345, "right": 3195, "bottom": 3960, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733156f.jpg"} -{"rects": [{"solidity": 0.9951235135498135, "top": 410, "right": 3285, "bottom": 2255, "left": 635}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700538f.jpg"} -{"rects": [{"solidity": 0.9951235643879736, "top": 630, "right": 4895, "bottom": 3620, "left": 1090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709845f.jpg"} -{"rects": [{"solidity": 0.9951239809120106, "top": 4165, "right": 3165, "bottom": 5775, "left": 750}, {"solidity": 0.9946053369341991, "top": 470, "right": 3185, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734293f.jpg"} -{"rects": [{"solidity": 0.9951240748802787, "top": 805, "right": 3985, "bottom": 3220, "left": 2365}, {"solidity": 0.9956062093688534, "top": 805, "right": 2155, "bottom": 3215, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722075f.jpg"} -{"rects": [{"solidity": 0.9951241096574711, "top": 445, "right": 5205, "bottom": 3505, "left": 1345}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733439f.jpg"} -{"rects": [{"solidity": 0.9951244436197066, "top": 910, "right": 4335, "bottom": 3630, "left": 2500}, {"solidity": 0.9968190539943228, "top": 905, "right": 2405, "bottom": 3620, "left": 585}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711299f.jpg"} -{"rects": [{"solidity": 0.9951248677735363, "top": 410, "right": 3060, "bottom": 2005, "left": 650}, {"solidity": 0.9942827528610992, "top": 2270, "right": 3060, "bottom": 3870, "left": 665}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/701933f.jpg"} -{"rects": [{"solidity": 0.9951250611164905, "top": 2135, "right": 2735, "bottom": 3575, "left": 900}, {"solidity": 0.9965935559006212, "top": 610, "right": 5260, "bottom": 2045, "left": 3445}, {"solidity": 0.9952853573893518, "top": 2110, "right": 5275, "bottom": 3535, "left": 3445}, {"solidity": 0.9958096944361501, "top": 670, "right": 2705, "bottom": 2070, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705895f.jpg"} -{"rects": [{"solidity": 0.9951255603429516, "top": 2325, "right": 2980, "bottom": 3745, "left": 1140}, {"solidity": 0.9961741124830702, "top": 4115, "right": 2965, "bottom": 5535, "left": 1160}, {"solidity": 0.9967467667252116, "top": 500, "right": 2980, "bottom": 1910, "left": 1185}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726892f.jpg"} -{"rects": [{"solidity": 0.9951257784533909, "top": 775, "right": 3945, "bottom": 3175, "left": 2330}, {"solidity": 0.9955825311275548, "top": 755, "right": 2075, "bottom": 3160, "left": 480}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711055f.jpg"} -{"rects": [{"solidity": 0.9951260186363168, "top": 475, "right": 5050, "bottom": 3710, "left": 950}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708495f.jpg"} -{"rects": [{"solidity": 0.9951261970496781, "top": 1125, "right": 3475, "bottom": 5095, "left": 355}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714666f.jpg"} -{"rects": [{"solidity": 0.9951266454193115, "top": 670, "right": 2625, "bottom": 3490, "left": 585}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713202f.jpg"} -{"rects": [{"solidity": 0.9951271897009881, "top": 2175, "right": 3195, "bottom": 3810, "left": 765}, {"solidity": 0.9957693573682885, "top": 320, "right": 3190, "bottom": 1955, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709352f.jpg"} -{"rects": [{"solidity": 0.9951272881502974, "top": 520, "right": 3370, "bottom": 2450, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715235f.jpg"} -{"rects": [{"solidity": 0.9951272993056401, "top": 395, "right": 3180, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704667f.jpg"} -{"rects": [{"solidity": 0.9951276658809581, "top": 340, "right": 2815, "bottom": 3060, "left": 1175}, {"solidity": 0.9961351802428876, "top": 3355, "right": 2740, "bottom": 5580, "left": 1260}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704510f.jpg"} -{"rects": [{"solidity": 0.9951279439481552, "top": 665, "right": 3255, "bottom": 2720, "left": 430}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720956f.jpg"} -{"rects": [{"solidity": 0.9951279792347852, "top": 320, "right": 2390, "bottom": 1510, "left": 595}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715905f.jpg"} -{"rects": [{"solidity": 0.9951282453833624, "top": 2115, "right": 2760, "bottom": 3555, "left": 960}, {"solidity": 0.9937470388502843, "top": 650, "right": 2755, "bottom": 2070, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731992f.jpg"} -{"rects": [{"solidity": 0.995129114807491, "top": 3290, "right": 3240, "bottom": 5170, "left": 460}, {"solidity": 0.993533821184905, "top": 725, "right": 3295, "bottom": 2565, "left": 485}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/725250f.jpg"} -{"rects": [{"solidity": 0.9951292658701459, "top": 470, "right": 5075, "bottom": 3690, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720344f.jpg"} -{"rects": [{"solidity": 0.995129369027466, "top": 800, "right": 3835, "bottom": 3210, "left": 2225}, {"solidity": 0.9986071276865478, "top": 810, "right": 2015, "bottom": 3205, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720087f.jpg"} -{"rects": [{"solidity": 0.9951294189372136, "top": 710, "right": 2565, "bottom": 3530, "left": 560}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722399f.jpg"} -{"rects": [{"solidity": 0.9951298050203116, "top": 1050, "right": 3225, "bottom": 2275, "left": 1400}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509667.jpg"} -{"rects": [{"solidity": 0.9951301132183571, "top": 790, "right": 5710, "bottom": 3195, "left": 4095}, {"solidity": 0.9960878585306419, "top": 790, "right": 3865, "bottom": 3180, "left": 2265}, {"solidity": 0.9959972079698567, "top": 785, "right": 2010, "bottom": 3170, "left": 415}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732324f.jpg"} -{"rects": [{"solidity": 0.9951301241264212, "top": 435, "right": 3135, "bottom": 2045, "left": 720}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724692f.jpg"} -{"rects": [{"solidity": 0.9951304483598199, "top": 735, "right": 2630, "bottom": 2175, "left": 815}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707212f.jpg"} -{"rects": [{"solidity": 0.9951308679799056, "top": 425, "right": 3155, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724275f.jpg"} -{"rects": [{"solidity": 0.9951308738664468, "top": 695, "right": 5660, "bottom": 3120, "left": 4040}, {"solidity": 0.9947693553442691, "top": 705, "right": 3830, "bottom": 3125, "left": 2235}, {"solidity": 0.9935388922789763, "top": 715, "right": 2020, "bottom": 3115, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701457f.jpg"} -{"rects": [{"solidity": 0.9951311563257161, "top": 440, "right": 3150, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734662f.jpg"} -{"rects": [{"solidity": 0.9951318579577696, "top": 660, "right": 2745, "bottom": 2060, "left": 935}, {"solidity": 0.9947363290769081, "top": 2085, "right": 2755, "bottom": 3455, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726731f.jpg"} -{"rects": [{"solidity": 0.9951319277868956, "top": 985, "right": 3405, "bottom": 2820, "left": 2040}, {"solidity": 0.9981196362239017, "top": 1005, "right": 1860, "bottom": 2820, "left": 505}, {"solidity": 0.9964304929023714, "top": 3215, "right": 3410, "bottom": 5025, "left": 2055}, {"solidity": 0.9977539917455288, "top": 3225, "right": 1860, "bottom": 5020, "left": 505}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707061f.jpg"} -{"rects": [{"solidity": 0.9951319534220757, "top": 605, "right": 2785, "bottom": 2055, "left": 945}, {"solidity": 0.9943928378772957, "top": 2065, "right": 2810, "bottom": 3475, "left": 985}, {"solidity": 0.9943198819093974, "top": 560, "right": 5265, "bottom": 1955, "left": 3445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704477f.jpg"} -{"rects": [{"solidity": 0.9951320262355702, "top": 345, "right": 2350, "bottom": 1555, "left": 555}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715942f.jpg"} -{"rects": [{"solidity": 0.995132027849887, "top": 440, "right": 3370, "bottom": 2350, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707046f.jpg"} -{"rects": [{"solidity": 0.9951322599342419, "top": 935, "right": 4310, "bottom": 2775, "left": 1630}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700509f.jpg"} -{"rects": [{"solidity": 0.9951325523585538, "top": 655, "right": 2715, "bottom": 2075, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726378f.jpg"} -{"rects": [{"solidity": 0.9951326593689006, "top": 665, "right": 5285, "bottom": 2105, "left": 3485}, {"solidity": 0.9948891817660492, "top": 680, "right": 2670, "bottom": 2085, "left": 880}, {"solidity": 0.9960051948051948, "top": 2140, "right": 2655, "bottom": 3505, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734395f.jpg"} -{"rects": [{"solidity": 0.9951328463993231, "top": 3485, "right": 3190, "bottom": 5095, "left": 790}, {"solidity": 0.9960780947727738, "top": 860, "right": 3180, "bottom": 2455, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730810f.jpg"} -{"rects": [{"solidity": 0.9951328677115858, "top": 355, "right": 3840, "bottom": 2790, "left": 840}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715959f.jpg"} -{"rects": [{"solidity": 0.9951329964168583, "top": 350, "right": 2380, "bottom": 1550, "left": 575}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716440f.jpg"} -{"rects": [{"solidity": 0.9951331761838328, "top": 3635, "right": 4105, "bottom": 4990, "left": 2740}, {"solidity": 0.9970366489575062, "top": 935, "right": 1670, "bottom": 2295, "left": 325}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464745.jpg"} -{"rects": [{"solidity": 0.9951333051206094, "top": 570, "right": 2885, "bottom": 2000, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707421f.jpg"} -{"rects": [{"solidity": 0.9951334208223972, "top": 435, "right": 3185, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734784f.jpg"} -{"rects": [{"solidity": 0.9951334755380268, "top": 2135, "right": 2720, "bottom": 3575, "left": 920}, {"solidity": 0.9955859969558599, "top": 685, "right": 2720, "bottom": 2110, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726872f.jpg"} -{"rects": [{"solidity": 0.9951335552247516, "top": 2230, "right": 2690, "bottom": 3650, "left": 890}, {"solidity": 0.9975587119683641, "top": 2235, "right": 4935, "bottom": 3645, "left": 3160}, {"solidity": 0.995795176582368, "top": 595, "right": 2675, "bottom": 1985, "left": 880}, {"solidity": 0.9987093482974111, "top": 600, "right": 4905, "bottom": 2000, "left": 3135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726268f.jpg"} -{"rects": [{"solidity": 0.9951337910028674, "top": 595, "right": 1600, "bottom": 2385, "left": 410}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715854f.jpg"} -{"rects": [{"solidity": 0.9951339256620251, "top": 690, "right": 3355, "bottom": 2615, "left": 625}, {"solidity": 0.9942055852408475, "top": 3260, "right": 3325, "bottom": 5170, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707989f.jpg"} -{"rects": [{"solidity": 0.9951348512351765, "top": 635, "right": 2520, "bottom": 3580, "left": 175}], "shape": {"h": 4605, "w": 2980}, "file": "/usr/local/google/home/danvk/milstein/1507298.jpg"} -{"rects": [{"solidity": 0.9951348726908811, "top": 425, "right": 3220, "bottom": 2025, "left": 830}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715444f.jpg"} -{"rects": [{"solidity": 0.9951348800058091, "top": 435, "right": 2875, "bottom": 1820, "left": 1110}, {"solidity": 0.9954726946898481, "top": 2195, "right": 2870, "bottom": 3565, "left": 1110}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728144f.jpg"} -{"rects": [{"solidity": 0.9951349743473761, "top": 3165, "right": 3200, "bottom": 5075, "left": 490}, {"solidity": 0.9938480080348175, "top": 745, "right": 3195, "bottom": 2580, "left": 575}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715110f.jpg"} -{"rects": [{"solidity": 0.9951353554477446, "top": 385, "right": 2945, "bottom": 1875, "left": 995}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701435f.jpg"} -{"rects": [{"solidity": 0.9951356498966528, "top": 725, "right": 3145, "bottom": 2540, "left": 1840}], "shape": {"h": 3025, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508595.jpg"} -{"rects": [{"solidity": 0.9951358262837173, "top": 1035, "right": 3700, "bottom": 4220, "left": 410}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726744f.jpg"} -{"rects": [{"solidity": 0.9951358434186415, "top": 2230, "right": 5055, "bottom": 3680, "left": 3245}, {"solidity": 0.9951496062992126, "top": 2245, "right": 2860, "bottom": 3685, "left": 1050}, {"solidity": 0.9948776847328836, "top": 615, "right": 5065, "bottom": 2035, "left": 3220}, {"solidity": 0.997416250890948, "top": 625, "right": 2835, "bottom": 2060, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727760f.jpg"} -{"rects": [{"solidity": 0.9951371033803523, "top": 640, "right": 5320, "bottom": 2095, "left": 3450}, {"solidity": 0.9980789743994943, "top": 670, "right": 2725, "bottom": 2075, "left": 910}, {"solidity": 0.9948527773931575, "top": 2175, "right": 2740, "bottom": 3320, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702551f.jpg"} -{"rects": [{"solidity": 0.9951371868136172, "top": 2225, "right": 3105, "bottom": 3840, "left": 695}, {"solidity": 0.9983786752784377, "top": 420, "right": 3090, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710481f.jpg"} -{"rects": [{"solidity": 0.9951376707943709, "top": 850, "right": 2170, "bottom": 3775, "left": 360}], "shape": {"h": 5985, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465671.jpg"} -{"rects": [{"solidity": 0.9951379820334435, "top": 2555, "right": 3615, "bottom": 4380, "left": 890}, {"solidity": 0.999812721733511, "top": 485, "right": 3620, "bottom": 2265, "left": 945}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711703f.jpg"} -{"rects": [{"solidity": 0.9951380842023948, "top": 745, "right": 2590, "bottom": 2185, "left": 765}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704599f.jpg"} -{"rects": [{"solidity": 0.9951381969712817, "top": 645, "right": 4945, "bottom": 3660, "left": 1155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709939f.jpg"} -{"rects": [{"solidity": 0.99513849229012, "top": 835, "right": 4750, "bottom": 3385, "left": 1290}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709723f.jpg"} -{"rects": [{"solidity": 0.9951393399870083, "top": 795, "right": 3895, "bottom": 3225, "left": 2265}, {"solidity": 0.9979708002696955, "top": 790, "right": 2110, "bottom": 3210, "left": 505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722833f.jpg"} -{"rects": [{"solidity": 0.9951396261469629, "top": 680, "right": 2590, "bottom": 3435, "left": 635}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722672f.jpg"} -{"rects": [{"solidity": 0.9951399810742818, "top": 805, "right": 2015, "bottom": 3195, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713581f.jpg"} -{"rects": [{"solidity": 0.9951402045732459, "top": 745, "right": 2660, "bottom": 2085, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725450f.jpg"} -{"rects": [{"solidity": 0.9951402495617201, "top": 450, "right": 3150, "bottom": 2080, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723372f.jpg"} -{"rects": [{"solidity": 0.9951403017392124, "top": 520, "right": 3255, "bottom": 3635, "left": 535}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714888f.jpg"} -{"rects": [{"solidity": 0.9951404359058091, "top": 405, "right": 3350, "bottom": 2030, "left": 930}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704839f.jpg"} -{"rects": [{"solidity": 0.995140501058904, "top": 385, "right": 3675, "bottom": 2420, "left": 745}], "shape": {"h": 6850, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711399f.jpg"} -{"rects": [{"solidity": 0.9951405874938525, "top": 830, "right": 2060, "bottom": 3235, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717485f.jpg"} -{"rects": [{"solidity": 0.9951408076169721, "top": 410, "right": 3365, "bottom": 2690, "left": 1220}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716527f.jpg"} -{"rects": [{"solidity": 0.9951408466845447, "top": 350, "right": 2415, "bottom": 1565, "left": 600}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715816f.jpg"} -{"rects": [{"solidity": 0.9951411828773981, "top": 400, "right": 3095, "bottom": 2015, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732765f.jpg"} -{"rects": [{"solidity": 0.9951412968743044, "top": 130, "right": 4550, "bottom": 3845, "left": 1810}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721827f.jpg"} -{"rects": [{"solidity": 0.9951415231504624, "top": 365, "right": 3150, "bottom": 1980, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718888f.jpg"} -{"rects": [{"solidity": 0.9951420162405589, "top": 870, "right": 1975, "bottom": 2795, "left": 495}, {"solidity": 0.9965508313143829, "top": 865, "right": 3805, "bottom": 2745, "left": 2350}, {"solidity": 0.9959634868280957, "top": 840, "right": 5620, "bottom": 2695, "left": 4170}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731461f.jpg"} -{"rects": [{"solidity": 0.9951420267228946, "top": 480, "right": 4860, "bottom": 3490, "left": 1245}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709832f.jpg"} -{"rects": [{"solidity": 0.9951421311175982, "top": 275, "right": 3180, "bottom": 1895, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707505f.jpg"} -{"rects": [{"solidity": 0.9951423002724687, "top": 530, "right": 3015, "bottom": 1955, "left": 1225}, {"solidity": 0.9937428329261604, "top": 2325, "right": 3020, "bottom": 3715, "left": 1185}, {"solidity": 0.9967822721408515, "top": 4085, "right": 2975, "bottom": 5495, "left": 1205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727570f.jpg"} -{"rects": [{"solidity": 0.9951423932072379, "top": 1005, "right": 2620, "bottom": 4020, "left": 185}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507933.jpg"} -{"rects": [{"solidity": 0.9951426738822832, "top": 825, "right": 2020, "bottom": 3260, "left": 395}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714444f.jpg"} -{"rects": [{"solidity": 0.9951426754522453, "top": 825, "right": 2040, "bottom": 3200, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715708f.jpg"} -{"rects": [{"solidity": 0.9951428555870774, "top": 635, "right": 5070, "bottom": 3590, "left": 1130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730694f.jpg"} -{"rects": [{"solidity": 0.9951428831689353, "top": 2260, "right": 3185, "bottom": 3870, "left": 775}, {"solidity": 0.9904862270789085, "top": 4095, "right": 3190, "bottom": 5705, "left": 760}, {"solidity": 0.99578745152291, "top": 440, "right": 3180, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720468f.jpg"} -{"rects": [{"solidity": 0.9951433144766014, "top": 655, "right": 2715, "bottom": 2080, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725219f.jpg"} -{"rects": [{"solidity": 0.9951434667685742, "top": 415, "right": 3175, "bottom": 2035, "left": 710}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701735f.jpg"} -{"rects": [{"solidity": 0.9951435147489694, "top": 2230, "right": 3195, "bottom": 3865, "left": 760}, {"solidity": 0.9968453442970548, "top": 4065, "right": 3175, "bottom": 5675, "left": 755}, {"solidity": 0.9970375344386622, "top": 440, "right": 3195, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734571f.jpg"} -{"rects": [{"solidity": 0.995143524055712, "top": 650, "right": 5260, "bottom": 2095, "left": 3420}, {"solidity": 0.9972087649634469, "top": 2150, "right": 2725, "bottom": 3570, "left": 895}, {"solidity": 0.9964241580959979, "top": 665, "right": 2730, "bottom": 2085, "left": 900}, {"solidity": 0.9855603807432531, "top": 2135, "right": 5225, "bottom": 3600, "left": 3435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702809f.jpg"} -{"rects": [{"solidity": 0.9951437918931348, "top": 440, "right": 3150, "bottom": 2365, "left": 365}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/711566f.jpg"} -{"rects": [{"solidity": 0.9951444457072511, "top": 980, "right": 3510, "bottom": 4870, "left": 620}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/731258f.jpg"} -{"rects": [{"solidity": 0.9951447179049936, "top": 575, "right": 4965, "bottom": 3555, "left": 1160}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709926f.jpg"} -{"rects": [{"solidity": 0.9951448267551677, "top": 650, "right": 2625, "bottom": 2060, "left": 790}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704152f.jpg"} -{"rects": [{"solidity": 0.9951448310147222, "top": 620, "right": 3285, "bottom": 2425, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721990f.jpg"} -{"rects": [{"solidity": 0.9951455829431184, "top": 2220, "right": 3125, "bottom": 3820, "left": 725}, {"solidity": 0.9952489333324486, "top": 425, "right": 3145, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713386f.jpg"} -{"rects": [{"solidity": 0.9951455996059445, "top": 785, "right": 2065, "bottom": 3205, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734637f.jpg"} -{"rects": [{"solidity": 0.9951461224655066, "top": 575, "right": 2655, "bottom": 1965, "left": 835}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704616f.jpg"} -{"rects": [{"solidity": 0.9951463845253417, "top": 4095, "right": 3060, "bottom": 5720, "left": 640}, {"solidity": 0.9953209595109188, "top": 2250, "right": 3075, "bottom": 3865, "left": 660}, {"solidity": 0.9968954812004139, "top": 415, "right": 3060, "bottom": 2025, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730869f.jpg"} -{"rects": [{"solidity": 0.9951465911043531, "top": 395, "right": 3280, "bottom": 2015, "left": 865}, {"solidity": 0.9950813285282946, "top": 2260, "right": 3265, "bottom": 3880, "left": 845}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726443f.jpg"} -{"rects": [{"solidity": 0.9951469251547299, "top": 360, "right": 3325, "bottom": 1990, "left": 895}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725516f.jpg"} -{"rects": [{"solidity": 0.9951471004972048, "top": 415, "right": 3170, "bottom": 2070, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704120f.jpg"} -{"rects": [{"solidity": 0.9951476507712127, "top": 700, "right": 2705, "bottom": 2110, "left": 900}, {"solidity": 0.996825107936219, "top": 2170, "right": 2685, "bottom": 3550, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727917f.jpg"} -{"rects": [{"solidity": 0.9951476746269828, "top": 330, "right": 5055, "bottom": 3375, "left": 1110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728211f.jpg"} -{"rects": [{"solidity": 0.9951485166045687, "top": 900, "right": 4585, "bottom": 3625, "left": 2755}, {"solidity": 0.9951922467049764, "top": 880, "right": 2345, "bottom": 3610, "left": 525}], "shape": {"h": 4425, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/708314f.jpg"} -{"rects": [{"solidity": 0.9951488851827264, "top": 440, "right": 3155, "bottom": 2060, "left": 740}, {"solidity": 0.9952757660897703, "top": 2335, "right": 3110, "bottom": 3940, "left": 705}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720449f.jpg"} -{"rects": [{"solidity": 0.995148899160882, "top": 2095, "right": 3210, "bottom": 3730, "left": 775}, {"solidity": 0.9942847173535883, "top": 3960, "right": 3200, "bottom": 5600, "left": 775}, {"solidity": 0.9948702592211648, "top": 270, "right": 3200, "bottom": 1890, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726447f.jpg"} -{"rects": [{"solidity": 0.9951489035038206, "top": 415, "right": 3195, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708167f.jpg"} -{"rects": [{"solidity": 0.9951489096411362, "top": 430, "right": 3225, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720587f.jpg"} -{"rects": [{"solidity": 0.9951489566553723, "top": 310, "right": 1815, "bottom": 1430, "left": 595}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508901.jpg"} -{"rects": [{"solidity": 0.9951489917703499, "top": 620, "right": 2780, "bottom": 2050, "left": 955}, {"solidity": 0.9957118901614433, "top": 615, "right": 5000, "bottom": 2030, "left": 3185}, {"solidity": 0.9963894649216568, "top": 2240, "right": 2760, "bottom": 3660, "left": 955}, {"solidity": 0.9946444214382416, "top": 2240, "right": 5000, "bottom": 3645, "left": 3195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726345f.jpg"} -{"rects": [{"solidity": 0.9951489974374554, "top": 860, "right": 2040, "bottom": 3260, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713756f.jpg"} -{"rects": [{"solidity": 0.9951491232122704, "top": 400, "right": 3170, "bottom": 2000, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719670f.jpg"} -{"rects": [{"solidity": 0.9951493655464455, "top": 1010, "right": 3505, "bottom": 5050, "left": 325}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722349f.jpg"} -{"rects": [{"solidity": 0.9951494436523105, "top": 840, "right": 2280, "bottom": 3220, "left": 695}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708598f.jpg"} -{"rects": [{"solidity": 0.9951495553759094, "top": 375, "right": 3110, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702104f.jpg"} -{"rects": [{"solidity": 0.9951496881597318, "top": 415, "right": 2845, "bottom": 1820, "left": 960}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711829f.jpg"} -{"rects": [{"solidity": 0.995149969652572, "top": 560, "right": 4960, "bottom": 3550, "left": 1160}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709929f.jpg"} -{"rects": [{"solidity": 0.9951500194659083, "top": 830, "right": 2080, "bottom": 3225, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712243f.jpg"} -{"rects": [{"solidity": 0.9951500507756417, "top": 325, "right": 3770, "bottom": 2740, "left": 750}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509057.jpg"} -{"rects": [{"solidity": 0.9951501334019751, "top": 495, "right": 3970, "bottom": 2580, "left": 2490}, {"solidity": 0.9963951209332585, "top": 495, "right": 2200, "bottom": 2575, "left": 720}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716191f.jpg"} -{"rects": [{"solidity": 0.9951502727766899, "top": 750, "right": 3180, "bottom": 2360, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710528f.jpg"} -{"rects": [{"solidity": 0.9951507914046483, "top": 700, "right": 2630, "bottom": 3715, "left": 200}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507935.jpg"} -{"rects": [{"solidity": 0.9951511899542602, "top": 415, "right": 3155, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729688f.jpg"} -{"rects": [{"solidity": 0.9951514050187501, "top": 390, "right": 2980, "bottom": 1950, "left": 1010}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/701369f.jpg"} -{"rects": [{"solidity": 0.9951517267125314, "top": 645, "right": 2760, "bottom": 2065, "left": 915}, {"solidity": 0.9947851176029087, "top": 625, "right": 4985, "bottom": 2065, "left": 3180}, {"solidity": 0.9964448681473096, "top": 2310, "right": 2765, "bottom": 3710, "left": 935}, {"solidity": 0.9942191549746665, "top": 2380, "right": 5010, "bottom": 3510, "left": 3180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727395f.jpg"} -{"rects": [{"solidity": 0.9951522652845466, "top": 2355, "right": 3130, "bottom": 3985, "left": 705}, {"solidity": 0.9960300802769833, "top": 470, "right": 3140, "bottom": 2075, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730460f.jpg"} -{"rects": [{"solidity": 0.9951526032315978, "top": 2260, "right": 3280, "bottom": 3865, "left": 870}, {"solidity": 0.9958611875737318, "top": 420, "right": 3270, "bottom": 2025, "left": 865}, {"solidity": 0.9957443410383275, "top": 4130, "right": 3260, "bottom": 5700, "left": 845}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725058f.jpg"} -{"rects": [{"solidity": 0.9951528497573261, "top": 785, "right": 2110, "bottom": 3230, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721679f.jpg"} -{"rects": [{"solidity": 0.995153172321299, "top": 3040, "right": 3355, "bottom": 5090, "left": 500}, {"solidity": 0.9976040533262993, "top": 675, "right": 3385, "bottom": 2700, "left": 555}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713445f.jpg"} -{"rects": [{"solidity": 0.9951533086724209, "top": 545, "right": 3145, "bottom": 2150, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718461f.jpg"} -{"rects": [{"solidity": 0.9951536975744223, "top": 550, "right": 5030, "bottom": 3780, "left": 1010}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705968f.jpg"} -{"rects": [{"solidity": 0.9951537371885676, "top": 735, "right": 2045, "bottom": 3130, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713943f.jpg"} -{"rects": [{"solidity": 0.9951538005294653, "top": 2100, "right": 2700, "bottom": 3540, "left": 875}, {"solidity": 0.9951522006012624, "top": 600, "right": 2705, "bottom": 2035, "left": 880}, {"solidity": 0.9953901223818508, "top": 610, "right": 5220, "bottom": 2045, "left": 3395}, {"solidity": 0.9957814091063376, "top": 2115, "right": 5205, "bottom": 3550, "left": 3385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707158f.jpg"} -{"rects": [{"solidity": 0.9951539237600493, "top": 460, "right": 5060, "bottom": 3685, "left": 980}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/712172f.jpg"} -{"rects": [{"solidity": 0.9951539338654504, "top": 865, "right": 3445, "bottom": 2480, "left": 2375}, {"solidity": 0.9965374726497175, "top": 845, "right": 2020, "bottom": 2455, "left": 955}], "shape": {"h": 3000, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509559.jpg"} -{"rects": [{"solidity": 0.9951544164245825, "top": 365, "right": 5135, "bottom": 3480, "left": 1255}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728282f.jpg"} -{"rects": [{"solidity": 0.995154510780727, "top": 805, "right": 2085, "bottom": 3220, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713104f.jpg"} -{"rects": [{"solidity": 0.9951553030181499, "top": 3940, "right": 3150, "bottom": 5600, "left": 710}, {"solidity": 0.9954501861581037, "top": 2125, "right": 3185, "bottom": 3770, "left": 750}, {"solidity": 0.9948593109052069, "top": 350, "right": 3210, "bottom": 1985, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722872f.jpg"} -{"rects": [{"solidity": 0.995155319491389, "top": 410, "right": 3210, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731999f.jpg"} -{"rects": [{"solidity": 0.995155388342009, "top": 2225, "right": 3185, "bottom": 3845, "left": 765}, {"solidity": 0.9944389197110856, "top": 4060, "right": 3180, "bottom": 5665, "left": 775}, {"solidity": 0.9960578832504277, "top": 410, "right": 3175, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709252f.jpg"} -{"rects": [{"solidity": 0.9951560458840693, "top": 930, "right": 2125, "bottom": 3370, "left": 485}, {"solidity": 0.9990629191992452, "top": 945, "right": 4040, "bottom": 3365, "left": 2420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728601f.jpg"} -{"rects": [{"solidity": 0.9951565690603844, "top": 670, "right": 2660, "bottom": 2075, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725136f.jpg"} -{"rects": [{"solidity": 0.9951566659478264, "top": 1055, "right": 2605, "bottom": 4050, "left": 200}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507993.jpg"} -{"rects": [{"solidity": 0.9951569145957658, "top": 775, "right": 4325, "bottom": 3485, "left": 2275}, {"solidity": 0.9955272541696328, "top": 805, "right": 2080, "bottom": 3210, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707962f.jpg"} -{"rects": [{"solidity": 0.9951569295873987, "top": 470, "right": 3135, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724145f.jpg"} -{"rects": [{"solidity": 0.9951574542317463, "top": 620, "right": 2770, "bottom": 2080, "left": 945}, {"solidity": 0.9962334852816194, "top": 2230, "right": 5070, "bottom": 3655, "left": 3235}, {"solidity": 0.9965885522668683, "top": 610, "right": 5040, "bottom": 2040, "left": 3215}, {"solidity": 0.992891545434337, "top": 2255, "right": 2775, "bottom": 3670, "left": 955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725247f.jpg"} -{"rects": [{"solidity": 0.99515758571756, "top": 4095, "right": 2940, "bottom": 5520, "left": 1115}, {"solidity": 0.9969548510568311, "top": 580, "right": 2940, "bottom": 1975, "left": 1125}, {"solidity": 0.9956420714620501, "top": 2360, "right": 2955, "bottom": 3750, "left": 1130}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725853f.jpg"} -{"rects": [{"solidity": 0.9951577876469783, "top": 425, "right": 3280, "bottom": 2045, "left": 865}, {"solidity": 0.9968197832790532, "top": 2280, "right": 3265, "bottom": 3865, "left": 875}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727276f.jpg"} -{"rects": [{"solidity": 0.9951579545353678, "top": 1055, "right": 1965, "bottom": 2955, "left": 465}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721788f.jpg"} -{"rects": [{"solidity": 0.9951581961129847, "top": 1115, "right": 3475, "bottom": 4995, "left": 465}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724462f.jpg"} -{"rects": [{"solidity": 0.9951582021742658, "top": 790, "right": 2020, "bottom": 3200, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721761f.jpg"} -{"rects": [{"solidity": 0.9951585067059902, "top": 795, "right": 3915, "bottom": 3210, "left": 2305}, {"solidity": 0.9950248430962343, "top": 800, "right": 2115, "bottom": 3205, "left": 490}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732375f.jpg"} -{"rects": [{"solidity": 0.9951587736414288, "top": 690, "right": 3845, "bottom": 3125, "left": 2220}, {"solidity": 0.9954145538910418, "top": 680, "right": 5675, "bottom": 3115, "left": 4045}, {"solidity": 0.9985050038591007, "top": 690, "right": 1990, "bottom": 3100, "left": 380}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733275f.jpg"} -{"rects": [{"solidity": 0.99515881336424, "top": 670, "right": 3885, "bottom": 3105, "left": 2270}, {"solidity": 0.9940682777039493, "top": 700, "right": 2020, "bottom": 3125, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719477f.jpg"} -{"rects": [{"solidity": 0.9951588713682178, "top": 650, "right": 3340, "bottom": 2530, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712040f.jpg"} -{"rects": [{"solidity": 0.9951592139141401, "top": 830, "right": 2000, "bottom": 3230, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730304f.jpg"} -{"rects": [{"solidity": 0.9951598609312154, "top": 2375, "right": 3185, "bottom": 3640, "left": 1120}, {"solidity": 0.9952211206959609, "top": 2375, "right": 5545, "bottom": 3640, "left": 3490}, {"solidity": 0.9947600513739604, "top": 755, "right": 5565, "bottom": 2020, "left": 3510}, {"solidity": 0.9990074441687344, "top": 765, "right": 3165, "bottom": 2015, "left": 1115}], "shape": {"h": 4430, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/702797f.jpg"} -{"rects": [{"solidity": 0.9951605102976736, "top": 405, "right": 3075, "bottom": 2000, "left": 680}, {"solidity": 0.9925704900552914, "top": 2115, "right": 2845, "bottom": 3640, "left": 915}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701375f.jpg"} -{"rects": [{"solidity": 0.9951605113178994, "top": 385, "right": 3065, "bottom": 2010, "left": 640}, {"solidity": 0.996379505414579, "top": 2265, "right": 3055, "bottom": 3880, "left": 640}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729270f.jpg"} -{"rects": [{"solidity": 0.995160728791923, "top": 1010, "right": 2060, "bottom": 3055, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731209f.jpg"} -{"rects": [{"solidity": 0.9951608368477631, "top": 765, "right": 2015, "bottom": 3140, "left": 410}, {"solidity": 0.9981139714915545, "top": 770, "right": 3835, "bottom": 3125, "left": 2290}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731678f.jpg"} -{"rects": [{"solidity": 0.995160913662068, "top": 465, "right": 3170, "bottom": 2160, "left": 605}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733349f.jpg"} -{"rects": [{"solidity": 0.9951612428310165, "top": 2390, "right": 3130, "bottom": 4015, "left": 710}, {"solidity": 0.9948734294897336, "top": 530, "right": 3125, "bottom": 2140, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718505f.jpg"} -{"rects": [{"solidity": 0.9951613936368877, "top": 2435, "right": 2735, "bottom": 3850, "left": 905}, {"solidity": 0.995362146231176, "top": 480, "right": 3585, "bottom": 2290, "left": 2190}, {"solidity": 0.9942014025926713, "top": 480, "right": 1860, "bottom": 2285, "left": 470}, {"solidity": 0.995815856461204, "top": 510, "right": 5360, "bottom": 2310, "left": 3985}, {"solidity": 0.997190112972137, "top": 2490, "right": 4880, "bottom": 3850, "left": 3105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734418f.jpg"} -{"rects": [{"solidity": 0.9951615769590167, "top": 1740, "right": 2320, "bottom": 2965, "left": 505}, {"solidity": 0.9968804958915958, "top": 330, "right": 2315, "bottom": 1545, "left": 510}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715923f.jpg"} -{"rects": [{"solidity": 0.9951616062390759, "top": 1370, "right": 3070, "bottom": 4575, "left": 410}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/713256f.jpg"} -{"rects": [{"solidity": 0.9951619556787618, "top": 470, "right": 3250, "bottom": 2070, "left": 855}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709672f.jpg"} -{"rects": [{"solidity": 0.9951623512333898, "top": 370, "right": 2980, "bottom": 2000, "left": 585}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702704f.jpg"} -{"rects": [{"solidity": 0.995162474577813, "top": 2280, "right": 3110, "bottom": 3895, "left": 695}, {"solidity": 0.996546762589928, "top": 415, "right": 3105, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734831f.jpg"} -{"rects": [{"solidity": 0.9951625951566272, "top": 430, "right": 3195, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727343f.jpg"} -{"rects": [{"solidity": 0.995162813820532, "top": 2145, "right": 2690, "bottom": 3570, "left": 895}, {"solidity": 0.9962690037930072, "top": 715, "right": 2670, "bottom": 2090, "left": 890}, {"solidity": 0.9945161851631171, "top": 700, "right": 5155, "bottom": 2060, "left": 3375}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720111f.jpg"} -{"rects": [{"solidity": 0.9951628283295287, "top": 950, "right": 3165, "bottom": 2170, "left": 1360}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509675.jpg"} -{"rects": [{"solidity": 0.9951629711679, "top": 820, "right": 2125, "bottom": 3225, "left": 525}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721417f.jpg"} -{"rects": [{"solidity": 0.9951635094444952, "top": 140, "right": 3370, "bottom": 2020, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704446f.jpg"} -{"rects": [{"solidity": 0.9951635920413979, "top": 995, "right": 2355, "bottom": 2435, "left": 320}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509093.jpg"} -{"rects": [{"solidity": 0.9951637822468613, "top": 470, "right": 3120, "bottom": 2105, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712366f.jpg"} -{"rects": [{"solidity": 0.9951640517197322, "top": 370, "right": 3215, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711061f.jpg"} -{"rects": [{"solidity": 0.9951651330636427, "top": 520, "right": 3310, "bottom": 3995, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715627f.jpg"} -{"rects": [{"solidity": 0.9951653985301514, "top": 520, "right": 3305, "bottom": 2595, "left": 250}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/722950f.jpg"} -{"rects": [{"solidity": 0.9951655556624716, "top": 440, "right": 3190, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720582f.jpg"} -{"rects": [{"solidity": 0.9951656793134268, "top": 440, "right": 3155, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723744f.jpg"} -{"rects": [{"solidity": 0.9951659187643241, "top": 1270, "right": 2825, "bottom": 3700, "left": 1180}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730956f.jpg"} -{"rects": [{"solidity": 0.9951659203867264, "top": 2240, "right": 3170, "bottom": 3860, "left": 745}, {"solidity": 0.9953104818033712, "top": 420, "right": 3170, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730912f.jpg"} -{"rects": [{"solidity": 0.9951661280171176, "top": 615, "right": 4835, "bottom": 3580, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712657f.jpg"} -{"rects": [{"solidity": 0.9951661376759205, "top": 405, "right": 3330, "bottom": 2020, "left": 920}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728018f.jpg"} -{"rects": [{"solidity": 0.9951663212224661, "top": 435, "right": 3580, "bottom": 2275, "left": 850}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711220f.jpg"} -{"rects": [{"solidity": 0.995166673314984, "top": 450, "right": 3145, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724745f.jpg"} -{"rects": [{"solidity": 0.9951668201742901, "top": 905, "right": 4035, "bottom": 3290, "left": 2320}, {"solidity": 0.9959911631432119, "top": 880, "right": 2050, "bottom": 3300, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702126f.jpg"} -{"rects": [{"solidity": 0.9951670658226422, "top": 765, "right": 2005, "bottom": 3160, "left": 415}, {"solidity": 0.9969601100412655, "top": 780, "right": 5660, "bottom": 3130, "left": 4100}, {"solidity": 0.9799075354481848, "top": 780, "right": 3835, "bottom": 3135, "left": 2275}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721758f.jpg"} -{"rects": [{"solidity": 0.9951671699846562, "top": 735, "right": 2725, "bottom": 2160, "left": 910}, {"solidity": 0.9964033888505054, "top": 2210, "right": 2725, "bottom": 3630, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727440f.jpg"} -{"rects": [{"solidity": 0.9951671997849404, "top": 405, "right": 3250, "bottom": 3760, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708939f.jpg"} -{"rects": [{"solidity": 0.9951675289439755, "top": 795, "right": 2000, "bottom": 3200, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718207f.jpg"} -{"rects": [{"solidity": 0.9951676866585067, "top": 2260, "right": 2895, "bottom": 3670, "left": 1055}, {"solidity": 0.9950498476876212, "top": 645, "right": 5060, "bottom": 2065, "left": 3260}, {"solidity": 0.9984999099945997, "top": 2270, "right": 5070, "bottom": 3675, "left": 3275}, {"solidity": 0.9954546362710036, "top": 635, "right": 2895, "bottom": 2035, "left": 1080}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725365f.jpg"} -{"rects": [{"solidity": 0.9951680679054414, "top": 745, "right": 3850, "bottom": 3180, "left": 2215}, {"solidity": 0.9947955222095433, "top": 780, "right": 2015, "bottom": 3220, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702884f.jpg"} -{"rects": [{"solidity": 0.9951682734866653, "top": 400, "right": 3215, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/707946f.jpg"} -{"rects": [{"solidity": 0.9951683679086519, "top": 900, "right": 2210, "bottom": 3215, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708455f.jpg"} -{"rects": [{"solidity": 0.9951685696651751, "top": 2150, "right": 3135, "bottom": 3585, "left": 1305}, {"solidity": 0.9964306490894211, "top": 470, "right": 3135, "bottom": 1870, "left": 1305}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725860f.jpg"} -{"rects": [{"solidity": 0.9951686082158185, "top": 425, "right": 2895, "bottom": 2005, "left": 940}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700058f.jpg"} -{"rects": [{"solidity": 0.995169745667651, "top": 775, "right": 1975, "bottom": 3185, "left": 365}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730414f.jpg"} -{"rects": [{"solidity": 0.9951697607227801, "top": 405, "right": 3180, "bottom": 2050, "left": 730}, {"solidity": 0.9956555072834142, "top": 2255, "right": 3145, "bottom": 3920, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710700f.jpg"} -{"rects": [{"solidity": 0.995170293163205, "top": 615, "right": 2755, "bottom": 3430, "left": 795}, {"solidity": 0.9975356004523956, "top": 795, "right": 4380, "bottom": 3215, "left": 2760}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731431f.jpg"} -{"rects": [{"solidity": 0.9951703378517149, "top": 400, "right": 3155, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704386f.jpg"} -{"rects": [{"solidity": 0.9951717596507668, "top": 895, "right": 3025, "bottom": 2130, "left": 1200}], "shape": {"h": 3000, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509549.jpg"} -{"rects": [{"solidity": 0.9951721049304878, "top": 410, "right": 3450, "bottom": 2085, "left": 1005}], "shape": {"h": 6140, "w": 4145}, "file": "/usr/local/google/home/danvk/milstein/703900f.jpg"} -{"rects": [{"solidity": 0.9951723866421267, "top": 2140, "right": 2680, "bottom": 3565, "left": 875}, {"solidity": 0.9947351269883297, "top": 710, "right": 2675, "bottom": 2085, "left": 870}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725095f.jpg"} -{"rects": [{"solidity": 0.9951727760915247, "top": 385, "right": 2275, "bottom": 1520, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715675f.jpg"} -{"rects": [{"solidity": 0.9951729141475212, "top": 2300, "right": 2950, "bottom": 3750, "left": 1125}, {"solidity": 0.9960001177879424, "top": 520, "right": 2940, "bottom": 1950, "left": 1140}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726645f.jpg"} -{"rects": [{"solidity": 0.9951733850794265, "top": 460, "right": 3270, "bottom": 3870, "left": 690}], "shape": {"h": 6140, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/715247f.jpg"} -{"rects": [{"solidity": 0.9951734510316625, "top": 405, "right": 3060, "bottom": 2005, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728649f.jpg"} -{"rects": [{"solidity": 0.995173720541513, "top": 4075, "right": 3140, "bottom": 5715, "left": 700}, {"solidity": 0.9957744887583324, "top": 2230, "right": 3140, "bottom": 3860, "left": 720}, {"solidity": 0.9952758770818306, "top": 395, "right": 3150, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703696f.jpg"} -{"rects": [{"solidity": 0.9951737387125061, "top": 460, "right": 3140, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720588f.jpg"} -{"rects": [{"solidity": 0.9951739605227622, "top": 1360, "right": 3365, "bottom": 2235, "left": 2130}, {"solidity": 0.9909724076006504, "top": 1365, "right": 1775, "bottom": 2275, "left": 620}, {"solidity": 0.9944349315068494, "top": 440, "right": 1760, "bottom": 1345, "left": 615}, {"solidity": 0.9903481515915152, "top": 430, "right": 3330, "bottom": 1335, "left": 2175}], "shape": {"h": 2555, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727122f.jpg"} -{"rects": [{"solidity": 0.99517420283739, "top": 730, "right": 2195, "bottom": 3880, "left": 525}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508837.jpg"} -{"rects": [{"solidity": 0.995174278982735, "top": 2615, "right": 3475, "bottom": 4475, "left": 725}, {"solidity": 0.9942767423014587, "top": 4690, "right": 3415, "bottom": 6555, "left": 670}, {"solidity": 0.9951655733777784, "top": 550, "right": 3520, "bottom": 2400, "left": 785}], "shape": {"h": 6900, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711417f.jpg"} -{"rects": [{"solidity": 0.9951746436900325, "top": 385, "right": 3945, "bottom": 2810, "left": 785}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508777.jpg"} -{"rects": [{"solidity": 0.9951746936597492, "top": 370, "right": 3060, "bottom": 1980, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729578f.jpg"} -{"rects": [{"solidity": 0.9951749636999596, "top": 460, "right": 3085, "bottom": 1855, "left": 1265}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726411f.jpg"} -{"rects": [{"solidity": 0.9951753191625686, "top": 2230, "right": 3185, "bottom": 3860, "left": 750}, {"solidity": 0.9979279412616392, "top": 430, "right": 3185, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720462f.jpg"} -{"rects": [{"solidity": 0.9951753596822668, "top": 440, "right": 3135, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724181f.jpg"} -{"rects": [{"solidity": 0.9951753683536195, "top": 670, "right": 2725, "bottom": 2070, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725267f.jpg"} -{"rects": [{"solidity": 0.9951754159666449, "top": 265, "right": 3560, "bottom": 5720, "left": 275}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708485f.jpg"} -{"rects": [{"solidity": 0.9951755415365723, "top": 585, "right": 2585, "bottom": 3490, "left": 740}, {"solidity": 0.9948514401284535, "top": 530, "right": 5165, "bottom": 1995, "left": 3320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705087f.jpg"} -{"rects": [{"solidity": 0.9951760327719382, "top": 430, "right": 3135, "bottom": 2055, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723057f.jpg"} -{"rects": [{"solidity": 0.995176139538988, "top": 400, "right": 2875, "bottom": 1820, "left": 1030}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702853f.jpg"} -{"rects": [{"solidity": 0.9951762415366286, "top": 4120, "right": 3115, "bottom": 5755, "left": 680}, {"solidity": 0.9969718736819907, "top": 415, "right": 3155, "bottom": 2010, "left": 760}, {"solidity": 0.9944431413100575, "top": 2265, "right": 3135, "bottom": 3880, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734478f.jpg"} -{"rects": [{"solidity": 0.9951763799911524, "top": 800, "right": 2150, "bottom": 3205, "left": 545}, {"solidity": 0.9961505193167337, "top": 805, "right": 4010, "bottom": 3190, "left": 2410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711077f.jpg"} -{"rects": [{"solidity": 0.9951765411875375, "top": 1265, "right": 2015, "bottom": 3675, "left": 400}, {"solidity": 0.9910583390221247, "top": 325, "right": 1835, "bottom": 1225, "left": 565}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721734f.jpg"} -{"rects": [{"solidity": 0.9951767214911557, "top": 2265, "right": 3195, "bottom": 3870, "left": 795}, {"solidity": 0.9969218647757168, "top": 440, "right": 3195, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716714f.jpg"} -{"rects": [{"solidity": 0.99517690009111, "top": 365, "right": 2725, "bottom": 1605, "left": 1115}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/711787f.jpg"} -{"rects": [{"solidity": 0.9951769119560067, "top": 1310, "right": 3195, "bottom": 4650, "left": 670}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724419f.jpg"} -{"rects": [{"solidity": 0.9951775435818778, "top": 805, "right": 2020, "bottom": 3195, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722573f.jpg"} -{"rects": [{"solidity": 0.9951775682349236, "top": 4080, "right": 3150, "bottom": 5685, "left": 750}, {"solidity": 0.9962133657238246, "top": 435, "right": 3155, "bottom": 2025, "left": 765}, {"solidity": 0.9960575386254662, "top": 2260, "right": 3160, "bottom": 3845, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734598f.jpg"} -{"rects": [{"solidity": 0.9951779377012194, "top": 615, "right": 5055, "bottom": 3765, "left": 1170}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718493f.jpg"} -{"rects": [{"solidity": 0.9951781125943736, "top": 400, "right": 3095, "bottom": 1995, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729603f.jpg"} -{"rects": [{"solidity": 0.9951790895384343, "top": 385, "right": 3195, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/728821f.jpg"} -{"rects": [{"solidity": 0.9951792091926763, "top": 425, "right": 3105, "bottom": 2115, "left": 975}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702839f.jpg"} -{"rects": [{"solidity": 0.995179801814701, "top": 340, "right": 3195, "bottom": 1980, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700103f.jpg"} -{"rects": [{"solidity": 0.9951798888223017, "top": 280, "right": 3310, "bottom": 2150, "left": 695}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/712681f.jpg"} -{"rects": [{"solidity": 0.9951801843385143, "top": 645, "right": 2780, "bottom": 2070, "left": 935}, {"solidity": 0.9948004335469435, "top": 2275, "right": 5060, "bottom": 3700, "left": 3280}, {"solidity": 0.9937226335881687, "top": 2245, "right": 2750, "bottom": 3675, "left": 965}, {"solidity": 0.9934578538717841, "top": 680, "right": 5050, "bottom": 2085, "left": 3260}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726755f.jpg"} -{"rects": [{"solidity": 0.9951811210553648, "top": 750, "right": 2015, "bottom": 3125, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713870f.jpg"} -{"rects": [{"solidity": 0.9951813424232623, "top": 715, "right": 3345, "bottom": 2585, "left": 900}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/730873f.jpg"} -{"rects": [{"solidity": 0.9951815037075068, "top": 4060, "right": 2960, "bottom": 5610, "left": 1005}, {"solidity": 0.9972993723830695, "top": 2200, "right": 2975, "bottom": 3660, "left": 1040}, {"solidity": 0.9987471392258497, "top": 395, "right": 2970, "bottom": 1820, "left": 1015}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733346f.jpg"} -{"rects": [{"solidity": 0.9951816309775368, "top": 485, "right": 3120, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711909f.jpg"} -{"rects": [{"solidity": 0.9951817626119162, "top": 445, "right": 3130, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720683f.jpg"} -{"rects": [{"solidity": 0.9951822587684039, "top": 720, "right": 2930, "bottom": 2525, "left": 1695}, {"solidity": 0.9983210364259572, "top": 720, "right": 1515, "bottom": 2515, "left": 305}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716434f.jpg"} -{"rects": [{"solidity": 0.995182265346001, "top": 570, "right": 3240, "bottom": 2630, "left": 405}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718218f.jpg"} -{"rects": [{"solidity": 0.9951823066222546, "top": 510, "right": 3195, "bottom": 2150, "left": 765}, {"solidity": 0.9955442719853314, "top": 2235, "right": 3200, "bottom": 3865, "left": 765}, {"solidity": 0.9984393301773843, "top": 4005, "right": 3170, "bottom": 5620, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733200f.jpg"} -{"rects": [{"solidity": 0.9951824501696798, "top": 2235, "right": 3190, "bottom": 3855, "left": 770}, {"solidity": 0.9946931608313074, "top": 4075, "right": 3190, "bottom": 5695, "left": 765}, {"solidity": 0.9967304404461451, "top": 435, "right": 3185, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/733909f.jpg"} -{"rects": [{"solidity": 0.9951825608040732, "top": 835, "right": 2025, "bottom": 3230, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714528f.jpg"} -{"rects": [{"solidity": 0.9951826238211169, "top": 395, "right": 3165, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734644f.jpg"} -{"rects": [{"solidity": 0.995182637873689, "top": 805, "right": 2050, "bottom": 3215, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717430f.jpg"} -{"rects": [{"solidity": 0.9951829942143925, "top": 2265, "right": 3105, "bottom": 3880, "left": 685}, {"solidity": 0.9968443002628659, "top": 430, "right": 3115, "bottom": 2035, "left": 715}, {"solidity": 0.9949870879538204, "top": 4110, "right": 3075, "bottom": 5715, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734664f.jpg"} -{"rects": [{"solidity": 0.9951831468172981, "top": 395, "right": 2895, "bottom": 1850, "left": 1065}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/720398f.jpg"} -{"rects": [{"solidity": 0.995183339721477, "top": 2240, "right": 3215, "bottom": 3885, "left": 775}, {"solidity": 0.9939948574023674, "top": 415, "right": 3185, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719223f.jpg"} -{"rects": [{"solidity": 0.995183349269181, "top": 4205, "right": 3165, "bottom": 5805, "left": 750}, {"solidity": 0.9967720447141404, "top": 2340, "right": 3155, "bottom": 3930, "left": 755}, {"solidity": 0.9987437185929648, "top": 450, "right": 3155, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734614f.jpg"} -{"rects": [{"solidity": 0.9951836764603019, "top": 770, "right": 2065, "bottom": 3155, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722316f.jpg"} -{"rects": [{"solidity": 0.9951839451919396, "top": 695, "right": 2725, "bottom": 2125, "left": 895}, {"solidity": 0.996488596630642, "top": 2190, "right": 2720, "bottom": 3605, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707356f.jpg"} -{"rects": [{"solidity": 0.9951840264351249, "top": 425, "right": 3180, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733967f.jpg"} -{"rects": [{"solidity": 0.9951840959584933, "top": 4040, "right": 3115, "bottom": 5685, "left": 685}, {"solidity": 0.9960602214117005, "top": 2175, "right": 3140, "bottom": 3805, "left": 705}, {"solidity": 0.9966870556901043, "top": 350, "right": 3120, "bottom": 1950, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728372f.jpg"} -{"rects": [{"solidity": 0.9951841994950233, "top": 2235, "right": 3165, "bottom": 3845, "left": 750}, {"solidity": 0.9940187802395781, "top": 390, "right": 3190, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730875f.jpg"} -{"rects": [{"solidity": 0.9951843452173715, "top": 2240, "right": 3060, "bottom": 3855, "left": 635}, {"solidity": 0.9967796999638906, "top": 390, "right": 3050, "bottom": 1985, "left": 645}, {"solidity": 0.9951347391451464, "top": 4085, "right": 3030, "bottom": 5690, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729383f.jpg"} -{"rects": [{"solidity": 0.9951844107483172, "top": 550, "right": 2710, "bottom": 1970, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707429f.jpg"} -{"rects": [{"solidity": 0.9951845056065239, "top": 2455, "right": 2450, "bottom": 3945, "left": 350}, {"solidity": 0.9971815660511654, "top": 625, "right": 2450, "bottom": 2100, "left": 360}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716054f.jpg"} -{"rects": [{"solidity": 0.9951845854177684, "top": 485, "right": 3275, "bottom": 2080, "left": 870}, {"solidity": 0.9964159377519003, "top": 2300, "right": 3260, "bottom": 3885, "left": 875}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711111f.jpg"} -{"rects": [{"solidity": 0.9951847409531054, "top": 300, "right": 2335, "bottom": 1510, "left": 540}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715943f.jpg"} -{"rects": [{"solidity": 0.9951855406269994, "top": 4065, "right": 3115, "bottom": 5720, "left": 670}, {"solidity": 0.9967182813133361, "top": 390, "right": 3145, "bottom": 1995, "left": 725}, {"solidity": 0.9956487135326966, "top": 2225, "right": 3130, "bottom": 3835, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728417f.jpg"} -{"rects": [{"solidity": 0.9951857357098303, "top": 440, "right": 3145, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712133f.jpg"} -{"rects": [{"solidity": 0.9951858407079646, "top": 325, "right": 3040, "bottom": 1960, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717742f.jpg"} -{"rects": [{"solidity": 0.9951860071518416, "top": 460, "right": 3150, "bottom": 2060, "left": 755}, {"solidity": 0.9926622908275342, "top": 2295, "right": 3160, "bottom": 3895, "left": 750}, {"solidity": 0.9934865760325937, "top": 4115, "right": 3155, "bottom": 5715, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717977f.jpg"} -{"rects": [{"solidity": 0.9951860909993462, "top": 640, "right": 5240, "bottom": 2085, "left": 3405}, {"solidity": 0.9955397792288103, "top": 2100, "right": 2710, "bottom": 3520, "left": 885}, {"solidity": 0.997437256080785, "top": 660, "right": 2710, "bottom": 2030, "left": 900}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706994f.jpg"} -{"rects": [{"solidity": 0.9951861081280553, "top": 450, "right": 3200, "bottom": 1960, "left": 1180}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703063f.jpg"} -{"rects": [{"solidity": 0.9951870850935426, "top": 635, "right": 2695, "bottom": 2035, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703798f.jpg"} -{"rects": [{"solidity": 0.995188085895097, "top": 390, "right": 3230, "bottom": 2010, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701391f.jpg"} -{"rects": [{"solidity": 0.9951881995548841, "top": 710, "right": 2150, "bottom": 3135, "left": 520}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709840f.jpg"} -{"rects": [{"solidity": 0.9951884025822784, "top": 560, "right": 2810, "bottom": 2975, "left": 1190}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708182f.jpg"} -{"rects": [{"solidity": 0.9951888241602179, "top": 510, "right": 5730, "bottom": 2140, "left": 3305}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707255f.jpg"} -{"rects": [{"solidity": 0.995188968721983, "top": 360, "right": 3290, "bottom": 2025, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727600f.jpg"} -{"rects": [{"solidity": 0.9951894366359182, "top": 130, "right": 5120, "bottom": 3520, "left": 1070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728186f.jpg"} -{"rects": [{"solidity": 0.9951896566735351, "top": 460, "right": 3325, "bottom": 2390, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722419f.jpg"} -{"rects": [{"solidity": 0.9951903847361653, "top": 415, "right": 3025, "bottom": 2005, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729049f.jpg"} -{"rects": [{"solidity": 0.9951904058969386, "top": 645, "right": 2750, "bottom": 2075, "left": 915}, {"solidity": 0.9926913799854021, "top": 2080, "right": 2750, "bottom": 3510, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702602f.jpg"} -{"rects": [{"solidity": 0.995190454753029, "top": 395, "right": 3200, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722626f.jpg"} -{"rects": [{"solidity": 0.995190685929624, "top": 655, "right": 2725, "bottom": 2105, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726570f.jpg"} -{"rects": [{"solidity": 0.995190688932554, "top": 585, "right": 2710, "bottom": 1990, "left": 870}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706996f.jpg"} -{"rects": [{"solidity": 0.9951909314707734, "top": 795, "right": 3925, "bottom": 3240, "left": 2260}, {"solidity": 0.9970422923355957, "top": 810, "right": 2040, "bottom": 3235, "left": 410}, {"solidity": 0.9940744802670839, "top": 800, "right": 5775, "bottom": 3225, "left": 4140}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717580f.jpg"} -{"rects": [{"solidity": 0.9951912764770892, "top": 710, "right": 3425, "bottom": 2750, "left": 380}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707967f.jpg"} -{"rects": [{"solidity": 0.995191529320338, "top": 2305, "right": 3110, "bottom": 3915, "left": 690}, {"solidity": 0.9954837005611951, "top": 430, "right": 3110, "bottom": 2035, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734119f.jpg"} -{"rects": [{"solidity": 0.9951915504050405, "top": 750, "right": 4810, "bottom": 3345, "left": 1340}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722730f.jpg"} -{"rects": [{"solidity": 0.9951916161512381, "top": 855, "right": 2255, "bottom": 3570, "left": 440}], "shape": {"h": 4440, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711175f.jpg"} -{"rects": [{"solidity": 0.9951916859275569, "top": 465, "right": 3175, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721435f.jpg"} -{"rects": [{"solidity": 0.9951924932893074, "top": 2070, "right": 3535, "bottom": 3880, "left": 820}, {"solidity": 0.9948852481357346, "top": 445, "right": 3295, "bottom": 1835, "left": 1115}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711325f.jpg"} -{"rects": [{"solidity": 0.9951926197409813, "top": 2420, "right": 2280, "bottom": 3875, "left": 265}, {"solidity": 0.9931332190320363, "top": 750, "right": 2270, "bottom": 2195, "left": 250}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507541.jpg"} -{"rects": [{"solidity": 0.9951926975985861, "top": 675, "right": 4710, "bottom": 3355, "left": 1345}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716841f.jpg"} -{"rects": [{"solidity": 0.9951927686544711, "top": 825, "right": 2085, "bottom": 3220, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711875f.jpg"} -{"rects": [{"solidity": 0.995192835774606, "top": 830, "right": 3890, "bottom": 3250, "left": 2270}, {"solidity": 0.9951411144422619, "top": 825, "right": 2020, "bottom": 3245, "left": 400}, {"solidity": 0.992968934533112, "top": 840, "right": 5740, "bottom": 3260, "left": 4120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721019f.jpg"} -{"rects": [{"solidity": 0.9951931141794454, "top": 585, "right": 1515, "bottom": 2390, "left": 300}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716456f.jpg"} -{"rects": [{"solidity": 0.9951931454648872, "top": 740, "right": 3820, "bottom": 3150, "left": 2220}, {"solidity": 0.9958869957070101, "top": 765, "right": 2005, "bottom": 3150, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719476f.jpg"} -{"rects": [{"solidity": 0.995193182943305, "top": 2255, "right": 3225, "bottom": 3890, "left": 790}, {"solidity": 0.9963614525929066, "top": 410, "right": 3215, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705415f.jpg"} -{"rects": [{"solidity": 0.9951932188768274, "top": 805, "right": 2045, "bottom": 3225, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711891f.jpg"} -{"rects": [{"solidity": 0.9951933588779486, "top": 370, "right": 2540, "bottom": 1915, "left": 260}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716353f.jpg"} -{"rects": [{"solidity": 0.9951934284168361, "top": 465, "right": 5035, "bottom": 3540, "left": 1185}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727878f.jpg"} -{"rects": [{"solidity": 0.9951934584457339, "top": 2225, "right": 3225, "bottom": 3850, "left": 810}, {"solidity": 0.9966537507498258, "top": 465, "right": 3210, "bottom": 2090, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712589f.jpg"} -{"rects": [{"solidity": 0.995193588883288, "top": 415, "right": 3160, "bottom": 2060, "left": 730}], "shape": {"h": 6140, "w": 3810}, "file": "/usr/local/google/home/danvk/milstein/723347f.jpg"} -{"rects": [{"solidity": 0.9951936947569964, "top": 390, "right": 3090, "bottom": 1985, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729893f.jpg"} -{"rects": [{"solidity": 0.995194069971083, "top": 780, "right": 1500, "bottom": 2580, "left": 295}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716420f.jpg"} -{"rects": [{"solidity": 0.9951942084216393, "top": 445, "right": 3095, "bottom": 2070, "left": 670}, {"solidity": 0.9987849331713244, "top": 2305, "right": 3085, "bottom": 3905, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729627f.jpg"} -{"rects": [{"solidity": 0.9951945616502579, "top": 785, "right": 5775, "bottom": 3190, "left": 4165}, {"solidity": 0.9953408654367076, "top": 780, "right": 3915, "bottom": 3180, "left": 2315}, {"solidity": 0.9976149745054727, "top": 785, "right": 2040, "bottom": 3170, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713006f.jpg"} -{"rects": [{"solidity": 0.9951946147693949, "top": 805, "right": 2140, "bottom": 3195, "left": 545}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718451f.jpg"} -{"rects": [{"solidity": 0.9951950550658186, "top": 445, "right": 3165, "bottom": 2020, "left": 795}, {"solidity": 1.0, "top": 2860, "right": 3855, "bottom": 6010, "left": 3030}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719830f.jpg"} -{"rects": [{"solidity": 0.995195528587562, "top": 340, "right": 3165, "bottom": 1980, "left": 735}, {"solidity": 0.9963984404959734, "top": 2235, "right": 3145, "bottom": 3865, "left": 720}, {"solidity": 0.9982836218160701, "top": 4155, "right": 3120, "bottom": 5770, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721695f.jpg"} -{"rects": [{"solidity": 0.9951955378938021, "top": 415, "right": 3135, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700161f.jpg"} -{"rects": [{"solidity": 0.9951961773186213, "top": 2070, "right": 2710, "bottom": 3465, "left": 925}, {"solidity": 0.9979283113686478, "top": 660, "right": 2705, "bottom": 2045, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726722f.jpg"} -{"rects": [{"solidity": 0.995197019241032, "top": 820, "right": 2010, "bottom": 3235, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719271f.jpg"} -{"rects": [{"solidity": 0.9951975697469231, "top": 290, "right": 3245, "bottom": 1925, "left": 820}, {"solidity": 0.9927352652714372, "top": 2170, "right": 3240, "bottom": 3810, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702076f.jpg"} -{"rects": [{"solidity": 0.9951979545882246, "top": 405, "right": 3225, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718330f.jpg"} -{"rects": [{"solidity": 0.9951981369926288, "top": 360, "right": 3135, "bottom": 1990, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722909f.jpg"} -{"rects": [{"solidity": 0.9951985687788579, "top": 785, "right": 2020, "bottom": 3200, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718884f.jpg"} -{"rects": [{"solidity": 0.995198898042295, "top": 840, "right": 2055, "bottom": 3240, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728938f.jpg"} -{"rects": [{"solidity": 0.995199205563634, "top": 2225, "right": 3210, "bottom": 3855, "left": 785}, {"solidity": 0.9942344443364752, "top": 390, "right": 3215, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/712779f.jpg"} -{"rects": [{"solidity": 0.9951995677983754, "top": 375, "right": 3040, "bottom": 1995, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729059f.jpg"} -{"rects": [{"solidity": 0.9952008475001941, "top": 845, "right": 3255, "bottom": 2255, "left": 1280}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508437.jpg"} -{"rects": [{"solidity": 0.995200973544835, "top": 760, "right": 2070, "bottom": 3170, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722209f.jpg"} -{"rects": [{"solidity": 0.9952013475399561, "top": 455, "right": 3170, "bottom": 2075, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724874f.jpg"} -{"rects": [{"solidity": 0.9952018466406443, "top": 795, "right": 2055, "bottom": 3210, "left": 425}, {"solidity": 0.9932450348686129, "top": 830, "right": 3900, "bottom": 3235, "left": 2305}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724784f.jpg"} -{"rects": [{"solidity": 0.9952025313212575, "top": 395, "right": 3265, "bottom": 2020, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703092f.jpg"} -{"rects": [{"solidity": 0.9952027057095812, "top": 295, "right": 3180, "bottom": 2295, "left": 340}, {"solidity": 0.995535500995355, "top": 4025, "right": 2745, "bottom": 5225, "left": 740}, {"solidity": 0.9982240541992348, "top": 2540, "right": 2680, "bottom": 3730, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701363f.jpg"} -{"rects": [{"solidity": 0.9952028809291262, "top": 415, "right": 3100, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729058f.jpg"} -{"rects": [{"solidity": 0.9952030868810846, "top": 2275, "right": 3160, "bottom": 3890, "left": 760}, {"solidity": 0.9952843641187199, "top": 395, "right": 3180, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/724941f.jpg"} -{"rects": [{"solidity": 0.995203238142799, "top": 2205, "right": 3085, "bottom": 3810, "left": 670}, {"solidity": 0.997884444385679, "top": 375, "right": 3090, "bottom": 1960, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/734702f.jpg"} -{"rects": [{"solidity": 0.9952034607181124, "top": 410, "right": 3115, "bottom": 2000, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718510f.jpg"} -{"rects": [{"solidity": 0.9952036365459498, "top": 805, "right": 2035, "bottom": 3195, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712116f.jpg"} -{"rects": [{"solidity": 0.995203907628285, "top": 465, "right": 3205, "bottom": 3680, "left": 670}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713454f.jpg"} -{"rects": [{"solidity": 0.9952043772127455, "top": 875, "right": 3820, "bottom": 3310, "left": 2200}, {"solidity": 0.9962319303934778, "top": 895, "right": 2030, "bottom": 3305, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730458f.jpg"} -{"rects": [{"solidity": 0.9952053719656736, "top": 430, "right": 2890, "bottom": 2000, "left": 930}, {"solidity": 0.9930003984592908, "top": 2280, "right": 2860, "bottom": 3790, "left": 965}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701080f.jpg"} -{"rects": [{"solidity": 0.9952056620071995, "top": 810, "right": 3975, "bottom": 3230, "left": 2335}, {"solidity": 0.9978743520359926, "top": 805, "right": 2110, "bottom": 3210, "left": 505}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724160f.jpg"} -{"rects": [{"solidity": 0.9952058597872945, "top": 1065, "right": 3035, "bottom": 3255, "left": 1670}], "shape": {"h": 6005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465596.jpg"} -{"rects": [{"solidity": 0.9952062682717957, "top": 2365, "right": 2880, "bottom": 3780, "left": 1065}, {"solidity": 0.9941380894365776, "top": 505, "right": 2895, "bottom": 1915, "left": 1090}, {"solidity": 0.9930537492923698, "top": 4225, "right": 2890, "bottom": 5605, "left": 1085}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725054f.jpg"} -{"rects": [{"solidity": 0.9952063054743991, "top": 600, "right": 3305, "bottom": 2485, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733548f.jpg"} -{"rects": [{"solidity": 0.9952064197324468, "top": 2305, "right": 3100, "bottom": 3935, "left": 675}, {"solidity": 0.9964010796760971, "top": 450, "right": 3085, "bottom": 2065, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728356f.jpg"} -{"rects": [{"solidity": 0.9952065061523275, "top": 720, "right": 2535, "bottom": 2210, "left": 445}, {"solidity": 0.9946600023056273, "top": 2465, "right": 2505, "bottom": 3950, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716222f.jpg"} -{"rects": [{"solidity": 0.9952069074162214, "top": 2040, "right": 3165, "bottom": 3630, "left": 790}, {"solidity": 0.9928451769286202, "top": 3975, "right": 2950, "bottom": 5410, "left": 1050}, {"solidity": 0.9946833078962166, "top": 345, "right": 2885, "bottom": 1740, "left": 1075}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713068f.jpg"} -{"rects": [{"solidity": 0.995207059656881, "top": 2240, "right": 3235, "bottom": 3830, "left": 830}, {"solidity": 0.9928829385467846, "top": 4090, "right": 3235, "bottom": 5670, "left": 810}, {"solidity": 0.9896472418125137, "top": 395, "right": 3240, "bottom": 1980, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725598f.jpg"} -{"rects": [{"solidity": 0.9952070856961153, "top": 830, "right": 1995, "bottom": 3240, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719212f.jpg"} -{"rects": [{"solidity": 0.9952073275766176, "top": 2240, "right": 3175, "bottom": 3895, "left": 725}, {"solidity": 0.9941280895807729, "top": 410, "right": 3195, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720384f.jpg"} -{"rects": [{"solidity": 0.9952081119275351, "top": 1040, "right": 3565, "bottom": 5080, "left": 285}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717680f.jpg"} -{"rects": [{"solidity": 0.9952087176572566, "top": 420, "right": 3065, "bottom": 2060, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729139f.jpg"} -{"rects": [{"solidity": 0.9952092695064434, "top": 1095, "right": 3265, "bottom": 2095, "left": 1510}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507829.jpg"} -{"rects": [{"solidity": 0.9952098348848337, "top": 580, "right": 3025, "bottom": 2000, "left": 1200}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727602f.jpg"} -{"rects": [{"solidity": 0.995209910804091, "top": 425, "right": 3180, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730551f.jpg"} -{"rects": [{"solidity": 0.9952099428745953, "top": 2225, "right": 3130, "bottom": 3900, "left": 685}, {"solidity": 0.9942883997806846, "top": 4090, "right": 3135, "bottom": 5755, "left": 690}, {"solidity": 0.9951798785973353, "top": 395, "right": 3110, "bottom": 2045, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731815f.jpg"} -{"rects": [{"solidity": 0.9952102009773779, "top": 825, "right": 2015, "bottom": 3250, "left": 395}, {"solidity": 0.9921032373415888, "top": 855, "right": 4025, "bottom": 2410, "left": 2065}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732051f.jpg"} -{"rects": [{"solidity": 0.9952103661051982, "top": 460, "right": 3015, "bottom": 1925, "left": 1020}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701918f.jpg"} -{"rects": [{"solidity": 0.9952105015726905, "top": 825, "right": 2595, "bottom": 3525, "left": 795}], "shape": {"h": 4430, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/708872f.jpg"} -{"rects": [{"solidity": 0.9952108281890558, "top": 615, "right": 2685, "bottom": 2070, "left": 835}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704812f.jpg"} -{"rects": [{"solidity": 0.9952116156935434, "top": 870, "right": 2005, "bottom": 3290, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729609f.jpg"} -{"rects": [{"solidity": 0.995211773174855, "top": 775, "right": 2055, "bottom": 3185, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723080f.jpg"} -{"rects": [{"solidity": 0.9952121228167722, "top": 1000, "right": 1925, "bottom": 3020, "left": 505}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719201f.jpg"} -{"rects": [{"solidity": 0.9952124968216013, "top": 590, "right": 3525, "bottom": 2420, "left": 810}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711348f.jpg"} -{"rects": [{"solidity": 0.9952128958723439, "top": 820, "right": 2075, "bottom": 3225, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718855f.jpg"} -{"rects": [{"solidity": 0.9952130182901994, "top": 650, "right": 2695, "bottom": 2085, "left": 850}, {"solidity": 0.9941491907992399, "top": 2160, "right": 5225, "bottom": 3585, "left": 3390}, {"solidity": 0.9968055514601087, "top": 2155, "right": 2690, "bottom": 3560, "left": 860}, {"solidity": 0.9951292876767538, "top": 680, "right": 5235, "bottom": 2080, "left": 3400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706042f.jpg"} -{"rects": [{"solidity": 0.9952130386785312, "top": 1045, "right": 3525, "bottom": 5095, "left": 300}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702096f.jpg"} -{"rects": [{"solidity": 0.9952133426259341, "top": 2245, "right": 3135, "bottom": 3665, "left": 1295}, {"solidity": 0.9955436328187989, "top": 470, "right": 3125, "bottom": 1895, "left": 1310}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726844f.jpg"} -{"rects": [{"solidity": 0.9952134528190142, "top": 440, "right": 3030, "bottom": 1880, "left": 1220}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726546f.jpg"} -{"rects": [{"solidity": 0.9952135278600548, "top": 4070, "right": 3140, "bottom": 5705, "left": 720}, {"solidity": 0.9957324454223581, "top": 2220, "right": 3185, "bottom": 3860, "left": 765}, {"solidity": 0.9959517993812083, "top": 385, "right": 3185, "bottom": 2015, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720090f.jpg"} -{"rects": [{"solidity": 0.9952137576342012, "top": 425, "right": 3180, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730725f.jpg"} -{"rects": [{"solidity": 0.9952137949436328, "top": 900, "right": 5635, "bottom": 3280, "left": 4045}, {"solidity": 0.9962414132825891, "top": 875, "right": 2025, "bottom": 3245, "left": 445}, {"solidity": 0.9974017595102264, "top": 945, "right": 3805, "bottom": 3265, "left": 2255}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710665f.jpg"} -{"rects": [{"solidity": 0.9952142220835041, "top": 710, "right": 3915, "bottom": 3130, "left": 2310}, {"solidity": 0.9958691108581028, "top": 730, "right": 2065, "bottom": 3135, "left": 470}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721006f.jpg"} -{"rects": [{"solidity": 0.9952143920011827, "top": 1120, "right": 3320, "bottom": 5105, "left": 385}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731212f.jpg"} -{"rects": [{"solidity": 0.9952146621202728, "top": 575, "right": 2795, "bottom": 2020, "left": 960}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706055f.jpg"} -{"rects": [{"solidity": 0.9952146780995659, "top": 415, "right": 3020, "bottom": 2025, "left": 995}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714759f.jpg"} -{"rects": [{"solidity": 0.9952147188647333, "top": 445, "right": 3615, "bottom": 2255, "left": 910}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/702184f.jpg"} -{"rects": [{"solidity": 0.9952148611707077, "top": 675, "right": 3285, "bottom": 2610, "left": 565}, {"solidity": 0.9927060360621436, "top": 3270, "right": 3280, "bottom": 5170, "left": 570}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714578f.jpg"} -{"rects": [{"solidity": 0.9952149609294975, "top": 560, "right": 3000, "bottom": 1995, "left": 1190}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727528f.jpg"} -{"rects": [{"solidity": 0.9952153573469447, "top": 800, "right": 2170, "bottom": 3215, "left": 535}, {"solidity": 0.9961315658366465, "top": 795, "right": 3995, "bottom": 3200, "left": 2385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718443f.jpg"} -{"rects": [{"solidity": 0.9952154645427737, "top": 395, "right": 3250, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703391f.jpg"} -{"rects": [{"solidity": 0.99521570620751, "top": 4040, "right": 3065, "bottom": 5695, "left": 620}, {"solidity": 0.9938076760035217, "top": 385, "right": 3060, "bottom": 1985, "left": 640}, {"solidity": 0.9974969456777616, "top": 2225, "right": 3055, "bottom": 3815, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722871f.jpg"} -{"rects": [{"solidity": 0.9952158196895599, "top": 775, "right": 2030, "bottom": 3165, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718628f.jpg"} -{"rects": [{"solidity": 0.9952161707997008, "top": 2065, "right": 2720, "bottom": 3500, "left": 900}, {"solidity": 0.9978687335867988, "top": 660, "right": 5215, "bottom": 2095, "left": 3420}, {"solidity": 0.9947620073670493, "top": 655, "right": 2690, "bottom": 2050, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726556f.jpg"} -{"rects": [{"solidity": 0.9952165393351899, "top": 2295, "right": 3080, "bottom": 3910, "left": 665}, {"solidity": 0.9957228483940321, "top": 420, "right": 3060, "bottom": 2030, "left": 645}, {"solidity": 0.9959717689812851, "top": 4165, "right": 3085, "bottom": 5750, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731805f.jpg"} -{"rects": [{"solidity": 0.995216607371521, "top": 850, "right": 3765, "bottom": 3285, "left": 2145}, {"solidity": 0.9960852771246003, "top": 880, "right": 1965, "bottom": 3295, "left": 360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730453f.jpg"} -{"rects": [{"solidity": 0.9952167770818148, "top": 500, "right": 3190, "bottom": 2115, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730005f.jpg"} -{"rects": [{"solidity": 0.9952171222415337, "top": 715, "right": 1990, "bottom": 3110, "left": 375}], "shape": {"h": 3905, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728203f.jpg"} -{"rects": [{"solidity": 0.9952180510484374, "top": 850, "right": 3905, "bottom": 3275, "left": 2295}, {"solidity": 0.996078831953236, "top": 870, "right": 2005, "bottom": 3280, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728341f.jpg"} -{"rects": [{"solidity": 0.9952180593649927, "top": 660, "right": 2710, "bottom": 2100, "left": 850}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704713f.jpg"} -{"rects": [{"solidity": 0.9952187240933891, "top": 2200, "right": 3180, "bottom": 3820, "left": 755}, {"solidity": 0.9967359394313968, "top": 390, "right": 3185, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705877f.jpg"} -{"rects": [{"solidity": 0.9952187861318742, "top": 430, "right": 3090, "bottom": 2045, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729347f.jpg"} -{"rects": [{"solidity": 0.9952190014046738, "top": 920, "right": 1870, "bottom": 2750, "left": 500}, {"solidity": 0.9957492301554012, "top": 3170, "right": 3350, "bottom": 4985, "left": 1985}, {"solidity": 0.9960231920443262, "top": 945, "right": 3360, "bottom": 2750, "left": 2000}, {"solidity": 0.9946761865721595, "top": 3160, "right": 1830, "bottom": 4980, "left": 485}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707059f.jpg"} -{"rects": [{"solidity": 0.9952190547972329, "top": 2240, "right": 3155, "bottom": 3900, "left": 710}, {"solidity": 0.9948500963989493, "top": 415, "right": 3175, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734067f.jpg"} -{"rects": [{"solidity": 0.995219147616382, "top": 550, "right": 3115, "bottom": 1950, "left": 1315}, {"solidity": 0.9956917233611629, "top": 4210, "right": 3070, "bottom": 5600, "left": 1255}, {"solidity": 0.9958246346555324, "top": 2455, "right": 3110, "bottom": 3815, "left": 1300}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726224f.jpg"} -{"rects": [{"solidity": 0.995219189872012, "top": 270, "right": 4975, "bottom": 3665, "left": 965}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719130f.jpg"} -{"rects": [{"solidity": 0.9952193234627981, "top": 2240, "right": 3115, "bottom": 3895, "left": 665}, {"solidity": 0.9954985276899567, "top": 415, "right": 3140, "bottom": 2060, "left": 700}, {"solidity": 0.9953156152610286, "top": 4070, "right": 3080, "bottom": 5700, "left": 655}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/733950f.jpg"} -{"rects": [{"solidity": 0.9952194627339084, "top": 380, "right": 3315, "bottom": 2005, "left": 890}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725084f.jpg"} -{"rects": [{"solidity": 0.9952198269635146, "top": 935, "right": 3890, "bottom": 3365, "left": 2260}, {"solidity": 0.9969399170102892, "top": 940, "right": 2000, "bottom": 3350, "left": 395}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728825f.jpg"} -{"rects": [{"solidity": 0.9952200028479333, "top": 435, "right": 3210, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707021f.jpg"} -{"rects": [{"solidity": 0.99522148788994, "top": 755, "right": 5735, "bottom": 3185, "left": 4115}, {"solidity": 0.9966106063535022, "top": 745, "right": 3830, "bottom": 3170, "left": 2215}, {"solidity": 0.997027460909969, "top": 760, "right": 2040, "bottom": 3170, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709550f.jpg"} -{"rects": [{"solidity": 0.9952216176499792, "top": 670, "right": 3260, "bottom": 2555, "left": 560}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712023f.jpg"} -{"rects": [{"solidity": 0.9952223136859913, "top": 520, "right": 4895, "bottom": 3265, "left": 1255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733688f.jpg"} -{"rects": [{"solidity": 0.9952223949397255, "top": 670, "right": 2370, "bottom": 3495, "left": 350}, {"solidity": 0.9973709637552525, "top": 905, "right": 4150, "bottom": 3325, "left": 2520}, {"solidity": 0.9947338074187968, "top": 945, "right": 5840, "bottom": 3305, "left": 4310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723982f.jpg"} -{"rects": [{"solidity": 0.9952224573852982, "top": 380, "right": 3065, "bottom": 2000, "left": 650}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728413f.jpg"} -{"rects": [{"solidity": 0.9952227327837334, "top": 2115, "right": 3445, "bottom": 4060, "left": 660}, {"solidity": 0.9946984107210449, "top": 145, "right": 3415, "bottom": 2075, "left": 655}, {"solidity": 0.9809729833669839, "top": 4085, "right": 3440, "bottom": 6010, "left": 665}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725061f.jpg"} -{"rects": [{"solidity": 0.9952228364082517, "top": 405, "right": 3095, "bottom": 2020, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734364f.jpg"} -{"rects": [{"solidity": 0.9952228381019512, "top": 2190, "right": 3425, "bottom": 3830, "left": 985}, {"solidity": 0.9963308959379635, "top": 365, "right": 3420, "bottom": 1970, "left": 1005}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702483f.jpg"} -{"rects": [{"solidity": 0.9952230446089217, "top": 575, "right": 1320, "bottom": 2115, "left": 290}], "shape": {"h": 2605, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/715758f.jpg"} -{"rects": [{"solidity": 0.9952235726779387, "top": 750, "right": 2005, "bottom": 3190, "left": 380}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720457f.jpg"} -{"rects": [{"solidity": 0.9952237958040823, "top": 2465, "right": 2525, "bottom": 3960, "left": 420}, {"solidity": 0.9975164413218415, "top": 730, "right": 2545, "bottom": 2210, "left": 460}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716252f.jpg"} -{"rects": [{"solidity": 0.995223903530534, "top": 2230, "right": 3115, "bottom": 3875, "left": 675}, {"solidity": 0.997212743401613, "top": 390, "right": 3110, "bottom": 2005, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729820f.jpg"} -{"rects": [{"solidity": 0.9952243746323566, "top": 415, "right": 3225, "bottom": 2010, "left": 820}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/701155f.jpg"} -{"rects": [{"solidity": 0.9952244843272489, "top": 730, "right": 5895, "bottom": 3195, "left": 2640}, {"solidity": 0.9972885043754149, "top": 700, "right": 2570, "bottom": 3730, "left": 550}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723405f.jpg"} -{"rects": [{"solidity": 0.99522503797526, "top": 425, "right": 3190, "bottom": 2040, "left": 775}, {"solidity": 0.9930534829338048, "top": 2265, "right": 3195, "bottom": 3870, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730273f.jpg"} -{"rects": [{"solidity": 0.9952251481933383, "top": 665, "right": 2720, "bottom": 2105, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705531f.jpg"} -{"rects": [{"solidity": 0.9952252684402789, "top": 530, "right": 4930, "bottom": 3635, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720957f.jpg"} -{"rects": [{"solidity": 0.9952257114178822, "top": 2185, "right": 3095, "bottom": 3795, "left": 685}, {"solidity": 0.9960453717416091, "top": 320, "right": 3100, "bottom": 1925, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730821f.jpg"} -{"rects": [{"solidity": 0.995225896121092, "top": 810, "right": 2950, "bottom": 2205, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709580f.jpg"} -{"rects": [{"solidity": 0.9952261667331472, "top": 2225, "right": 3190, "bottom": 3870, "left": 755}, {"solidity": 0.9952100480274223, "top": 375, "right": 3185, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733514f.jpg"} -{"rects": [{"solidity": 0.995226847429237, "top": 825, "right": 2035, "bottom": 3230, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720674f.jpg"} -{"rects": [{"solidity": 0.9952270416766155, "top": 660, "right": 2735, "bottom": 3500, "left": 925}, {"solidity": 0.9950497246286061, "top": 2085, "right": 5220, "bottom": 3510, "left": 3420}, {"solidity": 0.9944629288140285, "top": 655, "right": 5225, "bottom": 2075, "left": 3420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731336f.jpg"} -{"rects": [{"solidity": 0.9952270575997485, "top": 820, "right": 2075, "bottom": 3205, "left": 485}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713224f.jpg"} -{"rects": [{"solidity": 0.9952274298530953, "top": 425, "right": 3105, "bottom": 2075, "left": 660}, {"solidity": 0.9949801570817809, "top": 2205, "right": 3135, "bottom": 3845, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727830f.jpg"} -{"rects": [{"solidity": 0.9952276631437302, "top": 295, "right": 5605, "bottom": 4050, "left": 1085}], "shape": {"h": 4415, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/711660f.jpg"} -{"rects": [{"solidity": 0.9952277962053202, "top": 2170, "right": 2685, "bottom": 3560, "left": 865}, {"solidity": 0.9957325030104244, "top": 715, "right": 2680, "bottom": 2100, "left": 870}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725525f.jpg"} -{"rects": [{"solidity": 0.9952283207868743, "top": 2420, "right": 3265, "bottom": 4380, "left": 400}, {"solidity": 0.9937717835325863, "top": 440, "right": 3290, "bottom": 2375, "left": 470}, {"solidity": 0.9673405228630939, "top": 4355, "right": 2770, "bottom": 5795, "left": 895}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720495f.jpg"} -{"rects": [{"solidity": 0.99522842790036, "top": 660, "right": 2755, "bottom": 2070, "left": 935}, {"solidity": 0.9939599699972366, "top": 2080, "right": 2765, "bottom": 3500, "left": 950}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726033f.jpg"} -{"rects": [{"solidity": 0.9952288543467225, "top": 2260, "right": 3175, "bottom": 3890, "left": 740}, {"solidity": 0.996859104248746, "top": 4140, "right": 3145, "bottom": 5755, "left": 720}, {"solidity": 0.9964891293040674, "top": 410, "right": 3175, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733663f.jpg"} -{"rects": [{"solidity": 0.9952289036097448, "top": 2205, "right": 3155, "bottom": 3845, "left": 725}, {"solidity": 0.9967034102429984, "top": 360, "right": 3150, "bottom": 1980, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730755f.jpg"} -{"rects": [{"solidity": 0.9952290168057802, "top": 390, "right": 3130, "bottom": 2045, "left": 695}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732427f.jpg"} -{"rects": [{"solidity": 0.9952290781141933, "top": 485, "right": 3185, "bottom": 2070, "left": 810}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724900f.jpg"} -{"rects": [{"solidity": 0.9952299672014591, "top": 465, "right": 3560, "bottom": 2410, "left": 860}], "shape": {"h": 6895, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706387f.jpg"} -{"rects": [{"solidity": 0.9952302692550076, "top": 310, "right": 1840, "bottom": 1200, "left": 690}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727153f.jpg"} -{"rects": [{"solidity": 0.9952303669940074, "top": 510, "right": 3135, "bottom": 2100, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710600f.jpg"} -{"rects": [{"solidity": 0.9952304042800182, "top": 345, "right": 1940, "bottom": 1225, "left": 795}], "shape": {"h": 3940, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727052f.jpg"} -{"rects": [{"solidity": 0.9952305862889049, "top": 2240, "right": 3330, "bottom": 3860, "left": 905}, {"solidity": 0.9965936626898478, "top": 410, "right": 3335, "bottom": 1990, "left": 930}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724978f.jpg"} -{"rects": [{"solidity": 0.9952306943966591, "top": 955, "right": 2000, "bottom": 3160, "left": 545}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723539f.jpg"} -{"rects": [{"solidity": 0.9952307603070359, "top": 2280, "right": 3175, "bottom": 3905, "left": 755}, {"solidity": 0.9944924924146158, "top": 4110, "right": 3165, "bottom": 5730, "left": 750}, {"solidity": 0.9965731091779375, "top": 475, "right": 3165, "bottom": 2080, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710639f.jpg"} -{"rects": [{"solidity": 0.9952313410936124, "top": 515, "right": 2875, "bottom": 1935, "left": 1055}, {"solidity": 0.9955933364100579, "top": 2135, "right": 2880, "bottom": 3530, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725713f.jpg"} -{"rects": [{"solidity": 0.9952315839196479, "top": 660, "right": 5215, "bottom": 2060, "left": 3400}, {"solidity": 0.9953782596164057, "top": 665, "right": 2730, "bottom": 2055, "left": 935}, {"solidity": 0.9925596367888, "top": 2075, "right": 2730, "bottom": 3465, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725432f.jpg"} -{"rects": [{"solidity": 0.9952319114979332, "top": 445, "right": 3160, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/733444f.jpg"} -{"rects": [{"solidity": 0.9952319297639121, "top": 380, "right": 3190, "bottom": 2015, "left": 780}], "shape": {"h": 6060, "w": 3885}, "file": "/usr/local/google/home/danvk/milstein/728140f.jpg"} -{"rects": [{"solidity": 0.995231986535442, "top": 525, "right": 5180, "bottom": 3570, "left": 1120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729617f.jpg"} -{"rects": [{"solidity": 0.9952319869992331, "top": 830, "right": 5270, "bottom": 3570, "left": 1255}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723610f.jpg"} -{"rects": [{"solidity": 0.995232165271707, "top": 665, "right": 2650, "bottom": 2085, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726318f.jpg"} -{"rects": [{"solidity": 0.9952322885015192, "top": 360, "right": 3320, "bottom": 2250, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712578f.jpg"} -{"rects": [{"solidity": 0.9952323610447575, "top": 4050, "right": 3170, "bottom": 5650, "left": 760}, {"solidity": 0.9955486151064354, "top": 2290, "right": 3170, "bottom": 3890, "left": 760}, {"solidity": 0.9955546083893031, "top": 510, "right": 3160, "bottom": 2110, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733202f.jpg"} -{"rects": [{"solidity": 0.9952324109589699, "top": 2110, "right": 3375, "bottom": 4070, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703837f.jpg"} -{"rects": [{"solidity": 0.9952324138360621, "top": 675, "right": 2855, "bottom": 2130, "left": 1020}, {"solidity": 0.9986049308478653, "top": 645, "right": 5295, "bottom": 2080, "left": 3470}, {"solidity": 0.9948631781084973, "top": 2140, "right": 2875, "bottom": 3585, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734767f.jpg"} -{"rects": [{"solidity": 0.995232460011834, "top": 735, "right": 3085, "bottom": 2655, "left": 365}, {"solidity": 0.9964452955594213, "top": 3300, "right": 3060, "bottom": 5230, "left": 375}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714026f.jpg"} -{"rects": [{"solidity": 0.9952329570160887, "top": 2265, "right": 3110, "bottom": 3895, "left": 685}, {"solidity": 0.9987914797695017, "top": 380, "right": 3105, "bottom": 1985, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729111f.jpg"} -{"rects": [{"solidity": 0.9952331552634045, "top": 390, "right": 3185, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723061f.jpg"} -{"rects": [{"solidity": 0.9952337961268494, "top": 485, "right": 3920, "bottom": 2575, "left": 2420}, {"solidity": 0.9957360705493956, "top": 495, "right": 2135, "bottom": 2585, "left": 645}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716188f.jpg"} -{"rects": [{"solidity": 0.9952351076476027, "top": 545, "right": 3135, "bottom": 2140, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710112f.jpg"} -{"rects": [{"solidity": 0.9952356672714511, "top": 665, "right": 2030, "bottom": 3060, "left": 435}, {"solidity": 0.9972701006276776, "top": 670, "right": 3900, "bottom": 3065, "left": 2315}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727261f.jpg"} -{"rects": [{"solidity": 0.9952358676792107, "top": 455, "right": 3145, "bottom": 2065, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718070f.jpg"} -{"rects": [{"solidity": 0.9952361850612544, "top": 745, "right": 3305, "bottom": 2650, "left": 615}, {"solidity": 0.9964156274648801, "top": 3300, "right": 3270, "bottom": 5180, "left": 575}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712000f.jpg"} -{"rects": [{"solidity": 0.9952362462925923, "top": 755, "right": 2080, "bottom": 3165, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713990f.jpg"} -{"rects": [{"solidity": 0.995236530465225, "top": 630, "right": 4840, "bottom": 3420, "left": 1275}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712939f.jpg"} -{"rects": [{"solidity": 0.9952369543341799, "top": 640, "right": 2860, "bottom": 2075, "left": 1005}, {"solidity": 0.9953026889709055, "top": 2235, "right": 5040, "bottom": 3670, "left": 3185}, {"solidity": 0.9958719579337476, "top": 2255, "right": 2850, "bottom": 3675, "left": 1000}, {"solidity": 0.9939967832926764, "top": 640, "right": 5015, "bottom": 2065, "left": 3200}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726407f.jpg"} -{"rects": [{"solidity": 0.9952371156475756, "top": 430, "right": 3300, "bottom": 2360, "left": 570}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703051f.jpg"} -{"rects": [{"solidity": 0.9952372436159382, "top": 530, "right": 5050, "bottom": 3710, "left": 1085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726030f.jpg"} -{"rects": [{"solidity": 0.9952374544650666, "top": 2100, "right": 5140, "bottom": 3540, "left": 3310}, {"solidity": 0.9969828189643104, "top": 620, "right": 5150, "bottom": 2055, "left": 3325}, {"solidity": 0.9880490491928917, "top": 2110, "right": 2710, "bottom": 3550, "left": 865}, {"solidity": 0.997201646891638, "top": 620, "right": 2695, "bottom": 2040, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702813f.jpg"} -{"rects": [{"solidity": 0.9952376941368564, "top": 770, "right": 3895, "bottom": 3175, "left": 2275}, {"solidity": 0.9972811434140003, "top": 770, "right": 2035, "bottom": 3170, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708099f.jpg"} -{"rects": [{"solidity": 0.9952380555948684, "top": 460, "right": 3180, "bottom": 2005, "left": 1210}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702440f.jpg"} -{"rects": [{"solidity": 0.9952383505295325, "top": 665, "right": 2725, "bottom": 2080, "left": 890}, {"solidity": 0.9944552041448332, "top": 2120, "right": 2720, "bottom": 3530, "left": 895}, {"solidity": 0.992774431698254, "top": 2125, "right": 5260, "bottom": 3535, "left": 3420}, {"solidity": 0.9958595398174255, "top": 660, "right": 5240, "bottom": 2070, "left": 3420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727976f.jpg"} -{"rects": [{"solidity": 0.9952383642302465, "top": 835, "right": 2090, "bottom": 3220, "left": 500}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712568f.jpg"} -{"rects": [{"solidity": 0.9952383873144182, "top": 2255, "right": 3190, "bottom": 3875, "left": 780}, {"solidity": 0.9978747853565856, "top": 4120, "right": 3185, "bottom": 5720, "left": 775}, {"solidity": 0.9961494711243021, "top": 425, "right": 3185, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700578f.jpg"} -{"rects": [{"solidity": 0.9952385742547698, "top": 785, "right": 2030, "bottom": 3170, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714059f.jpg"} -{"rects": [{"solidity": 0.9952386678419229, "top": 585, "right": 4875, "bottom": 3625, "left": 1110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718430f.jpg"} -{"rects": [{"solidity": 0.9952386690419043, "top": 390, "right": 3145, "bottom": 1995, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729194f.jpg"} -{"rects": [{"solidity": 0.9952386807167775, "top": 365, "right": 3350, "bottom": 2300, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710597f.jpg"} -{"rects": [{"solidity": 0.9952388520054877, "top": 390, "right": 3175, "bottom": 2010, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734236f.jpg"} -{"rects": [{"solidity": 0.9952390701725309, "top": 425, "right": 3185, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734660f.jpg"} -{"rects": [{"solidity": 0.9952391799544419, "top": 750, "right": 2015, "bottom": 3160, "left": 400}, {"solidity": 0.9964260012059207, "top": 1055, "right": 3595, "bottom": 2860, "left": 2150}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722494f.jpg"} -{"rects": [{"solidity": 0.9952392006061588, "top": 485, "right": 2030, "bottom": 2605, "left": 660}], "shape": {"h": 2975, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/706026f.jpg"} -{"rects": [{"solidity": 0.9952396650623063, "top": 380, "right": 3120, "bottom": 1995, "left": 720}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718132f.jpg"} -{"rects": [{"solidity": 0.9952400158666138, "top": 765, "right": 2015, "bottom": 3155, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709865f.jpg"} -{"rects": [{"solidity": 0.9952414641946832, "top": 360, "right": 3070, "bottom": 2005, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719166f.jpg"} -{"rects": [{"solidity": 0.9952419286223846, "top": 2240, "right": 3175, "bottom": 3855, "left": 780}, {"solidity": 0.9968773725037134, "top": 425, "right": 3165, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/734572f.jpg"} -{"rects": [{"solidity": 0.995242071986459, "top": 725, "right": 2120, "bottom": 3160, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712586f.jpg"} -{"rects": [{"solidity": 0.9952421059322707, "top": 2265, "right": 3205, "bottom": 3915, "left": 770}, {"solidity": 0.9964293011354238, "top": 4145, "right": 3190, "bottom": 5760, "left": 775}, {"solidity": 0.9973575886336475, "top": 410, "right": 3180, "bottom": 2000, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734556f.jpg"} -{"rects": [{"solidity": 0.9952425915165601, "top": 650, "right": 3355, "bottom": 2580, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712348f.jpg"} -{"rects": [{"solidity": 0.9952428172373342, "top": 390, "right": 3175, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720242f.jpg"} -{"rects": [{"solidity": 0.9952428542874275, "top": 420, "right": 2405, "bottom": 1655, "left": 590}], "shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715841f.jpg"} -{"rects": [{"solidity": 0.9952429008677639, "top": 390, "right": 3195, "bottom": 1980, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720583f.jpg"} -{"rects": [{"solidity": 0.9952436194895592, "top": 675, "right": 2725, "bottom": 2060, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726436f.jpg"} -{"rects": [{"solidity": 0.9952436998396808, "top": 2060, "right": 5170, "bottom": 3490, "left": 3330}, {"solidity": 0.9976937201615865, "top": 615, "right": 2615, "bottom": 2030, "left": 795}, {"solidity": 0.9969440261351986, "top": 600, "right": 5150, "bottom": 2015, "left": 3330}, {"solidity": 0.9601661057644998, "top": 2085, "right": 2630, "bottom": 3480, "left": 790}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703565f.jpg"} -{"rects": [{"solidity": 0.9952440663072725, "top": 2235, "right": 3160, "bottom": 3895, "left": 715}, {"solidity": 0.9952297933660997, "top": 415, "right": 3175, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718924f.jpg"} -{"rects": [{"solidity": 0.9952441621847677, "top": 2230, "right": 4970, "bottom": 3670, "left": 3150}, {"solidity": 0.9951728739060477, "top": 585, "right": 2760, "bottom": 2020, "left": 955}, {"solidity": 0.9963211115781145, "top": 2220, "right": 2795, "bottom": 3645, "left": 995}, {"solidity": 0.9962331087814406, "top": 560, "right": 4935, "bottom": 1980, "left": 3140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727748f.jpg"} -{"rects": [{"solidity": 0.9952442242621464, "top": 935, "right": 2085, "bottom": 2890, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703226f.jpg"} -{"rects": [{"solidity": 0.9952443121260323, "top": 805, "right": 3925, "bottom": 3235, "left": 2295}, {"solidity": 0.9972664645192288, "top": 800, "right": 2050, "bottom": 3210, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733660f.jpg"} -{"rects": [{"solidity": 0.995244716883647, "top": 420, "right": 3080, "bottom": 2070, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705506f.jpg"} -{"rects": [{"solidity": 0.9952448805900861, "top": 4040, "right": 3080, "bottom": 5660, "left": 660}, {"solidity": 0.9956541465469747, "top": 2165, "right": 3080, "bottom": 3785, "left": 660}, {"solidity": 0.9964074971146187, "top": 345, "right": 3085, "bottom": 1960, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728518f.jpg"} -{"rects": [{"solidity": 0.9952450432885062, "top": 2210, "right": 3120, "bottom": 3885, "left": 680}, {"solidity": 0.995216930115119, "top": 370, "right": 3130, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/712274f.jpg"} -{"rects": [{"solidity": 0.9952450765434685, "top": 2285, "right": 3005, "bottom": 3900, "left": 595}, {"solidity": 0.9964279824532472, "top": 415, "right": 3010, "bottom": 2010, "left": 615}, {"solidity": 0.9955363618382014, "top": 4155, "right": 3005, "bottom": 5765, "left": 590}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733626f.jpg"} -{"rects": [{"solidity": 0.9952452609125343, "top": 570, "right": 4960, "bottom": 3565, "left": 1200}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713619f.jpg"} -{"rects": [{"solidity": 0.9952453563409189, "top": 415, "right": 3130, "bottom": 2040, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705183f.jpg"} -{"rects": [{"solidity": 0.9952454136657526, "top": 395, "right": 3140, "bottom": 1995, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709529f.jpg"} -{"rects": [{"solidity": 0.9952455119272071, "top": 445, "right": 3160, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724840f.jpg"} -{"rects": [{"solidity": 0.9952457683347219, "top": 675, "right": 2765, "bottom": 2065, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727318f.jpg"} -{"rects": [{"solidity": 0.9952460662872448, "top": 4145, "right": 3060, "bottom": 5780, "left": 615}, {"solidity": 0.9977231975851705, "top": 410, "right": 3060, "bottom": 2030, "left": 650}, {"solidity": 0.9952798687699779, "top": 2275, "right": 3055, "bottom": 3900, "left": 640}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/728829f.jpg"} -{"rects": [{"solidity": 0.9952464243570538, "top": 445, "right": 3040, "bottom": 1980, "left": 1060}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702744f.jpg"} -{"rects": [{"solidity": 0.9952464435825398, "top": 2300, "right": 3200, "bottom": 3955, "left": 755}, {"solidity": 0.9954303736645049, "top": 4175, "right": 3175, "bottom": 5795, "left": 755}, {"solidity": 0.9931821910167656, "top": 445, "right": 3160, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734476f.jpg"} -{"rects": [{"solidity": 0.995246570023298, "top": 465, "right": 3180, "bottom": 2080, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723365f.jpg"} -{"rects": [{"solidity": 0.9952468122987231, "top": 600, "right": 4875, "bottom": 3645, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709877f.jpg"} -{"rects": [{"solidity": 0.9952469926030905, "top": 430, "right": 3130, "bottom": 2015, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714351f.jpg"} -{"rects": [{"solidity": 0.9952470338693569, "top": 810, "right": 2175, "bottom": 3215, "left": 545}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718463f.jpg"} -{"rects": [{"solidity": 0.9952472761511905, "top": 840, "right": 3245, "bottom": 2240, "left": 1225}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509275.jpg"} -{"rects": [{"solidity": 0.9952473398215993, "top": 505, "right": 3215, "bottom": 2130, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727586f.jpg"} -{"rects": [{"solidity": 0.9952474689742591, "top": 395, "right": 3150, "bottom": 2005, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730235f.jpg"} -{"rects": [{"solidity": 0.9952477016285077, "top": 555, "right": 4975, "bottom": 3590, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717300f.jpg"} -{"rects": [{"solidity": 0.995247823950155, "top": 2525, "right": 2475, "bottom": 4015, "left": 380}, {"solidity": 0.9961816074659944, "top": 645, "right": 2480, "bottom": 2130, "left": 390}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716032f.jpg"} -{"rects": [{"solidity": 0.9952478949544977, "top": 485, "right": 3315, "bottom": 2405, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714183f.jpg"} -{"rects": [{"solidity": 0.9952482704838016, "top": 570, "right": 5605, "bottom": 4000, "left": 975}], "shape": {"h": 4440, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708854f.jpg"} -{"rects": [{"solidity": 0.9952486296565493, "top": 430, "right": 3350, "bottom": 2090, "left": 900}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726438f.jpg"} -{"rects": [{"solidity": 0.9952493339335028, "top": 1175, "right": 3210, "bottom": 2645, "left": 1745}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712232f.jpg"} -{"rects": [{"solidity": 0.9952494683461476, "top": 975, "right": 3195, "bottom": 2590, "left": 780}, {"solidity": 0.9955835858792694, "top": 3250, "right": 3170, "bottom": 4850, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730878f.jpg"} -{"rects": [{"solidity": 0.9952494770446642, "top": 855, "right": 2055, "bottom": 3235, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713382f.jpg"} -{"rects": [{"solidity": 0.9952495766238985, "top": 610, "right": 2735, "bottom": 2045, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706156f.jpg"} -{"rects": [{"solidity": 0.9952498529012705, "top": 550, "right": 3285, "bottom": 2350, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709999f.jpg"} -{"rects": [{"solidity": 0.9952500713007856, "top": 620, "right": 2660, "bottom": 1990, "left": 880}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728096f.jpg"} -{"rects": [{"solidity": 0.9952501103476444, "top": 400, "right": 3150, "bottom": 1995, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711971f.jpg"} -{"rects": [{"solidity": 0.9952501895002116, "top": 395, "right": 2945, "bottom": 1810, "left": 1125}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704219f.jpg"} -{"rects": [{"solidity": 0.9952502006957452, "top": 405, "right": 2945, "bottom": 1930, "left": 1090}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/731422f.jpg"} -{"rects": [{"solidity": 0.9952505761670206, "top": 390, "right": 3045, "bottom": 1835, "left": 1095}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700382f.jpg"} -{"rects": [{"solidity": 0.9952508019690387, "top": 450, "right": 3095, "bottom": 2095, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729656f.jpg"} -{"rects": [{"solidity": 0.9952508106046157, "top": 790, "right": 2085, "bottom": 3375, "left": 300}, {"solidity": 0.9763358714681811, "top": 815, "right": 4055, "bottom": 3350, "left": 2275}, {"solidity": 0.9921565852569929, "top": 2190, "right": 5840, "bottom": 3720, "left": 4310}, {"solidity": 0.995382199198331, "top": 275, "right": 5675, "bottom": 2105, "left": 4495}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730255f.jpg"} -{"rects": [{"solidity": 0.9952508560369212, "top": 415, "right": 3045, "bottom": 1835, "left": 1250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726562f.jpg"} -{"rects": [{"solidity": 0.9952510137805911, "top": 880, "right": 3020, "bottom": 2120, "left": 1185}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509709.jpg"} -{"rects": [{"solidity": 0.9952512155591572, "top": 435, "right": 3050, "bottom": 2055, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729788f.jpg"} -{"rects": [{"solidity": 0.9952513242458279, "top": 745, "right": 2055, "bottom": 3135, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714164f.jpg"} -{"rects": [{"solidity": 0.9952514416416997, "top": 2240, "right": 3085, "bottom": 3865, "left": 655}, {"solidity": 0.9961206532130616, "top": 4090, "right": 3090, "bottom": 5700, "left": 675}, {"solidity": 0.9962259596565851, "top": 415, "right": 3080, "bottom": 2020, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734375f.jpg"} -{"rects": [{"solidity": 0.9952514809915454, "top": 1780, "right": 3630, "bottom": 4110, "left": 2100}, {"solidity": 0.9944965612500359, "top": 1800, "right": 1950, "bottom": 4125, "left": 410}, {"solidity": 0.9973806910193568, "top": 180, "right": 3025, "bottom": 1685, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726710f.jpg"} -{"rects": [{"solidity": 0.9952520723800923, "top": 405, "right": 3180, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724589f.jpg"} -{"rects": [{"solidity": 0.9952523833035816, "top": 565, "right": 3260, "bottom": 2580, "left": 450}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711522f.jpg"} -{"rects": [{"solidity": 0.99525249770682, "top": 390, "right": 1745, "bottom": 1290, "left": 610}, {"solidity": 0.9947419693260728, "top": 1410, "right": 1760, "bottom": 2305, "left": 625}], "shape": {"h": 2555, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/727215f.jpg"} -{"rects": [{"solidity": 0.9952529028416421, "top": 390, "right": 2930, "bottom": 1965, "left": 975}, {"solidity": 0.9823168109297558, "top": 2235, "right": 2920, "bottom": 3790, "left": 965}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701763f.jpg"} -{"rects": [{"solidity": 0.9952529346707742, "top": 905, "right": 3545, "bottom": 4885, "left": 355}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709338f.jpg"} -{"rects": [{"solidity": 0.9952532534716368, "top": 375, "right": 3150, "bottom": 1975, "left": 755}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/730299f.jpg"} -{"rects": [{"solidity": 0.9952538195995084, "top": 2270, "right": 3170, "bottom": 3880, "left": 760}, {"solidity": 0.9971093529801194, "top": 510, "right": 3175, "bottom": 2105, "left": 765}, {"solidity": 0.9947203767224361, "top": 4055, "right": 3175, "bottom": 5650, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726148f.jpg"} -{"rects": [{"solidity": 0.9952538477270735, "top": 375, "right": 3105, "bottom": 2025, "left": 670}, {"solidity": 0.9959261112230113, "top": 2245, "right": 3075, "bottom": 3860, "left": 655}, {"solidity": 0.995472275034791, "top": 4085, "right": 3055, "bottom": 5705, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728855f.jpg"} -{"rects": [{"solidity": 0.9952540809014793, "top": 2100, "right": 5325, "bottom": 3530, "left": 3525}, {"solidity": 0.997117644450357, "top": 2085, "right": 2645, "bottom": 3510, "left": 850}, {"solidity": 0.9956860555327697, "top": 625, "right": 2665, "bottom": 2025, "left": 840}, {"solidity": 0.996413850572147, "top": 630, "right": 5320, "bottom": 2045, "left": 3525}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725208f.jpg"} -{"rects": [{"solidity": 0.9952541006520735, "top": 845, "right": 4700, "bottom": 3240, "left": 1470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722897f.jpg"} -{"rects": [{"solidity": 0.9952541446973725, "top": 630, "right": 2670, "bottom": 2045, "left": 835}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705551f.jpg"} -{"rects": [{"solidity": 0.9952547723573225, "top": 765, "right": 2095, "bottom": 3165, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709821f.jpg"} -{"rects": [{"solidity": 0.9952549391769476, "top": 680, "right": 3285, "bottom": 2630, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733284f.jpg"} -{"rects": [{"solidity": 0.9952550105062956, "top": 420, "right": 3255, "bottom": 2030, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711782f.jpg"} -{"rects": [{"solidity": 0.9952555165432225, "top": 420, "right": 3150, "bottom": 2060, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717348f.jpg"} -{"rects": [{"solidity": 0.9952556990089343, "top": 735, "right": 5155, "bottom": 2160, "left": 3405}, {"solidity": 0.9958876989016312, "top": 2185, "right": 2540, "bottom": 3570, "left": 810}, {"solidity": 0.9973428001646716, "top": 745, "right": 2535, "bottom": 2125, "left": 825}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725307f.jpg"} -{"rects": [{"solidity": 0.9952559731320794, "top": 545, "right": 3235, "bottom": 2175, "left": 795}, {"solidity": 0.9960079904526314, "top": 2300, "right": 3215, "bottom": 3925, "left": 790}, {"solidity": 0.9981224645975946, "top": 4030, "right": 3195, "bottom": 5635, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733124f.jpg"} -{"rects": [{"solidity": 0.9952561669829222, "top": 775, "right": 2015, "bottom": 3195, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719638f.jpg"} -{"rects": [{"solidity": 0.9952562363512174, "top": 430, "right": 5085, "bottom": 3695, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714523f.jpg"} -{"rects": [{"solidity": 0.9952565580580548, "top": 785, "right": 2035, "bottom": 3210, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730569f.jpg"} -{"rects": [{"solidity": 0.9952568765545483, "top": 555, "right": 3355, "bottom": 2460, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717399f.jpg"} -{"rects": [{"solidity": 0.9952569504044108, "top": 860, "right": 2110, "bottom": 3305, "left": 495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721577f.jpg"} -{"rects": [{"solidity": 0.995257166372491, "top": 545, "right": 4955, "bottom": 3555, "left": 1115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715691f.jpg"} -{"rects": [{"solidity": 0.9952571937866056, "top": 445, "right": 3210, "bottom": 2090, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706092f.jpg"} -{"rects": [{"solidity": 0.9952575289931606, "top": 2115, "right": 5085, "bottom": 3490, "left": 3265}, {"solidity": 0.995735839109333, "top": 2130, "right": 2925, "bottom": 3475, "left": 1100}, {"solidity": 0.995586266777613, "top": 560, "right": 5085, "bottom": 1925, "left": 3265}, {"solidity": 0.9949253622698605, "top": 560, "right": 2920, "bottom": 1900, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707063f.jpg"} -{"rects": [{"solidity": 0.9952575489941651, "top": 1205, "right": 2135, "bottom": 3100, "left": 545}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711033f.jpg"} -{"rects": [{"solidity": 0.995257580661183, "top": 890, "right": 3955, "bottom": 3335, "left": 2320}, {"solidity": 0.9951958275292364, "top": 910, "right": 2040, "bottom": 3320, "left": 415}, {"solidity": 0.9948847608771952, "top": 890, "right": 5780, "bottom": 3320, "left": 4170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728862f.jpg"} -{"rects": [{"solidity": 0.9952575964906214, "top": 645, "right": 2590, "bottom": 2070, "left": 790}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724993f.jpg"} -{"rects": [{"solidity": 0.9952576781226541, "top": 850, "right": 2050, "bottom": 3260, "left": 445}, {"solidity": 0.9958717053032708, "top": 860, "right": 5695, "bottom": 3245, "left": 4110}, {"solidity": 0.9948809863892293, "top": 855, "right": 3735, "bottom": 2965, "left": 2435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716566f.jpg"} -{"rects": [{"solidity": 0.9952578786550543, "top": 380, "right": 3195, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720937f.jpg"} -{"rects": [{"solidity": 0.9952583179754997, "top": 2280, "right": 3050, "bottom": 3710, "left": 1170}, {"solidity": 0.9961562948392676, "top": 450, "right": 3055, "bottom": 1875, "left": 1190}, {"solidity": 0.9950467562828755, "top": 4155, "right": 3000, "bottom": 5590, "left": 1175}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727649f.jpg"} -{"rects": [{"solidity": 0.9952585831264948, "top": 770, "right": 4295, "bottom": 3190, "left": 2660}, {"solidity": 0.99815940903176, "top": 2050, "right": 2645, "bottom": 3470, "left": 850}, {"solidity": 0.9973655225791087, "top": 565, "right": 2625, "bottom": 1985, "left": 835}], "shape": {"h": 3835, "w": 6000}, "file": "/usr/local/google/home/danvk/milstein/732022f.jpg"} -{"rects": [{"solidity": 0.9952586073321145, "top": 540, "right": 5175, "bottom": 3400, "left": 3325}, {"solidity": 0.995136620670801, "top": 2010, "right": 2730, "bottom": 3440, "left": 890}, {"solidity": 0.998424642943837, "top": 615, "right": 2725, "bottom": 2005, "left": 895}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705909f.jpg"} -{"rects": [{"solidity": 0.9952586388247897, "top": 375, "right": 3145, "bottom": 2010, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705417f.jpg"} -{"rects": [{"solidity": 0.9952586516545738, "top": 2260, "right": 3185, "bottom": 3865, "left": 775}, {"solidity": 0.9961015433301993, "top": 400, "right": 3190, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727940f.jpg"} -{"rects": [{"solidity": 0.9952588114085658, "top": 860, "right": 5695, "bottom": 3280, "left": 4045}, {"solidity": 0.9943319254641336, "top": 950, "right": 3840, "bottom": 3265, "left": 2240}, {"solidity": 0.9960727609648584, "top": 950, "right": 2025, "bottom": 3270, "left": 475}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719798f.jpg"} -{"rects": [{"solidity": 0.9952591095691042, "top": 420, "right": 3135, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712159f.jpg"} -{"rects": [{"solidity": 0.9952591975149859, "top": 430, "right": 3110, "bottom": 2045, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728621f.jpg"} -{"rects": [{"solidity": 0.9952592048142959, "top": 630, "right": 3075, "bottom": 3475, "left": 1125}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732274f.jpg"} -{"rects": [{"solidity": 0.9952592331778227, "top": 795, "right": 3980, "bottom": 3245, "left": 2325}, {"solidity": 0.996604149493805, "top": 815, "right": 5805, "bottom": 3250, "left": 4175}, {"solidity": 0.996403979553417, "top": 775, "right": 2060, "bottom": 3210, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731089f.jpg"} -{"rects": [{"solidity": 0.9952593337912753, "top": 455, "right": 3045, "bottom": 2085, "left": 630}, {"solidity": 0.9929814772028789, "top": 2305, "right": 2840, "bottom": 3755, "left": 835}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701001f.jpg"} -{"rects": [{"solidity": 0.9952593652512439, "top": 850, "right": 2025, "bottom": 3270, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705624f.jpg"} -{"rects": [{"solidity": 0.9952598063311323, "top": 595, "right": 4855, "bottom": 3615, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709848f.jpg"} -{"rects": [{"solidity": 0.9952601797686865, "top": 4025, "right": 3140, "bottom": 5685, "left": 700}, {"solidity": 0.9958895632741136, "top": 2195, "right": 3170, "bottom": 3845, "left": 730}, {"solidity": 0.9969639052815801, "top": 380, "right": 3185, "bottom": 2000, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706966f.jpg"} -{"rects": [{"solidity": 0.9952603889030524, "top": 415, "right": 3070, "bottom": 2035, "left": 1030}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706094f.jpg"} -{"rects": [{"solidity": 0.9952603951558108, "top": 2245, "right": 3185, "bottom": 3830, "left": 790}, {"solidity": 0.9974167952094518, "top": 420, "right": 3170, "bottom": 1995, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718044f.jpg"} -{"rects": [{"solidity": 0.9952609635724167, "top": 875, "right": 5800, "bottom": 3305, "left": 4160}, {"solidity": 0.996764165517066, "top": 850, "right": 3950, "bottom": 3285, "left": 2310}, {"solidity": 0.9989379077102766, "top": 850, "right": 2065, "bottom": 3270, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718670f.jpg"} -{"rects": [{"solidity": 0.9952609743699063, "top": 415, "right": 3165, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700541f.jpg"} -{"rects": [{"solidity": 0.995261086904438, "top": 495, "right": 2230, "bottom": 2595, "left": 735}, {"solidity": 0.9949459720743542, "top": 515, "right": 3955, "bottom": 2600, "left": 2470}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716241f.jpg"} -{"rects": [{"solidity": 0.995261274727019, "top": 790, "right": 2060, "bottom": 3190, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709698f.jpg"} -{"rects": [{"solidity": 0.9952612949499705, "top": 625, "right": 4835, "bottom": 3650, "left": 1085}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718434f.jpg"} -{"rects": [{"solidity": 0.9952618743467657, "top": 875, "right": 2040, "bottom": 3265, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731380f.jpg"} -{"rects": [{"solidity": 0.9952619598878502, "top": 925, "right": 3840, "bottom": 3330, "left": 2220}, {"solidity": 0.9975630392102418, "top": 925, "right": 5705, "bottom": 3325, "left": 4095}, {"solidity": 0.9958119724728676, "top": 950, "right": 1970, "bottom": 3325, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729732f.jpg"} -{"rects": [{"solidity": 0.9952624047646672, "top": 2080, "right": 2710, "bottom": 3515, "left": 870}, {"solidity": 0.9959642408455691, "top": 640, "right": 2675, "bottom": 2070, "left": 845}, {"solidity": 0.9994200468836049, "top": 2065, "right": 5265, "bottom": 3480, "left": 3440}, {"solidity": 0.9976082393713086, "top": 630, "right": 5255, "bottom": 2045, "left": 3430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704008f.jpg"} -{"rects": [{"solidity": 0.9952629187177761, "top": 135, "right": 3370, "bottom": 2040, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725251f.jpg"} -{"rects": [{"solidity": 0.9952629717459747, "top": 610, "right": 2970, "bottom": 2410, "left": 1760}, {"solidity": 0.9943754095223737, "top": 605, "right": 1635, "bottom": 2405, "left": 415}, {"solidity": 0.9937595218563225, "top": 615, "right": 4310, "bottom": 2410, "left": 3105}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716494f.jpg"} -{"rects": [{"solidity": 0.9952632104589835, "top": 600, "right": 2725, "bottom": 2045, "left": 870}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705875f.jpg"} -{"rects": [{"solidity": 0.995263304541655, "top": 2240, "right": 3155, "bottom": 3865, "left": 720}, {"solidity": 0.997293498853813, "top": 415, "right": 3145, "bottom": 2015, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734764f.jpg"} -{"rects": [{"solidity": 0.995263742948965, "top": 2205, "right": 3160, "bottom": 3865, "left": 710}, {"solidity": 0.9949979755987923, "top": 4055, "right": 3110, "bottom": 5710, "left": 660}, {"solidity": 0.995162110881091, "top": 380, "right": 3190, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731225f.jpg"} -{"rects": [{"solidity": 0.9952642118746504, "top": 345, "right": 2820, "bottom": 1800, "left": 865}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718507f.jpg"} -{"rects": [{"solidity": 0.9952642521625299, "top": 335, "right": 1995, "bottom": 1210, "left": 865}], "shape": {"h": 3930, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727062f.jpg"} -{"rects": [{"solidity": 0.9952643734675526, "top": 4095, "right": 3070, "bottom": 5725, "left": 635}, {"solidity": 0.9970099689322152, "top": 350, "right": 3075, "bottom": 1965, "left": 660}, {"solidity": 0.9943174201479825, "top": 2210, "right": 3075, "bottom": 3845, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728557f.jpg"} -{"rects": [{"solidity": 0.9952646848616772, "top": 835, "right": 3990, "bottom": 3245, "left": 2375}, {"solidity": 0.9968232440991175, "top": 845, "right": 2150, "bottom": 3215, "left": 550}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724888f.jpg"} -{"rects": [{"solidity": 0.9952649836679918, "top": 315, "right": 1875, "bottom": 1205, "left": 750}], "shape": {"h": 3950, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727127f.jpg"} -{"rects": [{"solidity": 0.9952655646581673, "top": 2185, "right": 3150, "bottom": 3815, "left": 730}, {"solidity": 0.9947739194309883, "top": 3985, "right": 3140, "bottom": 5630, "left": 715}, {"solidity": 0.9961379525938565, "top": 410, "right": 3145, "bottom": 2015, "left": 730}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/722891f.jpg"} -{"rects": [{"solidity": 0.9952663182331046, "top": 2245, "right": 3220, "bottom": 3855, "left": 805}, {"solidity": 0.997897080653142, "top": 425, "right": 3210, "bottom": 2030, "left": 800}, {"solidity": 0.9951979816567451, "top": 4105, "right": 3215, "bottom": 5710, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733846f.jpg"} -{"rects": [{"solidity": 0.9952663409719823, "top": 2230, "right": 3290, "bottom": 3860, "left": 870}, {"solidity": 0.994160446976535, "top": 4070, "right": 3265, "bottom": 5700, "left": 840}, {"solidity": 0.995396173129919, "top": 380, "right": 3305, "bottom": 1990, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725052f.jpg"} -{"rects": [{"solidity": 0.9952667263656134, "top": 760, "right": 3880, "bottom": 3160, "left": 2270}, {"solidity": 0.9955374155117431, "top": 765, "right": 1995, "bottom": 3155, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723515f.jpg"} -{"rects": [{"solidity": 0.9952668251162979, "top": 675, "right": 2445, "bottom": 2165, "left": 345}, {"solidity": 0.9966178864442115, "top": 2495, "right": 2420, "bottom": 3980, "left": 330}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715996f.jpg"} -{"rects": [{"solidity": 0.9952668536900487, "top": 970, "right": 5490, "bottom": 2630, "left": 645}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721657f.jpg"} -{"rects": [{"solidity": 0.9952673042251313, "top": 840, "right": 4030, "bottom": 3250, "left": 2430}, {"solidity": 0.9954037908791078, "top": 840, "right": 5800, "bottom": 3240, "left": 4210}, {"solidity": 0.9954741372159308, "top": 850, "right": 2090, "bottom": 3245, "left": 500}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713791f.jpg"} -{"rects": [{"solidity": 0.9952674817494156, "top": 730, "right": 2340, "bottom": 3525, "left": 340}, {"solidity": 0.9967484490745957, "top": 735, "right": 4070, "bottom": 3150, "left": 2440}, {"solidity": 0.9944336700821214, "top": 740, "right": 5795, "bottom": 3140, "left": 4185}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716736f.jpg"} -{"rects": [{"solidity": 0.9952675260462652, "top": 880, "right": 3860, "bottom": 3305, "left": 2230}, {"solidity": 0.9957941007999898, "top": 900, "right": 5710, "bottom": 3325, "left": 4075}, {"solidity": 0.995154545513122, "top": 885, "right": 2020, "bottom": 3300, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721409f.jpg"} -{"rects": [{"solidity": 0.9952679887763352, "top": 780, "right": 1810, "bottom": 3105, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710795f.jpg"} -{"rects": [{"solidity": 0.9952687983817637, "top": 430, "right": 5080, "bottom": 3665, "left": 1055}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731896f.jpg"} -{"rects": [{"solidity": 0.995269315585839, "top": 375, "right": 3110, "bottom": 1975, "left": 700}, {"solidity": 0.9945237601262189, "top": 2165, "right": 2835, "bottom": 3615, "left": 1010}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718002f.jpg"} -{"rects": [{"solidity": 0.9952693557562166, "top": 4125, "right": 3165, "bottom": 5735, "left": 745}, {"solidity": 0.9946719263468278, "top": 2300, "right": 3175, "bottom": 3900, "left": 770}, {"solidity": 0.9970635038366621, "top": 465, "right": 3170, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710094f.jpg"} -{"rects": [{"solidity": 0.995269655287346, "top": 885, "right": 3855, "bottom": 3300, "left": 2210}, {"solidity": 0.9930706492500376, "top": 1045, "right": 2070, "bottom": 3010, "left": 555}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715328f.jpg"} -{"rects": [{"solidity": 0.9952697300436727, "top": 385, "right": 4960, "bottom": 3670, "left": 875}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/722404f.jpg"} -{"rects": [{"solidity": 0.9952697394264763, "top": 2135, "right": 3245, "bottom": 3745, "left": 845}, {"solidity": 0.9955008083967241, "top": 305, "right": 3235, "bottom": 1910, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723537f.jpg"} -{"rects": [{"solidity": 0.995270126920341, "top": 2260, "right": 3100, "bottom": 3925, "left": 660}, {"solidity": 0.9965229507620427, "top": 390, "right": 3095, "bottom": 2020, "left": 665}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710776f.jpg"} -{"rects": [{"solidity": 0.995270493469533, "top": 2240, "right": 3120, "bottom": 3895, "left": 670}, {"solidity": 0.9972893154389336, "top": 410, "right": 3115, "bottom": 2025, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734404f.jpg"} -{"rects": [{"solidity": 0.9952706309384007, "top": 490, "right": 3315, "bottom": 2315, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711586f.jpg"} -{"rects": [{"solidity": 0.9952710358206932, "top": 785, "right": 2080, "bottom": 3195, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712092f.jpg"} -{"rects": [{"solidity": 0.9952715469211763, "top": 385, "right": 3190, "bottom": 2010, "left": 765}, {"solidity": 0.9945906153012943, "top": 4085, "right": 3165, "bottom": 5720, "left": 735}, {"solidity": 0.9952226479893361, "top": 2265, "right": 3180, "bottom": 3860, "left": 780}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/729006f.jpg"} -{"rects": [{"solidity": 0.9952724509873954, "top": 415, "right": 3175, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732464f.jpg"} -{"rects": [{"solidity": 0.9952725074136988, "top": 600, "right": 2940, "bottom": 2410, "left": 1720}, {"solidity": 0.9943826704807603, "top": 610, "right": 1545, "bottom": 2415, "left": 330}, {"solidity": 0.9936066320383257, "top": 590, "right": 4330, "bottom": 2405, "left": 3115}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716464f.jpg"} -{"rects": [{"solidity": 0.9952741298618165, "top": 415, "right": 3045, "bottom": 2025, "left": 645}, {"solidity": 0.9981236054379294, "top": 2300, "right": 3045, "bottom": 3895, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728440f.jpg"} -{"rects": [{"solidity": 0.9952744873264552, "top": 405, "right": 3145, "bottom": 2090, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705660f.jpg"} -{"rects": [{"solidity": 0.9952744910211957, "top": 385, "right": 3080, "bottom": 1965, "left": 695}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/728850f.jpg"} -{"rects": [{"solidity": 0.9952745443758304, "top": 2070, "right": 5080, "bottom": 3625, "left": 3140}, {"solidity": 0.9948827596037346, "top": 650, "right": 2905, "bottom": 2045, "left": 995}, {"solidity": 0.9943145216101369, "top": 665, "right": 4970, "bottom": 1985, "left": 3335}, {"solidity": 0.9963879509776089, "top": 2220, "right": 2815, "bottom": 3495, "left": 1175}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704104f.jpg"} -{"rects": [{"solidity": 0.9952745816069675, "top": 430, "right": 3065, "bottom": 2050, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729527f.jpg"} -{"rects": [{"solidity": 0.9952748725459042, "top": 2180, "right": 5390, "bottom": 3670, "left": 3540}, {"solidity": 0.99607385647556, "top": 2165, "right": 2825, "bottom": 3635, "left": 975}, {"solidity": 0.9969617449502853, "top": 535, "right": 5370, "bottom": 1965, "left": 3525}, {"solidity": 0.9979470883458172, "top": 565, "right": 2805, "bottom": 1930, "left": 970}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732461f.jpg"} -{"rects": [{"solidity": 0.995274959146042, "top": 455, "right": 5095, "bottom": 3660, "left": 1085}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722452f.jpg"} -{"rects": [{"solidity": 0.9952751061164692, "top": 3295, "right": 3260, "bottom": 5330, "left": 430}, {"solidity": 0.996623097304908, "top": 565, "right": 3280, "bottom": 2600, "left": 455}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734850f.jpg"} -{"rects": [{"solidity": 0.995275201411049, "top": 965, "right": 2015, "bottom": 2905, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701788f.jpg"} -{"rects": [{"solidity": 0.995275213165931, "top": 545, "right": 5650, "bottom": 2170, "left": 3240}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726828f.jpg"} -{"rects": [{"solidity": 0.9952753139084586, "top": 510, "right": 3245, "bottom": 2370, "left": 600}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717737f.jpg"} -{"rects": [{"solidity": 0.995275389878356, "top": 2380, "right": 3120, "bottom": 3995, "left": 720}, {"solidity": 0.9977981518914236, "top": 555, "right": 3125, "bottom": 2160, "left": 735}, {"solidity": 0.9943886339430119, "top": 4210, "right": 3120, "bottom": 5825, "left": 710}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718440f.jpg"} -{"rects": [{"solidity": 0.9952756613111323, "top": 470, "right": 3110, "bottom": 2105, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702506f.jpg"} -{"rects": [{"solidity": 0.9952757932142456, "top": 2940, "right": 2360, "bottom": 4455, "left": 340}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507807.jpg"} -{"rects": [{"solidity": 0.9952760138867489, "top": 2190, "right": 3205, "bottom": 3810, "left": 800}, {"solidity": 0.9965039653011014, "top": 400, "right": 3210, "bottom": 1985, "left": 835}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715335f.jpg"} -{"rects": [{"solidity": 0.995276112834715, "top": 380, "right": 5530, "bottom": 3840, "left": 375}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717256f.jpg"} -{"rects": [{"solidity": 0.9952762305467238, "top": 565, "right": 2875, "bottom": 2040, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706118f.jpg"} -{"rects": [{"solidity": 0.9952762482126906, "top": 1175, "right": 3290, "bottom": 4660, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714626f.jpg"} -{"rects": [{"solidity": 0.9952764521914801, "top": 845, "right": 2090, "bottom": 3260, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729040f.jpg"} -{"rects": [{"solidity": 0.9952767249381188, "top": 2085, "right": 5275, "bottom": 3510, "left": 3440}, {"solidity": 0.9415927948372456, "top": 2075, "right": 2745, "bottom": 3495, "left": 840}, {"solidity": 0.9640376287311445, "top": 585, "right": 5305, "bottom": 1980, "left": 3410}, {"solidity": 0.954886696087668, "top": 595, "right": 2675, "bottom": 2005, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706003f.jpg"} -{"rects": [{"solidity": 0.9952767283494208, "top": 415, "right": 3235, "bottom": 1995, "left": 850}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718205f.jpg"} -{"rects": [{"solidity": 0.9952768103029321, "top": 580, "right": 2900, "bottom": 1965, "left": 1095}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725775f.jpg"} -{"rects": [{"solidity": 0.9952773887194284, "top": 395, "right": 3190, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726261f.jpg"} -{"rects": [{"solidity": 0.995277454871755, "top": 315, "right": 5655, "bottom": 4135, "left": 1020}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711400f.jpg"} -{"rects": [{"solidity": 0.9952776404998853, "top": 405, "right": 3235, "bottom": 2025, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702160f.jpg"} -{"rects": [{"solidity": 0.9952778240736202, "top": 680, "right": 3110, "bottom": 2280, "left": 705}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708787f.jpg"} -{"rects": [{"solidity": 0.9952779504838427, "top": 750, "right": 2025, "bottom": 3200, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724797f.jpg"} -{"rects": [{"solidity": 0.9952785934164017, "top": 630, "right": 2725, "bottom": 2035, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706099f.jpg"} -{"rects": [{"solidity": 0.9952787355671818, "top": 2215, "right": 3160, "bottom": 3835, "left": 730}, {"solidity": 0.9960466354205887, "top": 330, "right": 3165, "bottom": 1945, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730081f.jpg"} -{"rects": [{"solidity": 0.9952787379071968, "top": 2315, "right": 3090, "bottom": 3930, "left": 655}, {"solidity": 0.9949937786764134, "top": 425, "right": 3100, "bottom": 2040, "left": 670}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/728911f.jpg"} -{"rects": [{"solidity": 0.9952789656854125, "top": 790, "right": 2005, "bottom": 3180, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723487f.jpg"} -{"rects": [{"solidity": 0.995279701754217, "top": 2220, "right": 3070, "bottom": 3665, "left": 1255}, {"solidity": 0.9983802369509658, "top": 500, "right": 3065, "bottom": 1935, "left": 1255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725787f.jpg"} -{"rects": [{"solidity": 0.9952805072849605, "top": 410, "right": 3365, "bottom": 2135, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701225f.jpg"} -{"rects": [{"solidity": 0.9952810254965488, "top": 535, "right": 5845, "bottom": 3355, "left": 3940}, {"solidity": 0.9965569073833781, "top": 800, "right": 3880, "bottom": 3215, "left": 2250}, {"solidity": 0.9988150828273793, "top": 810, "right": 2015, "bottom": 3195, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704823f.jpg"} -{"rects": [{"solidity": 0.9952817418880767, "top": 550, "right": 2625, "bottom": 1985, "left": 780}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704899f.jpg"} -{"rects": [{"solidity": 0.9952820863364797, "top": 425, "right": 3135, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707409f.jpg"} -{"rects": [{"solidity": 0.9952823312704576, "top": 435, "right": 3135, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717892f.jpg"} -{"rects": [{"solidity": 0.995282416220567, "top": 380, "right": 3180, "bottom": 2020, "left": 735}, {"solidity": 0.9958396551115787, "top": 2280, "right": 3170, "bottom": 3920, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728745f.jpg"} -{"rects": [{"solidity": 0.995282856960728, "top": 660, "right": 2805, "bottom": 2070, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707101f.jpg"} -{"rects": [{"solidity": 0.995282972896586, "top": 740, "right": 3855, "bottom": 3145, "left": 2230}, {"solidity": 0.9956531368485076, "top": 725, "right": 2030, "bottom": 3125, "left": 435}, {"solidity": 0.9947204517203988, "top": 765, "right": 5675, "bottom": 3170, "left": 4075}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718340f.jpg"} -{"rects": [{"solidity": 0.9952830796592476, "top": 370, "right": 3180, "bottom": 2005, "left": 760}, {"solidity": 0.9967447327968171, "top": 2175, "right": 3170, "bottom": 3795, "left": 755}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/715337f.jpg"} -{"rects": [{"solidity": 0.9952831388913627, "top": 2190, "right": 3185, "bottom": 3870, "left": 720}, {"solidity": 0.995809676997265, "top": 380, "right": 3215, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721176f.jpg"} -{"rects": [{"solidity": 0.9952831499002739, "top": 1915, "right": 2835, "bottom": 3125, "left": 920}, {"solidity": 0.993112145323525, "top": 430, "right": 2855, "bottom": 1565, "left": 950}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734328f.jpg"} -{"rects": [{"solidity": 0.9952833074156711, "top": 835, "right": 2035, "bottom": 3255, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717517f.jpg"} -{"rects": [{"solidity": 0.9952834898846336, "top": 800, "right": 2015, "bottom": 3185, "left": 425}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730358f.jpg"} -{"rects": [{"solidity": 0.9952836275420667, "top": 680, "right": 2040, "bottom": 3100, "left": 410}, {"solidity": 0.9947333259824747, "top": 700, "right": 3900, "bottom": 3115, "left": 2270}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704830f.jpg"} -{"rects": [{"solidity": 0.9952839457653763, "top": 405, "right": 3120, "bottom": 2030, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729365f.jpg"} -{"rects": [{"solidity": 0.9952840203565615, "top": 420, "right": 3185, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701825f.jpg"} -{"rects": [{"solidity": 0.9952842770650789, "top": 820, "right": 3355, "bottom": 2695, "left": 660}, {"solidity": 0.9959713930539142, "top": 3305, "right": 3345, "bottom": 5155, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703868f.jpg"} -{"rects": [{"solidity": 0.9952844071710648, "top": 2190, "right": 3125, "bottom": 3845, "left": 685}, {"solidity": 0.9957078335289737, "top": 350, "right": 3155, "bottom": 1995, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719321f.jpg"} -{"rects": [{"solidity": 0.9952844076068244, "top": 670, "right": 2735, "bottom": 2065, "left": 910}, {"solidity": 0.9927168933537843, "top": 700, "right": 5220, "bottom": 2070, "left": 3390}, {"solidity": 0.9943121132058116, "top": 2085, "right": 2730, "bottom": 3450, "left": 910}, {"solidity": 0.9948934463323322, "top": 2110, "right": 5195, "bottom": 3470, "left": 3385}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718188f.jpg"} -{"rects": [{"solidity": 0.9952847239255883, "top": 590, "right": 5660, "bottom": 2225, "left": 3240}, {"solidity": 0.9971220117268256, "top": 575, "right": 2920, "bottom": 2190, "left": 515}, {"solidity": 0.9956184056271982, "top": 2330, "right": 5280, "bottom": 3750, "left": 3455}, {"solidity": 0.9953036227774296, "top": 2300, "right": 2580, "bottom": 3720, "left": 770}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726514f.jpg"} -{"rects": [{"solidity": 0.9952858249967039, "top": 430, "right": 3105, "bottom": 2060, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729192f.jpg"} -{"rects": [{"solidity": 0.9952858360802228, "top": 385, "right": 3275, "bottom": 2375, "left": 430}, {"solidity": 0.9989901251150411, "top": 2595, "right": 2880, "bottom": 4005, "left": 1085}, {"solidity": 0.9937925889082317, "top": 4260, "right": 2865, "bottom": 5675, "left": 1065}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/726253f.jpg"} -{"rects": [{"solidity": 0.9952858634262112, "top": 400, "right": 3155, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702694f.jpg"} -{"rects": [{"solidity": 0.9952859486803888, "top": 2150, "right": 5675, "bottom": 3640, "left": 3315}, {"solidity": 0.9960977862667126, "top": 465, "right": 2770, "bottom": 1905, "left": 530}, {"solidity": 0.9948546886590535, "top": 2360, "right": 2680, "bottom": 3645, "left": 600}, {"solidity": 0.9945342970135006, "top": 460, "right": 5375, "bottom": 1810, "left": 3650}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734438f.jpg"} -{"rects": [{"solidity": 0.9952865089117021, "top": 425, "right": 3210, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734224f.jpg"} -{"rects": [{"solidity": 0.99528663269045, "top": 570, "right": 3335, "bottom": 2515, "left": 605}, {"solidity": 0.9959162715124983, "top": 3130, "right": 3325, "bottom": 5070, "left": 620}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715236f.jpg"} -{"rects": [{"solidity": 0.9952866487110427, "top": 445, "right": 3065, "bottom": 2050, "left": 655}, {"solidity": 0.9992499254948315, "top": 2255, "right": 3075, "bottom": 3840, "left": 705}, {"solidity": 0.9947996945571786, "top": 4095, "right": 3050, "bottom": 5650, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720303f.jpg"} -{"rects": [{"solidity": 0.9952869833839205, "top": 2170, "right": 3180, "bottom": 3825, "left": 735}, {"solidity": 0.9974455682068992, "top": 380, "right": 3175, "bottom": 1990, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731962f.jpg"} -{"rects": [{"solidity": 0.995287495182233, "top": 460, "right": 3205, "bottom": 2070, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706594f.jpg"} -{"rects": [{"solidity": 0.9952876141280953, "top": 790, "right": 3835, "bottom": 3200, "left": 2215}, {"solidity": 0.9954763059318973, "top": 785, "right": 5680, "bottom": 3195, "left": 4065}, {"solidity": 0.9979254738740387, "top": 785, "right": 1975, "bottom": 3185, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706137f.jpg"} -{"rects": [{"solidity": 0.995287687421523, "top": 2215, "right": 2795, "bottom": 3650, "left": 995}, {"solidity": 0.9948094920611403, "top": 410, "right": 2795, "bottom": 1850, "left": 1000}, {"solidity": 0.9980856023409215, "top": 3975, "right": 2805, "bottom": 5395, "left": 1015}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711828f.jpg"} -{"rects": [{"solidity": 0.9952879931438547, "top": 775, "right": 2030, "bottom": 3215, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705180f.jpg"} -{"rects": [{"solidity": 0.9952883060050607, "top": 830, "right": 2330, "bottom": 3210, "left": 745}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708902f.jpg"} -{"rects": [{"solidity": 0.9952886391007627, "top": 2215, "right": 3280, "bottom": 3835, "left": 855}, {"solidity": 0.9970948322837971, "top": 4070, "right": 3270, "bottom": 5690, "left": 855}, {"solidity": 0.9966946005327526, "top": 400, "right": 3280, "bottom": 2020, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734388f.jpg"} -{"rects": [{"solidity": 0.995288655777208, "top": 435, "right": 3160, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723253f.jpg"} -{"rects": [{"solidity": 0.9952886964210227, "top": 2220, "right": 3205, "bottom": 3840, "left": 775}, {"solidity": 0.9956827552752849, "top": 400, "right": 3215, "bottom": 2015, "left": 790}, {"solidity": 0.9964210342044095, "top": 4060, "right": 3185, "bottom": 5670, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732200f.jpg"} -{"rects": [{"solidity": 0.9952889261477457, "top": 380, "right": 3335, "bottom": 2235, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713799f.jpg"} -{"rects": [{"solidity": 0.9952891440871025, "top": 840, "right": 3895, "bottom": 3245, "left": 2270}, {"solidity": 0.9956672946884839, "top": 840, "right": 5765, "bottom": 3250, "left": 4135}, {"solidity": 0.9959639280115057, "top": 845, "right": 2040, "bottom": 3250, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728527f.jpg"} -{"rects": [{"solidity": 0.9952892213287673, "top": 475, "right": 4040, "bottom": 2565, "left": 2560}, {"solidity": 0.9884369999714997, "top": 475, "right": 2285, "bottom": 2560, "left": 800}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716262f.jpg"} -{"rects": [{"solidity": 0.9952893237649074, "top": 4200, "right": 3125, "bottom": 5830, "left": 700}, {"solidity": 0.9975107268022666, "top": 2405, "right": 3130, "bottom": 4005, "left": 730}, {"solidity": 0.9967227742585236, "top": 630, "right": 3125, "bottom": 2235, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709593f.jpg"} -{"rects": [{"solidity": 0.9952893553760456, "top": 480, "right": 2310, "bottom": 1910, "left": 310}, {"solidity": 0.9981613256481553, "top": 2260, "right": 5325, "bottom": 3670, "left": 3340}, {"solidity": 0.9968877659023452, "top": 2235, "right": 2525, "bottom": 3650, "left": 540}, {"solidity": 0.99744892210198, "top": 560, "right": 5380, "bottom": 1975, "left": 3400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732894f.jpg"} -{"rects": [{"solidity": 0.9952895076910251, "top": 395, "right": 3055, "bottom": 2020, "left": 625}, {"solidity": 0.9955134564099921, "top": 2270, "right": 3055, "bottom": 3905, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731043f.jpg"} -{"rects": [{"solidity": 0.9952900510372154, "top": 595, "right": 5625, "bottom": 4210, "left": 1095}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/706415f.jpg"} -{"rects": [{"solidity": 0.99529023465386, "top": 860, "right": 5895, "bottom": 3605, "left": 3915}, {"solidity": 0.9948523967421048, "top": 870, "right": 2005, "bottom": 3285, "left": 370}, {"solidity": 0.993917977531756, "top": 865, "right": 3840, "bottom": 3265, "left": 2230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719001f.jpg"} -{"rects": [{"solidity": 0.9952903476403185, "top": 4030, "right": 3190, "bottom": 5650, "left": 765}, {"solidity": 0.9971223629789558, "top": 470, "right": 3180, "bottom": 2085, "left": 775}, {"solidity": 0.9962956487892413, "top": 2270, "right": 3185, "bottom": 3865, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733938f.jpg"} -{"rects": [{"solidity": 0.9952904593092459, "top": 405, "right": 3170, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722406f.jpg"} -{"rects": [{"solidity": 0.9952908927392137, "top": 2190, "right": 3160, "bottom": 3775, "left": 765}, {"solidity": 0.9938296311120005, "top": 4050, "right": 3155, "bottom": 5640, "left": 770}, {"solidity": 0.9964833855862306, "top": 370, "right": 3155, "bottom": 1945, "left": 760}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719240f.jpg"} -{"rects": [{"solidity": 0.9952915587318598, "top": 2225, "right": 3170, "bottom": 3890, "left": 710}, {"solidity": 0.9954014294658095, "top": 385, "right": 3205, "bottom": 2050, "left": 750}, {"solidity": 0.9953679496761735, "top": 4080, "right": 3115, "bottom": 5715, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724347f.jpg"} -{"rects": [{"solidity": 0.9952915654928449, "top": 760, "right": 3270, "bottom": 2660, "left": 560}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712291f.jpg"} -{"rects": [{"solidity": 0.9952917252232707, "top": 550, "right": 3145, "bottom": 2170, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707713f.jpg"} -{"rects": [{"solidity": 0.995292421222274, "top": 440, "right": 3240, "bottom": 2065, "left": 815}, {"solidity": 0.9433668825066429, "top": 2380, "right": 3225, "bottom": 3890, "left": 835}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713455f.jpg"} -{"rects": [{"solidity": 0.9952924662341441, "top": 1055, "right": 2885, "bottom": 2120, "left": 1490}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509757.jpg"} -{"rects": [{"solidity": 0.9952925614690321, "top": 380, "right": 3195, "bottom": 1995, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725431f.jpg"} -{"rects": [{"solidity": 0.9952926443918881, "top": 2300, "right": 3175, "bottom": 3925, "left": 755}, {"solidity": 0.9981502435184729, "top": 445, "right": 3185, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724208f.jpg"} -{"rects": [{"solidity": 0.9952927388094471, "top": 2145, "right": 2770, "bottom": 3570, "left": 920}, {"solidity": 0.9955810591876134, "top": 670, "right": 2760, "bottom": 2085, "left": 920}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705232f.jpg"} -{"rects": [{"solidity": 0.9952929406936178, "top": 2300, "right": 3100, "bottom": 3935, "left": 660}, {"solidity": 0.9954042992039704, "top": 405, "right": 3105, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730473f.jpg"} -{"rects": [{"solidity": 0.995293019403147, "top": 420, "right": 3240, "bottom": 2050, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728021f.jpg"} -{"rects": [{"solidity": 0.9952931135311132, "top": 2250, "right": 3135, "bottom": 3905, "left": 680}, {"solidity": 0.9967202152557755, "top": 420, "right": 3135, "bottom": 2035, "left": 685}, {"solidity": 0.9966396616486901, "top": 4145, "right": 3105, "bottom": 5760, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732205f.jpg"} -{"rects": [{"solidity": 0.9952931638808746, "top": 1980, "right": 2900, "bottom": 3435, "left": 1055}, {"solidity": 0.9961599984103486, "top": 550, "right": 5310, "bottom": 1945, "left": 3485}, {"solidity": 0.9933122680001227, "top": 595, "right": 2870, "bottom": 1975, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704578f.jpg"} -{"rects": [{"solidity": 0.9952934775914102, "top": 720, "right": 2670, "bottom": 2140, "left": 905}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706728f.jpg"} -{"rects": [{"solidity": 0.9952934968829595, "top": 830, "right": 4015, "bottom": 3240, "left": 2405}, {"solidity": 0.9975376502805895, "top": 845, "right": 2135, "bottom": 3245, "left": 540}, {"solidity": 0.9975473412520741, "top": 825, "right": 5870, "bottom": 3225, "left": 4275}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732019f.jpg"} -{"rects": [{"solidity": 0.9952936929037914, "top": 380, "right": 3140, "bottom": 2015, "left": 715}, {"solidity": 0.996466453942668, "top": 2265, "right": 3125, "bottom": 3880, "left": 705}, {"solidity": 0.9965510862096305, "top": 4120, "right": 3105, "bottom": 5715, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731576f.jpg"} -{"rects": [{"solidity": 0.9952938132413729, "top": 1170, "right": 3495, "bottom": 5005, "left": 375}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722350f.jpg"} -{"rects": [{"solidity": 0.9952939613744289, "top": 2065, "right": 5380, "bottom": 3520, "left": 3550}, {"solidity": 0.9969576477610791, "top": 2090, "right": 2700, "bottom": 3530, "left": 875}, {"solidity": 0.9544354838709678, "top": 615, "right": 2720, "bottom": 2030, "left": 870}, {"solidity": 0.9977871154159206, "top": 605, "right": 5330, "bottom": 2010, "left": 3565}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706038f.jpg"} -{"rects": [{"solidity": 0.9952939930163671, "top": 740, "right": 2495, "bottom": 2225, "left": 405}, {"solidity": 0.9963051163704213, "top": 2535, "right": 2485, "bottom": 4015, "left": 400}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716063f.jpg"} -{"rects": [{"solidity": 0.9952946212482918, "top": 790, "right": 2055, "bottom": 3185, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712477f.jpg"} -{"rects": [{"solidity": 0.9952949894096277, "top": 405, "right": 3205, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720569f.jpg"} -{"rects": [{"solidity": 0.9952951033627121, "top": 2270, "right": 3080, "bottom": 3895, "left": 655}, {"solidity": 0.9974591451305149, "top": 4115, "right": 3065, "bottom": 5720, "left": 650}, {"solidity": 0.9970565869519614, "top": 420, "right": 3070, "bottom": 2025, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734829f.jpg"} -{"rects": [{"solidity": 0.9952952453612685, "top": 470, "right": 2945, "bottom": 1900, "left": 1135}, {"solidity": 0.9939545191562803, "top": 2300, "right": 2960, "bottom": 3725, "left": 1150}, {"solidity": 0.9958186641420865, "top": 4100, "right": 2945, "bottom": 5525, "left": 1135}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/726772f.jpg"} -{"rects": [{"solidity": 0.9952955547569825, "top": 515, "right": 4520, "bottom": 3640, "left": 1575}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708185f.jpg"} -{"rects": [{"solidity": 0.9952958588562059, "top": 420, "right": 3125, "bottom": 2030, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728326f.jpg"} -{"rects": [{"solidity": 0.9952959432786204, "top": 805, "right": 2025, "bottom": 3220, "left": 415}], "shape": {"h": 3920, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714443f.jpg"} -{"rects": [{"solidity": 0.9952961785505742, "top": 2270, "right": 3165, "bottom": 3885, "left": 750}, {"solidity": 0.9952652102266238, "top": 4105, "right": 3175, "bottom": 5710, "left": 760}, {"solidity": 0.9944858365910998, "top": 460, "right": 3150, "bottom": 2050, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720477f.jpg"} -{"rects": [{"solidity": 0.9952963402680504, "top": 435, "right": 3155, "bottom": 2060, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702519f.jpg"} -{"rects": [{"solidity": 0.9952967302497473, "top": 955, "right": 2025, "bottom": 3335, "left": 420}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700629f.jpg"} -{"rects": [{"solidity": 0.9952968929632561, "top": 570, "right": 3235, "bottom": 3910, "left": 705}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717303f.jpg"} -{"rects": [{"solidity": 0.9952969389920083, "top": 430, "right": 3225, "bottom": 2050, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733991f.jpg"} -{"rects": [{"solidity": 0.995297339127329, "top": 515, "right": 5190, "bottom": 3675, "left": 1180}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702124f.jpg"} -{"rects": [{"solidity": 0.9952977206386678, "top": 2290, "right": 3160, "bottom": 3935, "left": 715}, {"solidity": 0.9969585447706749, "top": 4175, "right": 3130, "bottom": 5780, "left": 710}, {"solidity": 0.9944231689024966, "top": 435, "right": 3200, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733842f.jpg"} -{"rects": [{"solidity": 0.9952978360475958, "top": 775, "right": 5100, "bottom": 3185, "left": 1060}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718953f.jpg"} -{"rects": [{"solidity": 0.9952978515148657, "top": 475, "right": 3190, "bottom": 2090, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710697f.jpg"} -{"rects": [{"solidity": 0.99529797176856, "top": 510, "right": 3130, "bottom": 2145, "left": 700}, {"solidity": 0.997365584493916, "top": 2490, "right": 3070, "bottom": 3905, "left": 745}, {"solidity": 0.9936407880965741, "top": 4185, "right": 3055, "bottom": 5580, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722988f.jpg"} -{"rects": [{"solidity": 0.9952979812991215, "top": 2215, "right": 2855, "bottom": 3655, "left": 1040}, {"solidity": 0.9951999217909864, "top": 615, "right": 5035, "bottom": 2030, "left": 3195}, {"solidity": 0.9952808699441429, "top": 2255, "right": 5020, "bottom": 3665, "left": 3210}, {"solidity": 0.9958168894974226, "top": 610, "right": 2860, "bottom": 2005, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728083f.jpg"} -{"rects": [{"solidity": 0.9952988307998226, "top": 420, "right": 5020, "bottom": 3650, "left": 1025}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717633f.jpg"} -{"rects": [{"solidity": 0.9952991044395576, "top": 2210, "right": 3175, "bottom": 3875, "left": 730}, {"solidity": 0.9956187229781128, "top": 375, "right": 3190, "bottom": 2020, "left": 755}, {"solidity": 0.9956800742215436, "top": 4045, "right": 3145, "bottom": 5680, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715435f.jpg"} -{"rects": [{"solidity": 0.995299157540285, "top": 2215, "right": 3130, "bottom": 3900, "left": 665}, {"solidity": 0.9955203827395248, "top": 405, "right": 3170, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702673f.jpg"} -{"rects": [{"solidity": 0.9952999098498149, "top": 1090, "right": 2725, "bottom": 3190, "left": 545}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718418f.jpg"} -{"rects": [{"solidity": 0.9953002464043044, "top": 600, "right": 4940, "bottom": 3645, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713994f.jpg"} -{"rects": [{"solidity": 0.9953006293680583, "top": 2035, "right": 2880, "bottom": 5335, "left": 565}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714767f.jpg"} -{"rects": [{"solidity": 0.9953007015476891, "top": 390, "right": 3150, "bottom": 1975, "left": 765}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728102f.jpg"} -{"rects": [{"solidity": 0.9953007074276525, "top": 765, "right": 2070, "bottom": 3145, "left": 500}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712498f.jpg"} -{"rects": [{"solidity": 0.9953007913945945, "top": 440, "right": 3150, "bottom": 2065, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707790f.jpg"} -{"rects": [{"solidity": 0.9953008290914827, "top": 800, "right": 3865, "bottom": 3200, "left": 2245}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714146f.jpg"} -{"rects": [{"solidity": 0.9953008898939764, "top": 800, "right": 3880, "bottom": 3210, "left": 2270}, {"solidity": 0.9971656071826464, "top": 805, "right": 5775, "bottom": 3210, "left": 4175}, {"solidity": 0.9953812314275922, "top": 810, "right": 2000, "bottom": 3200, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718206f.jpg"} -{"rects": [{"solidity": 0.9953017581651927, "top": 385, "right": 3235, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734021f.jpg"} -{"rects": [{"solidity": 0.9953017829991662, "top": 690, "right": 2540, "bottom": 3435, "left": 750}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704296f.jpg"} -{"rects": [{"solidity": 0.9953022164819327, "top": 2270, "right": 3200, "bottom": 3880, "left": 780}, {"solidity": 0.9957414443683142, "top": 415, "right": 3190, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734619f.jpg"} -{"rects": [{"solidity": 0.9953024325168176, "top": 650, "right": 2690, "bottom": 2110, "left": 855}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720120f.jpg"} -{"rects": [{"solidity": 0.9953025380805707, "top": 730, "right": 2790, "bottom": 3520, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703714f.jpg"} -{"rects": [{"solidity": 0.9953026124854765, "top": 650, "right": 2720, "bottom": 2070, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727962f.jpg"} -{"rects": [{"solidity": 0.9953027244198365, "top": 710, "right": 2875, "bottom": 2125, "left": 1075}, {"solidity": 0.9951213605703013, "top": 2350, "right": 2885, "bottom": 3760, "left": 1090}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/706499f.jpg"} -{"rects": [{"solidity": 0.9953030283612503, "top": 2220, "right": 3155, "bottom": 3855, "left": 720}, {"solidity": 0.9947977994402085, "top": 4080, "right": 3125, "bottom": 5725, "left": 700}, {"solidity": 0.9984361051198009, "top": 365, "right": 3150, "bottom": 1965, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718051f.jpg"} -{"rects": [{"solidity": 0.995303121502421, "top": 365, "right": 3345, "bottom": 2285, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724642f.jpg"} -{"rects": [{"solidity": 0.9953031723321328, "top": 400, "right": 3115, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718374f.jpg"} -{"rects": [{"solidity": 0.9953032212861103, "top": 325, "right": 4270, "bottom": 2755, "left": 1240}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517223.jpg"} -{"rects": [{"solidity": 0.9953033205105506, "top": 375, "right": 3195, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/714561f.jpg"} -{"rects": [{"solidity": 0.9953033581790495, "top": 2285, "right": 3200, "bottom": 3915, "left": 775}, {"solidity": 0.9966320985432541, "top": 450, "right": 3190, "bottom": 2075, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701617f.jpg"} -{"rects": [{"solidity": 0.9953035464623988, "top": 430, "right": 3195, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709630f.jpg"} -{"rects": [{"solidity": 0.9953037600994407, "top": 335, "right": 3760, "bottom": 2680, "left": 955}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508037.jpg"} -{"rects": [{"solidity": 0.99530403245249, "top": 835, "right": 2445, "bottom": 3525, "left": 655}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708870f.jpg"} -{"rects": [{"solidity": 0.9953042261964232, "top": 680, "right": 2610, "bottom": 2090, "left": 815}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702972f.jpg"} -{"rects": [{"solidity": 0.9953042626540038, "top": 410, "right": 3215, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722620f.jpg"} -{"rects": [{"solidity": 0.9953042895502786, "top": 480, "right": 5635, "bottom": 4175, "left": 1110}], "shape": {"h": 4425, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708376f.jpg"} -{"rects": [{"solidity": 0.995305546394137, "top": 470, "right": 2910, "bottom": 2020, "left": 1010}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720264f.jpg"} -{"rects": [{"solidity": 0.9953056124396932, "top": 720, "right": 2685, "bottom": 3595, "left": 665}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730256f.jpg"} -{"rects": [{"solidity": 0.9953056634363341, "top": 2290, "right": 3195, "bottom": 3885, "left": 815}, {"solidity": 0.9963548197753529, "top": 485, "right": 3205, "bottom": 2070, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718199f.jpg"} -{"rects": [{"solidity": 0.9953059049655026, "top": 790, "right": 3835, "bottom": 3215, "left": 2215}, {"solidity": 0.9968797837344885, "top": 785, "right": 2080, "bottom": 3195, "left": 470}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734617f.jpg"} -{"rects": [{"solidity": 0.9953059156131647, "top": 670, "right": 4960, "bottom": 2095, "left": 3130}, {"solidity": 0.9958489184428744, "top": 2275, "right": 4990, "bottom": 3685, "left": 3180}, {"solidity": 0.9970300059700894, "top": 675, "right": 2745, "bottom": 2075, "left": 945}, {"solidity": 0.9949652445955598, "top": 2295, "right": 2745, "bottom": 3690, "left": 945}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726252f.jpg"} -{"rects": [{"solidity": 0.9953065118478774, "top": 450, "right": 3150, "bottom": 2075, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712089f.jpg"} -{"rects": [{"solidity": 0.9953065170594174, "top": 540, "right": 3385, "bottom": 2480, "left": 640}, {"solidity": 0.991209422020714, "top": 3080, "right": 3395, "bottom": 4995, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715241f.jpg"} -{"rects": [{"solidity": 0.9953070883456862, "top": 2175, "right": 2820, "bottom": 3570, "left": 1010}, {"solidity": 0.9963763219667963, "top": 565, "right": 2825, "bottom": 1960, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725607f.jpg"} -{"rects": [{"solidity": 0.995307279095878, "top": 400, "right": 3090, "bottom": 1975, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729895f.jpg"} -{"rects": [{"solidity": 0.9953075363985342, "top": 690, "right": 3715, "bottom": 2835, "left": 680}], "shape": {"h": 6860, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711210f.jpg"} -{"rects": [{"solidity": 0.9953079025144662, "top": 4095, "right": 3170, "bottom": 5705, "left": 770}, {"solidity": 0.9949517690171397, "top": 2260, "right": 3180, "bottom": 3860, "left": 780}, {"solidity": 0.9808545843186547, "top": 405, "right": 3165, "bottom": 1980, "left": 870}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724140f.jpg"} -{"rects": [{"solidity": 0.9953080682507193, "top": 500, "right": 2195, "bottom": 2590, "left": 700}, {"solidity": 0.9958832121553364, "top": 505, "right": 3960, "bottom": 2590, "left": 2475}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716162f.jpg"} -{"rects": [{"solidity": 0.995308088907739, "top": 755, "right": 2050, "bottom": 3160, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714234f.jpg"} -{"rects": [{"solidity": 0.9953085993881571, "top": 715, "right": 3635, "bottom": 2755, "left": 175}, {"solidity": 0.9971411865278647, "top": 3035, "right": 3630, "bottom": 5025, "left": 195}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/706347f.jpg"} -{"rects": [{"solidity": 0.9953087081897308, "top": 400, "right": 3260, "bottom": 1995, "left": 870}, {"solidity": 0.9967746324175988, "top": 2250, "right": 3265, "bottom": 3840, "left": 875}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726786f.jpg"} -{"rects": [{"solidity": 0.995308768893429, "top": 380, "right": 3170, "bottom": 1995, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729796f.jpg"} -{"rects": [{"solidity": 0.9953088474944909, "top": 4045, "right": 3235, "bottom": 5690, "left": 790}, {"solidity": 0.9950870338046663, "top": 2180, "right": 3245, "bottom": 3820, "left": 800}, {"solidity": 0.99552045305022, "top": 350, "right": 3260, "bottom": 1985, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725173f.jpg"} -{"rects": [{"solidity": 0.9953089380966313, "top": 2235, "right": 3130, "bottom": 3880, "left": 685}, {"solidity": 0.9955892173629775, "top": 4095, "right": 3090, "bottom": 5710, "left": 665}, {"solidity": 0.9959404421438443, "top": 430, "right": 3095, "bottom": 2020, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729640f.jpg"} -{"rects": [{"solidity": 0.9953089897748829, "top": 885, "right": 2390, "bottom": 3595, "left": 580}], "shape": {"h": 4400, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/711306f.jpg"} -{"rects": [{"solidity": 0.995309349251499, "top": 430, "right": 3160, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/712068f.jpg"} -{"rects": [{"solidity": 0.9953097794311341, "top": 2275, "right": 3255, "bottom": 3900, "left": 820}, {"solidity": 0.9957519171332876, "top": 425, "right": 3265, "bottom": 2050, "left": 840}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727686f.jpg"} -{"rects": [{"solidity": 0.9953098554875667, "top": 400, "right": 3225, "bottom": 2005, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728219f.jpg"} -{"rects": [{"solidity": 0.9953100556406741, "top": 895, "right": 5730, "bottom": 3320, "left": 4105}, {"solidity": 0.9962220772762792, "top": 875, "right": 3865, "bottom": 3290, "left": 2250}, {"solidity": 0.9971079964225328, "top": 865, "right": 2020, "bottom": 3275, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734849f.jpg"} -{"rects": [{"solidity": 0.9953100623091722, "top": 595, "right": 2715, "bottom": 2030, "left": 860}, {"solidity": 0.9943190799400294, "top": 2035, "right": 2680, "bottom": 3480, "left": 835}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702808f.jpg"} -{"rects": [{"solidity": 0.9953102336825141, "top": 380, "right": 3195, "bottom": 2000, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719379f.jpg"} -{"rects": [{"solidity": 0.9953103780682014, "top": 635, "right": 5455, "bottom": 2250, "left": 3045}, {"solidity": 0.997339818738744, "top": 2075, "right": 2790, "bottom": 3495, "left": 960}, {"solidity": 0.9976115736317729, "top": 640, "right": 2790, "bottom": 2060, "left": 970}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705841f.jpg"} -{"rects": [{"solidity": 0.9953109955709609, "top": 455, "right": 2950, "bottom": 1810, "left": 990}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731418f.jpg"} -{"rects": [{"solidity": 0.9953112526677637, "top": 805, "right": 2160, "bottom": 3205, "left": 550}, {"solidity": 0.9971735813175359, "top": 825, "right": 3990, "bottom": 3225, "left": 2380}, {"solidity": 0.9957221430026482, "top": 835, "right": 5845, "bottom": 3235, "left": 4245}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718445f.jpg"} -{"rects": [{"solidity": 0.9953116095943636, "top": 2050, "right": 2695, "bottom": 3410, "left": 900}, {"solidity": 0.9965124015052288, "top": 665, "right": 2705, "bottom": 2015, "left": 905}, {"solidity": 0.99512548824507, "top": 670, "right": 5225, "bottom": 2010, "left": 3430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725504f.jpg"} -{"rects": [{"solidity": 0.9953118385223667, "top": 725, "right": 2600, "bottom": 2090, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705565f.jpg"} -{"rects": [{"solidity": 0.995311865303704, "top": 415, "right": 1930, "bottom": 2685, "left": 435}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716470f.jpg"} -{"rects": [{"solidity": 0.9953119106886927, "top": 650, "right": 3080, "bottom": 2285, "left": 995}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/706439f.jpg"} -{"rects": [{"solidity": 0.9953119176675973, "top": 805, "right": 2045, "bottom": 3215, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712989f.jpg"} -{"rects": [{"solidity": 0.9953121211304793, "top": 840, "right": 2030, "bottom": 3210, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714278f.jpg"} -{"rects": [{"solidity": 0.9953122378660197, "top": 805, "right": 2035, "bottom": 3235, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706578f.jpg"} -{"rects": [{"solidity": 0.995312261717688, "top": 480, "right": 2235, "bottom": 1680, "left": 640}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723601f.jpg"} -{"rects": [{"solidity": 0.9953122774302993, "top": 320, "right": 3205, "bottom": 1940, "left": 805}, {"solidity": 0.9985175628080944, "top": 2205, "right": 3190, "bottom": 3825, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707986f.jpg"} -{"rects": [{"solidity": 0.995312569991489, "top": 825, "right": 3895, "bottom": 3250, "left": 2255}, {"solidity": 0.9957882802090806, "top": 825, "right": 2040, "bottom": 3260, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731663f.jpg"} -{"rects": [{"solidity": 0.995312703265253, "top": 485, "right": 3915, "bottom": 2590, "left": 2415}, {"solidity": 0.9978458670895907, "top": 480, "right": 2170, "bottom": 2570, "left": 695}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716176f.jpg"} -{"rects": [{"solidity": 0.9953127583088328, "top": 400, "right": 3175, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/716699f.jpg"} -{"rects": [{"solidity": 0.995312825609541, "top": 2260, "right": 3055, "bottom": 3885, "left": 620}, {"solidity": 0.9967343705872614, "top": 4130, "right": 3040, "bottom": 5735, "left": 620}, {"solidity": 0.9963966745609165, "top": 410, "right": 3050, "bottom": 2005, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729291f.jpg"} -{"rects": [{"solidity": 0.9953130627408222, "top": 2115, "right": 2640, "bottom": 3530, "left": 830}, {"solidity": 0.9931043314649355, "top": 670, "right": 2660, "bottom": 2090, "left": 850}, {"solidity": 0.994258696386356, "top": 670, "right": 5225, "bottom": 1785, "left": 3400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727988f.jpg"} -{"rects": [{"solidity": 0.9953132332595883, "top": 645, "right": 2795, "bottom": 1775, "left": 950}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705709f.jpg"} -{"rects": [{"solidity": 0.995313622950331, "top": 410, "right": 3080, "bottom": 2015, "left": 705}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728118f.jpg"} -{"rects": [{"solidity": 0.9953136282791275, "top": 385, "right": 3365, "bottom": 2300, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710595f.jpg"} -{"rects": [{"solidity": 0.9953137152589763, "top": 2255, "right": 5085, "bottom": 3680, "left": 3275}, {"solidity": 0.9955588938066481, "top": 660, "right": 5060, "bottom": 2065, "left": 3260}, {"solidity": 0.9975783483015439, "top": 675, "right": 2855, "bottom": 2055, "left": 1055}, {"solidity": 0.9971489738897845, "top": 2280, "right": 2830, "bottom": 3665, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726229f.jpg"} -{"rects": [{"solidity": 0.9953138894717385, "top": 435, "right": 2940, "bottom": 1845, "left": 1140}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725145f.jpg"} -{"rects": [{"solidity": 0.9953139432716787, "top": 2220, "right": 3170, "bottom": 3855, "left": 745}, {"solidity": 0.9952835963222361, "top": 370, "right": 3180, "bottom": 2010, "left": 750}, {"solidity": 0.995369680316767, "top": 4045, "right": 3150, "bottom": 5690, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716735f.jpg"} -{"rects": [{"solidity": 0.9953139952596409, "top": 530, "right": 3510, "bottom": 2975, "left": 325}, {"solidity": 0.9929835057110622, "top": 3125, "right": 3110, "bottom": 4765, "left": 670}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720314f.jpg"} -{"rects": [{"solidity": 0.9953140548960988, "top": 450, "right": 3010, "bottom": 1960, "left": 970}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721044f.jpg"} -{"rects": [{"solidity": 0.9953140726318742, "top": 560, "right": 3055, "bottom": 1950, "left": 850}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723691f.jpg"} -{"rects": [{"solidity": 0.9953143509551134, "top": 690, "right": 2955, "bottom": 2315, "left": 560}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718605f.jpg"} -{"rects": [{"solidity": 0.9953144693105903, "top": 2280, "right": 3190, "bottom": 3895, "left": 785}, {"solidity": 0.9975451827493297, "top": 465, "right": 3195, "bottom": 2070, "left": 800}, {"solidity": 0.99637916108454, "top": 4110, "right": 3180, "bottom": 5710, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719857f.jpg"} -{"rects": [{"solidity": 0.9953146670871452, "top": 4095, "right": 3160, "bottom": 5715, "left": 730}, {"solidity": 0.9955531735204314, "top": 2260, "right": 3160, "bottom": 3870, "left": 735}, {"solidity": 0.9989538689974016, "top": 440, "right": 3170, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734678f.jpg"} -{"rects": [{"solidity": 0.9953147525228255, "top": 605, "right": 2760, "bottom": 2045, "left": 930}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704548f.jpg"} -{"rects": [{"solidity": 0.9953154122935542, "top": 740, "right": 2030, "bottom": 3125, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707479f.jpg"} -{"rects": [{"solidity": 0.995315443923581, "top": 385, "right": 3050, "bottom": 2015, "left": 615}, {"solidity": 0.995892799483371, "top": 2255, "right": 3025, "bottom": 3875, "left": 595}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729509f.jpg"} -{"rects": [{"solidity": 0.9953154697451969, "top": 440, "right": 3115, "bottom": 2050, "left": 715}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/717785f.jpg"} -{"rects": [{"solidity": 0.9953161055170967, "top": 830, "right": 2025, "bottom": 3235, "left": 410}, {"solidity": 0.996262973501982, "top": 830, "right": 5745, "bottom": 3230, "left": 4150}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731693f.jpg"} -{"rects": [{"solidity": 0.9953161536739739, "top": 760, "right": 5715, "bottom": 3430, "left": 3710}, {"solidity": 0.9944900107192574, "top": 1180, "right": 1790, "bottom": 3010, "left": 365}, {"solidity": 0.9963341764727446, "top": 1180, "right": 3385, "bottom": 2940, "left": 2015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720362f.jpg"} -{"rects": [{"solidity": 0.9953161744643808, "top": 750, "right": 2055, "bottom": 3155, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732382f.jpg"} -{"rects": [{"solidity": 0.9953162436864341, "top": 815, "right": 3975, "bottom": 3220, "left": 2370}, {"solidity": 0.9964521633911926, "top": 830, "right": 2100, "bottom": 3230, "left": 500}, {"solidity": 0.9954634959352266, "top": 825, "right": 5825, "bottom": 3225, "left": 4225}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731231f.jpg"} -{"rects": [{"solidity": 0.9953163074039363, "top": 3250, "right": 3405, "bottom": 5210, "left": 620}, {"solidity": 0.995349624537431, "top": 835, "right": 3435, "bottom": 2790, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703143f.jpg"} -{"rects": [{"solidity": 0.9953167767370615, "top": 1205, "right": 2135, "bottom": 3100, "left": 545}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711034f.jpg"} -{"rects": [{"solidity": 0.9953168774497746, "top": 2290, "right": 3240, "bottom": 3925, "left": 800}, {"solidity": 0.9961789743968789, "top": 4160, "right": 3215, "bottom": 5785, "left": 785}, {"solidity": 0.9963445717051137, "top": 455, "right": 3245, "bottom": 2080, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734389f.jpg"} -{"rects": [{"solidity": 0.9953176520205506, "top": 615, "right": 5015, "bottom": 2045, "left": 3160}, {"solidity": 0.996733173405106, "top": 605, "right": 2820, "bottom": 2030, "left": 1005}, {"solidity": 0.9954383394383395, "top": 2250, "right": 2835, "bottom": 3665, "left": 1005}, {"solidity": 0.9955024637602369, "top": 2270, "right": 4980, "bottom": 3665, "left": 3135}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725727f.jpg"} -{"rects": [{"solidity": 0.9953177918963685, "top": 645, "right": 2745, "bottom": 2055, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726876f.jpg"} -{"rects": [{"solidity": 0.995318016013364, "top": 780, "right": 2020, "bottom": 3195, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720328f.jpg"} -{"rects": [{"solidity": 0.9953181964793619, "top": 4110, "right": 3270, "bottom": 5735, "left": 855}, {"solidity": 0.998369762698992, "top": 445, "right": 3230, "bottom": 2050, "left": 835}, {"solidity": 0.9967560716947556, "top": 2270, "right": 3235, "bottom": 3870, "left": 840}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/701141f.jpg"} -{"rects": [{"solidity": 0.9953182047338152, "top": 390, "right": 3205, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703877f.jpg"} -{"rects": [{"solidity": 0.9953184104248206, "top": 2215, "right": 3055, "bottom": 3825, "left": 640}, {"solidity": 0.996299489356058, "top": 395, "right": 3055, "bottom": 1985, "left": 655}, {"solidity": 0.9955725866272823, "top": 4060, "right": 3030, "bottom": 5665, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733635f.jpg"} -{"rects": [{"solidity": 0.9953189230885877, "top": 820, "right": 2205, "bottom": 3225, "left": 610}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721088f.jpg"} -{"rects": [{"solidity": 0.9953193001750233, "top": 830, "right": 3825, "bottom": 3225, "left": 2255}, {"solidity": 0.9959391990095279, "top": 845, "right": 5680, "bottom": 3250, "left": 4110}, {"solidity": 0.9965867189878557, "top": 815, "right": 1990, "bottom": 3200, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730916f.jpg"} -{"rects": [{"solidity": 0.9953193039127199, "top": 2250, "right": 3135, "bottom": 3945, "left": 650}, {"solidity": 0.9962411288728488, "top": 405, "right": 3150, "bottom": 2045, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729480f.jpg"} -{"rects": [{"solidity": 0.9953194674999186, "top": 405, "right": 3250, "bottom": 2010, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725846f.jpg"} -{"rects": [{"solidity": 0.9953196468460802, "top": 520, "right": 2590, "bottom": 1865, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703775f.jpg"} -{"rects": [{"solidity": 0.9953196990918252, "top": 2235, "right": 3215, "bottom": 3895, "left": 760}, {"solidity": 0.9957097366731709, "top": 375, "right": 3225, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726115f.jpg"} -{"rects": [{"solidity": 0.9953197189298053, "top": 3910, "right": 3040, "bottom": 5615, "left": 570}, {"solidity": 0.9951056369341786, "top": 2130, "right": 3100, "bottom": 3835, "left": 625}, {"solidity": 0.9871933769419461, "top": 445, "right": 3090, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734146f.jpg"} -{"rects": [{"solidity": 0.9953198539847251, "top": 890, "right": 2035, "bottom": 3285, "left": 435}, {"solidity": 0.9933425054404265, "top": 900, "right": 3885, "bottom": 3305, "left": 2290}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721054f.jpg"} -{"rects": [{"solidity": 0.9953199217658564, "top": 695, "right": 2650, "bottom": 2100, "left": 850}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726431f.jpg"} -{"rects": [{"solidity": 0.9953209311003423, "top": 795, "right": 2920, "bottom": 2810, "left": 1635}], "shape": {"h": 6040, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465713.jpg"} -{"rects": [{"solidity": 0.9953213004996573, "top": 575, "right": 2965, "bottom": 1975, "left": 1145}, {"solidity": 0.9952738240646111, "top": 2420, "right": 2965, "bottom": 3815, "left": 1150}, {"solidity": 0.99504358490278, "top": 4190, "right": 2950, "bottom": 5585, "left": 1140}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726331f.jpg"} -{"rects": [{"solidity": 0.9953213747071848, "top": 370, "right": 3225, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705522f.jpg"} -{"rects": [{"solidity": 0.9953223500513342, "top": 2175, "right": 5290, "bottom": 3625, "left": 3475}, {"solidity": 0.9976378484173585, "top": 700, "right": 5295, "bottom": 2140, "left": 3480}, {"solidity": 0.9960845272836591, "top": 710, "right": 2675, "bottom": 2135, "left": 865}, {"solidity": 0.9955232981840356, "top": 2180, "right": 2670, "bottom": 3590, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726397f.jpg"} -{"rects": [{"solidity": 0.9953228424594828, "top": 860, "right": 3480, "bottom": 4955, "left": 245}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713097f.jpg"} -{"rects": [{"solidity": 0.9953228805075601, "top": 2145, "right": 3065, "bottom": 3775, "left": 645}, {"solidity": 0.9958733747880159, "top": 4025, "right": 3030, "bottom": 5635, "left": 640}, {"solidity": 0.9953616843860746, "top": 385, "right": 2950, "bottom": 1900, "left": 1005}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/716821f.jpg"} -{"rects": [{"solidity": 0.9953235123931664, "top": 2120, "right": 3115, "bottom": 3800, "left": 655}, {"solidity": 0.9937724270632898, "top": 440, "right": 2925, "bottom": 1975, "left": 945}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731432f.jpg"} -{"rects": [{"solidity": 0.9953240677658173, "top": 430, "right": 3345, "bottom": 2430, "left": 550}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/705229f.jpg"} -{"rects": [{"solidity": 0.9953241232731137, "top": 2440, "right": 2990, "bottom": 3845, "left": 1160}, {"solidity": 0.9961069363125515, "top": 4255, "right": 2970, "bottom": 5630, "left": 1160}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705281f.jpg"} -{"rects": [{"solidity": 0.995324191080072, "top": 655, "right": 2600, "bottom": 2060, "left": 800}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726182f.jpg"} -{"rects": [{"solidity": 0.9953242790771395, "top": 510, "right": 3035, "bottom": 1920, "left": 1230}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725277f.jpg"} -{"rects": [{"solidity": 0.9953245051519783, "top": 2265, "right": 3095, "bottom": 3855, "left": 700}, {"solidity": 0.9969049305022257, "top": 400, "right": 3090, "bottom": 1985, "left": 700}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/728904f.jpg"} -{"rects": [{"solidity": 0.9953247342836913, "top": 635, "right": 5045, "bottom": 3060, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726012f.jpg"} -{"rects": [{"solidity": 0.9953248046585157, "top": 1025, "right": 3330, "bottom": 4870, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717018f.jpg"} -{"rects": [{"solidity": 0.9953248574730854, "top": 530, "right": 3150, "bottom": 2145, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721269f.jpg"} -{"rects": [{"solidity": 0.9953254807581052, "top": 835, "right": 2045, "bottom": 3240, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728338f.jpg"} -{"rects": [{"solidity": 0.9953255525402587, "top": 735, "right": 2020, "bottom": 3125, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730267f.jpg"} -{"rects": [{"solidity": 0.9953255774478698, "top": 370, "right": 3255, "bottom": 1995, "left": 845}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728200f.jpg"} -{"rects": [{"solidity": 0.9953258775954741, "top": 620, "right": 2520, "bottom": 1995, "left": 695}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700620f.jpg"} -{"rects": [{"solidity": 0.995326006242707, "top": 380, "right": 3190, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701029f.jpg"} -{"rects": [{"solidity": 0.995326043012237, "top": 2110, "right": 3040, "bottom": 3530, "left": 1230}, {"solidity": 0.945557637259696, "top": 505, "right": 3020, "bottom": 1850, "left": 1270}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/725265f.jpg"} -{"rects": [{"solidity": 0.9953263017078812, "top": 765, "right": 3375, "bottom": 2460, "left": 725}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508439.jpg"} -{"rects": [{"solidity": 0.9953263637625354, "top": 335, "right": 3150, "bottom": 1970, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713734f.jpg"} -{"rects": [{"solidity": 0.995326513792602, "top": 2190, "right": 3250, "bottom": 3820, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727676f.jpg"} -{"rects": [{"solidity": 0.9953265226208403, "top": 410, "right": 3200, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712540f.jpg"} -{"rects": [{"solidity": 0.9953268449858758, "top": 1015, "right": 3400, "bottom": 2235, "left": 1510}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508667.jpg"} -{"rects": [{"solidity": 0.9953273055575025, "top": 560, "right": 3125, "bottom": 2150, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710918f.jpg"} -{"rects": [{"solidity": 0.9953281699606549, "top": 450, "right": 3180, "bottom": 2070, "left": 765}, {"solidity": 0.9957302375916179, "top": 2310, "right": 3185, "bottom": 3920, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709598f.jpg"} -{"rects": [{"solidity": 0.9953284529355431, "top": 450, "right": 3040, "bottom": 2065, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729589f.jpg"} -{"rects": [{"solidity": 0.9953286372884849, "top": 410, "right": 3095, "bottom": 2040, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710054f.jpg"} -{"rects": [{"solidity": 0.9953286555367369, "top": 360, "right": 3155, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707725f.jpg"} -{"rects": [{"solidity": 0.9953287429085595, "top": 400, "right": 3275, "bottom": 2050, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704462f.jpg"} -{"rects": [{"solidity": 0.9953289293671579, "top": 490, "right": 3220, "bottom": 2115, "left": 815}], "shape": {"h": 6140, "w": 3910}, "file": "/usr/local/google/home/danvk/milstein/707510f.jpg"} -{"rects": [{"solidity": 0.9953291893296825, "top": 515, "right": 5115, "bottom": 3750, "left": 1030}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700599f.jpg"} -{"rects": [{"solidity": 0.9953295176908165, "top": 355, "right": 3340, "bottom": 2280, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724639f.jpg"} -{"rects": [{"solidity": 0.9953298249748, "top": 500, "right": 3135, "bottom": 2115, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711737f.jpg"} -{"rects": [{"solidity": 0.995330456190011, "top": 650, "right": 2745, "bottom": 2050, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727769f.jpg"} -{"rects": [{"solidity": 0.9953304705564398, "top": 500, "right": 3340, "bottom": 2385, "left": 645}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/717865f.jpg"} -{"rects": [{"solidity": 0.9953304977068551, "top": 4080, "right": 3215, "bottom": 5710, "left": 780}, {"solidity": 0.9960880931937307, "top": 575, "right": 3220, "bottom": 2200, "left": 785}, {"solidity": 0.9957688846300768, "top": 2340, "right": 3230, "bottom": 3965, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733167f.jpg"} -{"rects": [{"solidity": 0.9953307470804671, "top": 850, "right": 2215, "bottom": 3235, "left": 630}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710690f.jpg"} -{"rects": [{"solidity": 0.995331025848737, "top": 2090, "right": 5270, "bottom": 3505, "left": 3455}, {"solidity": 0.9966807958222283, "top": 2080, "right": 2730, "bottom": 3490, "left": 905}, {"solidity": 0.9954876932615563, "top": 625, "right": 5260, "bottom": 2040, "left": 3450}, {"solidity": 0.9965201264320827, "top": 635, "right": 2720, "bottom": 2035, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705892f.jpg"} -{"rects": [{"solidity": 0.9953314287420739, "top": 880, "right": 2040, "bottom": 3270, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713847f.jpg"} -{"rects": [{"solidity": 0.99533150216925, "top": 660, "right": 2760, "bottom": 2090, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728243f.jpg"} -{"rects": [{"solidity": 0.9953315423928711, "top": 2230, "right": 3075, "bottom": 3855, "left": 660}, {"solidity": 0.9955811858466435, "top": 4095, "right": 3040, "bottom": 5705, "left": 635}, {"solidity": 0.9964832532719309, "top": 415, "right": 3065, "bottom": 2005, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728959f.jpg"} -{"rects": [{"solidity": 0.995331744545867, "top": 750, "right": 2540, "bottom": 2235, "left": 450}, {"solidity": 0.9924243355417072, "top": 2485, "right": 2530, "bottom": 3970, "left": 455}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716261f.jpg"} -{"rects": [{"solidity": 0.9953323894461058, "top": 790, "right": 2000, "bottom": 3190, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713081f.jpg"} -{"rects": [{"solidity": 0.9953324695888692, "top": 290, "right": 5040, "bottom": 3660, "left": 950}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715721f.jpg"} -{"rects": [{"solidity": 0.9953331321936847, "top": 390, "right": 3095, "bottom": 2045, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729204f.jpg"} -{"rects": [{"solidity": 0.9953334958484032, "top": 420, "right": 3300, "bottom": 2285, "left": 570}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705526f.jpg"} -{"rects": [{"solidity": 0.995333548746542, "top": 430, "right": 5295, "bottom": 3500, "left": 1455}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733440f.jpg"} -{"rects": [{"solidity": 0.9953335756081889, "top": 540, "right": 4955, "bottom": 3645, "left": 1090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720961f.jpg"} -{"rects": [{"solidity": 0.9953337311563933, "top": 665, "right": 2740, "bottom": 2090, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704019f.jpg"} -{"rects": [{"solidity": 0.9953338100962148, "top": 640, "right": 2670, "bottom": 2035, "left": 880}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731367f.jpg"} -{"rects": [{"solidity": 0.9953339022898866, "top": 795, "right": 2035, "bottom": 3205, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724234f.jpg"} -{"rects": [{"solidity": 0.9953341136412003, "top": 2115, "right": 2520, "bottom": 3475, "left": 775}, {"solidity": 0.9934820061766259, "top": 730, "right": 2535, "bottom": 2105, "left": 790}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706460f.jpg"} -{"rects": [{"solidity": 0.9953345561847037, "top": 4045, "right": 3155, "bottom": 5640, "left": 745}, {"solidity": 0.9972321036986501, "top": 485, "right": 2925, "bottom": 1905, "left": 1105}, {"solidity": 0.9947442953706002, "top": 2300, "right": 2930, "bottom": 3725, "left": 1090}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726265f.jpg"} -{"rects": [{"solidity": 0.9953349336473573, "top": 2210, "right": 3125, "bottom": 3875, "left": 685}, {"solidity": 0.9950761635649096, "top": 365, "right": 3170, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722568f.jpg"} -{"rects": [{"solidity": 0.9953350841482757, "top": 700, "right": 3880, "bottom": 3140, "left": 2260}, {"solidity": 0.9980038130160691, "top": 715, "right": 1970, "bottom": 3115, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728233f.jpg"} -{"rects": [{"solidity": 0.995335133808004, "top": 665, "right": 2620, "bottom": 2040, "left": 815}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725507f.jpg"} -{"rects": [{"solidity": 0.9953352105340256, "top": 815, "right": 2245, "bottom": 3230, "left": 640}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709839f.jpg"} -{"rects": [{"solidity": 0.9953352260036062, "top": 430, "right": 3300, "bottom": 2050, "left": 870}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/726931f.jpg"} -{"rects": [{"solidity": 0.995335502787217, "top": 325, "right": 4255, "bottom": 2765, "left": 1220}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517231.jpg"} -{"rects": [{"solidity": 0.9953356086461889, "top": 650, "right": 3250, "bottom": 2660, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734199f.jpg"} -{"rects": [{"solidity": 0.9953357518323832, "top": 395, "right": 3220, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726821f.jpg"} -{"rects": [{"solidity": 0.9953358715910144, "top": 2270, "right": 3205, "bottom": 3905, "left": 785}, {"solidity": 0.9986742025476366, "top": 455, "right": 3200, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722542f.jpg"} -{"rects": [{"solidity": 0.9953359217166469, "top": 635, "right": 1995, "bottom": 2810, "left": 600}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708237f.jpg"} -{"rects": [{"solidity": 0.9953359568576009, "top": 2455, "right": 2510, "bottom": 3955, "left": 415}, {"solidity": 0.9963508267785638, "top": 635, "right": 2510, "bottom": 2120, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716036f.jpg"} -{"rects": [{"solidity": 0.9953361010511439, "top": 2175, "right": 2750, "bottom": 3665, "left": 825}, {"solidity": 0.9956029033013346, "top": 705, "right": 2720, "bottom": 2150, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726356f.jpg"} -{"rects": [{"solidity": 0.9953362010414308, "top": 660, "right": 2750, "bottom": 2045, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728069f.jpg"} -{"rects": [{"solidity": 0.9953362884276165, "top": 440, "right": 3100, "bottom": 2065, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724358f.jpg"} -{"rects": [{"solidity": 0.9953363002608181, "top": 2025, "right": 2605, "bottom": 3455, "left": 775}, {"solidity": 0.9965537573194535, "top": 630, "right": 2595, "bottom": 2020, "left": 800}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704158f.jpg"} -{"rects": [{"solidity": 0.995336462140282, "top": 500, "right": 3005, "bottom": 1925, "left": 1205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727793f.jpg"} -{"rects": [{"solidity": 0.9953365817827753, "top": 1410, "right": 2265, "bottom": 2910, "left": 275}, {"solidity": 0.9918927548237894, "top": 3025, "right": 2270, "bottom": 4515, "left": 305}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508617.jpg"} -{"rects": [{"solidity": 0.9953366663742946, "top": 670, "right": 2675, "bottom": 2095, "left": 855}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705516f.jpg"} -{"rects": [{"solidity": 0.9953369499698613, "top": 640, "right": 2860, "bottom": 2090, "left": 1035}, {"solidity": 0.9965872312505815, "top": 2245, "right": 4960, "bottom": 3655, "left": 3130}, {"solidity": 0.9948554378022431, "top": 2255, "right": 2895, "bottom": 3690, "left": 1070}, {"solidity": 0.9933956689492162, "top": 645, "right": 4930, "bottom": 2045, "left": 3105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727749f.jpg"} -{"rects": [{"solidity": 0.9953370112736868, "top": 390, "right": 3210, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727203f.jpg"} -{"rects": [{"solidity": 0.9953370686477914, "top": 485, "right": 3330, "bottom": 2495, "left": 280}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715049f.jpg"} -{"rects": [{"solidity": 0.9953372983274734, "top": 480, "right": 3510, "bottom": 2895, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722047f.jpg"} -{"rects": [{"solidity": 0.9953374090698034, "top": 460, "right": 3075, "bottom": 1900, "left": 1255}, {"solidity": 0.9947575812870804, "top": 2200, "right": 3060, "bottom": 3610, "left": 1240}, {"solidity": 0.9933728722327297, "top": 4000, "right": 3015, "bottom": 5415, "left": 1195}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728224f.jpg"} -{"rects": [{"solidity": 0.9953376002764873, "top": 850, "right": 1975, "bottom": 3260, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728579f.jpg"} -{"rects": [{"solidity": 0.9953379021891879, "top": 490, "right": 3130, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710622f.jpg"} -{"rects": [{"solidity": 0.9953380934148466, "top": 455, "right": 2950, "bottom": 2020, "left": 1030}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720197f.jpg"} -{"rects": [{"solidity": 0.9953382537033173, "top": 2290, "right": 3230, "bottom": 3890, "left": 810}, {"solidity": 0.9947673805948524, "top": 440, "right": 3215, "bottom": 2055, "left": 810}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710501f.jpg"} -{"rects": [{"solidity": 0.9953385324936547, "top": 420, "right": 3090, "bottom": 2025, "left": 675}, {"solidity": 0.9957844659552678, "top": 2265, "right": 3085, "bottom": 3855, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729706f.jpg"} -{"rects": [{"solidity": 0.9953388136403085, "top": 390, "right": 3080, "bottom": 2010, "left": 665}, {"solidity": 0.996176183647947, "top": 4035, "right": 3060, "bottom": 5665, "left": 670}, {"solidity": 0.9962828721096354, "top": 2235, "right": 3070, "bottom": 3840, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723302f.jpg"} -{"rects": [{"solidity": 0.9953388466288329, "top": 565, "right": 2675, "bottom": 2015, "left": 825}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705743f.jpg"} -{"rects": [{"solidity": 0.9953390413426705, "top": 415, "right": 3135, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704055f.jpg"} -{"rects": [{"solidity": 0.9953394409208363, "top": 2305, "right": 3150, "bottom": 3955, "left": 715}, {"solidity": 0.9938972453064936, "top": 420, "right": 3130, "bottom": 2060, "left": 700}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710789f.jpg"} -{"rects": [{"solidity": 0.9953394691557595, "top": 435, "right": 3175, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703926f.jpg"} -{"rects": [{"solidity": 0.9953396573124925, "top": 405, "right": 3120, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700761f.jpg"} -{"rects": [{"solidity": 0.9953401038579606, "top": 670, "right": 5205, "bottom": 3585, "left": 1285}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718166f.jpg"} -{"rects": [{"solidity": 0.99534012267248, "top": 440, "right": 3120, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701579f.jpg"} -{"rects": [{"solidity": 0.9953402063168214, "top": 4020, "right": 3085, "bottom": 5665, "left": 635}, {"solidity": 0.9950403297791194, "top": 2155, "right": 3090, "bottom": 3770, "left": 670}, {"solidity": 0.9928379767451174, "top": 365, "right": 3075, "bottom": 1960, "left": 685}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729172f.jpg"} -{"rects": [{"solidity": 0.9953402441789231, "top": 570, "right": 2705, "bottom": 2015, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704810f.jpg"} -{"rects": [{"solidity": 0.9953403389371719, "top": 810, "right": 5675, "bottom": 3235, "left": 4050}, {"solidity": 0.9953391890577902, "top": 800, "right": 3860, "bottom": 3220, "left": 2240}, {"solidity": 0.9970076745496046, "top": 800, "right": 2040, "bottom": 3210, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732151f.jpg"} -{"rects": [{"solidity": 0.9953403758566451, "top": 425, "right": 3165, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714923f.jpg"} -{"rects": [{"solidity": 0.9953403985014592, "top": 2485, "right": 2490, "bottom": 3985, "left": 380}, {"solidity": 0.9962422226329083, "top": 625, "right": 2505, "bottom": 2110, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716017f.jpg"} -{"rects": [{"solidity": 0.9953406413861235, "top": 2310, "right": 3020, "bottom": 3765, "left": 1180}, {"solidity": 0.9975984676394718, "top": 540, "right": 3030, "bottom": 1960, "left": 1185}, {"solidity": 0.9924157888928401, "top": 4220, "right": 3000, "bottom": 5360, "left": 1165}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/727993f.jpg"} -{"rects": [{"solidity": 0.9953409021444964, "top": 970, "right": 3585, "bottom": 4660, "left": 520}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/722304f.jpg"} -{"rects": [{"solidity": 0.9953411486774075, "top": 465, "right": 3120, "bottom": 2070, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710491f.jpg"} -{"rects": [{"solidity": 0.9953413427837059, "top": 595, "right": 2660, "bottom": 2030, "left": 835}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704814f.jpg"} -{"rects": [{"solidity": 0.9953414508637229, "top": 790, "right": 1925, "bottom": 3150, "left": 355}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730223f.jpg"} -{"rects": [{"solidity": 0.9953415093606773, "top": 600, "right": 3580, "bottom": 2530, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733578f.jpg"} -{"rects": [{"solidity": 0.9953416228036718, "top": 630, "right": 2695, "bottom": 2050, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705249f.jpg"} -{"rects": [{"solidity": 0.9953417038157949, "top": 985, "right": 2015, "bottom": 2990, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704954f.jpg"} -{"rects": [{"solidity": 0.995341809993525, "top": 735, "right": 5735, "bottom": 3160, "left": 4115}, {"solidity": 0.9973683445757222, "top": 710, "right": 3870, "bottom": 3135, "left": 2260}, {"solidity": 0.9985923761274775, "top": 715, "right": 2005, "bottom": 3130, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734739f.jpg"} -{"rects": [{"solidity": 0.9953424536237658, "top": 4090, "right": 2975, "bottom": 5595, "left": 1075}, {"solidity": 0.9925409100355047, "top": 2235, "right": 2975, "bottom": 3735, "left": 1070}, {"solidity": 0.9936554132712456, "top": 425, "right": 2965, "bottom": 1925, "left": 1075}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701084f.jpg"} -{"rects": [{"solidity": 0.9953426129332426, "top": 2310, "right": 3000, "bottom": 3750, "left": 1165}, {"solidity": 0.9922960410748765, "top": 4190, "right": 2985, "bottom": 5605, "left": 1125}, {"solidity": 0.9963858485675441, "top": 455, "right": 2985, "bottom": 1865, "left": 1155}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/728066f.jpg"} -{"rects": [{"solidity": 0.9953427239846453, "top": 470, "right": 3210, "bottom": 2075, "left": 800}, {"solidity": 0.9961877149523383, "top": 2285, "right": 3195, "bottom": 3885, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721594f.jpg"} -{"rects": [{"solidity": 0.995342741613259, "top": 430, "right": 3310, "bottom": 2060, "left": 880}, {"solidity": 0.9989021988311646, "top": 2285, "right": 3305, "bottom": 3895, "left": 885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725205f.jpg"} -{"rects": [{"solidity": 0.9953428665253605, "top": 445, "right": 2925, "bottom": 1865, "left": 1130}], "shape": {"h": 6065, "w": 3870}, "file": "/usr/local/google/home/danvk/milstein/728087f.jpg"} -{"rects": [{"solidity": 0.9953430225518142, "top": 395, "right": 3090, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729577f.jpg"} -{"rects": [{"solidity": 0.9953430251656994, "top": 2270, "right": 3200, "bottom": 3920, "left": 755}, {"solidity": 0.9947914076461207, "top": 460, "right": 3200, "bottom": 2055, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700386f.jpg"} -{"rects": [{"solidity": 0.9953430759005257, "top": 770, "right": 3345, "bottom": 2185, "left": 1250}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507717.jpg"} -{"rects": [{"solidity": 0.9953432262087932, "top": 655, "right": 2740, "bottom": 2025, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730497f.jpg"} -{"rects": [{"solidity": 0.9953434851468873, "top": 4110, "right": 3165, "bottom": 5755, "left": 710}, {"solidity": 0.9952998997183784, "top": 2255, "right": 3165, "bottom": 3890, "left": 735}, {"solidity": 0.9962101297587063, "top": 405, "right": 3170, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734012f.jpg"} -{"rects": [{"solidity": 0.9953435325226285, "top": 3415, "right": 3195, "bottom": 5520, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715149f.jpg"} -{"rects": [{"solidity": 0.9953435897435897, "top": 800, "right": 5565, "bottom": 3150, "left": 3985}, {"solidity": 0.9956447649158879, "top": 855, "right": 2010, "bottom": 3200, "left": 475}, {"solidity": 0.9941239201540234, "top": 850, "right": 3810, "bottom": 3150, "left": 2260}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713710f.jpg"} -{"rects": [{"solidity": 0.9953437595366411, "top": 2265, "right": 3055, "bottom": 3915, "left": 615}, {"solidity": 0.9951951012380995, "top": 4090, "right": 3045, "bottom": 5770, "left": 585}, {"solidity": 0.9831299482968151, "top": 505, "right": 3015, "bottom": 2045, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728771f.jpg"} -{"rects": [{"solidity": 0.9953438888942296, "top": 2160, "right": 3145, "bottom": 3780, "left": 715}, {"solidity": 0.9995309537924341, "top": 415, "right": 3135, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703399f.jpg"} -{"rects": [{"solidity": 0.9953442258351923, "top": 825, "right": 1925, "bottom": 3190, "left": 330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724824f.jpg"} -{"rects": [{"solidity": 0.9953442522211886, "top": 480, "right": 3070, "bottom": 1905, "left": 985}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702534f.jpg"} -{"rects": [{"solidity": 0.9953442778658365, "top": 855, "right": 3465, "bottom": 2790, "left": 255}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/706776f.jpg"} -{"rects": [{"solidity": 0.9953444793500427, "top": 2395, "right": 3210, "bottom": 4025, "left": 805}, {"solidity": 0.995944381958368, "top": 4165, "right": 3200, "bottom": 5790, "left": 805}, {"solidity": 0.9963006014379657, "top": 635, "right": 3230, "bottom": 2235, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733221f.jpg"} -{"rects": [{"solidity": 0.9953444820448796, "top": 425, "right": 3100, "bottom": 2030, "left": 695}, {"solidity": 0.9968571904682553, "top": 2290, "right": 3080, "bottom": 3865, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729119f.jpg"} -{"rects": [{"solidity": 0.9953445302207768, "top": 800, "right": 2075, "bottom": 3235, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714015f.jpg"} -{"rects": [{"solidity": 0.9953447312474996, "top": 445, "right": 3135, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723748f.jpg"} -{"rects": [{"solidity": 0.9953449987749997, "top": 410, "right": 3345, "bottom": 2045, "left": 915}, {"solidity": 0.9967203986026891, "top": 2220, "right": 3325, "bottom": 3835, "left": 910}, {"solidity": 0.9959589085488366, "top": 4060, "right": 3325, "bottom": 5675, "left": 905}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731413f.jpg"} -{"rects": [{"solidity": 0.9953453605123336, "top": 1050, "right": 2110, "bottom": 3020, "left": 520}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711919f.jpg"} -{"rects": [{"solidity": 0.9953453947368421, "top": 750, "right": 5745, "bottom": 3150, "left": 4145}, {"solidity": 0.9982550073342671, "top": 740, "right": 3890, "bottom": 3130, "left": 2300}, {"solidity": 0.9971050301783773, "top": 745, "right": 2025, "bottom": 3120, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707798f.jpg"} -{"rects": [{"solidity": 0.9953456229363922, "top": 655, "right": 2730, "bottom": 1840, "left": 915}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705468f.jpg"} -{"rects": [{"solidity": 0.9953457390983104, "top": 270, "right": 5070, "bottom": 3650, "left": 1055}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713985f.jpg"} -{"rects": [{"solidity": 0.9953460159911773, "top": 500, "right": 1890, "bottom": 2790, "left": 385}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716404f.jpg"} -{"rects": [{"solidity": 0.9953460655786146, "top": 760, "right": 2735, "bottom": 2175, "left": 925}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725336f.jpg"} -{"rects": [{"solidity": 0.9953462625274364, "top": 445, "right": 3230, "bottom": 2065, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710755f.jpg"} -{"rects": [{"solidity": 0.9953463550683435, "top": 415, "right": 3195, "bottom": 2085, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707258f.jpg"} -{"rects": [{"solidity": 0.9953463622291022, "top": 2180, "right": 3195, "bottom": 3795, "left": 775}, {"solidity": 0.995062948228027, "top": 315, "right": 3195, "bottom": 1935, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709264f.jpg"} -{"rects": [{"solidity": 0.9953467007509187, "top": 595, "right": 2730, "bottom": 1965, "left": 880}, {"solidity": 0.9948003797983451, "top": 2040, "right": 2720, "bottom": 3410, "left": 885}, {"solidity": 0.9965702514979782, "top": 605, "right": 5300, "bottom": 1965, "left": 3470}, {"solidity": 0.9924475198809422, "top": 2050, "right": 5300, "bottom": 3415, "left": 3465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706742f.jpg"} -{"rects": [{"solidity": 0.9953469953469953, "top": 655, "right": 2720, "bottom": 2080, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726141f.jpg"} -{"rects": [{"solidity": 0.9953471240331262, "top": 655, "right": 3400, "bottom": 2585, "left": 645}, {"solidity": 0.9963046079825362, "top": 3290, "right": 3355, "bottom": 5205, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714030f.jpg"} -{"rects": [{"solidity": 0.9953472914589565, "top": 675, "right": 2630, "bottom": 2090, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725156f.jpg"} -{"rects": [{"solidity": 0.9953477865154561, "top": 390, "right": 3145, "bottom": 2000, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700455f.jpg"} -{"rects": [{"solidity": 0.995347824815716, "top": 380, "right": 3120, "bottom": 2005, "left": 710}, {"solidity": 0.9948688711516533, "top": 2265, "right": 3105, "bottom": 3865, "left": 695}, {"solidity": 0.9953531598513011, "top": 4135, "right": 3090, "bottom": 5725, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728454f.jpg"} -{"rects": [{"solidity": 0.9953487463303358, "top": 1070, "right": 3555, "bottom": 5070, "left": 335}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722346f.jpg"} -{"rects": [{"solidity": 0.9953491190158136, "top": 540, "right": 3560, "bottom": 2355, "left": 1150}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517027.jpg"} -{"rects": [{"solidity": 0.9953491687515557, "top": 530, "right": 4815, "bottom": 3425, "left": 1050}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731060f.jpg"} -{"rects": [{"solidity": 0.9953494448073155, "top": 750, "right": 2040, "bottom": 3170, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713568f.jpg"} -{"rects": [{"solidity": 0.9953494795846202, "top": 595, "right": 3460, "bottom": 2515, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707047f.jpg"} -{"rects": [{"solidity": 0.9953497953504707, "top": 405, "right": 3190, "bottom": 1980, "left": 815}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712190f.jpg"} -{"rects": [{"solidity": 0.9953500350121819, "top": 955, "right": 3510, "bottom": 4980, "left": 260}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/731136f.jpg"} -{"rects": [{"solidity": 0.9953505149180631, "top": 840, "right": 2030, "bottom": 3235, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712963f.jpg"} -{"rects": [{"solidity": 0.9953505421152139, "top": 2120, "right": 2685, "bottom": 3565, "left": 855}, {"solidity": 0.9948345860668993, "top": 630, "right": 2680, "bottom": 2070, "left": 855}, {"solidity": 0.9955087936658503, "top": 610, "right": 5310, "bottom": 2045, "left": 3475}, {"solidity": 0.9964171855168348, "top": 2105, "right": 5305, "bottom": 3510, "left": 3505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707182f.jpg"} -{"rects": [{"solidity": 0.9953506998368838, "top": 4065, "right": 3310, "bottom": 5955, "left": 575}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714082f.jpg"} -{"rects": [{"solidity": 0.9953510633206235, "top": 2370, "right": 3140, "bottom": 4025, "left": 745}, {"solidity": 0.9952642411494861, "top": 420, "right": 3150, "bottom": 2030, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701808f.jpg"} -{"rects": [{"solidity": 0.9953514966122531, "top": 335, "right": 2380, "bottom": 1560, "left": 565}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716458f.jpg"} -{"rects": [{"solidity": 0.9953516130101787, "top": 350, "right": 3195, "bottom": 1950, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730382f.jpg"} -{"rects": [{"solidity": 0.9953516489321118, "top": 1790, "right": 2420, "bottom": 2985, "left": 615}, {"solidity": 0.991749369416091, "top": 3175, "right": 2400, "bottom": 4375, "left": 605}, {"solidity": 0.9943801790945048, "top": 370, "right": 2410, "bottom": 1555, "left": 620}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715878f.jpg"} -{"rects": [{"solidity": 0.9953516807701266, "top": 355, "right": 3210, "bottom": 1980, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708162f.jpg"} -{"rects": [{"solidity": 0.995351886929914, "top": 515, "right": 2980, "bottom": 1945, "left": 1160}, {"solidity": 0.996833367593653, "top": 2360, "right": 2965, "bottom": 3785, "left": 1155}, {"solidity": 0.9944485982221831, "top": 4150, "right": 2915, "bottom": 5575, "left": 1100}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725563f.jpg"} -{"rects": [{"solidity": 0.9953520889705978, "top": 370, "right": 3110, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700308f.jpg"} -{"rects": [{"solidity": 0.9953522187313375, "top": 4020, "right": 3025, "bottom": 5640, "left": 620}, {"solidity": 0.9962791820070243, "top": 2235, "right": 3030, "bottom": 3850, "left": 620}, {"solidity": 0.996167892176932, "top": 430, "right": 3025, "bottom": 2030, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709310f.jpg"} -{"rects": [{"solidity": 0.9953523209587278, "top": 4105, "right": 3030, "bottom": 5530, "left": 1180}, {"solidity": 0.9961690986793978, "top": 530, "right": 3030, "bottom": 1950, "left": 1180}, {"solidity": 0.995919726871513, "top": 2360, "right": 3045, "bottom": 3765, "left": 1205}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725734f.jpg"} -{"rects": [{"solidity": 0.9953523940115102, "top": 2265, "right": 3065, "bottom": 3865, "left": 665}, {"solidity": 0.9960026296750237, "top": 430, "right": 3060, "bottom": 2020, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730643f.jpg"} -{"rects": [{"solidity": 0.9953524871080363, "top": 560, "right": 3205, "bottom": 2195, "left": 770}, {"solidity": 0.9954540039857954, "top": 4115, "right": 3185, "bottom": 5745, "left": 745}, {"solidity": 0.9948721950711942, "top": 2345, "right": 3180, "bottom": 3985, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733168f.jpg"} -{"rects": [{"solidity": 0.9953526199604973, "top": 685, "right": 2730, "bottom": 2095, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702513f.jpg"} -{"rects": [{"solidity": 0.995352620524712, "top": 705, "right": 3345, "bottom": 2630, "left": 630}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724731f.jpg"} -{"rects": [{"solidity": 0.9953527894078206, "top": 730, "right": 2060, "bottom": 3215, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700033f.jpg"} -{"rects": [{"solidity": 0.9953528465118542, "top": 1075, "right": 2480, "bottom": 3235, "left": 790}], "shape": {"h": 4425, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708317f.jpg"} -{"rects": [{"solidity": 0.9953529105709974, "top": 2345, "right": 3190, "bottom": 3980, "left": 760}, {"solidity": 0.9954803765161534, "top": 4125, "right": 3160, "bottom": 5745, "left": 735}, {"solidity": 0.9952047094145681, "top": 580, "right": 3185, "bottom": 2210, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733163f.jpg"} -{"rects": [{"solidity": 0.9953529276231458, "top": 390, "right": 3210, "bottom": 2010, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720545f.jpg"} -{"rects": [{"solidity": 0.9953529591853176, "top": 375, "right": 3140, "bottom": 2010, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719653f.jpg"} -{"rects": [{"solidity": 0.9953531385171364, "top": 420, "right": 3210, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734319f.jpg"} -{"rects": [{"solidity": 0.9953531477627472, "top": 2245, "right": 3055, "bottom": 3885, "left": 645}, {"solidity": 0.9963163313667489, "top": 380, "right": 3060, "bottom": 1990, "left": 665}, {"solidity": 0.9953526150137718, "top": 4125, "right": 3030, "bottom": 5750, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729699f.jpg"} -{"rects": [{"solidity": 0.9953531934590322, "top": 810, "right": 3635, "bottom": 3195, "left": 2155}, {"solidity": 0.9950380936700145, "top": 855, "right": 1830, "bottom": 3175, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732556f.jpg"} -{"rects": [{"solidity": 0.9953532020163187, "top": 825, "right": 3365, "bottom": 2725, "left": 585}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725572f.jpg"} -{"rects": [{"solidity": 0.9953534050599513, "top": 550, "right": 2670, "bottom": 1980, "left": 835}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704582f.jpg"} -{"rects": [{"solidity": 0.9953534325905347, "top": 2385, "right": 3140, "bottom": 4005, "left": 735}, {"solidity": 0.9976490421657788, "top": 555, "right": 3145, "bottom": 2150, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724867f.jpg"} -{"rects": [{"solidity": 0.9953536247498845, "top": 550, "right": 2690, "bottom": 1985, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706222f.jpg"} -{"rects": [{"solidity": 0.9953537164472642, "top": 335, "right": 5235, "bottom": 3570, "left": 1185}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732222f.jpg"} -{"rects": [{"solidity": 0.9953537527629382, "top": 440, "right": 3140, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706457f.jpg"} -{"rects": [{"solidity": 0.9953540138694672, "top": 480, "right": 5060, "bottom": 3770, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715614f.jpg"} -{"rects": [{"solidity": 0.9953545383379342, "top": 450, "right": 1605, "bottom": 1315, "left": 175}], "shape": {"h": 3020, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715777f.jpg"} -{"rects": [{"solidity": 0.9953545421181743, "top": 755, "right": 2010, "bottom": 3185, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707908f.jpg"} -{"rects": [{"solidity": 0.9953547394478945, "top": 440, "right": 3100, "bottom": 2035, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729671f.jpg"} -{"rects": [{"solidity": 0.9953548785846382, "top": 625, "right": 2885, "bottom": 2080, "left": 1070}, {"solidity": 0.9973232080769286, "top": 635, "right": 5085, "bottom": 2070, "left": 3270}, {"solidity": 0.9962814602070894, "top": 2305, "right": 2865, "bottom": 3710, "left": 1080}, {"solidity": 0.9368498773046103, "top": 2280, "right": 5115, "bottom": 3665, "left": 3305}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727039f.jpg"} -{"rects": [{"solidity": 0.9953550040355725, "top": 480, "right": 3205, "bottom": 3890, "left": 705}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715626f.jpg"} -{"rects": [{"solidity": 0.9953552125558673, "top": 775, "right": 2050, "bottom": 3185, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714181f.jpg"} -{"rects": [{"solidity": 0.9953552907623889, "top": 455, "right": 3165, "bottom": 2310, "left": 520}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700381f.jpg"} -{"rects": [{"solidity": 0.9953555884631825, "top": 620, "right": 4905, "bottom": 3460, "left": 935}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705981f.jpg"} -{"rects": [{"solidity": 0.9953558880555451, "top": 410, "right": 3095, "bottom": 1775, "left": 870}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/701343f.jpg"} -{"rects": [{"solidity": 0.995356096562488, "top": 775, "right": 3925, "bottom": 3210, "left": 2290}, {"solidity": 0.9964684182112651, "top": 760, "right": 2050, "bottom": 3185, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716738f.jpg"} -{"rects": [{"solidity": 0.9953564889749781, "top": 765, "right": 5745, "bottom": 3160, "left": 4155}, {"solidity": 0.9958497956978354, "top": 790, "right": 3890, "bottom": 3155, "left": 2305}, {"solidity": 0.9949762693044638, "top": 790, "right": 2010, "bottom": 3165, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717465f.jpg"} -{"rects": [{"solidity": 0.9953565209626289, "top": 2505, "right": 2475, "bottom": 4000, "left": 375}, {"solidity": 0.9956222562531905, "top": 635, "right": 2495, "bottom": 2120, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716064f.jpg"} -{"rects": [{"solidity": 0.9953575541206244, "top": 430, "right": 3130, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724916f.jpg"} -{"rects": [{"solidity": 0.9953576997483129, "top": 380, "right": 3080, "bottom": 2000, "left": 660}, {"solidity": 0.9962279787293518, "top": 2265, "right": 3075, "bottom": 3865, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728459f.jpg"} -{"rects": [{"solidity": 0.9953582968761562, "top": 710, "right": 2435, "bottom": 3520, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720639f.jpg"} -{"rects": [{"solidity": 0.9953583364277757, "top": 965, "right": 3360, "bottom": 2785, "left": 1960}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704167f.jpg"} -{"rects": [{"solidity": 0.9953583836442095, "top": 900, "right": 3415, "bottom": 2955, "left": 315}, {"solidity": 0.9951791428854211, "top": 3290, "right": 3405, "bottom": 5290, "left": 330}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715428f.jpg"} -{"rects": [{"solidity": 0.9953584619179259, "top": 2270, "right": 3090, "bottom": 3905, "left": 655}, {"solidity": 0.9962806532945767, "top": 4135, "right": 3065, "bottom": 5760, "left": 635}, {"solidity": 0.998500691239753, "top": 395, "right": 3100, "bottom": 2005, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730614f.jpg"} -{"rects": [{"solidity": 0.9953586319356067, "top": 415, "right": 3195, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/707466f.jpg"} -{"rects": [{"solidity": 0.9953591187210709, "top": 735, "right": 3295, "bottom": 2635, "left": 575}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707757f.jpg"} -{"rects": [{"solidity": 0.9953593065764148, "top": 435, "right": 3130, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733627f.jpg"} -{"rects": [{"solidity": 0.9953593765953173, "top": 815, "right": 2010, "bottom": 3210, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714627f.jpg"} -{"rects": [{"solidity": 0.9953602664209387, "top": 350, "right": 3055, "bottom": 1965, "left": 640}, {"solidity": 0.9945187444600866, "top": 2215, "right": 3050, "bottom": 3825, "left": 630}, {"solidity": 0.9929373996789728, "top": 4065, "right": 3045, "bottom": 5675, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730263f.jpg"} -{"rects": [{"solidity": 0.9953605056527547, "top": 2275, "right": 3205, "bottom": 3885, "left": 785}, {"solidity": 0.9942793476631983, "top": 400, "right": 3225, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725926f.jpg"} -{"rects": [{"solidity": 0.9953607340974854, "top": 875, "right": 3915, "bottom": 3320, "left": 2290}, {"solidity": 0.9994166420869793, "top": 900, "right": 2015, "bottom": 3305, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729452f.jpg"} -{"rects": [{"solidity": 0.9953609692924914, "top": 625, "right": 5125, "bottom": 3285, "left": 1705}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708684f.jpg"} -{"rects": [{"solidity": 0.9953613249660348, "top": 805, "right": 2025, "bottom": 3225, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721420f.jpg"} -{"rects": [{"solidity": 0.9953615999062555, "top": 795, "right": 2665, "bottom": 2220, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727708f.jpg"} -{"rects": [{"solidity": 0.9953619679452991, "top": 500, "right": 5020, "bottom": 3750, "left": 985}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705967f.jpg"} -{"rects": [{"solidity": 0.9953623243762851, "top": 685, "right": 2030, "bottom": 3125, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701249f.jpg"} -{"rects": [{"solidity": 0.9953623263294556, "top": 780, "right": 3860, "bottom": 3200, "left": 2240}, {"solidity": 0.9962091348680753, "top": 780, "right": 5740, "bottom": 3185, "left": 4145}, {"solidity": 0.9959037563705636, "top": 795, "right": 1965, "bottom": 3200, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730084f.jpg"} -{"rects": [{"solidity": 0.9953629927219424, "top": 2220, "right": 3130, "bottom": 3880, "left": 680}, {"solidity": 0.9951976155453056, "top": 390, "right": 3135, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718565f.jpg"} -{"rects": [{"solidity": 0.9953630174704902, "top": 2645, "right": 2015, "bottom": 3675, "left": 470}, {"solidity": 0.9975154979858649, "top": 300, "right": 2010, "bottom": 1320, "left": 470}, {"solidity": 0.9944008326139399, "top": 1465, "right": 2005, "bottom": 2490, "left": 475}], "shape": {"h": 3915, "w": 2520}, "file": "/usr/local/google/home/danvk/milstein/727102f.jpg"} -{"rects": [{"solidity": 0.995363301487635, "top": 805, "right": 2060, "bottom": 3200, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717438f.jpg"} -{"rects": [{"solidity": 0.9953635811521426, "top": 2075, "right": 2710, "bottom": 3460, "left": 855}, {"solidity": 0.9955268514562863, "top": 680, "right": 2695, "bottom": 2045, "left": 850}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706944f.jpg"} -{"rects": [{"solidity": 0.9953636101676806, "top": 425, "right": 3170, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729575f.jpg"} -{"rects": [{"solidity": 0.995363677312799, "top": 520, "right": 5030, "bottom": 3565, "left": 1185}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705068f.jpg"} -{"rects": [{"solidity": 0.9953641500779148, "top": 420, "right": 3225, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725961f.jpg"} -{"rects": [{"solidity": 0.995364311352416, "top": 375, "right": 3080, "bottom": 1990, "left": 665}, {"solidity": 0.9938118479980691, "top": 2270, "right": 3070, "bottom": 3850, "left": 680}, {"solidity": 0.9906476131331677, "top": 4105, "right": 3030, "bottom": 5680, "left": 640}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730640f.jpg"} -{"rects": [{"solidity": 0.995364393850487, "top": 2100, "right": 2740, "bottom": 3530, "left": 930}, {"solidity": 0.9963735490505784, "top": 660, "right": 2730, "bottom": 2090, "left": 930}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703907f.jpg"} -{"rects": [{"solidity": 0.9953644131044599, "top": 425, "right": 3160, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729986f.jpg"} -{"rects": [{"solidity": 0.995364569469782, "top": 4070, "right": 3185, "bottom": 5695, "left": 770}, {"solidity": 0.9984337140596236, "top": 2250, "right": 3190, "bottom": 3850, "left": 785}, {"solidity": 0.998538356667191, "top": 415, "right": 3180, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731636f.jpg"} -{"rects": [{"solidity": 0.9953649622345919, "top": 255, "right": 4995, "bottom": 3620, "left": 995}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730276f.jpg"} -{"rects": [{"solidity": 0.995365432007945, "top": 510, "right": 3195, "bottom": 2105, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722266f.jpg"} -{"rects": [{"solidity": 0.9953656454397822, "top": 360, "right": 3165, "bottom": 2005, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715714f.jpg"} -{"rects": [{"solidity": 0.9953656895650964, "top": 2340, "right": 3135, "bottom": 3960, "left": 1045}, {"solidity": 0.9958257081928039, "top": 720, "right": 3130, "bottom": 2330, "left": 1050}], "shape": {"h": 4425, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/707257f.jpg"} -{"rects": [{"solidity": 0.995365744636096, "top": 2270, "right": 3150, "bottom": 3870, "left": 755}, {"solidity": 0.9915925429511393, "top": 435, "right": 3130, "bottom": 2040, "left": 730}, {"solidity": 0.9940139607957521, "top": 4130, "right": 3155, "bottom": 5720, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702836f.jpg"} -{"rects": [{"solidity": 0.99536606441995, "top": 2155, "right": 3200, "bottom": 3755, "left": 800}, {"solidity": 0.9550903141709451, "top": 705, "right": 3110, "bottom": 1860, "left": 895}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724667f.jpg"} -{"rects": [{"solidity": 0.9953663170558841, "top": 505, "right": 2880, "bottom": 1615, "left": 955}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702103f.jpg"} -{"rects": [{"solidity": 0.9953664363245739, "top": 2205, "right": 3235, "bottom": 3855, "left": 795}, {"solidity": 0.9956455083031653, "top": 4095, "right": 3210, "bottom": 5725, "left": 775}, {"solidity": 0.9954963572046936, "top": 370, "right": 3225, "bottom": 1985, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734277f.jpg"} -{"rects": [{"solidity": 0.9953667258195792, "top": 785, "right": 2005, "bottom": 3170, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719699f.jpg"} -{"rects": [{"solidity": 0.9953670553534932, "top": 2155, "right": 5280, "bottom": 3605, "left": 3440}, {"solidity": 0.9946966151926376, "top": 665, "right": 5275, "bottom": 2100, "left": 3460}, {"solidity": 0.9953848633284659, "top": 2175, "right": 2670, "bottom": 3600, "left": 850}, {"solidity": 0.9949352127259495, "top": 685, "right": 2670, "bottom": 2110, "left": 850}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706974f.jpg"} -{"rects": [{"solidity": 0.9953670555532157, "top": 915, "right": 2015, "bottom": 3330, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729426f.jpg"} -{"rects": [{"solidity": 0.9953674248449181, "top": 530, "right": 2980, "bottom": 1955, "left": 1185}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727812f.jpg"} -{"rects": [{"solidity": 0.9953683063357607, "top": 490, "right": 3075, "bottom": 1890, "left": 1250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727000f.jpg"} -{"rects": [{"solidity": 0.9953683120233343, "top": 415, "right": 2930, "bottom": 1825, "left": 1090}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703601f.jpg"} -{"rects": [{"solidity": 0.9953684896389449, "top": 395, "right": 5075, "bottom": 3575, "left": 1085}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708276f.jpg"} -{"rects": [{"solidity": 0.9953685203818804, "top": 610, "right": 2665, "bottom": 2040, "left": 810}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705132f.jpg"} -{"rects": [{"solidity": 0.9953685884691849, "top": 365, "right": 3200, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706904f.jpg"} -{"rects": [{"solidity": 0.995369122347595, "top": 780, "right": 3890, "bottom": 3205, "left": 2260}, {"solidity": 0.9968311658076323, "top": 780, "right": 2040, "bottom": 3200, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710364f.jpg"} -{"rects": [{"solidity": 0.9953692280131284, "top": 320, "right": 3165, "bottom": 1900, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724624f.jpg"} -{"rects": [{"solidity": 0.9953696400872835, "top": 430, "right": 3195, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724857f.jpg"} -{"rects": [{"solidity": 0.9953698936909573, "top": 2255, "right": 3325, "bottom": 3880, "left": 900}, {"solidity": 0.9951768229578069, "top": 4085, "right": 3290, "bottom": 5715, "left": 865}, {"solidity": 0.9957343241266369, "top": 380, "right": 3325, "bottom": 2000, "left": 910}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734738f.jpg"} -{"rects": [{"solidity": 0.9953698990104675, "top": 610, "right": 2905, "bottom": 2030, "left": 1060}, {"solidity": 0.9957054674583997, "top": 2245, "right": 5080, "bottom": 3680, "left": 3280}, {"solidity": 0.9963898562327781, "top": 2280, "right": 2910, "bottom": 3685, "left": 1085}, {"solidity": 0.9957601184600198, "top": 600, "right": 5080, "bottom": 2020, "left": 3275}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727772f.jpg"} -{"rects": [{"solidity": 0.9953699971949147, "top": 860, "right": 3985, "bottom": 3265, "left": 2345}, {"solidity": 0.9962141908034903, "top": 855, "right": 2130, "bottom": 3265, "left": 495}, {"solidity": 0.9967650573809407, "top": 880, "right": 5750, "bottom": 3270, "left": 4135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714916f.jpg"} -{"rects": [{"solidity": 0.9953703703703703, "top": 365, "right": 2410, "bottom": 1535, "left": 625}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715937f.jpg"} -{"rects": [{"solidity": 0.9953708587239636, "top": 500, "right": 3230, "bottom": 2050, "left": 1215}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/702844f.jpg"} -{"rects": [{"solidity": 0.9953710886992501, "top": 415, "right": 3100, "bottom": 2040, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729804f.jpg"} -{"rects": [{"solidity": 0.995371116351971, "top": 590, "right": 5755, "bottom": 2970, "left": 4300}, {"solidity": 0.9975758022326199, "top": 580, "right": 1680, "bottom": 2925, "left": 215}, {"solidity": 0.9941210941902136, "top": 595, "right": 3725, "bottom": 2940, "left": 2260}], "shape": {"h": 3510, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733671f.jpg"} -{"rects": [{"solidity": 0.9953715838261148, "top": 865, "right": 5690, "bottom": 3310, "left": 4050}, {"solidity": 0.9964750533570691, "top": 855, "right": 1955, "bottom": 3275, "left": 330}, {"solidity": 0.9967447202524213, "top": 850, "right": 3820, "bottom": 3275, "left": 2205}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729072f.jpg"} -{"rects": [{"solidity": 0.9953718877499124, "top": 580, "right": 2790, "bottom": 1875, "left": 1065}, {"solidity": 0.98821724839568, "top": 2200, "right": 2725, "bottom": 3475, "left": 1140}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732772f.jpg"} -{"rects": [{"solidity": 0.9953721574399674, "top": 1955, "right": 2925, "bottom": 3515, "left": 1020}, {"solidity": 0.995013931661534, "top": 235, "right": 2890, "bottom": 1780, "left": 995}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714753f.jpg"} -{"rects": [{"solidity": 0.9953722898713426, "top": 2275, "right": 3115, "bottom": 3915, "left": 675}, {"solidity": 0.9949231392887248, "top": 385, "right": 3120, "bottom": 2025, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728395f.jpg"} -{"rects": [{"solidity": 0.995372537779264, "top": 3860, "right": 3220, "bottom": 5505, "left": 775}, {"solidity": 0.9956754372506904, "top": 2160, "right": 3230, "bottom": 3790, "left": 790}, {"solidity": 0.994664741287874, "top": 450, "right": 3275, "bottom": 2095, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734096f.jpg"} -{"rects": [{"solidity": 0.9953730450606365, "top": 4735, "right": 3485, "bottom": 6585, "left": 755}, {"solidity": 0.9961323791657982, "top": 2705, "right": 3490, "bottom": 4510, "left": 785}, {"solidity": 0.9969980557355801, "top": 695, "right": 3485, "bottom": 2505, "left": 795}], "shape": {"h": 6910, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/709640f.jpg"} -{"rects": [{"solidity": 0.9953734579535606, "top": 765, "right": 2025, "bottom": 3185, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708090f.jpg"} -{"rects": [{"solidity": 0.9953735341771339, "top": 2295, "right": 3285, "bottom": 3940, "left": 840}, {"solidity": 0.9960239784683141, "top": 445, "right": 3315, "bottom": 2065, "left": 880}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733226f.jpg"} -{"rects": [{"solidity": 0.9953736050945242, "top": 640, "right": 2720, "bottom": 2055, "left": 905}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704266f.jpg"} -{"rects": [{"solidity": 0.995373900665955, "top": 945, "right": 2070, "bottom": 3385, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729384f.jpg"} -{"rects": [{"solidity": 0.9953740119405294, "top": 435, "right": 3160, "bottom": 2070, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732213f.jpg"} -{"rects": [{"solidity": 0.9953741237064238, "top": 655, "right": 2710, "bottom": 2105, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705778f.jpg"} -{"rects": [{"solidity": 0.9953744366301024, "top": 850, "right": 3920, "bottom": 3285, "left": 2285}, {"solidity": 0.9951136133187836, "top": 855, "right": 2035, "bottom": 3285, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728797f.jpg"} -{"rects": [{"solidity": 0.9953744828500056, "top": 605, "right": 3245, "bottom": 2500, "left": 500}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734397f.jpg"} -{"rects": [{"solidity": 0.9953747242282828, "top": 360, "right": 2365, "bottom": 1555, "left": 570}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716433f.jpg"} -{"rects": [{"solidity": 0.9953747658515306, "top": 370, "right": 3165, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723755f.jpg"} -{"rects": [{"solidity": 0.9953748839561712, "top": 830, "right": 2190, "bottom": 3215, "left": 600}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709556f.jpg"} -{"rects": [{"solidity": 0.9953750387837419, "top": 410, "right": 3115, "bottom": 2025, "left": 695}, {"solidity": 0.9965612037729618, "top": 2265, "right": 3105, "bottom": 3890, "left": 705}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733468f.jpg"} -{"rects": [{"solidity": 0.9953750775772141, "top": 770, "right": 2020, "bottom": 3170, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721153f.jpg"} -{"rects": [{"solidity": 0.9953756350875823, "top": 755, "right": 2350, "bottom": 3475, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718442f.jpg"} -{"rects": [{"solidity": 0.99537596818828, "top": 745, "right": 2670, "bottom": 2140, "left": 870}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726435f.jpg"} -{"rects": [{"solidity": 0.9953761455682517, "top": 515, "right": 3700, "bottom": 2035, "left": 2700}, {"solidity": 0.9952662030272924, "top": 525, "right": 2585, "bottom": 2040, "left": 1585}, {"solidity": 0.9922667358460265, "top": 350, "right": 1450, "bottom": 1250, "left": 300}, {"solidity": 0.9943301637812377, "top": 1360, "right": 1455, "bottom": 2240, "left": 310}], "shape": {"h": 2530, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/726086f.jpg"} -{"rects": [{"solidity": 0.9953763780376513, "top": 405, "right": 5130, "bottom": 3655, "left": 1040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720962f.jpg"} -{"rects": [{"solidity": 0.995376729208425, "top": 2075, "right": 3225, "bottom": 3690, "left": 835}, {"solidity": 0.9944134263324442, "top": 3980, "right": 3215, "bottom": 5600, "left": 825}, {"solidity": 0.9965407599971, "top": 430, "right": 3010, "bottom": 1800, "left": 1235}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728170f.jpg"} -{"rects": [{"solidity": 0.995376844268143, "top": 595, "right": 4215, "bottom": 3640, "left": 2170}, {"solidity": 0.9965397702560954, "top": 780, "right": 2065, "bottom": 3205, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720408f.jpg"} -{"rects": [{"solidity": 0.9953772010643712, "top": 425, "right": 3185, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726850f.jpg"} -{"rects": [{"solidity": 0.9953775188152464, "top": 2185, "right": 3325, "bottom": 3820, "left": 890}, {"solidity": 0.9963743662476973, "top": 390, "right": 3335, "bottom": 2005, "left": 920}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725134f.jpg"} -{"rects": [{"solidity": 0.9953775894815643, "top": 2220, "right": 3230, "bottom": 3830, "left": 830}, {"solidity": 0.9958346842763467, "top": 4060, "right": 3210, "bottom": 5660, "left": 820}, {"solidity": 0.9961850021848005, "top": 390, "right": 3205, "bottom": 1970, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/732881f.jpg"} -{"rects": [{"solidity": 0.9953777804370915, "top": 2125, "right": 3215, "bottom": 3840, "left": 740}, {"solidity": 0.9986575683278027, "top": 280, "right": 3175, "bottom": 1890, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732440f.jpg"} -{"rects": [{"solidity": 0.9953777841298508, "top": 435, "right": 3230, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727893f.jpg"} -{"rects": [{"solidity": 0.9953782510911559, "top": 785, "right": 2050, "bottom": 3210, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706650f.jpg"} -{"rects": [{"solidity": 0.9953786198674478, "top": 815, "right": 2005, "bottom": 3235, "left": 380}, {"solidity": 0.995004536797918, "top": 825, "right": 3895, "bottom": 2235, "left": 2095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706918f.jpg"} -{"rects": [{"solidity": 0.9953788095862267, "top": 1005, "right": 3085, "bottom": 2190, "left": 1310}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509139.jpg"} -{"rects": [{"solidity": 0.9953791200181638, "top": 415, "right": 3235, "bottom": 2050, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703780f.jpg"} -{"rects": [{"solidity": 0.9953792688372454, "top": 560, "right": 3095, "bottom": 1930, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718495f.jpg"} -{"rects": [{"solidity": 0.9953797874403824, "top": 495, "right": 2940, "bottom": 1895, "left": 1115}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727230f.jpg"} -{"rects": [{"solidity": 0.9953802450478714, "top": 770, "right": 2120, "bottom": 3185, "left": 480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723803f.jpg"} -{"rects": [{"solidity": 0.9953805359733939, "top": 435, "right": 3265, "bottom": 2060, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727788f.jpg"} -{"rects": [{"solidity": 0.9953805368015487, "top": 1120, "right": 3430, "bottom": 5165, "left": 445}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/722747f.jpg"} -{"rects": [{"solidity": 0.9953805720241523, "top": 760, "right": 3820, "bottom": 3180, "left": 2170}, {"solidity": 0.9988466757123473, "top": 780, "right": 1985, "bottom": 3190, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719882f.jpg"} -{"rects": [{"solidity": 0.9953806452839334, "top": 2095, "right": 2660, "bottom": 3555, "left": 815}, {"solidity": 0.9965578743431838, "top": 645, "right": 2635, "bottom": 2085, "left": 805}, {"solidity": 0.9959137146555638, "top": 1985, "right": 5160, "bottom": 3420, "left": 3320}, {"solidity": 0.9937863099392801, "top": 635, "right": 5150, "bottom": 1960, "left": 3305}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702814f.jpg"} -{"rects": [{"solidity": 0.9953809270372016, "top": 410, "right": 3035, "bottom": 1830, "left": 1215}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726049f.jpg"} -{"rects": [{"solidity": 0.9953811304920784, "top": 4135, "right": 3095, "bottom": 5755, "left": 690}, {"solidity": 0.9952106996128429, "top": 385, "right": 3115, "bottom": 1995, "left": 715}, {"solidity": 0.9972008005248911, "top": 2250, "right": 3105, "bottom": 3845, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728774f.jpg"} -{"rects": [{"solidity": 0.9953813902048497, "top": 4030, "right": 3160, "bottom": 5635, "left": 765}, {"solidity": 0.995807396372926, "top": 405, "right": 3150, "bottom": 1985, "left": 785}, {"solidity": 0.9952254030261721, "top": 2230, "right": 3150, "bottom": 3805, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718976f.jpg"} -{"rects": [{"solidity": 0.9953814152487234, "top": 670, "right": 2730, "bottom": 2095, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726385f.jpg"} -{"rects": [{"solidity": 0.9953814925679929, "top": 755, "right": 2045, "bottom": 3180, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707752f.jpg"} -{"rects": [{"solidity": 0.9953818071723496, "top": 590, "right": 5155, "bottom": 3435, "left": 3120}, {"solidity": 0.9970110194185845, "top": 800, "right": 2330, "bottom": 3205, "left": 725}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715511f.jpg"} -{"rects": [{"solidity": 0.9953818266605492, "top": 445, "right": 1825, "bottom": 2730, "left": 350}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716351f.jpg"} -{"rects": [{"solidity": 0.9953823240008388, "top": 1055, "right": 3415, "bottom": 5045, "left": 455}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719891f.jpg"} -{"rects": [{"solidity": 0.9953824337786489, "top": 2230, "right": 3200, "bottom": 3845, "left": 780}, {"solidity": 0.9951405885828177, "top": 365, "right": 3225, "bottom": 1970, "left": 795}, {"solidity": 0.9953808054802229, "top": 4115, "right": 3165, "bottom": 5720, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727979f.jpg"} -{"rects": [{"solidity": 0.9953824635957816, "top": 505, "right": 3345, "bottom": 2415, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713093f.jpg"} -{"rects": [{"solidity": 0.9953828114487823, "top": 585, "right": 3225, "bottom": 1980, "left": 865}, {"solidity": 0.9929766434568029, "top": 2355, "right": 3190, "bottom": 3665, "left": 960}, {"solidity": 0.946271571376955, "top": 4130, "right": 3195, "bottom": 5440, "left": 945}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727029f.jpg"} -{"rects": [{"solidity": 0.995382921043714, "top": 745, "right": 1980, "bottom": 3150, "left": 370}, {"solidity": 0.9587585220805259, "top": 820, "right": 3760, "bottom": 3080, "left": 2265}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732514f.jpg"} -{"rects": [{"solidity": 0.9953829868204067, "top": 930, "right": 5350, "bottom": 3865, "left": 1440}], "shape": {"h": 4415, "w": 6925}, "file": "/usr/local/google/home/danvk/milstein/708868f.jpg"} -{"rects": [{"solidity": 0.9953833433602183, "top": 445, "right": 3190, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732007f.jpg"} -{"rects": [{"solidity": 0.9953834401673918, "top": 430, "right": 3085, "bottom": 2025, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729621f.jpg"} -{"rects": [{"solidity": 0.9953834519734102, "top": 375, "right": 3390, "bottom": 2380, "left": 550}, {"solidity": 0.99581167279736, "top": 4110, "right": 3170, "bottom": 5755, "left": 745}, {"solidity": 0.9958015416011334, "top": 2425, "right": 3180, "bottom": 4040, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705253f.jpg"} -{"rects": [{"solidity": 0.9953836041655004, "top": 985, "right": 3665, "bottom": 5210, "left": 340}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722210f.jpg"} -{"rects": [{"solidity": 0.995383695211487, "top": 500, "right": 3945, "bottom": 2615, "left": 2430}, {"solidity": 0.997589783659312, "top": 505, "right": 2195, "bottom": 2590, "left": 730}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716253f.jpg"} -{"rects": [{"solidity": 0.9953843137380952, "top": 2265, "right": 3055, "bottom": 3895, "left": 625}, {"solidity": 0.9943925051361402, "top": 400, "right": 3060, "bottom": 2020, "left": 645}, {"solidity": 0.9952452950954044, "top": 4140, "right": 3035, "bottom": 5750, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733473f.jpg"} -{"rects": [{"solidity": 0.9953846977739768, "top": 335, "right": 3135, "bottom": 3455, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715070f.jpg"} -{"rects": [{"solidity": 0.9953847584775797, "top": 400, "right": 3120, "bottom": 2045, "left": 670}, {"solidity": 0.9964508486049998, "top": 2260, "right": 3090, "bottom": 3880, "left": 665}, {"solidity": 0.9955026557593145, "top": 4095, "right": 3070, "bottom": 5735, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726628f.jpg"} -{"rects": [{"solidity": 0.9953848981789057, "top": 710, "right": 5820, "bottom": 3110, "left": 4210}, {"solidity": 0.9959084035855825, "top": 695, "right": 2220, "bottom": 3095, "left": 625}, {"solidity": 0.9949032140550744, "top": 695, "right": 4005, "bottom": 3095, "left": 2410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709520f.jpg"} -{"rects": [{"solidity": 0.9953849000694839, "top": 1335, "right": 3410, "bottom": 4850, "left": 490}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714502f.jpg"} -{"rects": [{"solidity": 0.9953851280406913, "top": 555, "right": 3140, "bottom": 2245, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718539f.jpg"} -{"rects": [{"solidity": 0.9953854725723729, "top": 1145, "right": 3490, "bottom": 5205, "left": 230}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709011f.jpg"} -{"rects": [{"solidity": 0.9953861561528531, "top": 1665, "right": 2385, "bottom": 2880, "left": 580}, {"solidity": 0.9977411392110288, "top": 280, "right": 2380, "bottom": 1485, "left": 585}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716330f.jpg"} -{"rects": [{"solidity": 0.9953863310498646, "top": 415, "right": 3265, "bottom": 2060, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703671f.jpg"} -{"rects": [{"solidity": 0.9953863371628258, "top": 1220, "right": 3030, "bottom": 2825, "left": 625}, {"solidity": 0.993679756968891, "top": 1220, "right": 5470, "bottom": 2840, "left": 3060}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734123f.jpg"} -{"rects": [{"solidity": 0.9953872258555845, "top": 205, "right": 3310, "bottom": 2700, "left": 280}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509879.jpg"} -{"rects": [{"solidity": 0.9953872382631433, "top": 1090, "right": 3290, "bottom": 4965, "left": 530}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/724783f.jpg"} -{"rects": [{"solidity": 0.995387390364465, "top": 365, "right": 2690, "bottom": 3185, "left": 1380}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714349f.jpg"} -{"rects": [{"solidity": 0.9953874648037501, "top": 455, "right": 3060, "bottom": 2095, "left": 1085}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703791f.jpg"} -{"rects": [{"solidity": 0.9953876700735629, "top": 390, "right": 3185, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730377f.jpg"} -{"rects": [{"solidity": 0.9953884865716295, "top": 735, "right": 2695, "bottom": 2150, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725139f.jpg"} -{"rects": [{"solidity": 0.9953884982153322, "top": 995, "right": 3870, "bottom": 3380, "left": 2260}, {"solidity": 0.995539048397306, "top": 1000, "right": 5625, "bottom": 3395, "left": 4035}, {"solidity": 0.9968617128973476, "top": 1020, "right": 2095, "bottom": 3375, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714232f.jpg"} -{"rects": [{"solidity": 0.995388953010962, "top": 710, "right": 2510, "bottom": 2050, "left": 865}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725506f.jpg"} -{"rects": [{"solidity": 0.9953890203737111, "top": 440, "right": 3200, "bottom": 2040, "left": 810}, {"solidity": 0.9861046155467582, "top": 2290, "right": 3205, "bottom": 3885, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728010f.jpg"} -{"rects": [{"solidity": 0.9953891981185274, "top": 2290, "right": 3020, "bottom": 3910, "left": 650}, {"solidity": 0.9960791552579314, "top": 4110, "right": 3025, "bottom": 5695, "left": 670}, {"solidity": 0.9956027684997073, "top": 485, "right": 3010, "bottom": 2085, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719750f.jpg"} -{"rects": [{"solidity": 0.995389243713702, "top": 470, "right": 3195, "bottom": 2090, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701041f.jpg"} -{"rects": [{"solidity": 0.9953894972973887, "top": 320, "right": 2870, "bottom": 1475, "left": 920}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701362f.jpg"} -{"rects": [{"solidity": 0.9953896366212898, "top": 370, "right": 3120, "bottom": 2035, "left": 675}, {"solidity": 0.9936303682413186, "top": 2210, "right": 3055, "bottom": 3875, "left": 620}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724095f.jpg"} -{"rects": [{"solidity": 0.9953897585844463, "top": 840, "right": 2040, "bottom": 3245, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733314f.jpg"} -{"rects": [{"solidity": 0.9953898288848175, "top": 935, "right": 1855, "bottom": 3215, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712321f.jpg"} -{"rects": [{"solidity": 0.9953898388549435, "top": 445, "right": 3225, "bottom": 2090, "left": 850}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716845f.jpg"} -{"rects": [{"solidity": 0.9953899714554424, "top": 2260, "right": 3170, "bottom": 3855, "left": 780}, {"solidity": 0.9973589857444877, "top": 415, "right": 3165, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/718822f.jpg"} -{"rects": [{"solidity": 0.9953900121264138, "top": 420, "right": 5050, "bottom": 3460, "left": 1215}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706502f.jpg"} -{"rects": [{"solidity": 0.995390127570232, "top": 445, "right": 3165, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724298f.jpg"} -{"rects": [{"solidity": 0.9953906035499136, "top": 440, "right": 3155, "bottom": 2065, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719773f.jpg"} -{"rects": [{"solidity": 0.9953908800619757, "top": 420, "right": 3080, "bottom": 2025, "left": 665}, {"solidity": 0.9959903978007446, "top": 2290, "right": 3085, "bottom": 3905, "left": 675}, {"solidity": 0.9949734234529825, "top": 4140, "right": 3075, "bottom": 5740, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731565f.jpg"} -{"rects": [{"solidity": 0.9953910386490332, "top": 470, "right": 3390, "bottom": 2405, "left": 585}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706253f.jpg"} -{"rects": [{"solidity": 0.9953912515786193, "top": 820, "right": 5730, "bottom": 3245, "left": 4130}, {"solidity": 0.9961612157469305, "top": 840, "right": 3885, "bottom": 3245, "left": 2290}, {"solidity": 0.9975270765283857, "top": 850, "right": 2020, "bottom": 3250, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701351f.jpg"} -{"rects": [{"solidity": 0.9953920283685229, "top": 345, "right": 3020, "bottom": 1990, "left": 590}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721096f.jpg"} -{"rects": [{"solidity": 0.9953927239503572, "top": 2255, "right": 3150, "bottom": 3875, "left": 735}, {"solidity": 0.9951681710584501, "top": 395, "right": 3170, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709230f.jpg"} -{"rects": [{"solidity": 0.9953927416289838, "top": 515, "right": 4900, "bottom": 3545, "left": 1140}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718429f.jpg"} -{"rects": [{"solidity": 0.9953927896674684, "top": 450, "right": 3180, "bottom": 2070, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709510f.jpg"} -{"rects": [{"solidity": 0.9953928197952447, "top": 390, "right": 2525, "bottom": 1870, "left": 215}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716366f.jpg"} -{"rects": [{"solidity": 0.9953932479372631, "top": 805, "right": 3915, "bottom": 3220, "left": 2290}, {"solidity": 0.9978225901369218, "top": 810, "right": 2150, "bottom": 3215, "left": 550}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710992f.jpg"} -{"rects": [{"solidity": 0.9953935807959972, "top": 915, "right": 1915, "bottom": 2735, "left": 505}, {"solidity": 0.9954875446259399, "top": 940, "right": 3660, "bottom": 2765, "left": 2265}, {"solidity": 0.9594024171100384, "top": 855, "right": 5490, "bottom": 3065, "left": 4605}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725604f.jpg"} -{"rects": [{"solidity": 0.9953939260634564, "top": 2315, "right": 3150, "bottom": 3945, "left": 735}, {"solidity": 0.9966305203578129, "top": 395, "right": 3120, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728408f.jpg"} -{"rects": [{"solidity": 0.9953940464489048, "top": 2090, "right": 2765, "bottom": 3555, "left": 935}, {"solidity": 0.9963141248686187, "top": 620, "right": 5230, "bottom": 2035, "left": 3370}, {"solidity": 0.9957375164675304, "top": 640, "right": 2745, "bottom": 2020, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703807f.jpg"} -{"rects": [{"solidity": 0.9953945510165978, "top": 665, "right": 2580, "bottom": 2115, "left": 750}, {"solidity": 0.9971224267854909, "top": 2170, "right": 2560, "bottom": 3615, "left": 745}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716606f.jpg"} -{"rects": [{"solidity": 0.995394595112143, "top": 635, "right": 2695, "bottom": 2070, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705297f.jpg"} -{"rects": [{"solidity": 0.9953948590592215, "top": 785, "right": 2690, "bottom": 2240, "left": 870}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705595f.jpg"} -{"rects": [{"solidity": 0.995395044082476, "top": 475, "right": 5110, "bottom": 3765, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701339f.jpg"} -{"rects": [{"solidity": 0.9953951105726452, "top": 2075, "right": 2555, "bottom": 3470, "left": 745}, {"solidity": 0.9963871875095544, "top": 625, "right": 2535, "bottom": 2020, "left": 750}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703554f.jpg"} -{"rects": [{"solidity": 0.9953951995107782, "top": 395, "right": 3215, "bottom": 2130, "left": 810}, {"solidity": 0.9960949397729423, "top": 2380, "right": 3210, "bottom": 4015, "left": 780}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700943f.jpg"} -{"rects": [{"solidity": 0.9953952974899287, "top": 2225, "right": 3020, "bottom": 3660, "left": 1195}, {"solidity": 0.9954542776915978, "top": 475, "right": 3015, "bottom": 1895, "left": 1185}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727880f.jpg"} -{"rects": [{"solidity": 0.9953955616751565, "top": 1065, "right": 3795, "bottom": 3525, "left": 2120}, {"solidity": 0.996193708593398, "top": 1050, "right": 5565, "bottom": 3475, "left": 3925}, {"solidity": 0.9951836438359717, "top": 1130, "right": 2015, "bottom": 3540, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701417f.jpg"} -{"rects": [{"solidity": 0.9953958439385637, "top": 2260, "right": 3090, "bottom": 3875, "left": 675}, {"solidity": 0.9943911969982697, "top": 385, "right": 3090, "bottom": 2020, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710122f.jpg"} -{"rects": [{"solidity": 0.995396034952551, "top": 470, "right": 3155, "bottom": 2080, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702554f.jpg"} -{"rects": [{"solidity": 0.9953960489938557, "top": 510, "right": 2795, "bottom": 2325, "left": 1570}, {"solidity": 0.9971090044642079, "top": 520, "right": 1415, "bottom": 2320, "left": 205}, {"solidity": 0.9949415225658319, "top": 615, "right": 4025, "bottom": 2275, "left": 2960}], "shape": {"h": 2845, "w": 4445}, "file": "/usr/local/google/home/danvk/milstein/732483f.jpg"} -{"rects": [{"solidity": 0.9953960529563255, "top": 1145, "right": 3420, "bottom": 5020, "left": 285}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713650f.jpg"} -{"rects": [{"solidity": 0.9953962974477346, "top": 2170, "right": 2910, "bottom": 3715, "left": 980}, {"solidity": 0.9946913938994401, "top": 405, "right": 2905, "bottom": 1925, "left": 975}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700088f.jpg"} -{"rects": [{"solidity": 0.995396381820856, "top": 420, "right": 2900, "bottom": 1830, "left": 1065}, {"solidity": 0.9924248359612183, "top": 2050, "right": 2910, "bottom": 3465, "left": 1080}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703766f.jpg"} -{"rects": [{"solidity": 0.9953964379787825, "top": 795, "right": 2900, "bottom": 2295, "left": 810}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507520.jpg"} -{"rects": [{"solidity": 0.9953964841817964, "top": 560, "right": 4995, "bottom": 3660, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700908f.jpg"} -{"rects": [{"solidity": 0.9953966119578714, "top": 2115, "right": 3205, "bottom": 3740, "left": 775}, {"solidity": 0.9961986266005782, "top": 4075, "right": 3210, "bottom": 5690, "left": 780}, {"solidity": 0.9970446161058232, "top": 370, "right": 2870, "bottom": 1765, "left": 1095}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734175f.jpg"} -{"rects": [{"solidity": 0.9953968340769381, "top": 2245, "right": 3220, "bottom": 3900, "left": 780}, {"solidity": 0.9933170518688641, "top": 395, "right": 3230, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708903f.jpg"} -{"rects": [{"solidity": 0.995396885041982, "top": 2245, "right": 3130, "bottom": 3860, "left": 715}, {"solidity": 0.997348473743701, "top": 460, "right": 3140, "bottom": 2065, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710455f.jpg"} -{"rects": [{"solidity": 0.995396948538919, "top": 2250, "right": 3170, "bottom": 3860, "left": 745}, {"solidity": 0.9961778144372749, "top": 4065, "right": 3170, "bottom": 5670, "left": 750}, {"solidity": 0.9951701827128993, "top": 445, "right": 3155, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719382f.jpg"} -{"rects": [{"solidity": 0.9953969582974642, "top": 500, "right": 2375, "bottom": 2620, "left": 845}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509309.jpg"} -{"rects": [{"solidity": 0.995397255981119, "top": 660, "right": 2685, "bottom": 2080, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707441f.jpg"} -{"rects": [{"solidity": 0.9953979452659674, "top": 480, "right": 2960, "bottom": 1910, "left": 1155}, {"solidity": 0.9955819343615796, "top": 2310, "right": 2980, "bottom": 3725, "left": 1175}, {"solidity": 0.9969490683229814, "top": 4105, "right": 2970, "bottom": 5520, "left": 1165}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726160f.jpg"} -{"rects": [{"solidity": 0.9953979678920503, "top": 435, "right": 3115, "bottom": 2065, "left": 700}, {"solidity": 1.0, "top": 5245, "right": 3865, "bottom": 6010, "left": 2520}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/703378f.jpg"} -{"rects": [{"solidity": 0.9953981684812933, "top": 660, "right": 2670, "bottom": 2025, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730496f.jpg"} -{"rects": [{"solidity": 0.9953981876541277, "top": 1170, "right": 3455, "bottom": 4915, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722812f.jpg"} -{"rects": [{"solidity": 0.9953983394579244, "top": 785, "right": 2060, "bottom": 3180, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724490f.jpg"} -{"rects": [{"solidity": 0.9953986278397577, "top": 1365, "right": 3395, "bottom": 4885, "left": 415}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723856f.jpg"} -{"rects": [{"solidity": 0.9953988890240975, "top": 420, "right": 3215, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734592f.jpg"} -{"rects": [{"solidity": 0.995398980261098, "top": 2265, "right": 3170, "bottom": 3870, "left": 785}, {"solidity": 0.9941113013529161, "top": 455, "right": 3175, "bottom": 2055, "left": 785}, {"solidity": 0.9969027120317215, "top": 4095, "right": 3170, "bottom": 5695, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733218f.jpg"} -{"rects": [{"solidity": 0.9953990040082594, "top": 635, "right": 2745, "bottom": 2065, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703304f.jpg"} -{"rects": [{"solidity": 0.9953991472156708, "top": 545, "right": 1575, "bottom": 2350, "left": 370}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/715846f.jpg"} -{"rects": [{"solidity": 0.9953992508386404, "top": 370, "right": 3360, "bottom": 2285, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715091f.jpg"} -{"rects": [{"solidity": 0.9953997359930707, "top": 450, "right": 4650, "bottom": 3715, "left": 570}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728055f.jpg"} -{"rects": [{"solidity": 0.9953998349000079, "top": 775, "right": 2010, "bottom": 3170, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713642f.jpg"} -{"rects": [{"solidity": 0.995400272457729, "top": 2305, "right": 3105, "bottom": 3960, "left": 675}, {"solidity": 0.9971629555669727, "top": 415, "right": 3110, "bottom": 2040, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718749f.jpg"} -{"rects": [{"solidity": 0.9954004363525014, "top": 385, "right": 3285, "bottom": 2030, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726439f.jpg"} -{"rects": [{"solidity": 0.9954006815223218, "top": 605, "right": 5165, "bottom": 2055, "left": 3325}, {"solidity": 0.9947792499265531, "top": 2125, "right": 2650, "bottom": 3565, "left": 825}, {"solidity": 0.9947956291037724, "top": 2060, "right": 5180, "bottom": 3500, "left": 3355}, {"solidity": 0.9962394433006831, "top": 685, "right": 2620, "bottom": 2115, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707214f.jpg"} -{"rects": [{"solidity": 0.9954007222328762, "top": 850, "right": 2020, "bottom": 3265, "left": 405}, {"solidity": 0.9953842550727655, "top": 875, "right": 5765, "bottom": 3285, "left": 4135}, {"solidity": 0.9949819761440345, "top": 865, "right": 3900, "bottom": 3275, "left": 2295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733695f.jpg"} -{"rects": [{"solidity": 0.9954008098220214, "top": 4150, "right": 3190, "bottom": 5775, "left": 775}, {"solidity": 0.9943680302309603, "top": 2305, "right": 3210, "bottom": 3915, "left": 805}, {"solidity": 0.9939664752268412, "top": 460, "right": 3215, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708695f.jpg"} -{"rects": [{"solidity": 0.9954014134810675, "top": 435, "right": 3010, "bottom": 2040, "left": 610}, {"solidity": 0.9960863590192993, "top": 4130, "right": 2985, "bottom": 5715, "left": 590}, {"solidity": 0.9962131748005214, "top": 2305, "right": 2990, "bottom": 3880, "left": 600}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731570f.jpg"} -{"rects": [{"solidity": 0.9954014640761474, "top": 2220, "right": 3090, "bottom": 3850, "left": 655}, {"solidity": 0.995427588834719, "top": 395, "right": 3090, "bottom": 2005, "left": 670}, {"solidity": 0.9961054181370644, "top": 4085, "right": 3070, "bottom": 5695, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729949f.jpg"} -{"rects": [{"solidity": 0.9954015474876786, "top": 980, "right": 3205, "bottom": 2620, "left": 780}, {"solidity": 0.9958597569674098, "top": 3210, "right": 3180, "bottom": 4835, "left": 750}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/730720f.jpg"} -{"rects": [{"solidity": 0.9954015554513558, "top": 700, "right": 3890, "bottom": 3115, "left": 2270}, {"solidity": 0.9953015794621186, "top": 710, "right": 2100, "bottom": 3125, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712595f.jpg"} -{"rects": [{"solidity": 0.9954015570166592, "top": 1005, "right": 2035, "bottom": 2965, "left": 440}, {"solidity": 0.9964875441443162, "top": 1070, "right": 3655, "bottom": 2915, "left": 2220}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704275f.jpg"} -{"rects": [{"solidity": 0.9954016699884065, "top": 820, "right": 5795, "bottom": 3235, "left": 4180}, {"solidity": 0.9962017268471698, "top": 825, "right": 3975, "bottom": 3225, "left": 2375}, {"solidity": 0.9941957824332268, "top": 555, "right": 2165, "bottom": 1980, "left": 365}, {"solidity": 0.9959905167003695, "top": 2195, "right": 2175, "bottom": 3615, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727994f.jpg"} -{"rects": [{"solidity": 0.995401931784045, "top": 425, "right": 2630, "bottom": 3835, "left": 1245}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714751f.jpg"} -{"rects": [{"solidity": 0.9954025555930109, "top": 410, "right": 5035, "bottom": 3460, "left": 980}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716803f.jpg"} -{"rects": [{"solidity": 0.9954029360042816, "top": 2940, "right": 3245, "bottom": 4585, "left": 825}, {"solidity": 0.9956796913609769, "top": 780, "right": 3235, "bottom": 2420, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707914f.jpg"} -{"rects": [{"solidity": 0.9954040000778983, "top": 420, "right": 3290, "bottom": 2035, "left": 880}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725968f.jpg"} -{"rects": [{"solidity": 0.9954040449553923, "top": 415, "right": 3180, "bottom": 2025, "left": 750}, {"solidity": 0.9935065771258957, "top": 2240, "right": 3165, "bottom": 3855, "left": 730}, {"solidity": 0.9955212101282472, "top": 4125, "right": 3130, "bottom": 5725, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719491f.jpg"} -{"rects": [{"solidity": 0.9954042438635118, "top": 2230, "right": 3180, "bottom": 3875, "left": 740}, {"solidity": 0.9956989592702042, "top": 385, "right": 3200, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715673f.jpg"} -{"rects": [{"solidity": 0.9954042508201975, "top": 730, "right": 3945, "bottom": 3125, "left": 2340}, {"solidity": 0.9963923217465407, "top": 720, "right": 2055, "bottom": 3105, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721284f.jpg"} -{"rects": [{"solidity": 0.9954043420296766, "top": 345, "right": 2515, "bottom": 1885, "left": 245}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716349f.jpg"} -{"rects": [{"solidity": 0.9954049190553794, "top": 2185, "right": 3170, "bottom": 3800, "left": 755}, {"solidity": 0.9960199725016282, "top": 375, "right": 3180, "bottom": 1980, "left": 775}, {"solidity": 0.9946793283515789, "top": 4035, "right": 3155, "bottom": 5650, "left": 750}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730410f.jpg"} -{"rects": [{"solidity": 0.9954050689901746, "top": 2265, "right": 3135, "bottom": 3870, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700653f.jpg"} -{"rects": [{"solidity": 0.9954054827905366, "top": 395, "right": 3060, "bottom": 2005, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729592f.jpg"} -{"rects": [{"solidity": 0.9954058573062889, "top": 660, "right": 2905, "bottom": 3480, "left": 890}, {"solidity": 0.9438795068486375, "top": 175, "right": 5865, "bottom": 1805, "left": 3855}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730731f.jpg"} -{"rects": [{"solidity": 0.9954059922931128, "top": 1400, "right": 1715, "bottom": 2290, "left": 580}, {"solidity": 0.9938908568201653, "top": 465, "right": 1710, "bottom": 1350, "left": 590}], "shape": {"h": 2560, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727135f.jpg"} -{"rects": [{"solidity": 0.9954060016901376, "top": 610, "right": 1580, "bottom": 2435, "left": 345}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715823f.jpg"} -{"rects": [{"solidity": 0.9954061371841155, "top": 655, "right": 2385, "bottom": 3520, "left": 430}, {"solidity": 0.9956532541330556, "top": 645, "right": 4405, "bottom": 3495, "left": 2455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734701f.jpg"} -{"rects": [{"solidity": 0.9954061728110067, "top": 740, "right": 3395, "bottom": 2720, "left": 355}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717259f.jpg"} -{"rects": [{"solidity": 0.9954064290250507, "top": 2295, "right": 3175, "bottom": 3900, "left": 780}, {"solidity": 0.9945924174997028, "top": 590, "right": 3155, "bottom": 2190, "left": 760}], "shape": {"h": 5995, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/727535f.jpg"} -{"rects": [{"solidity": 0.9954068261820211, "top": 825, "right": 2030, "bottom": 3300, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700050f.jpg"} -{"rects": [{"solidity": 0.9954070042232691, "top": 585, "right": 4800, "bottom": 3355, "left": 1230}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703349f.jpg"} -{"rects": [{"solidity": 0.9954071538985121, "top": 800, "right": 5705, "bottom": 3235, "left": 4075}, {"solidity": 0.9969001144425175, "top": 795, "right": 3870, "bottom": 3225, "left": 2250}, {"solidity": 0.9960727192866301, "top": 805, "right": 2035, "bottom": 3230, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734179f.jpg"} -{"rects": [{"solidity": 0.9954073620480203, "top": 655, "right": 3185, "bottom": 2265, "left": 795}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707664f.jpg"} -{"rects": [{"solidity": 0.9954075635361356, "top": 510, "right": 3150, "bottom": 2600, "left": 1635}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508181.jpg"} -{"rects": [{"solidity": 0.9954076132525214, "top": 725, "right": 3330, "bottom": 2655, "left": 595}, {"solidity": 0.9970526263293727, "top": 3340, "right": 3305, "bottom": 5240, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723266f.jpg"} -{"rects": [{"solidity": 0.9954078243484791, "top": 1485, "right": 3465, "bottom": 5330, "left": 415}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/716889f.jpg"} -{"rects": [{"solidity": 0.9954079086377984, "top": 470, "right": 3150, "bottom": 2095, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718045f.jpg"} -{"rects": [{"solidity": 0.9954079569107536, "top": 585, "right": 3010, "bottom": 2015, "left": 1205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727609f.jpg"} -{"rects": [{"solidity": 0.9954083010713964, "top": 4085, "right": 3090, "bottom": 5735, "left": 660}, {"solidity": 0.9960598490896448, "top": 2210, "right": 3110, "bottom": 3850, "left": 680}, {"solidity": 0.9957017054523528, "top": 345, "right": 3110, "bottom": 1985, "left": 685}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728560f.jpg"} -{"rects": [{"solidity": 0.995408604784064, "top": 590, "right": 3200, "bottom": 2210, "left": 785}, {"solidity": 0.9945403420816914, "top": 2325, "right": 3205, "bottom": 3920, "left": 790}, {"solidity": 0.995928645547617, "top": 4045, "right": 3195, "bottom": 5635, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733119f.jpg"} -{"rects": [{"solidity": 0.9954086467230437, "top": 445, "right": 3215, "bottom": 2060, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715157f.jpg"} -{"rects": [{"solidity": 0.9954090404126101, "top": 2210, "right": 3160, "bottom": 3850, "left": 735}, {"solidity": 0.9952818027123189, "top": 385, "right": 3170, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703129f.jpg"} -{"rects": [{"solidity": 0.9954090755327889, "top": 415, "right": 3155, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720781f.jpg"} -{"rects": [{"solidity": 0.9954092223057037, "top": 2145, "right": 3165, "bottom": 3790, "left": 735}, {"solidity": 0.9964525777934701, "top": 350, "right": 3145, "bottom": 1935, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714350f.jpg"} -{"rects": [{"solidity": 0.9954093466087469, "top": 2310, "right": 3105, "bottom": 3940, "left": 670}, {"solidity": 0.9975751634829939, "top": 425, "right": 3095, "bottom": 2040, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728769f.jpg"} -{"rects": [{"solidity": 0.9954093714818122, "top": 2150, "right": 2890, "bottom": 3580, "left": 1065}, {"solidity": 0.9942439942098773, "top": 485, "right": 2885, "bottom": 1905, "left": 1060}, {"solidity": 0.9930954435879884, "top": 2195, "right": 5180, "bottom": 3610, "left": 3380}, {"solidity": 0.9950793331994376, "top": 510, "right": 5205, "bottom": 1920, "left": 3405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726178f.jpg"} -{"rects": [{"solidity": 0.9954095328615282, "top": 955, "right": 2295, "bottom": 3665, "left": 485}], "shape": {"h": 4430, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/711200f.jpg"} -{"rects": [{"solidity": 0.9954099843338663, "top": 440, "right": 3245, "bottom": 2045, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702137f.jpg"} -{"rects": [{"solidity": 0.9954104083520141, "top": 1140, "right": 3570, "bottom": 5140, "left": 300}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722333f.jpg"} -{"rects": [{"solidity": 0.9954108487400909, "top": 790, "right": 1995, "bottom": 3170, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713378f.jpg"} -{"rects": [{"solidity": 0.9954111201218426, "top": 780, "right": 2010, "bottom": 3175, "left": 390}, {"solidity": 0.9932806739383752, "top": 1125, "right": 3670, "bottom": 2975, "left": 2220}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704834f.jpg"} -{"rects": [{"solidity": 0.9954112627320385, "top": 830, "right": 2105, "bottom": 3250, "left": 485}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712529f.jpg"} -{"rects": [{"solidity": 0.995411331621279, "top": 490, "right": 3475, "bottom": 2085, "left": 855}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706934f.jpg"} -{"rects": [{"solidity": 0.9954113319865407, "top": 415, "right": 3370, "bottom": 2025, "left": 955}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725138f.jpg"} -{"rects": [{"solidity": 0.9954116092033984, "top": 785, "right": 2170, "bottom": 3145, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711445f.jpg"} -{"rects": [{"solidity": 0.9954116935898755, "top": 420, "right": 3225, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714774f.jpg"} -{"rects": [{"solidity": 0.9954123467497142, "top": 660, "right": 2715, "bottom": 2100, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703864f.jpg"} -{"rects": [{"solidity": 0.9954125624715304, "top": 350, "right": 3025, "bottom": 1985, "left": 590}, {"solidity": 0.9961857853903234, "top": 2210, "right": 3000, "bottom": 3830, "left": 590}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729574f.jpg"} -{"rects": [{"solidity": 0.9954128138471158, "top": 420, "right": 3180, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734041f.jpg"} -{"rects": [{"solidity": 0.9954128893528321, "top": 525, "right": 3195, "bottom": 2140, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709709f.jpg"} -{"rects": [{"solidity": 0.9954134680789039, "top": 2235, "right": 3195, "bottom": 3870, "left": 775}, {"solidity": 0.9950605449377242, "top": 360, "right": 3205, "bottom": 1975, "left": 805}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706132f.jpg"} -{"rects": [{"solidity": 0.9954138495973418, "top": 435, "right": 2305, "bottom": 1710, "left": 585}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704603f.jpg"} -{"rects": [{"solidity": 0.9954138624041877, "top": 640, "right": 1645, "bottom": 2435, "left": 440}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716396f.jpg"} -{"rects": [{"solidity": 0.9954140413084289, "top": 820, "right": 2905, "bottom": 5045, "left": 1350}], "shape": {"h": 6140, "w": 4265}, "file": "/usr/local/google/home/danvk/milstein/713374f.jpg"} -{"rects": [{"solidity": 0.9954151272086835, "top": 2290, "right": 3275, "bottom": 3925, "left": 840}, {"solidity": 0.9955246193850105, "top": 395, "right": 3250, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707223f.jpg"} -{"rects": [{"solidity": 0.9954152610441767, "top": 385, "right": 3175, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715567f.jpg"} -{"rects": [{"solidity": 0.9954156262299736, "top": 385, "right": 3295, "bottom": 2005, "left": 875}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727520f.jpg"} -{"rects": [{"solidity": 0.9954159624890403, "top": 300, "right": 3210, "bottom": 1940, "left": 775}, {"solidity": 0.9973235419843433, "top": 3715, "right": 3215, "bottom": 5340, "left": 785}, {"solidity": 0.9961890486972605, "top": 2030, "right": 3220, "bottom": 3665, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731559f.jpg"} -{"rects": [{"solidity": 0.9954159721627125, "top": 780, "right": 5215, "bottom": 3630, "left": 1535}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723219f.jpg"} -{"rects": [{"solidity": 0.9954163176795897, "top": 615, "right": 1535, "bottom": 2425, "left": 320}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716465f.jpg"} -{"rects": [{"solidity": 0.9954163635820122, "top": 790, "right": 2000, "bottom": 3190, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720326f.jpg"} -{"rects": [{"solidity": 0.995416654450927, "top": 350, "right": 3125, "bottom": 1975, "left": 715}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714781f.jpg"} -{"rects": [{"solidity": 0.9954166612909469, "top": 370, "right": 3195, "bottom": 1995, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725636f.jpg"} -{"rects": [{"solidity": 0.9954167174346086, "top": 1365, "right": 3290, "bottom": 4805, "left": 700}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723107f.jpg"} -{"rects": [{"solidity": 0.9954167407495209, "top": 800, "right": 2005, "bottom": 3200, "left": 410}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730408f.jpg"} -{"rects": [{"solidity": 0.9954167929092544, "top": 440, "right": 3145, "bottom": 3835, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714824f.jpg"} -{"rects": [{"solidity": 0.9954168676102655, "top": 250, "right": 3115, "bottom": 1865, "left": 700}, {"solidity": 0.994740287369489, "top": 1945, "right": 2705, "bottom": 4355, "left": 1105}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713308f.jpg"} -{"rects": [{"solidity": 0.9954173116615067, "top": 415, "right": 3170, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724650f.jpg"} -{"rects": [{"solidity": 0.9954179021946858, "top": 405, "right": 3265, "bottom": 2035, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725828f.jpg"} -{"rects": [{"solidity": 0.9954182146407828, "top": 2280, "right": 3155, "bottom": 3890, "left": 755}, {"solidity": 0.9958657228755684, "top": 410, "right": 3175, "bottom": 2005, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728739f.jpg"} -{"rects": [{"solidity": 0.995418526456535, "top": 350, "right": 2900, "bottom": 1940, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719160f.jpg"} -{"rects": [{"solidity": 0.9954186766575752, "top": 375, "right": 3285, "bottom": 1995, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725748f.jpg"} -{"rects": [{"solidity": 0.9954187732129125, "top": 390, "right": 3325, "bottom": 2120, "left": 655}, {"solidity": 0.9978671652611043, "top": 2270, "right": 3280, "bottom": 3995, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725290f.jpg"} -{"rects": [{"solidity": 0.9954188514017722, "top": 370, "right": 3070, "bottom": 3605, "left": 675}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/714457f.jpg"} -{"rects": [{"solidity": 0.9954192501871653, "top": 700, "right": 5955, "bottom": 3475, "left": 4055}, {"solidity": 0.9973451606105161, "top": 695, "right": 4010, "bottom": 3430, "left": 2110}, {"solidity": 0.9950174564466043, "top": 690, "right": 2070, "bottom": 3435, "left": 235}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726367f.jpg"} -{"rects": [{"solidity": 0.995419264537473, "top": 355, "right": 3240, "bottom": 2015, "left": 800}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/727593f.jpg"} -{"rects": [{"solidity": 0.9954193036694129, "top": 2315, "right": 3160, "bottom": 3945, "left": 730}, {"solidity": 0.9965568429498111, "top": 440, "right": 3180, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729825f.jpg"} -{"rects": [{"solidity": 0.9954193456302881, "top": 465, "right": 3200, "bottom": 2060, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712457f.jpg"} -{"rects": [{"solidity": 0.9954198774361174, "top": 585, "right": 3025, "bottom": 2005, "left": 1220}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727604f.jpg"} -{"rects": [{"solidity": 0.9954202641367778, "top": 445, "right": 3145, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717826f.jpg"} -{"rects": [{"solidity": 0.9954206685339355, "top": 695, "right": 2715, "bottom": 2125, "left": 890}, {"solidity": 0.9928780283023934, "top": 2195, "right": 2725, "bottom": 3615, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703891f.jpg"} -{"rects": [{"solidity": 0.9954210325917647, "top": 940, "right": 3720, "bottom": 2745, "left": 2300}, {"solidity": 0.9949358574918648, "top": 945, "right": 1900, "bottom": 2760, "left": 475}, {"solidity": 0.9972857461159838, "top": 945, "right": 5515, "bottom": 2740, "left": 4130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727732f.jpg"} -{"rects": [{"solidity": 0.9954213099731495, "top": 1290, "right": 5670, "bottom": 2935, "left": 3250}, {"solidity": 0.9959685469380921, "top": 1365, "right": 2905, "bottom": 2990, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722809f.jpg"} -{"rects": [{"solidity": 0.9954213365077023, "top": 340, "right": 3155, "bottom": 1970, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702288f.jpg"} -{"rects": [{"solidity": 0.9954216487851615, "top": 440, "right": 3195, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701689f.jpg"} -{"rects": [{"solidity": 0.9954216915056086, "top": 315, "right": 3110, "bottom": 1940, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715716f.jpg"} -{"rects": [{"solidity": 0.9954220357309367, "top": 770, "right": 2720, "bottom": 2175, "left": 910}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727688f.jpg"} -{"rects": [{"solidity": 0.9954220473675955, "top": 795, "right": 2025, "bottom": 3200, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713073f.jpg"} -{"rects": [{"solidity": 0.9954223024123422, "top": 375, "right": 5575, "bottom": 4125, "left": 1020}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711293f.jpg"} -{"rects": [{"solidity": 0.9954223320170917, "top": 2240, "right": 3135, "bottom": 3855, "left": 715}, {"solidity": 0.9953098697077912, "top": 4105, "right": 3130, "bottom": 5725, "left": 705}, {"solidity": 0.996578051996679, "top": 410, "right": 3130, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730601f.jpg"} -{"rects": [{"solidity": 0.9954223914217591, "top": 415, "right": 3210, "bottom": 2015, "left": 810}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/724319f.jpg"} -{"rects": [{"solidity": 0.9954223971774853, "top": 850, "right": 3410, "bottom": 2885, "left": 375}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707979f.jpg"} -{"rects": [{"solidity": 0.9954226426609704, "top": 545, "right": 2645, "bottom": 1960, "left": 815}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703372f.jpg"} -{"rects": [{"solidity": 0.9954228715391076, "top": 2115, "right": 3165, "bottom": 3745, "left": 750}, {"solidity": 0.9962877566618069, "top": 285, "right": 3165, "bottom": 1915, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732511f.jpg"} -{"rects": [{"solidity": 0.9954229502865737, "top": 2480, "right": 2475, "bottom": 3975, "left": 380}, {"solidity": 0.9951075286309214, "top": 645, "right": 2495, "bottom": 2135, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716061f.jpg"} -{"rects": [{"solidity": 0.9954230963579119, "top": 2255, "right": 3165, "bottom": 3875, "left": 755}, {"solidity": 0.9961413657345443, "top": 415, "right": 3150, "bottom": 2025, "left": 750}, {"solidity": 0.9959996601018387, "top": 4115, "right": 3135, "bottom": 5725, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732004f.jpg"} -{"rects": [{"solidity": 0.9954231730965503, "top": 800, "right": 3900, "bottom": 3235, "left": 2260}, {"solidity": 0.9979803039498062, "top": 810, "right": 2125, "bottom": 3230, "left": 505}, {"solidity": 0.9947992937549868, "top": 785, "right": 5660, "bottom": 3215, "left": 4025}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731452f.jpg"} -{"rects": [{"solidity": 0.9954232399340711, "top": 715, "right": 5345, "bottom": 2130, "left": 3525}, {"solidity": 0.9966950765493058, "top": 725, "right": 2590, "bottom": 2135, "left": 775}, {"solidity": 0.9941153085413916, "top": 2195, "right": 2600, "bottom": 3620, "left": 790}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726316f.jpg"} -{"rects": [{"solidity": 0.995423273586171, "top": 390, "right": 3100, "bottom": 2000, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728388f.jpg"} -{"rects": [{"solidity": 0.9954235135119458, "top": 890, "right": 3005, "bottom": 2105, "left": 1205}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509609.jpg"} -{"rects": [{"solidity": 0.9954237930375586, "top": 410, "right": 3195, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733957f.jpg"} -{"rects": [{"solidity": 0.9954241342253961, "top": 2050, "right": 2610, "bottom": 3455, "left": 790}, {"solidity": 0.9962884569520629, "top": 605, "right": 2605, "bottom": 2005, "left": 790}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706893f.jpg"} -{"rects": [{"solidity": 0.9954241975404255, "top": 420, "right": 3205, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719845f.jpg"} -{"rects": [{"solidity": 0.9954243079513379, "top": 530, "right": 3140, "bottom": 2140, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718500f.jpg"} -{"rects": [{"solidity": 0.9954245950320533, "top": 875, "right": 3905, "bottom": 3315, "left": 2255}, {"solidity": 0.9961841078936211, "top": 905, "right": 5740, "bottom": 3325, "left": 4120}, {"solidity": 0.9967912664045261, "top": 885, "right": 2020, "bottom": 3285, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730325f.jpg"} -{"rects": [{"solidity": 0.9954245955727578, "top": 2255, "right": 3215, "bottom": 3870, "left": 810}, {"solidity": 0.9951074564756404, "top": 435, "right": 3220, "bottom": 2025, "left": 830}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710121f.jpg"} -{"rects": [{"solidity": 0.9954246375245226, "top": 410, "right": 3215, "bottom": 2005, "left": 800}, {"solidity": 0.9923321089654584, "top": 2310, "right": 3220, "bottom": 3915, "left": 800}, {"solidity": 0.9931040447621677, "top": 4155, "right": 3200, "bottom": 5745, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701354f.jpg"} -{"rects": [{"solidity": 0.9954247144136255, "top": 375, "right": 3150, "bottom": 1980, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730295f.jpg"} -{"rects": [{"solidity": 0.9954247840285709, "top": 4245, "right": 3165, "bottom": 5870, "left": 725}, {"solidity": 0.9960627375934211, "top": 2480, "right": 3170, "bottom": 4100, "left": 750}, {"solidity": 0.9969564020787126, "top": 500, "right": 3170, "bottom": 2110, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730988f.jpg"} -{"rects": [{"solidity": 0.9954248430045164, "top": 675, "right": 3945, "bottom": 3090, "left": 2330}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721289f.jpg"} -{"rects": [{"solidity": 0.995425067849023, "top": 1170, "right": 3435, "bottom": 5040, "left": 395}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731738f.jpg"} -{"rects": [{"solidity": 0.9954252007209569, "top": 810, "right": 3945, "bottom": 3220, "left": 2330}, {"solidity": 0.9868109345003914, "top": 840, "right": 2110, "bottom": 3190, "left": 560}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718497f.jpg"} -{"rects": [{"solidity": 0.9954253592110683, "top": 685, "right": 2665, "bottom": 2125, "left": 850}, {"solidity": 0.9947431045917372, "top": 2170, "right": 2690, "bottom": 3590, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726458f.jpg"} -{"rects": [{"solidity": 0.995425366117125, "top": 490, "right": 2935, "bottom": 2115, "left": 525}, {"solidity": 0.997267902943318, "top": 2260, "right": 2910, "bottom": 3870, "left": 510}, {"solidity": 0.9940250878413932, "top": 4055, "right": 2875, "bottom": 5635, "left": 520}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717969f.jpg"} -{"rects": [{"solidity": 0.9954254824839827, "top": 425, "right": 3125, "bottom": 2045, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723242f.jpg"} -{"rects": [{"solidity": 0.9954256711978923, "top": 2230, "right": 3220, "bottom": 3855, "left": 800}, {"solidity": 0.9974619371610649, "top": 4115, "right": 3210, "bottom": 5725, "left": 795}, {"solidity": 0.9964140390694658, "top": 360, "right": 3225, "bottom": 1980, "left": 815}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731158f.jpg"} -{"rects": [{"solidity": 0.9954258988987661, "top": 660, "right": 2790, "bottom": 3045, "left": 1185}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/707866f.jpg"} -{"rects": [{"solidity": 0.995425920855546, "top": 260, "right": 3240, "bottom": 1890, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702257f.jpg"} -{"rects": [{"solidity": 0.9954259239207116, "top": 620, "right": 3180, "bottom": 2235, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709976f.jpg"} -{"rects": [{"solidity": 0.9954260898439662, "top": 760, "right": 2010, "bottom": 3170, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730308f.jpg"} -{"rects": [{"solidity": 0.9954261300342058, "top": 390, "right": 3095, "bottom": 2000, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728978f.jpg"} -{"rects": [{"solidity": 0.9954262597111457, "top": 780, "right": 2050, "bottom": 3210, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701720f.jpg"} -{"rects": [{"solidity": 0.9954262971601938, "top": 2215, "right": 3125, "bottom": 3815, "left": 710}, {"solidity": 0.9969167422206657, "top": 4115, "right": 3110, "bottom": 5730, "left": 720}, {"solidity": 0.9957155747584454, "top": 325, "right": 3145, "bottom": 1920, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724339f.jpg"} -{"rects": [{"solidity": 0.9954266841325966, "top": 2255, "right": 3250, "bottom": 3860, "left": 855}, {"solidity": 0.9987130971462015, "top": 410, "right": 3250, "bottom": 2000, "left": 870}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718382f.jpg"} -{"rects": [{"solidity": 0.995426873043678, "top": 565, "right": 3340, "bottom": 2500, "left": 615}, {"solidity": 0.99531709041108, "top": 3110, "right": 3325, "bottom": 5035, "left": 620}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/715189f.jpg"} -{"rects": [{"solidity": 0.9954268994312391, "top": 415, "right": 3195, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715126f.jpg"} -{"rects": [{"solidity": 0.9954271530406202, "top": 1025, "right": 3525, "bottom": 5065, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713890f.jpg"} -{"rects": [{"solidity": 0.9954274023919766, "top": 410, "right": 3165, "bottom": 1980, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727527f.jpg"} -{"rects": [{"solidity": 0.995427585717999, "top": 550, "right": 2795, "bottom": 1805, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703890f.jpg"} -{"rects": [{"solidity": 0.995427751644448, "top": 2110, "right": 2755, "bottom": 3535, "left": 935}, {"solidity": 0.9952736502304034, "top": 665, "right": 2730, "bottom": 2090, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726729f.jpg"} -{"rects": [{"solidity": 0.995427779005969, "top": 410, "right": 3200, "bottom": 1995, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724716f.jpg"} -{"rects": [{"solidity": 0.9954282956542722, "top": 720, "right": 1970, "bottom": 3130, "left": 355}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715605f.jpg"} -{"rects": [{"solidity": 0.9954283696153355, "top": 1170, "right": 3495, "bottom": 5195, "left": 305}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/733520f.jpg"} -{"rects": [{"solidity": 0.9954285456193724, "top": 425, "right": 3240, "bottom": 2045, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701870f.jpg"} -{"rects": [{"solidity": 0.9954287455715972, "top": 2355, "right": 3135, "bottom": 3990, "left": 705}, {"solidity": 0.9982042590291288, "top": 465, "right": 3130, "bottom": 2070, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729497f.jpg"} -{"rects": [{"solidity": 0.995429170506297, "top": 820, "right": 3180, "bottom": 2410, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709078f.jpg"} -{"rects": [{"solidity": 0.9954292725285454, "top": 535, "right": 2520, "bottom": 1980, "left": 475}, {"solidity": 0.9868126388718792, "top": 2435, "right": 2485, "bottom": 3865, "left": 460}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/715836f.jpg"} -{"rects": [{"solidity": 0.9954293228982904, "top": 615, "right": 3240, "bottom": 2260, "left": 800}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700430f.jpg"} -{"rects": [{"solidity": 0.9954293869207181, "top": 2245, "right": 3225, "bottom": 3870, "left": 790}, {"solidity": 0.9959202365940264, "top": 405, "right": 3225, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734015f.jpg"} -{"rects": [{"solidity": 0.9954294303399381, "top": 385, "right": 3120, "bottom": 2040, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728318f.jpg"} -{"rects": [{"solidity": 0.9954296947393503, "top": 765, "right": 2100, "bottom": 3160, "left": 505}, {"solidity": 0.9976252267056784, "top": 810, "right": 5785, "bottom": 3185, "left": 4190}, {"solidity": 0.9956661493753959, "top": 785, "right": 3970, "bottom": 3160, "left": 2375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718518f.jpg"} -{"rects": [{"solidity": 0.9954297259459688, "top": 480, "right": 3155, "bottom": 2095, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728406f.jpg"} -{"rects": [{"solidity": 0.9954297418828312, "top": 1855, "right": 3295, "bottom": 3495, "left": 870}, {"solidity": 0.9960239790619955, "top": 185, "right": 3280, "bottom": 1805, "left": 875}, {"solidity": 0.9959234209018526, "top": 3495, "right": 2885, "bottom": 5910, "left": 1295}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719227f.jpg"} -{"rects": [{"solidity": 0.9954298031841063, "top": 415, "right": 3170, "bottom": 2060, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705412f.jpg"} -{"rects": [{"solidity": 0.995429914884522, "top": 755, "right": 3935, "bottom": 3220, "left": 2275}, {"solidity": 0.9846003723352883, "top": 745, "right": 2040, "bottom": 3155, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717841f.jpg"} -{"rects": [{"solidity": 0.9954299526943451, "top": 2160, "right": 2890, "bottom": 4610, "left": 1230}, {"solidity": 0.9965918782181583, "top": 415, "right": 3235, "bottom": 2050, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734384f.jpg"} -{"rects": [{"solidity": 0.9954300511240641, "top": 650, "right": 2715, "bottom": 2020, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706980f.jpg"} -{"rects": [{"solidity": 0.9954305816680558, "top": 1150, "right": 1905, "bottom": 3000, "left": 495}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703578f.jpg"} -{"rects": [{"solidity": 0.9954306394501146, "top": 2115, "right": 2735, "bottom": 3650, "left": 835}, {"solidity": 0.9951044544617323, "top": 600, "right": 2740, "bottom": 2085, "left": 810}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700369f.jpg"} -{"rects": [{"solidity": 0.9954306951104483, "top": 500, "right": 2885, "bottom": 1780, "left": 1115}, {"solidity": 0.993537021997003, "top": 2135, "right": 2895, "bottom": 3405, "left": 1150}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706211f.jpg"} -{"rects": [{"solidity": 0.995430889777507, "top": 440, "right": 3135, "bottom": 2050, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729190f.jpg"} -{"rects": [{"solidity": 0.9954311969231563, "top": 4060, "right": 3255, "bottom": 5685, "left": 830}, {"solidity": 0.9959395195313636, "top": 2225, "right": 3285, "bottom": 3850, "left": 870}, {"solidity": 0.9968097212720912, "top": 395, "right": 3300, "bottom": 2005, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705501f.jpg"} -{"rects": [{"solidity": 0.9954321342056094, "top": 665, "right": 2655, "bottom": 2045, "left": 835}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702561f.jpg"} -{"rects": [{"solidity": 0.9954322416891502, "top": 635, "right": 2805, "bottom": 2050, "left": 950}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704384f.jpg"} -{"rects": [{"solidity": 0.9954322762436927, "top": 2240, "right": 3175, "bottom": 3895, "left": 720}, {"solidity": 0.9957003303248462, "top": 375, "right": 3200, "bottom": 2005, "left": 760}, {"solidity": 0.9946021180819266, "top": 4115, "right": 3110, "bottom": 5740, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733926f.jpg"} -{"rects": [{"solidity": 0.9954323856387826, "top": 945, "right": 3230, "bottom": 2185, "left": 1400}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509611.jpg"} -{"rects": [{"solidity": 0.9954324855134802, "top": 2345, "right": 3230, "bottom": 3955, "left": 810}, {"solidity": 0.9958773157327269, "top": 600, "right": 3210, "bottom": 2210, "left": 815}, {"solidity": 0.997114860113434, "top": 4130, "right": 3205, "bottom": 5735, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733213f.jpg"} -{"rects": [{"solidity": 0.9954325692694392, "top": 595, "right": 5700, "bottom": 3025, "left": 4090}, {"solidity": 0.9946983787583662, "top": 965, "right": 3905, "bottom": 2785, "left": 2485}, {"solidity": 0.993625871921086, "top": 2045, "right": 2310, "bottom": 3470, "left": 495}, {"solidity": 0.9953454656441952, "top": 500, "right": 2275, "bottom": 1825, "left": 515}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727922f.jpg"} -{"rects": [{"solidity": 0.9954325746149726, "top": 815, "right": 2140, "bottom": 3215, "left": 540}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710904f.jpg"} -{"rects": [{"solidity": 0.9954326499911982, "top": 755, "right": 2050, "bottom": 3190, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707033f.jpg"} -{"rects": [{"solidity": 0.9954332707034107, "top": 480, "right": 3570, "bottom": 2285, "left": 860}], "shape": {"h": 6935, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/711199f.jpg"} -{"rects": [{"solidity": 0.9954335152511283, "top": 635, "right": 4985, "bottom": 3540, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717051f.jpg"} -{"rects": [{"solidity": 0.995433655721159, "top": 850, "right": 2065, "bottom": 3260, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717411f.jpg"} -{"rects": [{"solidity": 0.9954339363701077, "top": 835, "right": 2070, "bottom": 3260, "left": 420}, {"solidity": 0.996752522132338, "top": 855, "right": 3920, "bottom": 3260, "left": 2300}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709387f.jpg"} -{"rects": [{"solidity": 0.9954340311119647, "top": 585, "right": 2660, "bottom": 2045, "left": 825}, {"solidity": 0.9950589750737789, "top": 570, "right": 5205, "bottom": 2005, "left": 3365}, {"solidity": 0.9954359732243763, "top": 2065, "right": 2655, "bottom": 3515, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705270f.jpg"} -{"rects": [{"solidity": 0.9954343645538907, "top": 395, "right": 3095, "bottom": 2010, "left": 665}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728917f.jpg"} -{"rects": [{"solidity": 0.995434372470726, "top": 500, "right": 3305, "bottom": 3885, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714769f.jpg"} -{"rects": [{"solidity": 0.9954345854490861, "top": 960, "right": 2520, "bottom": 3680, "left": 700}], "shape": {"h": 4420, "w": 6915}, "file": "/usr/local/google/home/danvk/milstein/708877f.jpg"} -{"rects": [{"solidity": 0.9954345873665302, "top": 720, "right": 5165, "bottom": 2110, "left": 3345}, {"solidity": 0.9963021262773905, "top": 2180, "right": 2805, "bottom": 3605, "left": 1030}, {"solidity": 0.9953661634544423, "top": 700, "right": 2810, "bottom": 2115, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703610f.jpg"} -{"rects": [{"solidity": 0.9954347691877788, "top": 315, "right": 3120, "bottom": 1950, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721714f.jpg"} -{"rects": [{"solidity": 0.9954349101894344, "top": 2180, "right": 2770, "bottom": 3610, "left": 930}, {"solidity": 0.9943995021779714, "top": 695, "right": 2795, "bottom": 2125, "left": 955}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706257f.jpg"} -{"rects": [{"solidity": 0.9954349505205411, "top": 835, "right": 2075, "bottom": 3235, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717376f.jpg"} -{"rects": [{"solidity": 0.9954352426262538, "top": 400, "right": 3345, "bottom": 2330, "left": 635}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724720f.jpg"} -{"rects": [{"solidity": 0.995435668261605, "top": 2200, "right": 3155, "bottom": 3800, "left": 750}, {"solidity": 0.9969454723750775, "top": 325, "right": 3175, "bottom": 1920, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722541f.jpg"} -{"rects": [{"solidity": 0.9954360346909916, "top": 485, "right": 3105, "bottom": 3630, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723188f.jpg"} -{"rects": [{"solidity": 0.9954363409047565, "top": 455, "right": 4990, "bottom": 3695, "left": 950}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701000f.jpg"} -{"rects": [{"solidity": 0.9954368324348335, "top": 910, "right": 3195, "bottom": 2485, "left": 820}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709185f.jpg"} -{"rects": [{"solidity": 0.9954368800634197, "top": 2085, "right": 2700, "bottom": 3520, "left": 880}, {"solidity": 0.9963182078706807, "top": 585, "right": 2690, "bottom": 2020, "left": 875}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706940f.jpg"} -{"rects": [{"solidity": 0.995436970317628, "top": 995, "right": 3455, "bottom": 4925, "left": 260}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722086f.jpg"} -{"rects": [{"solidity": 0.9954371442083213, "top": 880, "right": 5290, "bottom": 3085, "left": 1100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730034f.jpg"} -{"rects": [{"solidity": 0.9954371646155329, "top": 750, "right": 2050, "bottom": 3185, "left": 440}, {"solidity": 0.9961905007046287, "top": 730, "right": 3910, "bottom": 3150, "left": 2290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720017f.jpg"} -{"rects": [{"solidity": 0.9954373415517594, "top": 2280, "right": 3110, "bottom": 3900, "left": 695}, {"solidity": 0.996427860079214, "top": 415, "right": 3120, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729232f.jpg"} -{"rects": [{"solidity": 0.9954374712322578, "top": 435, "right": 5130, "bottom": 3765, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710227f.jpg"} -{"rects": [{"solidity": 0.9954374746153613, "top": 1030, "right": 4595, "bottom": 3350, "left": 1555}, {"solidity": 0.9958234349010292, "top": 1080, "right": 6010, "bottom": 3295, "left": 4600}, {"solidity": 0.9929606524746948, "top": 1105, "right": 1550, "bottom": 3310, "left": 130}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717560f.jpg"} -{"rects": [{"solidity": 0.9954375805678728, "top": 560, "right": 3125, "bottom": 2135, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711510f.jpg"} -{"rects": [{"solidity": 0.9954376317594168, "top": 390, "right": 3270, "bottom": 2045, "left": 830}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/726918f.jpg"} -{"rects": [{"solidity": 0.995437842401681, "top": 610, "right": 2675, "bottom": 2055, "left": 840}, {"solidity": 0.9966069437502403, "top": 2060, "right": 5165, "bottom": 3490, "left": 3330}, {"solidity": 0.9961375271504871, "top": 2060, "right": 2660, "bottom": 3505, "left": 835}, {"solidity": 0.9944110371166931, "top": 605, "right": 5155, "bottom": 2040, "left": 3325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706031f.jpg"} -{"rects": [{"solidity": 0.9954378589901299, "top": 2260, "right": 3150, "bottom": 3875, "left": 720}, {"solidity": 0.996041094734656, "top": 430, "right": 3155, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732108f.jpg"} -{"rects": [{"solidity": 0.9954378724247418, "top": 2215, "right": 2825, "bottom": 3650, "left": 1000}, {"solidity": 0.9955371263640677, "top": 630, "right": 2810, "bottom": 2035, "left": 970}, {"solidity": 0.9949303360850538, "top": 2245, "right": 4945, "bottom": 3630, "left": 3120}, {"solidity": 0.9979439498445302, "top": 640, "right": 4930, "bottom": 2020, "left": 3125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725729f.jpg"} -{"rects": [{"solidity": 0.9954379415034538, "top": 910, "right": 3305, "bottom": 2865, "left": 470}, {"solidity": 0.9945484701066745, "top": 3300, "right": 3310, "bottom": 5275, "left": 475}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725675f.jpg"} -{"rects": [{"solidity": 0.9954383411908155, "top": 430, "right": 3115, "bottom": 2040, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713175f.jpg"} -{"rects": [{"solidity": 0.9954384432474402, "top": 2295, "right": 2930, "bottom": 3790, "left": 1020}, {"solidity": 0.9921580942355579, "top": 4090, "right": 2915, "bottom": 5605, "left": 995}, {"solidity": 0.9911580667652558, "top": 475, "right": 2935, "bottom": 1980, "left": 1030}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700449f.jpg"} -{"rects": [{"solidity": 0.9954393352385604, "top": 2285, "right": 3115, "bottom": 3885, "left": 715}, {"solidity": 0.9989326029383628, "top": 445, "right": 3105, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733636f.jpg"} -{"rects": [{"solidity": 0.9954395453295444, "top": 820, "right": 3960, "bottom": 3210, "left": 2350}, {"solidity": 0.99569574039175, "top": 830, "right": 2065, "bottom": 3220, "left": 460}, {"solidity": 0.9950868625542375, "top": 820, "right": 5860, "bottom": 3215, "left": 4255}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731710f.jpg"} -{"rects": [{"solidity": 0.9954395563470406, "top": 530, "right": 3165, "bottom": 2100, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725272f.jpg"} -{"rects": [{"solidity": 0.9954395841519108, "top": 1100, "right": 2915, "bottom": 2730, "left": 485}, {"solidity": 0.9961189334158543, "top": 1095, "right": 5500, "bottom": 2720, "left": 3075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707558f.jpg"} -{"rects": [{"solidity": 0.995439667182476, "top": 2280, "right": 2690, "bottom": 3705, "left": 835}, {"solidity": 0.9945750804007143, "top": 635, "right": 2680, "bottom": 2065, "left": 855}, {"solidity": 0.9962608934599985, "top": 2210, "right": 4970, "bottom": 3620, "left": 3135}, {"solidity": 0.9958042720139494, "top": 630, "right": 4970, "bottom": 2035, "left": 3155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726368f.jpg"} -{"rects": [{"solidity": 0.9954399916775514, "top": 1815, "right": 2380, "bottom": 3035, "left": 570}, {"solidity": 0.997705095984803, "top": 360, "right": 2365, "bottom": 1550, "left": 565}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716436f.jpg"} -{"rects": [{"solidity": 0.9954404548750525, "top": 595, "right": 4080, "bottom": 3280, "left": 2080}, {"solidity": 0.9965789168502841, "top": 855, "right": 5850, "bottom": 3270, "left": 4225}, {"solidity": 0.9942963347048168, "top": 905, "right": 1930, "bottom": 3265, "left": 345}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716651f.jpg"} -{"rects": [{"solidity": 0.9954409424042885, "top": 475, "right": 5275, "bottom": 3250, "left": 3290}, {"solidity": 0.993272691919168, "top": 490, "right": 2840, "bottom": 3220, "left": 895}], "shape": {"h": 3865, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/727624f.jpg"} -{"rects": [{"solidity": 0.9954409623783618, "top": 420, "right": 3210, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712469f.jpg"} -{"rects": [{"solidity": 0.9954410534774266, "top": 320, "right": 2050, "bottom": 1330, "left": 525}], "shape": {"h": 3950, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727103f.jpg"} -{"rects": [{"solidity": 0.9954412746376656, "top": 635, "right": 2505, "bottom": 3365, "left": 545}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706471f.jpg"} -{"rects": [{"solidity": 0.9954413470802992, "top": 845, "right": 2015, "bottom": 3255, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717477f.jpg"} -{"rects": [{"solidity": 0.9954416270487391, "top": 835, "right": 2085, "bottom": 3245, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712324f.jpg"} -{"rects": [{"solidity": 0.9954417100701898, "top": 660, "right": 3315, "bottom": 2565, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714056f.jpg"} -{"rects": [{"solidity": 0.9954417451789561, "top": 2730, "right": 2615, "bottom": 5155, "left": 990}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711928f.jpg"} -{"rects": [{"solidity": 0.9954419065273422, "top": 875, "right": 3815, "bottom": 3315, "left": 2160}, {"solidity": 0.9959113365158953, "top": 905, "right": 5660, "bottom": 3335, "left": 4025}, {"solidity": 0.9971894449476083, "top": 875, "right": 1975, "bottom": 3295, "left": 360}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728480f.jpg"} -{"rects": [{"solidity": 0.995441908862702, "top": 1220, "right": 2620, "bottom": 4210, "left": 210}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507537.jpg"} -{"rects": [{"solidity": 0.995441935736703, "top": 585, "right": 5025, "bottom": 3595, "left": 1240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709803f.jpg"} -{"rects": [{"solidity": 0.9954420312988946, "top": 4090, "right": 3220, "bottom": 5725, "left": 775}, {"solidity": 0.9951090900916524, "top": 2215, "right": 3245, "bottom": 3840, "left": 805}, {"solidity": 0.9957845675147023, "top": 385, "right": 3255, "bottom": 2015, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730798f.jpg"} -{"rects": [{"solidity": 0.9954422504733568, "top": 825, "right": 2060, "bottom": 3205, "left": 480}, {"solidity": 0.996675123216022, "top": 1040, "right": 3650, "bottom": 2835, "left": 2385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716649f.jpg"} -{"rects": [{"solidity": 0.9954425771013908, "top": 2255, "right": 3165, "bottom": 3930, "left": 715}, {"solidity": 0.9926693072745854, "top": 415, "right": 3165, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715360f.jpg"} -{"rects": [{"solidity": 0.9954425781237193, "top": 440, "right": 3150, "bottom": 2035, "left": 740}, {"solidity": 0.9966974922716041, "top": 2285, "right": 3155, "bottom": 3885, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734118f.jpg"} -{"rects": [{"solidity": 0.9954427333358936, "top": 2190, "right": 3095, "bottom": 3825, "left": 660}, {"solidity": 0.9977761423783065, "top": 360, "right": 3090, "bottom": 1980, "left": 670}, {"solidity": 0.9965561191647141, "top": 4085, "right": 3085, "bottom": 5705, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729818f.jpg"} -{"rects": [{"solidity": 0.9954427685759231, "top": 1405, "right": 3190, "bottom": 3005, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730947f.jpg"} -{"rects": [{"solidity": 0.9954427877090369, "top": 620, "right": 3815, "bottom": 3030, "left": 2220}, {"solidity": 0.9956722691170532, "top": 865, "right": 1970, "bottom": 2675, "left": 570}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726237f.jpg"} -{"rects": [{"solidity": 0.9954435721358903, "top": 415, "right": 3330, "bottom": 2040, "left": 925}, {"solidity": 0.9949165911946011, "top": 2340, "right": 3000, "bottom": 3750, "left": 1160}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/725829f.jpg"} -{"rects": [{"solidity": 0.9954441347582211, "top": 670, "right": 2735, "bottom": 2080, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726142f.jpg"} -{"rects": [{"solidity": 0.9954441913439636, "top": 510, "right": 5590, "bottom": 4145, "left": 1040}], "shape": {"h": 4405, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/706388f.jpg"} -{"rects": [{"solidity": 0.9954442499742613, "top": 805, "right": 2005, "bottom": 3235, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724083f.jpg"} -{"rects": [{"solidity": 0.995444284367067, "top": 440, "right": 4975, "bottom": 3675, "left": 860}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701160f.jpg"} -{"rects": [{"solidity": 0.9954444111676816, "top": 355, "right": 3200, "bottom": 1965, "left": 845}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711120f.jpg"} -{"rects": [{"solidity": 0.9954445142479743, "top": 385, "right": 3180, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733918f.jpg"} -{"rects": [{"solidity": 0.9954445491674521, "top": 335, "right": 2175, "bottom": 1405, "left": 820}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715810f.jpg"} -{"rects": [{"solidity": 0.9954445498789516, "top": 615, "right": 4880, "bottom": 3585, "left": 1140}], "shape": {"h": 4065, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704229f.jpg"} -{"rects": [{"solidity": 0.995444578497836, "top": 3180, "right": 3295, "bottom": 5075, "left": 500}, {"solidity": 0.9934407836537424, "top": 875, "right": 3285, "bottom": 2770, "left": 500}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727736f.jpg"} -{"rects": [{"solidity": 0.9954446670625934, "top": 420, "right": 3215, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/733689f.jpg"} -{"rects": [{"solidity": 0.9954449966071116, "top": 490, "right": 2180, "bottom": 2590, "left": 680}, {"solidity": 0.9976433204267346, "top": 490, "right": 3895, "bottom": 2575, "left": 2415}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716165f.jpg"} -{"rects": [{"solidity": 0.995445030616437, "top": 540, "right": 3150, "bottom": 2155, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710715f.jpg"} -{"rects": [{"solidity": 0.9954450961110346, "top": 805, "right": 2060, "bottom": 3230, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734645f.jpg"} -{"rects": [{"solidity": 0.9954452703687509, "top": 1215, "right": 3450, "bottom": 4985, "left": 415}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709826f.jpg"} -{"rects": [{"solidity": 0.9954453811869346, "top": 520, "right": 2925, "bottom": 1950, "left": 1115}, {"solidity": 0.9953269881162167, "top": 4155, "right": 2910, "bottom": 5580, "left": 1095}, {"solidity": 0.9971812319499941, "top": 2395, "right": 2920, "bottom": 3795, "left": 1100}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725565f.jpg"} -{"rects": [{"solidity": 0.9954455098416016, "top": 400, "right": 3095, "bottom": 2010, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729864f.jpg"} -{"rects": [{"solidity": 0.9954456485415573, "top": 455, "right": 3015, "bottom": 1880, "left": 1155}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727687f.jpg"} -{"rects": [{"solidity": 0.9954460543921693, "top": 365, "right": 3165, "bottom": 1970, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729415f.jpg"} -{"rects": [{"solidity": 0.9954463280136837, "top": 815, "right": 4050, "bottom": 3230, "left": 2425}, {"solidity": 0.9948507769518427, "top": 830, "right": 2190, "bottom": 3240, "left": 585}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707599f.jpg"} -{"rects": [{"solidity": 0.9954467484643268, "top": 615, "right": 2580, "bottom": 1970, "left": 795}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706688f.jpg"} -{"rects": [{"solidity": 0.9954471793206427, "top": 2190, "right": 3140, "bottom": 3845, "left": 695}, {"solidity": 0.9961354476147319, "top": 4080, "right": 3120, "bottom": 5730, "left": 675}, {"solidity": 0.995765612470418, "top": 375, "right": 3135, "bottom": 1980, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729571f.jpg"} -{"rects": [{"solidity": 0.9954473354847221, "top": 380, "right": 3185, "bottom": 1990, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704666f.jpg"} -{"rects": [{"solidity": 0.9954473488642606, "top": 385, "right": 3280, "bottom": 2015, "left": 850}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733761f.jpg"} -{"rects": [{"solidity": 0.9954480123099816, "top": 480, "right": 3175, "bottom": 2060, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718448f.jpg"} -{"rects": [{"solidity": 0.9954483364349023, "top": 640, "right": 3375, "bottom": 2545, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709391f.jpg"} -{"rects": [{"solidity": 0.9954483632900466, "top": 850, "right": 3875, "bottom": 3290, "left": 2235}, {"solidity": 0.9955941310987901, "top": 855, "right": 2005, "bottom": 3285, "left": 385}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730427f.jpg"} -{"rects": [{"solidity": 0.9954485937507549, "top": 805, "right": 2305, "bottom": 3545, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703852f.jpg"} -{"rects": [{"solidity": 0.9954486995593748, "top": 405, "right": 3165, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704883f.jpg"} -{"rects": [{"solidity": 0.9954488612558329, "top": 400, "right": 3160, "bottom": 2050, "left": 730}, {"solidity": 0.9957975604564308, "top": 2230, "right": 3130, "bottom": 3875, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731080f.jpg"} -{"rects": [{"solidity": 0.9954494802494802, "top": 435, "right": 3170, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702837f.jpg"} -{"rects": [{"solidity": 0.9954499406890461, "top": 870, "right": 3510, "bottom": 2320, "left": 1470}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508199.jpg"} -{"rects": [{"solidity": 0.9954500456899178, "top": 2070, "right": 2755, "bottom": 3525, "left": 920}, {"solidity": 0.9950994536780547, "top": 2095, "right": 5185, "bottom": 3530, "left": 3335}, {"solidity": 0.9947130055235814, "top": 610, "right": 5165, "bottom": 2065, "left": 3350}, {"solidity": 0.99516001580403, "top": 640, "right": 2745, "bottom": 2045, "left": 905}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705308f.jpg"} -{"rects": [{"solidity": 0.9954500693864419, "top": 465, "right": 3165, "bottom": 2065, "left": 735}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728991f.jpg"} -{"rects": [{"solidity": 0.9954506918339598, "top": 2225, "right": 3115, "bottom": 3855, "left": 675}, {"solidity": 0.9956071953434346, "top": 4075, "right": 3095, "bottom": 5710, "left": 650}, {"solidity": 0.9951593566920762, "top": 385, "right": 3185, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733737f.jpg"} -{"rects": [{"solidity": 0.9954510871484383, "top": 2070, "right": 3165, "bottom": 3715, "left": 740}, {"solidity": 0.9958332660932432, "top": 255, "right": 3175, "bottom": 1880, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730968f.jpg"} -{"rects": [{"solidity": 0.9954512808235576, "top": 2250, "right": 3125, "bottom": 3885, "left": 650}, {"solidity": 0.9917579624310515, "top": 390, "right": 3100, "bottom": 2035, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710788f.jpg"} -{"rects": [{"solidity": 0.9954517417696126, "top": 320, "right": 2405, "bottom": 1535, "left": 595}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715909f.jpg"} -{"rects": [{"solidity": 0.9954519884440461, "top": 700, "right": 2670, "bottom": 2145, "left": 820}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702695f.jpg"} -{"rects": [{"solidity": 0.9954522920650337, "top": 675, "right": 2725, "bottom": 2040, "left": 895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707005f.jpg"} -{"rects": [{"solidity": 0.9954524219446776, "top": 455, "right": 3165, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723493f.jpg"} -{"rects": [{"solidity": 0.9954527048108391, "top": 480, "right": 3185, "bottom": 2070, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701511f.jpg"} -{"rects": [{"solidity": 0.9954529430478609, "top": 2070, "right": 3045, "bottom": 5445, "left": 435}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714772f.jpg"} -{"rects": [{"solidity": 0.9954531132725545, "top": 690, "right": 2275, "bottom": 3450, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718554f.jpg"} -{"rects": [{"solidity": 0.9954531169773906, "top": 670, "right": 4945, "bottom": 3580, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723837f.jpg"} -{"rects": [{"solidity": 0.9954536469658035, "top": 980, "right": 3260, "bottom": 2200, "left": 1365}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508705.jpg"} -{"rects": [{"solidity": 0.995453789787332, "top": 355, "right": 3205, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705666f.jpg"} -{"rects": [{"solidity": 0.9954538534992181, "top": 500, "right": 3670, "bottom": 2465, "left": 895}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507891.jpg"} -{"rects": [{"solidity": 0.9954542975654668, "top": 2220, "right": 3355, "bottom": 3885, "left": 910}, {"solidity": 0.9941949057159183, "top": 460, "right": 3160, "bottom": 2000, "left": 1215}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707309f.jpg"} -{"rects": [{"solidity": 0.9954543265758174, "top": 2200, "right": 3085, "bottom": 3825, "left": 645}, {"solidity": 0.9963063531371783, "top": 375, "right": 3085, "bottom": 1995, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726636f.jpg"} -{"rects": [{"solidity": 0.9954543577493512, "top": 385, "right": 3190, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702347f.jpg"} -{"rects": [{"solidity": 0.995454414591937, "top": 2265, "right": 3125, "bottom": 3920, "left": 685}, {"solidity": 0.9956347541466632, "top": 400, "right": 3145, "bottom": 2050, "left": 710}, {"solidity": 0.9960983109835924, "top": 4125, "right": 3105, "bottom": 5755, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730000f.jpg"} -{"rects": [{"solidity": 0.995454435940474, "top": 250, "right": 2065, "bottom": 1280, "left": 530}], "shape": {"h": 3915, "w": 2525}, "file": "/usr/local/google/home/danvk/milstein/727179f.jpg"} -{"rects": [{"solidity": 0.9954544989199317, "top": 675, "right": 2685, "bottom": 2065, "left": 895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733687f.jpg"} -{"rects": [{"solidity": 0.9954545306859792, "top": 700, "right": 2045, "bottom": 3115, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703873f.jpg"} -{"rects": [{"solidity": 0.9954545744932314, "top": 2280, "right": 3040, "bottom": 3915, "left": 615}, {"solidity": 0.9965365330086666, "top": 395, "right": 3045, "bottom": 2025, "left": 625}, {"solidity": 0.9954821129212865, "top": 4110, "right": 3020, "bottom": 5730, "left": 595}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718734f.jpg"} -{"rects": [{"solidity": 0.9954548923100403, "top": 630, "right": 2720, "bottom": 2090, "left": 880}, {"solidity": 0.9967700511694473, "top": 2100, "right": 2735, "bottom": 3510, "left": 900}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718919f.jpg"} -{"rects": [{"solidity": 0.9954550498641822, "top": 540, "right": 2675, "bottom": 1975, "left": 845}, {"solidity": 0.9954976464970325, "top": 2050, "right": 2665, "bottom": 3480, "left": 850}, {"solidity": 0.9961517800459052, "top": 550, "right": 5270, "bottom": 1960, "left": 3435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702983f.jpg"} -{"rects": [{"solidity": 0.995455348554153, "top": 550, "right": 1840, "bottom": 2950, "left": 235}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710658f.jpg"} -{"rects": [{"solidity": 0.9954557461491473, "top": 880, "right": 1920, "bottom": 3085, "left": 530}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722469f.jpg"} -{"rects": [{"solidity": 0.9954561640194391, "top": 495, "right": 3060, "bottom": 1885, "left": 1250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727236f.jpg"} -{"rects": [{"solidity": 0.9954562048047721, "top": 460, "right": 5195, "bottom": 3695, "left": 1185}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730536f.jpg"} -{"rects": [{"solidity": 0.9954563203294168, "top": 445, "right": 3240, "bottom": 2685, "left": 525}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509483.jpg"} -{"rects": [{"solidity": 0.9954567028362875, "top": 405, "right": 3070, "bottom": 2015, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729220f.jpg"} -{"rects": [{"solidity": 0.9954567507735412, "top": 385, "right": 3180, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710801f.jpg"} -{"rects": [{"solidity": 0.995456844828359, "top": 775, "right": 2065, "bottom": 3215, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723109f.jpg"} -{"rects": [{"solidity": 0.9954569247969187, "top": 810, "right": 1995, "bottom": 3230, "left": 370}, {"solidity": 0.993542462461289, "top": 785, "right": 3835, "bottom": 3195, "left": 2215}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718459f.jpg"} -{"rects": [{"solidity": 0.995457061501713, "top": 420, "right": 3005, "bottom": 1830, "left": 1200}, {"solidity": 0.9959407306684797, "top": 2180, "right": 2995, "bottom": 3585, "left": 1195}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726533f.jpg"} -{"rects": [{"solidity": 0.995457340982529, "top": 415, "right": 3180, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724078f.jpg"} -{"rects": [{"solidity": 0.995457398165028, "top": 850, "right": 1925, "bottom": 3250, "left": 345}, {"solidity": 0.9965378107510087, "top": 1000, "right": 3820, "bottom": 3100, "left": 2205}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723378f.jpg"} -{"rects": [{"solidity": 0.9954575013849081, "top": 685, "right": 2710, "bottom": 2125, "left": 875}, {"solidity": 0.996189566624112, "top": 680, "right": 5295, "bottom": 2100, "left": 3470}, {"solidity": 0.9969753567559353, "top": 2190, "right": 2720, "bottom": 3600, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706281f.jpg"} -{"rects": [{"solidity": 0.995457791371434, "top": 760, "right": 3855, "bottom": 3170, "left": 2230}, {"solidity": 0.9958576321392206, "top": 755, "right": 1980, "bottom": 3150, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730362f.jpg"} -{"rects": [{"solidity": 0.9954580457880854, "top": 445, "right": 4955, "bottom": 3360, "left": 1125}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722923f.jpg"} -{"rects": [{"solidity": 0.9954584093981242, "top": 670, "right": 3890, "bottom": 3295, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714019f.jpg"} -{"rects": [{"solidity": 0.9954585145711091, "top": 2280, "right": 2900, "bottom": 3855, "left": 915}, {"solidity": 0.9883708668491672, "top": 435, "right": 2900, "bottom": 2000, "left": 975}, {"solidity": 0.9951034806530448, "top": 4135, "right": 2850, "bottom": 5655, "left": 935}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702061f.jpg"} -{"rects": [{"solidity": 0.9954588264738232, "top": 725, "right": 2030, "bottom": 3135, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716863f.jpg"} -{"rects": [{"solidity": 0.995459253150233, "top": 580, "right": 5225, "bottom": 2025, "left": 3400}, {"solidity": 0.996304130988922, "top": 2055, "right": 2635, "bottom": 3490, "left": 810}, {"solidity": 0.9948524315232828, "top": 2085, "right": 5240, "bottom": 3530, "left": 3415}, {"solidity": 0.997297429620563, "top": 570, "right": 2630, "bottom": 1995, "left": 820}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731971f.jpg"} -{"rects": [{"solidity": 0.9954593671573827, "top": 380, "right": 3230, "bottom": 2015, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702892f.jpg"} -{"rects": [{"solidity": 0.9954593908971919, "top": 715, "right": 3150, "bottom": 2335, "left": 770}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/707871f.jpg"} -{"rects": [{"solidity": 0.995459535405312, "top": 590, "right": 4970, "bottom": 3650, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721218f.jpg"} -{"rects": [{"solidity": 0.9954596537100425, "top": 350, "right": 3155, "bottom": 1990, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718011f.jpg"} -{"rects": [{"solidity": 0.9954597964491543, "top": 385, "right": 3060, "bottom": 2000, "left": 640}, {"solidity": 0.9958364312267658, "top": 2235, "right": 3055, "bottom": 3865, "left": 630}, {"solidity": 0.9971826209451263, "top": 4110, "right": 3025, "bottom": 5715, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728360f.jpg"} -{"rects": [{"solidity": 0.9954598772712732, "top": 2250, "right": 3125, "bottom": 3880, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700320f.jpg"} -{"rects": [{"solidity": 0.9954599791848584, "top": 775, "right": 5735, "bottom": 3195, "left": 4110}, {"solidity": 0.9968753130341776, "top": 760, "right": 3915, "bottom": 3175, "left": 2290}, {"solidity": 0.996221522986821, "top": 760, "right": 2040, "bottom": 3165, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719353f.jpg"} -{"rects": [{"solidity": 0.9954600776616502, "top": 965, "right": 5740, "bottom": 3390, "left": 4115}, {"solidity": 0.9948554074879884, "top": 950, "right": 3885, "bottom": 3370, "left": 2275}, {"solidity": 0.998066642356357, "top": 965, "right": 2030, "bottom": 3245, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734374f.jpg"} -{"rects": [{"solidity": 0.9954601826208208, "top": 375, "right": 3130, "bottom": 2015, "left": 690}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730393f.jpg"} -{"rects": [{"solidity": 0.9954603837593513, "top": 395, "right": 3045, "bottom": 1990, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729676f.jpg"} -{"rects": [{"solidity": 0.9954605172352097, "top": 675, "right": 2770, "bottom": 2040, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705610f.jpg"} -{"rects": [{"solidity": 0.9954608871201065, "top": 450, "right": 3215, "bottom": 2085, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726863f.jpg"} -{"rects": [{"solidity": 0.995461176852002, "top": 465, "right": 3160, "bottom": 1945, "left": 1145}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/701005f.jpg"} -{"rects": [{"solidity": 0.9954612988076197, "top": 515, "right": 4835, "bottom": 3770, "left": 755}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728043f.jpg"} -{"rects": [{"solidity": 0.9954613278895953, "top": 585, "right": 4850, "bottom": 3620, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709912f.jpg"} -{"rects": [{"solidity": 0.995461442179039, "top": 825, "right": 2245, "bottom": 3220, "left": 645}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709785f.jpg"} -{"rects": [{"solidity": 0.9954618347200862, "top": 445, "right": 3195, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734655f.jpg"} -{"rects": [{"solidity": 0.9954618819799802, "top": 855, "right": 4640, "bottom": 3555, "left": 2705}, {"solidity": 0.9954875521178068, "top": 885, "right": 2405, "bottom": 3585, "left": 465}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706373f.jpg"} -{"rects": [{"solidity": 0.9954621070806516, "top": 320, "right": 3870, "bottom": 3130, "left": 310}, {"solidity": 0.9484492259249541, "top": 3115, "right": 3975, "bottom": 5830, "left": 170}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/708394f.jpg"} -{"rects": [{"solidity": 0.9954625302855026, "top": 785, "right": 4800, "bottom": 3410, "left": 1335}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701775f.jpg"} -{"rects": [{"solidity": 0.9954627479642194, "top": 2230, "right": 3220, "bottom": 3845, "left": 800}, {"solidity": 0.9966373351127298, "top": 385, "right": 3190, "bottom": 1985, "left": 795}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/710839f.jpg"} -{"rects": [{"solidity": 0.9954627834496496, "top": 830, "right": 2280, "bottom": 3575, "left": 420}, {"solidity": 0.9940254004971948, "top": 1190, "right": 4165, "bottom": 3270, "left": 2515}, {"solidity": 0.9947442940476865, "top": 1170, "right": 6090, "bottom": 3235, "left": 4450}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/703420f.jpg"} -{"rects": [{"solidity": 0.9954628401623405, "top": 460, "right": 2965, "bottom": 1870, "left": 1160}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725477f.jpg"} -{"rects": [{"solidity": 0.9954629440890052, "top": 710, "right": 2005, "bottom": 3105, "left": 400}, {"solidity": 0.9955700806008366, "top": 705, "right": 3880, "bottom": 3105, "left": 2270}, {"solidity": 0.9949985932509143, "top": 690, "right": 5750, "bottom": 3085, "left": 4155}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718359f.jpg"} -{"rects": [{"solidity": 0.9954629626626799, "top": 750, "right": 2115, "bottom": 3160, "left": 490}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711809f.jpg"} -{"rects": [{"solidity": 0.9954629952550226, "top": 2205, "right": 3230, "bottom": 3850, "left": 805}, {"solidity": 0.9956644705126145, "top": 4140, "right": 3215, "bottom": 5775, "left": 795}, {"solidity": 0.9960002711680565, "top": 335, "right": 3265, "bottom": 1950, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721554f.jpg"} -{"rects": [{"solidity": 0.9954631104517351, "top": 810, "right": 3830, "bottom": 3205, "left": 2240}, {"solidity": 0.9932741717673056, "top": 1025, "right": 1935, "bottom": 2935, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711851f.jpg"} -{"rects": [{"solidity": 0.9954636983823619, "top": 4090, "right": 3070, "bottom": 5745, "left": 620}, {"solidity": 0.9958998374915733, "top": 400, "right": 3060, "bottom": 2000, "left": 640}, {"solidity": 0.9977432761541719, "top": 2270, "right": 3055, "bottom": 3860, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729525f.jpg"} -{"rects": [{"solidity": 0.9954637752844089, "top": 485, "right": 3135, "bottom": 2105, "left": 725}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/729260f.jpg"} -{"rects": [{"solidity": 0.9954647056917943, "top": 905, "right": 3600, "bottom": 3325, "left": 1980}, {"solidity": 0.9964364768553429, "top": 930, "right": 1750, "bottom": 3195, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718142f.jpg"} -{"rects": [{"solidity": 0.9954649730898817, "top": 845, "right": 3935, "bottom": 3290, "left": 2260}, {"solidity": 0.9980569927488759, "top": 850, "right": 2020, "bottom": 3270, "left": 395}, {"solidity": 0.996461938549459, "top": 880, "right": 5750, "bottom": 3300, "left": 4125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719205f.jpg"} -{"rects": [{"solidity": 0.9954650701243716, "top": 745, "right": 2015, "bottom": 3135, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730352f.jpg"} -{"rects": [{"solidity": 0.9954652188096522, "top": 385, "right": 3165, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734542f.jpg"} -{"rects": [{"solidity": 0.9954654275900905, "top": 465, "right": 3235, "bottom": 2075, "left": 840}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721377f.jpg"} -{"rects": [{"solidity": 0.9954655643658068, "top": 2140, "right": 2905, "bottom": 3570, "left": 1065}, {"solidity": 0.9956647608368896, "top": 400, "right": 2885, "bottom": 1840, "left": 1060}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704832f.jpg"} -{"rects": [{"solidity": 0.9954658916492298, "top": 725, "right": 2070, "bottom": 3165, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721204f.jpg"} -{"rects": [{"solidity": 0.9954661789227408, "top": 830, "right": 2035, "bottom": 3250, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706060f.jpg"} -{"rects": [{"solidity": 0.9954665898617512, "top": 1020, "right": 3410, "bottom": 2250, "left": 1600}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508421.jpg"} -{"rects": [{"solidity": 0.9954666122115581, "top": 655, "right": 2725, "bottom": 2055, "left": 940}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726040f.jpg"} -{"rects": [{"solidity": 0.9954666546549639, "top": 830, "right": 2050, "bottom": 3245, "left": 425}, {"solidity": 0.9944536362194067, "top": 840, "right": 5625, "bottom": 3260, "left": 4010}, {"solidity": 0.9956423200754813, "top": 835, "right": 3835, "bottom": 3255, "left": 2230}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731015f.jpg"} -{"rects": [{"solidity": 0.9954667459663241, "top": 485, "right": 5030, "bottom": 3700, "left": 1000}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705973f.jpg"} -{"rects": [{"solidity": 0.9954670396443455, "top": 695, "right": 4955, "bottom": 3705, "left": 1165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709890f.jpg"} -{"rects": [{"solidity": 0.9954674055992585, "top": 935, "right": 4645, "bottom": 2865, "left": 3290}, {"solidity": 0.9941408591668969, "top": 1240, "right": 3025, "bottom": 2605, "left": 1245}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718403f.jpg"} -{"rects": [{"solidity": 0.9954675802394474, "top": 765, "right": 2080, "bottom": 3145, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712575f.jpg"} -{"rects": [{"solidity": 0.9954677232315423, "top": 2285, "right": 3105, "bottom": 3915, "left": 680}, {"solidity": 0.9961799316919989, "top": 400, "right": 3090, "bottom": 2015, "left": 670}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729263f.jpg"} -{"rects": [{"solidity": 0.9954680727178624, "top": 2260, "right": 3205, "bottom": 3885, "left": 780}, {"solidity": 0.9940328211367062, "top": 445, "right": 3205, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702009f.jpg"} -{"rects": [{"solidity": 0.9954681621625074, "top": 335, "right": 3195, "bottom": 1990, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727200f.jpg"} -{"rects": [{"solidity": 0.9954681973226459, "top": 3125, "right": 1845, "bottom": 4990, "left": 440}, {"solidity": 0.9962629890052409, "top": 3150, "right": 3360, "bottom": 5000, "left": 2000}, {"solidity": 0.9980516837928579, "top": 900, "right": 1840, "bottom": 2725, "left": 475}, {"solidity": 0.9969810016568913, "top": 895, "right": 3365, "bottom": 2720, "left": 2005}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707056f.jpg"} -{"rects": [{"solidity": 0.9954683085398334, "top": 435, "right": 3040, "bottom": 1835, "left": 1225}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/704898f.jpg"} -{"rects": [{"solidity": 0.9954685062794475, "top": 810, "right": 2020, "bottom": 3230, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718880f.jpg"} -{"rects": [{"solidity": 0.9954689417933292, "top": 415, "right": 3070, "bottom": 1805, "left": 1270}, {"solidity": 0.992229555062194, "top": 2040, "right": 3055, "bottom": 3500, "left": 1250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727568f.jpg"} -{"rects": [{"solidity": 0.9954689537053606, "top": 920, "right": 5695, "bottom": 3350, "left": 4070}, {"solidity": 0.9970738985941149, "top": 925, "right": 3825, "bottom": 3340, "left": 2210}, {"solidity": 0.9956063868133153, "top": 925, "right": 2005, "bottom": 3335, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731578f.jpg"} -{"rects": [{"solidity": 0.9954690080148214, "top": 700, "right": 2720, "bottom": 2095, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726586f.jpg"} -{"rects": [{"solidity": 0.9954691082313676, "top": 735, "right": 2680, "bottom": 2150, "left": 880}, {"solidity": 0.9908791474445496, "top": 2200, "right": 2670, "bottom": 3600, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726319f.jpg"} -{"rects": [{"solidity": 0.9954691624670027, "top": 840, "right": 2015, "bottom": 3275, "left": 360}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718881f.jpg"} -{"rects": [{"solidity": 0.9954696921092773, "top": 370, "right": 3105, "bottom": 1995, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700536f.jpg"} -{"rects": [{"solidity": 0.9954697155791626, "top": 1240, "right": 3240, "bottom": 2870, "left": 810}, {"solidity": 0.9956188389923329, "top": 3325, "right": 3210, "bottom": 4950, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730708f.jpg"} -{"rects": [{"solidity": 0.9954701675876788, "top": 400, "right": 3220, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702239f.jpg"} -{"rects": [{"solidity": 0.9954702078155817, "top": 610, "right": 3560, "bottom": 2560, "left": 780}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508509.jpg"} -{"rects": [{"solidity": 0.9954705884287843, "top": 420, "right": 3195, "bottom": 2060, "left": 780}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714547f.jpg"} -{"rects": [{"solidity": 0.9954707651895953, "top": 710, "right": 2550, "bottom": 2140, "left": 700}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705711f.jpg"} -{"rects": [{"solidity": 0.9954709614446071, "top": 2255, "right": 3065, "bottom": 3875, "left": 645}, {"solidity": 0.9952609428987833, "top": 400, "right": 3070, "bottom": 2010, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728467f.jpg"} -{"rects": [{"solidity": 0.9954711416935824, "top": 1660, "right": 3240, "bottom": 3310, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730885f.jpg"} -{"rects": [{"solidity": 0.9954711619577604, "top": 680, "right": 3290, "bottom": 2590, "left": 595}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714325f.jpg"} -{"rects": [{"solidity": 0.9954711795545863, "top": 980, "right": 3410, "bottom": 4975, "left": 250}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723739f.jpg"} -{"rects": [{"solidity": 0.9954712788694203, "top": 670, "right": 2795, "bottom": 2130, "left": 955}, {"solidity": 0.9947232667561081, "top": 2175, "right": 2810, "bottom": 3600, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703655f.jpg"} -{"rects": [{"solidity": 0.9954713114101948, "top": 405, "right": 3305, "bottom": 2065, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726474f.jpg"} -{"rects": [{"solidity": 0.9954714264059421, "top": 2245, "right": 3150, "bottom": 3920, "left": 685}, {"solidity": 0.9945993791210201, "top": 380, "right": 3180, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733936f.jpg"} -{"rects": [{"solidity": 0.9954715235914351, "top": 495, "right": 3190, "bottom": 2130, "left": 770}, {"solidity": 0.9960531025175426, "top": 2310, "right": 3175, "bottom": 3915, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717798f.jpg"} -{"rects": [{"solidity": 0.9954718003463879, "top": 390, "right": 3080, "bottom": 2025, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729392f.jpg"} -{"rects": [{"solidity": 0.9954719413179541, "top": 765, "right": 2020, "bottom": 3155, "left": 430}, {"solidity": 0.9961850722241994, "top": 760, "right": 3830, "bottom": 3150, "left": 2240}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713087f.jpg"} -{"rects": [{"solidity": 0.9954721306777475, "top": 695, "right": 3305, "bottom": 2620, "left": 555}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/730486f.jpg"} -{"rects": [{"solidity": 0.9954721480445, "top": 625, "right": 2875, "bottom": 2030, "left": 1040}, {"solidity": 0.9938650306748467, "top": 2250, "right": 5040, "bottom": 3655, "left": 3220}, {"solidity": 0.9940066570520338, "top": 2240, "right": 2865, "bottom": 3635, "left": 1040}, {"solidity": 0.9952349251953331, "top": 610, "right": 5030, "bottom": 2010, "left": 3215}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726416f.jpg"} -{"rects": [{"solidity": 0.9954721841509933, "top": 520, "right": 3230, "bottom": 2125, "left": 830}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709604f.jpg"} -{"rects": [{"solidity": 0.995472651938121, "top": 2280, "right": 3280, "bottom": 3930, "left": 850}, {"solidity": 0.9961914401481899, "top": 425, "right": 3290, "bottom": 2050, "left": 885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712084f.jpg"} -{"rects": [{"solidity": 0.9954729869860528, "top": 740, "right": 2060, "bottom": 3160, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717499f.jpg"} -{"rects": [{"solidity": 0.9954730632597856, "top": 2240, "right": 3140, "bottom": 3870, "left": 735}, {"solidity": 0.9947934001403804, "top": 410, "right": 3130, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728546f.jpg"} -{"rects": [{"solidity": 0.9954730720803748, "top": 805, "right": 3970, "bottom": 3220, "left": 2355}, {"solidity": 0.9953930520448937, "top": 825, "right": 2100, "bottom": 3215, "left": 505}, {"solidity": 0.9955136650788825, "top": 845, "right": 5795, "bottom": 3225, "left": 4220}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731681f.jpg"} -{"rects": [{"solidity": 0.9954735612622261, "top": 450, "right": 3160, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719875f.jpg"} -{"rects": [{"solidity": 0.9954741897633607, "top": 3215, "right": 3300, "bottom": 5095, "left": 520}, {"solidity": 0.9958513146499378, "top": 660, "right": 3280, "bottom": 2540, "left": 545}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726364f.jpg"} -{"rects": [{"solidity": 0.9954743497824768, "top": 655, "right": 2420, "bottom": 3070, "left": 770}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718055f.jpg"} -{"rects": [{"solidity": 0.9954745422248784, "top": 385, "right": 3115, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728414f.jpg"} -{"rects": [{"solidity": 0.9954746768315024, "top": 2245, "right": 3175, "bottom": 3865, "left": 750}, {"solidity": 0.9956231148778457, "top": 410, "right": 3165, "bottom": 2025, "left": 745}, {"solidity": 0.9949256201028502, "top": 4105, "right": 3175, "bottom": 5715, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734187f.jpg"} -{"rects": [{"solidity": 0.9954748625192212, "top": 325, "right": 3130, "bottom": 1980, "left": 710}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/717945f.jpg"} -{"rects": [{"solidity": 0.9954749636675915, "top": 295, "right": 2105, "bottom": 1300, "left": 580}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727150f.jpg"} -{"rects": [{"solidity": 0.9954753334658946, "top": 2470, "right": 2490, "bottom": 3965, "left": 400}, {"solidity": 0.9983154408405664, "top": 670, "right": 2475, "bottom": 2155, "left": 395}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716103f.jpg"} -{"rects": [{"solidity": 0.9954755378057977, "top": 420, "right": 3070, "bottom": 2035, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728358f.jpg"} -{"rects": [{"solidity": 0.9954759076919147, "top": 410, "right": 3205, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730526f.jpg"} -{"rects": [{"solidity": 0.9954761597916852, "top": 835, "right": 3840, "bottom": 3230, "left": 2245}, {"solidity": 0.9958658552718613, "top": 845, "right": 2035, "bottom": 3240, "left": 440}, {"solidity": 0.9968683514604418, "top": 855, "right": 5650, "bottom": 3250, "left": 4060}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726962f.jpg"} -{"rects": [{"solidity": 0.9954763069161668, "top": 415, "right": 3180, "bottom": 2040, "left": 750}, {"solidity": 0.9969474989236939, "top": 4065, "right": 3125, "bottom": 5675, "left": 710}, {"solidity": 0.996782702982635, "top": 2245, "right": 3140, "bottom": 3860, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720139f.jpg"} -{"rects": [{"solidity": 0.9954763869339417, "top": 2240, "right": 3130, "bottom": 3855, "left": 700}, {"solidity": 0.9977246760030033, "top": 395, "right": 3125, "bottom": 1990, "left": 710}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728686f.jpg"} -{"rects": [{"solidity": 0.9954768750319568, "top": 980, "right": 4695, "bottom": 2945, "left": 1440}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719010f.jpg"} -{"rects": [{"solidity": 0.9954773675514783, "top": 400, "right": 3110, "bottom": 2035, "left": 670}, {"solidity": 0.9958252255439589, "top": 2260, "right": 3095, "bottom": 3890, "left": 660}, {"solidity": 0.9979232585249258, "top": 4125, "right": 3075, "bottom": 5735, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726627f.jpg"} -{"rects": [{"solidity": 0.9954775422556978, "top": 750, "right": 3310, "bottom": 2540, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710012f.jpg"} -{"rects": [{"solidity": 0.9954783405735826, "top": 370, "right": 3210, "bottom": 2020, "left": 775}, {"solidity": 0.9952607859923436, "top": 2180, "right": 3180, "bottom": 3830, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724603f.jpg"} -{"rects": [{"solidity": 0.9954785278240736, "top": 390, "right": 3125, "bottom": 2015, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728522f.jpg"} -{"rects": [{"solidity": 0.9954785423437078, "top": 440, "right": 3185, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729999f.jpg"} -{"rects": [{"solidity": 0.9954785624314996, "top": 550, "right": 3140, "bottom": 2150, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721469f.jpg"} -{"rects": [{"solidity": 0.9954786399697282, "top": 830, "right": 2080, "bottom": 3255, "left": 470}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712757f.jpg"} -{"rects": [{"solidity": 0.9954788703387087, "top": 765, "right": 2030, "bottom": 3175, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734003f.jpg"} -{"rects": [{"solidity": 0.9954791691024591, "top": 2250, "right": 3125, "bottom": 3865, "left": 715}, {"solidity": 0.9970752606832869, "top": 425, "right": 3115, "bottom": 2035, "left": 715}, {"solidity": 0.9968476746695617, "top": 4085, "right": 3110, "bottom": 5685, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729739f.jpg"} -{"rects": [{"solidity": 0.9954794241522278, "top": 840, "right": 2020, "bottom": 3245, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720005f.jpg"} -{"rects": [{"solidity": 0.9954795467239731, "top": 2115, "right": 2715, "bottom": 3575, "left": 860}, {"solidity": 0.9971493641086006, "top": 700, "right": 2635, "bottom": 2110, "left": 875}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705858f.jpg"} -{"rects": [{"solidity": 0.9954796856374428, "top": 365, "right": 3920, "bottom": 2805, "left": 915}], "shape": {"h": 3015, "w": 4675}, "file": "/usr/local/google/home/danvk/milstein/715944f.jpg"} -{"rects": [{"solidity": 0.9954799510861563, "top": 830, "right": 3900, "bottom": 3260, "left": 2265}, {"solidity": 0.9930367666433166, "top": 845, "right": 2050, "bottom": 3280, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728514f.jpg"} -{"rects": [{"solidity": 0.9954800458178221, "top": 405, "right": 3220, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700222f.jpg"} -{"rects": [{"solidity": 0.9954800564829882, "top": 380, "right": 3115, "bottom": 1995, "left": 705}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717861f.jpg"} -{"rects": [{"solidity": 0.9954801289040613, "top": 605, "right": 4955, "bottom": 3350, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701854f.jpg"} -{"rects": [{"solidity": 0.9954802407064892, "top": 375, "right": 3335, "bottom": 1995, "left": 915}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725146f.jpg"} -{"rects": [{"solidity": 0.9954803778259929, "top": 815, "right": 2045, "bottom": 3215, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718363f.jpg"} -{"rects": [{"solidity": 0.9954805225099137, "top": 395, "right": 3100, "bottom": 2010, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729443f.jpg"} -{"rects": [{"solidity": 0.9954807316974681, "top": 435, "right": 3125, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712438f.jpg"} -{"rects": [{"solidity": 0.9954809966027802, "top": 790, "right": 3830, "bottom": 3220, "left": 2190}, {"solidity": 0.997579177696114, "top": 775, "right": 1990, "bottom": 3195, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719730f.jpg"} -{"rects": [{"solidity": 0.9954810266626112, "top": 420, "right": 3040, "bottom": 2005, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729510f.jpg"} -{"rects": [{"solidity": 0.9954811084300356, "top": 765, "right": 2000, "bottom": 3145, "left": 410}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714991f.jpg"} -{"rects": [{"solidity": 0.9954812696142693, "top": 750, "right": 1985, "bottom": 3155, "left": 385}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730318f.jpg"} -{"rects": [{"solidity": 0.9954814694934455, "top": 350, "right": 3275, "bottom": 1990, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725015f.jpg"} -{"rects": [{"solidity": 0.9954815680455473, "top": 410, "right": 3130, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707250f.jpg"} -{"rects": [{"solidity": 0.9954816676579498, "top": 375, "right": 3260, "bottom": 2000, "left": 835}, {"solidity": 0.9971183680795959, "top": 2220, "right": 3240, "bottom": 3845, "left": 810}, {"solidity": 0.996967969316886, "top": 4055, "right": 3240, "bottom": 5660, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722256f.jpg"} -{"rects": [{"solidity": 0.9954816734689824, "top": 2215, "right": 5005, "bottom": 3630, "left": 3210}, {"solidity": 0.9936333994755158, "top": 625, "right": 5010, "bottom": 2045, "left": 3205}, {"solidity": 0.9950676628348646, "top": 615, "right": 2870, "bottom": 2030, "left": 1085}, {"solidity": 0.9908952959028832, "top": 2365, "right": 2880, "bottom": 3445, "left": 1080}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728095f.jpg"} -{"rects": [{"solidity": 0.9954817119348303, "top": 715, "right": 2725, "bottom": 3730, "left": 280}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508045.jpg"} -{"rects": [{"solidity": 0.9954825082592365, "top": 2265, "right": 3145, "bottom": 3925, "left": 705}, {"solidity": 0.99592095604806, "top": 4130, "right": 3135, "bottom": 5760, "left": 705}, {"solidity": 0.9950009836774054, "top": 410, "right": 3200, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733704f.jpg"} -{"rects": [{"solidity": 0.9954825315931756, "top": 2305, "right": 3285, "bottom": 3915, "left": 865}, {"solidity": 0.9932831132154909, "top": 415, "right": 3285, "bottom": 2045, "left": 865}, {"solidity": 0.9892512495669817, "top": 4165, "right": 3275, "bottom": 5765, "left": 870}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/701532f.jpg"} -{"rects": [{"solidity": 0.9954827363364831, "top": 395, "right": 3335, "bottom": 2020, "left": 905}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725716f.jpg"} -{"rects": [{"solidity": 0.9954827799822525, "top": 520, "right": 3130, "bottom": 2110, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711989f.jpg"} -{"rects": [{"solidity": 0.9954832530931303, "top": 2250, "right": 3125, "bottom": 3880, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700319f.jpg"} -{"rects": [{"solidity": 0.9954833612857689, "top": 2230, "right": 3145, "bottom": 3855, "left": 715}, {"solidity": 0.9936918310863921, "top": 390, "right": 3130, "bottom": 2000, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734360f.jpg"} -{"rects": [{"solidity": 0.995483609554587, "top": 2290, "right": 3185, "bottom": 3885, "left": 785}, {"solidity": 0.9922306337853029, "top": 450, "right": 3180, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701518f.jpg"} -{"rects": [{"solidity": 0.995484015919887, "top": 2255, "right": 3115, "bottom": 3890, "left": 680}, {"solidity": 0.9960179516447027, "top": 405, "right": 3145, "bottom": 2030, "left": 725}, {"solidity": 0.9955906591164999, "top": 4110, "right": 3075, "bottom": 5730, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733799f.jpg"} -{"rects": [{"solidity": 0.9954846824007697, "top": 430, "right": 3260, "bottom": 2030, "left": 845}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727717f.jpg"} -{"rects": [{"solidity": 0.9954846848012421, "top": 840, "right": 3840, "bottom": 3250, "left": 2225}, {"solidity": 0.9967716912310816, "top": 850, "right": 5680, "bottom": 3260, "left": 4085}, {"solidity": 0.9952787680400758, "top": 855, "right": 1965, "bottom": 3250, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728722f.jpg"} -{"rects": [{"solidity": 0.9954852475241162, "top": 2225, "right": 3300, "bottom": 3845, "left": 875}, {"solidity": 0.9974751234923573, "top": 405, "right": 3310, "bottom": 2015, "left": 895}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726497f.jpg"} -{"rects": [{"solidity": 0.9954852681482064, "top": 2210, "right": 3190, "bottom": 3850, "left": 770}, {"solidity": 0.9950632531015648, "top": 385, "right": 3180, "bottom": 2005, "left": 795}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/734588f.jpg"} -{"rects": [{"solidity": 0.9954853346507879, "top": 760, "right": 2030, "bottom": 3185, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712764f.jpg"} -{"rects": [{"solidity": 0.9954855195911414, "top": 425, "right": 3155, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716706f.jpg"} -{"rects": [{"solidity": 0.9954858560029773, "top": 400, "right": 3210, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703946f.jpg"} -{"rects": [{"solidity": 0.9954859293684635, "top": 2265, "right": 3075, "bottom": 3855, "left": 665}, {"solidity": 0.9952885826653256, "top": 4155, "right": 3085, "bottom": 5755, "left": 700}, {"solidity": 0.9472941588248377, "top": 465, "right": 3075, "bottom": 2015, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730781f.jpg"} -{"rects": [{"solidity": 0.9954860607976675, "top": 665, "right": 3370, "bottom": 2090, "left": 1350}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507572.jpg"} -{"rects": [{"solidity": 0.9954861639045157, "top": 660, "right": 2885, "bottom": 3515, "left": 560}, {"solidity": 0.9900007007035583, "top": 820, "right": 5295, "bottom": 3305, "left": 3340}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708726f.jpg"} -{"rects": [{"solidity": 0.9954861733504978, "top": 825, "right": 2085, "bottom": 3230, "left": 470}, {"solidity": 0.9906749788186563, "top": 1010, "right": 4860, "bottom": 3025, "left": 3650}, {"solidity": 0.9978865702131359, "top": 1040, "right": 3475, "bottom": 3015, "left": 2300}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717536f.jpg"} -{"rects": [{"solidity": 0.9954869596376655, "top": 4160, "right": 3090, "bottom": 5790, "left": 670}, {"solidity": 0.9934223828127547, "top": 2310, "right": 3075, "bottom": 3920, "left": 670}, {"solidity": 0.9917809839167455, "top": 420, "right": 3065, "bottom": 2020, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710358f.jpg"} -{"rects": [{"solidity": 0.995487032596058, "top": 490, "right": 3305, "bottom": 2630, "left": 245}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719827f.jpg"} -{"rects": [{"solidity": 0.9954870420017873, "top": 840, "right": 2105, "bottom": 3270, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708709f.jpg"} -{"rects": [{"solidity": 0.9954871794871795, "top": 665, "right": 2705, "bottom": 2105, "left": 895}, {"solidity": 0.9964357678297405, "top": 2170, "right": 2705, "bottom": 3585, "left": 885}, {"solidity": 0.9927687435258199, "top": 2155, "right": 5155, "bottom": 3565, "left": 3340}, {"solidity": 0.9926174830744723, "top": 705, "right": 5165, "bottom": 2110, "left": 3350}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731985f.jpg"} -{"rects": [{"solidity": 0.9954872015988533, "top": 1125, "right": 3480, "bottom": 5150, "left": 255}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720965f.jpg"} -{"rects": [{"solidity": 0.995487214318135, "top": 850, "right": 3920, "bottom": 3255, "left": 2310}, {"solidity": 0.9973174796379939, "top": 855, "right": 2055, "bottom": 3235, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714679f.jpg"} -{"rects": [{"solidity": 0.9954875724354957, "top": 2415, "right": 3185, "bottom": 4075, "left": 740}, {"solidity": 0.9960495566155521, "top": 450, "right": 3165, "bottom": 2085, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701566f.jpg"} -{"rects": [{"solidity": 0.9954876496384585, "top": 460, "right": 3175, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721161f.jpg"} -{"rects": [{"solidity": 0.9954880021876353, "top": 470, "right": 3075, "bottom": 2090, "left": 670}, {"solidity": 0.9912790373898742, "top": 2340, "right": 2890, "bottom": 3990, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722487f.jpg"} -{"rects": [{"solidity": 0.9954881406695328, "top": 585, "right": 5220, "bottom": 2020, "left": 3370}, {"solidity": 0.9957928333091542, "top": 2050, "right": 2740, "bottom": 3470, "left": 900}, {"solidity": 0.9983684561699143, "top": 630, "right": 2735, "bottom": 2040, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702680f.jpg"} -{"rects": [{"solidity": 0.9954884826570243, "top": 940, "right": 3535, "bottom": 2375, "left": 1415}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508631.jpg"} -{"rects": [{"solidity": 0.9954885367378202, "top": 4080, "right": 3105, "bottom": 5700, "left": 685}, {"solidity": 0.9949858033734815, "top": 2230, "right": 3090, "bottom": 3845, "left": 675}, {"solidity": 0.9956778600723925, "top": 400, "right": 3080, "bottom": 1970, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729350f.jpg"} -{"rects": [{"solidity": 0.9954892017678421, "top": 795, "right": 2025, "bottom": 3200, "left": 415}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704645f.jpg"} -{"rects": [{"solidity": 0.9954894668433989, "top": 370, "right": 3130, "bottom": 2000, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729371f.jpg"} -{"rects": [{"solidity": 0.9954896588559955, "top": 2300, "right": 3075, "bottom": 3705, "left": 1250}, {"solidity": 0.9954505357266753, "top": 530, "right": 3085, "bottom": 1920, "left": 1250}, {"solidity": 0.9921328368762764, "top": 4130, "right": 3055, "bottom": 5540, "left": 1190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734396f.jpg"} -{"rects": [{"solidity": 0.9954899496686038, "top": 360, "right": 3225, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727964f.jpg"} -{"rects": [{"solidity": 0.9954899782569478, "top": 1300, "right": 1545, "bottom": 2720, "left": 440}, {"solidity": 0.9963575487012987, "top": 3315, "right": 4125, "bottom": 4760, "left": 3105}], "shape": {"h": 6020, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/464733.jpg"} -{"rects": [{"solidity": 0.9954903081278749, "top": 515, "right": 4930, "bottom": 3505, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716836f.jpg"} -{"rects": [{"solidity": 0.9954905949982416, "top": 490, "right": 3130, "bottom": 2100, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711735f.jpg"} -{"rects": [{"solidity": 0.9954906048930781, "top": 440, "right": 3150, "bottom": 2080, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705675f.jpg"} -{"rects": [{"solidity": 0.9954908311360922, "top": 2260, "right": 3205, "bottom": 3845, "left": 800}, {"solidity": 0.9975697530802548, "top": 425, "right": 3215, "bottom": 2000, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720035f.jpg"} -{"rects": [{"solidity": 0.9954908418558964, "top": 565, "right": 3485, "bottom": 2545, "left": 725}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508521.jpg"} -{"rects": [{"solidity": 0.9954911060297613, "top": 400, "right": 3060, "bottom": 2035, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728350f.jpg"} -{"rects": [{"solidity": 0.9954913184252193, "top": 650, "right": 4840, "bottom": 3680, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709880f.jpg"} -{"rects": [{"solidity": 0.9954913552057432, "top": 4135, "right": 3095, "bottom": 5770, "left": 670}, {"solidity": 0.9960950011485291, "top": 420, "right": 3120, "bottom": 2045, "left": 700}, {"solidity": 0.9963927582921185, "top": 2295, "right": 3100, "bottom": 3910, "left": 685}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/731776f.jpg"} -{"rects": [{"solidity": 0.9954917568944053, "top": 950, "right": 2725, "bottom": 3980, "left": 290}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516945.jpg"} -{"rects": [{"solidity": 0.9954919269029207, "top": 1235, "right": 2970, "bottom": 2845, "left": 575}, {"solidity": 0.9948668420050062, "top": 1245, "right": 5695, "bottom": 2860, "left": 3325}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722963f.jpg"} -{"rects": [{"solidity": 0.9954922618239201, "top": 815, "right": 2055, "bottom": 3245, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700309f.jpg"} -{"rects": [{"solidity": 0.9954923875049633, "top": 790, "right": 2060, "bottom": 3215, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723064f.jpg"} -{"rects": [{"solidity": 0.9954924771110014, "top": 520, "right": 3060, "bottom": 2135, "left": 660}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714982f.jpg"} -{"rects": [{"solidity": 0.99549248077528, "top": 805, "right": 1980, "bottom": 3185, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722468f.jpg"} -{"rects": [{"solidity": 0.9954927308297211, "top": 915, "right": 5705, "bottom": 3335, "left": 4065}, {"solidity": 0.9952888828614144, "top": 890, "right": 3850, "bottom": 3310, "left": 2230}, {"solidity": 0.9949570949096284, "top": 910, "right": 1985, "bottom": 3275, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709515f.jpg"} -{"rects": [{"solidity": 0.995492783624639, "top": 405, "right": 3165, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731448f.jpg"} -{"rects": [{"solidity": 0.9954930063016796, "top": 650, "right": 2705, "bottom": 2045, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726839f.jpg"} -{"rects": [{"solidity": 0.9954934145703237, "top": 745, "right": 3790, "bottom": 3160, "left": 2165}, {"solidity": 0.997057189908695, "top": 755, "right": 1980, "bottom": 3165, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713449f.jpg"} -{"rects": [{"solidity": 0.995494191350891, "top": 640, "right": 2705, "bottom": 3485, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706025f.jpg"} -{"rects": [{"solidity": 0.9954943947042089, "top": 580, "right": 4970, "bottom": 3565, "left": 1240}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713816f.jpg"} -{"rects": [{"solidity": 0.9954945600129221, "top": 1140, "right": 3295, "bottom": 2360, "left": 1485}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508059.jpg"} -{"rects": [{"solidity": 0.9954949768992426, "top": 2270, "right": 3070, "bottom": 3685, "left": 1285}, {"solidity": 0.9936568068189326, "top": 625, "right": 3065, "bottom": 1935, "left": 1315}, {"solidity": 0.9916209871180924, "top": 4020, "right": 3060, "bottom": 5350, "left": 1280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725266f.jpg"} -{"rects": [{"solidity": 0.9954950305694354, "top": 620, "right": 1580, "bottom": 2390, "left": 400}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715967f.jpg"} -{"rects": [{"solidity": 0.9954950382583393, "top": 640, "right": 2680, "bottom": 2065, "left": 850}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706283f.jpg"} -{"rects": [{"solidity": 0.9954950858465067, "top": 1155, "right": 3610, "bottom": 5280, "left": 355}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721234f.jpg"} -{"rects": [{"solidity": 0.9954951007597961, "top": 2155, "right": 3290, "bottom": 3770, "left": 880}, {"solidity": 0.9945410465658843, "top": 310, "right": 3280, "bottom": 1915, "left": 870}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725843f.jpg"} -{"rects": [{"solidity": 0.9954952925807469, "top": 365, "right": 3190, "bottom": 1980, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725281f.jpg"} -{"rects": [{"solidity": 0.9954953394088499, "top": 595, "right": 2795, "bottom": 2000, "left": 980}, {"solidity": 0.9936388908125006, "top": 2210, "right": 5015, "bottom": 3635, "left": 3210}, {"solidity": 0.9949151197055234, "top": 2240, "right": 2805, "bottom": 3640, "left": 985}, {"solidity": 0.994835842853497, "top": 595, "right": 5025, "bottom": 2020, "left": 3225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726371f.jpg"} -{"rects": [{"solidity": 0.9954953487766109, "top": 800, "right": 4225, "bottom": 3225, "left": 2595}, {"solidity": 0.9910746337649309, "top": 2000, "right": 2540, "bottom": 3435, "left": 705}, {"solidity": 0.9944379955049519, "top": 560, "right": 2545, "bottom": 2005, "left": 740}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734323f.jpg"} -{"rects": [{"solidity": 0.9954959656630641, "top": 370, "right": 3175, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/716774f.jpg"} -{"rects": [{"solidity": 0.9954965661579883, "top": 510, "right": 3935, "bottom": 2535, "left": 930}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508909.jpg"} -{"rects": [{"solidity": 0.9954967152131726, "top": 410, "right": 3260, "bottom": 2035, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728041f.jpg"} -{"rects": [{"solidity": 0.99549716026102, "top": 620, "right": 4910, "bottom": 3625, "left": 1140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709891f.jpg"} -{"rects": [{"solidity": 0.9954973420216376, "top": 770, "right": 1950, "bottom": 3175, "left": 340}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710959f.jpg"} -{"rects": [{"solidity": 0.995497465159472, "top": 710, "right": 5150, "bottom": 3555, "left": 3100}, {"solidity": 0.9959500603182506, "top": 795, "right": 2430, "bottom": 3235, "left": 785}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723423f.jpg"} -{"rects": [{"solidity": 0.9954977616986096, "top": 2130, "right": 3090, "bottom": 3795, "left": 650}, {"solidity": 0.9922876520615782, "top": 400, "right": 2980, "bottom": 1890, "left": 965}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723126f.jpg"} -{"rects": [{"solidity": 0.9954984249568133, "top": 850, "right": 2040, "bottom": 3220, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712818f.jpg"} -{"rects": [{"solidity": 0.9954984457242981, "top": 450, "right": 3270, "bottom": 3990, "left": 690}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713861f.jpg"} -{"rects": [{"solidity": 0.9954984748121897, "top": 2430, "right": 2960, "bottom": 3850, "left": 1155}, {"solidity": 0.9915970537818198, "top": 575, "right": 3000, "bottom": 1985, "left": 1165}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727803f.jpg"} -{"rects": [{"solidity": 0.9954986043930018, "top": 1215, "right": 3295, "bottom": 5505, "left": 1255}], "shape": {"h": 6900, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708844f.jpg"} -{"rects": [{"solidity": 0.9954988002140073, "top": 2245, "right": 3190, "bottom": 3885, "left": 755}, {"solidity": 0.9967437935610208, "top": 360, "right": 3190, "bottom": 1980, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731888f.jpg"} -{"rects": [{"solidity": 0.9954988011942639, "top": 530, "right": 3340, "bottom": 2460, "left": 610}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722037f.jpg"} -{"rects": [{"solidity": 0.9954992922915441, "top": 1490, "right": 1935, "bottom": 2525, "left": 390}, {"solidity": 0.9955206897656976, "top": 365, "right": 1910, "bottom": 1390, "left": 370}], "shape": {"h": 3950, "w": 2565}, "file": "/usr/local/google/home/danvk/milstein/731484f.jpg"} -{"rects": [{"solidity": 0.9954993519258086, "top": 490, "right": 3085, "bottom": 1925, "left": 1235}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726757f.jpg"} -{"rects": [{"solidity": 0.9954995846017148, "top": 680, "right": 1880, "bottom": 3115, "left": 240}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719049f.jpg"} -{"rects": [{"solidity": 0.9954995853587384, "top": 710, "right": 3885, "bottom": 3115, "left": 2280}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720959f.jpg"} -{"rects": [{"solidity": 0.9954998266648352, "top": 820, "right": 2030, "bottom": 3215, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721963f.jpg"} -{"rects": [{"solidity": 0.9955000223586755, "top": 3695, "right": 3405, "bottom": 5645, "left": 645}, {"solidity": 0.9942603691430137, "top": 405, "right": 2980, "bottom": 1805, "left": 1180}, {"solidity": 0.9953062649386655, "top": 2050, "right": 2950, "bottom": 3440, "left": 1155}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728168f.jpg"} -{"rects": [{"solidity": 0.9955001141042495, "top": 2225, "right": 3195, "bottom": 3865, "left": 765}, {"solidity": 0.9964710174641048, "top": 395, "right": 3205, "bottom": 2015, "left": 785}, {"solidity": 0.9961938175427467, "top": 4085, "right": 3190, "bottom": 5700, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709558f.jpg"} -{"rects": [{"solidity": 0.9955004360810846, "top": 395, "right": 3030, "bottom": 1990, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729716f.jpg"} -{"rects": [{"solidity": 0.9955004536236525, "top": 765, "right": 1975, "bottom": 3150, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704377f.jpg"} -{"rects": [{"solidity": 0.9955005842452569, "top": 670, "right": 2725, "bottom": 2105, "left": 900}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706121f.jpg"} -{"rects": [{"solidity": 0.9955006370316073, "top": 1000, "right": 1995, "bottom": 3335, "left": 440}, {"solidity": 0.9968418520559, "top": 1000, "right": 3575, "bottom": 3250, "left": 2130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710906f.jpg"} -{"rects": [{"solidity": 0.99550065972234, "top": 355, "right": 3805, "bottom": 2815, "left": 775}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716340f.jpg"} -{"rects": [{"solidity": 0.9955006873042979, "top": 2175, "right": 3170, "bottom": 3780, "left": 765}, {"solidity": 0.9906980482398626, "top": 370, "right": 2970, "bottom": 1885, "left": 990}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731107f.jpg"} -{"rects": [{"solidity": 0.9955008180330849, "top": 775, "right": 2020, "bottom": 3190, "left": 385}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711956f.jpg"} -{"rects": [{"solidity": 0.9955008751158242, "top": 530, "right": 3500, "bottom": 2345, "left": 795}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711309f.jpg"} -{"rects": [{"solidity": 0.995501090893624, "top": 435, "right": 5125, "bottom": 3655, "left": 1075}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708462f.jpg"} -{"rects": [{"solidity": 0.9955013576260021, "top": 4075, "right": 3055, "bottom": 5710, "left": 620}, {"solidity": 0.9970407016839509, "top": 2250, "right": 3060, "bottom": 3860, "left": 645}, {"solidity": 0.99595326526819, "top": 425, "right": 3070, "bottom": 2030, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730599f.jpg"} -{"rects": [{"solidity": 0.9955014467790816, "top": 760, "right": 2050, "bottom": 3170, "left": 430}, {"solidity": 0.9952605242800208, "top": 780, "right": 3870, "bottom": 3185, "left": 2245}, {"solidity": 0.9944878572851391, "top": 830, "right": 5710, "bottom": 3235, "left": 4090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714295f.jpg"} -{"rects": [{"solidity": 0.9955016033570891, "top": 415, "right": 3185, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707118f.jpg"} -{"rects": [{"solidity": 0.9955016788797599, "top": 445, "right": 3130, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719508f.jpg"} -{"rects": [{"solidity": 0.9955017379648772, "top": 425, "right": 3145, "bottom": 2045, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729838f.jpg"} -{"rects": [{"solidity": 0.9955017394089187, "top": 145, "right": 3250, "bottom": 2055, "left": 535}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726094f.jpg"} -{"rects": [{"solidity": 0.9955017545512352, "top": 560, "right": 3575, "bottom": 2355, "left": 880}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711422f.jpg"} -{"rects": [{"solidity": 0.9955019443525323, "top": 435, "right": 3180, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710744f.jpg"} -{"rects": [{"solidity": 0.9955023223303, "top": 750, "right": 2030, "bottom": 3155, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719658f.jpg"} -{"rects": [{"solidity": 0.9955023674351633, "top": 755, "right": 3910, "bottom": 3160, "left": 2300}, {"solidity": 0.9977116628360682, "top": 740, "right": 2010, "bottom": 3125, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711141f.jpg"} -{"rects": [{"solidity": 0.9955024278501025, "top": 415, "right": 3255, "bottom": 2020, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701621f.jpg"} -{"rects": [{"solidity": 0.9955024623852846, "top": 775, "right": 2020, "bottom": 3155, "left": 415}], "shape": {"h": 3825, "w": 6035}, "file": "/usr/local/google/home/danvk/milstein/716431f.jpg"} -{"rects": [{"solidity": 0.9955025087718735, "top": 4070, "right": 3220, "bottom": 5705, "left": 785}, {"solidity": 0.9992446252178966, "top": 2235, "right": 3215, "bottom": 3845, "left": 795}, {"solidity": 0.9982415272109064, "top": 370, "right": 3230, "bottom": 1975, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703188f.jpg"} -{"rects": [{"solidity": 0.9955026191950266, "top": 390, "right": 3220, "bottom": 2025, "left": 780}, {"solidity": 0.9945809552807344, "top": 2250, "right": 3155, "bottom": 3875, "left": 730}, {"solidity": 0.9952414585482868, "top": 4110, "right": 3135, "bottom": 5720, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706152f.jpg"} -{"rects": [{"solidity": 0.9955027491259375, "top": 665, "right": 2745, "bottom": 2095, "left": 910}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707470f.jpg"} -{"rects": [{"solidity": 0.9955031975765736, "top": 420, "right": 3065, "bottom": 2010, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728805f.jpg"} -{"rects": [{"solidity": 0.9955035836037809, "top": 525, "right": 2695, "bottom": 3645, "left": 225}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509909.jpg"} -{"rects": [{"solidity": 0.9955035855029395, "top": 365, "right": 3205, "bottom": 1985, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702077f.jpg"} -{"rects": [{"solidity": 0.9955037890916854, "top": 795, "right": 2065, "bottom": 3175, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712412f.jpg"} -{"rects": [{"solidity": 0.9955038021871251, "top": 495, "right": 3065, "bottom": 1900, "left": 1250}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726465f.jpg"} -{"rects": [{"solidity": 0.9955038183774187, "top": 2285, "right": 2770, "bottom": 3705, "left": 925}, {"solidity": 0.9946970914349992, "top": 620, "right": 2755, "bottom": 2050, "left": 930}, {"solidity": 0.9944006781013163, "top": 2245, "right": 4960, "bottom": 3660, "left": 3165}, {"solidity": 0.9968852332207411, "top": 615, "right": 4935, "bottom": 2005, "left": 3165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726369f.jpg"} -{"rects": [{"solidity": 0.9955040227165168, "top": 830, "right": 2085, "bottom": 3155, "left": 480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710373f.jpg"} -{"rects": [{"solidity": 0.9955040871934605, "top": 415, "right": 3185, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710956f.jpg"} -{"rects": [{"solidity": 0.9955040976367351, "top": 500, "right": 3155, "bottom": 2100, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721612f.jpg"} -{"rects": [{"solidity": 0.9955041433996342, "top": 415, "right": 3205, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701191f.jpg"} -{"rects": [{"solidity": 0.9955042747543089, "top": 355, "right": 3190, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702301f.jpg"} -{"rects": [{"solidity": 0.9955043515571466, "top": 495, "right": 3195, "bottom": 2120, "left": 775}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/700962f.jpg"} -{"rects": [{"solidity": 0.9955045646302538, "top": 545, "right": 3275, "bottom": 2560, "left": 460}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719799f.jpg"} -{"rects": [{"solidity": 0.9955048297096978, "top": 2275, "right": 3215, "bottom": 3890, "left": 805}, {"solidity": 0.9965702162000338, "top": 430, "right": 3225, "bottom": 2040, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711772f.jpg"} -{"rects": [{"solidity": 0.9955048353654015, "top": 2270, "right": 3155, "bottom": 3900, "left": 735}, {"solidity": 0.9908748180636461, "top": 4110, "right": 3155, "bottom": 5745, "left": 725}, {"solidity": 0.9978360726686142, "top": 420, "right": 3150, "bottom": 2020, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711987f.jpg"} -{"rects": [{"solidity": 0.9955048488305761, "top": 765, "right": 2010, "bottom": 3175, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717984f.jpg"} -{"rects": [{"solidity": 0.9955052329106583, "top": 385, "right": 3210, "bottom": 1985, "left": 810}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723745f.jpg"} -{"rects": [{"solidity": 0.9955054537481958, "top": 385, "right": 2805, "bottom": 1770, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721068f.jpg"} -{"rects": [{"solidity": 0.9955054858616411, "top": 1315, "right": 2400, "bottom": 4385, "left": 380}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508805.jpg"} -{"rects": [{"solidity": 0.9955055732879913, "top": 625, "right": 2740, "bottom": 2030, "left": 925}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704579f.jpg"} -{"rects": [{"solidity": 0.9955056618889898, "top": 860, "right": 2035, "bottom": 3260, "left": 420}, {"solidity": 0.9948247741376538, "top": 865, "right": 3920, "bottom": 3255, "left": 2305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709399f.jpg"} -{"rects": [{"solidity": 0.9955058543418707, "top": 660, "right": 2765, "bottom": 2090, "left": 915}, {"solidity": 0.9942517134315733, "top": 2105, "right": 2790, "bottom": 3535, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725347f.jpg"} -{"rects": [{"solidity": 0.995505941960332, "top": 845, "right": 3680, "bottom": 2300, "left": 1540}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507899.jpg"} -{"rects": [{"solidity": 0.9955063104831291, "top": 3310, "right": 3320, "bottom": 5230, "left": 455}, {"solidity": 0.9960393251836036, "top": 900, "right": 3335, "bottom": 2805, "left": 495}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727508f.jpg"} -{"rects": [{"solidity": 0.9955063455063455, "top": 4060, "right": 3350, "bottom": 5680, "left": 920}, {"solidity": 0.9961795197204687, "top": 2160, "right": 3360, "bottom": 3750, "left": 950}, {"solidity": 0.9946204037919956, "top": 465, "right": 3100, "bottom": 1860, "left": 1270}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/731338f.jpg"} -{"rects": [{"solidity": 0.9955063887177221, "top": 330, "right": 3285, "bottom": 2050, "left": 745}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728113f.jpg"} -{"rects": [{"solidity": 0.995506429287508, "top": 465, "right": 3050, "bottom": 2105, "left": 640}, {"solidity": 0.9964889437356472, "top": 2340, "right": 3045, "bottom": 3965, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719922f.jpg"} -{"rects": [{"solidity": 0.995506532644353, "top": 515, "right": 3605, "bottom": 3600, "left": 550}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704523f.jpg"} -{"rects": [{"solidity": 0.9955069543096898, "top": 4135, "right": 3175, "bottom": 5730, "left": 780}, {"solidity": 0.9967948611383562, "top": 2295, "right": 3190, "bottom": 3875, "left": 790}, {"solidity": 0.9974300352118552, "top": 435, "right": 3180, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716653f.jpg"} -{"rects": [{"solidity": 0.995507378522171, "top": 420, "right": 2945, "bottom": 1935, "left": 1050}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/700820f.jpg"} -{"rects": [{"solidity": 0.9955075542809785, "top": 415, "right": 3225, "bottom": 1995, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725600f.jpg"} -{"rects": [{"solidity": 0.995507671712491, "top": 395, "right": 3325, "bottom": 2035, "left": 895}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724989f.jpg"} -{"rects": [{"solidity": 0.9955080108777563, "top": 395, "right": 3145, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703029f.jpg"} -{"rects": [{"solidity": 0.995508056027852, "top": 410, "right": 3220, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725827f.jpg"} -{"rects": [{"solidity": 0.9955084503805631, "top": 1190, "right": 2550, "bottom": 2830, "left": 335}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722867f.jpg"} -{"rects": [{"solidity": 0.9955086989409985, "top": 625, "right": 1535, "bottom": 2420, "left": 345}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716392f.jpg"} -{"rects": [{"solidity": 0.995508880934693, "top": 2320, "right": 3075, "bottom": 3760, "left": 1250}, {"solidity": 0.9952916735430885, "top": 525, "right": 3060, "bottom": 1960, "left": 1240}, {"solidity": 0.9957311712415747, "top": 4130, "right": 3055, "bottom": 5560, "left": 1245}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727881f.jpg"} -{"rects": [{"solidity": 0.995508936983904, "top": 740, "right": 4300, "bottom": 3440, "left": 2270}, {"solidity": 0.9955531978990662, "top": 765, "right": 2090, "bottom": 3170, "left": 480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710386f.jpg"} -{"rects": [{"solidity": 0.9955091085157961, "top": 350, "right": 3185, "bottom": 1980, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718873f.jpg"} -{"rects": [{"solidity": 0.9955099752171177, "top": 1055, "right": 1975, "bottom": 3005, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716665f.jpg"} -{"rects": [{"solidity": 0.9955100901228475, "top": 645, "right": 2030, "bottom": 3065, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725169f.jpg"} -{"rects": [{"solidity": 0.9955101076285204, "top": 445, "right": 3325, "bottom": 2385, "left": 595}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710931f.jpg"} -{"rects": [{"solidity": 0.9955102881061846, "top": 515, "right": 2880, "bottom": 1920, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728000f.jpg"} -{"rects": [{"solidity": 0.9955103154282784, "top": 765, "right": 1995, "bottom": 3170, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718882f.jpg"} -{"rects": [{"solidity": 0.9955103243529259, "top": 2170, "right": 3080, "bottom": 3840, "left": 625}, {"solidity": 0.9960268732521136, "top": 330, "right": 3090, "bottom": 1970, "left": 655}, {"solidity": 0.9954292368015594, "top": 4055, "right": 3030, "bottom": 5705, "left": 600}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712386f.jpg"} -{"rects": [{"solidity": 0.9955106767395316, "top": 485, "right": 5710, "bottom": 2110, "left": 3310}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705536f.jpg"} -{"rects": [{"solidity": 0.9955107116280891, "top": 2315, "right": 3020, "bottom": 3730, "left": 1185}, {"solidity": 0.9950460886281856, "top": 540, "right": 3040, "bottom": 1970, "left": 1225}, {"solidity": 0.9953779944774745, "top": 4075, "right": 2985, "bottom": 5470, "left": 1165}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734349f.jpg"} -{"rects": [{"solidity": 0.9955107233150793, "top": 2215, "right": 3205, "bottom": 3855, "left": 765}, {"solidity": 0.9990147110469427, "top": 395, "right": 3210, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728174f.jpg"} -{"rects": [{"solidity": 0.9955109763867704, "top": 750, "right": 2065, "bottom": 3175, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713467f.jpg"} -{"rects": [{"solidity": 0.9955110847246558, "top": 515, "right": 3390, "bottom": 2455, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724586f.jpg"} -{"rects": [{"solidity": 0.9955111041108836, "top": 405, "right": 3265, "bottom": 2015, "left": 850}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726791f.jpg"} -{"rects": [{"solidity": 0.9955111079018942, "top": 3180, "right": 3270, "bottom": 5105, "left": 545}, {"solidity": 0.994517037491825, "top": 730, "right": 3270, "bottom": 2550, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713161f.jpg"} -{"rects": [{"solidity": 0.9955111142619602, "top": 805, "right": 3875, "bottom": 3245, "left": 2245}, {"solidity": 0.9959517316872535, "top": 795, "right": 5655, "bottom": 3225, "left": 4030}, {"solidity": 0.9950747730133996, "top": 835, "right": 2120, "bottom": 3265, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730345f.jpg"} -{"rects": [{"solidity": 0.9955113130290467, "top": 390, "right": 5710, "bottom": 2050, "left": 3285}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705916f.jpg"} -{"rects": [{"solidity": 0.9955118076750705, "top": 2165, "right": 3175, "bottom": 3785, "left": 785}, {"solidity": 0.9953570137679493, "top": 4005, "right": 3145, "bottom": 5640, "left": 775}, {"solidity": 0.9972081936881473, "top": 340, "right": 3190, "bottom": 1945, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730654f.jpg"} -{"rects": [{"solidity": 0.995511871100938, "top": 795, "right": 3885, "bottom": 3225, "left": 2260}, {"solidity": 0.9944817626994603, "top": 795, "right": 2080, "bottom": 3200, "left": 470}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733742f.jpg"} -{"rects": [{"solidity": 0.9955122991052646, "top": 760, "right": 2075, "bottom": 3150, "left": 375}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717483f.jpg"} -{"rects": [{"solidity": 0.9955123338282017, "top": 630, "right": 2740, "bottom": 2060, "left": 915}, {"solidity": 0.996963582390718, "top": 2120, "right": 2735, "bottom": 3550, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702601f.jpg"} -{"rects": [{"solidity": 0.9955123410620793, "top": 435, "right": 2890, "bottom": 1845, "left": 1085}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717357f.jpg"} -{"rects": [{"solidity": 0.9955129978320864, "top": 760, "right": 2045, "bottom": 3180, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724492f.jpg"} -{"rects": [{"solidity": 0.9955134484142915, "top": 2115, "right": 3125, "bottom": 3750, "left": 695}, {"solidity": 0.9940795207517306, "top": 445, "right": 3090, "bottom": 1860, "left": 1280}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726503f.jpg"} -{"rects": [{"solidity": 0.9955134596211366, "top": 2545, "right": 2915, "bottom": 3975, "left": 1090}, {"solidity": 0.9949143416544297, "top": 645, "right": 2910, "bottom": 2075, "left": 1090}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702869f.jpg"} -{"rects": [{"solidity": 0.9955136408337312, "top": 1035, "right": 3325, "bottom": 5050, "left": 485}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721332f.jpg"} -{"rects": [{"solidity": 0.9955136774989716, "top": 880, "right": 2010, "bottom": 3315, "left": 365}, {"solidity": 0.9963283717027704, "top": 915, "right": 3870, "bottom": 3325, "left": 2250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729597f.jpg"} -{"rects": [{"solidity": 0.9955139004537739, "top": 435, "right": 3225, "bottom": 2060, "left": 805}, {"solidity": 0.9967666059730312, "top": 2320, "right": 3205, "bottom": 3935, "left": 795}, {"solidity": 0.9961814044488428, "top": 4160, "right": 3190, "bottom": 5770, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726801f.jpg"} -{"rects": [{"solidity": 0.9955140171711873, "top": 2430, "right": 2515, "bottom": 3920, "left": 420}, {"solidity": 0.9967460048850704, "top": 665, "right": 2525, "bottom": 2145, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716169f.jpg"} -{"rects": [{"solidity": 0.9955141129515488, "top": 435, "right": 5085, "bottom": 3670, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723179f.jpg"} -{"rects": [{"solidity": 0.9955141188088981, "top": 430, "right": 3285, "bottom": 2365, "left": 555}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711716f.jpg"} -{"rects": [{"solidity": 0.9955141277984093, "top": 205, "right": 5115, "bottom": 3615, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731074f.jpg"} -{"rects": [{"solidity": 0.9955141875109762, "top": 660, "right": 2625, "bottom": 2070, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704615f.jpg"} -{"rects": [{"solidity": 0.9955142613238525, "top": 2245, "right": 3185, "bottom": 3900, "left": 735}, {"solidity": 0.9974022039366602, "top": 410, "right": 3205, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730009f.jpg"} -{"rects": [{"solidity": 0.9955144478760732, "top": 810, "right": 3865, "bottom": 3230, "left": 2245}, {"solidity": 0.9954202376945185, "top": 830, "right": 5695, "bottom": 3250, "left": 4075}, {"solidity": 0.9962041647217468, "top": 800, "right": 2045, "bottom": 3215, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713408f.jpg"} -{"rects": [{"solidity": 0.9955144552291239, "top": 2170, "right": 3070, "bottom": 3805, "left": 655}, {"solidity": 0.9963099510068983, "top": 355, "right": 3085, "bottom": 1955, "left": 675}, {"solidity": 0.9941600605505319, "top": 4130, "right": 3000, "bottom": 5570, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731586f.jpg"} -{"rects": [{"solidity": 0.9955144752112131, "top": 3180, "right": 3295, "bottom": 5590, "left": 615}, {"solidity": 0.9957473152093121, "top": 445, "right": 3295, "bottom": 2840, "left": 630}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718941f.jpg"} -{"rects": [{"solidity": 0.9955144855730611, "top": 635, "right": 1450, "bottom": 2420, "left": 240}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716499f.jpg"} -{"rects": [{"solidity": 0.9955147726531575, "top": 580, "right": 2990, "bottom": 1990, "left": 1190}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725260f.jpg"} -{"rects": [{"solidity": 0.9955148287553247, "top": 3250, "right": 3210, "bottom": 4880, "left": 780}, {"solidity": 0.9954406657788755, "top": 795, "right": 3230, "bottom": 2425, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730806f.jpg"} -{"rects": [{"solidity": 0.9955149501661129, "top": 735, "right": 3765, "bottom": 2250, "left": 1600}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509251.jpg"} -{"rects": [{"solidity": 0.9955151639318023, "top": 2290, "right": 3145, "bottom": 3935, "left": 710}, {"solidity": 0.9945094802544403, "top": 4135, "right": 3140, "bottom": 5785, "left": 700}, {"solidity": 0.9954037441080951, "top": 470, "right": 3145, "bottom": 2080, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731881f.jpg"} -{"rects": [{"solidity": 0.9955154006263994, "top": 765, "right": 2005, "bottom": 3165, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720524f.jpg"} -{"rects": [{"solidity": 0.995515414559505, "top": 695, "right": 2935, "bottom": 2125, "left": 1100}, {"solidity": 0.9959498522022678, "top": 785, "right": 5090, "bottom": 2050, "left": 3260}, {"solidity": 0.9969741277771008, "top": 2565, "right": 5080, "bottom": 3615, "left": 3305}, {"solidity": 0.9958541136556404, "top": 2580, "right": 2880, "bottom": 3625, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732939f.jpg"} -{"rects": [{"solidity": 0.9955154253902525, "top": 435, "right": 2905, "bottom": 1985, "left": 1005}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711744f.jpg"} -{"rects": [{"solidity": 0.9955155620380213, "top": 495, "right": 3130, "bottom": 1900, "left": 1305}, {"solidity": 0.9960909244047206, "top": 4115, "right": 3120, "bottom": 5520, "left": 1300}, {"solidity": 0.9955313130112113, "top": 2320, "right": 3130, "bottom": 3725, "left": 1310}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727396f.jpg"} -{"rects": [{"solidity": 0.9955157685638331, "top": 450, "right": 3165, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708009f.jpg"} -{"rects": [{"solidity": 0.9955160710720703, "top": 820, "right": 2935, "bottom": 2315, "left": 820}], "shape": {"h": 3000, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509113.jpg"} -{"rects": [{"solidity": 0.9955160898999518, "top": 425, "right": 3095, "bottom": 2060, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728466f.jpg"} -{"rects": [{"solidity": 0.9955161591844347, "top": 610, "right": 4985, "bottom": 3650, "left": 1130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730820f.jpg"} -{"rects": [{"solidity": 0.9955161926144448, "top": 760, "right": 3875, "bottom": 3165, "left": 2270}, {"solidity": 0.99338411729852, "top": 765, "right": 2035, "bottom": 3165, "left": 430}, {"solidity": 0.9981738772146683, "top": 760, "right": 5710, "bottom": 3155, "left": 4115}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719956f.jpg"} -{"rects": [{"solidity": 0.995516278945541, "top": 410, "right": 3265, "bottom": 2005, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720103f.jpg"} -{"rects": [{"solidity": 0.995516315082563, "top": 820, "right": 2020, "bottom": 3215, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713157f.jpg"} -{"rects": [{"solidity": 0.9955163478615309, "top": 2170, "right": 3205, "bottom": 3800, "left": 785}, {"solidity": 0.9956134033442889, "top": 365, "right": 3230, "bottom": 1970, "left": 820}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730388f.jpg"} -{"rects": [{"solidity": 0.995517215209087, "top": 660, "right": 2680, "bottom": 2080, "left": 920}, {"solidity": 0.9942042789038792, "top": 2090, "right": 2690, "bottom": 3500, "left": 920}, {"solidity": 0.9678062591329761, "top": 670, "right": 5205, "bottom": 2090, "left": 3415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725433f.jpg"} -{"rects": [{"solidity": 0.99551722878404, "top": 445, "right": 3205, "bottom": 2035, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713931f.jpg"} -{"rects": [{"solidity": 0.9955172580723242, "top": 2350, "right": 3220, "bottom": 3975, "left": 800}, {"solidity": 0.9954851160509126, "top": 585, "right": 3210, "bottom": 2205, "left": 785}, {"solidity": 0.9966584045990734, "top": 4125, "right": 3215, "bottom": 5735, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733133f.jpg"} -{"rects": [{"solidity": 0.9955175726637893, "top": 410, "right": 5230, "bottom": 3645, "left": 1160}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/709646f.jpg"} -{"rects": [{"solidity": 0.9955175728275455, "top": 1055, "right": 5550, "bottom": 2715, "left": 730}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720898f.jpg"} -{"rects": [{"solidity": 0.9955176707211952, "top": 580, "right": 2700, "bottom": 2010, "left": 855}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728048f.jpg"} -{"rects": [{"solidity": 0.9955179362643488, "top": 460, "right": 3155, "bottom": 2110, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708011f.jpg"} -{"rects": [{"solidity": 0.9955180045830441, "top": 4145, "right": 3195, "bottom": 5750, "left": 780}, {"solidity": 0.9953168322975281, "top": 2300, "right": 3185, "bottom": 3905, "left": 775}, {"solidity": 0.9968100038279955, "top": 445, "right": 3175, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734284f.jpg"} -{"rects": [{"solidity": 0.9955180335724655, "top": 495, "right": 2920, "bottom": 1950, "left": 1055}, {"solidity": 0.9953469910861166, "top": 2255, "right": 2930, "bottom": 3690, "left": 1075}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725440f.jpg"} -{"rects": [{"solidity": 0.995518060289318, "top": 510, "right": 3325, "bottom": 2320, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711583f.jpg"} -{"rects": [{"solidity": 0.9955183461743841, "top": 2050, "right": 2715, "bottom": 3495, "left": 860}, {"solidity": 0.9954361591198738, "top": 635, "right": 2690, "bottom": 2020, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706978f.jpg"} -{"rects": [{"solidity": 0.9955183833775122, "top": 810, "right": 3840, "bottom": 3230, "left": 2230}, {"solidity": 0.9965409306915859, "top": 820, "right": 2045, "bottom": 3235, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712508f.jpg"} -{"rects": [{"solidity": 0.995518467006645, "top": 770, "right": 5765, "bottom": 3200, "left": 4150}, {"solidity": 0.9979892478357615, "top": 765, "right": 3875, "bottom": 3165, "left": 2260}, {"solidity": 0.9973914966694422, "top": 765, "right": 1990, "bottom": 3165, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721517f.jpg"} -{"rects": [{"solidity": 0.9955185680337595, "top": 2380, "right": 3215, "bottom": 4010, "left": 825}, {"solidity": 0.9951634346490625, "top": 620, "right": 3200, "bottom": 2245, "left": 820}, {"solidity": 0.9965167203986894, "top": 4150, "right": 3215, "bottom": 5755, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733211f.jpg"} -{"rects": [{"solidity": 0.9955185730007255, "top": 555, "right": 4880, "bottom": 3555, "left": 1085}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722126f.jpg"} -{"rects": [{"solidity": 0.995518595051761, "top": 615, "right": 3000, "bottom": 2020, "left": 1225}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727407f.jpg"} -{"rects": [{"solidity": 0.9955186705389265, "top": 410, "right": 3205, "bottom": 1995, "left": 815}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711779f.jpg"} -{"rects": [{"solidity": 0.9955188507013828, "top": 525, "right": 3135, "bottom": 2125, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721087f.jpg"} -{"rects": [{"solidity": 0.9955188906365358, "top": 805, "right": 3885, "bottom": 3235, "left": 2265}, {"solidity": 0.9951056240005697, "top": 820, "right": 5715, "bottom": 3240, "left": 4105}, {"solidity": 0.9957260935456549, "top": 810, "right": 2070, "bottom": 3220, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721937f.jpg"} -{"rects": [{"solidity": 0.9955189203386063, "top": 2415, "right": 2505, "bottom": 3930, "left": 410}, {"solidity": 0.9949523366848513, "top": 655, "right": 2540, "bottom": 2145, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716122f.jpg"} -{"rects": [{"solidity": 0.9955189275237766, "top": 1270, "right": 3370, "bottom": 4780, "left": 285}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715592f.jpg"} -{"rects": [{"solidity": 0.9955190139526847, "top": 405, "right": 5065, "bottom": 3665, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731146f.jpg"} -{"rects": [{"solidity": 0.9955191456194756, "top": 765, "right": 5735, "bottom": 3150, "left": 4140}, {"solidity": 0.9946571387851288, "top": 745, "right": 3905, "bottom": 3145, "left": 2315}, {"solidity": 0.996253209750314, "top": 755, "right": 2045, "bottom": 3140, "left": 455}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731600f.jpg"} -{"rects": [{"solidity": 0.9955201238291354, "top": 515, "right": 4985, "bottom": 3585, "left": 1135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725429f.jpg"} -{"rects": [{"solidity": 0.9955203286152124, "top": 825, "right": 3920, "bottom": 3250, "left": 2285}, {"solidity": 0.9973769530295378, "top": 830, "right": 2025, "bottom": 3245, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722495f.jpg"} -{"rects": [{"solidity": 0.9955204350303891, "top": 2285, "right": 3180, "bottom": 3930, "left": 725}, {"solidity": 0.9994236480971973, "top": 500, "right": 3110, "bottom": 2010, "left": 1130}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732371f.jpg"} -{"rects": [{"solidity": 0.995520540447852, "top": 435, "right": 3205, "bottom": 2350, "left": 405}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718687f.jpg"} -{"rects": [{"solidity": 0.9955207017121617, "top": 945, "right": 2025, "bottom": 3320, "left": 430}, {"solidity": 0.9966978035849533, "top": 935, "right": 3905, "bottom": 3295, "left": 2315}, {"solidity": 0.9969189868722049, "top": 940, "right": 5760, "bottom": 3295, "left": 4200}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722319f.jpg"} -{"rects": [{"solidity": 0.9955207966013467, "top": 435, "right": 2885, "bottom": 1985, "left": 945}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700656f.jpg"} -{"rects": [{"solidity": 0.9955211201496706, "top": 395, "right": 3185, "bottom": 1985, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706613f.jpg"} -{"rects": [{"solidity": 0.9955212275820412, "top": 405, "right": 3200, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713480f.jpg"} -{"rects": [{"solidity": 0.9955212995193105, "top": 840, "right": 2055, "bottom": 3225, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714744f.jpg"} -{"rects": [{"solidity": 0.9955215771250004, "top": 720, "right": 2040, "bottom": 3140, "left": 420}, {"solidity": 0.9948219158911202, "top": 740, "right": 3950, "bottom": 1755, "left": 2525}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709466f.jpg"} -{"rects": [{"solidity": 0.9955216508424346, "top": 975, "right": 3390, "bottom": 4620, "left": 555}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719637f.jpg"} -{"rects": [{"solidity": 0.9955216760614114, "top": 2380, "right": 3180, "bottom": 4000, "left": 780}, {"solidity": 0.9962229315511985, "top": 4155, "right": 3180, "bottom": 5780, "left": 780}, {"solidity": 0.9966552668920465, "top": 610, "right": 3160, "bottom": 2225, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733215f.jpg"} -{"rects": [{"solidity": 0.995521802359133, "top": 820, "right": 2315, "bottom": 3530, "left": 490}], "shape": {"h": 4420, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711340f.jpg"} -{"rects": [{"solidity": 0.9955218783626183, "top": 2245, "right": 3090, "bottom": 3880, "left": 670}, {"solidity": 0.9972377388272358, "top": 405, "right": 3080, "bottom": 2025, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710693f.jpg"} -{"rects": [{"solidity": 0.9955222427723158, "top": 625, "right": 4815, "bottom": 3640, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713723f.jpg"} -{"rects": [{"solidity": 0.9955222818041529, "top": 1090, "right": 3405, "bottom": 5045, "left": 360}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708535f.jpg"} -{"rects": [{"solidity": 0.9955224799370167, "top": 445, "right": 3175, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720092f.jpg"} -{"rects": [{"solidity": 0.9955229081050637, "top": 605, "right": 2705, "bottom": 2035, "left": 840}, {"solidity": 0.9952744439033093, "top": 595, "right": 5325, "bottom": 2025, "left": 3490}, {"solidity": 0.9952673876863711, "top": 2135, "right": 2675, "bottom": 3560, "left": 870}, {"solidity": 0.9949248157638599, "top": 2115, "right": 5310, "bottom": 3525, "left": 3500}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718917f.jpg"} -{"rects": [{"solidity": 0.9955231252427348, "top": 1415, "right": 3585, "bottom": 5280, "left": 460}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/710871f.jpg"} -{"rects": [{"solidity": 0.9955237476086605, "top": 750, "right": 2600, "bottom": 3690, "left": 240}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508175.jpg"} -{"rects": [{"solidity": 0.9955242187690383, "top": 460, "right": 1260, "bottom": 1995, "left": 245}, {"solidity": 0.9946375453323011, "top": 460, "right": 2440, "bottom": 1985, "left": 1420}], "shape": {"h": 2500, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/724521f.jpg"} -{"rects": [{"solidity": 0.995524320079331, "top": 890, "right": 3875, "bottom": 3285, "left": 2290}, {"solidity": 0.9985234018936782, "top": 900, "right": 2010, "bottom": 3275, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728903f.jpg"} -{"rects": [{"solidity": 0.9955245554312376, "top": 455, "right": 2940, "bottom": 2070, "left": 970}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720929f.jpg"} -{"rects": [{"solidity": 0.9955246703157566, "top": 570, "right": 2915, "bottom": 2015, "left": 1110}, {"solidity": 0.9957187989016505, "top": 2750, "right": 2945, "bottom": 4170, "left": 1140}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731087f.jpg"} -{"rects": [{"solidity": 0.9955248110449012, "top": 2140, "right": 2720, "bottom": 3580, "left": 895}, {"solidity": 0.995508700082582, "top": 650, "right": 5310, "bottom": 2085, "left": 3485}, {"solidity": 0.9992933172177167, "top": 665, "right": 2710, "bottom": 2080, "left": 885}, {"solidity": 0.9967218225302854, "top": 2145, "right": 5310, "bottom": 3575, "left": 3500}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707222f.jpg"} -{"rects": [{"solidity": 0.9955250567824868, "top": 2435, "right": 3005, "bottom": 3865, "left": 1175}, {"solidity": 0.994074620921445, "top": 610, "right": 2980, "bottom": 2055, "left": 1170}, {"solidity": 0.9961815700398595, "top": 4165, "right": 2995, "bottom": 5580, "left": 1170}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726886f.jpg"} -{"rects": [{"solidity": 0.9955252612933501, "top": 390, "right": 3260, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707916f.jpg"} -{"rects": [{"solidity": 0.9955254035606714, "top": 380, "right": 3060, "bottom": 1920, "left": 1065}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701112f.jpg"} -{"rects": [{"solidity": 0.9955255132434139, "top": 925, "right": 4590, "bottom": 2950, "left": 1770}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726750f.jpg"} -{"rects": [{"solidity": 0.9955258219792772, "top": 2125, "right": 2825, "bottom": 5420, "left": 455}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714771f.jpg"} -{"rects": [{"solidity": 0.9955263081940716, "top": 4090, "right": 3170, "bottom": 5710, "left": 735}, {"solidity": 0.996522505597447, "top": 2255, "right": 3170, "bottom": 3875, "left": 745}, {"solidity": 0.9962561204292114, "top": 430, "right": 3155, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731870f.jpg"} -{"rects": [{"solidity": 0.9955263085260049, "top": 770, "right": 2390, "bottom": 3585, "left": 445}, {"solidity": 0.99747071618143, "top": 780, "right": 4255, "bottom": 2180, "left": 2450}, {"solidity": 0.9969273283219522, "top": 2225, "right": 4245, "bottom": 3625, "left": 2440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727501f.jpg"} -{"rects": [{"solidity": 0.9955263739262648, "top": 405, "right": 3310, "bottom": 2015, "left": 895}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725972f.jpg"} -{"rects": [{"solidity": 0.9955263949120098, "top": 425, "right": 5270, "bottom": 3500, "left": 1430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733438f.jpg"} -{"rects": [{"solidity": 0.995526965022711, "top": 1445, "right": 3200, "bottom": 2380, "left": 2025}, {"solidity": 0.9921181904831733, "top": 410, "right": 3175, "bottom": 1310, "left": 2020}, {"solidity": 0.9941014450830703, "top": 1460, "right": 1750, "bottom": 2355, "left": 620}, {"solidity": 0.9946933653996968, "top": 420, "right": 1740, "bottom": 1295, "left": 620}], "shape": {"h": 2560, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727139f.jpg"} -{"rects": [{"solidity": 0.9955277309472701, "top": 2255, "right": 3160, "bottom": 3900, "left": 720}, {"solidity": 0.9945674141861631, "top": 405, "right": 3175, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734039f.jpg"} -{"rects": [{"solidity": 0.995528023650807, "top": 595, "right": 5265, "bottom": 2095, "left": 3310}, {"solidity": 0.9971878813604287, "top": 2080, "right": 2860, "bottom": 3545, "left": 910}, {"solidity": 0.9976232484215745, "top": 655, "right": 2840, "bottom": 2020, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717710f.jpg"} -{"rects": [{"solidity": 0.9955280803888793, "top": 2185, "right": 2895, "bottom": 3640, "left": 1055}, {"solidity": 0.9955447452075908, "top": 3910, "right": 2855, "bottom": 5355, "left": 1020}, {"solidity": 0.9946803859270703, "top": 460, "right": 2880, "bottom": 1900, "left": 1055}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702876f.jpg"} -{"rects": [{"solidity": 0.9955281317020985, "top": 660, "right": 2760, "bottom": 2030, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702635f.jpg"} -{"rects": [{"solidity": 0.9955282970135962, "top": 2280, "right": 3120, "bottom": 3690, "left": 775}, {"solidity": 0.994192863261866, "top": 605, "right": 3120, "bottom": 1985, "left": 780}, {"solidity": 0.994411577900367, "top": 3970, "right": 3090, "bottom": 5375, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720580f.jpg"} -{"rects": [{"solidity": 0.9955285297465621, "top": 875, "right": 3845, "bottom": 3275, "left": 2240}, {"solidity": 0.9919823592243825, "top": 865, "right": 2005, "bottom": 3270, "left": 400}, {"solidity": 0.9944339594578069, "top": 885, "right": 5670, "bottom": 3285, "left": 4080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708691f.jpg"} -{"rects": [{"solidity": 0.9955286177216076, "top": 700, "right": 5320, "bottom": 3335, "left": 2040}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733419f.jpg"} -{"rects": [{"solidity": 0.9955286395299124, "top": 790, "right": 2070, "bottom": 3215, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718621f.jpg"} -{"rects": [{"solidity": 0.9955291207938439, "top": 640, "right": 2790, "bottom": 2020, "left": 945}, {"solidity": 0.99918915379889, "top": 620, "right": 5005, "bottom": 1990, "left": 3180}, {"solidity": 0.995063352802037, "top": 2210, "right": 5015, "bottom": 3585, "left": 3180}, {"solidity": 0.9952748224247783, "top": 2210, "right": 2795, "bottom": 3590, "left": 980}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726370f.jpg"} -{"rects": [{"solidity": 0.9955294481169443, "top": 2310, "right": 3185, "bottom": 3930, "left": 775}, {"solidity": 0.9457915099217316, "top": 610, "right": 3080, "bottom": 1995, "left": 895}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708942f.jpg"} -{"rects": [{"solidity": 0.9955296588539008, "top": 1085, "right": 3135, "bottom": 2165, "left": 1505}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509629.jpg"} -{"rects": [{"solidity": 0.9955298251113462, "top": 795, "right": 2035, "bottom": 3205, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724816f.jpg"} -{"rects": [{"solidity": 0.9955298896451549, "top": 2180, "right": 3105, "bottom": 3820, "left": 680}, {"solidity": 0.9958342390510889, "top": 4010, "right": 3085, "bottom": 5635, "left": 670}, {"solidity": 0.9921738041572752, "top": 370, "right": 3100, "bottom": 1975, "left": 705}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719264f.jpg"} -{"rects": [{"solidity": 0.9955298994987608, "top": 2135, "right": 2615, "bottom": 3525, "left": 810}, {"solidity": 0.9958278492334117, "top": 680, "right": 2620, "bottom": 2070, "left": 825}, {"solidity": 0.9956071797072135, "top": 685, "right": 5250, "bottom": 2060, "left": 3445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723301f.jpg"} -{"rects": [{"solidity": 0.9955299534743725, "top": 2185, "right": 3085, "bottom": 3830, "left": 655}, {"solidity": 0.9957488527669531, "top": 425, "right": 2960, "bottom": 1985, "left": 960}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711746f.jpg"} -{"rects": [{"solidity": 0.9955302606128474, "top": 4095, "right": 3145, "bottom": 5755, "left": 685}, {"solidity": 0.9975545120052682, "top": 380, "right": 3150, "bottom": 2000, "left": 720}, {"solidity": 0.9963825710931927, "top": 2260, "right": 3160, "bottom": 3885, "left": 725}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/729410f.jpg"} -{"rects": [{"solidity": 0.9955303093260592, "top": 1015, "right": 5465, "bottom": 2640, "left": 665}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730211f.jpg"} -{"rects": [{"solidity": 0.9955304898185584, "top": 780, "right": 2045, "bottom": 3220, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729412f.jpg"} -{"rects": [{"solidity": 0.9955307369651819, "top": 380, "right": 3185, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729639f.jpg"} -{"rects": [{"solidity": 0.9955309020811204, "top": 485, "right": 2380, "bottom": 2705, "left": 900}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712117f.jpg"} -{"rects": [{"solidity": 0.9955309121153313, "top": 3770, "right": 3245, "bottom": 5820, "left": 405}, {"solidity": 0.9965905991453768, "top": 2090, "right": 3035, "bottom": 3705, "left": 620}, {"solidity": 0.9950908966447941, "top": 365, "right": 3040, "bottom": 1990, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728665f.jpg"} -{"rects": [{"solidity": 0.9955310836879707, "top": 2260, "right": 3180, "bottom": 3880, "left": 750}, {"solidity": 0.9983860806764823, "top": 425, "right": 3185, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734666f.jpg"} -{"rects": [{"solidity": 0.9955310872541618, "top": 430, "right": 3215, "bottom": 2065, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733962f.jpg"} -{"rects": [{"solidity": 0.9955313291630047, "top": 710, "right": 3830, "bottom": 3130, "left": 2185}, {"solidity": 0.9959574067705326, "top": 680, "right": 2030, "bottom": 3095, "left": 400}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711748f.jpg"} -{"rects": [{"solidity": 0.9955316710829452, "top": 725, "right": 3195, "bottom": 2640, "left": 460}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702362f.jpg"} -{"rects": [{"solidity": 0.995531727677447, "top": 810, "right": 3840, "bottom": 3220, "left": 2235}, {"solidity": 0.9967027247812796, "top": 795, "right": 2025, "bottom": 3195, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734000f.jpg"} -{"rects": [{"solidity": 0.9955319046934177, "top": 2270, "right": 3090, "bottom": 3910, "left": 665}, {"solidity": 0.9969602391143011, "top": 410, "right": 3075, "bottom": 1980, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701368f.jpg"} -{"rects": [{"solidity": 0.9955319783380306, "top": 625, "right": 2675, "bottom": 2065, "left": 845}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706234f.jpg"} -{"rects": [{"solidity": 0.9955320944548328, "top": 420, "right": 2930, "bottom": 1735, "left": 1160}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707457f.jpg"} -{"rects": [{"solidity": 0.9955322851948002, "top": 2070, "right": 2580, "bottom": 3505, "left": 760}, {"solidity": 0.9976946859808399, "top": 655, "right": 2570, "bottom": 2065, "left": 750}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703822f.jpg"} -{"rects": [{"solidity": 0.9955327937196147, "top": 2320, "right": 3155, "bottom": 3950, "left": 720}, {"solidity": 0.9948704846507606, "top": 455, "right": 3140, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728699f.jpg"} -{"rects": [{"solidity": 0.9955328901908497, "top": 460, "right": 2930, "bottom": 1900, "left": 1120}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726088f.jpg"} -{"rects": [{"solidity": 0.9955328970887669, "top": 445, "right": 3185, "bottom": 2100, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700038f.jpg"} -{"rects": [{"solidity": 0.995532920091375, "top": 435, "right": 3185, "bottom": 2070, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706646f.jpg"} -{"rects": [{"solidity": 0.9955335036256576, "top": 660, "right": 2720, "bottom": 2085, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725714f.jpg"} -{"rects": [{"solidity": 0.9955336098802677, "top": 3080, "right": 2335, "bottom": 4285, "left": 545}, {"solidity": 0.9932450930213181, "top": 1690, "right": 2335, "bottom": 2885, "left": 555}, {"solidity": 0.9977613438112736, "top": 360, "right": 2335, "bottom": 1480, "left": 875}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716517f.jpg"} -{"rects": [{"solidity": 0.9955337365331163, "top": 800, "right": 1990, "bottom": 3205, "left": 365}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711975f.jpg"} -{"rects": [{"solidity": 0.9955337663284713, "top": 1090, "right": 3470, "bottom": 4755, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723981f.jpg"} -{"rects": [{"solidity": 0.9955342072012114, "top": 2210, "right": 3125, "bottom": 3890, "left": 680}, {"solidity": 0.9950566912485007, "top": 365, "right": 3140, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701967f.jpg"} -{"rects": [{"solidity": 0.9955343149976239, "top": 665, "right": 3900, "bottom": 3055, "left": 2305}, {"solidity": 0.9942855201467691, "top": 695, "right": 2025, "bottom": 3080, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731609f.jpg"} -{"rects": [{"solidity": 0.9955345315726811, "top": 820, "right": 5725, "bottom": 3255, "left": 4060}, {"solidity": 0.9960237804819485, "top": 780, "right": 3890, "bottom": 3215, "left": 2235}, {"solidity": 0.9966472214088749, "top": 750, "right": 2025, "bottom": 3170, "left": 390}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721935f.jpg"} -{"rects": [{"solidity": 0.995535257331975, "top": 2225, "right": 5000, "bottom": 3650, "left": 3185}, {"solidity": 0.9953334278049519, "top": 580, "right": 5000, "bottom": 2010, "left": 3185}, {"solidity": 0.9930273975944766, "top": 2230, "right": 2825, "bottom": 3670, "left": 1020}, {"solidity": 0.9954233745637522, "top": 585, "right": 2820, "bottom": 2000, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727754f.jpg"} -{"rects": [{"solidity": 0.9955353053205082, "top": 520, "right": 3360, "bottom": 2450, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723629f.jpg"} -{"rects": [{"solidity": 0.9955353893189043, "top": 495, "right": 2190, "bottom": 2585, "left": 690}, {"solidity": 0.9970479494446073, "top": 505, "right": 3960, "bottom": 2590, "left": 2475}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716114f.jpg"} -{"rects": [{"solidity": 0.9955355827799179, "top": 2325, "right": 3135, "bottom": 3940, "left": 725}, {"solidity": 0.9964031885965787, "top": 445, "right": 3115, "bottom": 2030, "left": 725}, {"solidity": 0.997496399615959, "top": 4230, "right": 3115, "bottom": 5810, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718365f.jpg"} -{"rects": [{"solidity": 0.99553569326257, "top": 620, "right": 5240, "bottom": 2060, "left": 3370}, {"solidity": 0.9983625309101954, "top": 2125, "right": 2745, "bottom": 3560, "left": 895}, {"solidity": 0.9989325700171842, "top": 615, "right": 2745, "bottom": 2045, "left": 905}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702731f.jpg"} -{"rects": [{"solidity": 0.9955357560232234, "top": 745, "right": 2865, "bottom": 2220, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705012f.jpg"} -{"rects": [{"solidity": 0.9955358298850813, "top": 490, "right": 3520, "bottom": 2290, "left": 815}], "shape": {"h": 6895, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711209f.jpg"} -{"rects": [{"solidity": 0.9955362425549259, "top": 805, "right": 2765, "bottom": 3980, "left": 345}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507875.jpg"} -{"rects": [{"solidity": 0.9955364335886638, "top": 470, "right": 2905, "bottom": 1985, "left": 990}, {"solidity": 0.9855445570608435, "top": 2285, "right": 2900, "bottom": 3795, "left": 990}, {"solidity": 0.9808943071481873, "top": 4105, "right": 2890, "bottom": 5605, "left": 980}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700560f.jpg"} -{"rects": [{"solidity": 0.9955364535505141, "top": 655, "right": 3175, "bottom": 2540, "left": 495}, {"solidity": 0.9936896178568169, "top": 3165, "right": 3160, "bottom": 5000, "left": 515}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712036f.jpg"} -{"rects": [{"solidity": 0.9955367538616782, "top": 780, "right": 3835, "bottom": 3195, "left": 2220}, {"solidity": 0.9951784085837909, "top": 805, "right": 5665, "bottom": 3225, "left": 4040}, {"solidity": 0.9982551414511733, "top": 795, "right": 1985, "bottom": 3200, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724271f.jpg"} -{"rects": [{"solidity": 0.9955375516487077, "top": 370, "right": 3210, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718569f.jpg"} -{"rects": [{"solidity": 0.9955375637316145, "top": 2240, "right": 3175, "bottom": 3845, "left": 760}, {"solidity": 0.9952497817600844, "top": 405, "right": 3170, "bottom": 2005, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720673f.jpg"} -{"rects": [{"solidity": 0.9955384124020342, "top": 525, "right": 3035, "bottom": 1935, "left": 1195}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727908f.jpg"} -{"rects": [{"solidity": 0.9955386339094241, "top": 710, "right": 2660, "bottom": 2080, "left": 845}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726825f.jpg"} -{"rects": [{"solidity": 0.9955387032192534, "top": 435, "right": 3320, "bottom": 2040, "left": 900}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725892f.jpg"} -{"rects": [{"solidity": 0.9955388794105364, "top": 345, "right": 3080, "bottom": 1960, "left": 655}, {"solidity": 0.9952382031419442, "top": 2210, "right": 3065, "bottom": 3840, "left": 645}, {"solidity": 0.9934300094553277, "top": 4090, "right": 3045, "bottom": 5705, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730609f.jpg"} -{"rects": [{"solidity": 0.9955389461738637, "top": 825, "right": 2145, "bottom": 3235, "left": 535}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721276f.jpg"} -{"rects": [{"solidity": 0.9955389481619876, "top": 745, "right": 2040, "bottom": 3150, "left": 430}, {"solidity": 0.9958991594427855, "top": 750, "right": 3830, "bottom": 3170, "left": 2220}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716588f.jpg"} -{"rects": [{"solidity": 0.9955389912058458, "top": 585, "right": 2670, "bottom": 2060, "left": 815}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702789f.jpg"} -{"rects": [{"solidity": 0.9955390776795273, "top": 475, "right": 3345, "bottom": 2365, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713858f.jpg"} -{"rects": [{"solidity": 0.9955393539667275, "top": 625, "right": 4885, "bottom": 3610, "left": 1185}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716809f.jpg"} -{"rects": [{"solidity": 0.9955395940302434, "top": 390, "right": 3350, "bottom": 2320, "left": 560}, {"solidity": 0.9951468905505735, "top": 2470, "right": 3190, "bottom": 4055, "left": 800}, {"solidity": 0.9976289070680187, "top": 4235, "right": 3180, "bottom": 5805, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718037f.jpg"} -{"rects": [{"solidity": 0.9955396806184702, "top": 795, "right": 2175, "bottom": 3485, "left": 350}, {"solidity": 0.9969707394453682, "top": 940, "right": 3990, "bottom": 3370, "left": 2350}, {"solidity": 0.9959592195587748, "top": 1165, "right": 5410, "bottom": 3095, "left": 4285}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700260f.jpg"} -{"rects": [{"solidity": 0.9955396910233896, "top": 210, "right": 3180, "bottom": 1870, "left": 745}, {"solidity": 0.9984546873948017, "top": 2040, "right": 3165, "bottom": 3665, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707880f.jpg"} -{"rects": [{"solidity": 0.9955398551439679, "top": 500, "right": 3120, "bottom": 1915, "left": 1315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725213f.jpg"} -{"rects": [{"solidity": 0.9955399145096022, "top": 4050, "right": 3195, "bottom": 5680, "left": 775}, {"solidity": 0.9957150491384479, "top": 2220, "right": 3220, "bottom": 3840, "left": 800}, {"solidity": 0.9968210971324126, "top": 420, "right": 3215, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/732094f.jpg"} -{"rects": [{"solidity": 0.9955400177371052, "top": 930, "right": 3840, "bottom": 3345, "left": 2215}, {"solidity": 0.9978575185289155, "top": 930, "right": 1980, "bottom": 3345, "left": 365}, {"solidity": 0.9965383231611462, "top": 935, "right": 5690, "bottom": 3350, "left": 4080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709242f.jpg"} -{"rects": [{"solidity": 0.9955400420400629, "top": 790, "right": 3835, "bottom": 3220, "left": 2205}, {"solidity": 0.995770355962997, "top": 805, "right": 5690, "bottom": 3240, "left": 4075}, {"solidity": 0.9977227560127938, "top": 765, "right": 2025, "bottom": 3185, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720026f.jpg"} -{"rects": [{"solidity": 0.9955400466643266, "top": 540, "right": 3665, "bottom": 2350, "left": 955}, {"solidity": 0.9973071693985047, "top": 2680, "right": 3635, "bottom": 4465, "left": 955}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711336f.jpg"} -{"rects": [{"solidity": 0.9955400516795866, "top": 450, "right": 3510, "bottom": 2255, "left": 810}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711621f.jpg"} -{"rects": [{"solidity": 0.9955400942533399, "top": 420, "right": 3150, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715246f.jpg"} -{"rects": [{"solidity": 0.9955402631540086, "top": 530, "right": 3290, "bottom": 2435, "left": 600}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/715194f.jpg"} -{"rects": [{"solidity": 0.9955403795336701, "top": 435, "right": 3280, "bottom": 2035, "left": 890}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727996f.jpg"} -{"rects": [{"solidity": 0.9955404999785601, "top": 2110, "right": 5225, "bottom": 3560, "left": 3390}, {"solidity": 0.9975296225595258, "top": 2165, "right": 2640, "bottom": 3590, "left": 830}, {"solidity": 0.9976311104353754, "top": 685, "right": 2655, "bottom": 2110, "left": 850}, {"solidity": 0.9931256929744985, "top": 690, "right": 5210, "bottom": 2050, "left": 3360}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731965f.jpg"} -{"rects": [{"solidity": 0.9955407208724214, "top": 440, "right": 3125, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721719f.jpg"} -{"rects": [{"solidity": 0.9955407750724812, "top": 630, "right": 2575, "bottom": 2040, "left": 770}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725128f.jpg"} -{"rects": [{"solidity": 0.9955409438388739, "top": 400, "right": 3215, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727582f.jpg"} -{"rects": [{"solidity": 0.9955410161990628, "top": 3220, "right": 3290, "bottom": 5130, "left": 510}, {"solidity": 0.9960386641871998, "top": 870, "right": 3300, "bottom": 2760, "left": 540}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726597f.jpg"} -{"rects": [{"solidity": 0.9955410483876351, "top": 4020, "right": 3070, "bottom": 5620, "left": 675}, {"solidity": 0.9929775142080554, "top": 2235, "right": 2910, "bottom": 3650, "left": 1090}, {"solidity": 0.9975115976437164, "top": 465, "right": 2920, "bottom": 1865, "left": 1105}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/728072f.jpg"} -{"rects": [{"solidity": 0.9955410566518141, "top": 2275, "right": 3175, "bottom": 3915, "left": 740}, {"solidity": 0.9965265427885709, "top": 410, "right": 3175, "bottom": 2040, "left": 755}, {"solidity": 0.9960788732394367, "top": 4140, "right": 3170, "bottom": 5765, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715345f.jpg"} -{"rects": [{"solidity": 0.9955410841082815, "top": 835, "right": 2040, "bottom": 3255, "left": 430}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723826f.jpg"} -{"rects": [{"solidity": 0.9955416946855095, "top": 705, "right": 2650, "bottom": 2035, "left": 845}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728246f.jpg"} -{"rects": [{"solidity": 0.9955419712111321, "top": 575, "right": 2555, "bottom": 3430, "left": 620}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732859f.jpg"} -{"rects": [{"solidity": 0.9955420584399152, "top": 340, "right": 3205, "bottom": 1965, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708163f.jpg"} -{"rects": [{"solidity": 0.9955421023665383, "top": 2145, "right": 2975, "bottom": 3555, "left": 1185}, {"solidity": 0.9959399537872697, "top": 480, "right": 5085, "bottom": 1885, "left": 3305}, {"solidity": 0.9947467318610712, "top": 485, "right": 2955, "bottom": 1890, "left": 1170}, {"solidity": 0.9951368941101238, "top": 2160, "right": 5100, "bottom": 3530, "left": 3310}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727734f.jpg"} -{"rects": [{"solidity": 0.9955422462396848, "top": 620, "right": 2680, "bottom": 2040, "left": 850}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706236f.jpg"} -{"rects": [{"solidity": 0.9955426242677169, "top": 720, "right": 2685, "bottom": 2140, "left": 870}, {"solidity": 0.9942491793304121, "top": 2180, "right": 5220, "bottom": 3620, "left": 3425}, {"solidity": 0.99600761018503, "top": 715, "right": 5245, "bottom": 2125, "left": 3420}, {"solidity": 0.9935326207696675, "top": 2210, "right": 2670, "bottom": 3635, "left": 870}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718097f.jpg"} -{"rects": [{"solidity": 0.9955429994723991, "top": 750, "right": 5745, "bottom": 3235, "left": 4060}, {"solidity": 0.9964201672257548, "top": 765, "right": 3845, "bottom": 3205, "left": 2190}, {"solidity": 0.9988785130102049, "top": 800, "right": 1970, "bottom": 3145, "left": 285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731242f.jpg"} -{"rects": [{"solidity": 0.9955430274302046, "top": 4130, "right": 2815, "bottom": 5645, "left": 895}, {"solidity": 0.9948179308302633, "top": 440, "right": 2815, "bottom": 1955, "left": 890}, {"solidity": 0.9949196963155806, "top": 2280, "right": 2830, "bottom": 3795, "left": 915}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700071f.jpg"} -{"rects": [{"solidity": 0.995543114046327, "top": 400, "right": 3205, "bottom": 2035, "left": 795}, {"solidity": 0.9968173055354176, "top": 2305, "right": 3195, "bottom": 3925, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712259f.jpg"} -{"rects": [{"solidity": 0.9955431754874652, "top": 770, "right": 2145, "bottom": 3185, "left": 540}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721352f.jpg"} -{"rects": [{"solidity": 0.9955433830609846, "top": 495, "right": 2950, "bottom": 1905, "left": 1105}, {"solidity": 0.9945088860248187, "top": 4195, "right": 2920, "bottom": 5600, "left": 1100}, {"solidity": 0.9966680735903866, "top": 2365, "right": 2950, "bottom": 3755, "left": 1120}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725532f.jpg"} -{"rects": [{"solidity": 0.9955434383683741, "top": 860, "right": 3250, "bottom": 2365, "left": 1145}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509199.jpg"} -{"rects": [{"solidity": 0.9955435278727174, "top": 405, "right": 2500, "bottom": 1945, "left": 205}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715755f.jpg"} -{"rects": [{"solidity": 0.9955435574409736, "top": 865, "right": 1985, "bottom": 3275, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728473f.jpg"} -{"rects": [{"solidity": 0.9955439916631704, "top": 865, "right": 2290, "bottom": 3235, "left": 715}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710158f.jpg"} -{"rects": [{"solidity": 0.9955439969798561, "top": 350, "right": 3105, "bottom": 2000, "left": 670}, {"solidity": 0.9959143238238303, "top": 2205, "right": 3065, "bottom": 3840, "left": 645}, {"solidity": 0.9956630595673425, "top": 4055, "right": 3035, "bottom": 5685, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729341f.jpg"} -{"rects": [{"solidity": 0.99554413519652, "top": 1270, "right": 5675, "bottom": 2910, "left": 3250}, {"solidity": 0.9960712187888184, "top": 1265, "right": 2890, "bottom": 2885, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722320f.jpg"} -{"rects": [{"solidity": 0.99554430133184, "top": 665, "right": 2595, "bottom": 2090, "left": 775}, {"solidity": 0.9961080373667479, "top": 2155, "right": 2600, "bottom": 3575, "left": 780}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726464f.jpg"} -{"rects": [{"solidity": 0.9955445687779068, "top": 2260, "right": 3170, "bottom": 3905, "left": 735}, {"solidity": 0.9951040037082102, "top": 410, "right": 3160, "bottom": 2040, "left": 720}, {"solidity": 0.9954000562071784, "top": 4125, "right": 3145, "bottom": 5760, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734252f.jpg"} -{"rects": [{"solidity": 0.9955445912695975, "top": 415, "right": 3110, "bottom": 2045, "left": 690}, {"solidity": 0.9948386137621884, "top": 2270, "right": 3105, "bottom": 3915, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728490f.jpg"} -{"rects": [{"solidity": 0.995544702770789, "top": 400, "right": 3175, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713535f.jpg"} -{"rects": [{"solidity": 0.9955447244892952, "top": 370, "right": 3200, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727479f.jpg"} -{"rects": [{"solidity": 0.9955447970173179, "top": 390, "right": 3145, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729701f.jpg"} -{"rects": [{"solidity": 0.9955448893051329, "top": 865, "right": 2010, "bottom": 3280, "left": 400}, {"solidity": 0.9975626042307402, "top": 870, "right": 3865, "bottom": 3275, "left": 2275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729031f.jpg"} -{"rects": [{"solidity": 0.9955450138549096, "top": 590, "right": 3000, "bottom": 2200, "left": 580}, {"solidity": 0.9966121020694355, "top": 2510, "right": 2975, "bottom": 4110, "left": 570}, {"solidity": 0.995052854262169, "top": 4265, "right": 2975, "bottom": 5870, "left": 575}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710069f.jpg"} -{"rects": [{"solidity": 0.995545049841559, "top": 405, "right": 3150, "bottom": 2045, "left": 725}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/728851f.jpg"} -{"rects": [{"solidity": 0.9955450784181661, "top": 2280, "right": 3150, "bottom": 3910, "left": 710}, {"solidity": 0.9950662299737016, "top": 410, "right": 3185, "bottom": 2035, "left": 750}, {"solidity": 0.9949210680305318, "top": 4150, "right": 3115, "bottom": 5770, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724342f.jpg"} -{"rects": [{"solidity": 0.9955457129055126, "top": 2190, "right": 3200, "bottom": 3845, "left": 735}, {"solidity": 0.9942277946151235, "top": 4075, "right": 3160, "bottom": 5720, "left": 685}, {"solidity": 0.9947757172498136, "top": 365, "right": 3200, "bottom": 1990, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732967f.jpg"} -{"rects": [{"solidity": 0.9955460941510402, "top": 450, "right": 2955, "bottom": 1870, "left": 1185}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725275f.jpg"} -{"rects": [{"solidity": 0.9955462733828693, "top": 415, "right": 3205, "bottom": 2040, "left": 780}, {"solidity": 0.9939405293315848, "top": 2255, "right": 3170, "bottom": 3900, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702120f.jpg"} -{"rects": [{"solidity": 0.9955462997253712, "top": 2230, "right": 2995, "bottom": 3670, "left": 1165}, {"solidity": 0.9956883336820949, "top": 2200, "right": 5140, "bottom": 3615, "left": 3300}, {"solidity": 0.9944294778807345, "top": 595, "right": 5125, "bottom": 1995, "left": 3280}, {"solidity": 0.9958483530142946, "top": 620, "right": 2980, "bottom": 2020, "left": 1170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725913f.jpg"} -{"rects": [{"solidity": 0.9955463872892174, "top": 2260, "right": 3125, "bottom": 3915, "left": 670}, {"solidity": 0.9961836508768863, "top": 405, "right": 3160, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730866f.jpg"} -{"rects": [{"solidity": 0.9955469755469756, "top": 375, "right": 3205, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734687f.jpg"} -{"rects": [{"solidity": 0.9955472457744438, "top": 855, "right": 2000, "bottom": 3270, "left": 375}, {"solidity": 0.995266774388353, "top": 835, "right": 3895, "bottom": 3255, "left": 2265}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708053f.jpg"} -{"rects": [{"solidity": 0.9955475487814032, "top": 560, "right": 3035, "bottom": 2695, "left": 1525}], "shape": {"h": 2990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1508953.jpg"} -{"rects": [{"solidity": 0.9955475823697262, "top": 400, "right": 3125, "bottom": 2015, "left": 710}, {"solidity": 0.9963066613982438, "top": 2270, "right": 3110, "bottom": 3875, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729446f.jpg"} -{"rects": [{"solidity": 0.9955477533579125, "top": 435, "right": 3195, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/703135f.jpg"} -{"rects": [{"solidity": 0.9955478107043965, "top": 435, "right": 3215, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724883f.jpg"} -{"rects": [{"solidity": 0.995548057696662, "top": 2235, "right": 3100, "bottom": 3865, "left": 665}, {"solidity": 0.9963179109195122, "top": 4105, "right": 3090, "bottom": 5710, "left": 675}, {"solidity": 0.9986594295528591, "top": 385, "right": 3085, "bottom": 1975, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728323f.jpg"} -{"rects": [{"solidity": 0.9955482021394466, "top": 2095, "right": 2740, "bottom": 3505, "left": 935}, {"solidity": 0.9956846563901429, "top": 670, "right": 2740, "bottom": 2075, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726028f.jpg"} -{"rects": [{"solidity": 0.9955482319171838, "top": 955, "right": 4355, "bottom": 3620, "left": 2570}, {"solidity": 0.9966751391817742, "top": 945, "right": 2290, "bottom": 3605, "left": 520}], "shape": {"h": 4420, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/708826f.jpg"} -{"rects": [{"solidity": 0.9955483244073848, "top": 2245, "right": 3115, "bottom": 3880, "left": 690}, {"solidity": 0.9956482971176026, "top": 4090, "right": 3100, "bottom": 5715, "left": 670}, {"solidity": 0.9960514000467983, "top": 410, "right": 3125, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732212f.jpg"} -{"rects": [{"solidity": 0.9955486101245442, "top": 620, "right": 2670, "bottom": 1975, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702599f.jpg"} -{"rects": [{"solidity": 0.9955490229212566, "top": 780, "right": 2110, "bottom": 3215, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732439f.jpg"} -{"rects": [{"solidity": 0.9955492485325421, "top": 400, "right": 3125, "bottom": 2020, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713519f.jpg"} -{"rects": [{"solidity": 0.9955497293830383, "top": 800, "right": 3985, "bottom": 3365, "left": 2205}, {"solidity": 0.9967379344146297, "top": 815, "right": 2025, "bottom": 3205, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709066f.jpg"} -{"rects": [{"solidity": 0.9955497701142054, "top": 2245, "right": 3200, "bottom": 3885, "left": 760}, {"solidity": 0.9936405973984263, "top": 390, "right": 3245, "bottom": 2020, "left": 815}, {"solidity": 0.9966840635059899, "top": 4095, "right": 3160, "bottom": 5705, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734763f.jpg"} -{"rects": [{"solidity": 0.995550095064997, "top": 590, "right": 4070, "bottom": 3390, "left": 495}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725938f.jpg"} -{"rects": [{"solidity": 0.9955502282884329, "top": 525, "right": 3130, "bottom": 2155, "left": 715}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707517f.jpg"} -{"rects": [{"solidity": 0.9955505290257296, "top": 500, "right": 3070, "bottom": 1895, "left": 1240}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727320f.jpg"} -{"rects": [{"solidity": 0.995550608222553, "top": 2285, "right": 3190, "bottom": 3910, "left": 760}, {"solidity": 0.9963412788132345, "top": 405, "right": 3195, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734548f.jpg"} -{"rects": [{"solidity": 0.9955506288092264, "top": 1315, "right": 3165, "bottom": 4755, "left": 535}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703841f.jpg"} -{"rects": [{"solidity": 0.9955511649630719, "top": 510, "right": 3125, "bottom": 2095, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711818f.jpg"} -{"rects": [{"solidity": 0.9955512234958624, "top": 2285, "right": 2995, "bottom": 3875, "left": 585}, {"solidity": 0.9958588713938498, "top": 470, "right": 3000, "bottom": 2060, "left": 595}, {"solidity": 0.995666788961715, "top": 4070, "right": 2975, "bottom": 5675, "left": 570}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730339f.jpg"} -{"rects": [{"solidity": 0.9955513557218483, "top": 440, "right": 3140, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723759f.jpg"} -{"rects": [{"solidity": 0.9955514816642843, "top": 390, "right": 3175, "bottom": 2040, "left": 745}, {"solidity": 0.9952535469505731, "top": 4075, "right": 3150, "bottom": 5715, "left": 725}, {"solidity": 0.9966399334485851, "top": 2235, "right": 3155, "bottom": 3860, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709402f.jpg"} -{"rects": [{"solidity": 0.9955514947320332, "top": 335, "right": 2400, "bottom": 1560, "left": 585}, {"solidity": 0.9975460685495431, "top": 1730, "right": 2405, "bottom": 2945, "left": 595}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715882f.jpg"} -{"rects": [{"solidity": 0.9955519598876957, "top": 805, "right": 3875, "bottom": 3235, "left": 2250}, {"solidity": 0.9963151773040555, "top": 800, "right": 2055, "bottom": 3225, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733250f.jpg"} -{"rects": [{"solidity": 0.9955523154498684, "top": 2240, "right": 3255, "bottom": 3890, "left": 820}, {"solidity": 0.9956324585404704, "top": 400, "right": 3290, "bottom": 2040, "left": 850}, {"solidity": 0.9961454807531435, "top": 4105, "right": 3225, "bottom": 5730, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727211f.jpg"} -{"rects": [{"solidity": 0.9955524883061115, "top": 365, "right": 3320, "bottom": 2005, "left": 885}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727019f.jpg"} -{"rects": [{"solidity": 0.9955528273177867, "top": 435, "right": 3205, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703113f.jpg"} -{"rects": [{"solidity": 0.9955529700730399, "top": 1720, "right": 3170, "bottom": 3350, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730886f.jpg"} -{"rects": [{"solidity": 0.9955530995876808, "top": 435, "right": 3225, "bottom": 2060, "left": 810}, {"solidity": 0.995478950201756, "top": 2205, "right": 2930, "bottom": 3645, "left": 1075}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718128f.jpg"} -{"rects": [{"solidity": 0.9955531939446148, "top": 665, "right": 3160, "bottom": 2475, "left": 555}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709980f.jpg"} -{"rects": [{"solidity": 0.9955533210065615, "top": 1065, "right": 3560, "bottom": 4785, "left": 465}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/734425f.jpg"} -{"rects": [{"solidity": 0.99555348461276, "top": 565, "right": 4915, "bottom": 3600, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713970f.jpg"} -{"rects": [{"solidity": 0.9955536623460922, "top": 2440, "right": 2485, "bottom": 3930, "left": 385}, {"solidity": 0.9974741825665722, "top": 630, "right": 2495, "bottom": 2115, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716023f.jpg"} -{"rects": [{"solidity": 0.9955537107962442, "top": 825, "right": 3880, "bottom": 3295, "left": 2200}, {"solidity": 0.9965601933799093, "top": 790, "right": 2010, "bottom": 3215, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734757f.jpg"} -{"rects": [{"solidity": 0.9955540779274963, "top": 415, "right": 3090, "bottom": 2015, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728487f.jpg"} -{"rects": [{"solidity": 0.9955542311703667, "top": 4140, "right": 3085, "bottom": 5585, "left": 1255}, {"solidity": 0.9964939121565628, "top": 2370, "right": 3085, "bottom": 3800, "left": 1285}, {"solidity": 0.9987239472564866, "top": 540, "right": 3080, "bottom": 1930, "left": 1270}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727741f.jpg"} -{"rects": [{"solidity": 0.995554481758879, "top": 2240, "right": 3085, "bottom": 3860, "left": 660}, {"solidity": 0.9945315537125826, "top": 370, "right": 3095, "bottom": 2005, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729180f.jpg"} -{"rects": [{"solidity": 0.9955546090084243, "top": 530, "right": 3180, "bottom": 2110, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711498f.jpg"} -{"rects": [{"solidity": 0.9955547181621058, "top": 2245, "right": 3185, "bottom": 3900, "left": 735}, {"solidity": 0.9953545790348455, "top": 415, "right": 3200, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732002f.jpg"} -{"rects": [{"solidity": 0.9955550453742499, "top": 2060, "right": 3270, "bottom": 3715, "left": 825}, {"solidity": 0.9938156347865603, "top": 460, "right": 3080, "bottom": 1875, "left": 1265}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734750f.jpg"} -{"rects": [{"solidity": 0.9955550468341632, "top": 650, "right": 2655, "bottom": 2100, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705309f.jpg"} -{"rects": [{"solidity": 0.9955550783067647, "top": 775, "right": 2035, "bottom": 3180, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732401f.jpg"} -{"rects": [{"solidity": 0.9955551652297799, "top": 640, "right": 5180, "bottom": 2065, "left": 3360}, {"solidity": 0.9958650760600641, "top": 2135, "right": 5190, "bottom": 3555, "left": 3370}, {"solidity": 0.9966110905273559, "top": 665, "right": 2700, "bottom": 2075, "left": 885}, {"solidity": 0.9951944706749, "top": 2120, "right": 2695, "bottom": 3550, "left": 905}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731964f.jpg"} -{"rects": [{"solidity": 0.9955552553798456, "top": 2235, "right": 3110, "bottom": 3875, "left": 685}, {"solidity": 0.9960536573215978, "top": 370, "right": 3125, "bottom": 2000, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729645f.jpg"} -{"rects": [{"solidity": 0.9955552948690376, "top": 800, "right": 2045, "bottom": 3220, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714819f.jpg"} -{"rects": [{"solidity": 0.9955554732495047, "top": 530, "right": 2550, "bottom": 1925, "left": 595}, {"solidity": 0.9885271596690477, "top": 2145, "right": 2395, "bottom": 3370, "left": 775}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706919f.jpg"} -{"rects": [{"solidity": 0.9955557956353493, "top": 2285, "right": 3155, "bottom": 3705, "left": 1335}, {"solidity": 0.9953582059042025, "top": 510, "right": 3140, "bottom": 1905, "left": 1325}, {"solidity": 0.9945798610568228, "top": 4135, "right": 3110, "bottom": 5490, "left": 1305}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/734351f.jpg"} -{"rects": [{"solidity": 0.9955559028354317, "top": 660, "right": 2680, "bottom": 2075, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731993f.jpg"} -{"rects": [{"solidity": 0.9955559385055891, "top": 415, "right": 3155, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/713425f.jpg"} -{"rects": [{"solidity": 0.9955560112866693, "top": 1190, "right": 2510, "bottom": 4225, "left": 245}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507679.jpg"} -{"rects": [{"solidity": 0.9955560976150614, "top": 640, "right": 3250, "bottom": 2685, "left": 410}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729267f.jpg"} -{"rects": [{"solidity": 0.9955561672926048, "top": 830, "right": 3910, "bottom": 3235, "left": 2285}, {"solidity": 0.995317057184991, "top": 815, "right": 5785, "bottom": 3220, "left": 4180}, {"solidity": 0.9956836608853087, "top": 810, "right": 2030, "bottom": 3220, "left": 410}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731717f.jpg"} -{"rects": [{"solidity": 0.9955562933357169, "top": 375, "right": 3160, "bottom": 2025, "left": 730}, {"solidity": 0.9956981301805564, "top": 2270, "right": 3155, "bottom": 3905, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710784f.jpg"} -{"rects": [{"solidity": 0.9955563167372925, "top": 535, "right": 5070, "bottom": 3575, "left": 1040}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729015f.jpg"} -{"rects": [{"solidity": 0.9955566555199347, "top": 560, "right": 1540, "bottom": 2370, "left": 325}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716455f.jpg"} -{"rects": [{"solidity": 0.9955567716352142, "top": 495, "right": 2185, "bottom": 2585, "left": 705}, {"solidity": 0.9965382361921423, "top": 500, "right": 3920, "bottom": 2595, "left": 2455}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716174f.jpg"} -{"rects": [{"solidity": 0.9955569427944441, "top": 4120, "right": 3210, "bottom": 5775, "left": 755}, {"solidity": 0.996110588197757, "top": 400, "right": 3225, "bottom": 2045, "left": 790}, {"solidity": 0.9941243973740896, "top": 2245, "right": 3220, "bottom": 3900, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706299f.jpg"} -{"rects": [{"solidity": 0.995557019875975, "top": 2335, "right": 3130, "bottom": 3945, "left": 720}, {"solidity": 0.9967251661159487, "top": 435, "right": 3125, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718250f.jpg"} -{"rects": [{"solidity": 0.9955570499595205, "top": 2325, "right": 3100, "bottom": 3925, "left": 685}, {"solidity": 0.9939796838843785, "top": 410, "right": 3125, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730638f.jpg"} -{"rects": [{"solidity": 0.9955571177148869, "top": 2430, "right": 3600, "bottom": 4285, "left": 855}, {"solidity": 0.9949751042723052, "top": 420, "right": 3625, "bottom": 2275, "left": 890}], "shape": {"h": 6895, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711250f.jpg"} -{"rects": [{"solidity": 0.9955571516193515, "top": 420, "right": 3165, "bottom": 2085, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705475f.jpg"} -{"rects": [{"solidity": 0.9955572225850886, "top": 2245, "right": 3220, "bottom": 3860, "left": 805}, {"solidity": 0.9961322241170254, "top": 4105, "right": 3195, "bottom": 5715, "left": 770}, {"solidity": 0.994923428928005, "top": 400, "right": 3230, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734127f.jpg"} -{"rects": [{"solidity": 0.9955574887817796, "top": 2190, "right": 3220, "bottom": 3815, "left": 785}, {"solidity": 0.9961699822761523, "top": 4085, "right": 3210, "bottom": 5705, "left": 780}, {"solidity": 0.9973362435545166, "top": 310, "right": 3225, "bottom": 1920, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731547f.jpg"} -{"rects": [{"solidity": 0.9955575691219593, "top": 395, "right": 3195, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700019f.jpg"} -{"rects": [{"solidity": 0.9955576392212918, "top": 435, "right": 3330, "bottom": 2035, "left": 915}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725923f.jpg"} -{"rects": [{"solidity": 0.9955576679340938, "top": 725, "right": 2685, "bottom": 1960, "left": 1065}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710938f.jpg"} -{"rects": [{"solidity": 0.9955579321030406, "top": 885, "right": 3840, "bottom": 3315, "left": 2205}, {"solidity": 0.9964856529857388, "top": 870, "right": 2000, "bottom": 3295, "left": 390}, {"solidity": 0.9971922056928435, "top": 905, "right": 5695, "bottom": 3315, "left": 4080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729345f.jpg"} -{"rects": [{"solidity": 0.9955581277580844, "top": 665, "right": 2775, "bottom": 2085, "left": 930}, {"solidity": 0.9978568794170712, "top": 2105, "right": 2745, "bottom": 3510, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727364f.jpg"} -{"rects": [{"solidity": 0.9955584003743031, "top": 390, "right": 3195, "bottom": 2015, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706863f.jpg"} -{"rects": [{"solidity": 0.995558421090336, "top": 815, "right": 2050, "bottom": 3235, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719770f.jpg"} -{"rects": [{"solidity": 0.9955584916188577, "top": 2270, "right": 3200, "bottom": 3895, "left": 765}, {"solidity": 0.9968976048866741, "top": 420, "right": 3200, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707977f.jpg"} -{"rects": [{"solidity": 0.9955587890011409, "top": 435, "right": 3180, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/721532f.jpg"} -{"rects": [{"solidity": 0.9955590734066676, "top": 830, "right": 1965, "bottom": 3245, "left": 345}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708477f.jpg"} -{"rects": [{"solidity": 0.9955592853696518, "top": 1290, "right": 3395, "bottom": 5015, "left": 425}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723092f.jpg"} -{"rects": [{"solidity": 0.9955595935812454, "top": 395, "right": 3225, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719779f.jpg"} -{"rects": [{"solidity": 0.995559848062538, "top": 365, "right": 3195, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700094f.jpg"} -{"rects": [{"solidity": 0.9955598941932233, "top": 375, "right": 3365, "bottom": 2270, "left": 605}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/724717f.jpg"} -{"rects": [{"solidity": 0.9955599117863269, "top": 2095, "right": 2675, "bottom": 3525, "left": 860}, {"solidity": 0.9956775310293279, "top": 600, "right": 2680, "bottom": 2025, "left": 870}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731987f.jpg"} -{"rects": [{"solidity": 0.9955600188155282, "top": 1125, "right": 3470, "bottom": 5165, "left": 355}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708527f.jpg"} -{"rects": [{"solidity": 0.9955600325678929, "top": 1000, "right": 3500, "bottom": 4970, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723763f.jpg"} -{"rects": [{"solidity": 0.9955601415713581, "top": 905, "right": 2390, "bottom": 3590, "left": 600}], "shape": {"h": 4410, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/711386f.jpg"} -{"rects": [{"solidity": 0.995560526103171, "top": 930, "right": 1920, "bottom": 2900, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701109f.jpg"} -{"rects": [{"solidity": 0.9955607453116034, "top": 710, "right": 5230, "bottom": 2100, "left": 3430}, {"solidity": 0.9969107834253234, "top": 705, "right": 2720, "bottom": 2065, "left": 920}, {"solidity": 0.9956629555697323, "top": 2150, "right": 5235, "bottom": 3510, "left": 3430}, {"solidity": 0.9961842075243549, "top": 2095, "right": 2695, "bottom": 3405, "left": 990}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731349f.jpg"} -{"rects": [{"solidity": 0.9955608111347257, "top": 2280, "right": 3175, "bottom": 3930, "left": 735}, {"solidity": 0.9960874792837877, "top": 450, "right": 3180, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734171f.jpg"} -{"rects": [{"solidity": 0.9955609899799438, "top": 695, "right": 2490, "bottom": 2195, "left": 390}, {"solidity": 0.9972492766616406, "top": 2470, "right": 2465, "bottom": 3955, "left": 385}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716010f.jpg"} -{"rects": [{"solidity": 0.9955612871862045, "top": 1305, "right": 3450, "bottom": 4740, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723879f.jpg"} -{"rects": [{"solidity": 0.9955613568438946, "top": 420, "right": 3180, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717844f.jpg"} -{"rects": [{"solidity": 0.9955614321509769, "top": 640, "right": 2690, "bottom": 3430, "left": 895}, {"solidity": 0.9954814214241927, "top": 620, "right": 5380, "bottom": 2050, "left": 3555}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704281f.jpg"} -{"rects": [{"solidity": 0.9955618738981117, "top": 475, "right": 2740, "bottom": 1865, "left": 955}], "shape": {"h": 3860, "w": 6005}, "file": "/usr/local/google/home/danvk/milstein/728124f.jpg"} -{"rects": [{"solidity": 0.9955620260454996, "top": 4100, "right": 3195, "bottom": 5735, "left": 765}, {"solidity": 0.9947491154970057, "top": 2240, "right": 3205, "bottom": 3870, "left": 780}, {"solidity": 0.9959424049642801, "top": 420, "right": 3215, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724321f.jpg"} -{"rects": [{"solidity": 0.9955620797553122, "top": 655, "right": 4655, "bottom": 3485, "left": 2685}, {"solidity": 0.9962999335376802, "top": 2105, "right": 2545, "bottom": 3505, "left": 725}, {"solidity": 0.9945183047682761, "top": 635, "right": 2565, "bottom": 2040, "left": 760}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726838f.jpg"} -{"rects": [{"solidity": 0.9955622157119729, "top": 695, "right": 2675, "bottom": 2130, "left": 830}, {"solidity": 0.9965996227247116, "top": 2135, "right": 5225, "bottom": 3550, "left": 3405}, {"solidity": 0.996567223528109, "top": 2155, "right": 2630, "bottom": 3570, "left": 850}, {"solidity": 0.996443055817054, "top": 640, "right": 5190, "bottom": 2065, "left": 3445}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706509f.jpg"} -{"rects": [{"solidity": 0.9955622218236954, "top": 435, "right": 3245, "bottom": 2065, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731862f.jpg"} -{"rects": [{"solidity": 0.9955623535914088, "top": 4030, "right": 3160, "bottom": 5665, "left": 720}, {"solidity": 0.9958398888063087, "top": 2230, "right": 3175, "bottom": 3860, "left": 745}, {"solidity": 0.9951653877208069, "top": 420, "right": 3185, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734499f.jpg"} -{"rects": [{"solidity": 0.9955623975317248, "top": 915, "right": 3910, "bottom": 3345, "left": 2295}, {"solidity": 0.995348383953224, "top": 900, "right": 5730, "bottom": 3325, "left": 4115}, {"solidity": 0.996644448353825, "top": 895, "right": 2015, "bottom": 3305, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722297f.jpg"} -{"rects": [{"solidity": 0.9955625980365534, "top": 735, "right": 3875, "bottom": 3175, "left": 2245}, {"solidity": 0.9973650472552039, "top": 745, "right": 5705, "bottom": 3170, "left": 4090}, {"solidity": 0.9972252032756137, "top": 745, "right": 2015, "bottom": 3170, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731142f.jpg"} -{"rects": [{"solidity": 0.9955628594905506, "top": 755, "right": 3855, "bottom": 3160, "left": 2260}, {"solidity": 0.9964844786415494, "top": 765, "right": 2030, "bottom": 3150, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717753f.jpg"} -{"rects": [{"solidity": 0.9955629250030331, "top": 235, "right": 2345, "bottom": 1450, "left": 545}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716328f.jpg"} -{"rects": [{"solidity": 0.9955629795897061, "top": 2260, "right": 3010, "bottom": 3865, "left": 595}, {"solidity": 0.9947922149699968, "top": 395, "right": 3020, "bottom": 1990, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729159f.jpg"} -{"rects": [{"solidity": 0.9955631760049793, "top": 790, "right": 3345, "bottom": 2750, "left": 600}, {"solidity": 0.9959200886596118, "top": 3375, "right": 3295, "bottom": 5305, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715206f.jpg"} -{"rects": [{"solidity": 0.9955631763007741, "top": 590, "right": 5350, "bottom": 2020, "left": 3515}, {"solidity": 0.995726101378818, "top": 590, "right": 2760, "bottom": 2015, "left": 935}, {"solidity": 0.9973229340248676, "top": 2095, "right": 2750, "bottom": 3495, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703826f.jpg"} -{"rects": [{"solidity": 0.995563422312502, "top": 785, "right": 3215, "bottom": 2665, "left": 600}, {"solidity": 0.9927209723965541, "top": 3430, "right": 3210, "bottom": 5195, "left": 525}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701800f.jpg"} -{"rects": [{"solidity": 0.9955634513824169, "top": 390, "right": 3065, "bottom": 2010, "left": 645}, {"solidity": 0.9966777951808411, "top": 2255, "right": 3065, "bottom": 3850, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729749f.jpg"} -{"rects": [{"solidity": 0.9955635965899459, "top": 535, "right": 5180, "bottom": 3785, "left": 1135}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702686f.jpg"} -{"rects": [{"solidity": 0.9955636419204799, "top": 650, "right": 2855, "bottom": 3520, "left": 1010}, {"solidity": 0.9953909536073822, "top": 625, "right": 5275, "bottom": 2055, "left": 3430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702698f.jpg"} -{"rects": [{"solidity": 0.9955640624393777, "top": 2150, "right": 3215, "bottom": 3770, "left": 800}, {"solidity": 0.9952763068126441, "top": 4015, "right": 3220, "bottom": 5620, "left": 790}, {"solidity": 0.9968932916050126, "top": 300, "right": 3220, "bottom": 1910, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707974f.jpg"} -{"rects": [{"solidity": 0.9955641279133632, "top": 415, "right": 3190, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717951f.jpg"} -{"rects": [{"solidity": 0.9955641796837101, "top": 685, "right": 3285, "bottom": 2205, "left": 1135}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508187.jpg"} -{"rects": [{"solidity": 0.9955645344273812, "top": 765, "right": 4210, "bottom": 3055, "left": 920}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709592f.jpg"} -{"rects": [{"solidity": 0.9955646671529106, "top": 845, "right": 3850, "bottom": 3250, "left": 2250}, {"solidity": 0.9970412321847073, "top": 845, "right": 2025, "bottom": 3245, "left": 450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720329f.jpg"} -{"rects": [{"solidity": 0.9955648274922295, "top": 2190, "right": 3345, "bottom": 3815, "left": 930}, {"solidity": 0.9961184855901629, "top": 385, "right": 3350, "bottom": 2000, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705505f.jpg"} -{"rects": [{"solidity": 0.9955648486658831, "top": 390, "right": 3145, "bottom": 2025, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729552f.jpg"} -{"rects": [{"solidity": 0.9955651613441121, "top": 2335, "right": 3125, "bottom": 3965, "left": 700}, {"solidity": 0.9951820007307838, "top": 400, "right": 3140, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730261f.jpg"} -{"rects": [{"solidity": 0.9955652900255689, "top": 2155, "right": 3205, "bottom": 3800, "left": 765}, {"solidity": 0.9950610756667709, "top": 390, "right": 3205, "bottom": 2045, "left": 785}, {"solidity": 0.9960300884325326, "top": 3915, "right": 3150, "bottom": 5550, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733189f.jpg"} -{"rects": [{"solidity": 0.9955653071589087, "top": 805, "right": 2155, "bottom": 3195, "left": 540}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708072f.jpg"} -{"rects": [{"solidity": 0.9955656463539571, "top": 525, "right": 2860, "bottom": 3630, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712489f.jpg"} -{"rects": [{"solidity": 0.9955658855803574, "top": 575, "right": 2675, "bottom": 2000, "left": 850}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703319f.jpg"} -{"rects": [{"solidity": 0.9955661455733904, "top": 375, "right": 3185, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715510f.jpg"} -{"rects": [{"solidity": 0.9955665673577755, "top": 645, "right": 2760, "bottom": 2045, "left": 970}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707438f.jpg"} -{"rects": [{"solidity": 0.9955666465209678, "top": 850, "right": 5400, "bottom": 2880, "left": 2180}, {"solidity": 0.9970041863745479, "top": 805, "right": 2020, "bottom": 3220, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717207f.jpg"} -{"rects": [{"solidity": 0.9955666818095413, "top": 795, "right": 2000, "bottom": 3225, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734634f.jpg"} -{"rects": [{"solidity": 0.9955667499888692, "top": 2210, "right": 3150, "bottom": 3875, "left": 710}, {"solidity": 0.9966473556951139, "top": 415, "right": 3150, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729684f.jpg"} -{"rects": [{"solidity": 0.9955669345883532, "top": 315, "right": 3785, "bottom": 2740, "left": 765}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509205.jpg"} -{"rects": [{"solidity": 0.9955673320612071, "top": 420, "right": 3205, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713559f.jpg"} -{"rects": [{"solidity": 0.9955673465438797, "top": 930, "right": 2300, "bottom": 3660, "left": 480}], "shape": {"h": 4425, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/708362f.jpg"} -{"rects": [{"solidity": 0.9955681362366009, "top": 805, "right": 1925, "bottom": 3225, "left": 330}, {"solidity": 0.9965777761767374, "top": 820, "right": 3720, "bottom": 3225, "left": 2120}, {"solidity": 0.9957924357196202, "top": 830, "right": 5510, "bottom": 3230, "left": 3925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730130f.jpg"} -{"rects": [{"solidity": 0.995568204250839, "top": 900, "right": 1990, "bottom": 3305, "left": 390}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728945f.jpg"} -{"rects": [{"solidity": 0.9955687181040022, "top": 1065, "right": 2785, "bottom": 2130, "left": 1170}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509595.jpg"} -{"rects": [{"solidity": 0.9955687476684022, "top": 2375, "right": 3105, "bottom": 4015, "left": 690}, {"solidity": 0.9955277609725282, "top": 545, "right": 3115, "bottom": 2140, "left": 720}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710716f.jpg"} -{"rects": [{"solidity": 0.9955687726484953, "top": 675, "right": 2155, "bottom": 3085, "left": 535}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709201f.jpg"} -{"rects": [{"solidity": 0.9955701362354998, "top": 790, "right": 2005, "bottom": 3200, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724310f.jpg"} -{"rects": [{"solidity": 0.9955704742357265, "top": 1175, "right": 1905, "bottom": 3785, "left": 275}], "shape": {"h": 4620, "w": 2945}, "file": "/usr/local/google/home/danvk/milstein/1507498.jpg"} -{"rects": [{"solidity": 0.9955704784927927, "top": 840, "right": 3410, "bottom": 2805, "left": 320}, {"solidity": 0.9965380063124671, "top": 3020, "right": 3405, "bottom": 5415, "left": 1805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723796f.jpg"} -{"rects": [{"solidity": 0.9955705338082848, "top": 2200, "right": 3230, "bottom": 3860, "left": 785}, {"solidity": 0.9961420350442569, "top": 4035, "right": 3195, "bottom": 5665, "left": 765}, {"solidity": 0.9947422440838143, "top": 405, "right": 3245, "bottom": 2040, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719586f.jpg"} -{"rects": [{"solidity": 0.9955707780175249, "top": 910, "right": 3565, "bottom": 4865, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733573f.jpg"} -{"rects": [{"solidity": 0.995571006453954, "top": 415, "right": 3185, "bottom": 2025, "left": 765}, {"solidity": 0.9796063998837106, "top": 2210, "right": 3170, "bottom": 3830, "left": 765}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/718197f.jpg"} -{"rects": [{"solidity": 0.9955711608678013, "top": 565, "right": 5110, "bottom": 3425, "left": 3285}, {"solidity": 0.9949066702476643, "top": 2035, "right": 2720, "bottom": 3465, "left": 880}, {"solidity": 0.9985534334827953, "top": 620, "right": 2695, "bottom": 2020, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705900f.jpg"} -{"rects": [{"solidity": 0.9955713642560882, "top": 490, "right": 3160, "bottom": 2115, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701650f.jpg"} -{"rects": [{"solidity": 0.9955716866371667, "top": 385, "right": 3200, "bottom": 1980, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724693f.jpg"} -{"rects": [{"solidity": 0.9955716977101016, "top": 770, "right": 3875, "bottom": 3190, "left": 2240}, {"solidity": 0.996307977556134, "top": 750, "right": 5695, "bottom": 3170, "left": 4070}, {"solidity": 0.995806276616825, "top": 780, "right": 2050, "bottom": 3195, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732486f.jpg"} -{"rects": [{"solidity": 0.9955717545234172, "top": 690, "right": 2745, "bottom": 3505, "left": 920}, {"solidity": 0.9966723570003125, "top": 2060, "right": 5175, "bottom": 3500, "left": 3350}, {"solidity": 0.997620577486848, "top": 650, "right": 5155, "bottom": 2045, "left": 3350}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702875f.jpg"} -{"rects": [{"solidity": 0.9955718410523999, "top": 385, "right": 3035, "bottom": 2005, "left": 610}, {"solidity": 0.9950470643914495, "top": 2270, "right": 3035, "bottom": 3870, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729216f.jpg"} -{"rects": [{"solidity": 0.9955718594603408, "top": 550, "right": 3140, "bottom": 2160, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709707f.jpg"} -{"rects": [{"solidity": 0.9955720537313626, "top": 2270, "right": 3175, "bottom": 3890, "left": 750}, {"solidity": 0.9955439668424433, "top": 430, "right": 3170, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724608f.jpg"} -{"rects": [{"solidity": 0.9955720795734738, "top": 430, "right": 3120, "bottom": 2050, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728327f.jpg"} -{"rects": [{"solidity": 0.9955721199837092, "top": 2095, "right": 2805, "bottom": 3550, "left": 945}, {"solidity": 0.9964929236481249, "top": 2070, "right": 5300, "bottom": 3505, "left": 3455}, {"solidity": 0.9951264354398611, "top": 655, "right": 2770, "bottom": 2085, "left": 935}, {"solidity": 0.9954179688461254, "top": 595, "right": 5265, "bottom": 2020, "left": 3450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703566f.jpg"} -{"rects": [{"solidity": 0.9955723385010469, "top": 3995, "right": 3160, "bottom": 5640, "left": 715}, {"solidity": 0.996173068410011, "top": 2180, "right": 3155, "bottom": 3810, "left": 735}, {"solidity": 0.9959668976358675, "top": 355, "right": 3165, "bottom": 1990, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718126f.jpg"} -{"rects": [{"solidity": 0.9955730367733512, "top": 465, "right": 3010, "bottom": 2075, "left": 595}, {"solidity": 0.9956565264066071, "top": 2350, "right": 3025, "bottom": 3940, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728617f.jpg"} -{"rects": [{"solidity": 0.9955733240072916, "top": 715, "right": 3360, "bottom": 2650, "left": 635}, {"solidity": 0.9957575298962328, "top": 3335, "right": 3305, "bottom": 5245, "left": 595}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714023f.jpg"} -{"rects": [{"solidity": 0.9955733266369838, "top": 2205, "right": 3195, "bottom": 3825, "left": 765}, {"solidity": 0.9968633772589995, "top": 445, "right": 3195, "bottom": 2055, "left": 770}, {"solidity": 0.9935581721517336, "top": 3975, "right": 3190, "bottom": 5590, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730646f.jpg"} -{"rects": [{"solidity": 0.9955733455864508, "top": 4100, "right": 3135, "bottom": 5720, "left": 715}, {"solidity": 0.9967197141929198, "top": 2220, "right": 3120, "bottom": 3830, "left": 700}, {"solidity": 0.9971021904031364, "top": 370, "right": 3105, "bottom": 1965, "left": 695}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/728902f.jpg"} -{"rects": [{"solidity": 0.9955733699557656, "top": 390, "right": 3180, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722689f.jpg"} -{"rects": [{"solidity": 0.9955737811625334, "top": 805, "right": 3925, "bottom": 3220, "left": 2300}, {"solidity": 0.9984770875363534, "top": 815, "right": 2040, "bottom": 3215, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711922f.jpg"} -{"rects": [{"solidity": 0.9955738548636129, "top": 2095, "right": 2780, "bottom": 3520, "left": 970}, {"solidity": 0.9949149111590546, "top": 610, "right": 2805, "bottom": 2010, "left": 970}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705133f.jpg"} -{"rects": [{"solidity": 0.9955739033240563, "top": 400, "right": 3230, "bottom": 2025, "left": 795}, {"solidity": 0.9967741832045892, "top": 4115, "right": 3175, "bottom": 5740, "left": 755}, {"solidity": 0.9960327641723646, "top": 2260, "right": 3210, "bottom": 3890, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708022f.jpg"} -{"rects": [{"solidity": 0.9955739367826402, "top": 540, "right": 3125, "bottom": 2155, "left": 715}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723987f.jpg"} -{"rects": [{"solidity": 0.9955740326326521, "top": 625, "right": 5040, "bottom": 3660, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733893f.jpg"} -{"rects": [{"solidity": 0.9955741151435128, "top": 750, "right": 2055, "bottom": 3185, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722685f.jpg"} -{"rects": [{"solidity": 0.9955745183033384, "top": 415, "right": 3145, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/730311f.jpg"} -{"rects": [{"solidity": 0.9955747402078338, "top": 395, "right": 3070, "bottom": 2040, "left": 625}, {"solidity": 0.9949672243294718, "top": 2300, "right": 3055, "bottom": 3940, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729474f.jpg"} -{"rects": [{"solidity": 0.9955748660096403, "top": 2195, "right": 3225, "bottom": 3825, "left": 790}, {"solidity": 0.9967037043009885, "top": 385, "right": 3215, "bottom": 2000, "left": 790}, {"solidity": 0.9948091108048959, "top": 4040, "right": 3225, "bottom": 5670, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732321f.jpg"} -{"rects": [{"solidity": 0.9955749175607795, "top": 385, "right": 3190, "bottom": 1990, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724182f.jpg"} -{"rects": [{"solidity": 0.9955751045224938, "top": 405, "right": 3110, "bottom": 2010, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/733622f.jpg"} -{"rects": [{"solidity": 0.9955751512139848, "top": 765, "right": 3225, "bottom": 2420, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718177f.jpg"} -{"rects": [{"solidity": 0.9955753944946943, "top": 825, "right": 3955, "bottom": 3235, "left": 2335}, {"solidity": 0.9968151095909672, "top": 830, "right": 2140, "bottom": 3225, "left": 530}, {"solidity": 0.9940990034308119, "top": 850, "right": 5765, "bottom": 3265, "left": 4150}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708000f.jpg"} -{"rects": [{"solidity": 0.9955755841971967, "top": 790, "right": 4345, "bottom": 3515, "left": 2525}, {"solidity": 0.9957866683098917, "top": 795, "right": 6225, "bottom": 3510, "left": 4415}, {"solidity": 0.9952353765505787, "top": 830, "right": 2435, "bottom": 3535, "left": 635}], "shape": {"h": 4425, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/708852f.jpg"} -{"rects": [{"solidity": 0.995575841677989, "top": 2125, "right": 2595, "bottom": 3560, "left": 755}, {"solidity": 0.9950902154660646, "top": 650, "right": 2610, "bottom": 2085, "left": 780}, {"solidity": 0.9959544441693489, "top": 660, "right": 5210, "bottom": 2065, "left": 3385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702772f.jpg"} -{"rects": [{"solidity": 0.995575854079463, "top": 2070, "right": 3120, "bottom": 3730, "left": 675}, {"solidity": 0.9948323347271648, "top": 290, "right": 3115, "bottom": 1910, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734106f.jpg"} -{"rects": [{"solidity": 0.9955764085967295, "top": 625, "right": 2490, "bottom": 2115, "left": 400}, {"solidity": 0.9955766823894884, "top": 2470, "right": 2475, "bottom": 3955, "left": 385}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716066f.jpg"} -{"rects": [{"solidity": 0.9955766504999469, "top": 600, "right": 2635, "bottom": 3470, "left": 790}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704121f.jpg"} -{"rects": [{"solidity": 0.9955769174063044, "top": 600, "right": 2815, "bottom": 2010, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705512f.jpg"} -{"rects": [{"solidity": 0.9955770532848173, "top": 760, "right": 2570, "bottom": 2190, "left": 755}, {"solidity": 0.9962868925840586, "top": 2195, "right": 5260, "bottom": 3620, "left": 3450}, {"solidity": 0.9939444269643216, "top": 765, "right": 5245, "bottom": 2145, "left": 3470}, {"solidity": 0.9929315251783569, "top": 2230, "right": 2525, "bottom": 3565, "left": 790}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727973f.jpg"} -{"rects": [{"solidity": 0.9955770608684883, "top": 555, "right": 4945, "bottom": 3590, "left": 1185}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709649f.jpg"} -{"rects": [{"solidity": 0.9955771477344737, "top": 865, "right": 3235, "bottom": 2305, "left": 1195}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507531.jpg"} -{"rects": [{"solidity": 0.9955773486380208, "top": 2245, "right": 3095, "bottom": 3870, "left": 655}, {"solidity": 0.9961985916930299, "top": 4100, "right": 3090, "bottom": 5730, "left": 660}, {"solidity": 0.9973473693675756, "top": 410, "right": 3100, "bottom": 2020, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710476f.jpg"} -{"rects": [{"solidity": 0.9955774439793155, "top": 445, "right": 3180, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734245f.jpg"} -{"rects": [{"solidity": 0.9955774498685583, "top": 4095, "right": 3195, "bottom": 5715, "left": 785}, {"solidity": 0.9930698387329202, "top": 2260, "right": 3190, "bottom": 3865, "left": 785}, {"solidity": 0.9893751920047584, "top": 415, "right": 3200, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701065f.jpg"} -{"rects": [{"solidity": 0.9955775738271875, "top": 730, "right": 2605, "bottom": 2145, "left": 810}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725323f.jpg"} -{"rects": [{"solidity": 0.9955780565950058, "top": 710, "right": 2590, "bottom": 2145, "left": 780}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727448f.jpg"} -{"rects": [{"solidity": 0.9955782368382436, "top": 2315, "right": 3205, "bottom": 3930, "left": 795}, {"solidity": 0.9973954363803856, "top": 420, "right": 3190, "bottom": 2015, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/734005f.jpg"} -{"rects": [{"solidity": 0.9955783938814532, "top": 2165, "right": 2880, "bottom": 3440, "left": 1140}, {"solidity": 0.9942670461747658, "top": 560, "right": 2845, "bottom": 1830, "left": 1115}, {"solidity": 0.9924939367295516, "top": 560, "right": 5045, "bottom": 1820, "left": 3330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732774f.jpg"} -{"rects": [{"solidity": 0.9955784990045835, "top": 870, "right": 3025, "bottom": 2330, "left": 1900}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507639.jpg"} -{"rects": [{"solidity": 0.9955785386752352, "top": 830, "right": 2010, "bottom": 3210, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718196f.jpg"} -{"rects": [{"solidity": 0.9955787524739833, "top": 420, "right": 3230, "bottom": 2060, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702422f.jpg"} -{"rects": [{"solidity": 0.9955787935873285, "top": 455, "right": 3150, "bottom": 2105, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706476f.jpg"} -{"rects": [{"solidity": 0.9955788132469409, "top": 650, "right": 2415, "bottom": 3695, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713424f.jpg"} -{"rects": [{"solidity": 0.9955789770098759, "top": 990, "right": 3750, "bottom": 3040, "left": 2210}, {"solidity": 0.995877674374802, "top": 1025, "right": 1980, "bottom": 2985, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701917f.jpg"} -{"rects": [{"solidity": 0.9955790680301898, "top": 420, "right": 3135, "bottom": 2050, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729346f.jpg"} -{"rects": [{"solidity": 0.9955791362942205, "top": 2255, "right": 3095, "bottom": 3940, "left": 635}, {"solidity": 0.9951651631105854, "top": 390, "right": 3120, "bottom": 2020, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728540f.jpg"} -{"rects": [{"solidity": 0.9955792471863442, "top": 705, "right": 3895, "bottom": 3115, "left": 2305}, {"solidity": 0.9944169745255759, "top": 700, "right": 2025, "bottom": 3100, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726896f.jpg"} -{"rects": [{"solidity": 0.9955793308281781, "top": 820, "right": 2030, "bottom": 3225, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720680f.jpg"} -{"rects": [{"solidity": 0.9955795057466426, "top": 2280, "right": 3180, "bottom": 3885, "left": 755}, {"solidity": 0.9982251455119672, "top": 455, "right": 3175, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734182f.jpg"} -{"rects": [{"solidity": 0.9955802796522495, "top": 760, "right": 3180, "bottom": 2675, "left": 500}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712418f.jpg"} -{"rects": [{"solidity": 0.9955802988127024, "top": 1445, "right": 3325, "bottom": 2380, "left": 2130}, {"solidity": 0.9938420218493291, "top": 405, "right": 3310, "bottom": 1310, "left": 2150}, {"solidity": 0.9921468278478779, "top": 1480, "right": 1765, "bottom": 2375, "left": 635}, {"solidity": 0.9939505689496217, "top": 415, "right": 1790, "bottom": 1305, "left": 660}], "shape": {"h": 2560, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727134f.jpg"} -{"rects": [{"solidity": 0.9955803616526921, "top": 635, "right": 2660, "bottom": 2030, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723345f.jpg"} -{"rects": [{"solidity": 0.9955808239889127, "top": 3680, "right": 3170, "bottom": 5340, "left": 725}, {"solidity": 0.996966202146404, "top": 1940, "right": 3160, "bottom": 3555, "left": 730}, {"solidity": 0.9959926652381738, "top": 345, "right": 2840, "bottom": 1720, "left": 1060}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734419f.jpg"} -{"rects": [{"solidity": 0.9955809545911658, "top": 675, "right": 2700, "bottom": 2110, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703166f.jpg"} -{"rects": [{"solidity": 0.9955809637522225, "top": 2205, "right": 3205, "bottom": 3840, "left": 815}, {"solidity": 0.9961620762087987, "top": 320, "right": 3205, "bottom": 1950, "left": 835}, {"solidity": 0.9953901822988235, "top": 4110, "right": 3170, "bottom": 5745, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721689f.jpg"} -{"rects": [{"solidity": 0.995580970514074, "top": 460, "right": 3160, "bottom": 2085, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730895f.jpg"} -{"rects": [{"solidity": 0.9955810271715599, "top": 780, "right": 1990, "bottom": 3175, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707872f.jpg"} -{"rects": [{"solidity": 0.99558130073167, "top": 430, "right": 3195, "bottom": 2015, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717534f.jpg"} -{"rects": [{"solidity": 0.9955813390422306, "top": 390, "right": 3205, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704729f.jpg"} -{"rects": [{"solidity": 0.9955815285149794, "top": 2460, "right": 2515, "bottom": 3950, "left": 420}, {"solidity": 0.9956661557663302, "top": 670, "right": 2530, "bottom": 2160, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716068f.jpg"} -{"rects": [{"solidity": 0.9955816714990459, "top": 350, "right": 3055, "bottom": 1985, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725940f.jpg"} -{"rects": [{"solidity": 0.9955818141770643, "top": 805, "right": 2055, "bottom": 3225, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719029f.jpg"} -{"rects": [{"solidity": 0.995581890776569, "top": 420, "right": 3050, "bottom": 2000, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729697f.jpg"} -{"rects": [{"solidity": 0.9955819161169279, "top": 2830, "right": 3380, "bottom": 5150, "left": 215}, {"solidity": 0.997200464904745, "top": 825, "right": 3070, "bottom": 2395, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734618f.jpg"} -{"rects": [{"solidity": 0.9955820785781518, "top": 855, "right": 2035, "bottom": 3305, "left": 365}, {"solidity": 0.9967347514818712, "top": 885, "right": 3905, "bottom": 3310, "left": 2280}, {"solidity": 0.9965954483465679, "top": 900, "right": 5750, "bottom": 3315, "left": 4130}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728537f.jpg"} -{"rects": [{"solidity": 0.9955830892700924, "top": 640, "right": 3340, "bottom": 2550, "left": 555}, {"solidity": 0.9945416210577354, "top": 3170, "right": 3295, "bottom": 5090, "left": 580}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715379f.jpg"} -{"rects": [{"solidity": 0.9955831203917912, "top": 535, "right": 5620, "bottom": 2205, "left": 3180}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728888f.jpg"} -{"rects": [{"solidity": 0.9955833069230821, "top": 550, "right": 3120, "bottom": 2130, "left": 745}, {"solidity": 0.9948105986525765, "top": 2370, "right": 3100, "bottom": 3955, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718501f.jpg"} -{"rects": [{"solidity": 0.995583330162716, "top": 4045, "right": 3235, "bottom": 5690, "left": 790}, {"solidity": 0.995989538479139, "top": 330, "right": 3240, "bottom": 1965, "left": 800}, {"solidity": 0.9958548265303847, "top": 2200, "right": 3240, "bottom": 3835, "left": 800}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/734168f.jpg"} -{"rects": [{"solidity": 0.9955839248393713, "top": 3630, "right": 3175, "bottom": 5250, "left": 750}, {"solidity": 0.9992318583494719, "top": 695, "right": 2790, "bottom": 3095, "left": 1180}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/731027f.jpg"} -{"rects": [{"solidity": 0.9955839373768846, "top": 385, "right": 3205, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723324f.jpg"} -{"rects": [{"solidity": 0.9955839902631589, "top": 560, "right": 2430, "bottom": 2650, "left": 920}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509233.jpg"} -{"rects": [{"solidity": 0.9955847345737343, "top": 440, "right": 3150, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710762f.jpg"} -{"rects": [{"solidity": 0.995584740667422, "top": 570, "right": 3310, "bottom": 2595, "left": 230}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715440f.jpg"} -{"rects": [{"solidity": 0.9955848169646915, "top": 815, "right": 2030, "bottom": 3225, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718620f.jpg"} -{"rects": [{"solidity": 0.995585136626643, "top": 725, "right": 2780, "bottom": 2190, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702948f.jpg"} -{"rects": [{"solidity": 0.9955854108338987, "top": 2265, "right": 3130, "bottom": 3905, "left": 680}, {"solidity": 0.9957507309965035, "top": 410, "right": 3130, "bottom": 2035, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724117f.jpg"} -{"rects": [{"solidity": 0.9955857682317811, "top": 370, "right": 3190, "bottom": 2005, "left": 775}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721938f.jpg"} -{"rects": [{"solidity": 0.9955859148740688, "top": 565, "right": 3130, "bottom": 1945, "left": 1295}, {"solidity": 0.9957960272457472, "top": 2350, "right": 3130, "bottom": 3725, "left": 1295}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725135f.jpg"} -{"rects": [{"solidity": 0.9955861684833648, "top": 790, "right": 2045, "bottom": 3210, "left": 415}, {"solidity": 0.9970639475468552, "top": 775, "right": 3865, "bottom": 3185, "left": 2250}, {"solidity": 0.9966104459596125, "top": 760, "right": 5695, "bottom": 3165, "left": 4085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714776f.jpg"} -{"rects": [{"solidity": 0.9955865999443981, "top": 685, "right": 2525, "bottom": 2110, "left": 695}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705258f.jpg"} -{"rects": [{"solidity": 0.9955867780630577, "top": 2190, "right": 3230, "bottom": 3840, "left": 775}, {"solidity": 0.9968563121177525, "top": 390, "right": 3245, "bottom": 2005, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704818f.jpg"} -{"rects": [{"solidity": 0.99558683494376, "top": 430, "right": 3065, "bottom": 1870, "left": 1245}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725570f.jpg"} -{"rects": [{"solidity": 0.9955868717511331, "top": 805, "right": 1925, "bottom": 3210, "left": 305}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731322f.jpg"} -{"rects": [{"solidity": 0.9955869316233232, "top": 2255, "right": 3150, "bottom": 3880, "left": 730}, {"solidity": 0.9959728361301553, "top": 445, "right": 3165, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718133f.jpg"} -{"rects": [{"solidity": 0.9955869952985023, "top": 1175, "right": 3345, "bottom": 4740, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722173f.jpg"} -{"rects": [{"solidity": 0.9955872314406524, "top": 1310, "right": 2905, "bottom": 2925, "left": 490}, {"solidity": 0.9973188257431728, "top": 1305, "right": 5625, "bottom": 2920, "left": 3220}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717794f.jpg"} -{"rects": [{"solidity": 0.9955876786834588, "top": 720, "right": 2730, "bottom": 2075, "left": 930}, {"solidity": 0.9952473761555859, "top": 2090, "right": 2715, "bottom": 3445, "left": 915}, {"solidity": 0.9919721241269228, "top": 715, "right": 5100, "bottom": 2070, "left": 3285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731391f.jpg"} -{"rects": [{"solidity": 0.9955878162251814, "top": 2285, "right": 3105, "bottom": 3925, "left": 675}, {"solidity": 0.9972954633890642, "top": 405, "right": 3115, "bottom": 2025, "left": 695}, {"solidity": 0.9960341484102601, "top": 4135, "right": 3075, "bottom": 5755, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729083f.jpg"} -{"rects": [{"solidity": 0.9955879079440914, "top": 410, "right": 3120, "bottom": 1995, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728580f.jpg"} -{"rects": [{"solidity": 0.9955879108757997, "top": 395, "right": 3145, "bottom": 2015, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707723f.jpg"} -{"rects": [{"solidity": 0.9955879674994147, "top": 830, "right": 2640, "bottom": 3845, "left": 220}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716295f.jpg"} -{"rects": [{"solidity": 0.9955882038907514, "top": 385, "right": 2900, "bottom": 1925, "left": 975}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701389f.jpg"} -{"rects": [{"solidity": 0.9955886826893824, "top": 1010, "right": 3565, "bottom": 5030, "left": 275}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722369f.jpg"} -{"rects": [{"solidity": 0.9955890229091705, "top": 555, "right": 4075, "bottom": 2805, "left": 1105}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508875.jpg"} -{"rects": [{"solidity": 0.9955891496968755, "top": 2265, "right": 3105, "bottom": 3890, "left": 680}, {"solidity": 0.9954289860330129, "top": 410, "right": 3100, "bottom": 2015, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733629f.jpg"} -{"rects": [{"solidity": 0.9955894469501992, "top": 590, "right": 4075, "bottom": 3630, "left": 2110}, {"solidity": 0.9963200177947584, "top": 785, "right": 2035, "bottom": 3190, "left": 425}, {"solidity": 0.9951711827169535, "top": 765, "right": 5750, "bottom": 3165, "left": 4145}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722528f.jpg"} -{"rects": [{"solidity": 0.9955895863234674, "top": 2300, "right": 3050, "bottom": 3910, "left": 640}, {"solidity": 0.9956247257013605, "top": 445, "right": 3040, "bottom": 2025, "left": 675}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/733628f.jpg"} -{"rects": [{"solidity": 0.9955904705524712, "top": 2290, "right": 3105, "bottom": 3930, "left": 690}, {"solidity": 0.9962027799123521, "top": 415, "right": 3095, "bottom": 2055, "left": 680}, {"solidity": 0.9962917822783497, "top": 4115, "right": 3095, "bottom": 5735, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712277f.jpg"} -{"rects": [{"solidity": 0.9955907944391217, "top": 425, "right": 3110, "bottom": 2030, "left": 700}, {"solidity": 0.99470434794007, "top": 2295, "right": 3110, "bottom": 3905, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729381f.jpg"} -{"rects": [{"solidity": 0.9955908541172661, "top": 400, "right": 3145, "bottom": 2050, "left": 700}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720573f.jpg"} -{"rects": [{"solidity": 0.9955909743510147, "top": 710, "right": 3885, "bottom": 2595, "left": 1110}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509995.jpg"} -{"rects": [{"solidity": 0.9955911900895735, "top": 2145, "right": 2745, "bottom": 3585, "left": 920}, {"solidity": 0.997138859707302, "top": 670, "right": 2735, "bottom": 2105, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703792f.jpg"} -{"rects": [{"solidity": 0.9955912415950346, "top": 440, "right": 3210, "bottom": 2145, "left": 810}, {"solidity": 0.9964482097186701, "top": 2360, "right": 3220, "bottom": 3980, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701793f.jpg"} -{"rects": [{"solidity": 0.9955912980853452, "top": 410, "right": 3075, "bottom": 2025, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728421f.jpg"} -{"rects": [{"solidity": 0.9955918701929847, "top": 585, "right": 3295, "bottom": 4005, "left": 650}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714171f.jpg"} -{"rects": [{"solidity": 0.9955920252742662, "top": 315, "right": 5060, "bottom": 3665, "left": 1045}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712325f.jpg"} -{"rects": [{"solidity": 0.9955926164808502, "top": 385, "right": 3555, "bottom": 2210, "left": 845}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/702197f.jpg"} -{"rects": [{"solidity": 0.9955927477409982, "top": 800, "right": 3885, "bottom": 3205, "left": 2275}, {"solidity": 0.9959944361701429, "top": 815, "right": 2040, "bottom": 3215, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709553f.jpg"} -{"rects": [{"solidity": 0.995592785081015, "top": 725, "right": 3310, "bottom": 2630, "left": 595}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733288f.jpg"} -{"rects": [{"solidity": 0.9955928007103368, "top": 830, "right": 2040, "bottom": 3235, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713977f.jpg"} -{"rects": [{"solidity": 0.9955928939887725, "top": 4135, "right": 3190, "bottom": 5750, "left": 775}, {"solidity": 0.9958611399435787, "top": 415, "right": 3190, "bottom": 2030, "left": 780}, {"solidity": 0.9961686201770656, "top": 2290, "right": 3185, "bottom": 3885, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724219f.jpg"} -{"rects": [{"solidity": 0.9955929397552628, "top": 2255, "right": 3195, "bottom": 3895, "left": 760}, {"solidity": 0.9957430439799975, "top": 390, "right": 3195, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734017f.jpg"} -{"rects": [{"solidity": 0.995593205629511, "top": 2090, "right": 2685, "bottom": 3525, "left": 855}, {"solidity": 0.9957796707077168, "top": 2080, "right": 5365, "bottom": 3520, "left": 3540}, {"solidity": 0.995464181587973, "top": 570, "right": 5350, "bottom": 2005, "left": 3525}, {"solidity": 0.9960462797516215, "top": 595, "right": 2680, "bottom": 2010, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703316f.jpg"} -{"rects": [{"solidity": 0.9955932289613247, "top": 385, "right": 3095, "bottom": 2030, "left": 645}, {"solidity": 0.9954250870070539, "top": 2260, "right": 3070, "bottom": 3905, "left": 640}, {"solidity": 0.9956854544633118, "top": 4130, "right": 3045, "bottom": 5780, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718761f.jpg"} -{"rects": [{"solidity": 0.995593370454529, "top": 1225, "right": 5255, "bottom": 3165, "left": 2530}, {"solidity": 0.9972117120853459, "top": 765, "right": 2010, "bottom": 3190, "left": 375}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704418f.jpg"} -{"rects": [{"solidity": 0.9955934379389066, "top": 690, "right": 2750, "bottom": 2115, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705705f.jpg"} -{"rects": [{"solidity": 0.9955939142532417, "top": 4100, "right": 3185, "bottom": 5740, "left": 750}, {"solidity": 0.9949190442933755, "top": 2250, "right": 3200, "bottom": 3885, "left": 770}, {"solidity": 0.9967755873267684, "top": 395, "right": 3210, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726220f.jpg"} -{"rects": [{"solidity": 0.9955940463221407, "top": 775, "right": 3915, "bottom": 3195, "left": 2295}, {"solidity": 0.996941787046006, "top": 770, "right": 2035, "bottom": 3185, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712544f.jpg"} -{"rects": [{"solidity": 0.9955942014644765, "top": 710, "right": 4220, "bottom": 3415, "left": 2330}, {"solidity": 0.9962222180211858, "top": 820, "right": 2085, "bottom": 3270, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711091f.jpg"} -{"rects": [{"solidity": 0.9955943768145927, "top": 3225, "right": 3260, "bottom": 5240, "left": 460}, {"solidity": 0.998434749911091, "top": 705, "right": 3265, "bottom": 2710, "left": 495}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729115f.jpg"} -{"rects": [{"solidity": 0.995594389108269, "top": 740, "right": 2645, "bottom": 2160, "left": 820}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725106f.jpg"} -{"rects": [{"solidity": 0.9955945578318793, "top": 2310, "right": 3140, "bottom": 3940, "left": 715}, {"solidity": 0.9950394071817249, "top": 430, "right": 3145, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730624f.jpg"} -{"rects": [{"solidity": 0.99559459477693, "top": 2190, "right": 3345, "bottom": 4195, "left": 545}, {"solidity": 0.9929972172204944, "top": 400, "right": 3130, "bottom": 2005, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717612f.jpg"} -{"rects": [{"solidity": 0.9955946990098878, "top": 365, "right": 3230, "bottom": 1965, "left": 840}], "shape": {"h": 6070, "w": 3865}, "file": "/usr/local/google/home/danvk/milstein/728209f.jpg"} -{"rects": [{"solidity": 0.9955947986469279, "top": 2320, "right": 3130, "bottom": 3965, "left": 700}, {"solidity": 0.9977705695741075, "top": 420, "right": 3125, "bottom": 2030, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728672f.jpg"} -{"rects": [{"solidity": 0.9955948531670504, "top": 745, "right": 2040, "bottom": 3180, "left": 380}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731741f.jpg"} -{"rects": [{"solidity": 0.9955949851598359, "top": 2245, "right": 3215, "bottom": 3860, "left": 800}, {"solidity": 0.9967719417835268, "top": 445, "right": 3200, "bottom": 2050, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703024f.jpg"} -{"rects": [{"solidity": 0.9955950822057326, "top": 130, "right": 2110, "bottom": 3615, "left": 130}], "shape": {"h": 3745, "w": 2240}, "file": "/usr/local/google/home/danvk/milstein/1557934.jpg"} -{"rects": [{"solidity": 0.9955952558314278, "top": 445, "right": 3195, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722407f.jpg"} -{"rects": [{"solidity": 0.9955953321622381, "top": 805, "right": 3955, "bottom": 3215, "left": 2350}, {"solidity": 0.9964968047415649, "top": 810, "right": 2080, "bottom": 3205, "left": 490}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724214f.jpg"} -{"rects": [{"solidity": 0.9955955139257612, "top": 2220, "right": 3280, "bottom": 3865, "left": 830}, {"solidity": 0.9956920759726335, "top": 370, "right": 3300, "bottom": 2015, "left": 855}, {"solidity": 0.9953161441829792, "top": 4050, "right": 3255, "bottom": 5685, "left": 815}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726911f.jpg"} -{"rects": [{"solidity": 0.995595935106136, "top": 2250, "right": 3080, "bottom": 3880, "left": 660}, {"solidity": 0.9973128884347494, "top": 395, "right": 3085, "bottom": 2010, "left": 670}, {"solidity": 0.9958882943252606, "top": 4130, "right": 3060, "bottom": 5745, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726611f.jpg"} -{"rects": [{"solidity": 0.9955960726804493, "top": 1045, "right": 5325, "bottom": 2965, "left": 3835}, {"solidity": 0.9951189613364472, "top": 1045, "right": 3530, "bottom": 2980, "left": 2055}, {"solidity": 0.9956387266368562, "top": 1085, "right": 1785, "bottom": 2975, "left": 320}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731462f.jpg"} -{"rects": [{"solidity": 0.9955962004653683, "top": 500, "right": 5700, "bottom": 2140, "left": 3295}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706195f.jpg"} -{"rects": [{"solidity": 0.9955963016728208, "top": 2240, "right": 3160, "bottom": 3860, "left": 745}, {"solidity": 0.9960728334588071, "top": 4020, "right": 3125, "bottom": 5630, "left": 710}, {"solidity": 0.996031201614958, "top": 470, "right": 3160, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/731619f.jpg"} -{"rects": [{"solidity": 0.9955967804205783, "top": 600, "right": 2790, "bottom": 2015, "left": 965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704807f.jpg"} -{"rects": [{"solidity": 0.9955973215152202, "top": 3960, "right": 3205, "bottom": 5580, "left": 780}, {"solidity": 0.9937149984104081, "top": 2180, "right": 3010, "bottom": 3605, "left": 1175}, {"solidity": 0.9932207915504658, "top": 515, "right": 3015, "bottom": 1915, "left": 1185}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703870f.jpg"} -{"rects": [{"solidity": 0.9955975778591484, "top": 460, "right": 3160, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714999f.jpg"} -{"rects": [{"solidity": 0.9955975946277894, "top": 390, "right": 3195, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717966f.jpg"} -{"rects": [{"solidity": 0.9955977433974261, "top": 810, "right": 2040, "bottom": 3230, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723501f.jpg"} -{"rects": [{"solidity": 0.9955978584176086, "top": 2225, "right": 3200, "bottom": 3880, "left": 740}, {"solidity": 0.9962365319119304, "top": 325, "right": 3195, "bottom": 1960, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700097f.jpg"} -{"rects": [{"solidity": 0.9955979159190153, "top": 1085, "right": 3195, "bottom": 4675, "left": 520}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717008f.jpg"} -{"rects": [{"solidity": 0.9955979576608895, "top": 545, "right": 3135, "bottom": 2150, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722057f.jpg"} -{"rects": [{"solidity": 0.9955981001655497, "top": 395, "right": 3205, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705563f.jpg"} -{"rects": [{"solidity": 0.9955981240842755, "top": 2255, "right": 3305, "bottom": 3895, "left": 865}, {"solidity": 0.9955308871045139, "top": 415, "right": 3320, "bottom": 2060, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727288f.jpg"} -{"rects": [{"solidity": 0.9955981591126509, "top": 815, "right": 3845, "bottom": 3235, "left": 2225}, {"solidity": 0.9972899816741891, "top": 830, "right": 1995, "bottom": 3245, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722277f.jpg"} -{"rects": [{"solidity": 0.9955984511651347, "top": 725, "right": 3905, "bottom": 3165, "left": 2265}, {"solidity": 0.995854441927668, "top": 725, "right": 2030, "bottom": 3135, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723956f.jpg"} -{"rects": [{"solidity": 0.9955986031062506, "top": 440, "right": 3140, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724672f.jpg"} -{"rects": [{"solidity": 0.9955986912579005, "top": 425, "right": 5750, "bottom": 2080, "left": 3335}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705602f.jpg"} -{"rects": [{"solidity": 0.9955987828732884, "top": 410, "right": 3170, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734594f.jpg"} -{"rects": [{"solidity": 0.995598994287195, "top": 2495, "right": 2515, "bottom": 3995, "left": 420}, {"solidity": 0.9959288604864281, "top": 690, "right": 2535, "bottom": 2185, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716141f.jpg"} -{"rects": [{"solidity": 0.9955990361167626, "top": 645, "right": 2795, "bottom": 2095, "left": 980}, {"solidity": 0.9951291773558251, "top": 2260, "right": 2815, "bottom": 3665, "left": 985}, {"solidity": 0.9948035335971539, "top": 655, "right": 5045, "bottom": 2070, "left": 3240}, {"solidity": 0.9970752752903403, "top": 2250, "right": 5055, "bottom": 3635, "left": 3240}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725066f.jpg"} -{"rects": [{"solidity": 0.9955990409657552, "top": 810, "right": 3920, "bottom": 3235, "left": 2300}, {"solidity": 0.9959536282466721, "top": 815, "right": 2060, "bottom": 3210, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733990f.jpg"} -{"rects": [{"solidity": 0.9955992655454214, "top": 525, "right": 5065, "bottom": 3600, "left": 1110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708519f.jpg"} -{"rects": [{"solidity": 0.9955999436792791, "top": 795, "right": 3825, "bottom": 3225, "left": 2185}, {"solidity": 0.9953863668800886, "top": 785, "right": 1960, "bottom": 3175, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716873f.jpg"} -{"rects": [{"solidity": 0.9956001842714933, "top": 745, "right": 4105, "bottom": 3150, "left": 2500}, {"solidity": 0.9948382311670609, "top": 1965, "right": 2485, "bottom": 3380, "left": 675}, {"solidity": 0.936521532238877, "top": 520, "right": 2440, "bottom": 1940, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717000f.jpg"} -{"rects": [{"solidity": 0.9956002249995151, "top": 2210, "right": 3135, "bottom": 3835, "left": 710}, {"solidity": 0.9950635563084324, "top": 375, "right": 3160, "bottom": 1995, "left": 730}, {"solidity": 0.9955891803470234, "top": 4090, "right": 3130, "bottom": 5695, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729794f.jpg"} -{"rects": [{"solidity": 0.9956002812028532, "top": 260, "right": 2095, "bottom": 1300, "left": 550}], "shape": {"h": 3975, "w": 2575}, "file": "/usr/local/google/home/danvk/milstein/733110f.jpg"} -{"rects": [{"solidity": 0.9956004309372886, "top": 615, "right": 2670, "bottom": 1990, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725240f.jpg"} -{"rects": [{"solidity": 0.9956006310272675, "top": 800, "right": 3825, "bottom": 3195, "left": 2230}, {"solidity": 0.9956249378542309, "top": 795, "right": 2000, "bottom": 3185, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722510f.jpg"} -{"rects": [{"solidity": 0.9956009304555383, "top": 415, "right": 3165, "bottom": 1990, "left": 785}, {"solidity": 0.9973562585310951, "top": 2200, "right": 2900, "bottom": 3620, "left": 1045}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718084f.jpg"} -{"rects": [{"solidity": 0.9956010524584772, "top": 275, "right": 2525, "bottom": 2730, "left": 865}, {"solidity": 0.9995725186943317, "top": 295, "right": 4380, "bottom": 2720, "left": 2755}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720385f.jpg"} -{"rects": [{"solidity": 0.9956012166004538, "top": 745, "right": 2630, "bottom": 2165, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726379f.jpg"} -{"rects": [{"solidity": 0.9956012984725333, "top": 705, "right": 2590, "bottom": 2120, "left": 800}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726016f.jpg"} -{"rects": [{"solidity": 0.9956016643406238, "top": 685, "right": 1815, "bottom": 3095, "left": 200}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714560f.jpg"} -{"rects": [{"solidity": 0.995601824475719, "top": 420, "right": 3250, "bottom": 2055, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719598f.jpg"} -{"rects": [{"solidity": 0.9956020110627828, "top": 2250, "right": 3160, "bottom": 3875, "left": 735}, {"solidity": 0.9949826611469414, "top": 415, "right": 3175, "bottom": 2020, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734016f.jpg"} -{"rects": [{"solidity": 0.9956020274295462, "top": 370, "right": 3090, "bottom": 1975, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728488f.jpg"} -{"rects": [{"solidity": 0.9956020331480501, "top": 2285, "right": 3200, "bottom": 3915, "left": 750}, {"solidity": 0.9935025364322064, "top": 585, "right": 3135, "bottom": 2000, "left": 905}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709554f.jpg"} -{"rects": [{"solidity": 0.9956021010733744, "top": 790, "right": 2010, "bottom": 3195, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717362f.jpg"} -{"rects": [{"solidity": 0.9956021331173215, "top": 745, "right": 2035, "bottom": 3120, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721320f.jpg"} -{"rects": [{"solidity": 0.9956022437531872, "top": 415, "right": 3250, "bottom": 2455, "left": 220}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714677f.jpg"} -{"rects": [{"solidity": 0.9956023949639089, "top": 2285, "right": 3175, "bottom": 3910, "left": 735}, {"solidity": 0.9959060693735153, "top": 430, "right": 3170, "bottom": 2050, "left": 755}, {"solidity": 0.9935739273938093, "top": 4105, "right": 3150, "bottom": 5735, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734325f.jpg"} -{"rects": [{"solidity": 0.9956025166056514, "top": 1005, "right": 1970, "bottom": 2915, "left": 465}, {"solidity": 0.9948137605762898, "top": 1030, "right": 3755, "bottom": 2925, "left": 2295}, {"solidity": 0.9963473174008575, "top": 1075, "right": 5575, "bottom": 2955, "left": 4130}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731445f.jpg"} -{"rects": [{"solidity": 0.9956025530247304, "top": 415, "right": 3260, "bottom": 2045, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719472f.jpg"} -{"rects": [{"solidity": 0.9956026842688533, "top": 795, "right": 2015, "bottom": 3215, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708138f.jpg"} -{"rects": [{"solidity": 0.9956027946979594, "top": 705, "right": 2055, "bottom": 3090, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709188f.jpg"} -{"rects": [{"solidity": 0.9956028165922162, "top": 495, "right": 3125, "bottom": 2085, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711879f.jpg"} -{"rects": [{"solidity": 0.9956031376010079, "top": 620, "right": 5280, "bottom": 2260, "left": 2850}, {"solidity": 0.9967240239826168, "top": 625, "right": 2815, "bottom": 2000, "left": 885}, {"solidity": 0.9966463959935611, "top": 2070, "right": 2810, "bottom": 3405, "left": 905}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731435f.jpg"} -{"rects": [{"solidity": 0.9956033063136521, "top": 380, "right": 3125, "bottom": 2045, "left": 670}, {"solidity": 0.9957622636307977, "top": 2255, "right": 3070, "bottom": 3905, "left": 625}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729680f.jpg"} -{"rects": [{"solidity": 0.9956033530402447, "top": 2280, "right": 3130, "bottom": 3920, "left": 695}, {"solidity": 0.9974411083361066, "top": 4150, "right": 3120, "bottom": 5765, "left": 705}, {"solidity": 0.9953819254868315, "top": 410, "right": 3125, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731566f.jpg"} -{"rects": [{"solidity": 0.9956033629239315, "top": 835, "right": 2045, "bottom": 3215, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716708f.jpg"} -{"rects": [{"solidity": 0.995603552746629, "top": 480, "right": 3160, "bottom": 3745, "left": 635}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714339f.jpg"} -{"rects": [{"solidity": 0.9956036870411349, "top": 425, "right": 2955, "bottom": 1840, "left": 1115}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704138f.jpg"} -{"rects": [{"solidity": 0.9956038046365768, "top": 790, "right": 2025, "bottom": 3200, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732353f.jpg"} -{"rects": [{"solidity": 0.9956038572607261, "top": 430, "right": 3205, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700975f.jpg"} -{"rects": [{"solidity": 0.9956040361589089, "top": 410, "right": 2985, "bottom": 1810, "left": 1155}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703590f.jpg"} -{"rects": [{"solidity": 0.9956040705241983, "top": 1000, "right": 3130, "bottom": 2190, "left": 1330}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508315.jpg"} -{"rects": [{"solidity": 0.9956041220689998, "top": 615, "right": 3035, "bottom": 2040, "left": 1250}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727405f.jpg"} -{"rects": [{"solidity": 0.9956044026714428, "top": 4050, "right": 3205, "bottom": 5685, "left": 790}, {"solidity": 0.9952089089789431, "top": 2140, "right": 3210, "bottom": 3770, "left": 780}, {"solidity": 0.9966680406705138, "top": 475, "right": 1970, "bottom": 1890, "left": 145}, {"solidity": 0.9935911591118962, "top": 475, "right": 3840, "bottom": 1870, "left": 2035}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731053f.jpg"} -{"rects": [{"solidity": 0.9956044306827976, "top": 405, "right": 3175, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733308f.jpg"} -{"rects": [{"solidity": 0.9956045858500365, "top": 4105, "right": 3155, "bottom": 5755, "left": 715}, {"solidity": 0.9957994420981282, "top": 410, "right": 3190, "bottom": 2015, "left": 775}, {"solidity": 0.9612228685646926, "top": 2640, "right": 3110, "bottom": 3780, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734246f.jpg"} -{"rects": [{"solidity": 0.995604978372914, "top": 410, "right": 3230, "bottom": 2000, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727277f.jpg"} -{"rects": [{"solidity": 0.9956051304166647, "top": 640, "right": 2770, "bottom": 2060, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706899f.jpg"} -{"rects": [{"solidity": 0.9956051968712714, "top": 840, "right": 2140, "bottom": 3235, "left": 550}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719829f.jpg"} -{"rects": [{"solidity": 0.9956055734190783, "top": 365, "right": 2430, "bottom": 1550, "left": 635}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716424f.jpg"} -{"rects": [{"solidity": 0.9956056072324249, "top": 4050, "right": 3165, "bottom": 5695, "left": 740}, {"solidity": 0.9979284211609848, "top": 2195, "right": 3185, "bottom": 3815, "left": 770}, {"solidity": 0.998497007525095, "top": 390, "right": 3155, "bottom": 1965, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722980f.jpg"} -{"rects": [{"solidity": 0.995605783456975, "top": 710, "right": 2710, "bottom": 3250, "left": 800}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733303f.jpg"} -{"rects": [{"solidity": 0.9956057918204919, "top": 645, "right": 3340, "bottom": 2575, "left": 610}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711589f.jpg"} -{"rects": [{"solidity": 0.9956059429015343, "top": 315, "right": 2020, "bottom": 1335, "left": 490}], "shape": {"h": 3965, "w": 2580}, "file": "/usr/local/google/home/danvk/milstein/727167f.jpg"} -{"rects": [{"solidity": 0.9956059550700769, "top": 405, "right": 3045, "bottom": 2015, "left": 620}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729329f.jpg"} -{"rects": [{"solidity": 0.9956060388798984, "top": 305, "right": 2730, "bottom": 1995, "left": 545}, {"solidity": 0.9650685304035679, "top": 360, "right": 5010, "bottom": 2065, "left": 2825}], "shape": {"h": 4460, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596954.jpg"} -{"rects": [{"solidity": 0.9956061374587877, "top": 430, "right": 3205, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701092f.jpg"} -{"rects": [{"solidity": 0.9956061649482536, "top": 425, "right": 3155, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718009f.jpg"} -{"rects": [{"solidity": 0.995606691845449, "top": 800, "right": 2055, "bottom": 3215, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732052f.jpg"} -{"rects": [{"solidity": 0.995606811215363, "top": 3160, "right": 3195, "bottom": 4780, "left": 775}, {"solidity": 0.9943940621488122, "top": 1340, "right": 3195, "bottom": 2960, "left": 795}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/730792f.jpg"} -{"rects": [{"solidity": 0.9956068461094216, "top": 835, "right": 4000, "bottom": 3225, "left": 2405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721368f.jpg"} -{"rects": [{"solidity": 0.9956071822570098, "top": 2090, "right": 2615, "bottom": 3500, "left": 820}, {"solidity": 0.9964126601310817, "top": 675, "right": 5220, "bottom": 2060, "left": 3415}, {"solidity": 0.996436071713065, "top": 2125, "right": 5205, "bottom": 3495, "left": 3420}, {"solidity": 0.9971895878932879, "top": 665, "right": 2605, "bottom": 2030, "left": 835}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728111f.jpg"} -{"rects": [{"solidity": 0.9956074243141984, "top": 760, "right": 2015, "bottom": 3155, "left": 425}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702244f.jpg"} -{"rects": [{"solidity": 0.9956075308949158, "top": 440, "right": 3180, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702032f.jpg"} -{"rects": [{"solidity": 0.9956075757233965, "top": 2325, "right": 3125, "bottom": 3950, "left": 695}, {"solidity": 0.9965779627256204, "top": 4215, "right": 3115, "bottom": 5830, "left": 695}, {"solidity": 0.9955824763865383, "top": 480, "right": 3110, "bottom": 2065, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720605f.jpg"} -{"rects": [{"solidity": 0.99560763797564, "top": 575, "right": 3320, "bottom": 2515, "left": 595}, {"solidity": 0.9948964784471521, "top": 3115, "right": 3310, "bottom": 5045, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715190f.jpg"} -{"rects": [{"solidity": 0.9956077177287013, "top": 4110, "right": 3130, "bottom": 5725, "left": 710}, {"solidity": 0.9968070291777188, "top": 485, "right": 3105, "bottom": 2070, "left": 710}, {"solidity": 0.9963243214578092, "top": 2300, "right": 3115, "bottom": 3885, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731394f.jpg"} -{"rects": [{"solidity": 0.9956078701254013, "top": 810, "right": 2040, "bottom": 3225, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712605f.jpg"} -{"rects": [{"solidity": 0.9956083417243932, "top": 540, "right": 4875, "bottom": 3570, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709830f.jpg"} -{"rects": [{"solidity": 0.9956083841113921, "top": 365, "right": 3185, "bottom": 2000, "left": 750}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/728868f.jpg"} -{"rects": [{"solidity": 0.9956084117584858, "top": 2310, "right": 3060, "bottom": 3910, "left": 675}, {"solidity": 0.9952919051891681, "top": 420, "right": 3080, "bottom": 2020, "left": 700}, {"solidity": 0.9959846426697311, "top": 4190, "right": 3065, "bottom": 5795, "left": 690}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/731713f.jpg"} -{"rects": [{"solidity": 0.9956085457699317, "top": 380, "right": 2875, "bottom": 1895, "left": 970}, {"solidity": 0.9926857850399098, "top": 2140, "right": 2875, "bottom": 3645, "left": 965}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701359f.jpg"} -{"rects": [{"solidity": 0.9956086234200274, "top": 405, "right": 3085, "bottom": 2025, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729355f.jpg"} -{"rects": [{"solidity": 0.9956088721943736, "top": 800, "right": 1950, "bottom": 3195, "left": 350}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713644f.jpg"} -{"rects": [{"solidity": 0.9956089294923746, "top": 2190, "right": 2705, "bottom": 3600, "left": 880}, {"solidity": 0.9960605043344326, "top": 740, "right": 5245, "bottom": 2145, "left": 3430}, {"solidity": 0.9945732461032892, "top": 735, "right": 2685, "bottom": 2145, "left": 895}, {"solidity": 0.9965963926804794, "top": 2200, "right": 5225, "bottom": 3600, "left": 3440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704403f.jpg"} -{"rects": [{"solidity": 0.9956092610251395, "top": 2240, "right": 3045, "bottom": 3975, "left": 645}, {"solidity": 0.9933541665996183, "top": 395, "right": 3075, "bottom": 2015, "left": 645}, {"solidity": 0.9972362876726104, "top": 4170, "right": 3020, "bottom": 5785, "left": 615}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731543f.jpg"} -{"rects": [{"solidity": 0.995609671201479, "top": 800, "right": 3865, "bottom": 3195, "left": 2255}, {"solidity": 0.9975789892031529, "top": 810, "right": 2040, "bottom": 3200, "left": 450}, {"solidity": 0.996438706063203, "top": 810, "right": 5640, "bottom": 3195, "left": 4055}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717415f.jpg"} -{"rects": [{"solidity": 0.9956103742760298, "top": 430, "right": 3380, "bottom": 2270, "left": 665}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/702196f.jpg"} -{"rects": [{"solidity": 0.9956107980869582, "top": 775, "right": 2070, "bottom": 3190, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720069f.jpg"} -{"rects": [{"solidity": 0.9956109605259058, "top": 770, "right": 3250, "bottom": 2305, "left": 1120}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508073.jpg"} -{"rects": [{"solidity": 0.995610961705996, "top": 650, "right": 2745, "bottom": 2120, "left": 895}, {"solidity": 0.9964488533559783, "top": 2155, "right": 2745, "bottom": 3590, "left": 915}, {"solidity": 0.9961667703795893, "top": 600, "right": 5305, "bottom": 2005, "left": 3495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702678f.jpg"} -{"rects": [{"solidity": 0.9956110989560032, "top": 4050, "right": 3205, "bottom": 5670, "left": 795}, {"solidity": 0.9923657828782483, "top": 390, "right": 3225, "bottom": 2000, "left": 825}, {"solidity": 0.9964796669274321, "top": 2210, "right": 3205, "bottom": 3815, "left": 820}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718236f.jpg"} -{"rects": [{"solidity": 0.9956111317057671, "top": 445, "right": 3155, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701185f.jpg"} -{"rects": [{"solidity": 0.9956111985224797, "top": 825, "right": 2070, "bottom": 3260, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713096f.jpg"} -{"rects": [{"solidity": 0.9956113033818969, "top": 2250, "right": 3235, "bottom": 3870, "left": 810}, {"solidity": 0.9945039527030296, "top": 4110, "right": 3230, "bottom": 5730, "left": 805}, {"solidity": 0.9967381779234689, "top": 400, "right": 3230, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/723790f.jpg"} -{"rects": [{"solidity": 0.9956113762414549, "top": 3945, "right": 3155, "bottom": 5565, "left": 730}, {"solidity": 0.9986290466676413, "top": 2105, "right": 3165, "bottom": 3710, "left": 750}, {"solidity": 0.9980027643857178, "top": 315, "right": 3155, "bottom": 1905, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730142f.jpg"} -{"rects": [{"solidity": 0.9956114453505258, "top": 405, "right": 3195, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720793f.jpg"} -{"rects": [{"solidity": 0.995611480057478, "top": 435, "right": 3175, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718645f.jpg"} -{"rects": [{"solidity": 0.9956115275151256, "top": 805, "right": 5795, "bottom": 3265, "left": 4120}, {"solidity": 0.9960761017901582, "top": 800, "right": 3920, "bottom": 3235, "left": 2290}, {"solidity": 0.997008446549731, "top": 795, "right": 2030, "bottom": 3215, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709128f.jpg"} -{"rects": [{"solidity": 0.9956117112050891, "top": 775, "right": 2055, "bottom": 3190, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724907f.jpg"} -{"rects": [{"solidity": 0.9956117884653658, "top": 2565, "right": 3425, "bottom": 4195, "left": 1025}, {"solidity": 0.9973335342463958, "top": 735, "right": 3450, "bottom": 2345, "left": 1060}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/715015f.jpg"} -{"rects": [{"solidity": 0.9956119113908728, "top": 455, "right": 3090, "bottom": 1880, "left": 1330}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726467f.jpg"} -{"rects": [{"solidity": 0.9956120560558204, "top": 410, "right": 3170, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733925f.jpg"} -{"rects": [{"solidity": 0.9956120853148777, "top": 2245, "right": 3150, "bottom": 3905, "left": 705}, {"solidity": 0.995217697736613, "top": 4095, "right": 3120, "bottom": 5740, "left": 685}, {"solidity": 0.9947417412659432, "top": 405, "right": 3185, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734656f.jpg"} -{"rects": [{"solidity": 0.9956122111508777, "top": 725, "right": 1990, "bottom": 3130, "left": 365}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711564f.jpg"} -{"rects": [{"solidity": 0.9956125258086718, "top": 2300, "right": 2930, "bottom": 3810, "left": 960}, {"solidity": 0.9907311916670963, "top": 460, "right": 2935, "bottom": 1965, "left": 965}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707710f.jpg"} -{"rects": [{"solidity": 0.9956129496726586, "top": 845, "right": 2040, "bottom": 3265, "left": 410}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728969f.jpg"} -{"rects": [{"solidity": 0.995613350556716, "top": 395, "right": 3295, "bottom": 1980, "left": 895}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725684f.jpg"} -{"rects": [{"solidity": 0.9956133857710207, "top": 860, "right": 2020, "bottom": 3285, "left": 385}, {"solidity": 0.9964647982446786, "top": 855, "right": 3865, "bottom": 3270, "left": 2240}, {"solidity": 0.9955784098579287, "top": 865, "right": 5715, "bottom": 3275, "left": 4100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709241f.jpg"} -{"rects": [{"solidity": 0.9956134474341871, "top": 740, "right": 2155, "bottom": 2030, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710731f.jpg"} -{"rects": [{"solidity": 0.9956134886862104, "top": 2250, "right": 3255, "bottom": 3865, "left": 845}, {"solidity": 0.9954263581184609, "top": 4050, "right": 3250, "bottom": 5675, "left": 830}, {"solidity": 0.9983572365876796, "top": 440, "right": 3245, "bottom": 2030, "left": 850}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733516f.jpg"} -{"rects": [{"solidity": 0.995613754242172, "top": 400, "right": 3060, "bottom": 2040, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702005f.jpg"} -{"rects": [{"solidity": 0.995613824148976, "top": 2250, "right": 3175, "bottom": 3885, "left": 750}, {"solidity": 0.9952675353568478, "top": 425, "right": 3185, "bottom": 2070, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719492f.jpg"} -{"rects": [{"solidity": 0.9956139794896498, "top": 2225, "right": 3035, "bottom": 3870, "left": 595}, {"solidity": 0.9998176442238808, "top": 390, "right": 3015, "bottom": 1995, "left": 610}, {"solidity": 0.9958143507048062, "top": 4100, "right": 3020, "bottom": 5720, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734198f.jpg"} -{"rects": [{"solidity": 0.9956142896761669, "top": 750, "right": 3890, "bottom": 3175, "left": 2255}, {"solidity": 0.9967505040926171, "top": 740, "right": 5750, "bottom": 3160, "left": 4140}, {"solidity": 0.9962040085409808, "top": 745, "right": 2020, "bottom": 3160, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734754f.jpg"} -{"rects": [{"solidity": 0.9956144163986052, "top": 2205, "right": 3005, "bottom": 3640, "left": 1185}, {"solidity": 0.9974199589584205, "top": 485, "right": 3010, "bottom": 1885, "left": 1200}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727726f.jpg"} -{"rects": [{"solidity": 0.9956146411351025, "top": 2280, "right": 3145, "bottom": 3760, "left": 805}, {"solidity": 0.9953104620031579, "top": 465, "right": 3065, "bottom": 1825, "left": 900}, {"solidity": 0.9953894101914178, "top": 4235, "right": 2855, "bottom": 5550, "left": 1140}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733721f.jpg"} -{"rects": [{"solidity": 0.9956146596587525, "top": 390, "right": 3195, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710652f.jpg"} -{"rects": [{"solidity": 0.9956146933874536, "top": 420, "right": 3185, "bottom": 2035, "left": 770}, {"solidity": 0.9966602526562369, "top": 2290, "right": 3180, "bottom": 3880, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732304f.jpg"} -{"rects": [{"solidity": 0.9956148251621509, "top": 540, "right": 5030, "bottom": 3555, "left": 1255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708494f.jpg"} -{"rects": [{"solidity": 0.9956151089545262, "top": 395, "right": 3235, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707045f.jpg"} -{"rects": [{"solidity": 0.9956154475799418, "top": 485, "right": 3115, "bottom": 2070, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714252f.jpg"} -{"rects": [{"solidity": 0.9956155110599137, "top": 2305, "right": 3195, "bottom": 3930, "left": 770}, {"solidity": 0.9953446214621722, "top": 425, "right": 3215, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712088f.jpg"} -{"rects": [{"solidity": 0.995615576908054, "top": 2205, "right": 3275, "bottom": 3820, "left": 855}, {"solidity": 0.9951105982671961, "top": 4045, "right": 3275, "bottom": 5665, "left": 850}, {"solidity": 0.9969388756254701, "top": 415, "right": 3270, "bottom": 2010, "left": 855}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726067f.jpg"} -{"rects": [{"solidity": 0.9956156363789098, "top": 4025, "right": 3175, "bottom": 5640, "left": 755}, {"solidity": 0.9972188586636276, "top": 2240, "right": 3170, "bottom": 3850, "left": 755}, {"solidity": 0.9965615728933535, "top": 450, "right": 3165, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731171f.jpg"} -{"rects": [{"solidity": 0.9956158616704277, "top": 415, "right": 3180, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718572f.jpg"} -{"rects": [{"solidity": 0.9956160144413642, "top": 440, "right": 3365, "bottom": 2070, "left": 945}, {"solidity": 0.9980592133991907, "top": 2300, "right": 3350, "bottom": 3915, "left": 940}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706945f.jpg"} -{"rects": [{"solidity": 0.9956161232086655, "top": 690, "right": 3690, "bottom": 3135, "left": 2025}, {"solidity": 0.9944092505573108, "top": 715, "right": 1855, "bottom": 3155, "left": 190}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724304f.jpg"} -{"rects": [{"solidity": 0.9956162396370831, "top": 2235, "right": 3250, "bottom": 3870, "left": 810}, {"solidity": 0.9973625598871958, "top": 395, "right": 3260, "bottom": 2015, "left": 835}, {"solidity": 0.9951022843176875, "top": 4085, "right": 3235, "bottom": 5715, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725367f.jpg"} -{"rects": [{"solidity": 0.9956165338033076, "top": 850, "right": 3345, "bottom": 2885, "left": 305}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722643f.jpg"} -{"rects": [{"solidity": 0.9956165647710232, "top": 595, "right": 1530, "bottom": 2405, "left": 315}, {"solidity": 0.9945592533123867, "top": 585, "right": 2905, "bottom": 2395, "left": 1690}, {"solidity": 0.9955543963368689, "top": 585, "right": 4285, "bottom": 2390, "left": 3075}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716457f.jpg"} -{"rects": [{"solidity": 0.995616704018681, "top": 660, "right": 2750, "bottom": 2065, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727903f.jpg"} -{"rects": [{"solidity": 0.995616800066012, "top": 2230, "right": 3150, "bottom": 3840, "left": 745}, {"solidity": 0.9958455385773777, "top": 445, "right": 3165, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724532f.jpg"} -{"rects": [{"solidity": 0.9956168354932786, "top": 700, "right": 2465, "bottom": 2055, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707004f.jpg"} -{"rects": [{"solidity": 0.9956172147894286, "top": 690, "right": 2660, "bottom": 3605, "left": 810}, {"solidity": 0.9957497474040728, "top": 695, "right": 5135, "bottom": 2160, "left": 3305}, {"solidity": 0.9957678901743724, "top": 2155, "right": 5120, "bottom": 3610, "left": 3290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706081f.jpg"} -{"rects": [{"solidity": 0.9956172949023482, "top": 610, "right": 2955, "bottom": 2060, "left": 1130}, {"solidity": 0.9957446184096612, "top": 2265, "right": 5205, "bottom": 3685, "left": 3385}, {"solidity": 0.9963709756624566, "top": 2265, "right": 2975, "bottom": 3700, "left": 1180}, {"solidity": 0.9966190089036071, "top": 620, "right": 5185, "bottom": 2040, "left": 3390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727789f.jpg"} -{"rects": [{"solidity": 0.9956173487681197, "top": 375, "right": 3170, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715363f.jpg"} -{"rects": [{"solidity": 0.9956174702771202, "top": 1585, "right": 2085, "bottom": 2640, "left": 725}, {"solidity": 0.9936530324400564, "top": 485, "right": 2080, "bottom": 1540, "left": 715}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/706005f.jpg"} -{"rects": [{"solidity": 0.9956178362211087, "top": 825, "right": 5625, "bottom": 3235, "left": 4010}, {"solidity": 0.9957498881549515, "top": 805, "right": 2020, "bottom": 3205, "left": 420}, {"solidity": 0.9954573026442964, "top": 825, "right": 3820, "bottom": 3215, "left": 2225}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712471f.jpg"} -{"rects": [{"solidity": 0.9956179975336811, "top": 765, "right": 2045, "bottom": 3170, "left": 440}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722612f.jpg"} -{"rects": [{"solidity": 0.9956180707929297, "top": 1190, "right": 4890, "bottom": 2815, "left": 2470}, {"solidity": 0.996093584964527, "top": 840, "right": 2000, "bottom": 3265, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724025f.jpg"} -{"rects": [{"solidity": 0.9956183166526372, "top": 2195, "right": 3300, "bottom": 3835, "left": 865}, {"solidity": 0.997773409808597, "top": 4080, "right": 3255, "bottom": 5695, "left": 835}, {"solidity": 0.9957757383549352, "top": 395, "right": 3310, "bottom": 2010, "left": 900}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726617f.jpg"} -{"rects": [{"solidity": 0.995618327982669, "top": 820, "right": 2060, "bottom": 3235, "left": 450}, {"solidity": 0.9965867408764727, "top": 820, "right": 3955, "bottom": 3230, "left": 2355}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712458f.jpg"} -{"rects": [{"solidity": 0.9956183782174501, "top": 385, "right": 3205, "bottom": 2015, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701879f.jpg"} -{"rects": [{"solidity": 0.9956185778614239, "top": 325, "right": 3365, "bottom": 3040, "left": 425}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708183f.jpg"} -{"rects": [{"solidity": 0.9956187178985009, "top": 2240, "right": 3360, "bottom": 3905, "left": 915}, {"solidity": 0.9957371521612318, "top": 380, "right": 3390, "bottom": 2035, "left": 960}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704767f.jpg"} -{"rects": [{"solidity": 0.995618779228199, "top": 430, "right": 3225, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702148f.jpg"} -{"rects": [{"solidity": 0.9956188529418319, "top": 4070, "right": 3200, "bottom": 5710, "left": 755}, {"solidity": 0.9960506290095749, "top": 2250, "right": 3205, "bottom": 3880, "left": 775}, {"solidity": 0.9973716205974645, "top": 435, "right": 3190, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703130f.jpg"} -{"rects": [{"solidity": 0.9956189142846631, "top": 460, "right": 5085, "bottom": 3665, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701253f.jpg"} -{"rects": [{"solidity": 0.9956189571095901, "top": 915, "right": 2795, "bottom": 3950, "left": 335}], "shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509773.jpg"} -{"rects": [{"solidity": 0.9956189891065479, "top": 615, "right": 2675, "bottom": 2080, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702944f.jpg"} -{"rects": [{"solidity": 0.9956190001087255, "top": 800, "right": 2080, "bottom": 3230, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707865f.jpg"} -{"rects": [{"solidity": 0.9956190888632831, "top": 690, "right": 3010, "bottom": 2275, "left": 955}, {"solidity": 0.993596398797533, "top": 695, "right": 5830, "bottom": 2280, "left": 3770}, {"solidity": 0.9939538256886783, "top": 2320, "right": 5815, "bottom": 3905, "left": 3765}, {"solidity": 0.9938717885068884, "top": 2310, "right": 3015, "bottom": 3890, "left": 955}], "shape": {"h": 4425, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706428f.jpg"} -{"rects": [{"solidity": 0.995619101695579, "top": 535, "right": 3035, "bottom": 1960, "left": 1220}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727406f.jpg"} -{"rects": [{"solidity": 0.995619146047294, "top": 585, "right": 4965, "bottom": 3680, "left": 1070}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730167f.jpg"} -{"rects": [{"solidity": 0.9956191631150941, "top": 445, "right": 3160, "bottom": 2255, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702025f.jpg"} -{"rects": [{"solidity": 0.9956192517013489, "top": 400, "right": 3225, "bottom": 2020, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725220f.jpg"} -{"rects": [{"solidity": 0.9956196200275047, "top": 2075, "right": 5625, "bottom": 3735, "left": 3190}, {"solidity": 0.9958515283842795, "top": 235, "right": 4470, "bottom": 1860, "left": 2045}, {"solidity": 0.9962463731849016, "top": 1210, "right": 1885, "bottom": 3595, "left": 320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734259f.jpg"} -{"rects": [{"solidity": 0.9956196949547685, "top": 425, "right": 3175, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712201f.jpg"} -{"rects": [{"solidity": 0.9956197915339331, "top": 805, "right": 2090, "bottom": 3245, "left": 455}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704591f.jpg"} -{"rects": [{"solidity": 0.9956200079053152, "top": 480, "right": 5720, "bottom": 4180, "left": 1165}], "shape": {"h": 4410, "w": 6850}, "file": "/usr/local/google/home/danvk/milstein/711687f.jpg"} -{"rects": [{"solidity": 0.9956201640478197, "top": 825, "right": 2580, "bottom": 2945, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733831f.jpg"} -{"rects": [{"solidity": 0.9956203200142871, "top": 2730, "right": 2405, "bottom": 4190, "left": 360}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508075.jpg"} -{"rects": [{"solidity": 0.9956203499353916, "top": 520, "right": 5010, "bottom": 3630, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732966f.jpg"} -{"rects": [{"solidity": 0.9956203993534718, "top": 4035, "right": 3005, "bottom": 5645, "left": 615}, {"solidity": 0.9968588354384585, "top": 440, "right": 2990, "bottom": 1990, "left": 640}, {"solidity": 0.9969362830623212, "top": 2235, "right": 2975, "bottom": 3795, "left": 655}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/712701f.jpg"} -{"rects": [{"solidity": 0.9956205014024425, "top": 390, "right": 3225, "bottom": 2025, "left": 880}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717970f.jpg"} -{"rects": [{"solidity": 0.9956206903175, "top": 2115, "right": 2705, "bottom": 3555, "left": 875}, {"solidity": 0.997034991955593, "top": 2130, "right": 5230, "bottom": 3540, "left": 3390}, {"solidity": 0.9956454626695913, "top": 725, "right": 5160, "bottom": 2080, "left": 3435}, {"solidity": 0.9831346649484536, "top": 695, "right": 2665, "bottom": 2065, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719745f.jpg"} -{"rects": [{"solidity": 0.9956207075459255, "top": 2275, "right": 2875, "bottom": 3785, "left": 970}, {"solidity": 0.9949431990873091, "top": 465, "right": 2900, "bottom": 1965, "left": 980}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700113f.jpg"} -{"rects": [{"solidity": 0.9956210400333173, "top": 680, "right": 2525, "bottom": 2180, "left": 430}, {"solidity": 0.9956153503262147, "top": 2475, "right": 2510, "bottom": 3965, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716236f.jpg"} -{"rects": [{"solidity": 0.9956212065717873, "top": 440, "right": 3175, "bottom": 2040, "left": 765}, {"solidity": 0.9956529614200326, "top": 2255, "right": 3175, "bottom": 3850, "left": 775}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730225f.jpg"} -{"rects": [{"solidity": 0.9956214095558358, "top": 630, "right": 2660, "bottom": 2025, "left": 850}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705868f.jpg"} -{"rects": [{"solidity": 0.9956214711985458, "top": 380, "right": 3140, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712600f.jpg"} -{"rects": [{"solidity": 0.9956216417861607, "top": 825, "right": 3795, "bottom": 3230, "left": 2185}, {"solidity": 0.9964826723770998, "top": 825, "right": 5610, "bottom": 3215, "left": 4015}, {"solidity": 0.9935993851169139, "top": 835, "right": 1990, "bottom": 3235, "left": 380}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706872f.jpg"} -{"rects": [{"solidity": 0.9956216758528916, "top": 430, "right": 3085, "bottom": 1985, "left": 1135}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701398f.jpg"} -{"rects": [{"solidity": 0.9956216905755422, "top": 440, "right": 3200, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707343f.jpg"} -{"rects": [{"solidity": 0.9956221822818873, "top": 410, "right": 3165, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726122f.jpg"} -{"rects": [{"solidity": 0.9956222821939251, "top": 465, "right": 3110, "bottom": 2085, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728937f.jpg"} -{"rects": [{"solidity": 0.9956226170195506, "top": 435, "right": 3065, "bottom": 2070, "left": 655}, {"solidity": 0.9959501780749673, "top": 2155, "right": 3050, "bottom": 3780, "left": 645}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706529f.jpg"} -{"rects": [{"solidity": 0.9956227578528676, "top": 2260, "right": 3270, "bottom": 3935, "left": 795}, {"solidity": 0.9965067303447187, "top": 435, "right": 3235, "bottom": 2065, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726807f.jpg"} -{"rects": [{"solidity": 0.9956227932133459, "top": 4040, "right": 2980, "bottom": 5645, "left": 580}, {"solidity": 0.9955083326103061, "top": 465, "right": 2985, "bottom": 2050, "left": 600}, {"solidity": 0.9929639700883752, "top": 2270, "right": 2990, "bottom": 3840, "left": 610}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709103f.jpg"} -{"rects": [{"solidity": 0.9956228049937194, "top": 805, "right": 5705, "bottom": 3235, "left": 4080}, {"solidity": 0.9966047147799502, "top": 790, "right": 2020, "bottom": 3215, "left": 400}, {"solidity": 0.9959032799586777, "top": 800, "right": 3860, "bottom": 3220, "left": 2240}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734768f.jpg"} -{"rects": [{"solidity": 0.9956229738261686, "top": 425, "right": 3170, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/732430f.jpg"} -{"rects": [{"solidity": 0.9956229863811981, "top": 440, "right": 3210, "bottom": 2070, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732419f.jpg"} -{"rects": [{"solidity": 0.9956230715886591, "top": 2050, "right": 2855, "bottom": 3465, "left": 1060}, {"solidity": 0.9974654425847281, "top": 455, "right": 2835, "bottom": 1845, "left": 1090}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704210f.jpg"} -{"rects": [{"solidity": 0.9956235409123357, "top": 280, "right": 3200, "bottom": 1905, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702432f.jpg"} -{"rects": [{"solidity": 0.9956235552121373, "top": 830, "right": 2085, "bottom": 3260, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707868f.jpg"} -{"rects": [{"solidity": 0.9956235821717523, "top": 735, "right": 2005, "bottom": 3130, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718887f.jpg"} -{"rects": [{"solidity": 0.9956237762550413, "top": 630, "right": 4775, "bottom": 3350, "left": 1195}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734435f.jpg"} -{"rects": [{"solidity": 0.9956237983583472, "top": 760, "right": 2070, "bottom": 3155, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712226f.jpg"} -{"rects": [{"solidity": 0.9956238130625051, "top": 480, "right": 3020, "bottom": 1890, "left": 1180}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726563f.jpg"} -{"rects": [{"solidity": 0.9956239625773351, "top": 850, "right": 3785, "bottom": 3290, "left": 2135}, {"solidity": 0.9966257224270328, "top": 820, "right": 1970, "bottom": 3245, "left": 335}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718840f.jpg"} -{"rects": [{"solidity": 0.9956241157000455, "top": 4090, "right": 3100, "bottom": 5740, "left": 660}, {"solidity": 0.9960785700280608, "top": 2255, "right": 3105, "bottom": 3880, "left": 675}, {"solidity": 0.9964980004712368, "top": 415, "right": 3130, "bottom": 2035, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734415f.jpg"} -{"rects": [{"solidity": 0.9956245008591273, "top": 650, "right": 2745, "bottom": 2080, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706625f.jpg"} -{"rects": [{"solidity": 0.9956250860574815, "top": 770, "right": 4770, "bottom": 3395, "left": 1360}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701310f.jpg"} -{"rects": [{"solidity": 0.9956251434336835, "top": 480, "right": 3395, "bottom": 2495, "left": 350}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719250f.jpg"} -{"rects": [{"solidity": 0.995625260055277, "top": 370, "right": 3425, "bottom": 2355, "left": 635}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/706467f.jpg"} -{"rects": [{"solidity": 0.9956253991575088, "top": 2190, "right": 3130, "bottom": 3800, "left": 725}, {"solidity": 0.9511431773055222, "top": 480, "right": 3125, "bottom": 1955, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719673f.jpg"} -{"rects": [{"solidity": 0.9956255667843186, "top": 820, "right": 3985, "bottom": 3230, "left": 2380}, {"solidity": 0.9958289199271048, "top": 815, "right": 5785, "bottom": 3225, "left": 4190}, {"solidity": 0.9744621914887257, "top": 830, "right": 2170, "bottom": 3225, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722091f.jpg"} -{"rects": [{"solidity": 0.9956256450944734, "top": 1655, "right": 3910, "bottom": 2860, "left": 2415}, {"solidity": 0.9949611337801363, "top": 1650, "right": 2215, "bottom": 2855, "left": 725}, {"solidity": 0.997632918030928, "top": 395, "right": 2210, "bottom": 1590, "left": 720}, {"solidity": 0.9930474181704554, "top": 400, "right": 3895, "bottom": 1620, "left": 2420}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716279f.jpg"} -{"rects": [{"solidity": 0.9956257042694379, "top": 500, "right": 4425, "bottom": 2650, "left": 2920}, {"solidity": 0.9946947285052062, "top": 620, "right": 2885, "bottom": 2420, "left": 1680}, {"solidity": 0.9919471668455534, "top": 620, "right": 1550, "bottom": 2415, "left": 350}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715769f.jpg"} -{"rects": [{"solidity": 0.9956257439885723, "top": 875, "right": 3910, "bottom": 3320, "left": 2260}, {"solidity": 0.9966011597938145, "top": 895, "right": 2005, "bottom": 3315, "left": 390}, {"solidity": 0.9981578606578606, "top": 880, "right": 5735, "bottom": 3295, "left": 4125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728751f.jpg"} -{"rects": [{"solidity": 0.9956259262928187, "top": 320, "right": 5220, "bottom": 3555, "left": 1170}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732219f.jpg"} -{"rects": [{"solidity": 0.9956259784619764, "top": 585, "right": 5215, "bottom": 2035, "left": 3365}, {"solidity": 0.9982594563926512, "top": 625, "right": 2680, "bottom": 2055, "left": 845}, {"solidity": 0.9945471569050749, "top": 2045, "right": 5175, "bottom": 3480, "left": 3325}, {"solidity": 0.9967207043907478, "top": 2070, "right": 2670, "bottom": 3505, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702733f.jpg"} -{"rects": [{"solidity": 0.995626419889361, "top": 940, "right": 3830, "bottom": 3375, "left": 2200}, {"solidity": 0.9962396428790457, "top": 965, "right": 5590, "bottom": 3390, "left": 3955}, {"solidity": 0.9964137003824516, "top": 960, "right": 2075, "bottom": 3365, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734686f.jpg"} -{"rects": [{"solidity": 0.9956264372034319, "top": 1145, "right": 3975, "bottom": 5690, "left": 320}], "shape": {"h": 6875, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/708834f.jpg"} -{"rects": [{"solidity": 0.9956265610540037, "top": 475, "right": 3050, "bottom": 1885, "left": 1250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728267f.jpg"} -{"rects": [{"solidity": 0.9956267701774763, "top": 705, "right": 3310, "bottom": 2590, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733285f.jpg"} -{"rects": [{"solidity": 0.9956268501173207, "top": 2245, "right": 3105, "bottom": 3880, "left": 685}, {"solidity": 0.9951081185984519, "top": 4095, "right": 3105, "bottom": 5750, "left": 660}, {"solidity": 0.9968610131896859, "top": 395, "right": 3090, "bottom": 1980, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734805f.jpg"} -{"rects": [{"solidity": 0.9956269255062712, "top": 870, "right": 3830, "bottom": 3300, "left": 2220}, {"solidity": 0.9958260318527763, "top": 880, "right": 5680, "bottom": 3310, "left": 4075}, {"solidity": 0.9945454486140155, "top": 890, "right": 1995, "bottom": 3295, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730394f.jpg"} -{"rects": [{"solidity": 0.9956273267585396, "top": 435, "right": 3095, "bottom": 2045, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704332f.jpg"} -{"rects": [{"solidity": 0.9956274452859618, "top": 2275, "right": 3110, "bottom": 3885, "left": 695}, {"solidity": 0.994332159806088, "top": 415, "right": 3090, "bottom": 2015, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730644f.jpg"} -{"rects": [{"solidity": 0.9956275546193315, "top": 1090, "right": 1820, "bottom": 2960, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733512f.jpg"} -{"rects": [{"solidity": 0.9956275572407014, "top": 2270, "right": 3195, "bottom": 3920, "left": 750}, {"solidity": 0.9963477646907796, "top": 420, "right": 3190, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702896f.jpg"} -{"rects": [{"solidity": 0.995627653712767, "top": 2280, "right": 3175, "bottom": 3895, "left": 760}, {"solidity": 0.9965256223166201, "top": 435, "right": 3180, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704124f.jpg"} -{"rects": [{"solidity": 0.9956277457494882, "top": 465, "right": 2985, "bottom": 1820, "left": 1190}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725474f.jpg"} -{"rects": [{"solidity": 0.9956277791252325, "top": 2290, "right": 3245, "bottom": 3905, "left": 825}, {"solidity": 0.9992041021358767, "top": 425, "right": 3225, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712082f.jpg"} -{"rects": [{"solidity": 0.9956283197002276, "top": 1070, "right": 3420, "bottom": 5025, "left": 265}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714687f.jpg"} -{"rects": [{"solidity": 0.9956284365977155, "top": 395, "right": 3225, "bottom": 2035, "left": 810}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/712517f.jpg"} -{"rects": [{"solidity": 0.9956284689817771, "top": 770, "right": 2040, "bottom": 3180, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721659f.jpg"} -{"rects": [{"solidity": 0.9956290323315015, "top": 2050, "right": 3010, "bottom": 3520, "left": 1090}, {"solidity": 0.9930368569528222, "top": 455, "right": 2975, "bottom": 1880, "left": 1025}, {"solidity": 0.9947819570436641, "top": 2055, "right": 5230, "bottom": 3470, "left": 3290}, {"solidity": 0.9883727448543908, "top": 445, "right": 5180, "bottom": 1860, "left": 3255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704102f.jpg"} -{"rects": [{"solidity": 0.9956290421471095, "top": 430, "right": 3145, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/728820f.jpg"} -{"rects": [{"solidity": 0.9956290608387478, "top": 745, "right": 3950, "bottom": 3150, "left": 2350}, {"solidity": 0.9974789555484427, "top": 755, "right": 5770, "bottom": 3155, "left": 4175}, {"solidity": 0.9959014576426485, "top": 425, "right": 2150, "bottom": 1845, "left": 340}, {"solidity": 0.9868935625277052, "top": 2010, "right": 2145, "bottom": 3425, "left": 315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725057f.jpg"} -{"rects": [{"solidity": 0.9956295202808995, "top": 370, "right": 3245, "bottom": 2015, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710860f.jpg"} -{"rects": [{"solidity": 0.9956295729350428, "top": 1050, "right": 3510, "bottom": 5115, "left": 285}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718637f.jpg"} -{"rects": [{"solidity": 0.995629992479522, "top": 685, "right": 2715, "bottom": 2060, "left": 895}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725448f.jpg"} -{"rects": [{"solidity": 0.9956300453706788, "top": 1140, "right": 3365, "bottom": 4830, "left": 370}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723884f.jpg"} -{"rects": [{"solidity": 0.9956300791217274, "top": 690, "right": 3295, "bottom": 2140, "left": 1260}], "shape": {"h": 2965, "w": 4595}, "file": "/usr/local/google/home/danvk/milstein/1507527.jpg"} -{"rects": [{"solidity": 0.9956301583905497, "top": 405, "right": 3265, "bottom": 2045, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704033f.jpg"} -{"rects": [{"solidity": 0.995630424205033, "top": 825, "right": 3905, "bottom": 3270, "left": 2260}, {"solidity": 0.9972368711403343, "top": 825, "right": 2075, "bottom": 3255, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703390f.jpg"} -{"rects": [{"solidity": 0.995630525837046, "top": 3290, "right": 3305, "bottom": 5245, "left": 565}, {"solidity": 0.9941580566233903, "top": 735, "right": 3325, "bottom": 2665, "left": 600}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721029f.jpg"} -{"rects": [{"solidity": 0.9956310131667186, "top": 435, "right": 3160, "bottom": 2025, "left": 760}, {"solidity": 0.9960735207430671, "top": 2330, "right": 3155, "bottom": 3920, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723736f.jpg"} -{"rects": [{"solidity": 0.995631143704166, "top": 515, "right": 3335, "bottom": 2440, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713064f.jpg"} -{"rects": [{"solidity": 0.9956311457887986, "top": 460, "right": 3210, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707670f.jpg"} -{"rects": [{"solidity": 0.9956313861120324, "top": 480, "right": 2595, "bottom": 3500, "left": 480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732863f.jpg"} -{"rects": [{"solidity": 0.9956315398981759, "top": 415, "right": 3140, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729151f.jpg"} -{"rects": [{"solidity": 0.9956317564977383, "top": 1020, "right": 3585, "bottom": 5055, "left": 315}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717692f.jpg"} -{"rects": [{"solidity": 0.9956318836394187, "top": 745, "right": 1995, "bottom": 3145, "left": 390}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732551f.jpg"} -{"rects": [{"solidity": 0.9956321644545413, "top": 800, "right": 2045, "bottom": 3210, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718770f.jpg"} -{"rects": [{"solidity": 0.9956323188831262, "top": 645, "right": 2005, "bottom": 3055, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725039f.jpg"} -{"rects": [{"solidity": 0.9956323240445911, "top": 2355, "right": 3115, "bottom": 3985, "left": 700}, {"solidity": 0.9962105577889937, "top": 465, "right": 3110, "bottom": 2085, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731046f.jpg"} -{"rects": [{"solidity": 0.9956324465480659, "top": 770, "right": 2000, "bottom": 3175, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721959f.jpg"} -{"rects": [{"solidity": 0.9956329381637763, "top": 885, "right": 2065, "bottom": 2950, "left": 460}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712060f.jpg"} -{"rects": [{"solidity": 0.9956329771326218, "top": 405, "right": 3130, "bottom": 2040, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728678f.jpg"} -{"rects": [{"solidity": 0.9956329898642634, "top": 375, "right": 3265, "bottom": 2000, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726274f.jpg"} -{"rects": [{"solidity": 0.9956330087629189, "top": 705, "right": 2355, "bottom": 3450, "left": 450}, {"solidity": 0.9935005744441779, "top": 720, "right": 4245, "bottom": 3400, "left": 2380}, {"solidity": 0.9952899123472044, "top": 790, "right": 5870, "bottom": 3210, "left": 4250}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723464f.jpg"} -{"rects": [{"solidity": 0.9956330226190266, "top": 445, "right": 3625, "bottom": 2285, "left": 885}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711268f.jpg"} -{"rects": [{"solidity": 0.9956332698770829, "top": 430, "right": 5065, "bottom": 3735, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722085f.jpg"} -{"rects": [{"solidity": 0.9956336773854602, "top": 860, "right": 5740, "bottom": 3290, "left": 4105}, {"solidity": 0.9971093241999137, "top": 850, "right": 3885, "bottom": 3275, "left": 2265}, {"solidity": 0.997303268568458, "top": 855, "right": 2030, "bottom": 3255, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709542f.jpg"} -{"rects": [{"solidity": 0.9956337216972178, "top": 2245, "right": 3120, "bottom": 3875, "left": 685}, {"solidity": 0.9950931717067509, "top": 385, "right": 3135, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729395f.jpg"} -{"rects": [{"solidity": 0.9956337702816576, "top": 365, "right": 3105, "bottom": 1995, "left": 705}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/716737f.jpg"} -{"rects": [{"solidity": 0.9956337996044353, "top": 805, "right": 3845, "bottom": 3220, "left": 2215}, {"solidity": 0.996103758882109, "top": 780, "right": 2000, "bottom": 3185, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718150f.jpg"} -{"rects": [{"solidity": 0.9956339069396359, "top": 400, "right": 2570, "bottom": 1920, "left": 305}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716338f.jpg"} -{"rects": [{"solidity": 0.9956343625535042, "top": 420, "right": 3510, "bottom": 2280, "left": 415}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715606f.jpg"} -{"rects": [{"solidity": 0.9956343871056338, "top": 395, "right": 3300, "bottom": 2030, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726084f.jpg"} -{"rects": [{"solidity": 0.9956346038102023, "top": 610, "right": 3370, "bottom": 2530, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730944f.jpg"} -{"rects": [{"solidity": 0.9956347248368129, "top": 410, "right": 3175, "bottom": 2045, "left": 715}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700115f.jpg"} -{"rects": [{"solidity": 0.9956350251491929, "top": 420, "right": 3170, "bottom": 2050, "left": 735}, {"solidity": 0.9954824282593473, "top": 2310, "right": 3145, "bottom": 3940, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723000f.jpg"} -{"rects": [{"solidity": 0.9956351814734824, "top": 410, "right": 3290, "bottom": 2035, "left": 865}, {"solidity": 0.9935968901999862, "top": 2345, "right": 3015, "bottom": 3770, "left": 1200}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726082f.jpg"} -{"rects": [{"solidity": 0.9956352086826699, "top": 400, "right": 3150, "bottom": 3575, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714629f.jpg"} -{"rects": [{"solidity": 0.9956352494556105, "top": 650, "right": 2675, "bottom": 2095, "left": 850}, {"solidity": 0.9972039449437595, "top": 2110, "right": 2670, "bottom": 3525, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702425f.jpg"} -{"rects": [{"solidity": 0.9956352567410134, "top": 450, "right": 3200, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717957f.jpg"} -{"rects": [{"solidity": 0.9956353117772495, "top": 2275, "right": 3155, "bottom": 3895, "left": 715}, {"solidity": 0.9956750955971956, "top": 390, "right": 3175, "bottom": 2010, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720270f.jpg"} -{"rects": [{"solidity": 0.995635388114539, "top": 650, "right": 2375, "bottom": 3390, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702245f.jpg"} -{"rects": [{"solidity": 0.9956357346050538, "top": 430, "right": 3025, "bottom": 2040, "left": 1050}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720933f.jpg"} -{"rects": [{"solidity": 0.995635751281432, "top": 555, "right": 3130, "bottom": 2145, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724892f.jpg"} -{"rects": [{"solidity": 0.9956359102244389, "top": 705, "right": 2675, "bottom": 2165, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705300f.jpg"} -{"rects": [{"solidity": 0.9956360160725403, "top": 855, "right": 3935, "bottom": 3315, "left": 2275}, {"solidity": 0.9954844344309501, "top": 810, "right": 2070, "bottom": 3270, "left": 435}, {"solidity": 0.9958031176840062, "top": 885, "right": 5790, "bottom": 3335, "left": 4150}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719764f.jpg"} -{"rects": [{"solidity": 0.9956361508084537, "top": 825, "right": 3895, "bottom": 3245, "left": 2275}, {"solidity": 0.9966445445590919, "top": 845, "right": 2060, "bottom": 3265, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705494f.jpg"} -{"rects": [{"solidity": 0.9956363459858266, "top": 2270, "right": 5115, "bottom": 3705, "left": 3295}, {"solidity": 0.9951327022787358, "top": 2270, "right": 2780, "bottom": 3710, "left": 980}, {"solidity": 0.9974570726097474, "top": 650, "right": 5120, "bottom": 2055, "left": 3310}, {"solidity": 0.9931666716327483, "top": 600, "right": 2795, "bottom": 2015, "left": 985}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728082f.jpg"} -{"rects": [{"solidity": 0.9956366965663395, "top": 390, "right": 3125, "bottom": 2025, "left": 700}, {"solidity": 0.9955267732457823, "top": 2225, "right": 3110, "bottom": 3865, "left": 700}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714038f.jpg"} -{"rects": [{"solidity": 0.9956367250910898, "top": 2200, "right": 3100, "bottom": 3825, "left": 675}, {"solidity": 0.9956110428889798, "top": 360, "right": 3105, "bottom": 1970, "left": 685}, {"solidity": 0.9964522426077488, "top": 4050, "right": 3075, "bottom": 5655, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722885f.jpg"} -{"rects": [{"solidity": 0.9956368380363355, "top": 560, "right": 2585, "bottom": 1995, "left": 745}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704141f.jpg"} -{"rects": [{"solidity": 0.9956369671411114, "top": 755, "right": 2090, "bottom": 3170, "left": 475}, {"solidity": 0.9970385509076354, "top": 760, "right": 3920, "bottom": 3170, "left": 2315}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713945f.jpg"} -{"rects": [{"solidity": 0.9956374227827033, "top": 410, "right": 3195, "bottom": 2055, "left": 750}, {"solidity": 0.9974127360156134, "top": 2295, "right": 3175, "bottom": 3910, "left": 745}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728919f.jpg"} -{"rects": [{"solidity": 0.9956378348321285, "top": 2260, "right": 3190, "bottom": 3890, "left": 760}, {"solidity": 0.99759297186245, "top": 505, "right": 3185, "bottom": 2125, "left": 760}, {"solidity": 0.995536508449907, "top": 4035, "right": 3185, "bottom": 5655, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729991f.jpg"} -{"rects": [{"solidity": 0.9956379745198215, "top": 430, "right": 3200, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706592f.jpg"} -{"rects": [{"solidity": 0.9956381869411843, "top": 3020, "right": 3480, "bottom": 5095, "left": 660}, {"solidity": 0.9954980806549221, "top": 740, "right": 3520, "bottom": 2765, "left": 695}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/733577f.jpg"} -{"rects": [{"solidity": 0.9956383038073551, "top": 540, "right": 3045, "bottom": 1930, "left": 1255}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/727041f.jpg"} -{"rects": [{"solidity": 0.9956384014806139, "top": 420, "right": 3060, "bottom": 2035, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729314f.jpg"} -{"rects": [{"solidity": 0.9956384771300887, "top": 2025, "right": 2695, "bottom": 3455, "left": 885}, {"solidity": 0.9956645112811691, "top": 600, "right": 2695, "bottom": 2015, "left": 890}, {"solidity": 0.9961565233181007, "top": 2045, "right": 5340, "bottom": 3410, "left": 3500}, {"solidity": 0.9963702909833579, "top": 610, "right": 5305, "bottom": 2025, "left": 3530}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704316f.jpg"} -{"rects": [{"solidity": 0.9956385434912787, "top": 2210, "right": 3150, "bottom": 3865, "left": 705}, {"solidity": 0.9955938075480552, "top": 400, "right": 3190, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732158f.jpg"} -{"rects": [{"solidity": 0.9956390198177876, "top": 260, "right": 3465, "bottom": 2440, "left": 430}, {"solidity": 0.9953001655883285, "top": 2520, "right": 3130, "bottom": 4125, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730518f.jpg"} -{"rects": [{"solidity": 0.9956390324043679, "top": 2255, "right": 3220, "bottom": 3925, "left": 765}, {"solidity": 0.9951110969833752, "top": 395, "right": 3245, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733941f.jpg"} -{"rects": [{"solidity": 0.9956393640157527, "top": 660, "right": 4760, "bottom": 3500, "left": 1135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723841f.jpg"} -{"rects": [{"solidity": 0.9956395781566683, "top": 695, "right": 3295, "bottom": 2665, "left": 500}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720257f.jpg"} -{"rects": [{"solidity": 0.9956397743017986, "top": 410, "right": 3085, "bottom": 2035, "left": 665}, {"solidity": 0.9963221499087815, "top": 2250, "right": 3070, "bottom": 3885, "left": 660}, {"solidity": 0.9970479632256818, "top": 4135, "right": 3055, "bottom": 5740, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709311f.jpg"} -{"rects": [{"solidity": 0.9956398545343281, "top": 4085, "right": 3175, "bottom": 5740, "left": 730}, {"solidity": 0.9955701569144563, "top": 2240, "right": 3210, "bottom": 3865, "left": 780}, {"solidity": 0.9958015366246171, "top": 425, "right": 3225, "bottom": 2040, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731649f.jpg"} -{"rects": [{"solidity": 0.995639933970472, "top": 1015, "right": 4180, "bottom": 2605, "left": 1780}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709211f.jpg"} -{"rects": [{"solidity": 0.9956403322201585, "top": 2170, "right": 2715, "bottom": 3595, "left": 870}, {"solidity": 0.9959324457498406, "top": 675, "right": 5285, "bottom": 2095, "left": 3440}, {"solidity": 0.9955723310580035, "top": 705, "right": 2690, "bottom": 2110, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727363f.jpg"} -{"rects": [{"solidity": 0.9956403353961721, "top": 560, "right": 4980, "bottom": 3575, "left": 1190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709907f.jpg"} -{"rects": [{"solidity": 0.9956404285987884, "top": 660, "right": 2690, "bottom": 2070, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726549f.jpg"} -{"rects": [{"solidity": 0.995640658299404, "top": 350, "right": 3155, "bottom": 1965, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719688f.jpg"} -{"rects": [{"solidity": 0.9956411863809114, "top": 670, "right": 2785, "bottom": 2060, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727438f.jpg"} -{"rects": [{"solidity": 0.9956413351609801, "top": 1195, "right": 3410, "bottom": 5035, "left": 275}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713098f.jpg"} -{"rects": [{"solidity": 0.9956414121432285, "top": 405, "right": 3110, "bottom": 2015, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729537f.jpg"} -{"rects": [{"solidity": 0.9956414623365142, "top": 2295, "right": 3090, "bottom": 3905, "left": 665}, {"solidity": 0.9989987692512391, "top": 440, "right": 3070, "bottom": 2015, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728339f.jpg"} -{"rects": [{"solidity": 0.9956414798577746, "top": 2190, "right": 3225, "bottom": 3830, "left": 780}, {"solidity": 0.9961134588295556, "top": 4075, "right": 3210, "bottom": 5705, "left": 770}, {"solidity": 0.9958761671919644, "top": 370, "right": 3210, "bottom": 1975, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725771f.jpg"} -{"rects": [{"solidity": 0.995641798906114, "top": 415, "right": 3205, "bottom": 2070, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717786f.jpg"} -{"rects": [{"solidity": 0.9956418659786626, "top": 4070, "right": 3045, "bottom": 5800, "left": 535}, {"solidity": 0.9979274154429598, "top": 295, "right": 3030, "bottom": 2005, "left": 515}, {"solidity": 0.9941558937371151, "top": 2165, "right": 3045, "bottom": 3900, "left": 545}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733442f.jpg"} -{"rects": [{"solidity": 0.995642008545467, "top": 830, "right": 2040, "bottom": 3235, "left": 440}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733864f.jpg"} -{"rects": [{"solidity": 0.9956420903940653, "top": 2075, "right": 2775, "bottom": 3475, "left": 970}, {"solidity": 0.9951487450886055, "top": 645, "right": 2730, "bottom": 2055, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704217f.jpg"} -{"rects": [{"solidity": 0.995642242136707, "top": 385, "right": 3215, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727715f.jpg"} -{"rects": [{"solidity": 0.995642394727063, "top": 765, "right": 3365, "bottom": 2290, "left": 1205}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508985.jpg"} -{"rects": [{"solidity": 0.9956424056883271, "top": 375, "right": 3360, "bottom": 2280, "left": 670}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714090f.jpg"} -{"rects": [{"solidity": 0.995642800066338, "top": 505, "right": 2890, "bottom": 1905, "left": 1075}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704243f.jpg"} -{"rects": [{"solidity": 0.995642872696009, "top": 1010, "right": 3125, "bottom": 3040, "left": 335}, {"solidity": 0.9946225805458966, "top": 1040, "right": 5765, "bottom": 2925, "left": 3150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725457f.jpg"} -{"rects": [{"solidity": 0.9956432636817896, "top": 580, "right": 2725, "bottom": 2000, "left": 915}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703810f.jpg"} -{"rects": [{"solidity": 0.9956433513655201, "top": 715, "right": 5075, "bottom": 2210, "left": 3200}, {"solidity": 0.9992490576409612, "top": 715, "right": 2595, "bottom": 2140, "left": 795}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716608f.jpg"} -{"rects": [{"solidity": 0.9956433653232117, "top": 540, "right": 4835, "bottom": 3560, "left": 1115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713725f.jpg"} -{"rects": [{"solidity": 0.9956435467958453, "top": 455, "right": 2750, "bottom": 2140, "left": 720}, {"solidity": 0.9982259479481431, "top": 2175, "right": 2715, "bottom": 3840, "left": 775}, {"solidity": 0.9963808606846277, "top": 2205, "right": 5190, "bottom": 3685, "left": 3205}, {"solidity": 0.9948621264700632, "top": 485, "right": 5150, "bottom": 1965, "left": 3180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721181f.jpg"} -{"rects": [{"solidity": 0.9956435736824754, "top": 780, "right": 2045, "bottom": 3155, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713963f.jpg"} -{"rects": [{"solidity": 0.9956437673518264, "top": 590, "right": 4940, "bottom": 3590, "left": 1170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709925f.jpg"} -{"rects": [{"solidity": 0.9956439061026862, "top": 815, "right": 3935, "bottom": 3270, "left": 2275}, {"solidity": 0.9962020422551227, "top": 780, "right": 2080, "bottom": 3205, "left": 440}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716742f.jpg"} -{"rects": [{"solidity": 0.9956439315152343, "top": 355, "right": 2380, "bottom": 1550, "left": 595}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715910f.jpg"} -{"rects": [{"solidity": 0.9956439386573219, "top": 445, "right": 4015, "bottom": 2600, "left": 2505}, {"solidity": 0.9950826215374791, "top": 465, "right": 2070, "bottom": 2600, "left": 575}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716439f.jpg"} -{"rects": [{"solidity": 0.9956444278205406, "top": 735, "right": 2600, "bottom": 2150, "left": 785}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728257f.jpg"} -{"rects": [{"solidity": 0.9956446406828563, "top": 730, "right": 5100, "bottom": 3300, "left": 1165}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/709645f.jpg"} -{"rects": [{"solidity": 0.9956447024413347, "top": 395, "right": 3230, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719698f.jpg"} -{"rects": [{"solidity": 0.9956447469359356, "top": 1090, "right": 3305, "bottom": 5135, "left": 490}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733312f.jpg"} -{"rects": [{"solidity": 0.9956447593657016, "top": 445, "right": 3185, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704032f.jpg"} -{"rects": [{"solidity": 0.9956451098013618, "top": 2230, "right": 2870, "bottom": 3680, "left": 1020}, {"solidity": 0.9961023445666782, "top": 560, "right": 2845, "bottom": 1945, "left": 1015}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732921f.jpg"} -{"rects": [{"solidity": 0.9956452348381213, "top": 405, "right": 3015, "bottom": 2020, "left": 610}, {"solidity": 0.9926168910967054, "top": 4150, "right": 3025, "bottom": 5770, "left": 610}, {"solidity": 0.9951870245311751, "top": 2275, "right": 3020, "bottom": 3880, "left": 600}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728445f.jpg"} -{"rects": [{"solidity": 0.9956452414833611, "top": 550, "right": 5305, "bottom": 2065, "left": 3345}, {"solidity": 0.9967108414497845, "top": 630, "right": 2745, "bottom": 2090, "left": 830}, {"solidity": 0.9959280903663751, "top": 2095, "right": 2745, "bottom": 3475, "left": 850}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731429f.jpg"} -{"rects": [{"solidity": 0.9956453551526214, "top": 895, "right": 3215, "bottom": 2525, "left": 790}, {"solidity": 0.9965357893244305, "top": 3420, "right": 3210, "bottom": 5035, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731077f.jpg"} -{"rects": [{"solidity": 0.9956454362766063, "top": 405, "right": 3235, "bottom": 3810, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715051f.jpg"} -{"rects": [{"solidity": 0.9956456451544308, "top": 450, "right": 3225, "bottom": 2065, "left": 815}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710006f.jpg"} -{"rects": [{"solidity": 0.9956459955893976, "top": 605, "right": 2570, "bottom": 3425, "left": 360}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708210f.jpg"} -{"rects": [{"solidity": 0.9956462082431791, "top": 830, "right": 2035, "bottom": 3225, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724735f.jpg"} -{"rects": [{"solidity": 0.9956463420546551, "top": 780, "right": 2060, "bottom": 3190, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717294f.jpg"} -{"rects": [{"solidity": 0.9956466725394411, "top": 390, "right": 2435, "bottom": 2825, "left": 800}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707264f.jpg"} -{"rects": [{"solidity": 0.9956467823196385, "top": 760, "right": 3890, "bottom": 3180, "left": 2280}, {"solidity": 0.9947545507201104, "top": 770, "right": 2045, "bottom": 3195, "left": 425}, {"solidity": 0.9959710492988707, "top": 760, "right": 5725, "bottom": 3175, "left": 4135}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710076f.jpg"} -{"rects": [{"solidity": 0.9956471101105465, "top": 785, "right": 2045, "bottom": 3205, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720372f.jpg"} -{"rects": [{"solidity": 0.9956476247536187, "top": 365, "right": 3655, "bottom": 2425, "left": 805}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701201f.jpg"} -{"rects": [{"solidity": 0.9956476943371881, "top": 395, "right": 3145, "bottom": 2035, "left": 710}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722644f.jpg"} -{"rects": [{"solidity": 0.9956479199736926, "top": 510, "right": 2715, "bottom": 2070, "left": 715}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702692f.jpg"} -{"rects": [{"solidity": 0.9956479945221353, "top": 455, "right": 3125, "bottom": 2045, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719220f.jpg"} -{"rects": [{"solidity": 0.9956480419465836, "top": 2250, "right": 3195, "bottom": 3865, "left": 795}, {"solidity": 0.9958876937751037, "top": 415, "right": 3175, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724215f.jpg"} -{"rects": [{"solidity": 0.9956480719688185, "top": 755, "right": 3860, "bottom": 3190, "left": 2225}, {"solidity": 0.9976751325526213, "top": 780, "right": 5670, "bottom": 3200, "left": 4040}, {"solidity": 0.9970743030571926, "top": 760, "right": 2055, "bottom": 3180, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705628f.jpg"} -{"rects": [{"solidity": 0.9956483109140936, "top": 610, "right": 2655, "bottom": 2055, "left": 805}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702978f.jpg"} -{"rects": [{"solidity": 0.9956483273972558, "top": 400, "right": 3185, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/732383f.jpg"} -{"rects": [{"solidity": 0.9956484795427041, "top": 420, "right": 3205, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706986f.jpg"} -{"rects": [{"solidity": 0.9956485220634642, "top": 2150, "right": 5220, "bottom": 3595, "left": 3380}, {"solidity": 0.9945849404343448, "top": 655, "right": 2775, "bottom": 2115, "left": 940}, {"solidity": 0.9945398187887459, "top": 2165, "right": 2770, "bottom": 3610, "left": 935}, {"solidity": 0.9953404724924385, "top": 655, "right": 5230, "bottom": 2105, "left": 3405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706952f.jpg"} -{"rects": [{"solidity": 0.9956485808522931, "top": 370, "right": 3350, "bottom": 2300, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714103f.jpg"} -{"rects": [{"solidity": 0.9956485886025053, "top": 540, "right": 2655, "bottom": 3560, "left": 185}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507627.jpg"} -{"rects": [{"solidity": 0.9956486554610701, "top": 750, "right": 2005, "bottom": 3130, "left": 400}, {"solidity": 0.9972891706525282, "top": 735, "right": 3780, "bottom": 3125, "left": 2195}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713381f.jpg"} -{"rects": [{"solidity": 0.9956488354235987, "top": 465, "right": 5140, "bottom": 3660, "left": 1090}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708439f.jpg"} -{"rects": [{"solidity": 0.99564932128138, "top": 840, "right": 3835, "bottom": 3280, "left": 2205}, {"solidity": 0.9983084902874604, "top": 855, "right": 1995, "bottom": 3275, "left": 375}, {"solidity": 0.9960036670712497, "top": 845, "right": 5660, "bottom": 3270, "left": 4050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728289f.jpg"} -{"rects": [{"solidity": 0.9956494875567701, "top": 2220, "right": 3210, "bottom": 3875, "left": 760}, {"solidity": 0.9959415532579333, "top": 4080, "right": 3170, "bottom": 5715, "left": 725}, {"solidity": 0.9955845012471622, "top": 395, "right": 3210, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734342f.jpg"} -{"rects": [{"solidity": 0.9956495176848874, "top": 4130, "right": 3080, "bottom": 5760, "left": 645}, {"solidity": 0.9954868038067829, "top": 405, "right": 3085, "bottom": 2000, "left": 670}, {"solidity": 0.9963787325563948, "top": 2300, "right": 3080, "bottom": 3875, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729434f.jpg"} -{"rects": [{"solidity": 0.9956496460207257, "top": 360, "right": 3845, "bottom": 2805, "left": 825}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716345f.jpg"} -{"rects": [{"solidity": 0.9956497697656552, "top": 590, "right": 2730, "bottom": 2005, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704805f.jpg"} -{"rects": [{"solidity": 0.9956498166570958, "top": 2250, "right": 3140, "bottom": 3890, "left": 705}, {"solidity": 0.9961117516171432, "top": 4105, "right": 3125, "bottom": 5730, "left": 695}, {"solidity": 0.9957472543109582, "top": 430, "right": 3145, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732164f.jpg"} -{"rects": [{"solidity": 0.9956501741244497, "top": 435, "right": 3215, "bottom": 2035, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700428f.jpg"} -{"rects": [{"solidity": 0.9956502205521973, "top": 655, "right": 2505, "bottom": 2160, "left": 420}, {"solidity": 0.9947394398058652, "top": 2445, "right": 2495, "bottom": 3925, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716220f.jpg"} -{"rects": [{"solidity": 0.9956504547251879, "top": 635, "right": 4185, "bottom": 3450, "left": 2160}, {"solidity": 0.9966633600865723, "top": 805, "right": 1990, "bottom": 3225, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711955f.jpg"} -{"rects": [{"solidity": 0.9956505748596831, "top": 4075, "right": 3225, "bottom": 5710, "left": 795}, {"solidity": 0.9943175210306641, "top": 2225, "right": 3200, "bottom": 3835, "left": 775}, {"solidity": 0.9962348644884413, "top": 425, "right": 3180, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732147f.jpg"} -{"rects": [{"solidity": 0.9956507193041151, "top": 410, "right": 2355, "bottom": 1610, "left": 560}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716352f.jpg"} -{"rects": [{"solidity": 0.9956507787623726, "top": 665, "right": 2745, "bottom": 2080, "left": 940}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725768f.jpg"} -{"rects": [{"solidity": 0.9956508293048163, "top": 4120, "right": 3070, "bottom": 5725, "left": 660}, {"solidity": 0.995495077094557, "top": 370, "right": 3115, "bottom": 1960, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734248f.jpg"} -{"rects": [{"solidity": 0.9956509358254161, "top": 765, "right": 3905, "bottom": 3195, "left": 2265}, {"solidity": 0.9960067097698809, "top": 795, "right": 5720, "bottom": 3205, "left": 4105}, {"solidity": 0.9950821721338439, "top": 775, "right": 2045, "bottom": 3175, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724752f.jpg"} -{"rects": [{"solidity": 0.9956510999011909, "top": 2325, "right": 3160, "bottom": 3955, "left": 750}, {"solidity": 0.9972032185910641, "top": 445, "right": 3155, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719215f.jpg"} -{"rects": [{"solidity": 0.9956514402796192, "top": 610, "right": 2795, "bottom": 2040, "left": 960}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706045f.jpg"} -{"rects": [{"solidity": 0.9956514668574774, "top": 400, "right": 3190, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705185f.jpg"} -{"rects": [{"solidity": 0.9956515120427304, "top": 580, "right": 2800, "bottom": 2970, "left": 1200}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708170f.jpg"} -{"rects": [{"solidity": 0.9956517012718774, "top": 485, "right": 3145, "bottom": 2090, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717602f.jpg"} -{"rects": [{"solidity": 0.9956517593210642, "top": 2205, "right": 3300, "bottom": 3855, "left": 855}, {"solidity": 0.997140096865623, "top": 355, "right": 3295, "bottom": 1980, "left": 870}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725113f.jpg"} -{"rects": [{"solidity": 0.9956523834771293, "top": 625, "right": 2765, "bottom": 2060, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707196f.jpg"} -{"rects": [{"solidity": 0.9956524959503805, "top": 380, "right": 3185, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720021f.jpg"} -{"rects": [{"solidity": 0.9956528004611394, "top": 2145, "right": 2770, "bottom": 3575, "left": 930}, {"solidity": 0.9960150833231967, "top": 645, "right": 2760, "bottom": 2070, "left": 935}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704394f.jpg"} -{"rects": [{"solidity": 0.9956528436221739, "top": 745, "right": 3150, "bottom": 2575, "left": 710}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508477.jpg"} -{"rects": [{"solidity": 0.995653046564692, "top": 700, "right": 2675, "bottom": 3660, "left": 230}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507628.jpg"} -{"rects": [{"solidity": 0.9956532201498077, "top": 670, "right": 2710, "bottom": 2055, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726718f.jpg"} -{"rects": [{"solidity": 0.9956532856047047, "top": 3745, "right": 3190, "bottom": 5350, "left": 800}, {"solidity": 0.9936892640055751, "top": 2070, "right": 2950, "bottom": 3295, "left": 1040}, {"solidity": 0.9964197385466965, "top": 455, "right": 2945, "bottom": 1600, "left": 1060}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701818f.jpg"} -{"rects": [{"solidity": 0.9956533817962935, "top": 535, "right": 3710, "bottom": 2670, "left": 650}], "shape": {"h": 6850, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711367f.jpg"} -{"rects": [{"solidity": 0.9956538500825406, "top": 860, "right": 1935, "bottom": 3250, "left": 330}, {"solidity": 0.9973562765241993, "top": 850, "right": 3775, "bottom": 3240, "left": 2185}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708469f.jpg"} -{"rects": [{"solidity": 0.9956543138193275, "top": 865, "right": 4510, "bottom": 2855, "left": 1720}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714735f.jpg"} -{"rects": [{"solidity": 0.9956543683279953, "top": 410, "right": 3185, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714529f.jpg"} -{"rects": [{"solidity": 0.995654427687642, "top": 695, "right": 2755, "bottom": 2130, "left": 930}, {"solidity": 0.9956192286138927, "top": 2130, "right": 2750, "bottom": 3560, "left": 935}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703605f.jpg"} -{"rects": [{"solidity": 0.9956546883037628, "top": 415, "right": 3160, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704534f.jpg"} -{"rects": [{"solidity": 0.995654758581277, "top": 790, "right": 2020, "bottom": 3195, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718152f.jpg"} -{"rects": [{"solidity": 0.9956548378465369, "top": 370, "right": 4990, "bottom": 3660, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711712f.jpg"} -{"rects": [{"solidity": 0.9956549499294307, "top": 2190, "right": 3170, "bottom": 3790, "left": 795}, {"solidity": 0.9961582527869666, "top": 345, "right": 3145, "bottom": 1915, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701380f.jpg"} -{"rects": [{"solidity": 0.9956551588542254, "top": 415, "right": 3155, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723244f.jpg"} -{"rects": [{"solidity": 0.9956551846304974, "top": 750, "right": 2060, "bottom": 3185, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720791f.jpg"} -{"rects": [{"solidity": 0.9956552091269297, "top": 2230, "right": 3195, "bottom": 3870, "left": 755}, {"solidity": 0.9946371877016245, "top": 4080, "right": 3185, "bottom": 5710, "left": 755}, {"solidity": 0.9958870205747055, "top": 415, "right": 3185, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734536f.jpg"} -{"rects": [{"solidity": 0.9956552411944576, "top": 615, "right": 4905, "bottom": 3635, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709950f.jpg"} -{"rects": [{"solidity": 0.9956553917548456, "top": 440, "right": 3035, "bottom": 2040, "left": 1065}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711957f.jpg"} -{"rects": [{"solidity": 0.9956554178524031, "top": 380, "right": 3195, "bottom": 1975, "left": 795}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/712717f.jpg"} -{"rects": [{"solidity": 0.9956554999438662, "top": 815, "right": 2340, "bottom": 3505, "left": 545}], "shape": {"h": 4410, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711326f.jpg"} -{"rects": [{"solidity": 0.995656352104555, "top": 405, "right": 3190, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705629f.jpg"} -{"rects": [{"solidity": 0.995656485432624, "top": 500, "right": 2480, "bottom": 2010, "left": 610}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712414f.jpg"} -{"rects": [{"solidity": 0.9956566010649841, "top": 425, "right": 3190, "bottom": 2015, "left": 810}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717705f.jpg"} -{"rects": [{"solidity": 0.9956567496458207, "top": 2480, "right": 2490, "bottom": 3980, "left": 380}, {"solidity": 0.99626676687307, "top": 670, "right": 2500, "bottom": 2160, "left": 415}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716033f.jpg"} -{"rects": [{"solidity": 0.9956567559799444, "top": 2305, "right": 3105, "bottom": 3935, "left": 680}, {"solidity": 0.9958922248676652, "top": 415, "right": 3110, "bottom": 2045, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710749f.jpg"} -{"rects": [{"solidity": 0.9956567810053172, "top": 385, "right": 3135, "bottom": 2045, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705789f.jpg"} -{"rects": [{"solidity": 0.9956568326788912, "top": 250, "right": 3200, "bottom": 1830, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726003f.jpg"} -{"rects": [{"solidity": 0.9956569538419131, "top": 655, "right": 3910, "bottom": 3085, "left": 2270}, {"solidity": 0.9961069985548707, "top": 645, "right": 2040, "bottom": 3055, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727591f.jpg"} -{"rects": [{"solidity": 0.9956570095225274, "top": 410, "right": 3215, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724353f.jpg"} -{"rects": [{"solidity": 0.995657236263861, "top": 420, "right": 3185, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709255f.jpg"} -{"rects": [{"solidity": 0.9956576293260908, "top": 800, "right": 2075, "bottom": 3230, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723961f.jpg"} -{"rects": [{"solidity": 0.995657671326903, "top": 655, "right": 3350, "bottom": 2570, "left": 620}, {"solidity": 0.9973657799259794, "top": 3355, "right": 3310, "bottom": 5285, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723275f.jpg"} -{"rects": [{"solidity": 0.9956576965113875, "top": 390, "right": 3145, "bottom": 1895, "left": 875}, {"solidity": 0.9953086791470178, "top": 2025, "right": 3095, "bottom": 3455, "left": 910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709638f.jpg"} -{"rects": [{"solidity": 0.9956578576076753, "top": 3055, "right": 2335, "bottom": 4280, "left": 530}, {"solidity": 0.9970972423802612, "top": 1705, "right": 2335, "bottom": 2910, "left": 530}, {"solidity": 0.9972987891528768, "top": 355, "right": 2325, "bottom": 1555, "left": 535}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716487f.jpg"} -{"rects": [{"solidity": 0.9956580914772074, "top": 2180, "right": 3155, "bottom": 3845, "left": 720}, {"solidity": 0.9967048480764912, "top": 325, "right": 3180, "bottom": 1960, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718764f.jpg"} -{"rects": [{"solidity": 0.9956581150648661, "top": 425, "right": 3170, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719690f.jpg"} -{"rects": [{"solidity": 0.9956583420849279, "top": 330, "right": 5290, "bottom": 3365, "left": 1435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700652f.jpg"} -{"rects": [{"solidity": 0.9956585194172966, "top": 660, "right": 3310, "bottom": 2570, "left": 610}, {"solidity": 0.9946657784708397, "top": 3195, "right": 3270, "bottom": 5085, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712532f.jpg"} -{"rects": [{"solidity": 0.9956587230067948, "top": 475, "right": 3110, "bottom": 2075, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713120f.jpg"} -{"rects": [{"solidity": 0.9956588760388154, "top": 2425, "right": 3190, "bottom": 4260, "left": 500}, {"solidity": 0.994117489843917, "top": 360, "right": 3160, "bottom": 2150, "left": 495}, {"solidity": 0.9967549424046288, "top": 4510, "right": 2875, "bottom": 5615, "left": 930}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/729017f.jpg"} -{"rects": [{"solidity": 0.9956591826058482, "top": 700, "right": 4980, "bottom": 3125, "left": 1080}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708678f.jpg"} -{"rects": [{"solidity": 0.9956591992242538, "top": 475, "right": 5105, "bottom": 3765, "left": 1075}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709137f.jpg"} -{"rects": [{"solidity": 0.9956593448743192, "top": 2230, "right": 3170, "bottom": 3885, "left": 735}, {"solidity": 0.9974820616942999, "top": 405, "right": 3165, "bottom": 2030, "left": 745}, {"solidity": 0.9967403126468146, "top": 4120, "right": 3140, "bottom": 5745, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729207f.jpg"} -{"rects": [{"solidity": 0.995659391410504, "top": 405, "right": 3080, "bottom": 2025, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729027f.jpg"} -{"rects": [{"solidity": 0.9956595996044842, "top": 395, "right": 3195, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702348f.jpg"} -{"rects": [{"solidity": 0.9956601558192185, "top": 955, "right": 3925, "bottom": 3380, "left": 2305}, {"solidity": 0.9958365519318138, "top": 975, "right": 2285, "bottom": 3385, "left": 675}, {"solidity": 0.993357234973795, "top": 945, "right": 5545, "bottom": 3350, "left": 3940}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709528f.jpg"} -{"rects": [{"solidity": 0.9956602273168083, "top": 590, "right": 2685, "bottom": 2010, "left": 850}, {"solidity": 0.997030765386368, "top": 2085, "right": 2685, "bottom": 3490, "left": 850}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705783f.jpg"} -{"rects": [{"solidity": 0.9956605236005313, "top": 610, "right": 2640, "bottom": 2030, "left": 840}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721816f.jpg"} -{"rects": [{"solidity": 0.9956606146569692, "top": 930, "right": 2300, "bottom": 3655, "left": 465}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711216f.jpg"} -{"rects": [{"solidity": 0.9956606150254816, "top": 520, "right": 4250, "bottom": 2325, "left": 3035}, {"solidity": 0.9966149142893955, "top": 510, "right": 2850, "bottom": 2305, "left": 1645}, {"solidity": 0.9934790063022477, "top": 495, "right": 1450, "bottom": 2290, "left": 255}], "shape": {"h": 2845, "w": 4465}, "file": "/usr/local/google/home/danvk/milstein/732499f.jpg"} -{"rects": [{"solidity": 0.9956607406312176, "top": 4075, "right": 3230, "bottom": 5720, "left": 795}, {"solidity": 0.9964500545526521, "top": 390, "right": 3245, "bottom": 2010, "left": 825}, {"solidity": 0.9951312406153132, "top": 2220, "right": 3245, "bottom": 3855, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704054f.jpg"} -{"rects": [{"solidity": 0.9956607767534646, "top": 660, "right": 2540, "bottom": 2160, "left": 440}, {"solidity": 0.9949242924585994, "top": 2390, "right": 2525, "bottom": 3885, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716245f.jpg"} -{"rects": [{"solidity": 0.9956607888422122, "top": 760, "right": 2025, "bottom": 3185, "left": 400}, {"solidity": 0.9941685186974587, "top": 775, "right": 3895, "bottom": 2220, "left": 2075}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720023f.jpg"} -{"rects": [{"solidity": 0.99566102924272, "top": 780, "right": 2010, "bottom": 3205, "left": 405}, {"solidity": 0.9980388194488156, "top": 795, "right": 3835, "bottom": 3185, "left": 2245}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730952f.jpg"} -{"rects": [{"solidity": 0.9956610576350621, "top": 645, "right": 5140, "bottom": 2090, "left": 3285}, {"solidity": 0.9992938022742449, "top": 620, "right": 2665, "bottom": 2040, "left": 820}, {"solidity": 0.9952632573097433, "top": 2095, "right": 2670, "bottom": 3520, "left": 840}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704989f.jpg"} -{"rects": [{"solidity": 0.9956612304059437, "top": 2275, "right": 3240, "bottom": 3915, "left": 805}, {"solidity": 0.9959155844779406, "top": 4145, "right": 3200, "bottom": 5775, "left": 760}, {"solidity": 0.9968206476961005, "top": 405, "right": 3240, "bottom": 2020, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734707f.jpg"} -{"rects": [{"solidity": 0.9956612499197123, "top": 2220, "right": 3120, "bottom": 3860, "left": 685}, {"solidity": 0.9940896054569414, "top": 370, "right": 3130, "bottom": 1990, "left": 700}, {"solidity": 0.9943097299720034, "top": 4075, "right": 3080, "bottom": 5720, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701076f.jpg"} -{"rects": [{"solidity": 0.9956615017878426, "top": 545, "right": 3230, "bottom": 2210, "left": 530}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701054f.jpg"} -{"rects": [{"solidity": 0.9956615275458827, "top": 430, "right": 3190, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710608f.jpg"} -{"rects": [{"solidity": 0.9956615839944719, "top": 845, "right": 3850, "bottom": 3255, "left": 2230}, {"solidity": 0.9949766455191678, "top": 830, "right": 1985, "bottom": 3220, "left": 380}, {"solidity": 0.9959519379231165, "top": 860, "right": 5710, "bottom": 3255, "left": 4110}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716581f.jpg"} -{"rects": [{"solidity": 0.9956622943055339, "top": 595, "right": 1530, "bottom": 2400, "left": 320}, {"solidity": 0.9940132922265347, "top": 595, "right": 2915, "bottom": 2405, "left": 1705}, {"solidity": 0.9963453925633124, "top": 610, "right": 4285, "bottom": 2410, "left": 3085}], "shape": {"h": 2965, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/721672f.jpg"} -{"rects": [{"solidity": 0.9956624478037096, "top": 2170, "right": 3110, "bottom": 3790, "left": 690}, {"solidity": 0.9973474277938291, "top": 360, "right": 3110, "bottom": 1960, "left": 715}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722910f.jpg"} -{"rects": [{"solidity": 0.9956626240638524, "top": 450, "right": 3175, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700966f.jpg"} -{"rects": [{"solidity": 0.9956627088354818, "top": 775, "right": 3865, "bottom": 3225, "left": 2220}, {"solidity": 0.9964917028288666, "top": 755, "right": 2015, "bottom": 3180, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723783f.jpg"} -{"rects": [{"solidity": 0.9956629512179987, "top": 730, "right": 3895, "bottom": 3125, "left": 2285}, {"solidity": 0.9960616527974041, "top": 735, "right": 5745, "bottom": 3130, "left": 4130}, {"solidity": 0.9934109960754021, "top": 735, "right": 2035, "bottom": 3125, "left": 425}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731709f.jpg"} -{"rects": [{"solidity": 0.9956632201675286, "top": 840, "right": 2230, "bottom": 3220, "left": 645}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710407f.jpg"} -{"rects": [{"solidity": 0.9956633091937196, "top": 420, "right": 3165, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700412f.jpg"} -{"rects": [{"solidity": 0.995663316877849, "top": 400, "right": 3190, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712299f.jpg"} -{"rects": [{"solidity": 0.9956633605157728, "top": 885, "right": 1990, "bottom": 3285, "left": 400}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728891f.jpg"} -{"rects": [{"solidity": 0.9956634589017072, "top": 2255, "right": 3100, "bottom": 3900, "left": 650}, {"solidity": 0.9960035651648889, "top": 405, "right": 3115, "bottom": 2040, "left": 675}, {"solidity": 0.9960136055291643, "top": 4085, "right": 3080, "bottom": 5725, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729659f.jpg"} -{"rects": [{"solidity": 0.9956636050124629, "top": 935, "right": 3335, "bottom": 5320, "left": 355}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721484f.jpg"} -{"rects": [{"solidity": 0.9956637281478794, "top": 430, "right": 5215, "bottom": 3505, "left": 1335}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733436f.jpg"} -{"rects": [{"solidity": 0.9956637811447491, "top": 4115, "right": 3140, "bottom": 5755, "left": 700}, {"solidity": 0.9982705780047486, "top": 2310, "right": 3145, "bottom": 3910, "left": 730}, {"solidity": 0.9954293325846145, "top": 440, "right": 3150, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734725f.jpg"} -{"rects": [{"solidity": 0.9956639854168325, "top": 685, "right": 2695, "bottom": 3520, "left": 660}, {"solidity": 0.9963063865458165, "top": 900, "right": 4840, "bottom": 3315, "left": 3245}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733684f.jpg"} -{"rects": [{"solidity": 0.9956642107900129, "top": 410, "right": 3180, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700974f.jpg"} -{"rects": [{"solidity": 0.9956644113493799, "top": 410, "right": 3230, "bottom": 2035, "left": 795}, {"solidity": 0.9944541749087836, "top": 2260, "right": 3230, "bottom": 3870, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734514f.jpg"} -{"rects": [{"solidity": 0.9956650447881434, "top": 2320, "right": 3155, "bottom": 3950, "left": 720}, {"solidity": 0.9950366457768035, "top": 430, "right": 3205, "bottom": 2085, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719605f.jpg"} -{"rects": [{"solidity": 0.9956650998482784, "top": 850, "right": 3730, "bottom": 3265, "left": 2120}, {"solidity": 0.9881163352521561, "top": 895, "right": 1930, "bottom": 3125, "left": 535}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730163f.jpg"} -{"rects": [{"solidity": 0.9956651040879076, "top": 620, "right": 2685, "bottom": 2020, "left": 895}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705896f.jpg"} -{"rects": [{"solidity": 0.9956655304464924, "top": 2380, "right": 3085, "bottom": 4010, "left": 670}, {"solidity": 0.9962008892387436, "top": 495, "right": 3080, "bottom": 2085, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734402f.jpg"} -{"rects": [{"solidity": 0.9956656559749572, "top": 630, "right": 5095, "bottom": 2055, "left": 3290}, {"solidity": 0.9952028104150676, "top": 2265, "right": 2875, "bottom": 3680, "left": 1055}, {"solidity": 0.9948613300261381, "top": 2290, "right": 5120, "bottom": 3700, "left": 3305}, {"solidity": 0.9957049040338322, "top": 635, "right": 2840, "bottom": 2015, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725466f.jpg"} -{"rects": [{"solidity": 0.9956657604097334, "top": 855, "right": 4370, "bottom": 2850, "left": 1535}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722117f.jpg"} -{"rects": [{"solidity": 0.9956658250793035, "top": 975, "right": 3195, "bottom": 2590, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732174f.jpg"} -{"rects": [{"solidity": 0.9956661999330763, "top": 375, "right": 3170, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730312f.jpg"} -{"rects": [{"solidity": 0.9956662809429809, "top": 630, "right": 2025, "bottom": 3045, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725040f.jpg"} -{"rects": [{"solidity": 0.9956663683136184, "top": 2220, "right": 3245, "bottom": 3855, "left": 810}, {"solidity": 0.9955035387312512, "top": 4000, "right": 3225, "bottom": 5625, "left": 800}, {"solidity": 0.998844926486423, "top": 430, "right": 3245, "bottom": 2030, "left": 835}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731092f.jpg"} -{"rects": [{"solidity": 0.995666719130397, "top": 760, "right": 1985, "bottom": 3150, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712155f.jpg"} -{"rects": [{"solidity": 0.9956668271545498, "top": 2250, "right": 3225, "bottom": 3895, "left": 785}, {"solidity": 0.996836627313756, "top": 340, "right": 3225, "bottom": 1975, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718794f.jpg"} -{"rects": [{"solidity": 0.9956669365497423, "top": 4025, "right": 3040, "bottom": 5660, "left": 605}, {"solidity": 0.9957132650631103, "top": 2190, "right": 3045, "bottom": 3810, "left": 620}, {"solidity": 0.9975812857273071, "top": 370, "right": 3045, "bottom": 1975, "left": 635}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728670f.jpg"} -{"rects": [{"solidity": 0.9956673241915144, "top": 420, "right": 3190, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705703f.jpg"} -{"rects": [{"solidity": 0.9956673632491585, "top": 2290, "right": 3085, "bottom": 3920, "left": 655}, {"solidity": 0.9960786863924566, "top": 395, "right": 3095, "bottom": 2010, "left": 670}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728897f.jpg"} -{"rects": [{"solidity": 0.9956674602735175, "top": 660, "right": 3280, "bottom": 2620, "left": 470}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710396f.jpg"} -{"rects": [{"solidity": 0.9956676461090347, "top": 2235, "right": 3125, "bottom": 3870, "left": 700}, {"solidity": 0.9969857546378568, "top": 400, "right": 3155, "bottom": 2020, "left": 735}, {"solidity": 0.9949293838832121, "top": 4080, "right": 3115, "bottom": 5715, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706920f.jpg"} -{"rects": [{"solidity": 0.9956680317379063, "top": 2275, "right": 3075, "bottom": 3915, "left": 645}, {"solidity": 0.9967004848267194, "top": 400, "right": 3065, "bottom": 2025, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710073f.jpg"} -{"rects": [{"solidity": 0.9956680944471964, "top": 675, "right": 2720, "bottom": 2115, "left": 910}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725182f.jpg"} -{"rects": [{"solidity": 0.9956681116919546, "top": 4110, "right": 3185, "bottom": 5750, "left": 745}, {"solidity": 0.9947723765432098, "top": 405, "right": 3195, "bottom": 2040, "left": 765}, {"solidity": 0.9960341553525984, "top": 2260, "right": 3190, "bottom": 3885, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707578f.jpg"} -{"rects": [{"solidity": 0.9956681372569636, "top": 490, "right": 3200, "bottom": 2030, "left": 1230}, {"solidity": 0.9950534438555353, "top": 2275, "right": 3215, "bottom": 3830, "left": 1255}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725730f.jpg"} -{"rects": [{"solidity": 0.9956685725815112, "top": 2285, "right": 3135, "bottom": 3900, "left": 720}, {"solidity": 0.9967726625533935, "top": 445, "right": 3140, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732319f.jpg"} -{"rects": [{"solidity": 0.9956689549512389, "top": 660, "right": 5195, "bottom": 2080, "left": 3380}, {"solidity": 0.9951149755226871, "top": 670, "right": 2680, "bottom": 2020, "left": 875}, {"solidity": 0.9950115351367423, "top": 2095, "right": 2585, "bottom": 3465, "left": 905}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731975f.jpg"} -{"rects": [{"solidity": 0.9956690323033976, "top": 2250, "right": 3140, "bottom": 3895, "left": 695}, {"solidity": 0.9961549723125831, "top": 430, "right": 3155, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707270f.jpg"} -{"rects": [{"solidity": 0.9956691623849052, "top": 430, "right": 3275, "bottom": 2020, "left": 870}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711728f.jpg"} -{"rects": [{"solidity": 0.9956691698241272, "top": 1320, "right": 3240, "bottom": 4890, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713023f.jpg"} -{"rects": [{"solidity": 0.9956692088163687, "top": 795, "right": 2055, "bottom": 3215, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730570f.jpg"} -{"rects": [{"solidity": 0.9956693289209915, "top": 435, "right": 3185, "bottom": 2065, "left": 740}, {"solidity": 0.9954272949442493, "top": 2345, "right": 3175, "bottom": 3985, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728785f.jpg"} -{"rects": [{"solidity": 0.9956694614335669, "top": 815, "right": 2140, "bottom": 3185, "left": 540}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720352f.jpg"} -{"rects": [{"solidity": 0.9956695998168528, "top": 2255, "right": 3215, "bottom": 3910, "left": 780}, {"solidity": 0.9951406765998387, "top": 4095, "right": 3155, "bottom": 5750, "left": 725}, {"solidity": 0.9957916885849553, "top": 440, "right": 3200, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/731876f.jpg"} -{"rects": [{"solidity": 0.9956696442058832, "top": 510, "right": 3150, "bottom": 2095, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710221f.jpg"} -{"rects": [{"solidity": 0.9956697970760667, "top": 2220, "right": 3120, "bottom": 3860, "left": 690}, {"solidity": 0.9957884855057216, "top": 4100, "right": 3110, "bottom": 5720, "left": 690}, {"solidity": 0.9953779527049335, "top": 395, "right": 3150, "bottom": 2030, "left": 725}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/703066f.jpg"} -{"rects": [{"solidity": 0.9956698296231388, "top": 600, "right": 4010, "bottom": 2710, "left": 515}], "shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/464827.jpg"} -{"rects": [{"solidity": 0.9956701559664396, "top": 420, "right": 3215, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/704371f.jpg"} -{"rects": [{"solidity": 0.995670465845636, "top": 305, "right": 3610, "bottom": 2125, "left": 890}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711630f.jpg"} -{"rects": [{"solidity": 0.995670525384141, "top": 440, "right": 3150, "bottom": 2075, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729634f.jpg"} -{"rects": [{"solidity": 0.9956715785601923, "top": 735, "right": 2015, "bottom": 3145, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718398f.jpg"} -{"rects": [{"solidity": 0.9956717856125288, "top": 415, "right": 3295, "bottom": 2035, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727481f.jpg"} -{"rects": [{"solidity": 0.9956718066017274, "top": 695, "right": 2700, "bottom": 2120, "left": 900}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727450f.jpg"} -{"rects": [{"solidity": 0.9956721043622595, "top": 2170, "right": 3160, "bottom": 3790, "left": 750}, {"solidity": 0.9969995064977792, "top": 355, "right": 3165, "bottom": 1955, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723649f.jpg"} -{"rects": [{"solidity": 0.9956721858695898, "top": 2260, "right": 3085, "bottom": 3885, "left": 660}, {"solidity": 0.9954820702825339, "top": 415, "right": 3085, "bottom": 2010, "left": 665}, {"solidity": 0.99507165211662, "top": 4115, "right": 3080, "bottom": 5700, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728365f.jpg"} -{"rects": [{"solidity": 0.9956722833520665, "top": 3270, "right": 3240, "bottom": 5180, "left": 525}, {"solidity": 0.9972715807656258, "top": 675, "right": 3255, "bottom": 2580, "left": 535}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724457f.jpg"} -{"rects": [{"solidity": 0.9956724695879619, "top": 2200, "right": 2985, "bottom": 3870, "left": 545}, {"solidity": 0.9958710360351744, "top": 350, "right": 3030, "bottom": 2010, "left": 595}, {"solidity": 0.9962414560356005, "top": 4065, "right": 2975, "bottom": 5700, "left": 540}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/716584f.jpg"} -{"rects": [{"solidity": 0.995672553168471, "top": 410, "right": 3330, "bottom": 2300, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700559f.jpg"} -{"rects": [{"solidity": 0.9956725655159075, "top": 2030, "right": 5195, "bottom": 3460, "left": 3355}, {"solidity": 0.9973523582254391, "top": 615, "right": 2780, "bottom": 2015, "left": 955}, {"solidity": 0.9925937700243894, "top": 595, "right": 5180, "bottom": 2025, "left": 3375}, {"solidity": 0.9988445840502581, "top": 2025, "right": 2780, "bottom": 3420, "left": 975}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705902f.jpg"} -{"rects": [{"solidity": 0.9956726194197282, "top": 780, "right": 2795, "bottom": 3160, "left": 500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717217f.jpg"} -{"rects": [{"solidity": 0.9956727385914578, "top": 395, "right": 3165, "bottom": 1985, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707596f.jpg"} -{"rects": [{"solidity": 0.9956729609264879, "top": 2075, "right": 3045, "bottom": 3720, "left": 590}, {"solidity": 0.9957911838734541, "top": 310, "right": 3040, "bottom": 1930, "left": 595}, {"solidity": 0.9953593657907861, "top": 3880, "right": 3020, "bottom": 5490, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734151f.jpg"} -{"rects": [{"solidity": 0.9956730904941065, "top": 750, "right": 2910, "bottom": 2250, "left": 820}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507538.jpg"} -{"rects": [{"solidity": 0.9956730958343714, "top": 750, "right": 2000, "bottom": 3160, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706251f.jpg"} -{"rects": [{"solidity": 0.9956732494931105, "top": 395, "right": 3140, "bottom": 2020, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705428f.jpg"} -{"rects": [{"solidity": 0.9956735251250672, "top": 410, "right": 3165, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727836f.jpg"} -{"rects": [{"solidity": 0.995673589251251, "top": 525, "right": 2970, "bottom": 1945, "left": 1160}, {"solidity": 0.9952543473129278, "top": 2335, "right": 2925, "bottom": 3760, "left": 1120}, {"solidity": 0.9946719717151622, "top": 4145, "right": 2925, "bottom": 5565, "left": 1120}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726448f.jpg"} -{"rects": [{"solidity": 0.9956736587333602, "top": 560, "right": 3140, "bottom": 2140, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711509f.jpg"} -{"rects": [{"solidity": 0.9956736850174394, "top": 535, "right": 3710, "bottom": 2860, "left": 265}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711414f.jpg"} -{"rects": [{"solidity": 0.9956737568090815, "top": 780, "right": 5750, "bottom": 3210, "left": 4110}, {"solidity": 0.9963026156889535, "top": 770, "right": 3890, "bottom": 3185, "left": 2260}, {"solidity": 0.9961300711651343, "top": 760, "right": 2045, "bottom": 3170, "left": 435}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731262f.jpg"} -{"rects": [{"solidity": 0.9956737657896334, "top": 785, "right": 4845, "bottom": 3390, "left": 1180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704846f.jpg"} -{"rects": [{"solidity": 0.9956738644318931, "top": 430, "right": 3195, "bottom": 2000, "left": 830}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713506f.jpg"} -{"rects": [{"solidity": 0.9956738649493493, "top": 825, "right": 2610, "bottom": 3765, "left": 210}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509221.jpg"} -{"rects": [{"solidity": 0.9956741361080965, "top": 550, "right": 5015, "bottom": 3450, "left": 1240}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716939f.jpg"} -{"rects": [{"solidity": 0.9956743400575265, "top": 855, "right": 3895, "bottom": 3285, "left": 2260}, {"solidity": 0.9956139922120664, "top": 890, "right": 5735, "bottom": 3295, "left": 4120}, {"solidity": 0.9941325523232855, "top": 865, "right": 2005, "bottom": 3270, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709246f.jpg"} -{"rects": [{"solidity": 0.995674711447629, "top": 740, "right": 2430, "bottom": 2180, "left": 580}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704390f.jpg"} -{"rects": [{"solidity": 0.995675036361021, "top": 400, "right": 3305, "bottom": 2015, "left": 865}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727925f.jpg"} -{"rects": [{"solidity": 0.9956753767875532, "top": 465, "right": 5680, "bottom": 3510, "left": 4025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705700f.jpg"} -{"rects": [{"solidity": 0.9956754615981629, "top": 2245, "right": 3150, "bottom": 3880, "left": 710}, {"solidity": 0.9954130501771866, "top": 4085, "right": 3130, "bottom": 5710, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734309f.jpg"} -{"rects": [{"solidity": 0.9956754819051343, "top": 445, "right": 3135, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723270f.jpg"} -{"rects": [{"solidity": 0.9956754897714825, "top": 375, "right": 3130, "bottom": 2035, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732532f.jpg"} -{"rects": [{"solidity": 0.9956761229235548, "top": 505, "right": 3090, "bottom": 2095, "left": 700}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711160f.jpg"} -{"rects": [{"solidity": 0.995676234908303, "top": 620, "right": 2735, "bottom": 2030, "left": 895}, {"solidity": 0.996960669556961, "top": 615, "right": 5215, "bottom": 2005, "left": 3410}, {"solidity": 0.9941677448273755, "top": 2085, "right": 2710, "bottom": 3490, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705528f.jpg"} -{"rects": [{"solidity": 0.9956763939620072, "top": 2305, "right": 3155, "bottom": 3920, "left": 755}, {"solidity": 0.9947974097315504, "top": 440, "right": 3135, "bottom": 2020, "left": 750}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/701124f.jpg"} -{"rects": [{"solidity": 0.9956764802936622, "top": 1345, "right": 2500, "bottom": 4015, "left": 540}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507671.jpg"} -{"rects": [{"solidity": 0.9956765964086494, "top": 3985, "right": 3120, "bottom": 5605, "left": 705}, {"solidity": 0.9931784369722976, "top": 475, "right": 3030, "bottom": 1900, "left": 1180}, {"solidity": 0.9927282439439827, "top": 2270, "right": 2980, "bottom": 3695, "left": 1200}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/734139f.jpg"} -{"rects": [{"solidity": 0.9956768090845908, "top": 530, "right": 4570, "bottom": 3595, "left": 1425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732446f.jpg"} -{"rects": [{"solidity": 0.9956771028823629, "top": 2290, "right": 3065, "bottom": 3905, "left": 655}, {"solidity": 0.9967822221054774, "top": 415, "right": 3060, "bottom": 2020, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730605f.jpg"} -{"rects": [{"solidity": 0.9956774069649733, "top": 415, "right": 3190, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720857f.jpg"} -{"rects": [{"solidity": 0.9956776913099871, "top": 770, "right": 3860, "bottom": 3190, "left": 2245}, {"solidity": 0.9949266230868185, "top": 760, "right": 1990, "bottom": 3170, "left": 390}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730392f.jpg"} -{"rects": [{"solidity": 0.995677754731935, "top": 145, "right": 3335, "bottom": 6000, "left": 515}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705008f.jpg"} -{"rects": [{"solidity": 0.9956778220022608, "top": 2120, "right": 3195, "bottom": 3775, "left": 755}, {"solidity": 0.995416551732986, "top": 4030, "right": 3195, "bottom": 5680, "left": 765}, {"solidity": 0.9957714518123041, "top": 335, "right": 3160, "bottom": 1955, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705811f.jpg"} -{"rects": [{"solidity": 0.995678060869828, "top": 625, "right": 2660, "bottom": 2025, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704013f.jpg"} -{"rects": [{"solidity": 0.9956782154535744, "top": 405, "right": 3235, "bottom": 2020, "left": 835}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/733609f.jpg"} -{"rects": [{"solidity": 0.9956782871549824, "top": 615, "right": 3245, "bottom": 2445, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710030f.jpg"} -{"rects": [{"solidity": 0.9956783097389201, "top": 335, "right": 2410, "bottom": 1530, "left": 625}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716369f.jpg"} -{"rects": [{"solidity": 0.995678739888414, "top": 1020, "right": 3405, "bottom": 5000, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717336f.jpg"} -{"rects": [{"solidity": 0.9956790749813972, "top": 415, "right": 4520, "bottom": 3755, "left": 1385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731734f.jpg"} -{"rects": [{"solidity": 0.9956790911411795, "top": 2210, "right": 3190, "bottom": 3850, "left": 760}, {"solidity": 0.995540534046677, "top": 4070, "right": 3160, "bottom": 5715, "left": 725}, {"solidity": 0.9958422133023025, "top": 405, "right": 3190, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719762f.jpg"} -{"rects": [{"solidity": 0.9956792353219039, "top": 345, "right": 3380, "bottom": 4190, "left": 1010}, {"solidity": 0.9944171040480672, "top": 715, "right": 5950, "bottom": 3595, "left": 4070}], "shape": {"h": 4415, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/706361f.jpg"} -{"rects": [{"solidity": 0.9956792920916282, "top": 270, "right": 5075, "bottom": 3610, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721101f.jpg"} -{"rects": [{"solidity": 0.9956793250589404, "top": 490, "right": 3260, "bottom": 2395, "left": 545}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723185f.jpg"} -{"rects": [{"solidity": 0.9956793950510603, "top": 865, "right": 3895, "bottom": 3280, "left": 2260}, {"solidity": 0.9946103286990327, "top": 880, "right": 2010, "bottom": 3290, "left": 380}, {"solidity": 0.995457213670754, "top": 860, "right": 5745, "bottom": 3275, "left": 4140}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728526f.jpg"} -{"rects": [{"solidity": 0.9956795347596576, "top": 390, "right": 3215, "bottom": 2005, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718590f.jpg"} -{"rects": [{"solidity": 0.9956795816015866, "top": 455, "right": 3165, "bottom": 1960, "left": 1160}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704996f.jpg"} -{"rects": [{"solidity": 0.9956795893521954, "top": 885, "right": 3895, "bottom": 3310, "left": 2270}, {"solidity": 0.994841955150849, "top": 880, "right": 2030, "bottom": 3285, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729120f.jpg"} -{"rects": [{"solidity": 0.9956798299403156, "top": 795, "right": 3855, "bottom": 3200, "left": 2250}, {"solidity": 0.9963781250727535, "top": 795, "right": 1995, "bottom": 3190, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723477f.jpg"} -{"rects": [{"solidity": 0.9956798363690236, "top": 420, "right": 3220, "bottom": 2080, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715212f.jpg"} -{"rects": [{"solidity": 0.9956799596711154, "top": 760, "right": 2045, "bottom": 3200, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711514f.jpg"} -{"rects": [{"solidity": 0.9956800083911751, "top": 650, "right": 4700, "bottom": 3500, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708793f.jpg"} -{"rects": [{"solidity": 0.9956803548005315, "top": 2165, "right": 2855, "bottom": 3715, "left": 920}, {"solidity": 0.9958250262844479, "top": 4040, "right": 2840, "bottom": 5550, "left": 920}, {"solidity": 0.996353336718791, "top": 395, "right": 2865, "bottom": 1900, "left": 950}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700068f.jpg"} -{"rects": [{"solidity": 0.995680454138755, "top": 425, "right": 3150, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711755f.jpg"} -{"rects": [{"solidity": 0.9956804550089621, "top": 3970, "right": 3265, "bottom": 5635, "left": 815}, {"solidity": 0.9994949414227947, "top": 2080, "right": 3235, "bottom": 3705, "left": 815}, {"solidity": 0.9967530069211376, "top": 225, "right": 3225, "bottom": 1855, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704662f.jpg"} -{"rects": [{"solidity": 0.9956805194972524, "top": 900, "right": 3830, "bottom": 3315, "left": 2200}, {"solidity": 0.9962640260196566, "top": 900, "right": 5710, "bottom": 3315, "left": 4085}, {"solidity": 0.9958776729447556, "top": 925, "right": 1975, "bottom": 3335, "left": 345}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714051f.jpg"} -{"rects": [{"solidity": 0.9956806619296081, "top": 840, "right": 2060, "bottom": 3245, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710363f.jpg"} -{"rects": [{"solidity": 0.9956807589614681, "top": 375, "right": 3155, "bottom": 2020, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701929f.jpg"} -{"rects": [{"solidity": 0.9956807871286807, "top": 455, "right": 3100, "bottom": 2065, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729960f.jpg"} -{"rects": [{"solidity": 0.9956808025179587, "top": 435, "right": 3195, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715185f.jpg"} -{"rects": [{"solidity": 0.9956812852495097, "top": 1430, "right": 2820, "bottom": 3870, "left": 1170}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730764f.jpg"} -{"rects": [{"solidity": 0.9956813211452785, "top": 395, "right": 3105, "bottom": 2000, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728570f.jpg"} -{"rects": [{"solidity": 0.9956814586493142, "top": 4155, "right": 3170, "bottom": 5765, "left": 765}, {"solidity": 0.9976817779182761, "top": 2440, "right": 3175, "bottom": 4035, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734643f.jpg"} -{"rects": [{"solidity": 0.9956816880673919, "top": 400, "right": 3125, "bottom": 2005, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700452f.jpg"} -{"rects": [{"solidity": 0.9956818441369829, "top": 650, "right": 2910, "bottom": 3625, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717759f.jpg"} -{"rects": [{"solidity": 0.9956819161738302, "top": 795, "right": 2085, "bottom": 3225, "left": 465}, {"solidity": 0.9972559996626761, "top": 790, "right": 3890, "bottom": 3210, "left": 2285}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721130f.jpg"} -{"rects": [{"solidity": 0.9956822070774807, "top": 470, "right": 2905, "bottom": 2025, "left": 965}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721080f.jpg"} -{"rects": [{"solidity": 0.99568226720224, "top": 760, "right": 2020, "bottom": 3165, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718885f.jpg"} -{"rects": [{"solidity": 0.9956823108040754, "top": 625, "right": 2885, "bottom": 2425, "left": 1675}, {"solidity": 0.996644139436587, "top": 620, "right": 1565, "bottom": 2425, "left": 360}, {"solidity": 0.9970873955735389, "top": 630, "right": 4215, "bottom": 2425, "left": 3005}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715970f.jpg"} -{"rects": [{"solidity": 0.9956824985946059, "top": 895, "right": 1970, "bottom": 3300, "left": 365}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713673f.jpg"} -{"rects": [{"solidity": 0.995682544592226, "top": 1360, "right": 3855, "bottom": 3635, "left": 825}], "shape": {"h": 5985, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465610.jpg"} -{"rects": [{"solidity": 0.9956828707452149, "top": 390, "right": 3150, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729161f.jpg"} -{"rects": [{"solidity": 0.9956830606417915, "top": 2205, "right": 3215, "bottom": 3830, "left": 800}, {"solidity": 0.9965020046594788, "top": 390, "right": 3195, "bottom": 1960, "left": 820}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724587f.jpg"} -{"rects": [{"solidity": 0.995683103848333, "top": 825, "right": 5070, "bottom": 3255, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725215f.jpg"} -{"rects": [{"solidity": 0.9956832287368677, "top": 965, "right": 3080, "bottom": 2175, "left": 1275}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509613.jpg"} -{"rects": [{"solidity": 0.9956833082501471, "top": 395, "right": 3210, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/705490f.jpg"} -{"rects": [{"solidity": 0.9956833473679048, "top": 525, "right": 3975, "bottom": 2630, "left": 2495}, {"solidity": 0.9965103867312587, "top": 520, "right": 2170, "bottom": 2610, "left": 700}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716081f.jpg"} -{"rects": [{"solidity": 0.9956834665749322, "top": 590, "right": 5050, "bottom": 3635, "left": 1030}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708538f.jpg"} -{"rects": [{"solidity": 0.9956835311582153, "top": 2200, "right": 3235, "bottom": 3860, "left": 785}, {"solidity": 0.9960676517851129, "top": 4045, "right": 3205, "bottom": 5680, "left": 765}, {"solidity": 0.9954988650847414, "top": 375, "right": 3260, "bottom": 2010, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734773f.jpg"} -{"rects": [{"solidity": 0.9956838099126555, "top": 2085, "right": 2720, "bottom": 3520, "left": 910}, {"solidity": 0.995878884720017, "top": 660, "right": 2700, "bottom": 2065, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726560f.jpg"} -{"rects": [{"solidity": 0.9956838413811707, "top": 375, "right": 3150, "bottom": 1990, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722526f.jpg"} -{"rects": [{"solidity": 0.9956838563196487, "top": 390, "right": 3205, "bottom": 2005, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724657f.jpg"} -{"rects": [{"solidity": 0.9956841003917165, "top": 2280, "right": 3165, "bottom": 3940, "left": 730}, {"solidity": 0.9962103132017568, "top": 415, "right": 3190, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714941f.jpg"} -{"rects": [{"solidity": 0.9956841156273377, "top": 4050, "right": 3085, "bottom": 5690, "left": 655}, {"solidity": 0.9972857521374702, "top": 2215, "right": 3090, "bottom": 3835, "left": 680}, {"solidity": 0.9946943014539872, "top": 375, "right": 3115, "bottom": 2005, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701071f.jpg"} -{"rects": [{"solidity": 0.9956842544897675, "top": 800, "right": 2130, "bottom": 3220, "left": 495}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713282f.jpg"} -{"rects": [{"solidity": 0.9956843683278063, "top": 680, "right": 2025, "bottom": 1895, "left": 170}, {"solidity": 0.9951008125188083, "top": 2210, "right": 2070, "bottom": 3320, "left": 160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719860f.jpg"} -{"rects": [{"solidity": 0.9956844024294734, "top": 825, "right": 2085, "bottom": 3235, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711823f.jpg"} -{"rects": [{"solidity": 0.9956846489160596, "top": 470, "right": 3105, "bottom": 1905, "left": 1290}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726513f.jpg"} -{"rects": [{"solidity": 0.9956848166294687, "top": 655, "right": 2790, "bottom": 3045, "left": 1190}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708175f.jpg"} -{"rects": [{"solidity": 0.9956848216896349, "top": 805, "right": 4370, "bottom": 3235, "left": 2730}, {"solidity": 0.9976243977681717, "top": 2150, "right": 2675, "bottom": 3585, "left": 830}, {"solidity": 0.997477613221312, "top": 655, "right": 2675, "bottom": 2090, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717947f.jpg"} -{"rects": [{"solidity": 0.9956849163560488, "top": 420, "right": 3190, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732355f.jpg"} -{"rects": [{"solidity": 0.9956851846927107, "top": 590, "right": 3255, "bottom": 2625, "left": 425}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729116f.jpg"} -{"rects": [{"solidity": 0.9956854228237263, "top": 2325, "right": 2880, "bottom": 3740, "left": 1030}, {"solidity": 0.9960669825366265, "top": 4110, "right": 2880, "bottom": 5520, "left": 1030}, {"solidity": 0.9947438105382617, "top": 530, "right": 2860, "bottom": 1940, "left": 1060}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725528f.jpg"} -{"rects": [{"solidity": 0.9956856543154776, "top": 405, "right": 3180, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708139f.jpg"} -{"rects": [{"solidity": 0.9956861243462539, "top": 635, "right": 2755, "bottom": 2060, "left": 920}, {"solidity": 0.9964528854878859, "top": 2125, "right": 2765, "bottom": 3550, "left": 935}, {"solidity": 0.9986824901941064, "top": 645, "right": 5225, "bottom": 2020, "left": 3405}, {"solidity": 0.9968617185249572, "top": 2105, "right": 5230, "bottom": 3475, "left": 3405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705690f.jpg"} -{"rects": [{"solidity": 0.9956861935975367, "top": 415, "right": 3105, "bottom": 2060, "left": 665}, {"solidity": 0.9962913839061515, "top": 2275, "right": 3090, "bottom": 3900, "left": 675}, {"solidity": 0.9968402279688288, "top": 4145, "right": 3070, "bottom": 5760, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710664f.jpg"} -{"rects": [{"solidity": 0.9956863903046487, "top": 325, "right": 3550, "bottom": 2155, "left": 860}], "shape": {"h": 6870, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711315f.jpg"} -{"rects": [{"solidity": 0.9956865006857979, "top": 645, "right": 2740, "bottom": 2075, "left": 915}, {"solidity": 0.9955354543160511, "top": 2105, "right": 2750, "bottom": 3530, "left": 925}, {"solidity": 0.99507504461717, "top": 2115, "right": 5240, "bottom": 3545, "left": 3420}, {"solidity": 0.9940582670026662, "top": 650, "right": 5230, "bottom": 2090, "left": 3425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726463f.jpg"} -{"rects": [{"solidity": 0.9956867378660824, "top": 515, "right": 1860, "bottom": 2320, "left": 630}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716425f.jpg"} -{"rects": [{"solidity": 0.9956867450603951, "top": 395, "right": 3245, "bottom": 2040, "left": 815}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/726917f.jpg"} -{"rects": [{"solidity": 0.995686909265832, "top": 405, "right": 3205, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725001f.jpg"} -{"rects": [{"solidity": 0.9956870033950608, "top": 850, "right": 3750, "bottom": 3245, "left": 2125}, {"solidity": 0.9958453286665643, "top": 835, "right": 1890, "bottom": 3235, "left": 310}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724575f.jpg"} -{"rects": [{"solidity": 0.9956870190102441, "top": 400, "right": 3160, "bottom": 2050, "left": 720}, {"solidity": 0.9958781500186334, "top": 2255, "right": 3115, "bottom": 3895, "left": 680}, {"solidity": 0.9955515498760743, "top": 4080, "right": 3095, "bottom": 5720, "left": 650}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707218f.jpg"} -{"rects": [{"solidity": 0.9956870200239517, "top": 890, "right": 1770, "bottom": 3125, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732576f.jpg"} -{"rects": [{"solidity": 0.9956870910172516, "top": 615, "right": 1615, "bottom": 2435, "left": 395}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/715843f.jpg"} -{"rects": [{"solidity": 0.995687329718648, "top": 805, "right": 2010, "bottom": 3180, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713077f.jpg"} -{"rects": [{"solidity": 0.9956874837558679, "top": 2240, "right": 3215, "bottom": 3865, "left": 780}, {"solidity": 0.9959801524057788, "top": 4090, "right": 3195, "bottom": 5710, "left": 770}, {"solidity": 0.9956453158113744, "top": 385, "right": 3215, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726214f.jpg"} -{"rects": [{"solidity": 0.9956876846108703, "top": 710, "right": 3900, "bottom": 3125, "left": 2275}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722110f.jpg"} -{"rects": [{"solidity": 0.9956877838902605, "top": 445, "right": 3125, "bottom": 2065, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729206f.jpg"} -{"rects": [{"solidity": 0.9956878717029667, "top": 530, "right": 2955, "bottom": 1930, "left": 1145}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727588f.jpg"} -{"rects": [{"solidity": 0.9956879898895313, "top": 335, "right": 3180, "bottom": 1935, "left": 770}, {"solidity": 0.9969950359171769, "top": 2240, "right": 2895, "bottom": 3640, "left": 1060}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720689f.jpg"} -{"rects": [{"solidity": 0.9956881319885492, "top": 415, "right": 3120, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703684f.jpg"} -{"rects": [{"solidity": 0.995688222296095, "top": 720, "right": 2095, "bottom": 3120, "left": 480}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710982f.jpg"} -{"rects": [{"solidity": 0.9956885310303618, "top": 750, "right": 2040, "bottom": 3150, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719689f.jpg"} -{"rects": [{"solidity": 0.995688697561651, "top": 2050, "right": 3215, "bottom": 3680, "left": 800}, {"solidity": 0.9950163490810688, "top": 3920, "right": 3200, "bottom": 5560, "left": 770}, {"solidity": 0.9973547628837941, "top": 275, "right": 3200, "bottom": 1890, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707980f.jpg"} -{"rects": [{"solidity": 0.9956889009083534, "top": 660, "right": 2495, "bottom": 3100, "left": 825}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708935f.jpg"} -{"rects": [{"solidity": 0.9956890914240107, "top": 580, "right": 5060, "bottom": 3675, "left": 1080}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708513f.jpg"} -{"rects": [{"solidity": 0.9956891262650074, "top": 725, "right": 2135, "bottom": 3145, "left": 520}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722070f.jpg"} -{"rects": [{"solidity": 0.9956893027332698, "top": 825, "right": 2020, "bottom": 3235, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732862f.jpg"} -{"rects": [{"solidity": 0.9956893182411808, "top": 290, "right": 3985, "bottom": 2685, "left": 1220}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509493.jpg"} -{"rects": [{"solidity": 0.9956894352905168, "top": 490, "right": 2975, "bottom": 1915, "left": 1230}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726310f.jpg"} -{"rects": [{"solidity": 0.9956895059377489, "top": 730, "right": 2605, "bottom": 3575, "left": 275}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508307.jpg"} -{"rects": [{"solidity": 0.9956895713554191, "top": 755, "right": 2025, "bottom": 3170, "left": 395}, {"solidity": 0.9950873060543259, "top": 780, "right": 3875, "bottom": 3190, "left": 2250}, {"solidity": 0.9936302627516614, "top": 800, "right": 5720, "bottom": 3220, "left": 4090}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719950f.jpg"} -{"rects": [{"solidity": 0.9956897590797106, "top": 2050, "right": 2665, "bottom": 3500, "left": 850}, {"solidity": 0.9976034612305834, "top": 625, "right": 2675, "bottom": 2035, "left": 855}, {"solidity": 0.9954966011611656, "top": 610, "right": 5135, "bottom": 1990, "left": 3305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704324f.jpg"} -{"rects": [{"solidity": 0.9956900278258977, "top": 2265, "right": 3205, "bottom": 3905, "left": 770}, {"solidity": 0.9958538347170081, "top": 440, "right": 3190, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731887f.jpg"} -{"rects": [{"solidity": 0.995690125827772, "top": 780, "right": 5660, "bottom": 3205, "left": 4030}, {"solidity": 0.9954135369761484, "top": 790, "right": 3835, "bottom": 3210, "left": 2210}, {"solidity": 0.994739412453007, "top": 810, "right": 2020, "bottom": 3215, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703952f.jpg"} -{"rects": [{"solidity": 0.9956906759901069, "top": 3135, "right": 3290, "bottom": 5055, "left": 590}, {"solidity": 0.998024938754741, "top": 645, "right": 3300, "bottom": 2445, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714723f.jpg"} -{"rects": [{"solidity": 0.9956908160517102, "top": 735, "right": 2740, "bottom": 2120, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727952f.jpg"} -{"rects": [{"solidity": 0.9956909621921831, "top": 665, "right": 2255, "bottom": 3095, "left": 610}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706718f.jpg"} -{"rects": [{"solidity": 0.9956910069780205, "top": 410, "right": 3170, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704794f.jpg"} -{"rects": [{"solidity": 0.9956910860155563, "top": 2255, "right": 3125, "bottom": 3865, "left": 720}, {"solidity": 0.9963420165571882, "top": 4110, "right": 3130, "bottom": 5715, "left": 725}, {"solidity": 0.9964317982427425, "top": 405, "right": 3120, "bottom": 2005, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728399f.jpg"} -{"rects": [{"solidity": 0.9956915695459777, "top": 795, "right": 1940, "bottom": 3195, "left": 315}, {"solidity": 0.9963229426880624, "top": 805, "right": 3800, "bottom": 3200, "left": 2170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721705f.jpg"} -{"rects": [{"solidity": 0.9956923294207848, "top": 420, "right": 2900, "bottom": 1820, "left": 1110}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726893f.jpg"} -{"rects": [{"solidity": 0.9956926452320648, "top": 2290, "right": 3205, "bottom": 3925, "left": 775}, {"solidity": 0.9312572780887269, "top": 450, "right": 3175, "bottom": 1930, "left": 815}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714361f.jpg"} -{"rects": [{"solidity": 0.9956926619154239, "top": 690, "right": 2670, "bottom": 2125, "left": 860}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725227f.jpg"} -{"rects": [{"solidity": 0.9956927424817452, "top": 395, "right": 3085, "bottom": 2005, "left": 670}, {"solidity": 0.9963808020064782, "top": 4125, "right": 3075, "bottom": 5750, "left": 660}, {"solidity": 0.9960737791500772, "top": 2255, "right": 3075, "bottom": 3865, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729313f.jpg"} -{"rects": [{"solidity": 0.9956934412658692, "top": 965, "right": 3860, "bottom": 3410, "left": 2215}, {"solidity": 0.9990956508448022, "top": 965, "right": 2015, "bottom": 3395, "left": 390}, {"solidity": 0.9974236067596924, "top": 960, "right": 5705, "bottom": 3390, "left": 4075}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716616f.jpg"} -{"rects": [{"solidity": 0.9956937603744319, "top": 420, "right": 3275, "bottom": 1855, "left": 635}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/700906f.jpg"} -{"rects": [{"solidity": 0.9956938194391478, "top": 705, "right": 5715, "bottom": 3150, "left": 4070}, {"solidity": 0.9962727978393775, "top": 690, "right": 3870, "bottom": 3110, "left": 2230}, {"solidity": 0.9984235485663338, "top": 675, "right": 2015, "bottom": 3080, "left": 395}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729973f.jpg"} -{"rects": [{"solidity": 0.9956943581413327, "top": 645, "right": 2625, "bottom": 2055, "left": 800}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706328f.jpg"} -{"rects": [{"solidity": 0.9956944101958443, "top": 410, "right": 3110, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726900f.jpg"} -{"rects": [{"solidity": 0.9956944435525817, "top": 2190, "right": 3175, "bottom": 3815, "left": 745}, {"solidity": 0.9985309876909146, "top": 390, "right": 3165, "bottom": 2000, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707302f.jpg"} -{"rects": [{"solidity": 0.9956944869051259, "top": 400, "right": 3080, "bottom": 2050, "left": 630}, {"solidity": 0.9976023976023976, "top": 2295, "right": 3050, "bottom": 3910, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729451f.jpg"} -{"rects": [{"solidity": 0.9956944890771844, "top": 465, "right": 3165, "bottom": 2075, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724506f.jpg"} -{"rects": [{"solidity": 0.9956951101633267, "top": 435, "right": 3295, "bottom": 2030, "left": 890}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726748f.jpg"} -{"rects": [{"solidity": 0.9956953131032352, "top": 440, "right": 3185, "bottom": 2085, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706935f.jpg"} -{"rects": [{"solidity": 0.9956953789654931, "top": 390, "right": 3275, "bottom": 2045, "left": 840}, {"solidity": 0.9958702777627652, "top": 2255, "right": 3255, "bottom": 3910, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726923f.jpg"} -{"rects": [{"solidity": 0.9956955585991, "top": 2240, "right": 3105, "bottom": 3865, "left": 675}, {"solidity": 0.9962122949691675, "top": 410, "right": 3100, "bottom": 2010, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728441f.jpg"} -{"rects": [{"solidity": 0.9956955873383849, "top": 390, "right": 3105, "bottom": 2060, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701181f.jpg"} -{"rects": [{"solidity": 0.9956961767809691, "top": 555, "right": 2575, "bottom": 3010, "left": 900}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713544f.jpg"} -{"rects": [{"solidity": 0.9956962777650151, "top": 600, "right": 4190, "bottom": 3605, "left": 2185}, {"solidity": 0.9960149893700493, "top": 810, "right": 2145, "bottom": 3215, "left": 520}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710963f.jpg"} -{"rects": [{"solidity": 0.9956963642140328, "top": 290, "right": 3230, "bottom": 1910, "left": 810}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704231f.jpg"} -{"rects": [{"solidity": 0.9956965122407632, "top": 630, "right": 2635, "bottom": 2075, "left": 815}, {"solidity": 0.9961532312373127, "top": 2110, "right": 2635, "bottom": 3555, "left": 825}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705939f.jpg"} -{"rects": [{"solidity": 0.9956968632889405, "top": 535, "right": 4700, "bottom": 3550, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712879f.jpg"} -{"rects": [{"solidity": 0.9956969094576693, "top": 2710, "right": 3635, "bottom": 4995, "left": 395}, {"solidity": 0.9763013725148576, "top": 440, "right": 3660, "bottom": 2590, "left": 555}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706382f.jpg"} -{"rects": [{"solidity": 0.9956969798398517, "top": 415, "right": 3205, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703123f.jpg"} -{"rects": [{"solidity": 0.9956973099247923, "top": 1185, "right": 4720, "bottom": 2775, "left": 1390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701758f.jpg"} -{"rects": [{"solidity": 0.9956973992137312, "top": 450, "right": 3100, "bottom": 2035, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707602f.jpg"} -{"rects": [{"solidity": 0.9956976920178662, "top": 390, "right": 3130, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724260f.jpg"} -{"rects": [{"solidity": 0.9956979165670076, "top": 790, "right": 3920, "bottom": 3220, "left": 2285}, {"solidity": 0.9964209751963027, "top": 790, "right": 2105, "bottom": 3220, "left": 485}, {"solidity": 0.9957188406261516, "top": 785, "right": 5710, "bottom": 3210, "left": 4080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716589f.jpg"} -{"rects": [{"solidity": 0.9956981552486165, "top": 2435, "right": 2510, "bottom": 3925, "left": 420}, {"solidity": 0.9943736102327669, "top": 700, "right": 2530, "bottom": 2195, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716238f.jpg"} -{"rects": [{"solidity": 0.9956984667802385, "top": 795, "right": 2010, "bottom": 3200, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704999f.jpg"} -{"rects": [{"solidity": 0.9956985322870774, "top": 2195, "right": 3190, "bottom": 3820, "left": 780}, {"solidity": 0.9958296478296478, "top": 375, "right": 3210, "bottom": 1975, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720496f.jpg"} -{"rects": [{"solidity": 0.9956985765621628, "top": 4065, "right": 3120, "bottom": 5705, "left": 670}, {"solidity": 0.9964177871014908, "top": 2185, "right": 3150, "bottom": 3825, "left": 710}, {"solidity": 0.9966108807894803, "top": 325, "right": 3170, "bottom": 1955, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701932f.jpg"} -{"rects": [{"solidity": 0.9956985958305056, "top": 2285, "right": 3210, "bottom": 3940, "left": 770}, {"solidity": 0.995625258478081, "top": 405, "right": 3205, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718564f.jpg"} -{"rects": [{"solidity": 0.9956986540389682, "top": 375, "right": 2945, "bottom": 1910, "left": 1050}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720220f.jpg"} -{"rects": [{"solidity": 0.9956989764044404, "top": 2305, "right": 2995, "bottom": 3745, "left": 1170}, {"solidity": 0.9964258385718852, "top": 460, "right": 2970, "bottom": 1890, "left": 1150}, {"solidity": 0.9944663406142906, "top": 4150, "right": 3000, "bottom": 5550, "left": 1150}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726527f.jpg"} -{"rects": [{"solidity": 0.9956990798259963, "top": 2340, "right": 3225, "bottom": 3955, "left": 815}, {"solidity": 0.9944991923552008, "top": 475, "right": 3205, "bottom": 2055, "left": 845}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719822f.jpg"} -{"rects": [{"solidity": 0.9956991739367954, "top": 805, "right": 2030, "bottom": 3200, "left": 440}, {"solidity": 0.9940811177954589, "top": 820, "right": 5715, "bottom": 3195, "left": 4125}, {"solidity": 0.9957721683457935, "top": 815, "right": 3870, "bottom": 3185, "left": 2290}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723475f.jpg"} -{"rects": [{"solidity": 0.9956993825846285, "top": 405, "right": 3085, "bottom": 2015, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729401f.jpg"} -{"rects": [{"solidity": 0.9956994727872195, "top": 2255, "right": 3200, "bottom": 3920, "left": 760}, {"solidity": 0.9971913546485816, "top": 4125, "right": 3180, "bottom": 5745, "left": 760}, {"solidity": 0.9979875971588091, "top": 415, "right": 3185, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/730525f.jpg"} -{"rects": [{"solidity": 0.9956995403517789, "top": 2300, "right": 3155, "bottom": 3915, "left": 755}, {"solidity": 0.9949980161182264, "top": 435, "right": 3160, "bottom": 2060, "left": 755}, {"solidity": 0.9953855602521028, "top": 4165, "right": 3155, "bottom": 5780, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732764f.jpg"} -{"rects": [{"solidity": 0.9956995878095486, "top": 885, "right": 3880, "bottom": 3300, "left": 2255}, {"solidity": 0.9962377067555581, "top": 870, "right": 2040, "bottom": 3285, "left": 425}, {"solidity": 0.9948641532832735, "top": 905, "right": 5725, "bottom": 3320, "left": 4110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728427f.jpg"} -{"rects": [{"solidity": 0.9956996759010066, "top": 525, "right": 2845, "bottom": 1855, "left": 1170}, {"solidity": 0.9963206770894557, "top": 535, "right": 4900, "bottom": 1800, "left": 3200}, {"solidity": 0.9921876896928493, "top": 2110, "right": 2850, "bottom": 3370, "left": 1185}, {"solidity": 0.9889776357827476, "top": 2085, "right": 4880, "bottom": 3305, "left": 3230}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706760f.jpg"} -{"rects": [{"solidity": 0.9956997057476198, "top": 490, "right": 3055, "bottom": 1880, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718087f.jpg"} -{"rects": [{"solidity": 0.9956997452179873, "top": 805, "right": 2040, "bottom": 3225, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721045f.jpg"} -{"rects": [{"solidity": 0.995699942564842, "top": 1480, "right": 3120, "bottom": 4665, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732936f.jpg"} -{"rects": [{"solidity": 0.99570022797449, "top": 780, "right": 1995, "bottom": 3210, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713679f.jpg"} -{"rects": [{"solidity": 0.9957007000473911, "top": 900, "right": 3145, "bottom": 5245, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732258f.jpg"} -{"rects": [{"solidity": 0.9957007003220363, "top": 390, "right": 3180, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713124f.jpg"} -{"rects": [{"solidity": 0.9957009154623163, "top": 785, "right": 2675, "bottom": 3790, "left": 260}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716400f.jpg"} -{"rects": [{"solidity": 0.9957013165269816, "top": 400, "right": 3300, "bottom": 2655, "left": 695}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508347.jpg"} -{"rects": [{"solidity": 0.9957014822245992, "top": 395, "right": 3170, "bottom": 1990, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713659f.jpg"} -{"rects": [{"solidity": 0.9957015119277244, "top": 830, "right": 2045, "bottom": 3210, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717512f.jpg"} -{"rects": [{"solidity": 0.9957018048355204, "top": 485, "right": 4900, "bottom": 3690, "left": 1015}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717712f.jpg"} -{"rects": [{"solidity": 0.995702005730659, "top": 620, "right": 3365, "bottom": 2540, "left": 655}, {"solidity": 0.9948378970753042, "top": 3035, "right": 3330, "bottom": 4940, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712538f.jpg"} -{"rects": [{"solidity": 0.9957022547870765, "top": 410, "right": 3080, "bottom": 2025, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729237f.jpg"} -{"rects": [{"solidity": 0.995702287169002, "top": 2150, "right": 5160, "bottom": 3765, "left": 3205}, {"solidity": 0.9971836726376068, "top": 470, "right": 5130, "bottom": 2095, "left": 3220}, {"solidity": 0.9969915663855462, "top": 2125, "right": 2905, "bottom": 3725, "left": 1005}, {"solidity": 0.9959636389736835, "top": 480, "right": 2895, "bottom": 2060, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719576f.jpg"} -{"rects": [{"solidity": 0.9957025020261968, "top": 850, "right": 3930, "bottom": 3255, "left": 2320}, {"solidity": 0.9959486276759166, "top": 875, "right": 5750, "bottom": 3280, "left": 4150}, {"solidity": 0.9826970276331545, "top": 860, "right": 2055, "bottom": 3255, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729077f.jpg"} -{"rects": [{"solidity": 0.995702781024352, "top": 885, "right": 5665, "bottom": 3305, "left": 4025}, {"solidity": 0.9960234992564136, "top": 860, "right": 3800, "bottom": 3280, "left": 2170}, {"solidity": 0.9971728894296401, "top": 865, "right": 1980, "bottom": 3275, "left": 360}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718614f.jpg"} -{"rects": [{"solidity": 0.9957028792955162, "top": 2270, "right": 3185, "bottom": 3890, "left": 745}, {"solidity": 0.9953452163814928, "top": 410, "right": 3200, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734563f.jpg"} -{"rects": [{"solidity": 0.9957033160520395, "top": 660, "right": 3180, "bottom": 2605, "left": 520}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721135f.jpg"} -{"rects": [{"solidity": 0.9957033608047079, "top": 415, "right": 3135, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732133f.jpg"} -{"rects": [{"solidity": 0.9957035393962773, "top": 735, "right": 2710, "bottom": 2175, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725285f.jpg"} -{"rects": [{"solidity": 0.9957035942830593, "top": 425, "right": 3860, "bottom": 2645, "left": 790}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715766f.jpg"} -{"rects": [{"solidity": 0.9957036155727411, "top": 440, "right": 3185, "bottom": 2590, "left": 1640}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508183.jpg"} -{"rects": [{"solidity": 0.9957037913866936, "top": 1060, "right": 3495, "bottom": 5060, "left": 320}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717939f.jpg"} -{"rects": [{"solidity": 0.9957044340074267, "top": 790, "right": 2045, "bottom": 3210, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733321f.jpg"} -{"rects": [{"solidity": 0.9957045472772476, "top": 2150, "right": 3235, "bottom": 3780, "left": 805}, {"solidity": 0.9968157705027203, "top": 405, "right": 3220, "bottom": 2015, "left": 795}, {"solidity": 0.9967938712866136, "top": 3990, "right": 3290, "bottom": 5595, "left": 870}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730799f.jpg"} -{"rects": [{"solidity": 0.9957046362603343, "top": 790, "right": 5715, "bottom": 3175, "left": 4130}, {"solidity": 0.9960016581752049, "top": 780, "right": 2045, "bottom": 3160, "left": 460}, {"solidity": 0.9955039188815155, "top": 785, "right": 3860, "bottom": 3160, "left": 2285}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717414f.jpg"} -{"rects": [{"solidity": 0.9957048053506224, "top": 660, "right": 1980, "bottom": 3075, "left": 360}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721998f.jpg"} -{"rects": [{"solidity": 0.9957051450609168, "top": 405, "right": 3225, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726797f.jpg"} -{"rects": [{"solidity": 0.9957053220515952, "top": 415, "right": 3135, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714283f.jpg"} -{"rects": [{"solidity": 0.9957054979835622, "top": 365, "right": 3075, "bottom": 2005, "left": 635}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728824f.jpg"} -{"rects": [{"solidity": 0.9957057388148899, "top": 650, "right": 3195, "bottom": 2240, "left": 800}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707665f.jpg"} -{"rects": [{"solidity": 0.9957059717250791, "top": 795, "right": 1945, "bottom": 3220, "left": 330}, {"solidity": 0.9985872601251746, "top": 805, "right": 3795, "bottom": 3215, "left": 2180}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720662f.jpg"} -{"rects": [{"solidity": 0.9957062747591482, "top": 1385, "right": 3105, "bottom": 4745, "left": 620}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708987f.jpg"} -{"rects": [{"solidity": 0.9957064325858147, "top": 385, "right": 3255, "bottom": 2020, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704848f.jpg"} -{"rects": [{"solidity": 0.9957065515788398, "top": 370, "right": 3215, "bottom": 2015, "left": 785}, {"solidity": 0.9990045409738045, "top": 2210, "right": 3185, "bottom": 3825, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725340f.jpg"} -{"rects": [{"solidity": 0.995706721135323, "top": 590, "right": 2635, "bottom": 2030, "left": 815}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703138f.jpg"} -{"rects": [{"solidity": 0.9957070115602671, "top": 420, "right": 3195, "bottom": 2060, "left": 780}, {"solidity": 0.9953627615898735, "top": 2290, "right": 3180, "bottom": 3935, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713463f.jpg"} -{"rects": [{"solidity": 0.9957070780154159, "top": 550, "right": 2950, "bottom": 1985, "left": 1110}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732513f.jpg"} -{"rects": [{"solidity": 0.9957073546894579, "top": 2870, "right": 2840, "bottom": 5295, "left": 1210}, {"solidity": 0.9479564575024305, "top": 265, "right": 2595, "bottom": 2600, "left": 1145}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707942f.jpg"} -{"rects": [{"solidity": 0.9957074925258519, "top": 875, "right": 2045, "bottom": 3280, "left": 440}, {"solidity": 0.9960195737134224, "top": 875, "right": 3830, "bottom": 3275, "left": 2230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707859f.jpg"} -{"rects": [{"solidity": 0.9957075822957281, "top": 715, "right": 2005, "bottom": 3125, "left": 390}, {"solidity": 0.9964848033839887, "top": 740, "right": 5695, "bottom": 3155, "left": 4090}, {"solidity": 0.9953032795446237, "top": 730, "right": 3835, "bottom": 3140, "left": 2230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725845f.jpg"} -{"rects": [{"solidity": 0.9957077009177882, "top": 470, "right": 3325, "bottom": 2360, "left": 540}, {"solidity": 0.9981789366959021, "top": 4245, "right": 2875, "bottom": 5640, "left": 1040}, {"solidity": 0.9939644047087457, "top": 2560, "right": 2875, "bottom": 3970, "left": 1045}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726358f.jpg"} -{"rects": [{"solidity": 0.9957077666832331, "top": 405, "right": 3160, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732301f.jpg"} -{"rects": [{"solidity": 0.9957078014458951, "top": 685, "right": 2740, "bottom": 2130, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727447f.jpg"} -{"rects": [{"solidity": 0.9957079068753626, "top": 805, "right": 3905, "bottom": 3220, "left": 2275}, {"solidity": 0.9965788819550742, "top": 800, "right": 2040, "bottom": 3200, "left": 435}, {"solidity": 0.9946138853771597, "top": 825, "right": 5730, "bottom": 3240, "left": 4140}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700440f.jpg"} -{"rects": [{"solidity": 0.9957080031797317, "top": 740, "right": 2030, "bottom": 3165, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732337f.jpg"} -{"rects": [{"solidity": 0.9957081130508136, "top": 390, "right": 3105, "bottom": 2035, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729952f.jpg"} -{"rects": [{"solidity": 0.9957083507525084, "top": 880, "right": 3855, "bottom": 3285, "left": 2250}, {"solidity": 0.9957976602836416, "top": 870, "right": 2010, "bottom": 3280, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728435f.jpg"} -{"rects": [{"solidity": 0.9957084819470141, "top": 510, "right": 3255, "bottom": 2150, "left": 825}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705923f.jpg"} -{"rects": [{"solidity": 0.9957085415052499, "top": 410, "right": 3225, "bottom": 1990, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728040f.jpg"} -{"rects": [{"solidity": 0.9957086352115921, "top": 875, "right": 2025, "bottom": 3310, "left": 400}, {"solidity": 0.9962019337362754, "top": 875, "right": 3880, "bottom": 3295, "left": 2250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719964f.jpg"} -{"rects": [{"solidity": 0.9957087214116116, "top": 800, "right": 3850, "bottom": 3220, "left": 2225}, {"solidity": 0.9962169020118304, "top": 815, "right": 1995, "bottom": 3220, "left": 400}, {"solidity": 0.9950227597434961, "top": 810, "right": 5715, "bottom": 3210, "left": 4135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709526f.jpg"} -{"rects": [{"solidity": 0.9957087984635697, "top": 820, "right": 1875, "bottom": 3210, "left": 285}, {"solidity": 0.9935230938164848, "top": 1040, "right": 3575, "bottom": 2995, "left": 2060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723571f.jpg"} -{"rects": [{"solidity": 0.9957091836734694, "top": 650, "right": 2635, "bottom": 2030, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706770f.jpg"} -{"rects": [{"solidity": 0.9957092204375746, "top": 415, "right": 3120, "bottom": 2025, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729853f.jpg"} -{"rects": [{"solidity": 0.9957092229739625, "top": 495, "right": 2990, "bottom": 1925, "left": 1180}, {"solidity": 0.9952693527592175, "top": 2320, "right": 2990, "bottom": 3750, "left": 1170}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726500f.jpg"} -{"rects": [{"solidity": 0.9957094106711524, "top": 445, "right": 3155, "bottom": 2075, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706964f.jpg"} -{"rects": [{"solidity": 0.9957096452263077, "top": 540, "right": 2940, "bottom": 1965, "left": 1130}, {"solidity": 0.993867225938553, "top": 2180, "right": 2950, "bottom": 3585, "left": 1135}, {"solidity": 0.9944916604149753, "top": 2195, "right": 5045, "bottom": 3555, "left": 3230}, {"solidity": 0.9947030227943261, "top": 550, "right": 5025, "bottom": 1905, "left": 3245}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726403f.jpg"} -{"rects": [{"solidity": 0.99570984462594, "top": 4045, "right": 3235, "bottom": 5685, "left": 790}, {"solidity": 0.9956817926811675, "top": 2170, "right": 3255, "bottom": 3800, "left": 830}, {"solidity": 0.9951929243951871, "top": 335, "right": 3280, "bottom": 1975, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726164f.jpg"} -{"rects": [{"solidity": 0.9957102818290341, "top": 3165, "right": 3220, "bottom": 5035, "left": 590}, {"solidity": 0.99458924552695, "top": 740, "right": 3200, "bottom": 2580, "left": 590}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710027f.jpg"} -{"rects": [{"solidity": 0.9957104935007751, "top": 1235, "right": 2690, "bottom": 4160, "left": 285}], "shape": {"h": 4620, "w": 2955}, "file": "/usr/local/google/home/danvk/milstein/1507510.jpg"} -{"rects": [{"solidity": 0.9957105843968909, "top": 705, "right": 2735, "bottom": 2135, "left": 895}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725486f.jpg"} -{"rects": [{"solidity": 0.995710943049346, "top": 510, "right": 3325, "bottom": 2515, "left": 255}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/712269f.jpg"} -{"rects": [{"solidity": 0.9957111921327485, "top": 830, "right": 2030, "bottom": 3260, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723067f.jpg"} -{"rects": [{"solidity": 0.9957112246153049, "top": 2310, "right": 3115, "bottom": 3925, "left": 690}, {"solidity": 0.9971152623807398, "top": 415, "right": 3105, "bottom": 2020, "left": 695}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/729277f.jpg"} -{"rects": [{"solidity": 0.9957113410118891, "top": 2145, "right": 2740, "bottom": 3570, "left": 925}, {"solidity": 0.9957833835895173, "top": 685, "right": 2725, "bottom": 2110, "left": 915}, {"solidity": 0.9960074077024175, "top": 680, "right": 5220, "bottom": 2065, "left": 3385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727969f.jpg"} -{"rects": [{"solidity": 0.9957113851334621, "top": 445, "right": 3145, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700367f.jpg"} -{"rects": [{"solidity": 0.9957113974717667, "top": 685, "right": 2530, "bottom": 2170, "left": 445}, {"solidity": 0.9938395842433793, "top": 2425, "right": 2525, "bottom": 3910, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716178f.jpg"} -{"rects": [{"solidity": 0.9957114254343473, "top": 2200, "right": 3020, "bottom": 3830, "left": 590}, {"solidity": 0.9952822099190081, "top": 4050, "right": 3005, "bottom": 5685, "left": 570}, {"solidity": 0.9976464095572004, "top": 365, "right": 3025, "bottom": 1970, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729322f.jpg"} -{"rects": [{"solidity": 0.9957115765197696, "top": 1125, "right": 5475, "bottom": 2780, "left": 635}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722914f.jpg"} -{"rects": [{"solidity": 0.995711662808334, "top": 880, "right": 3860, "bottom": 3320, "left": 2225}, {"solidity": 0.9971699333721457, "top": 905, "right": 2040, "bottom": 3310, "left": 415}, {"solidity": 0.9956569793901567, "top": 875, "right": 5645, "bottom": 3300, "left": 4035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712519f.jpg"} -{"rects": [{"solidity": 0.995711849160264, "top": 2205, "right": 3215, "bottom": 3830, "left": 790}, {"solidity": 0.9964455517221139, "top": 395, "right": 3215, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734244f.jpg"} -{"rects": [{"solidity": 0.9957119520827661, "top": 615, "right": 2525, "bottom": 1975, "left": 740}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727441f.jpg"} -{"rects": [{"solidity": 0.9957119545021247, "top": 440, "right": 3155, "bottom": 2075, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710037f.jpg"} -{"rects": [{"solidity": 0.9957120482030829, "top": 1070, "right": 1920, "bottom": 2990, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718646f.jpg"} -{"rects": [{"solidity": 0.9957122674596667, "top": 430, "right": 3150, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717608f.jpg"} -{"rects": [{"solidity": 0.9957123180718142, "top": 480, "right": 3575, "bottom": 2285, "left": 870}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711376f.jpg"} -{"rects": [{"solidity": 0.9957124981003715, "top": 400, "right": 3200, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732425f.jpg"} -{"rects": [{"solidity": 0.9957125230329154, "top": 2130, "right": 3200, "bottom": 3745, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704456f.jpg"} -{"rects": [{"solidity": 0.9957126964748484, "top": 2245, "right": 3150, "bottom": 3880, "left": 715}, {"solidity": 0.9960846432426563, "top": 385, "right": 3155, "bottom": 2030, "left": 725}, {"solidity": 0.9960559202746153, "top": 4085, "right": 3130, "bottom": 5715, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728469f.jpg"} -{"rects": [{"solidity": 0.9957132619315305, "top": 4050, "right": 3145, "bottom": 5655, "left": 740}, {"solidity": 0.9934511523498806, "top": 525, "right": 3035, "bottom": 1975, "left": 1175}, {"solidity": 0.9947312033109764, "top": 2355, "right": 3010, "bottom": 3790, "left": 1200}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727022f.jpg"} -{"rects": [{"solidity": 0.9957136683129678, "top": 365, "right": 5105, "bottom": 3465, "left": 1245}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706500f.jpg"} -{"rects": [{"solidity": 0.9957140442519901, "top": 855, "right": 2945, "bottom": 2360, "left": 850}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509345.jpg"} -{"rects": [{"solidity": 0.9957145820907134, "top": 715, "right": 2035, "bottom": 3130, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724776f.jpg"} -{"rects": [{"solidity": 0.9957146015684949, "top": 2165, "right": 3170, "bottom": 3785, "left": 775}, {"solidity": 0.9962132946643377, "top": 320, "right": 3170, "bottom": 1930, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709692f.jpg"} -{"rects": [{"solidity": 0.995714621765085, "top": 430, "right": 3160, "bottom": 1995, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713857f.jpg"} -{"rects": [{"solidity": 0.9957146335524714, "top": 885, "right": 3935, "bottom": 3305, "left": 2305}, {"solidity": 0.996444155511559, "top": 890, "right": 2030, "bottom": 3290, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729837f.jpg"} -{"rects": [{"solidity": 0.995714954901708, "top": 2220, "right": 3145, "bottom": 3870, "left": 695}, {"solidity": 0.9958865562160111, "top": 4100, "right": 3125, "bottom": 5750, "left": 675}, {"solidity": 0.9967029459640612, "top": 385, "right": 3145, "bottom": 2010, "left": 715}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/729693f.jpg"} -{"rects": [{"solidity": 0.995715259838183, "top": 855, "right": 2300, "bottom": 3260, "left": 695}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708570f.jpg"} -{"rects": [{"solidity": 0.9957152765623684, "top": 4045, "right": 3035, "bottom": 5675, "left": 615}, {"solidity": 0.9955016795676939, "top": 345, "right": 3085, "bottom": 1980, "left": 665}, {"solidity": 0.995167664436358, "top": 2205, "right": 3060, "bottom": 3825, "left": 645}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722818f.jpg"} -{"rects": [{"solidity": 0.9957154139792023, "top": 780, "right": 1990, "bottom": 3170, "left": 385}, {"solidity": 0.9954851257218837, "top": 790, "right": 3825, "bottom": 3190, "left": 2235}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718878f.jpg"} -{"rects": [{"solidity": 0.9957156090782769, "top": 400, "right": 3110, "bottom": 2030, "left": 680}, {"solidity": 0.9965150791096548, "top": 2290, "right": 3100, "bottom": 3895, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729178f.jpg"} -{"rects": [{"solidity": 0.9957156580211335, "top": 2180, "right": 3175, "bottom": 3820, "left": 735}, {"solidity": 0.9970893809349595, "top": 375, "right": 3155, "bottom": 1990, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/701126f.jpg"} -{"rects": [{"solidity": 0.995715925028688, "top": 590, "right": 2840, "bottom": 2085, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715332f.jpg"} -{"rects": [{"solidity": 0.9957162066978293, "top": 385, "right": 3210, "bottom": 2020, "left": 775}, {"solidity": 0.9954585488494243, "top": 2240, "right": 3200, "bottom": 3880, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725847f.jpg"} -{"rects": [{"solidity": 0.9957162285435511, "top": 770, "right": 5750, "bottom": 3135, "left": 4140}, {"solidity": 0.9974944180078602, "top": 755, "right": 3870, "bottom": 3120, "left": 2290}, {"solidity": 0.9958005795894286, "top": 760, "right": 2010, "bottom": 3110, "left": 460}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731606f.jpg"} -{"rects": [{"solidity": 0.9957162368442195, "top": 2180, "right": 3230, "bottom": 3800, "left": 795}, {"solidity": 0.9959922488868254, "top": 3920, "right": 3225, "bottom": 5540, "left": 795}, {"solidity": 0.9968588620807777, "top": 415, "right": 3215, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733208f.jpg"} -{"rects": [{"solidity": 0.9957164652036146, "top": 765, "right": 2045, "bottom": 1805, "left": 585}, {"solidity": 0.9945469017256855, "top": 750, "right": 3750, "bottom": 1795, "left": 2310}, {"solidity": 0.9951794184367911, "top": 2165, "right": 2080, "bottom": 3210, "left": 665}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731379f.jpg"} -{"rects": [{"solidity": 0.9957166104283066, "top": 730, "right": 3875, "bottom": 3145, "left": 2255}, {"solidity": 0.9959149953304902, "top": 745, "right": 2030, "bottom": 3160, "left": 420}, {"solidity": 0.9953874236962111, "top": 725, "right": 5710, "bottom": 3140, "left": 4110}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730474f.jpg"} -{"rects": [{"solidity": 0.9957166552834423, "top": 405, "right": 3140, "bottom": 2010, "left": 725}, {"solidity": 0.9966023181116316, "top": 2250, "right": 3130, "bottom": 3855, "left": 720}, {"solidity": 0.9931353109396575, "top": 4105, "right": 3120, "bottom": 5720, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731562f.jpg"} -{"rects": [{"solidity": 0.9957166602736223, "top": 1860, "right": 2420, "bottom": 3065, "left": 620}, {"solidity": 0.9950918606204585, "top": 560, "right": 2430, "bottom": 1765, "left": 625}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/707745f.jpg"} -{"rects": [{"solidity": 0.9957167167349616, "top": 480, "right": 2730, "bottom": 3630, "left": 320}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717101f.jpg"} -{"rects": [{"solidity": 0.9957167922386211, "top": 410, "right": 3100, "bottom": 2045, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728947f.jpg"} -{"rects": [{"solidity": 0.9957169216755911, "top": 410, "right": 3195, "bottom": 1990, "left": 810}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724685f.jpg"} -{"rects": [{"solidity": 0.995717115997203, "top": 465, "right": 3005, "bottom": 1900, "left": 1190}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725672f.jpg"} -{"rects": [{"solidity": 0.995717613652381, "top": 515, "right": 3640, "bottom": 2330, "left": 930}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711379f.jpg"} -{"rects": [{"solidity": 0.9957176374838657, "top": 855, "right": 2090, "bottom": 3285, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701270f.jpg"} -{"rects": [{"solidity": 0.9957179318132862, "top": 425, "right": 3185, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/703305f.jpg"} -{"rects": [{"solidity": 0.9957179977849868, "top": 310, "right": 3725, "bottom": 2700, "left": 760}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508177.jpg"} -{"rects": [{"solidity": 0.995718129478364, "top": 2220, "right": 3170, "bottom": 3880, "left": 735}, {"solidity": 0.9958611274323437, "top": 405, "right": 2905, "bottom": 1955, "left": 1020}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700291f.jpg"} -{"rects": [{"solidity": 0.9957181702970622, "top": 670, "right": 2490, "bottom": 2150, "left": 395}, {"solidity": 0.9967782997549518, "top": 2490, "right": 2495, "bottom": 3945, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716086f.jpg"} -{"rects": [{"solidity": 0.9957185250703431, "top": 775, "right": 1995, "bottom": 3210, "left": 355}, {"solidity": 0.9948620790583247, "top": 885, "right": 3730, "bottom": 3125, "left": 2285}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732560f.jpg"} -{"rects": [{"solidity": 0.9957188901919938, "top": 520, "right": 3940, "bottom": 2625, "left": 2465}, {"solidity": 0.9963958087342807, "top": 500, "right": 2080, "bottom": 2595, "left": 620}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716085f.jpg"} -{"rects": [{"solidity": 0.9957189682386659, "top": 415, "right": 3065, "bottom": 2025, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728667f.jpg"} -{"rects": [{"solidity": 0.9957195567191015, "top": 2235, "right": 3195, "bottom": 3855, "left": 775}, {"solidity": 0.9970927494144894, "top": 420, "right": 3195, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719540f.jpg"} -{"rects": [{"solidity": 0.9957196202280221, "top": 785, "right": 2045, "bottom": 3185, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713925f.jpg"} -{"rects": [{"solidity": 0.9957200739289591, "top": 375, "right": 3070, "bottom": 1995, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729428f.jpg"} -{"rects": [{"solidity": 0.9957202569134931, "top": 400, "right": 3200, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700787f.jpg"} -{"rects": [{"solidity": 0.9957206824236241, "top": 470, "right": 2210, "bottom": 2565, "left": 715}, {"solidity": 0.9968569953200538, "top": 475, "right": 3935, "bottom": 2565, "left": 2450}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716237f.jpg"} -{"rects": [{"solidity": 0.9957210388169817, "top": 405, "right": 3090, "bottom": 2035, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729025f.jpg"} -{"rects": [{"solidity": 0.9957211236281004, "top": 525, "right": 3350, "bottom": 2450, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714479f.jpg"} -{"rects": [{"solidity": 0.9957215203676798, "top": 390, "right": 3150, "bottom": 2035, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723154f.jpg"} -{"rects": [{"solidity": 0.9957216108700144, "top": 4020, "right": 3260, "bottom": 5650, "left": 840}, {"solidity": 0.9961078975481383, "top": 2305, "right": 3235, "bottom": 3915, "left": 805}, {"solidity": 0.995364022200457, "top": 580, "right": 3200, "bottom": 2190, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733148f.jpg"} -{"rects": [{"solidity": 0.9957220601436265, "top": 330, "right": 2185, "bottom": 1540, "left": 685}, {"solidity": 0.9948054334459412, "top": 345, "right": 3895, "bottom": 1555, "left": 2410}, {"solidity": 0.9956216227761048, "top": 1615, "right": 3005, "bottom": 2820, "left": 1530}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716292f.jpg"} -{"rects": [{"solidity": 0.9957224176014842, "top": 805, "right": 5795, "bottom": 3175, "left": 4185}, {"solidity": 0.9966245131839915, "top": 785, "right": 3910, "bottom": 3150, "left": 2350}, {"solidity": 0.9980217503525165, "top": 775, "right": 2035, "bottom": 3135, "left": 490}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731603f.jpg"} -{"rects": [{"solidity": 0.995722433995939, "top": 580, "right": 4960, "bottom": 3540, "left": 1165}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732064f.jpg"} -{"rects": [{"solidity": 0.9957225299422904, "top": 520, "right": 2960, "bottom": 1955, "left": 1140}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727710f.jpg"} -{"rects": [{"solidity": 0.9957227107165215, "top": 890, "right": 2615, "bottom": 3915, "left": 250}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507602.jpg"} -{"rects": [{"solidity": 0.9957229058590419, "top": 950, "right": 3900, "bottom": 3380, "left": 2260}, {"solidity": 0.995697576587426, "top": 965, "right": 2020, "bottom": 3350, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729298f.jpg"} -{"rects": [{"solidity": 0.995722920476802, "top": 2240, "right": 3075, "bottom": 3855, "left": 660}, {"solidity": 0.995167843605587, "top": 4105, "right": 3070, "bottom": 5725, "left": 655}, {"solidity": 0.9949357634680521, "top": 400, "right": 3080, "bottom": 2010, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728410f.jpg"} -{"rects": [{"solidity": 0.9957232244714528, "top": 670, "right": 2865, "bottom": 2055, "left": 1015}, {"solidity": 0.9952980872898615, "top": 660, "right": 5155, "bottom": 2030, "left": 3310}, {"solidity": 0.9943398301949058, "top": 2095, "right": 2875, "bottom": 3460, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705933f.jpg"} -{"rects": [{"solidity": 0.9957233126524465, "top": 2505, "right": 2510, "bottom": 3990, "left": 415}, {"solidity": 0.9955543354448533, "top": 720, "right": 2520, "bottom": 2195, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716080f.jpg"} -{"rects": [{"solidity": 0.9957233270028367, "top": 655, "right": 2760, "bottom": 2110, "left": 920}, {"solidity": 0.9950532542109652, "top": 2130, "right": 5355, "bottom": 3555, "left": 3500}, {"solidity": 0.9957532333885719, "top": 2120, "right": 2775, "bottom": 3555, "left": 940}, {"solidity": 0.9969829308949826, "top": 630, "right": 5325, "bottom": 2055, "left": 3510}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704300f.jpg"} -{"rects": [{"solidity": 0.995723472772669, "top": 915, "right": 3970, "bottom": 3330, "left": 2350}, {"solidity": 0.9967397709098208, "top": 910, "right": 2045, "bottom": 3325, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721013f.jpg"} -{"rects": [{"solidity": 0.9957236928404649, "top": 700, "right": 3335, "bottom": 2635, "left": 575}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714355f.jpg"} -{"rects": [{"solidity": 0.9957238929883385, "top": 2245, "right": 3150, "bottom": 3875, "left": 720}, {"solidity": 0.9956466860719714, "top": 405, "right": 3150, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723333f.jpg"} -{"rects": [{"solidity": 0.9957239054996436, "top": 400, "right": 3180, "bottom": 1990, "left": 800}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/718531f.jpg"} -{"rects": [{"solidity": 0.9957240756176865, "top": 425, "right": 3180, "bottom": 2065, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733940f.jpg"} -{"rects": [{"solidity": 0.9957244517032198, "top": 575, "right": 2655, "bottom": 1845, "left": 955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706867f.jpg"} -{"rects": [{"solidity": 0.9957244918560199, "top": 845, "right": 1975, "bottom": 3265, "left": 360}, {"solidity": 0.995573895427987, "top": 820, "right": 3745, "bottom": 3265, "left": 2135}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730456f.jpg"} -{"rects": [{"solidity": 0.9957245616231258, "top": 405, "right": 3220, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725217f.jpg"} -{"rects": [{"solidity": 0.9957249436045756, "top": 335, "right": 3190, "bottom": 1930, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709720f.jpg"} -{"rects": [{"solidity": 0.9957251747745852, "top": 450, "right": 3140, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713820f.jpg"} -{"rects": [{"solidity": 0.9957252343988273, "top": 2230, "right": 2650, "bottom": 3645, "left": 840}, {"solidity": 0.9951488684809833, "top": 2225, "right": 5265, "bottom": 3640, "left": 3460}, {"solidity": 0.997687930999819, "top": 775, "right": 2635, "bottom": 2180, "left": 850}, {"solidity": 0.9939444125521355, "top": 780, "right": 5260, "bottom": 2165, "left": 3465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727504f.jpg"} -{"rects": [{"solidity": 0.9957254252093931, "top": 2240, "right": 3205, "bottom": 3880, "left": 775}, {"solidity": 0.9946816411673911, "top": 4085, "right": 3165, "bottom": 5710, "left": 735}, {"solidity": 0.9944822823937904, "top": 400, "right": 3205, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714221f.jpg"} -{"rects": [{"solidity": 0.9957255948183741, "top": 475, "right": 5005, "bottom": 3555, "left": 1085}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717878f.jpg"} -{"rects": [{"solidity": 0.995725737564886, "top": 835, "right": 3835, "bottom": 3245, "left": 2230}, {"solidity": 0.9964970715120534, "top": 835, "right": 1960, "bottom": 3230, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729295f.jpg"} -{"rects": [{"solidity": 0.9957259991506928, "top": 530, "right": 4790, "bottom": 3670, "left": 985}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721241f.jpg"} -{"rects": [{"solidity": 0.9957262623906127, "top": 2310, "right": 3095, "bottom": 3715, "left": 1285}, {"solidity": 0.9959768145311498, "top": 480, "right": 3080, "bottom": 1895, "left": 1285}, {"solidity": 0.9950863884955442, "top": 4095, "right": 3085, "bottom": 5490, "left": 1275}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727562f.jpg"} -{"rects": [{"solidity": 0.9957263429520408, "top": 375, "right": 3200, "bottom": 1990, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/716769f.jpg"} -{"rects": [{"solidity": 0.995726517186833, "top": 535, "right": 3020, "bottom": 1925, "left": 1210}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728035f.jpg"} -{"rects": [{"solidity": 0.9957266214806749, "top": 505, "right": 3175, "bottom": 2110, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/716564f.jpg"} -{"rects": [{"solidity": 0.9957267154185249, "top": 760, "right": 2010, "bottom": 3195, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706590f.jpg"} -{"rects": [{"solidity": 0.995726738554917, "top": 780, "right": 5065, "bottom": 3200, "left": 1005}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717690f.jpg"} -{"rects": [{"solidity": 0.9957267852762169, "top": 900, "right": 3220, "bottom": 2840, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706531f.jpg"} -{"rects": [{"solidity": 0.9957271405228234, "top": 385, "right": 3125, "bottom": 2040, "left": 690}, {"solidity": 0.9967082249239926, "top": 2285, "right": 3095, "bottom": 3905, "left": 670}, {"solidity": 0.9967185873437692, "top": 4115, "right": 3070, "bottom": 5735, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728517f.jpg"} -{"rects": [{"solidity": 0.9957271571331895, "top": 460, "right": 3200, "bottom": 2170, "left": 770}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/732584f.jpg"} -{"rects": [{"solidity": 0.9957272842035755, "top": 395, "right": 3215, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727205f.jpg"} -{"rects": [{"solidity": 0.9957272853998295, "top": 790, "right": 3840, "bottom": 3215, "left": 2210}, {"solidity": 0.9961210189620857, "top": 785, "right": 2015, "bottom": 3195, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730450f.jpg"} -{"rects": [{"solidity": 0.99572754554629, "top": 835, "right": 2010, "bottom": 3225, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714692f.jpg"} -{"rects": [{"solidity": 0.9957276727666361, "top": 425, "right": 5600, "bottom": 2080, "left": 3170}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705538f.jpg"} -{"rects": [{"solidity": 0.9957276816542003, "top": 425, "right": 3195, "bottom": 2065, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729157f.jpg"} -{"rects": [{"solidity": 0.9957277323492595, "top": 475, "right": 3135, "bottom": 2085, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704472f.jpg"} -{"rects": [{"solidity": 0.9957281951945403, "top": 4125, "right": 3105, "bottom": 5750, "left": 670}, {"solidity": 0.9975886501928757, "top": 2270, "right": 3115, "bottom": 3885, "left": 695}, {"solidity": 0.9977499571034988, "top": 405, "right": 3110, "bottom": 2020, "left": 700}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728602f.jpg"} -{"rects": [{"solidity": 0.9957282886456387, "top": 605, "right": 2790, "bottom": 2070, "left": 945}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704583f.jpg"} -{"rects": [{"solidity": 0.9957291517796308, "top": 450, "right": 3180, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724924f.jpg"} -{"rects": [{"solidity": 0.9957291677343747, "top": 1220, "right": 3315, "bottom": 4920, "left": 325}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700129f.jpg"} -{"rects": [{"solidity": 0.9957292429112433, "top": 4095, "right": 3095, "bottom": 5740, "left": 655}, {"solidity": 0.9961473066170805, "top": 370, "right": 3120, "bottom": 2020, "left": 680}, {"solidity": 0.9971741761206706, "top": 2250, "right": 3110, "bottom": 3870, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703805f.jpg"} -{"rects": [{"solidity": 0.9957295860532385, "top": 740, "right": 2040, "bottom": 3150, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732422f.jpg"} -{"rects": [{"solidity": 0.9957297549516501, "top": 790, "right": 3725, "bottom": 3220, "left": 2105}, {"solidity": 0.9970547644948126, "top": 795, "right": 1880, "bottom": 3220, "left": 280}, {"solidity": 0.9953187687809633, "top": 785, "right": 5565, "bottom": 3220, "left": 3965}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730152f.jpg"} -{"rects": [{"solidity": 0.9957298424392429, "top": 820, "right": 3880, "bottom": 3240, "left": 2255}, {"solidity": 0.9985042977159785, "top": 810, "right": 1995, "bottom": 3225, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728351f.jpg"} -{"rects": [{"solidity": 0.9957299964779396, "top": 635, "right": 2965, "bottom": 2205, "left": 900}], "shape": {"h": 4435, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/703402f.jpg"} -{"rects": [{"solidity": 0.9957300373581265, "top": 425, "right": 3120, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728548f.jpg"} -{"rects": [{"solidity": 0.99573012861331, "top": 380, "right": 3095, "bottom": 1990, "left": 675}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/700311f.jpg"} -{"rects": [{"solidity": 0.9957301286757603, "top": 410, "right": 3185, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703276f.jpg"} -{"rects": [{"solidity": 0.9957305699481865, "top": 350, "right": 3030, "bottom": 2005, "left": 585}, {"solidity": 0.9969618709998236, "top": 2215, "right": 2995, "bottom": 3840, "left": 575}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726650f.jpg"} -{"rects": [{"solidity": 0.9957307050252959, "top": 765, "right": 1975, "bottom": 3195, "left": 355}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701034f.jpg"} -{"rects": [{"solidity": 0.9957308721309797, "top": 4095, "right": 3125, "bottom": 5750, "left": 685}, {"solidity": 0.995897859585751, "top": 2240, "right": 3140, "bottom": 3885, "left": 710}, {"solidity": 0.9956028860473476, "top": 395, "right": 3155, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712076f.jpg"} -{"rects": [{"solidity": 0.9957309304783465, "top": 855, "right": 2300, "bottom": 3290, "left": 670}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723576f.jpg"} -{"rects": [{"solidity": 0.9957309778338, "top": 2245, "right": 3090, "bottom": 3885, "left": 660}, {"solidity": 0.9960312219133247, "top": 375, "right": 3105, "bottom": 2005, "left": 675}, {"solidity": 0.9955584699171129, "top": 4110, "right": 3080, "bottom": 5740, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726603f.jpg"} -{"rects": [{"solidity": 0.995731139483852, "top": 600, "right": 5025, "bottom": 3630, "left": 1270}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718428f.jpg"} -{"rects": [{"solidity": 0.9957312912520575, "top": 800, "right": 2075, "bottom": 3225, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723187f.jpg"} -{"rects": [{"solidity": 0.9957313104414394, "top": 820, "right": 2050, "bottom": 3215, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719686f.jpg"} -{"rects": [{"solidity": 0.9957313483492103, "top": 960, "right": 3425, "bottom": 4815, "left": 310}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724111f.jpg"} -{"rects": [{"solidity": 0.9957313584014628, "top": 450, "right": 3260, "bottom": 2055, "left": 860}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721779f.jpg"} -{"rects": [{"solidity": 0.9957313895661908, "top": 385, "right": 3150, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729643f.jpg"} -{"rects": [{"solidity": 0.9957314682282884, "top": 2260, "right": 3200, "bottom": 3910, "left": 760}, {"solidity": 0.9964248889402831, "top": 420, "right": 3205, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719610f.jpg"} -{"rects": [{"solidity": 0.9957315088813374, "top": 945, "right": 1975, "bottom": 2110, "left": 535}, {"solidity": 0.9920247459401192, "top": 950, "right": 4060, "bottom": 2100, "left": 2630}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508179.jpg"} -{"rects": [{"solidity": 0.9957317459312266, "top": 395, "right": 3065, "bottom": 2040, "left": 600}, {"solidity": 0.9957860688984178, "top": 2255, "right": 3030, "bottom": 3875, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730991f.jpg"} -{"rects": [{"solidity": 0.9957320121961183, "top": 375, "right": 3120, "bottom": 1985, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728669f.jpg"} -{"rects": [{"solidity": 0.995732073740461, "top": 775, "right": 2020, "bottom": 3190, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702950f.jpg"} -{"rects": [{"solidity": 0.9957321216771609, "top": 3125, "right": 3330, "bottom": 5010, "left": 660}, {"solidity": 0.9963311027721965, "top": 595, "right": 3355, "bottom": 2445, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711082f.jpg"} -{"rects": [{"solidity": 0.9957322648203429, "top": 1020, "right": 3565, "bottom": 5065, "left": 360}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721300f.jpg"} -{"rects": [{"solidity": 0.9957326763886677, "top": 790, "right": 3995, "bottom": 3195, "left": 2370}, {"solidity": 0.997788574521738, "top": 795, "right": 2095, "bottom": 3185, "left": 500}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719858f.jpg"} -{"rects": [{"solidity": 0.9957327835209483, "top": 2200, "right": 3270, "bottom": 3840, "left": 830}, {"solidity": 0.9976659859125578, "top": 360, "right": 3275, "bottom": 1980, "left": 850}, {"solidity": 0.9970297380183879, "top": 4070, "right": 3235, "bottom": 5695, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726920f.jpg"} -{"rects": [{"solidity": 0.9957328344294909, "top": 415, "right": 3260, "bottom": 2060, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726858f.jpg"} -{"rects": [{"solidity": 0.9957331365007834, "top": 425, "right": 3110, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710514f.jpg"} -{"rects": [{"solidity": 0.9957331739601143, "top": 2130, "right": 2775, "bottom": 3555, "left": 955}, {"solidity": 0.9949600087652022, "top": 690, "right": 2765, "bottom": 2090, "left": 950}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705863f.jpg"} -{"rects": [{"solidity": 0.9957332515752797, "top": 865, "right": 2075, "bottom": 3285, "left": 430}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716553f.jpg"} -{"rects": [{"solidity": 0.9957333528714999, "top": 765, "right": 3240, "bottom": 2685, "left": 530}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712419f.jpg"} -{"rects": [{"solidity": 0.9957335256726604, "top": 585, "right": 2280, "bottom": 3610, "left": 310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709019f.jpg"} -{"rects": [{"solidity": 0.9957336154362671, "top": 815, "right": 2080, "bottom": 3260, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718616f.jpg"} -{"rects": [{"solidity": 0.9957338236838003, "top": 420, "right": 3185, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733937f.jpg"} -{"rects": [{"solidity": 0.9957338276571549, "top": 4010, "right": 3200, "bottom": 5625, "left": 810}, {"solidity": 0.9968941536816326, "top": 2225, "right": 3205, "bottom": 3830, "left": 820}, {"solidity": 0.9970256607069597, "top": 415, "right": 3210, "bottom": 2020, "left": 830}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/730829f.jpg"} -{"rects": [{"solidity": 0.9957339394126686, "top": 1285, "right": 3235, "bottom": 4690, "left": 600}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714602f.jpg"} -{"rects": [{"solidity": 0.9957339577634904, "top": 695, "right": 2040, "bottom": 3065, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721448f.jpg"} -{"rects": [{"solidity": 0.995734157350319, "top": 635, "right": 2650, "bottom": 2080, "left": 845}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734393f.jpg"} -{"rects": [{"solidity": 0.995734245091138, "top": 455, "right": 2990, "bottom": 2080, "left": 575}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703030f.jpg"} -{"rects": [{"solidity": 0.9957344189604429, "top": 410, "right": 3145, "bottom": 2030, "left": 725}, {"solidity": 0.9955331655161676, "top": 2280, "right": 3145, "bottom": 3900, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728448f.jpg"} -{"rects": [{"solidity": 0.9957347356120362, "top": 635, "right": 3195, "bottom": 2245, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730955f.jpg"} -{"rects": [{"solidity": 0.9957350941540685, "top": 410, "right": 2845, "bottom": 1810, "left": 1040}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704059f.jpg"} -{"rects": [{"solidity": 0.995735291198023, "top": 420, "right": 5345, "bottom": 3680, "left": 1250}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732390f.jpg"} -{"rects": [{"solidity": 0.9957354332151822, "top": 780, "right": 2000, "bottom": 3185, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715565f.jpg"} -{"rects": [{"solidity": 0.9957356584310012, "top": 490, "right": 2650, "bottom": 3575, "left": 250}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508113.jpg"} -{"rects": [{"solidity": 0.9957356660139226, "top": 1960, "right": 2895, "bottom": 3530, "left": 820}, {"solidity": 0.99041189574968, "top": 485, "right": 2770, "bottom": 1690, "left": 1210}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721200f.jpg"} -{"rects": [{"solidity": 0.9957356893436919, "top": 435, "right": 3185, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717761f.jpg"} -{"rects": [{"solidity": 0.9957357159174557, "top": 765, "right": 2045, "bottom": 3205, "left": 395}, {"solidity": 0.9958447430427307, "top": 770, "right": 3910, "bottom": 3220, "left": 2270}, {"solidity": 0.9964231212532919, "top": 810, "right": 5735, "bottom": 3235, "left": 4115}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724563f.jpg"} -{"rects": [{"solidity": 0.9957358715209729, "top": 435, "right": 3200, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726116f.jpg"} -{"rects": [{"solidity": 0.9957367280531613, "top": 680, "right": 4860, "bottom": 3295, "left": 1335}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713100f.jpg"} -{"rects": [{"solidity": 0.9957367705895674, "top": 960, "right": 3620, "bottom": 5050, "left": 350}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/730773f.jpg"} -{"rects": [{"solidity": 0.9957368755469771, "top": 785, "right": 2630, "bottom": 3525, "left": 715}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707462f.jpg"} -{"rects": [{"solidity": 0.9957369372120842, "top": 2225, "right": 3075, "bottom": 3860, "left": 650}, {"solidity": 0.9976576039417775, "top": 375, "right": 3070, "bottom": 1975, "left": 665}, {"solidity": 0.996288181636025, "top": 4090, "right": 3050, "bottom": 5690, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728892f.jpg"} -{"rects": [{"solidity": 0.9957369542138568, "top": 460, "right": 5340, "bottom": 3680, "left": 1325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718006f.jpg"} -{"rects": [{"solidity": 0.9957370480805069, "top": 890, "right": 4460, "bottom": 3595, "left": 2660}, {"solidity": 0.9955000428196618, "top": 920, "right": 2320, "bottom": 3615, "left": 515}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711265f.jpg"} -{"rects": [{"solidity": 0.9957370493092486, "top": 665, "right": 2710, "bottom": 2105, "left": 880}, {"solidity": 0.9967951797966597, "top": 2165, "right": 2705, "bottom": 3605, "left": 880}, {"solidity": 0.9967723882397214, "top": 645, "right": 5260, "bottom": 2085, "left": 3445}, {"solidity": 0.9985593803870627, "top": 2165, "right": 5245, "bottom": 3590, "left": 3435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731980f.jpg"} -{"rects": [{"solidity": 0.995737397979044, "top": 430, "right": 3200, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/707241f.jpg"} -{"rects": [{"solidity": 0.9957376173763668, "top": 360, "right": 3205, "bottom": 1990, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726113f.jpg"} -{"rects": [{"solidity": 0.9957376295783263, "top": 2245, "right": 3100, "bottom": 3880, "left": 675}, {"solidity": 0.9952621066762712, "top": 385, "right": 3115, "bottom": 2005, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734197f.jpg"} -{"rects": [{"solidity": 0.9957377942283966, "top": 780, "right": 2090, "bottom": 3210, "left": 465}, {"solidity": 0.996199624138651, "top": 790, "right": 3945, "bottom": 3215, "left": 2320}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707877f.jpg"} -{"rects": [{"solidity": 0.9957379710144928, "top": 420, "right": 3295, "bottom": 2410, "left": 530}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707418f.jpg"} -{"rects": [{"solidity": 0.9957380070817636, "top": 1930, "right": 3345, "bottom": 3555, "left": 940}, {"solidity": 0.9958051881433043, "top": 480, "right": 3085, "bottom": 1915, "left": 1245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727744f.jpg"} -{"rects": [{"solidity": 0.9957381586776004, "top": 2315, "right": 3210, "bottom": 3940, "left": 790}, {"solidity": 0.9952982039986445, "top": 4170, "right": 3175, "bottom": 5775, "left": 765}, {"solidity": 0.9972321237067072, "top": 465, "right": 3170, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/723606f.jpg"} -{"rects": [{"solidity": 0.9957381872616643, "top": 2310, "right": 3195, "bottom": 3935, "left": 770}, {"solidity": 0.9988001203149112, "top": 445, "right": 3180, "bottom": 2055, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719696f.jpg"} -{"rects": [{"solidity": 0.9957382327871958, "top": 715, "right": 2585, "bottom": 2115, "left": 775}, {"solidity": 0.9968205798823065, "top": 2175, "right": 2575, "bottom": 3575, "left": 770}, {"solidity": 0.996545326915363, "top": 725, "right": 5255, "bottom": 2120, "left": 3445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727633f.jpg"} -{"rects": [{"solidity": 0.9957383674030498, "top": 510, "right": 3500, "bottom": 2320, "left": 805}, {"solidity": 0.9940511849233901, "top": 2645, "right": 3475, "bottom": 4460, "left": 795}, {"solidity": 0.9957886003397476, "top": 4795, "right": 3480, "bottom": 6600, "left": 800}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711332f.jpg"} -{"rects": [{"solidity": 0.9957383737608771, "top": 2260, "right": 3065, "bottom": 3915, "left": 630}, {"solidity": 0.996160070478507, "top": 390, "right": 3065, "bottom": 2015, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723350f.jpg"} -{"rects": [{"solidity": 0.9957384311648289, "top": 2000, "right": 2490, "bottom": 3440, "left": 660}, {"solidity": 0.9943291520442982, "top": 650, "right": 2475, "bottom": 1800, "left": 645}, {"solidity": 0.9937433561123766, "top": 630, "right": 5285, "bottom": 1775, "left": 3455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704398f.jpg"} -{"rects": [{"solidity": 0.9957385737447161, "top": 695, "right": 2625, "bottom": 2120, "left": 815}, {"solidity": 0.9959528749099743, "top": 2160, "right": 2570, "bottom": 3550, "left": 870}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726982f.jpg"} -{"rects": [{"solidity": 0.9957385840524838, "top": 525, "right": 2870, "bottom": 3650, "left": 555}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711806f.jpg"} -{"rects": [{"solidity": 0.9957387187167842, "top": 405, "right": 3200, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706580f.jpg"} -{"rects": [{"solidity": 0.9957387784498223, "top": 815, "right": 1980, "bottom": 3205, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712034f.jpg"} -{"rects": [{"solidity": 0.9957387980808328, "top": 740, "right": 2025, "bottom": 3145, "left": 410}, {"solidity": 0.9967356602216881, "top": 1125, "right": 4455, "bottom": 2735, "left": 2060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718876f.jpg"} -{"rects": [{"solidity": 0.9957389964208584, "top": 675, "right": 2340, "bottom": 3395, "left": 505}, {"solidity": 0.9959851947736742, "top": 855, "right": 4105, "bottom": 3225, "left": 2525}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723986f.jpg"} -{"rects": [{"solidity": 0.9957390180962218, "top": 445, "right": 3115, "bottom": 2055, "left": 695}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728707f.jpg"} -{"rects": [{"solidity": 0.9957390405316323, "top": 550, "right": 5795, "bottom": 4085, "left": 1250}], "shape": {"h": 4435, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/708301f.jpg"} -{"rects": [{"solidity": 0.9957395832327, "top": 2145, "right": 5205, "bottom": 3580, "left": 3380}, {"solidity": 0.9959890266736984, "top": 640, "right": 5210, "bottom": 2070, "left": 3385}, {"solidity": 0.9955499876657267, "top": 635, "right": 2785, "bottom": 2075, "left": 960}, {"solidity": 0.9962159749185059, "top": 2150, "right": 2755, "bottom": 3510, "left": 960}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706775f.jpg"} -{"rects": [{"solidity": 0.9957395887804894, "top": 285, "right": 3160, "bottom": 1905, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703931f.jpg"} -{"rects": [{"solidity": 0.9957396001409744, "top": 570, "right": 3135, "bottom": 2505, "left": 405}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703602f.jpg"} -{"rects": [{"solidity": 0.9957396956444342, "top": 675, "right": 5835, "bottom": 3455, "left": 3930}, {"solidity": 0.9964013029986996, "top": 770, "right": 3870, "bottom": 3190, "left": 2235}, {"solidity": 0.9978324169038983, "top": 770, "right": 2025, "bottom": 3175, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718706f.jpg"} -{"rects": [{"solidity": 0.9957397687055444, "top": 395, "right": 5105, "bottom": 3665, "left": 1090}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708921f.jpg"} -{"rects": [{"solidity": 0.9957398776580251, "top": 785, "right": 3825, "bottom": 3175, "left": 2235}, {"solidity": 0.9962379778133744, "top": 790, "right": 2010, "bottom": 3175, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716634f.jpg"} -{"rects": [{"solidity": 0.9957400302595694, "top": 810, "right": 2055, "bottom": 3205, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724502f.jpg"} -{"rects": [{"solidity": 0.9957403745030988, "top": 770, "right": 2400, "bottom": 3170, "left": 775}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711952f.jpg"} -{"rects": [{"solidity": 0.9957404750518093, "top": 4105, "right": 3260, "bottom": 5755, "left": 830}, {"solidity": 0.9958334804561986, "top": 390, "right": 3250, "bottom": 2025, "left": 825}, {"solidity": 0.9981945559413617, "top": 2270, "right": 3250, "bottom": 3890, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704417f.jpg"} -{"rects": [{"solidity": 0.995740653099858, "top": 405, "right": 3160, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721596f.jpg"} -{"rects": [{"solidity": 0.9957408273542377, "top": 555, "right": 3130, "bottom": 2145, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724881f.jpg"} -{"rects": [{"solidity": 0.995740869921563, "top": 855, "right": 3215, "bottom": 2820, "left": 405}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707424f.jpg"} -{"rects": [{"solidity": 0.9957408894197819, "top": 2170, "right": 4915, "bottom": 3590, "left": 3100}, {"solidity": 0.9954588308463851, "top": 540, "right": 4925, "bottom": 1950, "left": 3110}, {"solidity": 0.9958934400336948, "top": 2165, "right": 2845, "bottom": 3565, "left": 1045}, {"solidity": 0.9952218876816338, "top": 530, "right": 2840, "bottom": 1925, "left": 1040}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726240f.jpg"} -{"rects": [{"solidity": 0.9957410276531385, "top": 2185, "right": 3080, "bottom": 3760, "left": 685}, {"solidity": 0.9960920942446266, "top": 390, "right": 3055, "bottom": 1945, "left": 680}, {"solidity": 0.9843987466135264, "top": 4040, "right": 3060, "bottom": 5585, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728799f.jpg"} -{"rects": [{"solidity": 0.9957411815901295, "top": 2225, "right": 3160, "bottom": 3865, "left": 735}, {"solidity": 0.9972028691489327, "top": 415, "right": 3170, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705420f.jpg"} -{"rects": [{"solidity": 0.9957414160805481, "top": 385, "right": 3195, "bottom": 1950, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713598f.jpg"} -{"rects": [{"solidity": 0.9957415113586684, "top": 2155, "right": 3180, "bottom": 3790, "left": 755}, {"solidity": 0.9946964853488263, "top": 385, "right": 2910, "bottom": 1945, "left": 1005}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711743f.jpg"} -{"rects": [{"solidity": 0.995741571659403, "top": 390, "right": 3120, "bottom": 2025, "left": 685}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705177f.jpg"} -{"rects": [{"solidity": 0.9957416561661981, "top": 750, "right": 1990, "bottom": 3165, "left": 375}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725293f.jpg"} -{"rects": [{"solidity": 0.9957417216216384, "top": 505, "right": 4975, "bottom": 3630, "left": 1080}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730291f.jpg"} -{"rects": [{"solidity": 0.9957418879246795, "top": 395, "right": 3180, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723295f.jpg"} -{"rects": [{"solidity": 0.9957419479143251, "top": 975, "right": 2005, "bottom": 3405, "left": 380}, {"solidity": 0.9976845198688863, "top": 965, "right": 3885, "bottom": 3385, "left": 2270}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728966f.jpg"} -{"rects": [{"solidity": 0.9957419980601357, "top": 490, "right": 3170, "bottom": 2110, "left": 745}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725322f.jpg"} -{"rects": [{"solidity": 0.9957421389326869, "top": 385, "right": 3205, "bottom": 3825, "left": 570}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713192f.jpg"} -{"rects": [{"solidity": 0.9957421429107469, "top": 480, "right": 3110, "bottom": 2595, "left": 1595}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509365.jpg"} -{"rects": [{"solidity": 0.9957421475007739, "top": 700, "right": 3250, "bottom": 2640, "left": 520}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724749f.jpg"} -{"rects": [{"solidity": 0.9957422106442335, "top": 695, "right": 2240, "bottom": 3345, "left": 255}, {"solidity": 0.997609525862485, "top": 830, "right": 5795, "bottom": 3230, "left": 4165}, {"solidity": 0.9961735955019149, "top": 835, "right": 3995, "bottom": 3220, "left": 2390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723495f.jpg"} -{"rects": [{"solidity": 0.9957423277727547, "top": 660, "right": 4900, "bottom": 3675, "left": 1140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709894f.jpg"} -{"rects": [{"solidity": 0.9957425073731732, "top": 420, "right": 3015, "bottom": 2025, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716703f.jpg"} -{"rects": [{"solidity": 0.9957425793707152, "top": 440, "right": 3205, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733944f.jpg"} -{"rects": [{"solidity": 0.9957432426260356, "top": 350, "right": 2720, "bottom": 1730, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721074f.jpg"} -{"rects": [{"solidity": 0.9957432861830666, "top": 840, "right": 3205, "bottom": 2355, "left": 1110}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507563.jpg"} -{"rects": [{"solidity": 0.9957435980476069, "top": 430, "right": 3205, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722084f.jpg"} -{"rects": [{"solidity": 0.9957436228929442, "top": 2460, "right": 3035, "bottom": 3870, "left": 1225}, {"solidity": 0.9956189047261815, "top": 620, "right": 3060, "bottom": 2015, "left": 1245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727435f.jpg"} -{"rects": [{"solidity": 0.995743694772821, "top": 1005, "right": 2205, "bottom": 3455, "left": 660}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1517109.jpg"} -{"rects": [{"solidity": 0.9957439848318957, "top": 415, "right": 3175, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732570f.jpg"} -{"rects": [{"solidity": 0.9957440355348574, "top": 425, "right": 2980, "bottom": 1850, "left": 1165}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725540f.jpg"} -{"rects": [{"solidity": 0.9957443631476781, "top": 730, "right": 2680, "bottom": 2130, "left": 870}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725478f.jpg"} -{"rects": [{"solidity": 0.9957444089456869, "top": 440, "right": 3115, "bottom": 2080, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729620f.jpg"} -{"rects": [{"solidity": 0.9957448425211808, "top": 675, "right": 3265, "bottom": 2685, "left": 455}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734200f.jpg"} -{"rects": [{"solidity": 0.9957449079969802, "top": 875, "right": 5995, "bottom": 2960, "left": 2720}, {"solidity": 0.9976707969395355, "top": 415, "right": 2695, "bottom": 3660, "left": 685}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724968f.jpg"} -{"rects": [{"solidity": 0.9957450877276857, "top": 605, "right": 2785, "bottom": 2060, "left": 950}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703705f.jpg"} -{"rects": [{"solidity": 0.9957450886439866, "top": 440, "right": 2670, "bottom": 2875, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705820f.jpg"} -{"rects": [{"solidity": 0.9957452564924294, "top": 790, "right": 5755, "bottom": 3215, "left": 4140}, {"solidity": 0.9981100604193119, "top": 805, "right": 3860, "bottom": 3205, "left": 2255}, {"solidity": 0.9961635244726068, "top": 800, "right": 1995, "bottom": 3210, "left": 380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718245f.jpg"} -{"rects": [{"solidity": 0.9957453104706792, "top": 840, "right": 3935, "bottom": 3235, "left": 2335}, {"solidity": 0.9974049214047761, "top": 845, "right": 2030, "bottom": 3235, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711183f.jpg"} -{"rects": [{"solidity": 0.9957455746975057, "top": 470, "right": 3225, "bottom": 2060, "left": 840}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710394f.jpg"} -{"rects": [{"solidity": 0.9957456452761769, "top": 1435, "right": 3190, "bottom": 3060, "left": 775}, {"solidity": 0.9958634852654941, "top": 3285, "right": 3175, "bottom": 4900, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730835f.jpg"} -{"rects": [{"solidity": 0.9957456926297721, "top": 665, "right": 4880, "bottom": 3585, "left": 1170}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707654f.jpg"} -{"rects": [{"solidity": 0.9957461768324838, "top": 2245, "right": 3210, "bottom": 3895, "left": 770}, {"solidity": 0.994527471962136, "top": 395, "right": 3210, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732156f.jpg"} -{"rects": [{"solidity": 0.9957463276303338, "top": 425, "right": 3175, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722646f.jpg"} -{"rects": [{"solidity": 0.9957463652892673, "top": 435, "right": 3265, "bottom": 2010, "left": 875}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726009f.jpg"} -{"rects": [{"solidity": 0.9957463654958542, "top": 420, "right": 5905, "bottom": 1925, "left": 3990}, {"solidity": 0.9959119344143603, "top": 2130, "right": 2170, "bottom": 3630, "left": 260}, {"solidity": 0.997205135062851, "top": 920, "right": 3825, "bottom": 2840, "left": 2350}, {"solidity": 0.9941131763213873, "top": 2150, "right": 5900, "bottom": 3620, "left": 3985}, {"solidity": 0.9971414498971198, "top": 435, "right": 2170, "bottom": 1900, "left": 290}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731440f.jpg"} -{"rects": [{"solidity": 0.9957464026671928, "top": 445, "right": 3310, "bottom": 2025, "left": 910}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726720f.jpg"} -{"rects": [{"solidity": 0.9957466302410577, "top": 395, "right": 3190, "bottom": 1985, "left": 800}, {"solidity": 0.9962025784794841, "top": 2230, "right": 3170, "bottom": 3815, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734615f.jpg"} -{"rects": [{"solidity": 0.9957467667131708, "top": 435, "right": 2995, "bottom": 3845, "left": 1020}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714831f.jpg"} -{"rects": [{"solidity": 0.9957469413720623, "top": 810, "right": 2145, "bottom": 3210, "left": 540}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711607f.jpg"} -{"rects": [{"solidity": 0.9957470112185389, "top": 815, "right": 3850, "bottom": 3240, "left": 2210}, {"solidity": 0.9968865907685968, "top": 815, "right": 2020, "bottom": 3235, "left": 400}, {"solidity": 0.996490093902232, "top": 825, "right": 5635, "bottom": 3235, "left": 4035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734633f.jpg"} -{"rects": [{"solidity": 0.9957470202417403, "top": 310, "right": 4000, "bottom": 2680, "left": 1190}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507508.jpg"} -{"rects": [{"solidity": 0.9957475568896553, "top": 620, "right": 5290, "bottom": 3480, "left": 3440}, {"solidity": 0.9975909279289978, "top": 650, "right": 2705, "bottom": 3500, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703317f.jpg"} -{"rects": [{"solidity": 0.9957478525834669, "top": 425, "right": 3065, "bottom": 2030, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728383f.jpg"} -{"rects": [{"solidity": 0.9957480406686643, "top": 820, "right": 2085, "bottom": 3225, "left": 465}, {"solidity": 0.9953067051757524, "top": 820, "right": 3970, "bottom": 3225, "left": 2365}, {"solidity": 0.9949111835845479, "top": 825, "right": 5850, "bottom": 3230, "left": 4250}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713018f.jpg"} -{"rects": [{"solidity": 0.9957481484402211, "top": 815, "right": 3950, "bottom": 3215, "left": 2335}, {"solidity": 0.9958375527703618, "top": 835, "right": 2075, "bottom": 3235, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712720f.jpg"} -{"rects": [{"solidity": 0.9957484476152728, "top": 540, "right": 3315, "bottom": 2375, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723147f.jpg"} -{"rects": [{"solidity": 0.9957488690901747, "top": 825, "right": 2020, "bottom": 3250, "left": 400}, {"solidity": 0.9961483805837229, "top": 845, "right": 3850, "bottom": 3260, "left": 2215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713897f.jpg"} -{"rects": [{"solidity": 0.9957489713941877, "top": 390, "right": 3160, "bottom": 1995, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724613f.jpg"} -{"rects": [{"solidity": 0.9957490556113422, "top": 675, "right": 2740, "bottom": 2110, "left": 895}, {"solidity": 0.9981884057971014, "top": 2180, "right": 2725, "bottom": 3610, "left": 905}, {"solidity": 0.9948208974839492, "top": 680, "right": 5300, "bottom": 2115, "left": 3470}, {"solidity": 0.9945758513931888, "top": 2150, "right": 5285, "bottom": 3560, "left": 3455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705840f.jpg"} -{"rects": [{"solidity": 0.9957491571318591, "top": 785, "right": 2035, "bottom": 3175, "left": 445}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713009f.jpg"} -{"rects": [{"solidity": 0.9957493611102125, "top": 725, "right": 2360, "bottom": 3140, "left": 720}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709366f.jpg"} -{"rects": [{"solidity": 0.9957495096054294, "top": 560, "right": 3360, "bottom": 2485, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710603f.jpg"} -{"rects": [{"solidity": 0.9957496484914155, "top": 2310, "right": 3085, "bottom": 3940, "left": 665}, {"solidity": 0.9974413604568583, "top": 430, "right": 3095, "bottom": 2045, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728455f.jpg"} -{"rects": [{"solidity": 0.9957497517378352, "top": 575, "right": 5070, "bottom": 3620, "left": 1180}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/722504f.jpg"} -{"rects": [{"solidity": 0.9957499186810131, "top": 815, "right": 4845, "bottom": 3275, "left": 1265}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705579f.jpg"} -{"rects": [{"solidity": 0.9957499557287055, "top": 810, "right": 5760, "bottom": 3255, "left": 4115}, {"solidity": 0.997901620772667, "top": 815, "right": 3875, "bottom": 3235, "left": 2260}, {"solidity": 0.9971203909287466, "top": 810, "right": 2035, "bottom": 3235, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734129f.jpg"} -{"rects": [{"solidity": 0.9957499591342225, "top": 635, "right": 2780, "bottom": 2065, "left": 940}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707211f.jpg"} -{"rects": [{"solidity": 0.9957500204325941, "top": 620, "right": 2780, "bottom": 2060, "left": 950}, {"solidity": 0.996105485701569, "top": 2125, "right": 2765, "bottom": 3555, "left": 930}, {"solidity": 0.9951734628210378, "top": 645, "right": 5290, "bottom": 2060, "left": 3455}, {"solidity": 0.9927285984829305, "top": 2125, "right": 5280, "bottom": 3540, "left": 3465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702729f.jpg"} -{"rects": [{"solidity": 0.9957500893672797, "top": 420, "right": 3170, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712200f.jpg"} -{"rects": [{"solidity": 0.9957502516298377, "top": 435, "right": 3095, "bottom": 2045, "left": 705}], "shape": {"h": 6140, "w": 4080}, "file": "/usr/local/google/home/danvk/milstein/701128f.jpg"} -{"rects": [{"solidity": 0.9957502597739967, "top": 2500, "right": 2525, "bottom": 3990, "left": 430}, {"solidity": 0.9981237052141458, "top": 720, "right": 2540, "bottom": 2200, "left": 450}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716013f.jpg"} -{"rects": [{"solidity": 0.9957505515172418, "top": 2360, "right": 3145, "bottom": 3970, "left": 735}, {"solidity": 0.9999212034854325, "top": 505, "right": 3140, "bottom": 2100, "left": 740}, {"solidity": 0.9962671569111959, "top": 4230, "right": 3145, "bottom": 5840, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717918f.jpg"} -{"rects": [{"solidity": 0.9957505741457559, "top": 600, "right": 2645, "bottom": 2010, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706327f.jpg"} -{"rects": [{"solidity": 0.9957506575589202, "top": 750, "right": 2040, "bottom": 3165, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707310f.jpg"} -{"rects": [{"solidity": 0.9957507650629609, "top": 2205, "right": 4885, "bottom": 3605, "left": 3085}, {"solidity": 0.9951614763263321, "top": 620, "right": 4905, "bottom": 2025, "left": 3100}, {"solidity": 0.9927511236273212, "top": 625, "right": 2690, "bottom": 1980, "left": 875}, {"solidity": 0.9944643247596141, "top": 2235, "right": 2665, "bottom": 3570, "left": 880}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727358f.jpg"} -{"rects": [{"solidity": 0.9957508782058975, "top": 390, "right": 3115, "bottom": 2005, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734714f.jpg"} -{"rects": [{"solidity": 0.9957509633508527, "top": 2230, "right": 3075, "bottom": 3855, "left": 650}, {"solidity": 0.9963007717466609, "top": 375, "right": 3085, "bottom": 1995, "left": 660}, {"solidity": 0.9962655199172271, "top": 4105, "right": 3055, "bottom": 5725, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730632f.jpg"} -{"rects": [{"solidity": 0.9957510166181038, "top": 4090, "right": 3170, "bottom": 5720, "left": 735}, {"solidity": 0.9955744785244388, "top": 2240, "right": 3165, "bottom": 3865, "left": 750}, {"solidity": 0.9962963566181859, "top": 435, "right": 3160, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717909f.jpg"} -{"rects": [{"solidity": 0.9957510542013782, "top": 395, "right": 3090, "bottom": 2025, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734722f.jpg"} -{"rects": [{"solidity": 0.9957511573340098, "top": 445, "right": 3005, "bottom": 1805, "left": 1240}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726554f.jpg"} -{"rects": [{"solidity": 0.995751205849808, "top": 2270, "right": 3160, "bottom": 3870, "left": 760}, {"solidity": 0.9960324075617644, "top": 580, "right": 3155, "bottom": 2175, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709288f.jpg"} -{"rects": [{"solidity": 0.995751241369709, "top": 700, "right": 2700, "bottom": 2055, "left": 890}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703701f.jpg"} -{"rects": [{"solidity": 0.9957513623349035, "top": 705, "right": 2670, "bottom": 2130, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703103f.jpg"} -{"rects": [{"solidity": 0.9957513715692352, "top": 415, "right": 5030, "bottom": 3540, "left": 1185}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726048f.jpg"} -{"rects": [{"solidity": 0.9957519365692079, "top": 505, "right": 3185, "bottom": 2115, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708131f.jpg"} -{"rects": [{"solidity": 0.9957523102034521, "top": 395, "right": 3275, "bottom": 2055, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707265f.jpg"} -{"rects": [{"solidity": 0.9957523847098576, "top": 465, "right": 3155, "bottom": 2110, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705630f.jpg"} -{"rects": [{"solidity": 0.9957524388910682, "top": 380, "right": 3075, "bottom": 2010, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729484f.jpg"} -{"rects": [{"solidity": 0.9957525356419781, "top": 2285, "right": 3100, "bottom": 3895, "left": 685}, {"solidity": 0.9955837010866376, "top": 435, "right": 3100, "bottom": 2040, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729335f.jpg"} -{"rects": [{"solidity": 0.99575265021791, "top": 1655, "right": 2370, "bottom": 2860, "left": 575}, {"solidity": 0.9972620531091493, "top": 265, "right": 2380, "bottom": 1465, "left": 585}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716331f.jpg"} -{"rects": [{"solidity": 0.9957531882922978, "top": 895, "right": 5745, "bottom": 3335, "left": 4105}, {"solidity": 0.9965861160210066, "top": 840, "right": 3895, "bottom": 3280, "left": 2250}, {"solidity": 0.9978853436558696, "top": 825, "right": 2000, "bottom": 3245, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734735f.jpg"} -{"rects": [{"solidity": 0.9957532471592784, "top": 500, "right": 3015, "bottom": 3645, "left": 675}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714106f.jpg"} -{"rects": [{"solidity": 0.9957533564755731, "top": 400, "right": 3100, "bottom": 2040, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729892f.jpg"} -{"rects": [{"solidity": 0.9957534140485841, "top": 2300, "right": 3175, "bottom": 3915, "left": 750}, {"solidity": 0.9987962401160282, "top": 460, "right": 3175, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724338f.jpg"} -{"rects": [{"solidity": 0.9957535467422828, "top": 1290, "right": 3595, "bottom": 5285, "left": 420}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/717715f.jpg"} -{"rects": [{"solidity": 0.9957536164699903, "top": 465, "right": 5070, "bottom": 3705, "left": 985}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721873f.jpg"} -{"rects": [{"solidity": 0.9957537154989384, "top": 670, "right": 2710, "bottom": 2080, "left": 925}, {"solidity": 0.9965542010116384, "top": 2100, "right": 2705, "bottom": 3510, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727750f.jpg"} -{"rects": [{"solidity": 0.9957537428598123, "top": 825, "right": 2070, "bottom": 3255, "left": 440}, {"solidity": 0.9969096828854213, "top": 825, "right": 3920, "bottom": 3245, "left": 2315}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711917f.jpg"} -{"rects": [{"solidity": 0.9957539965709082, "top": 390, "right": 3230, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/726912f.jpg"} -{"rects": [{"solidity": 0.9957540235011876, "top": 650, "right": 5005, "bottom": 3595, "left": 1020}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730406f.jpg"} -{"rects": [{"solidity": 0.9957543447098426, "top": 785, "right": 2010, "bottom": 3210, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705949f.jpg"} -{"rects": [{"solidity": 0.9957543796925277, "top": 2270, "right": 3295, "bottom": 3935, "left": 850}, {"solidity": 0.9963968654979782, "top": 420, "right": 3305, "bottom": 2050, "left": 885}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707361f.jpg"} -{"rects": [{"solidity": 0.9957546479285609, "top": 405, "right": 3235, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714045f.jpg"} -{"rects": [{"solidity": 0.9957551353376684, "top": 805, "right": 3250, "bottom": 2130, "left": 1220}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507585.jpg"} -{"rects": [{"solidity": 0.995755466660745, "top": 2340, "right": 3095, "bottom": 3980, "left": 640}, {"solidity": 0.9955262195260124, "top": 425, "right": 3090, "bottom": 2065, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718743f.jpg"} -{"rects": [{"solidity": 0.9957562372398208, "top": 4110, "right": 3030, "bottom": 5755, "left": 590}, {"solidity": 0.9958364168731297, "top": 395, "right": 3080, "bottom": 2025, "left": 650}, {"solidity": 0.9959184211740968, "top": 2265, "right": 3060, "bottom": 3885, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701260f.jpg"} -{"rects": [{"solidity": 0.9957566172690058, "top": 435, "right": 3450, "bottom": 2870, "left": 245}], "shape": {"h": 6140, "w": 3910}, "file": "/usr/local/google/home/danvk/milstein/723462f.jpg"} -{"rects": [{"solidity": 0.9957568457399824, "top": 875, "right": 2020, "bottom": 3315, "left": 405}, {"solidity": 0.9963843945804797, "top": 880, "right": 3900, "bottom": 3305, "left": 2285}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728776f.jpg"} -{"rects": [{"solidity": 0.9957571612020624, "top": 445, "right": 3220, "bottom": 2065, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725833f.jpg"} -{"rects": [{"solidity": 0.9957571801566579, "top": 795, "right": 1995, "bottom": 3205, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720467f.jpg"} -{"rects": [{"solidity": 0.9957572735899126, "top": 2285, "right": 3080, "bottom": 3910, "left": 665}, {"solidity": 0.9954540738242847, "top": 4130, "right": 3075, "bottom": 5765, "left": 670}, {"solidity": 0.9954169198303966, "top": 415, "right": 3080, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700392f.jpg"} -{"rects": [{"solidity": 0.9957573186253712, "top": 395, "right": 3220, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705387f.jpg"} -{"rects": [{"solidity": 0.9957573465326996, "top": 2280, "right": 3015, "bottom": 3890, "left": 615}, {"solidity": 0.9954726790380027, "top": 400, "right": 2995, "bottom": 2000, "left": 625}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729468f.jpg"} -{"rects": [{"solidity": 0.9957574023462552, "top": 680, "right": 2750, "bottom": 2090, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726593f.jpg"} -{"rects": [{"solidity": 0.9957574448488208, "top": 2420, "right": 2475, "bottom": 3915, "left": 385}, {"solidity": 0.9952509147828082, "top": 710, "right": 2515, "bottom": 2220, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715999f.jpg"} -{"rects": [{"solidity": 0.9957574919347316, "top": 405, "right": 3170, "bottom": 2035, "left": 740}, {"solidity": 0.9958272847406212, "top": 3965, "right": 3125, "bottom": 5585, "left": 715}, {"solidity": 0.9744428550529105, "top": 2305, "right": 3050, "bottom": 3710, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730164f.jpg"} -{"rects": [{"solidity": 0.9957575186197793, "top": 405, "right": 3140, "bottom": 2015, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722008f.jpg"} -{"rects": [{"solidity": 0.9957577502639409, "top": 510, "right": 3015, "bottom": 1955, "left": 1185}, {"solidity": 0.9943100100240675, "top": 2360, "right": 3005, "bottom": 3785, "left": 1165}, {"solidity": 0.9956246213137062, "top": 4180, "right": 2960, "bottom": 5580, "left": 1135}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/727032f.jpg"} -{"rects": [{"solidity": 0.9957577665626779, "top": 820, "right": 2105, "bottom": 3255, "left": 450}, {"solidity": 0.9965435758701714, "top": 860, "right": 3935, "bottom": 3255, "left": 2335}, {"solidity": 0.9641282574850009, "top": 1180, "right": 5700, "bottom": 3190, "left": 4270}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712360f.jpg"} -{"rects": [{"solidity": 0.9957578808893508, "top": 750, "right": 2075, "bottom": 3160, "left": 450}, {"solidity": 0.9964249033448251, "top": 740, "right": 3840, "bottom": 3145, "left": 2235}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712582f.jpg"} -{"rects": [{"solidity": 0.9957579661449719, "top": 405, "right": 2355, "bottom": 1615, "left": 555}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715949f.jpg"} -{"rects": [{"solidity": 0.9957582459633614, "top": 400, "right": 3165, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732393f.jpg"} -{"rects": [{"solidity": 0.9957582598456188, "top": 690, "right": 3910, "bottom": 3110, "left": 2300}, {"solidity": 0.9966297765302747, "top": 690, "right": 5735, "bottom": 3105, "left": 4140}, {"solidity": 0.9388631627691595, "top": 770, "right": 2020, "bottom": 3060, "left": 530}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727311f.jpg"} -{"rects": [{"solidity": 0.9957586067233698, "top": 395, "right": 3165, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719592f.jpg"} -{"rects": [{"solidity": 0.9957589321654564, "top": 4060, "right": 3025, "bottom": 5680, "left": 600}, {"solidity": 0.997754426751382, "top": 370, "right": 3025, "bottom": 1960, "left": 630}, {"solidity": 0.996309695376731, "top": 2205, "right": 3020, "bottom": 3795, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728357f.jpg"} -{"rects": [{"solidity": 0.9957589752216088, "top": 635, "right": 2725, "bottom": 2010, "left": 915}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707018f.jpg"} -{"rects": [{"solidity": 0.995759269726595, "top": 500, "right": 5070, "bottom": 3710, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702101f.jpg"} -{"rects": [{"solidity": 0.9957592787880347, "top": 420, "right": 3195, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723329f.jpg"} -{"rects": [{"solidity": 0.995760036965449, "top": 780, "right": 2040, "bottom": 3190, "left": 425}, {"solidity": 0.9961782982167567, "top": 765, "right": 3890, "bottom": 3175, "left": 2275}, {"solidity": 0.9964050486761657, "top": 760, "right": 5710, "bottom": 3160, "left": 4105}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730423f.jpg"} -{"rects": [{"solidity": 0.9957601777451095, "top": 690, "right": 3190, "bottom": 2280, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708079f.jpg"} -{"rects": [{"solidity": 0.9957602101186412, "top": 195, "right": 3435, "bottom": 2105, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725548f.jpg"} -{"rects": [{"solidity": 0.9957602289947802, "top": 410, "right": 3160, "bottom": 1990, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706071f.jpg"} -{"rects": [{"solidity": 0.9957605766948323, "top": 925, "right": 2415, "bottom": 2445, "left": 405}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507689.jpg"} -{"rects": [{"solidity": 0.995760863638842, "top": 915, "right": 3445, "bottom": 1880, "left": 2480}, {"solidity": 0.9937936703658036, "top": 2155, "right": 2810, "bottom": 3095, "left": 1815}, {"solidity": 0.9924763662806959, "top": 910, "right": 4690, "bottom": 1860, "left": 3730}, {"solidity": 0.9937404227021713, "top": 2150, "right": 4165, "bottom": 3105, "left": 3235}, {"solidity": 0.9914196213737686, "top": 880, "right": 2245, "bottom": 1870, "left": 1370}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732959f.jpg"} -{"rects": [{"solidity": 0.9957609338500831, "top": 840, "right": 2150, "bottom": 3240, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710923f.jpg"} -{"rects": [{"solidity": 0.9957610609960619, "top": 910, "right": 3585, "bottom": 5015, "left": 295}], "shape": {"h": 6230, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/705158f.jpg"} -{"rects": [{"solidity": 0.9957611530802841, "top": 615, "right": 2630, "bottom": 3480, "left": 770}, {"solidity": 0.9946318720770022, "top": 620, "right": 5185, "bottom": 3460, "left": 3350}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705212f.jpg"} -{"rects": [{"solidity": 0.9957612139290752, "top": 430, "right": 3175, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720356f.jpg"} -{"rects": [{"solidity": 0.9957615126924266, "top": 425, "right": 3175, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/730218f.jpg"} -{"rects": [{"solidity": 0.9957619000176268, "top": 420, "right": 3565, "bottom": 2265, "left": 860}, {"solidity": 0.9951657718575635, "top": 2350, "right": 3200, "bottom": 4000, "left": 1135}], "shape": {"h": 6900, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/703413f.jpg"} -{"rects": [{"solidity": 0.9957620697914273, "top": 620, "right": 2700, "bottom": 2040, "left": 875}, {"solidity": 0.9956745623069001, "top": 2090, "right": 2705, "bottom": 3505, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703300f.jpg"} -{"rects": [{"solidity": 0.9957621841303137, "top": 410, "right": 3170, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706898f.jpg"} -{"rects": [{"solidity": 0.9957622145600918, "top": 285, "right": 3225, "bottom": 1940, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702173f.jpg"} -{"rects": [{"solidity": 0.995762268653685, "top": 955, "right": 3430, "bottom": 4945, "left": 295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717338f.jpg"} -{"rects": [{"solidity": 0.9957629028622943, "top": 2275, "right": 3335, "bottom": 3895, "left": 915}, {"solidity": 0.9960118254389256, "top": 450, "right": 3350, "bottom": 2070, "left": 930}, {"solidity": 0.995414734335856, "top": 4105, "right": 3320, "bottom": 5720, "left": 910}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726789f.jpg"} -{"rects": [{"solidity": 0.995762939305699, "top": 455, "right": 3315, "bottom": 2030, "left": 930}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725038f.jpg"} -{"rects": [{"solidity": 0.9957630279431291, "top": 715, "right": 2735, "bottom": 2130, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704260f.jpg"} -{"rects": [{"solidity": 0.9957631735816888, "top": 2275, "right": 3115, "bottom": 3920, "left": 695}, {"solidity": 0.9965566594783323, "top": 395, "right": 3130, "bottom": 2030, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710614f.jpg"} -{"rects": [{"solidity": 0.9957632077900799, "top": 410, "right": 3190, "bottom": 2015, "left": 800}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/701135f.jpg"} -{"rects": [{"solidity": 0.9957632852420566, "top": 510, "right": 2380, "bottom": 2940, "left": 730}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700451f.jpg"} -{"rects": [{"solidity": 0.995763529715813, "top": 320, "right": 3160, "bottom": 1925, "left": 755}, {"solidity": 0.996443849565651, "top": 2180, "right": 3150, "bottom": 3790, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724559f.jpg"} -{"rects": [{"solidity": 0.9957636007347185, "top": 605, "right": 2585, "bottom": 1975, "left": 780}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704153f.jpg"} -{"rects": [{"solidity": 0.995763833730474, "top": 2240, "right": 3175, "bottom": 3835, "left": 780}, {"solidity": 0.9963695295487413, "top": 420, "right": 3175, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700326f.jpg"} -{"rects": [{"solidity": 0.9957638980751423, "top": 390, "right": 3160, "bottom": 2100, "left": 765}, {"solidity": 0.9956575442930482, "top": 2340, "right": 3165, "bottom": 3965, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701062f.jpg"} -{"rects": [{"solidity": 0.9957639347626713, "top": 770, "right": 2050, "bottom": 3205, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719769f.jpg"} -{"rects": [{"solidity": 0.9957639970075015, "top": 520, "right": 3150, "bottom": 2115, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724914f.jpg"} -{"rects": [{"solidity": 0.9957642219303336, "top": 540, "right": 5050, "bottom": 3685, "left": 1105}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705961f.jpg"} -{"rects": [{"solidity": 0.9957644244608849, "top": 430, "right": 5075, "bottom": 3665, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720972f.jpg"} -{"rects": [{"solidity": 0.9957645523235432, "top": 715, "right": 3500, "bottom": 2745, "left": 680}, {"solidity": 0.9966883010296655, "top": 3035, "right": 3490, "bottom": 5105, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713442f.jpg"} -{"rects": [{"solidity": 0.9957650622618885, "top": 480, "right": 3130, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714635f.jpg"} -{"rects": [{"solidity": 0.9957653213467167, "top": 395, "right": 3245, "bottom": 2045, "left": 800}, {"solidity": 0.9944749953150545, "top": 2275, "right": 3200, "bottom": 3895, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734024f.jpg"} -{"rects": [{"solidity": 0.9957653641275883, "top": 405, "right": 3145, "bottom": 2070, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705502f.jpg"} -{"rects": [{"solidity": 0.9957655162664576, "top": 2235, "right": 3215, "bottom": 3845, "left": 775}, {"solidity": 0.9940491890813878, "top": 425, "right": 3225, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702001f.jpg"} -{"rects": [{"solidity": 0.9957655456240756, "top": 440, "right": 3155, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700408f.jpg"} -{"rects": [{"solidity": 0.9957656251003978, "top": 885, "right": 3885, "bottom": 3305, "left": 2255}, {"solidity": 0.9973943141601525, "top": 875, "right": 2040, "bottom": 3285, "left": 425}, {"solidity": 0.9965774128751682, "top": 900, "right": 5710, "bottom": 3310, "left": 4100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716710f.jpg"} -{"rects": [{"solidity": 0.995765750677437, "top": 680, "right": 2565, "bottom": 2145, "left": 525}, {"solidity": 0.9955026547436077, "top": 2360, "right": 2540, "bottom": 3795, "left": 515}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509021.jpg"} -{"rects": [{"solidity": 0.9957657810012157, "top": 375, "right": 3235, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706675f.jpg"} -{"rects": [{"solidity": 0.9957659245294618, "top": 455, "right": 3555, "bottom": 2265, "left": 840}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711695f.jpg"} -{"rects": [{"solidity": 0.9957659387509357, "top": 2185, "right": 3180, "bottom": 3825, "left": 800}, {"solidity": 0.9968904551781325, "top": 355, "right": 3190, "bottom": 1965, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732044f.jpg"} -{"rects": [{"solidity": 0.9957659994236439, "top": 955, "right": 2465, "bottom": 3650, "left": 355}], "shape": {"h": 4585, "w": 2945}, "file": "/usr/local/google/home/danvk/milstein/721629f.jpg"} -{"rects": [{"solidity": 0.9957660037290242, "top": 710, "right": 2680, "bottom": 2140, "left": 825}, {"solidity": 0.9946563280711447, "top": 2160, "right": 2635, "bottom": 3585, "left": 805}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704407f.jpg"} -{"rects": [{"solidity": 0.9957662244769282, "top": 735, "right": 3365, "bottom": 2765, "left": 340}, {"solidity": 0.9962344914149622, "top": 3210, "right": 3145, "bottom": 4830, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715549f.jpg"} -{"rects": [{"solidity": 0.9957662746184207, "top": 725, "right": 1985, "bottom": 3135, "left": 400}, {"solidity": 0.9970375684148999, "top": 740, "right": 3840, "bottom": 3120, "left": 2245}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711730f.jpg"} -{"rects": [{"solidity": 0.9957665966460895, "top": 2235, "right": 3190, "bottom": 3850, "left": 755}, {"solidity": 0.9963457730933161, "top": 405, "right": 3175, "bottom": 2015, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734504f.jpg"} -{"rects": [{"solidity": 0.9957666534000981, "top": 460, "right": 4890, "bottom": 3360, "left": 1115}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722765f.jpg"} -{"rects": [{"solidity": 0.9957668364459535, "top": 780, "right": 2040, "bottom": 3195, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719687f.jpg"} -{"rects": [{"solidity": 0.995766997259559, "top": 645, "right": 2520, "bottom": 2135, "left": 420}, {"solidity": 0.9977213501716147, "top": 2395, "right": 2500, "bottom": 3875, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716172f.jpg"} -{"rects": [{"solidity": 0.9957670538886602, "top": 1215, "right": 5580, "bottom": 2860, "left": 3145}, {"solidity": 0.9962225069541721, "top": 1210, "right": 2890, "bottom": 2850, "left": 545}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730779f.jpg"} -{"rects": [{"solidity": 0.995767065435464, "top": 810, "right": 1915, "bottom": 3220, "left": 295}, {"solidity": 0.9967240102610213, "top": 875, "right": 5495, "bottom": 3260, "left": 3895}, {"solidity": 0.9953352287878731, "top": 885, "right": 3635, "bottom": 3180, "left": 2170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709750f.jpg"} -{"rects": [{"solidity": 0.9957672131147541, "top": 2305, "right": 3205, "bottom": 3910, "left": 800}, {"solidity": 0.995505052678267, "top": 440, "right": 3200, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723747f.jpg"} -{"rects": [{"solidity": 0.9957673746559198, "top": 2185, "right": 3190, "bottom": 3820, "left": 755}, {"solidity": 0.9957204541819926, "top": 4010, "right": 3185, "bottom": 5635, "left": 760}, {"solidity": 0.9962140495814511, "top": 410, "right": 3220, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703896f.jpg"} -{"rects": [{"solidity": 0.9957677813961523, "top": 870, "right": 2020, "bottom": 3305, "left": 385}, {"solidity": 0.9969361762195944, "top": 880, "right": 3855, "bottom": 3300, "left": 2220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732844f.jpg"} -{"rects": [{"solidity": 0.9957679392536004, "top": 810, "right": 2035, "bottom": 3210, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700427f.jpg"} -{"rects": [{"solidity": 0.9957680474601794, "top": 2155, "right": 3085, "bottom": 3765, "left": 660}, {"solidity": 0.9953753285950735, "top": 395, "right": 3115, "bottom": 2010, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726062f.jpg"} -{"rects": [{"solidity": 0.9957680886412098, "top": 395, "right": 3190, "bottom": 2005, "left": 765}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706480f.jpg"} -{"rects": [{"solidity": 0.9957681838952576, "top": 2155, "right": 2885, "bottom": 3565, "left": 1080}, {"solidity": 0.9952387895363979, "top": 515, "right": 2890, "bottom": 1910, "left": 1085}, {"solidity": 0.9973252279635259, "top": 2175, "right": 5225, "bottom": 3565, "left": 3435}, {"solidity": 0.9611570856247569, "top": 520, "right": 5250, "bottom": 1920, "left": 3415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725622f.jpg"} -{"rects": [{"solidity": 0.9957682603557855, "top": 2235, "right": 3215, "bottom": 3875, "left": 770}, {"solidity": 0.9965072714303157, "top": 375, "right": 3235, "bottom": 2000, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725538f.jpg"} -{"rects": [{"solidity": 0.9957683059830477, "top": 2070, "right": 3030, "bottom": 3720, "left": 580}, {"solidity": 0.9946201899211563, "top": 3870, "right": 3000, "bottom": 5510, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734145f.jpg"} -{"rects": [{"solidity": 0.9957683364092591, "top": 1820, "right": 2825, "bottom": 4255, "left": 1185}, {"solidity": 0.9971543462062232, "top": 150, "right": 3165, "bottom": 1780, "left": 750}, {"solidity": 0.9980164947521103, "top": 4365, "right": 3180, "bottom": 5980, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715580f.jpg"} -{"rects": [{"solidity": 0.9957684702730206, "top": 845, "right": 2025, "bottom": 3270, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729866f.jpg"} -{"rects": [{"solidity": 0.9957685941587912, "top": 565, "right": 2785, "bottom": 2950, "left": 1200}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708098f.jpg"} -{"rects": [{"solidity": 0.9957686928490909, "top": 900, "right": 1995, "bottom": 3325, "left": 370}, {"solidity": 0.9896515895493624, "top": 1070, "right": 3680, "bottom": 3095, "left": 2180}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718844f.jpg"} -{"rects": [{"solidity": 0.995768840250866, "top": 375, "right": 3110, "bottom": 2005, "left": 695}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715586f.jpg"} -{"rects": [{"solidity": 0.9957688737914423, "top": 560, "right": 3355, "bottom": 2670, "left": 1740}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507789.jpg"} -{"rects": [{"solidity": 0.995769094453305, "top": 2260, "right": 3160, "bottom": 3900, "left": 715}, {"solidity": 0.99677386251395, "top": 435, "right": 3160, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731088f.jpg"} -{"rects": [{"solidity": 0.9957691751370826, "top": 425, "right": 3180, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703176f.jpg"} -{"rects": [{"solidity": 0.9957693255565596, "top": 2605, "right": 3475, "bottom": 4275, "left": 1025}, {"solidity": 0.9973189750970359, "top": 710, "right": 3490, "bottom": 2335, "left": 1055}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706184f.jpg"} -{"rects": [{"solidity": 0.9957693902944836, "top": 445, "right": 3630, "bottom": 2270, "left": 930}], "shape": {"h": 6920, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711184f.jpg"} -{"rects": [{"solidity": 0.9957695330325002, "top": 4125, "right": 3105, "bottom": 5780, "left": 645}, {"solidity": 0.9969987647649193, "top": 445, "right": 3095, "bottom": 2075, "left": 680}, {"solidity": 0.9955236377689037, "top": 2305, "right": 3095, "bottom": 3930, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728943f.jpg"} -{"rects": [{"solidity": 0.9957695432912437, "top": 390, "right": 3215, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715649f.jpg"} -{"rects": [{"solidity": 0.9957696094199296, "top": 480, "right": 5035, "bottom": 3700, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721455f.jpg"} -{"rects": [{"solidity": 0.9957697229798731, "top": 405, "right": 3185, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733665f.jpg"} -{"rects": [{"solidity": 0.9957698404208766, "top": 2225, "right": 3165, "bottom": 3850, "left": 745}, {"solidity": 0.9959370601867652, "top": 400, "right": 3170, "bottom": 2025, "left": 755}, {"solidity": 0.9950691361074454, "top": 4045, "right": 3145, "bottom": 5680, "left": 725}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/732163f.jpg"} -{"rects": [{"solidity": 0.9957703740153543, "top": 550, "right": 5115, "bottom": 3670, "left": 1080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732262f.jpg"} -{"rects": [{"solidity": 0.9957703927492447, "top": 385, "right": 3120, "bottom": 2025, "left": 700}, {"solidity": 0.9972727418398577, "top": 2265, "right": 3125, "bottom": 3900, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/715403f.jpg"} -{"rects": [{"solidity": 0.9957704570291974, "top": 395, "right": 3145, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728581f.jpg"} -{"rects": [{"solidity": 0.995770632994193, "top": 790, "right": 3765, "bottom": 3220, "left": 2130}, {"solidity": 0.9964139377215158, "top": 765, "right": 1930, "bottom": 3190, "left": 305}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711499f.jpg"} -{"rects": [{"solidity": 0.9957708315457915, "top": 1170, "right": 3260, "bottom": 4995, "left": 595}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708450f.jpg"} -{"rects": [{"solidity": 0.9957708527769743, "top": 465, "right": 5070, "bottom": 3655, "left": 1085}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721505f.jpg"} -{"rects": [{"solidity": 0.9957710315662287, "top": 570, "right": 2585, "bottom": 3660, "left": 535}, {"solidity": 0.9966591641473705, "top": 650, "right": 5175, "bottom": 3675, "left": 3135}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711031f.jpg"} -{"rects": [{"solidity": 0.9957710503393976, "top": 455, "right": 4970, "bottom": 3685, "left": 860}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730124f.jpg"} -{"rects": [{"solidity": 0.9957713496845446, "top": 755, "right": 2010, "bottom": 3180, "left": 385}, {"solidity": 0.9974598411413605, "top": 755, "right": 3850, "bottom": 3155, "left": 2255}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725950f.jpg"} -{"rects": [{"solidity": 0.9957715434226274, "top": 400, "right": 3350, "bottom": 2315, "left": 540}, {"solidity": 0.9939323322084377, "top": 2450, "right": 2915, "bottom": 3880, "left": 1055}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704489f.jpg"} -{"rects": [{"solidity": 0.9957716017405719, "top": 415, "right": 3085, "bottom": 2035, "left": 660}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728994f.jpg"} -{"rects": [{"solidity": 0.9957716421669339, "top": 360, "right": 3415, "bottom": 2365, "left": 555}, {"solidity": 0.9944115228763951, "top": 2540, "right": 3230, "bottom": 4135, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725623f.jpg"} -{"rects": [{"solidity": 0.9957717602054185, "top": 395, "right": 3150, "bottom": 2010, "left": 760}], "shape": {"h": 6045, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728142f.jpg"} -{"rects": [{"solidity": 0.995771766458399, "top": 2250, "right": 3155, "bottom": 3860, "left": 740}, {"solidity": 0.995605560868349, "top": 4050, "right": 3145, "bottom": 5670, "left": 730}, {"solidity": 0.999695238844267, "top": 450, "right": 3160, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723249f.jpg"} -{"rects": [{"solidity": 0.9957722096260553, "top": 445, "right": 3120, "bottom": 2065, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729273f.jpg"} -{"rects": [{"solidity": 0.99577275974206, "top": 2315, "right": 3160, "bottom": 3930, "left": 745}, {"solidity": 0.9964463979248274, "top": 390, "right": 3150, "bottom": 2010, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710473f.jpg"} -{"rects": [{"solidity": 0.9957729023828662, "top": 305, "right": 3155, "bottom": 1950, "left": 720}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/718838f.jpg"} -{"rects": [{"solidity": 0.995773152702163, "top": 880, "right": 2025, "bottom": 3295, "left": 400}, {"solidity": 0.9948989550665608, "top": 890, "right": 3920, "bottom": 3300, "left": 2305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700736f.jpg"} -{"rects": [{"solidity": 0.9957735179868266, "top": 980, "right": 1975, "bottom": 2940, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703358f.jpg"} -{"rects": [{"solidity": 0.9957739350070516, "top": 665, "right": 2685, "bottom": 2075, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705649f.jpg"} -{"rects": [{"solidity": 0.9957740459188329, "top": 635, "right": 2690, "bottom": 2065, "left": 850}, {"solidity": 0.9979846971983434, "top": 2120, "right": 2700, "bottom": 3545, "left": 865}, {"solidity": 0.9972751643706951, "top": 625, "right": 5300, "bottom": 2045, "left": 3485}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706035f.jpg"} -{"rects": [{"solidity": 0.9957741593345385, "top": 770, "right": 2100, "bottom": 3155, "left": 515}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709067f.jpg"} -{"rects": [{"solidity": 0.9957744644833648, "top": 695, "right": 5685, "bottom": 3120, "left": 4065}, {"solidity": 0.9911116384147276, "top": 520, "right": 2315, "bottom": 1935, "left": 500}, {"solidity": 0.991340429370377, "top": 980, "right": 3880, "bottom": 2825, "left": 2485}, {"solidity": 0.99626136029747, "top": 2140, "right": 2285, "bottom": 3545, "left": 515}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704353f.jpg"} -{"rects": [{"solidity": 0.9957745881447015, "top": 490, "right": 3195, "bottom": 2095, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710077f.jpg"} -{"rects": [{"solidity": 0.9957746660727312, "top": 365, "right": 3285, "bottom": 2000, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725033f.jpg"} -{"rects": [{"solidity": 0.9957747067196623, "top": 750, "right": 3825, "bottom": 3180, "left": 2180}, {"solidity": 0.9972277882613855, "top": 745, "right": 2000, "bottom": 3155, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733333f.jpg"} -{"rects": [{"solidity": 0.9957751396648045, "top": 2270, "right": 3070, "bottom": 3925, "left": 615}, {"solidity": 0.9983468700633487, "top": 430, "right": 3080, "bottom": 2050, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730586f.jpg"} -{"rects": [{"solidity": 0.9957753823340096, "top": 620, "right": 2475, "bottom": 2100, "left": 385}, {"solidity": 0.9968879753003513, "top": 2480, "right": 2465, "bottom": 3955, "left": 370}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716046f.jpg"} -{"rects": [{"solidity": 0.9957754390978079, "top": 870, "right": 3915, "bottom": 3295, "left": 2300}, {"solidity": 0.9959930484965734, "top": 855, "right": 2050, "bottom": 3265, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730257f.jpg"} -{"rects": [{"solidity": 0.9957754685830824, "top": 440, "right": 3100, "bottom": 1840, "left": 1045}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/700816f.jpg"} -{"rects": [{"solidity": 0.9957755419775282, "top": 445, "right": 5005, "bottom": 3655, "left": 1005}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722268f.jpg"} -{"rects": [{"solidity": 0.9957755719697772, "top": 445, "right": 3090, "bottom": 1770, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718872f.jpg"} -{"rects": [{"solidity": 0.9957757999352669, "top": 495, "right": 5010, "bottom": 3585, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721388f.jpg"} -{"rects": [{"solidity": 0.9957759025296693, "top": 860, "right": 3785, "bottom": 3295, "left": 2135}, {"solidity": 0.9956628305225056, "top": 840, "right": 1960, "bottom": 3245, "left": 320}, {"solidity": 0.996243660770668, "top": 885, "right": 5635, "bottom": 3285, "left": 4010}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724811f.jpg"} -{"rects": [{"solidity": 0.9957759031143558, "top": 440, "right": 1775, "bottom": 1335, "left": 615}, {"solidity": 0.9915679354676078, "top": 435, "right": 3325, "bottom": 1325, "left": 2175}], "shape": {"h": 2545, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727108f.jpg"} -{"rects": [{"solidity": 0.9957762100674517, "top": 780, "right": 2040, "bottom": 3205, "left": 425}, {"solidity": 0.9973834705284224, "top": 790, "right": 3880, "bottom": 3205, "left": 2270}, {"solidity": 0.9962388401998525, "top": 795, "right": 5710, "bottom": 3205, "left": 4110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733986f.jpg"} -{"rects": [{"solidity": 0.9957762397726915, "top": 2195, "right": 2765, "bottom": 3690, "left": 885}, {"solidity": 0.9962472621754719, "top": 630, "right": 2775, "bottom": 2090, "left": 915}, {"solidity": 0.9959785848703373, "top": 2290, "right": 5160, "bottom": 3710, "left": 3325}, {"solidity": 0.9919414894928662, "top": 640, "right": 5140, "bottom": 2075, "left": 3330}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726255f.jpg"} -{"rects": [{"solidity": 0.9957765165337121, "top": 3535, "right": 3740, "bottom": 5725, "left": 635}, {"solidity": 0.996640121807362, "top": 705, "right": 3735, "bottom": 2890, "left": 655}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710278f.jpg"} -{"rects": [{"solidity": 0.9957765559008686, "top": 740, "right": 2575, "bottom": 3340, "left": 755}, {"solidity": 0.9967332808610573, "top": 835, "right": 4510, "bottom": 3265, "left": 2885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710022f.jpg"} -{"rects": [{"solidity": 0.9957765922214534, "top": 450, "right": 3155, "bottom": 2055, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724151f.jpg"} -{"rects": [{"solidity": 0.9957767605951162, "top": 385, "right": 3215, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720745f.jpg"} -{"rects": [{"solidity": 0.995776820212749, "top": 2260, "right": 3100, "bottom": 3905, "left": 660}, {"solidity": 0.9939997385645921, "top": 385, "right": 3135, "bottom": 2025, "left": 670}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/718795f.jpg"} -{"rects": [{"solidity": 0.9957768571773318, "top": 865, "right": 2950, "bottom": 2085, "left": 1130}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1510009.jpg"} -{"rects": [{"solidity": 0.9957768744354111, "top": 715, "right": 3910, "bottom": 3135, "left": 2285}, {"solidity": 0.9970530832762476, "top": 735, "right": 2035, "bottom": 3150, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722519f.jpg"} -{"rects": [{"solidity": 0.9957769475218375, "top": 815, "right": 3835, "bottom": 3225, "left": 2225}, {"solidity": 0.9692225623898321, "top": 1565, "right": 1860, "bottom": 3130, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730109f.jpg"} -{"rects": [{"solidity": 0.9957769507779037, "top": 745, "right": 2680, "bottom": 2145, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725603f.jpg"} -{"rects": [{"solidity": 0.9957772646094869, "top": 780, "right": 3915, "bottom": 3180, "left": 2305}, {"solidity": 0.9936985053343192, "top": 795, "right": 2045, "bottom": 3185, "left": 440}, {"solidity": 0.9957098361635575, "top": 785, "right": 5780, "bottom": 3170, "left": 4190}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724264f.jpg"} -{"rects": [{"solidity": 0.9957772907071428, "top": 4130, "right": 3125, "bottom": 5750, "left": 695}, {"solidity": 0.9977595025181102, "top": 2290, "right": 3125, "bottom": 3890, "left": 715}, {"solidity": 0.9988167714385812, "top": 445, "right": 3125, "bottom": 2030, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734379f.jpg"} -{"rects": [{"solidity": 0.9957773375104509, "top": 2210, "right": 3175, "bottom": 3820, "left": 755}, {"solidity": 0.9978814321257279, "top": 400, "right": 3165, "bottom": 2005, "left": 765}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/718831f.jpg"} -{"rects": [{"solidity": 0.9957773695636615, "top": 2090, "right": 2720, "bottom": 3525, "left": 875}, {"solidity": 0.9962949614358827, "top": 625, "right": 2705, "bottom": 2055, "left": 865}, {"solidity": 0.9980907245070532, "top": 615, "right": 5290, "bottom": 2045, "left": 3470}, {"solidity": 0.996971651432545, "top": 2095, "right": 5285, "bottom": 3485, "left": 3480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705276f.jpg"} -{"rects": [{"solidity": 0.9957774815173919, "top": 690, "right": 2720, "bottom": 2115, "left": 895}, {"solidity": 0.9957261419376203, "top": 2195, "right": 2720, "bottom": 3550, "left": 915}, {"solidity": 0.9974413646055437, "top": 670, "right": 5195, "bottom": 1800, "left": 3415}, {"solidity": 0.9947037155568943, "top": 2160, "right": 5190, "bottom": 3290, "left": 3410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706774f.jpg"} -{"rects": [{"solidity": 0.9957775396954389, "top": 755, "right": 2010, "bottom": 3145, "left": 420}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730363f.jpg"} -{"rects": [{"solidity": 0.9957777122817243, "top": 425, "right": 3225, "bottom": 2020, "left": 810}, {"solidity": 0.9953908008899146, "top": 4070, "right": 3225, "bottom": 5650, "left": 830}, {"solidity": 0.9950578688306505, "top": 2255, "right": 3215, "bottom": 3840, "left": 815}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/731024f.jpg"} -{"rects": [{"solidity": 0.9957777505813242, "top": 820, "right": 1925, "bottom": 3180, "left": 355}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718606f.jpg"} -{"rects": [{"solidity": 0.9957778312647615, "top": 490, "right": 5110, "bottom": 3725, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701013f.jpg"} -{"rects": [{"solidity": 0.9957778395706884, "top": 870, "right": 2025, "bottom": 3310, "left": 405}, {"solidity": 0.9982960314021689, "top": 870, "right": 3910, "bottom": 3280, "left": 2295}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719554f.jpg"} -{"rects": [{"solidity": 0.9957779479723765, "top": 410, "right": 3220, "bottom": 2025, "left": 800}, {"solidity": 0.9951573220315847, "top": 2245, "right": 3215, "bottom": 3850, "left": 790}, {"solidity": 0.9960066870849142, "top": 4080, "right": 3205, "bottom": 5680, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733897f.jpg"} -{"rects": [{"solidity": 0.9957783279896855, "top": 1670, "right": 2365, "bottom": 2895, "left": 550}, {"solidity": 0.9946907338061629, "top": 315, "right": 2380, "bottom": 1540, "left": 565}], "shape": {"h": 4665, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715918f.jpg"} -{"rects": [{"solidity": 0.9957783489151413, "top": 860, "right": 5755, "bottom": 3295, "left": 4125}, {"solidity": 0.9966782872862252, "top": 830, "right": 3885, "bottom": 3245, "left": 2270}, {"solidity": 0.9972296008995649, "top": 835, "right": 2025, "bottom": 3245, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734411f.jpg"} -{"rects": [{"solidity": 0.995778352452313, "top": 620, "right": 2095, "bottom": 1790, "left": 130}, {"solidity": 0.995155910079768, "top": 2175, "right": 2040, "bottom": 3320, "left": 130}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717758f.jpg"} -{"rects": [{"solidity": 0.9957784745379904, "top": 485, "right": 3100, "bottom": 2080, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712271f.jpg"} -{"rects": [{"solidity": 0.9957784942158164, "top": 3665, "right": 3000, "bottom": 5295, "left": 950}, {"solidity": 0.993823157874513, "top": 1935, "right": 2900, "bottom": 3370, "left": 1050}, {"solidity": 0.9948616813557332, "top": 275, "right": 2895, "bottom": 1700, "left": 1060}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720698f.jpg"} -{"rects": [{"solidity": 0.9957785082307573, "top": 465, "right": 3095, "bottom": 2080, "left": 695}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/711154f.jpg"} -{"rects": [{"solidity": 0.9957788471929969, "top": 2205, "right": 3140, "bottom": 3860, "left": 690}, {"solidity": 0.9979169756808522, "top": 400, "right": 3140, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703273f.jpg"} -{"rects": [{"solidity": 0.9957789171110556, "top": 665, "right": 2755, "bottom": 2080, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704447f.jpg"} -{"rects": [{"solidity": 0.9957792342143041, "top": 830, "right": 3905, "bottom": 3265, "left": 2260}, {"solidity": 0.9964230345070085, "top": 810, "right": 2060, "bottom": 3240, "left": 425}, {"solidity": 0.9961881953477263, "top": 870, "right": 5730, "bottom": 3305, "left": 4110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713336f.jpg"} -{"rects": [{"solidity": 0.9957793157695315, "top": 520, "right": 3380, "bottom": 2455, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713066f.jpg"} -{"rects": [{"solidity": 0.9957794444390542, "top": 845, "right": 2000, "bottom": 3265, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725435f.jpg"} -{"rects": [{"solidity": 0.9957796002102545, "top": 220, "right": 3195, "bottom": 2175, "left": 655}], "shape": {"h": 2555, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/727172f.jpg"} -{"rects": [{"solidity": 0.9957796623729899, "top": 690, "right": 2605, "bottom": 2095, "left": 805}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728009f.jpg"} -{"rects": [{"solidity": 0.995779670583406, "top": 2230, "right": 3130, "bottom": 3850, "left": 700}, {"solidity": 0.9969311111827471, "top": 400, "right": 3135, "bottom": 2015, "left": 710}, {"solidity": 0.9951481193723827, "top": 4090, "right": 3105, "bottom": 5720, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733643f.jpg"} -{"rects": [{"solidity": 0.9957798499213192, "top": 460, "right": 2940, "bottom": 2075, "left": 530}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707816f.jpg"} -{"rects": [{"solidity": 0.9957799425502685, "top": 450, "right": 4565, "bottom": 3740, "left": 1495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718909f.jpg"} -{"rects": [{"solidity": 0.9957800532392664, "top": 370, "right": 3065, "bottom": 1985, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728478f.jpg"} -{"rects": [{"solidity": 0.9957802370675065, "top": 615, "right": 3875, "bottom": 3040, "left": 2255}, {"solidity": 0.9960965684904348, "top": 615, "right": 2030, "bottom": 3030, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726445f.jpg"} -{"rects": [{"solidity": 0.9957802643980955, "top": 665, "right": 2700, "bottom": 2100, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703125f.jpg"} -{"rects": [{"solidity": 0.9957804437440544, "top": 655, "right": 4900, "bottom": 3460, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702891f.jpg"} -{"rects": [{"solidity": 0.9957804440958484, "top": 495, "right": 2970, "bottom": 1915, "left": 1180}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726507f.jpg"} -{"rects": [{"solidity": 0.9957807374070023, "top": 400, "right": 3240, "bottom": 2045, "left": 785}, {"solidity": 0.9951876743796587, "top": 2265, "right": 3225, "bottom": 3925, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725802f.jpg"} -{"rects": [{"solidity": 0.9957808436314715, "top": 745, "right": 1995, "bottom": 3135, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718841f.jpg"} -{"rects": [{"solidity": 0.9957808490339828, "top": 480, "right": 3050, "bottom": 1860, "left": 1260}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726777f.jpg"} -{"rects": [{"solidity": 0.9957809818166709, "top": 385, "right": 3130, "bottom": 2040, "left": 700}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702387f.jpg"} -{"rects": [{"solidity": 0.9957810743772707, "top": 2275, "right": 3210, "bottom": 3920, "left": 780}, {"solidity": 0.9960409211414172, "top": 450, "right": 3210, "bottom": 2075, "left": 785}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/732141f.jpg"} -{"rects": [{"solidity": 0.9957813941425396, "top": 760, "right": 3860, "bottom": 3165, "left": 2260}, {"solidity": 0.9991130326862632, "top": 795, "right": 1995, "bottom": 3155, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717570f.jpg"} -{"rects": [{"solidity": 0.9957815488336095, "top": 365, "right": 3045, "bottom": 1995, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734318f.jpg"} -{"rects": [{"solidity": 0.9957816480808587, "top": 4095, "right": 3200, "bottom": 5730, "left": 770}, {"solidity": 0.9952742936371854, "top": 2260, "right": 3185, "bottom": 3885, "left": 750}, {"solidity": 0.9951867751069965, "top": 425, "right": 3165, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734694f.jpg"} -{"rects": [{"solidity": 0.9957816649049989, "top": 415, "right": 3235, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724514f.jpg"} -{"rects": [{"solidity": 0.9957818753845471, "top": 925, "right": 5735, "bottom": 3370, "left": 4095}, {"solidity": 0.9960464637098851, "top": 925, "right": 3865, "bottom": 3355, "left": 2250}, {"solidity": 0.9956349310227481, "top": 935, "right": 2000, "bottom": 3345, "left": 400}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729002f.jpg"} -{"rects": [{"solidity": 0.995781980604569, "top": 1025, "right": 4905, "bottom": 2610, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717714f.jpg"} -{"rects": [{"solidity": 0.9957822172109951, "top": 2260, "right": 3200, "bottom": 3890, "left": 775}, {"solidity": 0.9966768816995746, "top": 370, "right": 3190, "bottom": 1995, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733536f.jpg"} -{"rects": [{"solidity": 0.995782453984589, "top": 2310, "right": 3225, "bottom": 3940, "left": 795}, {"solidity": 0.9960745544828652, "top": 445, "right": 3240, "bottom": 2070, "left": 810}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727561f.jpg"} -{"rects": [{"solidity": 0.9957825195758925, "top": 705, "right": 2710, "bottom": 2115, "left": 890}, {"solidity": 0.9940501382887627, "top": 2180, "right": 2705, "bottom": 3600, "left": 900}, {"solidity": 0.9946511863719326, "top": 695, "right": 5285, "bottom": 2055, "left": 3445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725098f.jpg"} -{"rects": [{"solidity": 0.9957825580163188, "top": 720, "right": 4055, "bottom": 2070, "left": 525}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727371f.jpg"} -{"rects": [{"solidity": 0.9957826752298442, "top": 315, "right": 3990, "bottom": 2740, "left": 950}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715992f.jpg"} -{"rects": [{"solidity": 0.9957826789851816, "top": 575, "right": 4870, "bottom": 3530, "left": 1215}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710370f.jpg"} -{"rects": [{"solidity": 0.995782794852529, "top": 780, "right": 3220, "bottom": 2715, "left": 485}, {"solidity": 0.9971079014361183, "top": 3335, "right": 3195, "bottom": 5260, "left": 495}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717775f.jpg"} -{"rects": [{"solidity": 0.9957829903453856, "top": 615, "right": 2745, "bottom": 3605, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708988f.jpg"} -{"rects": [{"solidity": 0.9957831425390865, "top": 770, "right": 2020, "bottom": 3170, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703017f.jpg"} -{"rects": [{"solidity": 0.9957831592697574, "top": 375, "right": 3210, "bottom": 2025, "left": 770}, {"solidity": 0.9949672392759196, "top": 2200, "right": 3180, "bottom": 3845, "left": 740}, {"solidity": 0.9918442658397747, "top": 4050, "right": 3155, "bottom": 5705, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721948f.jpg"} -{"rects": [{"solidity": 0.995783203885138, "top": 505, "right": 3195, "bottom": 2085, "left": 835}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/710225f.jpg"} -{"rects": [{"solidity": 0.9957832295723531, "top": 565, "right": 2680, "bottom": 2015, "left": 820}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703790f.jpg"} -{"rects": [{"solidity": 0.9957834205636867, "top": 385, "right": 3145, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729570f.jpg"} -{"rects": [{"solidity": 0.9957835173272597, "top": 3350, "right": 3125, "bottom": 4975, "left": 705}, {"solidity": 0.9966164023609259, "top": 1350, "right": 3110, "bottom": 2950, "left": 720}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/731071f.jpg"} -{"rects": [{"solidity": 0.9957835833671658, "top": 650, "right": 2600, "bottom": 2080, "left": 795}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726459f.jpg"} -{"rects": [{"solidity": 0.9957836104859211, "top": 835, "right": 3990, "bottom": 3250, "left": 2370}, {"solidity": 0.9962198082050058, "top": 845, "right": 2070, "bottom": 3235, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711939f.jpg"} -{"rects": [{"solidity": 0.9957836412960025, "top": 785, "right": 2080, "bottom": 3205, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719481f.jpg"} -{"rects": [{"solidity": 0.9957839107123027, "top": 430, "right": 5150, "bottom": 3715, "left": 1045}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732902f.jpg"} -{"rects": [{"solidity": 0.9957840629985061, "top": 2245, "right": 3235, "bottom": 3905, "left": 790}, {"solidity": 0.995221792487435, "top": 4110, "right": 3210, "bottom": 5745, "left": 765}, {"solidity": 0.9957665655777764, "top": 385, "right": 3250, "bottom": 2000, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725202f.jpg"} -{"rects": [{"solidity": 0.9957840630542218, "top": 1370, "right": 3150, "bottom": 4765, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700198f.jpg"} -{"rects": [{"solidity": 0.9957840705923063, "top": 585, "right": 1540, "bottom": 2390, "left": 325}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716316f.jpg"} -{"rects": [{"solidity": 0.9957842257322738, "top": 445, "right": 3180, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723254f.jpg"} -{"rects": [{"solidity": 0.9957848969065485, "top": 760, "right": 3875, "bottom": 3185, "left": 2260}, {"solidity": 0.9966655191068706, "top": 765, "right": 2000, "bottom": 3170, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714121f.jpg"} -{"rects": [{"solidity": 0.9957849087149634, "top": 450, "right": 2935, "bottom": 2005, "left": 990}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701258f.jpg"} -{"rects": [{"solidity": 0.995785165740001, "top": 455, "right": 3845, "bottom": 2540, "left": 2355}, {"solidity": 0.9935311713361012, "top": 470, "right": 2125, "bottom": 2565, "left": 605}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716205f.jpg"} -{"rects": [{"solidity": 0.9957853642721817, "top": 820, "right": 2150, "bottom": 3180, "left": 560}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711609f.jpg"} -{"rects": [{"solidity": 0.9957854256942552, "top": 300, "right": 5065, "bottom": 3650, "left": 985}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732018f.jpg"} -{"rects": [{"solidity": 0.9957859006070424, "top": 675, "right": 2770, "bottom": 2100, "left": 920}, {"solidity": 0.9986542422946869, "top": 2160, "right": 2770, "bottom": 3585, "left": 945}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705727f.jpg"} -{"rects": [{"solidity": 0.9957861683242025, "top": 695, "right": 2655, "bottom": 2130, "left": 810}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727950f.jpg"} -{"rects": [{"solidity": 0.995786185284958, "top": 2235, "right": 3145, "bottom": 3855, "left": 725}, {"solidity": 0.9970342252361063, "top": 425, "right": 3155, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723283f.jpg"} -{"rects": [{"solidity": 0.9957861999072718, "top": 2390, "right": 2525, "bottom": 3870, "left": 450}, {"solidity": 0.9923751084716904, "top": 665, "right": 2535, "bottom": 2150, "left": 455}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716206f.jpg"} -{"rects": [{"solidity": 0.9957862552023615, "top": 610, "right": 3715, "bottom": 2760, "left": 660}], "shape": {"h": 6850, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711366f.jpg"} -{"rects": [{"solidity": 0.9957865641959079, "top": 2205, "right": 2935, "bottom": 3655, "left": 1115}, {"solidity": 0.995276410266389, "top": 460, "right": 2940, "bottom": 1890, "left": 1115}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726052f.jpg"} -{"rects": [{"solidity": 0.9957865995363298, "top": 835, "right": 4735, "bottom": 3440, "left": 1280}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720062f.jpg"} -{"rects": [{"solidity": 0.9957868561507712, "top": 2325, "right": 3115, "bottom": 3935, "left": 685}, {"solidity": 0.995619357895215, "top": 450, "right": 3100, "bottom": 2070, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729964f.jpg"} -{"rects": [{"solidity": 0.9957870201480515, "top": 765, "right": 5695, "bottom": 3195, "left": 4065}, {"solidity": 0.9973126035328403, "top": 755, "right": 3865, "bottom": 3175, "left": 2255}, {"solidity": 0.9985327180988732, "top": 750, "right": 2045, "bottom": 3155, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709804f.jpg"} -{"rects": [{"solidity": 0.9957871203481441, "top": 460, "right": 3145, "bottom": 2070, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720907f.jpg"} -{"rects": [{"solidity": 0.9957871938404982, "top": 435, "right": 3230, "bottom": 2065, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730327f.jpg"} -{"rects": [{"solidity": 0.9957873905350046, "top": 855, "right": 3825, "bottom": 3280, "left": 2200}, {"solidity": 0.9966762893537697, "top": 885, "right": 2005, "bottom": 3290, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720033f.jpg"} -{"rects": [{"solidity": 0.9957874165794958, "top": 2420, "right": 2530, "bottom": 3920, "left": 435}, {"solidity": 0.9920066522914127, "top": 650, "right": 2525, "bottom": 2135, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716144f.jpg"} -{"rects": [{"solidity": 0.9957874350341581, "top": 735, "right": 2510, "bottom": 2220, "left": 430}, {"solidity": 0.9922475564721899, "top": 2470, "right": 2515, "bottom": 3960, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716210f.jpg"} -{"rects": [{"solidity": 0.9957874843783339, "top": 380, "right": 2945, "bottom": 1510, "left": 1100}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704912f.jpg"} -{"rects": [{"solidity": 0.995787764948943, "top": 765, "right": 5650, "bottom": 3195, "left": 4030}, {"solidity": 0.9961303357151617, "top": 785, "right": 2025, "bottom": 3205, "left": 405}, {"solidity": 0.9960532057601862, "top": 775, "right": 3825, "bottom": 3200, "left": 2215}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734002f.jpg"} -{"rects": [{"solidity": 0.9957881509750082, "top": 480, "right": 3165, "bottom": 2085, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714745f.jpg"} -{"rects": [{"solidity": 0.9957883013348781, "top": 405, "right": 3115, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729829f.jpg"} -{"rects": [{"solidity": 0.9957883332438618, "top": 610, "right": 5010, "bottom": 2050, "left": 3210}, {"solidity": 0.9968036439447084, "top": 605, "right": 2790, "bottom": 2025, "left": 990}, {"solidity": 0.9966324463791371, "top": 2200, "right": 2795, "bottom": 3625, "left": 1000}, {"solidity": 0.9960375181822742, "top": 2240, "right": 5010, "bottom": 3645, "left": 3215}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725442f.jpg"} -{"rects": [{"solidity": 0.9957884780684516, "top": 760, "right": 2015, "bottom": 3205, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719457f.jpg"} -{"rects": [{"solidity": 0.9957884993636469, "top": 695, "right": 2645, "bottom": 3470, "left": 660}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713370f.jpg"} -{"rects": [{"solidity": 0.9957886689278275, "top": 805, "right": 2035, "bottom": 3220, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732566f.jpg"} -{"rects": [{"solidity": 0.9957888755282932, "top": 600, "right": 5330, "bottom": 1965, "left": 3505}, {"solidity": 0.9986968320242031, "top": 610, "right": 2615, "bottom": 2000, "left": 840}, {"solidity": 0.9940276298557357, "top": 2035, "right": 5335, "bottom": 3400, "left": 3515}, {"solidity": 0.9995276261674565, "top": 2075, "right": 2605, "bottom": 3460, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705282f.jpg"} -{"rects": [{"solidity": 0.9957889486957504, "top": 600, "right": 2800, "bottom": 2080, "left": 975}, {"solidity": 0.9948304111188535, "top": 2235, "right": 2845, "bottom": 3710, "left": 1020}, {"solidity": 0.9968188596179791, "top": 2215, "right": 5080, "bottom": 3680, "left": 3260}, {"solidity": 0.9958787417313092, "top": 600, "right": 5070, "bottom": 2065, "left": 3255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725679f.jpg"} -{"rects": [{"solidity": 0.9957891921511325, "top": 670, "right": 3860, "bottom": 3080, "left": 2250}, {"solidity": 0.9938459016393443, "top": 675, "right": 2025, "bottom": 3075, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727313f.jpg"} -{"rects": [{"solidity": 0.9957893639920606, "top": 815, "right": 4565, "bottom": 3220, "left": 1345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731215f.jpg"} -{"rects": [{"solidity": 0.9957896822929619, "top": 460, "right": 5050, "bottom": 3670, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727846f.jpg"} -{"rects": [{"solidity": 0.9957897026877437, "top": 790, "right": 2035, "bottom": 3225, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704939f.jpg"} -{"rects": [{"solidity": 0.9957897309427004, "top": 735, "right": 2495, "bottom": 3545, "left": 470}, {"solidity": 0.9949642769154964, "top": 730, "right": 4390, "bottom": 2150, "left": 2580}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727270f.jpg"} -{"rects": [{"solidity": 0.9957898543237937, "top": 790, "right": 2060, "bottom": 3220, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723074f.jpg"} -{"rects": [{"solidity": 0.9957901641099778, "top": 545, "right": 3130, "bottom": 2130, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707629f.jpg"} -{"rects": [{"solidity": 0.995790257082302, "top": 915, "right": 3865, "bottom": 3330, "left": 2245}, {"solidity": 0.9961916553496709, "top": 910, "right": 2015, "bottom": 3330, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730648f.jpg"} -{"rects": [{"solidity": 0.9957905805667857, "top": 790, "right": 2245, "bottom": 3205, "left": 640}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710314f.jpg"} -{"rects": [{"solidity": 0.9957906955025149, "top": 430, "right": 3130, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714280f.jpg"} -{"rects": [{"solidity": 0.9957908914891825, "top": 4090, "right": 3275, "bottom": 5705, "left": 860}, {"solidity": 0.9975958574774997, "top": 405, "right": 3260, "bottom": 2020, "left": 855}, {"solidity": 0.9965997704926584, "top": 2240, "right": 3265, "bottom": 3850, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731395f.jpg"} -{"rects": [{"solidity": 0.9957909115456091, "top": 2285, "right": 3175, "bottom": 3915, "left": 740}, {"solidity": 0.9952485159552674, "top": 415, "right": 3185, "bottom": 2050, "left": 740}, {"solidity": 0.996294898956187, "top": 4150, "right": 3175, "bottom": 5765, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734084f.jpg"} -{"rects": [{"solidity": 0.9957912208423486, "top": 435, "right": 2950, "bottom": 1995, "left": 1025}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724126f.jpg"} -{"rects": [{"solidity": 0.9957913059291926, "top": 2490, "right": 3135, "bottom": 4100, "left": 720}, {"solidity": 0.997672707861365, "top": 4255, "right": 3135, "bottom": 5870, "left": 730}, {"solidity": 0.9970340639236411, "top": 625, "right": 3135, "bottom": 2220, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710691f.jpg"} -{"rects": [{"solidity": 0.9957917860005044, "top": 2300, "right": 3080, "bottom": 3935, "left": 635}, {"solidity": 0.9980183586543061, "top": 420, "right": 3055, "bottom": 2025, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734825f.jpg"} -{"rects": [{"solidity": 0.9957918393236034, "top": 875, "right": 5695, "bottom": 3300, "left": 4065}, {"solidity": 0.9975268862335381, "top": 875, "right": 3840, "bottom": 3285, "left": 2220}, {"solidity": 0.9985613841817063, "top": 870, "right": 2005, "bottom": 3290, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720661f.jpg"} -{"rects": [{"solidity": 0.9957918761813059, "top": 770, "right": 3805, "bottom": 3195, "left": 2180}, {"solidity": 0.9958343910074916, "top": 810, "right": 5660, "bottom": 3220, "left": 4045}, {"solidity": 0.9946538358727612, "top": 785, "right": 1990, "bottom": 3210, "left": 355}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730186f.jpg"} -{"rects": [{"solidity": 0.9957919002234533, "top": 385, "right": 3720, "bottom": 2750, "left": 780}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509375.jpg"} -{"rects": [{"solidity": 0.995792114325513, "top": 405, "right": 3165, "bottom": 2030, "left": 735}, {"solidity": 0.9909038283264583, "top": 2230, "right": 3040, "bottom": 3650, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734684f.jpg"} -{"rects": [{"solidity": 0.9957921590475911, "top": 620, "right": 2705, "bottom": 2040, "left": 875}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706539f.jpg"} -{"rects": [{"solidity": 0.9957922615720746, "top": 4155, "right": 3305, "bottom": 5790, "left": 855}, {"solidity": 0.9965668540737983, "top": 2290, "right": 3325, "bottom": 3915, "left": 880}, {"solidity": 0.9972304825596978, "top": 425, "right": 3330, "bottom": 2045, "left": 890}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726402f.jpg"} -{"rects": [{"solidity": 0.9957923672634503, "top": 495, "right": 3115, "bottom": 2110, "left": 700}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704000f.jpg"} -{"rects": [{"solidity": 0.9957923966942148, "top": 445, "right": 3200, "bottom": 2255, "left": 555}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700754f.jpg"} -{"rects": [{"solidity": 0.9957927355205571, "top": 400, "right": 3220, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706247f.jpg"} -{"rects": [{"solidity": 0.9957935884799786, "top": 390, "right": 3175, "bottom": 1980, "left": 790}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728196f.jpg"} -{"rects": [{"solidity": 0.995793628125568, "top": 905, "right": 3505, "bottom": 2355, "left": 1490}], "shape": {"h": 2980, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/1507286.jpg"} -{"rects": [{"solidity": 0.9957936769843749, "top": 955, "right": 3495, "bottom": 4955, "left": 265}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711068f.jpg"} -{"rects": [{"solidity": 0.9957937312395027, "top": 505, "right": 3070, "bottom": 1925, "left": 1245}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728273f.jpg"} -{"rects": [{"solidity": 0.9957938843908147, "top": 2220, "right": 3040, "bottom": 3865, "left": 600}, {"solidity": 0.9955287136428528, "top": 4105, "right": 3020, "bottom": 5765, "left": 580}, {"solidity": 0.996226500875179, "top": 380, "right": 3055, "bottom": 1995, "left": 640}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/728492f.jpg"} -{"rects": [{"solidity": 0.9957941156472496, "top": 600, "right": 2720, "bottom": 2025, "left": 885}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703280f.jpg"} -{"rects": [{"solidity": 0.995794123521188, "top": 420, "right": 2340, "bottom": 1615, "left": 540}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716344f.jpg"} -{"rects": [{"solidity": 0.9957942825771539, "top": 2235, "right": 2775, "bottom": 3655, "left": 960}, {"solidity": 0.995636484869879, "top": 575, "right": 2780, "bottom": 1990, "left": 960}, {"solidity": 0.9963039135321923, "top": 2250, "right": 4995, "bottom": 3645, "left": 3145}, {"solidity": 0.9944664228309821, "top": 600, "right": 4950, "bottom": 2020, "left": 3150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727485f.jpg"} -{"rects": [{"solidity": 0.9957944163082483, "top": 3945, "right": 3120, "bottom": 5605, "left": 670}, {"solidity": 0.9976640360478809, "top": 2155, "right": 3130, "bottom": 3785, "left": 710}, {"solidity": 0.997727280043523, "top": 315, "right": 3135, "bottom": 1935, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703228f.jpg"} -{"rects": [{"solidity": 0.9957946159832722, "top": 425, "right": 5065, "bottom": 3705, "left": 970}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/733423f.jpg"} -{"rects": [{"solidity": 0.9957947217737979, "top": 4050, "right": 2795, "bottom": 5565, "left": 925}, {"solidity": 0.9927451585905647, "top": 2190, "right": 2810, "bottom": 3710, "left": 950}, {"solidity": 0.9935563251913963, "top": 350, "right": 2825, "bottom": 1870, "left": 990}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707907f.jpg"} -{"rects": [{"solidity": 0.9957949965540568, "top": 4140, "right": 3090, "bottom": 5775, "left": 635}, {"solidity": 0.9962436079206028, "top": 405, "right": 3095, "bottom": 2025, "left": 645}, {"solidity": 0.9955758435945632, "top": 2285, "right": 3085, "bottom": 3910, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732204f.jpg"} -{"rects": [{"solidity": 0.9957951590604652, "top": 515, "right": 2580, "bottom": 2065, "left": 295}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715890f.jpg"} -{"rects": [{"solidity": 0.995795472596012, "top": 405, "right": 3180, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710655f.jpg"} -{"rects": [{"solidity": 0.995795572532783, "top": 2270, "right": 3320, "bottom": 3895, "left": 875}, {"solidity": 0.9958638581673512, "top": 415, "right": 3340, "bottom": 2035, "left": 900}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725652f.jpg"} -{"rects": [{"solidity": 0.9957957588055676, "top": 455, "right": 3135, "bottom": 2075, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712323f.jpg"} -{"rects": [{"solidity": 0.9957957977336672, "top": 385, "right": 3080, "bottom": 2000, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728628f.jpg"} -{"rects": [{"solidity": 0.9957959677315595, "top": 410, "right": 3245, "bottom": 2030, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726080f.jpg"} -{"rects": [{"solidity": 0.9957961578914603, "top": 420, "right": 3180, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713609f.jpg"} -{"rects": [{"solidity": 0.9957961615696086, "top": 395, "right": 3215, "bottom": 1995, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725346f.jpg"} -{"rects": [{"solidity": 0.9957969100277237, "top": 1080, "right": 3510, "bottom": 5175, "left": 230}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719648f.jpg"} -{"rects": [{"solidity": 0.9957970066958032, "top": 825, "right": 3920, "bottom": 3255, "left": 2275}, {"solidity": 0.9960167411353129, "top": 805, "right": 2030, "bottom": 3180, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723488f.jpg"} -{"rects": [{"solidity": 0.9957972661069532, "top": 370, "right": 3155, "bottom": 1980, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729278f.jpg"} -{"rects": [{"solidity": 0.9957972687055203, "top": 880, "right": 3895, "bottom": 3305, "left": 2250}, {"solidity": 0.9965289931163225, "top": 900, "right": 2015, "bottom": 3305, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730562f.jpg"} -{"rects": [{"solidity": 0.9957973820923218, "top": 2255, "right": 3170, "bottom": 3875, "left": 740}, {"solidity": 0.9962691935769902, "top": 415, "right": 3155, "bottom": 2000, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734621f.jpg"} -{"rects": [{"solidity": 0.995797416654396, "top": 705, "right": 3335, "bottom": 2630, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713276f.jpg"} -{"rects": [{"solidity": 0.9957974893264513, "top": 2185, "right": 3290, "bottom": 3830, "left": 845}, {"solidity": 0.995477430639441, "top": 4055, "right": 3290, "bottom": 5690, "left": 855}, {"solidity": 0.9944381465211847, "top": 350, "right": 3265, "bottom": 1975, "left": 835}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/730930f.jpg"} -{"rects": [{"solidity": 0.9957977320377843, "top": 440, "right": 2910, "bottom": 1950, "left": 1050}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708717f.jpg"} -{"rects": [{"solidity": 0.9957977924558564, "top": 880, "right": 2315, "bottom": 3225, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702097f.jpg"} -{"rects": [{"solidity": 0.9957978789293643, "top": 375, "right": 5740, "bottom": 2020, "left": 3310}, {"solidity": 0.9984735451674479, "top": 2085, "right": 3230, "bottom": 3710, "left": 800}, {"solidity": 0.9971563135888724, "top": 360, "right": 3210, "bottom": 1995, "left": 785}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706700f.jpg"} -{"rects": [{"solidity": 0.9957981529036645, "top": 450, "right": 3190, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710503f.jpg"} -{"rects": [{"solidity": 0.9957981757933932, "top": 430, "right": 2920, "bottom": 1860, "left": 1105}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721246f.jpg"} -{"rects": [{"solidity": 0.9957983605752712, "top": 2115, "right": 2805, "bottom": 3550, "left": 1005}, {"solidity": 0.9946669161676647, "top": 2120, "right": 5030, "bottom": 3550, "left": 3225}, {"solidity": 0.994197945436843, "top": 500, "right": 5040, "bottom": 1910, "left": 3235}, {"solidity": 0.9951276417081915, "top": 495, "right": 2825, "bottom": 1885, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726401f.jpg"} -{"rects": [{"solidity": 0.9957983612610904, "top": 550, "right": 2685, "bottom": 1965, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705389f.jpg"} -{"rects": [{"solidity": 0.9957984562830843, "top": 735, "right": 3865, "bottom": 3150, "left": 2260}, {"solidity": 0.9973455314814089, "top": 730, "right": 2060, "bottom": 3140, "left": 460}, {"solidity": 0.9958973314588287, "top": 760, "right": 5650, "bottom": 3160, "left": 4050}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722040f.jpg"} -{"rects": [{"solidity": 0.9957984672245244, "top": 875, "right": 3860, "bottom": 3300, "left": 2230}, {"solidity": 0.9954112305453278, "top": 870, "right": 2020, "bottom": 3300, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723172f.jpg"} -{"rects": [{"solidity": 0.9957988829740244, "top": 775, "right": 2025, "bottom": 3185, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721581f.jpg"} -{"rects": [{"solidity": 0.9957989077160062, "top": 2010, "right": 5115, "bottom": 3455, "left": 3290}, {"solidity": 0.9982902578699139, "top": 620, "right": 2600, "bottom": 2050, "left": 785}, {"solidity": 0.9950871188091058, "top": 575, "right": 5145, "bottom": 1985, "left": 3300}, {"solidity": 0.9957711645327416, "top": 2070, "right": 2605, "bottom": 3415, "left": 760}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703311f.jpg"} -{"rects": [{"solidity": 0.995798920850879, "top": 675, "right": 2730, "bottom": 2080, "left": 905}, {"solidity": 0.996885122703361, "top": 685, "right": 5225, "bottom": 2030, "left": 3415}, {"solidity": 0.9359765404112433, "top": 2140, "right": 5290, "bottom": 3520, "left": 3385}, {"solidity": 0.9943167521797635, "top": 2160, "right": 2715, "bottom": 3475, "left": 950}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706969f.jpg"} -{"rects": [{"solidity": 0.9957990763319425, "top": 795, "right": 5095, "bottom": 2865, "left": 1670}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724684f.jpg"} -{"rects": [{"solidity": 0.9957991557571566, "top": 1065, "right": 3520, "bottom": 5125, "left": 170}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714376f.jpg"} -{"rects": [{"solidity": 0.9957991937781961, "top": 760, "right": 5695, "bottom": 3200, "left": 4065}, {"solidity": 0.9988120877316671, "top": 760, "right": 2055, "bottom": 3185, "left": 445}, {"solidity": 0.9963421287970995, "top": 765, "right": 3875, "bottom": 3190, "left": 2260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733877f.jpg"} -{"rects": [{"solidity": 0.9957992124788695, "top": 2355, "right": 2860, "bottom": 3770, "left": 1095}, {"solidity": 0.9984532609139544, "top": 580, "right": 2890, "bottom": 1955, "left": 1095}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703556f.jpg"} -{"rects": [{"solidity": 0.9957993649007589, "top": 725, "right": 4385, "bottom": 3140, "left": 540}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727963f.jpg"} -{"rects": [{"solidity": 0.9957994987468671, "top": 805, "right": 2030, "bottom": 3185, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712377f.jpg"} -{"rects": [{"solidity": 0.9957995885311214, "top": 460, "right": 2195, "bottom": 2550, "left": 720}, {"solidity": 0.9936453294395001, "top": 475, "right": 3950, "bottom": 2570, "left": 2465}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716154f.jpg"} -{"rects": [{"solidity": 0.9957996031171705, "top": 395, "right": 3155, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729551f.jpg"} -{"rects": [{"solidity": 0.9957996266334785, "top": 835, "right": 1960, "bottom": 3230, "left": 360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716924f.jpg"} -{"rects": [{"solidity": 0.9957996445467971, "top": 605, "right": 2585, "bottom": 2040, "left": 815}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720131f.jpg"} -{"rects": [{"solidity": 0.9957997473877598, "top": 680, "right": 5240, "bottom": 3255, "left": 970}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706111f.jpg"} -{"rects": [{"solidity": 0.9958001904867163, "top": 2250, "right": 3185, "bottom": 3865, "left": 765}, {"solidity": 0.995356022049139, "top": 405, "right": 3185, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701694f.jpg"} -{"rects": [{"solidity": 0.995800392049954, "top": 1030, "right": 3220, "bottom": 2650, "left": 810}, {"solidity": 0.9950306690756461, "top": 3470, "right": 3220, "bottom": 5120, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730811f.jpg"} -{"rects": [{"solidity": 0.9958004357351361, "top": 2130, "right": 2860, "bottom": 3270, "left": 1015}, {"solidity": 0.9979391054736377, "top": 700, "right": 2835, "bottom": 1825, "left": 1005}, {"solidity": 0.9988004871867426, "top": 2130, "right": 4955, "bottom": 3250, "left": 3125}, {"solidity": 0.9950685133162408, "top": 690, "right": 4960, "bottom": 1815, "left": 3130}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702796f.jpg"} -{"rects": [{"solidity": 0.995800578891466, "top": 385, "right": 3180, "bottom": 3695, "left": 630}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/715223f.jpg"} -{"rects": [{"solidity": 0.9958005928965286, "top": 395, "right": 3200, "bottom": 1980, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720678f.jpg"} -{"rects": [{"solidity": 0.9958006178401339, "top": 835, "right": 5715, "bottom": 3250, "left": 4085}, {"solidity": 0.9970160558395853, "top": 835, "right": 3895, "bottom": 3230, "left": 2285}, {"solidity": 0.9963313771696771, "top": 840, "right": 2070, "bottom": 3245, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719801f.jpg"} -{"rects": [{"solidity": 0.9958006880337226, "top": 415, "right": 3145, "bottom": 2050, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707300f.jpg"} -{"rects": [{"solidity": 0.9958007272653504, "top": 2100, "right": 2685, "bottom": 3490, "left": 890}, {"solidity": 0.9958656753838833, "top": 660, "right": 2640, "bottom": 2055, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733686f.jpg"} -{"rects": [{"solidity": 0.9958009607401827, "top": 2210, "right": 2640, "bottom": 3650, "left": 810}, {"solidity": 0.9952029161603888, "top": 745, "right": 2625, "bottom": 2175, "left": 800}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734770f.jpg"} -{"rects": [{"solidity": 0.9958011544426856, "top": 365, "right": 3235, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/704986f.jpg"} -{"rects": [{"solidity": 0.9958017180867066, "top": 740, "right": 3940, "bottom": 3120, "left": 2355}, {"solidity": 0.9948107868459324, "top": 735, "right": 2055, "bottom": 3115, "left": 475}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711046f.jpg"} -{"rects": [{"solidity": 0.9958018388475585, "top": 335, "right": 3195, "bottom": 1925, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724621f.jpg"} -{"rects": [{"solidity": 0.9958018552395292, "top": 700, "right": 4985, "bottom": 3345, "left": 1005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705962f.jpg"} -{"rects": [{"solidity": 0.9958019459156536, "top": 2295, "right": 3250, "bottom": 4155, "left": 530}, {"solidity": 0.9961053458883365, "top": 385, "right": 3255, "bottom": 2235, "left": 515}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702811f.jpg"} -{"rects": [{"solidity": 0.995802125732076, "top": 870, "right": 5180, "bottom": 3300, "left": 3535}, {"solidity": 0.9956339616561947, "top": 1280, "right": 3015, "bottom": 2910, "left": 595}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722722f.jpg"} -{"rects": [{"solidity": 0.9958021869088923, "top": 760, "right": 2690, "bottom": 2165, "left": 910}, {"solidity": 0.9946785844730327, "top": 2200, "right": 2680, "bottom": 3605, "left": 905}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725781f.jpg"} -{"rects": [{"solidity": 0.9958023142249157, "top": 2245, "right": 3120, "bottom": 3880, "left": 695}, {"solidity": 0.9973264978093485, "top": 4120, "right": 3090, "bottom": 5735, "left": 680}, {"solidity": 0.9995103815433427, "top": 405, "right": 3115, "bottom": 2010, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729932f.jpg"} -{"rects": [{"solidity": 0.9958026538059808, "top": 4035, "right": 3170, "bottom": 5655, "left": 755}, {"solidity": 0.9976498199380612, "top": 2215, "right": 3170, "bottom": 3830, "left": 755}, {"solidity": 0.9978146938298383, "top": 405, "right": 3150, "bottom": 2015, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700048f.jpg"} -{"rects": [{"solidity": 0.9958027147027424, "top": 1050, "right": 4595, "bottom": 3015, "left": 1615}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718404f.jpg"} -{"rects": [{"solidity": 0.9958027452314973, "top": 2255, "right": 3105, "bottom": 3870, "left": 685}, {"solidity": 0.996775441345213, "top": 400, "right": 3100, "bottom": 2010, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730923f.jpg"} -{"rects": [{"solidity": 0.9958028201932067, "top": 2440, "right": 3050, "bottom": 3865, "left": 1230}, {"solidity": 0.9950896680080981, "top": 4225, "right": 3020, "bottom": 5625, "left": 1195}, {"solidity": 0.9971404575267957, "top": 625, "right": 3035, "bottom": 2030, "left": 1240}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726510f.jpg"} -{"rects": [{"solidity": 0.9958029025061386, "top": 595, "right": 4910, "bottom": 3575, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709933f.jpg"} -{"rects": [{"solidity": 0.9958029527461856, "top": 2345, "right": 3090, "bottom": 3945, "left": 690}, {"solidity": 0.9943318260042346, "top": 500, "right": 3070, "bottom": 2095, "left": 675}, {"solidity": 0.9949697889692533, "top": 4200, "right": 3085, "bottom": 5815, "left": 680}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731296f.jpg"} -{"rects": [{"solidity": 0.9958030227166179, "top": 390, "right": 3115, "bottom": 2045, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703292f.jpg"} -{"rects": [{"solidity": 0.9958030875188323, "top": 2305, "right": 3195, "bottom": 3915, "left": 785}, {"solidity": 0.9970235357504238, "top": 515, "right": 3215, "bottom": 2115, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725283f.jpg"} -{"rects": [{"solidity": 0.9958032203369449, "top": 695, "right": 3260, "bottom": 2630, "left": 535}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/717870f.jpg"} -{"rects": [{"solidity": 0.9958032656047354, "top": 415, "right": 3205, "bottom": 2010, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726070f.jpg"} -{"rects": [{"solidity": 0.9958033262525258, "top": 800, "right": 1980, "bottom": 3210, "left": 360}, {"solidity": 0.9950667590572029, "top": 795, "right": 3795, "bottom": 2145, "left": 1985}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716609f.jpg"} -{"rects": [{"solidity": 0.9958033783762205, "top": 430, "right": 3135, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706616f.jpg"} -{"rects": [{"solidity": 0.9958033862331773, "top": 2370, "right": 3100, "bottom": 4000, "left": 675}, {"solidity": 0.9964187568016172, "top": 440, "right": 3090, "bottom": 2055, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730754f.jpg"} -{"rects": [{"solidity": 0.9958033939873305, "top": 455, "right": 3270, "bottom": 3860, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713983f.jpg"} -{"rects": [{"solidity": 0.9958034615700107, "top": 845, "right": 2075, "bottom": 3245, "left": 475}, {"solidity": 0.9965869407656323, "top": 850, "right": 3915, "bottom": 3250, "left": 2320}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708652f.jpg"} -{"rects": [{"solidity": 0.9958037412350002, "top": 2150, "right": 3230, "bottom": 3775, "left": 805}, {"solidity": 0.9964947194644836, "top": 300, "right": 3240, "bottom": 1915, "left": 825}, {"solidity": 0.9970738037307381, "top": 4010, "right": 3195, "bottom": 5635, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714971f.jpg"} -{"rects": [{"solidity": 0.9958038045505408, "top": 365, "right": 3090, "bottom": 2000, "left": 670}, {"solidity": 0.9967131496614673, "top": 2080, "right": 3075, "bottom": 3705, "left": 665}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734253f.jpg"} -{"rects": [{"solidity": 0.9958040494467286, "top": 775, "right": 2110, "bottom": 3140, "left": 525}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722305f.jpg"} -{"rects": [{"solidity": 0.9958041368999047, "top": 575, "right": 2595, "bottom": 1925, "left": 805}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706123f.jpg"} -{"rects": [{"solidity": 0.9958042370327669, "top": 460, "right": 3195, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710341f.jpg"} -{"rects": [{"solidity": 0.995804362304898, "top": 365, "right": 3180, "bottom": 2000, "left": 750}, {"solidity": 0.9959085261036679, "top": 2210, "right": 3170, "bottom": 3835, "left": 745}, {"solidity": 0.9956179185596121, "top": 4045, "right": 3160, "bottom": 5680, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710635f.jpg"} -{"rects": [{"solidity": 0.9958044859488984, "top": 700, "right": 2375, "bottom": 3175, "left": 700}, {"solidity": 0.9975552549608468, "top": 700, "right": 4145, "bottom": 3160, "left": 2495}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700004f.jpg"} -{"rects": [{"solidity": 0.9958050102467049, "top": 2735, "right": 3375, "bottom": 4745, "left": 575}, {"solidity": 0.9943759209875536, "top": 400, "right": 3330, "bottom": 2260, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701603f.jpg"} -{"rects": [{"solidity": 0.9958051154553178, "top": 2085, "right": 2775, "bottom": 3520, "left": 940}, {"solidity": 0.9947498761763249, "top": 605, "right": 2760, "bottom": 2020, "left": 955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705269f.jpg"} -{"rects": [{"solidity": 0.9958054620179375, "top": 745, "right": 2035, "bottom": 3155, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712507f.jpg"} -{"rects": [{"solidity": 0.995805504468751, "top": 775, "right": 2030, "bottom": 3195, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724556f.jpg"} -{"rects": [{"solidity": 0.9958055129124226, "top": 435, "right": 4005, "bottom": 2745, "left": 1050}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508719.jpg"} -{"rects": [{"solidity": 0.9958055210597123, "top": 795, "right": 2375, "bottom": 3210, "left": 735}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715069f.jpg"} -{"rects": [{"solidity": 0.9958055581114224, "top": 3875, "right": 3305, "bottom": 5530, "left": 870}, {"solidity": 0.9967642437667422, "top": 2010, "right": 3285, "bottom": 3625, "left": 860}, {"solidity": 0.9965874633152306, "top": 210, "right": 3285, "bottom": 1815, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734107f.jpg"} -{"rects": [{"solidity": 0.9958056758056758, "top": 425, "right": 3230, "bottom": 2070, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726860f.jpg"} -{"rects": [{"solidity": 0.9958058794118677, "top": 775, "right": 2345, "bottom": 3220, "left": 685}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724158f.jpg"} -{"rects": [{"solidity": 0.9958061128133973, "top": 650, "right": 2680, "bottom": 3505, "left": 850}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702604f.jpg"} -{"rects": [{"solidity": 0.9958063347948111, "top": 2255, "right": 3160, "bottom": 3870, "left": 735}, {"solidity": 0.9959959860833284, "top": 425, "right": 3165, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734600f.jpg"} -{"rects": [{"solidity": 0.9958063619138768, "top": 445, "right": 3210, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702156f.jpg"} -{"rects": [{"solidity": 0.9958065380936463, "top": 430, "right": 3150, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715425f.jpg"} -{"rects": [{"solidity": 0.9958065932363157, "top": 370, "right": 3225, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722853f.jpg"} -{"rects": [{"solidity": 0.9958066883321103, "top": 2340, "right": 3140, "bottom": 3945, "left": 735}, {"solidity": 0.9973795135167126, "top": 485, "right": 3145, "bottom": 2080, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710804f.jpg"} -{"rects": [{"solidity": 0.9958067620324988, "top": 2390, "right": 3070, "bottom": 3785, "left": 1255}, {"solidity": 0.9988834233636117, "top": 585, "right": 3080, "bottom": 1995, "left": 1305}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/726966f.jpg"} -{"rects": [{"solidity": 0.9958068962867257, "top": 690, "right": 2980, "bottom": 1940, "left": 880}, {"solidity": 0.9901207247436328, "top": 2195, "right": 2970, "bottom": 3440, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713899f.jpg"} -{"rects": [{"solidity": 0.9958069936784828, "top": 4120, "right": 3170, "bottom": 5760, "left": 745}, {"solidity": 0.9960400547658823, "top": 2215, "right": 3210, "bottom": 3845, "left": 770}, {"solidity": 0.9988881013843462, "top": 310, "right": 3210, "bottom": 1915, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721546f.jpg"} -{"rects": [{"solidity": 0.995807030752302, "top": 650, "right": 1600, "bottom": 2460, "left": 390}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715760f.jpg"} -{"rects": [{"solidity": 0.9958070910007858, "top": 1105, "right": 2885, "bottom": 3005, "left": 1740}, {"solidity": 0.9973562614704615, "top": 1125, "right": 4320, "bottom": 3020, "left": 3190}, {"solidity": 0.9929041054385699, "top": 1105, "right": 5755, "bottom": 2990, "left": 4645}, {"solidity": 0.9935541605269709, "top": 1115, "right": 1440, "bottom": 2920, "left": 390}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717832f.jpg"} -{"rects": [{"solidity": 0.9958072174014712, "top": 1085, "right": 3505, "bottom": 5005, "left": 355}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733613f.jpg"} -{"rects": [{"solidity": 0.9958073429196023, "top": 4085, "right": 3220, "bottom": 5715, "left": 780}, {"solidity": 0.9954840766998329, "top": 2255, "right": 3205, "bottom": 3870, "left": 780}, {"solidity": 0.9973298959580149, "top": 430, "right": 3180, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734508f.jpg"} -{"rects": [{"solidity": 0.9958074025548641, "top": 775, "right": 4040, "bottom": 3180, "left": 2425}, {"solidity": 0.9961807264494537, "top": 760, "right": 2200, "bottom": 3155, "left": 585}, {"solidity": 0.9948080533009016, "top": 805, "right": 5830, "bottom": 3205, "left": 4225}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731616f.jpg"} -{"rects": [{"solidity": 0.9958075335397317, "top": 630, "right": 3915, "bottom": 3050, "left": 2285}, {"solidity": 0.9985101145940307, "top": 625, "right": 2045, "bottom": 3035, "left": 445}, {"solidity": 0.9871687214524727, "top": 1040, "right": 5500, "bottom": 2675, "left": 4270}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704466f.jpg"} -{"rects": [{"solidity": 0.9958075562239647, "top": 555, "right": 4965, "bottom": 3560, "left": 1200}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709836f.jpg"} -{"rects": [{"solidity": 0.9958077788991538, "top": 860, "right": 3295, "bottom": 2690, "left": 1865}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704344f.jpg"} -{"rects": [{"solidity": 0.9958078018607701, "top": 410, "right": 3285, "bottom": 2025, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727008f.jpg"} -{"rects": [{"solidity": 0.9958079757594432, "top": 2235, "right": 3230, "bottom": 3865, "left": 810}, {"solidity": 0.9945658794939696, "top": 4085, "right": 3225, "bottom": 5740, "left": 795}, {"solidity": 0.9962492722108385, "top": 410, "right": 3230, "bottom": 2035, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727943f.jpg"} -{"rects": [{"solidity": 0.9958080592480815, "top": 695, "right": 3360, "bottom": 2575, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712334f.jpg"} -{"rects": [{"solidity": 0.9958080925075603, "top": 390, "right": 3215, "bottom": 2070, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703729f.jpg"} -{"rects": [{"solidity": 0.9958086922791181, "top": 2350, "right": 3165, "bottom": 3950, "left": 750}, {"solidity": 0.9948522370810632, "top": 460, "right": 3170, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731806f.jpg"} -{"rects": [{"solidity": 0.9958087753765553, "top": 785, "right": 3865, "bottom": 3215, "left": 2240}, {"solidity": 0.9959286520311859, "top": 780, "right": 5715, "bottom": 3205, "left": 4085}, {"solidity": 0.9965450649283991, "top": 805, "right": 2060, "bottom": 3230, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720786f.jpg"} -{"rects": [{"solidity": 0.9958090519129246, "top": 210, "right": 3310, "bottom": 2700, "left": 280}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509851.jpg"} -{"rects": [{"solidity": 0.9958090994297472, "top": 2150, "right": 3365, "bottom": 3805, "left": 910}, {"solidity": 0.9963556827970935, "top": 375, "right": 3395, "bottom": 1995, "left": 960}, {"solidity": 0.9958065822199086, "top": 3960, "right": 3320, "bottom": 5580, "left": 890}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733282f.jpg"} -{"rects": [{"solidity": 0.9958091148528193, "top": 775, "right": 2035, "bottom": 3195, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710907f.jpg"} -{"rects": [{"solidity": 0.995809518757708, "top": 395, "right": 3115, "bottom": 1985, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729507f.jpg"} -{"rects": [{"solidity": 0.9958096737914274, "top": 720, "right": 3685, "bottom": 3530, "left": 545}, {"solidity": 0.9962382032817073, "top": 910, "right": 5590, "bottom": 3320, "left": 3990}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726413f.jpg"} -{"rects": [{"solidity": 0.9958097076703765, "top": 700, "right": 1870, "bottom": 3130, "left": 230}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724087f.jpg"} -{"rects": [{"solidity": 0.9958098901736876, "top": 785, "right": 3345, "bottom": 2655, "left": 675}, {"solidity": 0.9964195162930987, "top": 3255, "right": 3325, "bottom": 5135, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709102f.jpg"} -{"rects": [{"solidity": 0.995809906854488, "top": 350, "right": 3135, "bottom": 1985, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729359f.jpg"} -{"rects": [{"solidity": 0.9958099993252817, "top": 785, "right": 1970, "bottom": 3165, "left": 380}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716923f.jpg"} -{"rects": [{"solidity": 0.9958100194701005, "top": 3490, "right": 3725, "bottom": 5690, "left": 620}, {"solidity": 0.9961703768492133, "top": 630, "right": 3700, "bottom": 2810, "left": 600}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710272f.jpg"} -{"rects": [{"solidity": 0.9958103815455531, "top": 405, "right": 5085, "bottom": 3660, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724859f.jpg"} -{"rects": [{"solidity": 0.9958105129689857, "top": 645, "right": 4935, "bottom": 3530, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718355f.jpg"} -{"rects": [{"solidity": 0.9958106874748189, "top": 580, "right": 2535, "bottom": 2050, "left": 435}, {"solidity": 0.9956520297435982, "top": 2450, "right": 2510, "bottom": 3915, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716083f.jpg"} -{"rects": [{"solidity": 0.9958108108108108, "top": 2335, "right": 3180, "bottom": 3960, "left": 760}, {"solidity": 0.9964555020938853, "top": 495, "right": 3180, "bottom": 2115, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723231f.jpg"} -{"rects": [{"solidity": 0.9958108936115322, "top": 895, "right": 3865, "bottom": 3325, "left": 2250}, {"solidity": 0.9949616223640624, "top": 900, "right": 2020, "bottom": 3320, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730417f.jpg"} -{"rects": [{"solidity": 0.9958109818576336, "top": 655, "right": 2720, "bottom": 2045, "left": 915}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726002f.jpg"} -{"rects": [{"solidity": 0.9958110810608013, "top": 380, "right": 3165, "bottom": 1985, "left": 750}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728764f.jpg"} -{"rects": [{"solidity": 0.9958112187328213, "top": 765, "right": 3860, "bottom": 3185, "left": 2225}, {"solidity": 0.9993909333298776, "top": 775, "right": 2035, "bottom": 3185, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732865f.jpg"} -{"rects": [{"solidity": 0.9958112888781622, "top": 2280, "right": 3115, "bottom": 3910, "left": 670}, {"solidity": 0.9954372866213586, "top": 410, "right": 3100, "bottom": 2055, "left": 680}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710605f.jpg"} -{"rects": [{"solidity": 0.9958114147194143, "top": 445, "right": 3370, "bottom": 2045, "left": 970}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727375f.jpg"} -{"rects": [{"solidity": 0.9958114154139913, "top": 735, "right": 5955, "bottom": 2215, "left": 4120}, {"solidity": 0.997429081877206, "top": 715, "right": 2075, "bottom": 2140, "left": 240}, {"solidity": 0.996420175251122, "top": 730, "right": 4025, "bottom": 2150, "left": 2190}, {"solidity": 0.9994266757483842, "top": 2315, "right": 4945, "bottom": 3715, "left": 3110}, {"solidity": 0.9976582535423247, "top": 2335, "right": 2880, "bottom": 3715, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732938f.jpg"} -{"rects": [{"solidity": 0.9958115732364774, "top": 535, "right": 4925, "bottom": 3525, "left": 1160}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713492f.jpg"} -{"rects": [{"solidity": 0.995811707669902, "top": 485, "right": 2995, "bottom": 1910, "left": 1175}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727607f.jpg"} -{"rects": [{"solidity": 0.9958117122591085, "top": 405, "right": 3250, "bottom": 2015, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728235f.jpg"} -{"rects": [{"solidity": 0.9958117406367313, "top": 815, "right": 2010, "bottom": 3235, "left": 375}, {"solidity": 0.9965210416659874, "top": 495, "right": 4945, "bottom": 2110, "left": 2545}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707955f.jpg"} -{"rects": [{"solidity": 0.9958120844877562, "top": 770, "right": 3945, "bottom": 3200, "left": 2320}, {"solidity": 0.9965360453720217, "top": 790, "right": 2075, "bottom": 3200, "left": 445}, {"solidity": 0.9969216736974119, "top": 775, "right": 5760, "bottom": 3190, "left": 4155}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718555f.jpg"} -{"rects": [{"solidity": 0.9958122193924436, "top": 460, "right": 3175, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734234f.jpg"} -{"rects": [{"solidity": 0.9958127149722225, "top": 520, "right": 3325, "bottom": 2540, "left": 505}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708290f.jpg"} -{"rects": [{"solidity": 0.9958128851255711, "top": 400, "right": 3000, "bottom": 1955, "left": 1090}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724122f.jpg"} -{"rects": [{"solidity": 0.9958132705858216, "top": 390, "right": 3075, "bottom": 2025, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729312f.jpg"} -{"rects": [{"solidity": 0.9958133365063836, "top": 420, "right": 3090, "bottom": 1880, "left": 1125}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700693f.jpg"} -{"rects": [{"solidity": 0.9958134204940554, "top": 380, "right": 3150, "bottom": 2005, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719967f.jpg"} -{"rects": [{"solidity": 0.9958134823873654, "top": 515, "right": 2815, "bottom": 1550, "left": 1185}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711163f.jpg"} -{"rects": [{"solidity": 0.9958135475836282, "top": 810, "right": 5530, "bottom": 2495, "left": 675}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710747f.jpg"} -{"rects": [{"solidity": 0.9958135587293817, "top": 300, "right": 3110, "bottom": 1930, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704605f.jpg"} -{"rects": [{"solidity": 0.9958136588736611, "top": 1425, "right": 2025, "bottom": 3235, "left": 810}], "shape": {"h": 4645, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509617.jpg"} -{"rects": [{"solidity": 0.9958137660228029, "top": 320, "right": 3200, "bottom": 2040, "left": 795}, {"solidity": 0.9977955537220979, "top": 2310, "right": 3200, "bottom": 3935, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701479f.jpg"} -{"rects": [{"solidity": 0.9958138430726124, "top": 595, "right": 3095, "bottom": 2170, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727637f.jpg"} -{"rects": [{"solidity": 0.9958138547902747, "top": 780, "right": 5720, "bottom": 3205, "left": 4090}, {"solidity": 0.9969908984363649, "top": 760, "right": 3900, "bottom": 3180, "left": 2280}, {"solidity": 0.9990120214885326, "top": 750, "right": 2055, "bottom": 3160, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719818f.jpg"} -{"rects": [{"solidity": 0.9958140104875485, "top": 790, "right": 3995, "bottom": 3210, "left": 2360}, {"solidity": 0.9957175011453194, "top": 800, "right": 5795, "bottom": 3190, "left": 4195}, {"solidity": 0.9933376466099305, "top": 825, "right": 2135, "bottom": 3210, "left": 540}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717912f.jpg"} -{"rects": [{"solidity": 0.9958140133951572, "top": 840, "right": 2095, "bottom": 3265, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705098f.jpg"} -{"rects": [{"solidity": 0.9958141166212677, "top": 410, "right": 3170, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711733f.jpg"} -{"rects": [{"solidity": 0.9958143445349844, "top": 1355, "right": 3145, "bottom": 4750, "left": 480}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731192f.jpg"} -{"rects": [{"solidity": 0.9958144086723043, "top": 365, "right": 3315, "bottom": 2265, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713591f.jpg"} -{"rects": [{"solidity": 0.9958146008096013, "top": 570, "right": 3335, "bottom": 2425, "left": 660}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713803f.jpg"} -{"rects": [{"solidity": 0.9958146573190821, "top": 640, "right": 3290, "bottom": 2575, "left": 570}, {"solidity": 0.997910475818638, "top": 3285, "right": 3270, "bottom": 5215, "left": 550}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/714565f.jpg"} -{"rects": [{"solidity": 0.9958151017622737, "top": 770, "right": 2045, "bottom": 3160, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721515f.jpg"} -{"rects": [{"solidity": 0.9958151266927399, "top": 815, "right": 4945, "bottom": 3255, "left": 3305}, {"solidity": 0.9965350502934864, "top": 780, "right": 3040, "bottom": 3195, "left": 1425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730949f.jpg"} -{"rects": [{"solidity": 0.9958152194699066, "top": 720, "right": 2525, "bottom": 3160, "left": 860}, {"solidity": 0.9973309094179391, "top": 505, "right": 5230, "bottom": 2130, "left": 2815}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704985f.jpg"} -{"rects": [{"solidity": 0.9958152665514255, "top": 2210, "right": 3235, "bottom": 3830, "left": 810}, {"solidity": 0.9960589062575774, "top": 390, "right": 3245, "bottom": 2005, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726816f.jpg"} -{"rects": [{"solidity": 0.9958155753583883, "top": 2150, "right": 2685, "bottom": 3580, "left": 860}, {"solidity": 0.99574065776062, "top": 675, "right": 2670, "bottom": 2085, "left": 850}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727266f.jpg"} -{"rects": [{"solidity": 0.9958156931245128, "top": 865, "right": 2050, "bottom": 3285, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701622f.jpg"} -{"rects": [{"solidity": 0.9958157110394418, "top": 695, "right": 3865, "bottom": 3120, "left": 2235}, {"solidity": 0.9966977077826821, "top": 695, "right": 2030, "bottom": 3115, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725689f.jpg"} -{"rects": [{"solidity": 0.9958157251781122, "top": 920, "right": 3855, "bottom": 3345, "left": 2215}, {"solidity": 0.996224330349846, "top": 925, "right": 5680, "bottom": 3330, "left": 4075}, {"solidity": 0.9953074306130223, "top": 930, "right": 1970, "bottom": 3340, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729011f.jpg"} -{"rects": [{"solidity": 0.9958160391519616, "top": 2055, "right": 2660, "bottom": 3510, "left": 820}, {"solidity": 0.9944168099815355, "top": 615, "right": 2610, "bottom": 2045, "left": 780}, {"solidity": 0.9752323057744933, "top": 590, "right": 5155, "bottom": 2035, "left": 3350}, {"solidity": 0.937452216595938, "top": 2070, "right": 5150, "bottom": 3475, "left": 3355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707159f.jpg"} -{"rects": [{"solidity": 0.9958161334163164, "top": 565, "right": 3455, "bottom": 2380, "left": 720}], "shape": {"h": 4410, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711629f.jpg"} -{"rects": [{"solidity": 0.9958162789492773, "top": 2270, "right": 3115, "bottom": 3880, "left": 700}, {"solidity": 0.9948766461537462, "top": 410, "right": 3110, "bottom": 2025, "left": 690}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729275f.jpg"} -{"rects": [{"solidity": 0.99581645170592, "top": 2085, "right": 2745, "bottom": 3500, "left": 915}, {"solidity": 0.9944533343804914, "top": 645, "right": 2740, "bottom": 2065, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705312f.jpg"} -{"rects": [{"solidity": 0.9958166757284037, "top": 715, "right": 3865, "bottom": 3145, "left": 2230}, {"solidity": 0.995967573238589, "top": 710, "right": 5690, "bottom": 3135, "left": 4075}, {"solidity": 0.9973713577985203, "top": 735, "right": 2025, "bottom": 3155, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731765f.jpg"} -{"rects": [{"solidity": 0.9958173273794435, "top": 770, "right": 3820, "bottom": 3180, "left": 2205}, {"solidity": 0.9954164319093229, "top": 775, "right": 1980, "bottom": 3170, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713715f.jpg"} -{"rects": [{"solidity": 0.9958174618511252, "top": 755, "right": 2045, "bottom": 3155, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717487f.jpg"} -{"rects": [{"solidity": 0.9958174794504633, "top": 890, "right": 2140, "bottom": 3445, "left": 425}, {"solidity": 0.9975062424073415, "top": 940, "right": 4010, "bottom": 3365, "left": 2390}, {"solidity": 0.995626277429187, "top": 930, "right": 5825, "bottom": 3350, "left": 4210}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730543f.jpg"} -{"rects": [{"solidity": 0.9958176269087299, "top": 3300, "right": 3180, "bottom": 5220, "left": 480}, {"solidity": 0.9930113756056457, "top": 780, "right": 3135, "bottom": 2645, "left": 520}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715351f.jpg"} -{"rects": [{"solidity": 0.9958179838745315, "top": 845, "right": 2810, "bottom": 2345, "left": 715}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507530.jpg"} -{"rects": [{"solidity": 0.995818107998376, "top": 2440, "right": 2495, "bottom": 3935, "left": 400}, {"solidity": 0.99490783382091, "top": 655, "right": 2510, "bottom": 2155, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716098f.jpg"} -{"rects": [{"solidity": 0.9958181977476901, "top": 970, "right": 2325, "bottom": 3425, "left": 775}], "shape": {"h": 4645, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509635.jpg"} -{"rects": [{"solidity": 0.9958187058532075, "top": 355, "right": 2390, "bottom": 1530, "left": 605}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716473f.jpg"} -{"rects": [{"solidity": 0.9958187179730262, "top": 515, "right": 2960, "bottom": 1920, "left": 1150}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725249f.jpg"} -{"rects": [{"solidity": 0.9958189464726963, "top": 485, "right": 3885, "bottom": 2570, "left": 2405}, {"solidity": 0.9932740980520071, "top": 475, "right": 2145, "bottom": 2565, "left": 680}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716177f.jpg"} -{"rects": [{"solidity": 0.9958192974013474, "top": 1260, "right": 2745, "bottom": 5365, "left": 1610}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/712824f.jpg"} -{"rects": [{"solidity": 0.9958193335419132, "top": 600, "right": 3225, "bottom": 2610, "left": 440}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700625f.jpg"} -{"rects": [{"solidity": 0.9958198311918309, "top": 2435, "right": 3315, "bottom": 4380, "left": 545}, {"solidity": 0.9637664749309298, "top": 425, "right": 3320, "bottom": 2375, "left": 585}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704237f.jpg"} -{"rects": [{"solidity": 0.9958198479081435, "top": 370, "right": 2790, "bottom": 3575, "left": 800}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710555f.jpg"} -{"rects": [{"solidity": 0.9958204588539101, "top": 605, "right": 2690, "bottom": 2030, "left": 885}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705238f.jpg"} -{"rects": [{"solidity": 0.9958205583861612, "top": 430, "right": 3155, "bottom": 2070, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703065f.jpg"} -{"rects": [{"solidity": 0.9958205664029949, "top": 895, "right": 3860, "bottom": 3320, "left": 2225}, {"solidity": 0.9965799571371738, "top": 905, "right": 5695, "bottom": 3330, "left": 4070}, {"solidity": 0.996546525431766, "top": 890, "right": 1990, "bottom": 3310, "left": 375}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730197f.jpg"} -{"rects": [{"solidity": 0.9958206813153226, "top": 405, "right": 3220, "bottom": 1995, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726120f.jpg"} -{"rects": [{"solidity": 0.9958207151077934, "top": 900, "right": 3870, "bottom": 3320, "left": 2235}, {"solidity": 0.996762638594502, "top": 890, "right": 2015, "bottom": 3310, "left": 380}, {"solidity": 0.9953440465466192, "top": 915, "right": 5725, "bottom": 3330, "left": 4090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722299f.jpg"} -{"rects": [{"solidity": 0.9958211505412305, "top": 440, "right": 3200, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700323f.jpg"} -{"rects": [{"solidity": 0.9958212769885985, "top": 1040, "right": 2420, "bottom": 3675, "left": 445}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/709119f.jpg"} -{"rects": [{"solidity": 0.9958215277181535, "top": 4045, "right": 3095, "bottom": 5795, "left": 520}, {"solidity": 0.9970135024995366, "top": 370, "right": 3070, "bottom": 2120, "left": 620}, {"solidity": 0.9945981175614024, "top": 2220, "right": 3075, "bottom": 3990, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731132f.jpg"} -{"rects": [{"solidity": 0.9958219405616743, "top": 795, "right": 5730, "bottom": 3225, "left": 4090}, {"solidity": 0.9957276771937044, "top": 780, "right": 3870, "bottom": 3210, "left": 2245}, {"solidity": 0.9966608204007664, "top": 780, "right": 2005, "bottom": 3190, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734733f.jpg"} -{"rects": [{"solidity": 0.9958220084341982, "top": 2250, "right": 3180, "bottom": 3865, "left": 775}, {"solidity": 0.9958678965494699, "top": 460, "right": 3150, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/734785f.jpg"} -{"rects": [{"solidity": 0.9958223345169513, "top": 2275, "right": 3145, "bottom": 3895, "left": 715}, {"solidity": 0.995802748648219, "top": 470, "right": 3155, "bottom": 2085, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734126f.jpg"} -{"rects": [{"solidity": 0.9958223620833601, "top": 2185, "right": 3075, "bottom": 3830, "left": 650}, {"solidity": 0.9972103878304381, "top": 355, "right": 3070, "bottom": 1975, "left": 660}, {"solidity": 0.9979122496482594, "top": 4065, "right": 3050, "bottom": 5680, "left": 645}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700641f.jpg"} -{"rects": [{"solidity": 0.995822658175341, "top": 2100, "right": 2655, "bottom": 3525, "left": 830}, {"solidity": 0.9973093115464352, "top": 605, "right": 5240, "bottom": 2020, "left": 3425}, {"solidity": 0.995941208726646, "top": 2070, "right": 5220, "bottom": 3520, "left": 3435}, {"solidity": 0.9978792661274413, "top": 620, "right": 2635, "bottom": 2040, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731994f.jpg"} -{"rects": [{"solidity": 0.9958227353395309, "top": 320, "right": 3195, "bottom": 1960, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704391f.jpg"} -{"rects": [{"solidity": 0.9958227803290928, "top": 860, "right": 1990, "bottom": 3285, "left": 360}, {"solidity": 0.9961788990676513, "top": 855, "right": 3870, "bottom": 3285, "left": 2265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728705f.jpg"} -{"rects": [{"solidity": 0.9958227958771967, "top": 400, "right": 3075, "bottom": 2000, "left": 635}, {"solidity": 0.9948868993807899, "top": 2285, "right": 3050, "bottom": 3900, "left": 635}, {"solidity": 0.9950905817560969, "top": 4175, "right": 3055, "bottom": 5750, "left": 620}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/731809f.jpg"} -{"rects": [{"solidity": 0.9958230554185167, "top": 750, "right": 3785, "bottom": 3155, "left": 2190}, {"solidity": 0.9952235926774967, "top": 750, "right": 1980, "bottom": 3155, "left": 385}, {"solidity": 0.997701279621011, "top": 755, "right": 5625, "bottom": 3145, "left": 4040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711924f.jpg"} -{"rects": [{"solidity": 0.9958232988543814, "top": 415, "right": 3185, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700570f.jpg"} -{"rects": [{"solidity": 0.9958233321903456, "top": 2310, "right": 5020, "bottom": 3740, "left": 3170}, {"solidity": 0.9985981757081133, "top": 2310, "right": 2800, "bottom": 3730, "left": 950}, {"solidity": 0.9963431157819079, "top": 700, "right": 5005, "bottom": 2115, "left": 3165}, {"solidity": 0.9959356909325414, "top": 705, "right": 2790, "bottom": 2100, "left": 980}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727650f.jpg"} -{"rects": [{"solidity": 0.9958234636083607, "top": 780, "right": 2025, "bottom": 3205, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722296f.jpg"} -{"rects": [{"solidity": 0.9958236887466141, "top": 415, "right": 3225, "bottom": 2020, "left": 820}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/724445f.jpg"} -{"rects": [{"solidity": 0.9958241135841105, "top": 2235, "right": 4990, "bottom": 3680, "left": 3170}, {"solidity": 0.9958659640746456, "top": 625, "right": 2805, "bottom": 2060, "left": 985}, {"solidity": 0.9953579866060097, "top": 2220, "right": 2820, "bottom": 3660, "left": 1020}, {"solidity": 0.9937852048416214, "top": 630, "right": 4990, "bottom": 2060, "left": 3185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727761f.jpg"} -{"rects": [{"solidity": 0.9958242092866003, "top": 665, "right": 2850, "bottom": 3500, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722065f.jpg"} -{"rects": [{"solidity": 0.99582443344621, "top": 780, "right": 4970, "bottom": 3305, "left": 1135}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700359f.jpg"} -{"rects": [{"solidity": 0.995824535372558, "top": 835, "right": 3895, "bottom": 3290, "left": 2250}, {"solidity": 0.9954909867398786, "top": 850, "right": 5745, "bottom": 3300, "left": 4100}, {"solidity": 0.9965115240877029, "top": 805, "right": 2050, "bottom": 3240, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722566f.jpg"} -{"rects": [{"solidity": 0.9958247323208992, "top": 590, "right": 2490, "bottom": 1855, "left": 775}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706558f.jpg"} -{"rects": [{"solidity": 0.9958247760048748, "top": 380, "right": 3105, "bottom": 2010, "left": 670}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/729487f.jpg"} -{"rects": [{"solidity": 0.9958248073906001, "top": 4105, "right": 3165, "bottom": 5745, "left": 720}, {"solidity": 0.9959906299300432, "top": 405, "right": 3195, "bottom": 2040, "left": 755}, {"solidity": 0.9955262711566093, "top": 2240, "right": 3185, "bottom": 3880, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734314f.jpg"} -{"rects": [{"solidity": 0.995825214787305, "top": 400, "right": 3075, "bottom": 2005, "left": 675}, {"solidity": 0.9953965750780325, "top": 2225, "right": 3070, "bottom": 3830, "left": 655}, {"solidity": 0.9938439709819896, "top": 4065, "right": 3045, "bottom": 5665, "left": 630}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729661f.jpg"} -{"rects": [{"solidity": 0.9958253401850766, "top": 2025, "right": 2715, "bottom": 3445, "left": 900}, {"solidity": 0.9957062317527434, "top": 590, "right": 2690, "bottom": 2000, "left": 895}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703885f.jpg"} -{"rects": [{"solidity": 0.9958256208174433, "top": 1110, "right": 3655, "bottom": 5160, "left": 425}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/718584f.jpg"} -{"rects": [{"solidity": 0.9958259005916249, "top": 410, "right": 3230, "bottom": 2040, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714527f.jpg"} -{"rects": [{"solidity": 0.9958259928800649, "top": 305, "right": 3320, "bottom": 2205, "left": 595}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702472f.jpg"} -{"rects": [{"solidity": 0.9958260880724291, "top": 1330, "right": 2895, "bottom": 2960, "left": 465}, {"solidity": 0.996028385363432, "top": 1330, "right": 5630, "bottom": 2940, "left": 3220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722313f.jpg"} -{"rects": [{"solidity": 0.9958261528917075, "top": 855, "right": 3685, "bottom": 3225, "left": 2125}, {"solidity": 0.9971050210875263, "top": 900, "right": 1935, "bottom": 3260, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713910f.jpg"} -{"rects": [{"solidity": 0.9958262032351062, "top": 410, "right": 3105, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700756f.jpg"} -{"rects": [{"solidity": 0.9958262317942361, "top": 740, "right": 3230, "bottom": 2640, "left": 480}, {"solidity": 0.9933991332448208, "top": 2670, "right": 2885, "bottom": 4250, "left": 965}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708406f.jpg"} -{"rects": [{"solidity": 0.9958264955261205, "top": 720, "right": 3185, "bottom": 2635, "left": 475}, {"solidity": 0.995983845691977, "top": 3365, "right": 3160, "bottom": 5250, "left": 445}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724175f.jpg"} -{"rects": [{"solidity": 0.9958265565025047, "top": 415, "right": 3055, "bottom": 2030, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729406f.jpg"} -{"rects": [{"solidity": 0.9958266468354926, "top": 550, "right": 2995, "bottom": 1975, "left": 1185}, {"solidity": 0.9949798101058606, "top": 2350, "right": 3015, "bottom": 3790, "left": 1230}, {"solidity": 0.9925527707231775, "top": 4130, "right": 2985, "bottom": 5530, "left": 1210}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725473f.jpg"} -{"rects": [{"solidity": 0.9958269054778403, "top": 810, "right": 2635, "bottom": 2160, "left": 840}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726601f.jpg"} -{"rects": [{"solidity": 0.9958270299131717, "top": 2280, "right": 3200, "bottom": 3920, "left": 755}, {"solidity": 0.9978819960018255, "top": 425, "right": 3185, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701397f.jpg"} -{"rects": [{"solidity": 0.9958270494108024, "top": 2260, "right": 3335, "bottom": 3900, "left": 910}, {"solidity": 0.9974047944020454, "top": 410, "right": 3355, "bottom": 2035, "left": 935}, {"solidity": 0.9958588814492633, "top": 4085, "right": 3305, "bottom": 5725, "left": 880}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702487f.jpg"} -{"rects": [{"solidity": 0.9958274394081935, "top": 2305, "right": 3140, "bottom": 3875, "left": 760}, {"solidity": 0.9948796705358957, "top": 460, "right": 3125, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731580f.jpg"} -{"rects": [{"solidity": 0.995827565364893, "top": 760, "right": 2015, "bottom": 3175, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712056f.jpg"} -{"rects": [{"solidity": 0.9958276961503165, "top": 2625, "right": 3130, "bottom": 4305, "left": 670}, {"solidity": 0.9964017051550241, "top": 200, "right": 2770, "bottom": 2640, "left": 1120}, {"solidity": 0.9985708543611272, "top": 4350, "right": 3065, "bottom": 5980, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702276f.jpg"} -{"rects": [{"solidity": 0.995827820804408, "top": 725, "right": 2695, "bottom": 2135, "left": 885}, {"solidity": 0.9957963544940289, "top": 2205, "right": 2680, "bottom": 3605, "left": 885}, {"solidity": 0.9960970170058545, "top": 720, "right": 5195, "bottom": 2115, "left": 3410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726719f.jpg"} -{"rects": [{"solidity": 0.9958278508515211, "top": 915, "right": 1830, "bottom": 2895, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712160f.jpg"} -{"rects": [{"solidity": 0.9958278933285073, "top": 995, "right": 2930, "bottom": 2620, "left": 520}, {"solidity": 0.9974162138269935, "top": 990, "right": 5630, "bottom": 2605, "left": 3230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709665f.jpg"} -{"rects": [{"solidity": 0.99582823170039, "top": 580, "right": 4970, "bottom": 3690, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715578f.jpg"} -{"rects": [{"solidity": 0.995828278849941, "top": 735, "right": 5420, "bottom": 3190, "left": 3740}, {"solidity": 0.9959164931039572, "top": 720, "right": 2040, "bottom": 3135, "left": 435}, {"solidity": 0.9959563206332555, "top": 1015, "right": 3595, "bottom": 2855, "left": 2130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720319f.jpg"} -{"rects": [{"solidity": 0.9958283085151006, "top": 460, "right": 3175, "bottom": 2070, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709600f.jpg"} -{"rects": [{"solidity": 0.9958283306179785, "top": 400, "right": 4170, "bottom": 2875, "left": 1175}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509123.jpg"} -{"rects": [{"solidity": 0.9958283420888641, "top": 2290, "right": 3180, "bottom": 3935, "left": 750}, {"solidity": 0.9958260440569813, "top": 430, "right": 3180, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732317f.jpg"} -{"rects": [{"solidity": 0.9958284410588314, "top": 400, "right": 3245, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726566f.jpg"} -{"rects": [{"solidity": 0.995828549433992, "top": 750, "right": 2015, "bottom": 3150, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724163f.jpg"} -{"rects": [{"solidity": 0.9958286539387133, "top": 1025, "right": 2270, "bottom": 3315, "left": 460}], "shape": {"h": 4430, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/702229f.jpg"} -{"rects": [{"solidity": 0.9958287128968203, "top": 835, "right": 3915, "bottom": 3250, "left": 2285}, {"solidity": 0.9975707626035131, "top": 845, "right": 2015, "bottom": 3245, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711773f.jpg"} -{"rects": [{"solidity": 0.995828881942521, "top": 2205, "right": 3160, "bottom": 3795, "left": 760}, {"solidity": 0.9966910599175737, "top": 430, "right": 3145, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709634f.jpg"} -{"rects": [{"solidity": 0.9958289215072714, "top": 720, "right": 2015, "bottom": 3100, "left": 445}, {"solidity": 0.998732258415357, "top": 740, "right": 3870, "bottom": 3105, "left": 2305}, {"solidity": 0.9950450866340442, "top": 740, "right": 5695, "bottom": 3115, "left": 4140}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731611f.jpg"} -{"rects": [{"solidity": 0.9958289751058044, "top": 435, "right": 3205, "bottom": 2060, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702355f.jpg"} -{"rects": [{"solidity": 0.9958290270190462, "top": 380, "right": 2365, "bottom": 1555, "left": 610}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/715835f.jpg"} -{"rects": [{"solidity": 0.9958292309018211, "top": 460, "right": 3540, "bottom": 2250, "left": 845}], "shape": {"h": 6875, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/706401f.jpg"} -{"rects": [{"solidity": 0.9958297160355468, "top": 2325, "right": 3305, "bottom": 3975, "left": 870}, {"solidity": 0.9959727679390569, "top": 440, "right": 3305, "bottom": 2090, "left": 875}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726832f.jpg"} -{"rects": [{"solidity": 0.9958300502274665, "top": 2295, "right": 3130, "bottom": 3920, "left": 720}, {"solidity": 0.9957911324874013, "top": 410, "right": 3120, "bottom": 2020, "left": 725}, {"solidity": 0.9961921875668507, "top": 4225, "right": 3115, "bottom": 5825, "left": 715}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/731692f.jpg"} -{"rects": [{"solidity": 0.9958302761909753, "top": 445, "right": 3105, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728305f.jpg"} -{"rects": [{"solidity": 0.9958302869311741, "top": 670, "right": 2070, "bottom": 3110, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707530f.jpg"} -{"rects": [{"solidity": 0.9958305446230998, "top": 415, "right": 3085, "bottom": 2050, "left": 645}, {"solidity": 0.9927224165497639, "top": 2300, "right": 2780, "bottom": 3575, "left": 1115}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710809f.jpg"} -{"rects": [{"solidity": 0.995830600729328, "top": 1560, "right": 3560, "bottom": 5435, "left": 490}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/716810f.jpg"} -{"rects": [{"solidity": 0.9958306447610066, "top": 680, "right": 2525, "bottom": 3155, "left": 840}, {"solidity": 0.9984527994659662, "top": 430, "right": 5310, "bottom": 2070, "left": 2850}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700012f.jpg"} -{"rects": [{"solidity": 0.9958310262840765, "top": 2285, "right": 3100, "bottom": 3895, "left": 695}, {"solidity": 0.9969160031400696, "top": 420, "right": 3100, "bottom": 2010, "left": 695}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728958f.jpg"} -{"rects": [{"solidity": 0.9958310510942564, "top": 420, "right": 5265, "bottom": 3460, "left": 1360}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732224f.jpg"} -{"rects": [{"solidity": 0.9958312137470766, "top": 395, "right": 3185, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702356f.jpg"} -{"rects": [{"solidity": 0.9958312411691208, "top": 795, "right": 3160, "bottom": 2005, "left": 1360}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507591.jpg"} -{"rects": [{"solidity": 0.9958313700853358, "top": 490, "right": 3205, "bottom": 2100, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711085f.jpg"} -{"rects": [{"solidity": 0.9958315316094439, "top": 670, "right": 2570, "bottom": 3500, "left": 505}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720320f.jpg"} -{"rects": [{"solidity": 0.9958318725409996, "top": 435, "right": 2950, "bottom": 1885, "left": 930}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721070f.jpg"} -{"rects": [{"solidity": 0.9958320150318652, "top": 390, "right": 3245, "bottom": 2005, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726058f.jpg"} -{"rects": [{"solidity": 0.995832320466729, "top": 2230, "right": 3310, "bottom": 3865, "left": 870}, {"solidity": 0.9978602364358297, "top": 385, "right": 3315, "bottom": 2000, "left": 895}, {"solidity": 0.9958495191278802, "top": 4105, "right": 3290, "bottom": 5720, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725447f.jpg"} -{"rects": [{"solidity": 0.9958323506511548, "top": 405, "right": 3110, "bottom": 2025, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728430f.jpg"} -{"rects": [{"solidity": 0.9958324544414402, "top": 800, "right": 2040, "bottom": 3230, "left": 410}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708633f.jpg"} -{"rects": [{"solidity": 0.9958325070844182, "top": 500, "right": 5645, "bottom": 2165, "left": 3210}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725638f.jpg"} -{"rects": [{"solidity": 0.9958325872145078, "top": 855, "right": 3920, "bottom": 3275, "left": 2285}, {"solidity": 0.9949069944380313, "top": 895, "right": 5770, "bottom": 3310, "left": 4145}, {"solidity": 0.996686315649249, "top": 860, "right": 2010, "bottom": 3250, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711569f.jpg"} -{"rects": [{"solidity": 0.9958327613594022, "top": 665, "right": 2740, "bottom": 2080, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706785f.jpg"} -{"rects": [{"solidity": 0.995832796825434, "top": 320, "right": 2390, "bottom": 1530, "left": 600}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716500f.jpg"} -{"rects": [{"solidity": 0.9958328335931982, "top": 590, "right": 4490, "bottom": 3650, "left": 1395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733541f.jpg"} -{"rects": [{"solidity": 0.9958330480373265, "top": 830, "right": 2005, "bottom": 3245, "left": 405}, {"solidity": 0.9932823606204633, "top": 830, "right": 3830, "bottom": 3250, "left": 2235}, {"solidity": 0.9960024497893049, "top": 845, "right": 5655, "bottom": 3255, "left": 4080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728706f.jpg"} -{"rects": [{"solidity": 0.9958333057612433, "top": 3405, "right": 3480, "bottom": 5435, "left": 650}, {"solidity": 0.9968603526173904, "top": 1140, "right": 3440, "bottom": 3095, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724535f.jpg"} -{"rects": [{"solidity": 0.9958334318337628, "top": 585, "right": 2050, "bottom": 1730, "left": 180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715697f.jpg"} -{"rects": [{"solidity": 0.9958336484116395, "top": 405, "right": 3315, "bottom": 2320, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723812f.jpg"} -{"rects": [{"solidity": 0.9958338569874927, "top": 1070, "right": 3450, "bottom": 5050, "left": 260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708562f.jpg"} -{"rects": [{"solidity": 0.9958339747536946, "top": 2260, "right": 3160, "bottom": 3895, "left": 735}, {"solidity": 0.9957917448222912, "top": 425, "right": 3135, "bottom": 2050, "left": 725}, {"solidity": 0.9901973085730418, "top": 4980, "right": 3835, "bottom": 6010, "left": 3045}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710850f.jpg"} -{"rects": [{"solidity": 0.995834006775099, "top": 475, "right": 3205, "bottom": 2080, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710536f.jpg"} -{"rects": [{"solidity": 0.9958343275272409, "top": 660, "right": 2730, "bottom": 2045, "left": 895}, {"solidity": 0.9942002365824321, "top": 2070, "right": 2745, "bottom": 3450, "left": 900}, {"solidity": 0.995178821433117, "top": 640, "right": 5240, "bottom": 2015, "left": 3425}, {"solidity": 0.9967065277243873, "top": 2050, "right": 5205, "bottom": 3440, "left": 3450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718190f.jpg"} -{"rects": [{"solidity": 0.995834348824382, "top": 2270, "right": 3100, "bottom": 3905, "left": 670}, {"solidity": 0.9920297814021752, "top": 385, "right": 3100, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710062f.jpg"} -{"rects": [{"solidity": 0.9958344373717518, "top": 465, "right": 3155, "bottom": 2170, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700643f.jpg"} -{"rects": [{"solidity": 0.9958344904193279, "top": 895, "right": 1975, "bottom": 3280, "left": 390}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729543f.jpg"} -{"rects": [{"solidity": 0.9958344985943273, "top": 600, "right": 2835, "bottom": 2015, "left": 1020}, {"solidity": 0.9982276661316845, "top": 2215, "right": 5005, "bottom": 3630, "left": 3195}, {"solidity": 0.9960926940751481, "top": 590, "right": 5035, "bottom": 2010, "left": 3220}, {"solidity": 0.9954169115962099, "top": 2230, "right": 2820, "bottom": 3650, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727737f.jpg"} -{"rects": [{"solidity": 0.9958348657187294, "top": 425, "right": 2945, "bottom": 1975, "left": 1100}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719204f.jpg"} -{"rects": [{"solidity": 0.9958348661764929, "top": 4495, "right": 3535, "bottom": 6340, "left": 795}, {"solidity": 0.9965800828486971, "top": 2465, "right": 3515, "bottom": 4290, "left": 785}, {"solidity": 0.9960158248995699, "top": 435, "right": 3500, "bottom": 2275, "left": 765}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711188f.jpg"} -{"rects": [{"solidity": 0.9958352122656703, "top": 2240, "right": 3040, "bottom": 3870, "left": 620}, {"solidity": 0.9962936545933605, "top": 385, "right": 3030, "bottom": 1995, "left": 615}, {"solidity": 0.9984322515759652, "top": 4120, "right": 3045, "bottom": 5715, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734799f.jpg"} -{"rects": [{"solidity": 0.9958352363279815, "top": 795, "right": 3840, "bottom": 3235, "left": 2185}, {"solidity": 0.9963952043631904, "top": 775, "right": 2015, "bottom": 3200, "left": 385}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721789f.jpg"} -{"rects": [{"solidity": 0.9958352968410261, "top": 1020, "right": 3480, "bottom": 5035, "left": 430}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722238f.jpg"} -{"rects": [{"solidity": 0.9958353089545746, "top": 2205, "right": 4965, "bottom": 3625, "left": 3135}, {"solidity": 0.9949350406671977, "top": 2210, "right": 2840, "bottom": 3630, "left": 1020}, {"solidity": 0.9958188773240815, "top": 615, "right": 4965, "bottom": 2025, "left": 3155}, {"solidity": 0.9957047178904184, "top": 595, "right": 2830, "bottom": 2010, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727807f.jpg"} -{"rects": [{"solidity": 0.9958354092413035, "top": 460, "right": 3100, "bottom": 2090, "left": 665}, {"solidity": 0.9966912249870449, "top": 2340, "right": 3080, "bottom": 3970, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719519f.jpg"} -{"rects": [{"solidity": 0.9958355023425299, "top": 425, "right": 5055, "bottom": 3690, "left": 1025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721606f.jpg"} -{"rects": [{"solidity": 0.9958356126577662, "top": 560, "right": 3005, "bottom": 1970, "left": 1190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727408f.jpg"} -{"rects": [{"solidity": 0.9958356142164912, "top": 510, "right": 2190, "bottom": 2605, "left": 695}, {"solidity": 0.9933546341404152, "top": 530, "right": 3945, "bottom": 2630, "left": 2450}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716183f.jpg"} -{"rects": [{"solidity": 0.9958356655099071, "top": 1100, "right": 2630, "bottom": 4110, "left": 205}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508297.jpg"} -{"rects": [{"solidity": 0.9958357048386899, "top": 2410, "right": 2515, "bottom": 3895, "left": 430}, {"solidity": 0.9955476318937813, "top": 680, "right": 2440, "bottom": 2085, "left": 525}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715997f.jpg"} -{"rects": [{"solidity": 0.9958361510965125, "top": 615, "right": 2855, "bottom": 2045, "left": 1020}, {"solidity": 0.9975139565211021, "top": 2270, "right": 2870, "bottom": 3680, "left": 1040}, {"solidity": 0.995056270691382, "top": 2215, "right": 5155, "bottom": 3620, "left": 3330}, {"solidity": 0.996423200221633, "top": 620, "right": 5135, "bottom": 2035, "left": 3320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726408f.jpg"} -{"rects": [{"solidity": 0.995836193533209, "top": 4100, "right": 3085, "bottom": 5720, "left": 665}, {"solidity": 0.9952908292207436, "top": 2225, "right": 3100, "bottom": 3870, "left": 685}, {"solidity": 0.9953459520065814, "top": 410, "right": 3110, "bottom": 2000, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728431f.jpg"} -{"rects": [{"solidity": 0.9958364951347431, "top": 845, "right": 2050, "bottom": 3230, "left": 465}, {"solidity": 0.9913024312502119, "top": 855, "right": 3840, "bottom": 3230, "left": 2260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710149f.jpg"} -{"rects": [{"solidity": 0.9958366698463237, "top": 2225, "right": 3280, "bottom": 3885, "left": 850}, {"solidity": 0.997472366032192, "top": 405, "right": 3285, "bottom": 2030, "left": 865}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703645f.jpg"} -{"rects": [{"solidity": 0.9958368255181912, "top": 1025, "right": 3375, "bottom": 5045, "left": 185}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/709110f.jpg"} -{"rects": [{"solidity": 0.9958368495077355, "top": 410, "right": 3065, "bottom": 2000, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730266f.jpg"} -{"rects": [{"solidity": 0.9958371583027336, "top": 2265, "right": 3220, "bottom": 3900, "left": 775}, {"solidity": 0.9951524911797329, "top": 375, "right": 3210, "bottom": 1995, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701265f.jpg"} -{"rects": [{"solidity": 0.9958371608596085, "top": 340, "right": 3200, "bottom": 1975, "left": 790}, {"solidity": 0.9975658418485187, "top": 4045, "right": 3175, "bottom": 5645, "left": 770}, {"solidity": 0.9969919720171211, "top": 2155, "right": 3180, "bottom": 3760, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719274f.jpg"} -{"rects": [{"solidity": 0.9958371892600119, "top": 2220, "right": 3105, "bottom": 3865, "left": 670}, {"solidity": 0.9973334107192375, "top": 400, "right": 3090, "bottom": 2015, "left": 670}, {"solidity": 0.9943498551287069, "top": 4065, "right": 3090, "bottom": 5675, "left": 695}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709431f.jpg"} -{"rects": [{"solidity": 0.9958373659365186, "top": 610, "right": 2740, "bottom": 2030, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704576f.jpg"} -{"rects": [{"solidity": 0.9958376841861005, "top": 660, "right": 2750, "bottom": 2085, "left": 915}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703121f.jpg"} -{"rects": [{"solidity": 0.9958378942134136, "top": 405, "right": 2970, "bottom": 2035, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702142f.jpg"} -{"rects": [{"solidity": 0.9958389694041868, "top": 400, "right": 3205, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700771f.jpg"} -{"rects": [{"solidity": 0.9958390196883082, "top": 2255, "right": 3070, "bottom": 3890, "left": 640}, {"solidity": 0.9941080626848247, "top": 4110, "right": 3060, "bottom": 5745, "left": 635}, {"solidity": 0.995972116652699, "top": 360, "right": 3095, "bottom": 1970, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722900f.jpg"} -{"rects": [{"solidity": 0.9958390446479051, "top": 705, "right": 2525, "bottom": 2195, "left": 440}, {"solidity": 0.996093813577253, "top": 2465, "right": 2525, "bottom": 3955, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716267f.jpg"} -{"rects": [{"solidity": 0.9958391235824863, "top": 645, "right": 2540, "bottom": 2140, "left": 440}, {"solidity": 0.9947127605490594, "top": 2410, "right": 2510, "bottom": 3910, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716128f.jpg"} -{"rects": [{"solidity": 0.9958392393956049, "top": 2220, "right": 5075, "bottom": 3640, "left": 3230}, {"solidity": 0.9973374221183801, "top": 600, "right": 5075, "bottom": 2005, "left": 3230}, {"solidity": 0.9944452579684678, "top": 2210, "right": 2750, "bottom": 3630, "left": 925}, {"solidity": 0.9940016925916945, "top": 565, "right": 2760, "bottom": 1975, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727773f.jpg"} -{"rects": [{"solidity": 0.9958392473336307, "top": 615, "right": 2480, "bottom": 2110, "left": 385}, {"solidity": 0.9950163342188664, "top": 2475, "right": 2460, "bottom": 3970, "left": 365}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716065f.jpg"} -{"rects": [{"solidity": 0.9958393720001678, "top": 2220, "right": 3110, "bottom": 3850, "left": 695}, {"solidity": 0.9968256895234583, "top": 405, "right": 3105, "bottom": 2010, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713656f.jpg"} -{"rects": [{"solidity": 0.9958394423438023, "top": 800, "right": 2065, "bottom": 3225, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714296f.jpg"} -{"rects": [{"solidity": 0.9958394863985739, "top": 820, "right": 2085, "bottom": 3220, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711850f.jpg"} -{"rects": [{"solidity": 0.9958396431528972, "top": 405, "right": 3235, "bottom": 2010, "left": 835}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711153f.jpg"} -{"rects": [{"solidity": 0.9958397250042165, "top": 280, "right": 2075, "bottom": 1300, "left": 530}, {"solidity": 0.9979362774687179, "top": 1450, "right": 2065, "bottom": 2465, "left": 540}], "shape": {"h": 3920, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727182f.jpg"} -{"rects": [{"solidity": 0.9958397638059451, "top": 390, "right": 3120, "bottom": 2060, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702391f.jpg"} -{"rects": [{"solidity": 0.9958397962349176, "top": 395, "right": 3190, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705741f.jpg"} -{"rects": [{"solidity": 0.995839913716729, "top": 815, "right": 3870, "bottom": 3245, "left": 2245}, {"solidity": 0.9950420383800783, "top": 795, "right": 2005, "bottom": 3225, "left": 385}, {"solidity": 0.9956894886619709, "top": 825, "right": 5745, "bottom": 3255, "left": 4125}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723279f.jpg"} -{"rects": [{"solidity": 0.9958401037048373, "top": 500, "right": 5140, "bottom": 3845, "left": 970}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731218f.jpg"} -{"rects": [{"solidity": 0.9958403996326334, "top": 610, "right": 2725, "bottom": 2030, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702571f.jpg"} -{"rects": [{"solidity": 0.9958406429560953, "top": 835, "right": 5770, "bottom": 3205, "left": 4180}, {"solidity": 0.9967808382589645, "top": 815, "right": 3910, "bottom": 3205, "left": 2340}, {"solidity": 0.9965967063153764, "top": 845, "right": 2075, "bottom": 3205, "left": 495}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731669f.jpg"} -{"rects": [{"solidity": 0.9958408545623049, "top": 2325, "right": 3150, "bottom": 3945, "left": 735}, {"solidity": 0.9958770602495892, "top": 490, "right": 3155, "bottom": 2110, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724734f.jpg"} -{"rects": [{"solidity": 0.995841044028067, "top": 625, "right": 2580, "bottom": 2060, "left": 750}, {"solidity": 0.9960390874443903, "top": 2135, "right": 5190, "bottom": 3565, "left": 3360}, {"solidity": 0.9974609081614358, "top": 620, "right": 5180, "bottom": 2050, "left": 3360}, {"solidity": 0.9945202256608323, "top": 2150, "right": 2575, "bottom": 3585, "left": 770}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705848f.jpg"} -{"rects": [{"solidity": 0.9958411869201501, "top": 815, "right": 3895, "bottom": 3245, "left": 2255}, {"solidity": 0.9958317714490762, "top": 825, "right": 5725, "bottom": 3250, "left": 4095}, {"solidity": 0.9962907987345078, "top": 805, "right": 2045, "bottom": 3220, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723056f.jpg"} -{"rects": [{"solidity": 0.9958412158912368, "top": 2215, "right": 3065, "bottom": 3880, "left": 625}, {"solidity": 0.9960988884902666, "top": 405, "right": 3065, "bottom": 2035, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724027f.jpg"} -{"rects": [{"solidity": 0.9958413189382783, "top": 940, "right": 3105, "bottom": 2005, "left": 1480}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509533.jpg"} -{"rects": [{"solidity": 0.9958413845249097, "top": 465, "right": 3205, "bottom": 2090, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710553f.jpg"} -{"rects": [{"solidity": 0.9958419758160323, "top": 380, "right": 3205, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733849f.jpg"} -{"rects": [{"solidity": 0.9958420249914707, "top": 190, "right": 3410, "bottom": 5975, "left": 580}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707150f.jpg"} -{"rects": [{"solidity": 0.9958420634070992, "top": 835, "right": 2535, "bottom": 3815, "left": 225}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508357.jpg"} -{"rects": [{"solidity": 0.9958422394274767, "top": 2235, "right": 3280, "bottom": 3905, "left": 825}, {"solidity": 0.9959937062417411, "top": 395, "right": 3270, "bottom": 2025, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725129f.jpg"} -{"rects": [{"solidity": 0.9958426503709324, "top": 630, "right": 2565, "bottom": 2130, "left": 460}, {"solidity": 0.9958608275856349, "top": 2465, "right": 2515, "bottom": 3960, "left": 450}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716106f.jpg"} -{"rects": [{"solidity": 0.9958427294277659, "top": 725, "right": 2065, "bottom": 3155, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705756f.jpg"} -{"rects": [{"solidity": 0.9958428063186723, "top": 345, "right": 3170, "bottom": 1950, "left": 775}, {"solidity": 0.9971906051206562, "top": 2165, "right": 3165, "bottom": 3770, "left": 775}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/732520f.jpg"} -{"rects": [{"solidity": 0.9958428184811388, "top": 2240, "right": 4995, "bottom": 3675, "left": 3185}, {"solidity": 0.9939998922429627, "top": 615, "right": 4990, "bottom": 2055, "left": 3175}, {"solidity": 0.9962158539950333, "top": 620, "right": 2890, "bottom": 2035, "left": 1080}, {"solidity": 0.9952516993399665, "top": 2230, "right": 2875, "bottom": 3660, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727758f.jpg"} -{"rects": [{"solidity": 0.9958429833831763, "top": 2225, "right": 3260, "bottom": 3980, "left": 670}, {"solidity": 0.9963801378220399, "top": 4060, "right": 3220, "bottom": 5775, "left": 660}, {"solidity": 0.9967551959328665, "top": 420, "right": 3250, "bottom": 2130, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724695f.jpg"} -{"rects": [{"solidity": 0.9958431262496931, "top": 340, "right": 2425, "bottom": 1540, "left": 625}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715784f.jpg"} -{"rects": [{"solidity": 0.9958433519819069, "top": 400, "right": 3370, "bottom": 2325, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703924f.jpg"} -{"rects": [{"solidity": 0.9958438401746952, "top": 2285, "right": 3210, "bottom": 3895, "left": 795}, {"solidity": 0.9960770773733189, "top": 4145, "right": 3195, "bottom": 5745, "left": 790}, {"solidity": 0.994690785262227, "top": 445, "right": 3200, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733733f.jpg"} -{"rects": [{"solidity": 0.9958438880656812, "top": 300, "right": 4110, "bottom": 2750, "left": 1085}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517137.jpg"} -{"rects": [{"solidity": 0.9958439688461287, "top": 2170, "right": 3125, "bottom": 3795, "left": 715}, {"solidity": 0.9955770650479863, "top": 370, "right": 3150, "bottom": 1990, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713498f.jpg"} -{"rects": [{"solidity": 0.9958439921822531, "top": 360, "right": 5530, "bottom": 3600, "left": 3465}, {"solidity": 0.9955173985716457, "top": 390, "right": 2850, "bottom": 3520, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705631f.jpg"} -{"rects": [{"solidity": 0.9958439928717201, "top": 2245, "right": 3165, "bottom": 3860, "left": 745}, {"solidity": 0.9960409715669776, "top": 410, "right": 3165, "bottom": 2020, "left": 750}, {"solidity": 0.9962177043900602, "top": 4110, "right": 3155, "bottom": 5720, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732199f.jpg"} -{"rects": [{"solidity": 0.9958440280195134, "top": 710, "right": 3295, "bottom": 2690, "left": 455}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707427f.jpg"} -{"rects": [{"solidity": 0.9958440347819332, "top": 2175, "right": 2745, "bottom": 3590, "left": 905}, {"solidity": 0.9937846923618169, "top": 705, "right": 2725, "bottom": 2130, "left": 905}, {"solidity": 0.9944157371971468, "top": 700, "right": 5255, "bottom": 2115, "left": 3455}, {"solidity": 0.9961529599166474, "top": 2165, "right": 5240, "bottom": 3580, "left": 3460}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727982f.jpg"} -{"rects": [{"solidity": 0.9958441524761654, "top": 490, "right": 3155, "bottom": 2095, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731472f.jpg"} -{"rects": [{"solidity": 0.9958441758955768, "top": 2145, "right": 3200, "bottom": 3765, "left": 765}, {"solidity": 0.995519935962197, "top": 4025, "right": 3160, "bottom": 5645, "left": 740}, {"solidity": 0.9958623875301599, "top": 475, "right": 3010, "bottom": 1880, "left": 1180}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726354f.jpg"} -{"rects": [{"solidity": 0.9958442323515946, "top": 305, "right": 3190, "bottom": 1940, "left": 765}, {"solidity": 0.9963560829336261, "top": 4045, "right": 3140, "bottom": 5680, "left": 715}, {"solidity": 0.9955523751151216, "top": 2160, "right": 3165, "bottom": 3800, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713191f.jpg"} -{"rects": [{"solidity": 0.9958442439259259, "top": 360, "right": 2740, "bottom": 3630, "left": 320}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721197f.jpg"} -{"rects": [{"solidity": 0.9958442757784768, "top": 2300, "right": 3050, "bottom": 3925, "left": 625}, {"solidity": 0.9964882124969421, "top": 420, "right": 3050, "bottom": 2040, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729913f.jpg"} -{"rects": [{"solidity": 0.9958443874995557, "top": 2365, "right": 3160, "bottom": 3990, "left": 745}, {"solidity": 0.9963148759352523, "top": 460, "right": 3125, "bottom": 2065, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718039f.jpg"} -{"rects": [{"solidity": 0.9958443949575201, "top": 390, "right": 3245, "bottom": 2010, "left": 830}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/705504f.jpg"} -{"rects": [{"solidity": 0.9958444910469431, "top": 400, "right": 3240, "bottom": 2025, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/711785f.jpg"} -{"rects": [{"solidity": 0.9958447514835611, "top": 790, "right": 3625, "bottom": 3225, "left": 1980}, {"solidity": 0.9948013289036545, "top": 1165, "right": 1725, "bottom": 2925, "left": 360}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724097f.jpg"} -{"rects": [{"solidity": 0.9958450374531835, "top": 585, "right": 2795, "bottom": 2105, "left": 375}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/734855f.jpg"} -{"rects": [{"solidity": 0.9958452066476694, "top": 700, "right": 2640, "bottom": 2065, "left": 850}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724940f.jpg"} -{"rects": [{"solidity": 0.9958453867418393, "top": 2220, "right": 3195, "bottom": 3850, "left": 760}, {"solidity": 0.99557292847381, "top": 4100, "right": 3120, "bottom": 5710, "left": 690}, {"solidity": 0.9994535323603173, "top": 395, "right": 3205, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724341f.jpg"} -{"rects": [{"solidity": 0.9958454549077432, "top": 2115, "right": 2740, "bottom": 3535, "left": 950}, {"solidity": 0.9958025234888584, "top": 660, "right": 2720, "bottom": 2075, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727739f.jpg"} -{"rects": [{"solidity": 0.9958454834376331, "top": 745, "right": 1995, "bottom": 3150, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710526f.jpg"} -{"rects": [{"solidity": 0.9958454840893269, "top": 4110, "right": 3060, "bottom": 5730, "left": 625}, {"solidity": 0.9986976206406017, "top": 380, "right": 3070, "bottom": 1990, "left": 665}, {"solidity": 0.9961710983263257, "top": 2245, "right": 3055, "bottom": 3850, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734713f.jpg"} -{"rects": [{"solidity": 0.9958455207616426, "top": 540, "right": 2070, "bottom": 2820, "left": 520}, {"solidity": 0.996849643114552, "top": 660, "right": 3840, "bottom": 2465, "left": 2635}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715802f.jpg"} -{"rects": [{"solidity": 0.995845545901811, "top": 760, "right": 3880, "bottom": 3165, "left": 2280}, {"solidity": 0.9957063370919297, "top": 765, "right": 2030, "bottom": 3170, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717466f.jpg"} -{"rects": [{"solidity": 0.99584554680502, "top": 735, "right": 4245, "bottom": 3160, "left": 2600}, {"solidity": 0.9990784602201995, "top": 1120, "right": 2530, "bottom": 2740, "left": 130}, {"solidity": 0.9963968542517772, "top": 715, "right": 5990, "bottom": 3130, "left": 4375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711777f.jpg"} -{"rects": [{"solidity": 0.9958455569829796, "top": 2150, "right": 3265, "bottom": 3790, "left": 820}, {"solidity": 0.9963455799147943, "top": 430, "right": 3290, "bottom": 2055, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706204f.jpg"} -{"rects": [{"solidity": 0.9958458439192137, "top": 3755, "right": 3220, "bottom": 5390, "left": 785}, {"solidity": 0.9986054799473182, "top": 1985, "right": 3225, "bottom": 3595, "left": 805}, {"solidity": 0.9971063563705062, "top": 225, "right": 3225, "bottom": 1810, "left": 830}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710686f.jpg"} -{"rects": [{"solidity": 0.9958460858606524, "top": 800, "right": 2145, "bottom": 3205, "left": 545}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723186f.jpg"} -{"rects": [{"solidity": 0.995846434532821, "top": 360, "right": 3135, "bottom": 1985, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719685f.jpg"} -{"rects": [{"solidity": 0.9958466163544858, "top": 2015, "right": 2675, "bottom": 3470, "left": 850}, {"solidity": 0.9954401611047181, "top": 585, "right": 2690, "bottom": 2020, "left": 850}, {"solidity": 0.9961784909124994, "top": 580, "right": 5290, "bottom": 2015, "left": 3450}, {"solidity": 0.993737216867898, "top": 2020, "right": 5235, "bottom": 3430, "left": 3445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705273f.jpg"} -{"rects": [{"solidity": 0.9958469097159863, "top": 385, "right": 3215, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715371f.jpg"} -{"rects": [{"solidity": 0.9958469804288549, "top": 830, "right": 2055, "bottom": 3250, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715078f.jpg"} -{"rects": [{"solidity": 0.9958472048827854, "top": 460, "right": 3005, "bottom": 1960, "left": 1060}, {"solidity": 0.9928285626346568, "top": 2195, "right": 3020, "bottom": 3665, "left": 1055}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/732808f.jpg"} -{"rects": [{"solidity": 0.9958474508229627, "top": 4100, "right": 3095, "bottom": 5730, "left": 665}, {"solidity": 0.9949930817002928, "top": 2205, "right": 3115, "bottom": 3840, "left": 675}, {"solidity": 0.9961112329261844, "top": 345, "right": 3130, "bottom": 1980, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713047f.jpg"} -{"rects": [{"solidity": 0.9958475048993716, "top": 465, "right": 5130, "bottom": 3660, "left": 1130}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720836f.jpg"} -{"rects": [{"solidity": 0.995847546554651, "top": 2325, "right": 3295, "bottom": 3955, "left": 860}, {"solidity": 0.9972303014064775, "top": 430, "right": 3275, "bottom": 2045, "left": 855}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733131f.jpg"} -{"rects": [{"solidity": 0.9958476318938898, "top": 420, "right": 3090, "bottom": 2010, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728663f.jpg"} -{"rects": [{"solidity": 0.9958477833437077, "top": 670, "right": 3340, "bottom": 2590, "left": 660}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714316f.jpg"} -{"rects": [{"solidity": 0.9958478964401295, "top": 410, "right": 3320, "bottom": 2030, "left": 895}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725703f.jpg"} -{"rects": [{"solidity": 0.995847913511255, "top": 750, "right": 2065, "bottom": 3165, "left": 460}], "shape": {"h": 3895, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723609f.jpg"} -{"rects": [{"solidity": 0.9958479801114709, "top": 2380, "right": 3150, "bottom": 4010, "left": 725}, {"solidity": 0.9965315025387971, "top": 615, "right": 3145, "bottom": 2235, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710466f.jpg"} -{"rects": [{"solidity": 0.9958481689525303, "top": 405, "right": 3180, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729440f.jpg"} -{"rects": [{"solidity": 0.9958481863385868, "top": 550, "right": 3155, "bottom": 2170, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722624f.jpg"} -{"rects": [{"solidity": 0.9958481971904791, "top": 665, "right": 2720, "bottom": 2055, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725291f.jpg"} -{"rects": [{"solidity": 0.9958484357728593, "top": 2260, "right": 3155, "bottom": 3885, "left": 730}, {"solidity": 0.9967959516898196, "top": 425, "right": 3120, "bottom": 2035, "left": 705}, {"solidity": 0.9967545638945233, "top": 4125, "right": 3160, "bottom": 5725, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734247f.jpg"} -{"rects": [{"solidity": 0.995848521105206, "top": 595, "right": 4955, "bottom": 3610, "left": 1185}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709900f.jpg"} -{"rects": [{"solidity": 0.9958489148653882, "top": 430, "right": 4965, "bottom": 3675, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722030f.jpg"} -{"rects": [{"solidity": 0.9958492263104419, "top": 510, "right": 3175, "bottom": 2110, "left": 795}, {"solidity": 0.9999449427128928, "top": 4105, "right": 3835, "bottom": 6010, "left": 2635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710899f.jpg"} -{"rects": [{"solidity": 0.9958492337815428, "top": 885, "right": 2675, "bottom": 2295, "left": 880}, {"solidity": 0.9947492807233868, "top": 905, "right": 5195, "bottom": 2270, "left": 3380}, {"solidity": 0.9946823345666846, "top": 2385, "right": 2700, "bottom": 3500, "left": 870}, {"solidity": 0.9945037747424036, "top": 2370, "right": 5205, "bottom": 3485, "left": 3380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727304f.jpg"} -{"rects": [{"solidity": 0.9958492882406244, "top": 655, "right": 2730, "bottom": 2090, "left": 920}, {"solidity": 0.994347451732005, "top": 2095, "right": 2730, "bottom": 3540, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727454f.jpg"} -{"rects": [{"solidity": 0.9958493279786161, "top": 760, "right": 2005, "bottom": 3160, "left": 400}, {"solidity": 0.9942866201229863, "top": 765, "right": 3855, "bottom": 3160, "left": 2260}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722587f.jpg"} -{"rects": [{"solidity": 0.9958493332232962, "top": 680, "right": 2745, "bottom": 2105, "left": 915}, {"solidity": 0.9957028481823802, "top": 2115, "right": 2750, "bottom": 3500, "left": 935}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704354f.jpg"} -{"rects": [{"solidity": 0.9958494050238594, "top": 1070, "right": 2180, "bottom": 3075, "left": 695}, {"solidity": 0.9971453676705239, "top": 1075, "right": 3835, "bottom": 3055, "left": 2375}, {"solidity": 0.996385640025991, "top": 1090, "right": 5485, "bottom": 3035, "left": 4045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708618f.jpg"} -{"rects": [{"solidity": 0.9958494142918609, "top": 395, "right": 3100, "bottom": 2025, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728695f.jpg"} -{"rects": [{"solidity": 0.995849479645926, "top": 440, "right": 3210, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701620f.jpg"} -{"rects": [{"solidity": 0.9958495059766117, "top": 570, "right": 2975, "bottom": 1980, "left": 1180}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727418f.jpg"} -{"rects": [{"solidity": 0.99584956844656, "top": 465, "right": 3065, "bottom": 1840, "left": 1260}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725698f.jpg"} -{"rects": [{"solidity": 0.9958496612165318, "top": 2160, "right": 3190, "bottom": 3795, "left": 770}, {"solidity": 0.9958794896259521, "top": 280, "right": 3175, "bottom": 1910, "left": 765}, {"solidity": 0.9965416747619973, "top": 4060, "right": 3210, "bottom": 5675, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719214f.jpg"} -{"rects": [{"solidity": 0.9958497673744707, "top": 770, "right": 2060, "bottom": 3200, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710981f.jpg"} -{"rects": [{"solidity": 0.9958498455393641, "top": 1900, "right": 2235, "bottom": 2980, "left": 730}, {"solidity": 0.9970987446189554, "top": 740, "right": 2110, "bottom": 1820, "left": 615}, {"solidity": 0.9995650454725188, "top": 3030, "right": 2230, "bottom": 4100, "left": 740}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517179.jpg"} -{"rects": [{"solidity": 0.9958499562129026, "top": 2340, "right": 3015, "bottom": 3760, "left": 1185}, {"solidity": 0.9939444870115426, "top": 535, "right": 2995, "bottom": 1970, "left": 1175}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/727837f.jpg"} -{"rects": [{"solidity": 0.9958500940340612, "top": 395, "right": 3085, "bottom": 2005, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729545f.jpg"} -{"rects": [{"solidity": 0.9958501429823126, "top": 405, "right": 3140, "bottom": 2040, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729805f.jpg"} -{"rects": [{"solidity": 0.9958502850489933, "top": 365, "right": 3160, "bottom": 1985, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711974f.jpg"} -{"rects": [{"solidity": 0.9958503477350676, "top": 495, "right": 3075, "bottom": 2070, "left": 1120}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704966f.jpg"} -{"rects": [{"solidity": 0.9958503521012071, "top": 385, "right": 3100, "bottom": 2005, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728312f.jpg"} -{"rects": [{"solidity": 0.9958503625814935, "top": 685, "right": 3260, "bottom": 2620, "left": 505}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704686f.jpg"} -{"rects": [{"solidity": 0.9958505035719399, "top": 2250, "right": 3190, "bottom": 3895, "left": 750}, {"solidity": 0.9967642497463095, "top": 360, "right": 3205, "bottom": 1995, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702167f.jpg"} -{"rects": [{"solidity": 0.995850622406639, "top": 420, "right": 3200, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/706560f.jpg"} -{"rects": [{"solidity": 0.9958507118712283, "top": 3200, "right": 3335, "bottom": 5135, "left": 605}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/712746f.jpg"} -{"rects": [{"solidity": 0.9958510139796423, "top": 2245, "right": 3200, "bottom": 3860, "left": 790}, {"solidity": 0.9986100152764021, "top": 410, "right": 3185, "bottom": 1990, "left": 815}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718334f.jpg"} -{"rects": [{"solidity": 0.9958517734797363, "top": 785, "right": 2060, "bottom": 3205, "left": 440}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722545f.jpg"} -{"rects": [{"solidity": 0.9958518652113841, "top": 700, "right": 1990, "bottom": 3135, "left": 375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731740f.jpg"} -{"rects": [{"solidity": 0.9958521418178636, "top": 790, "right": 3900, "bottom": 3205, "left": 2285}, {"solidity": 0.9959393443638035, "top": 800, "right": 2050, "bottom": 3210, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708664f.jpg"} -{"rects": [{"solidity": 0.9958521626856036, "top": 405, "right": 3070, "bottom": 2030, "left": 650}, {"solidity": 0.9976691726868824, "top": 2305, "right": 3075, "bottom": 3910, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734357f.jpg"} -{"rects": [{"solidity": 0.9958523447816026, "top": 425, "right": 5770, "bottom": 2060, "left": 3355}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706533f.jpg"} -{"rects": [{"solidity": 0.9958523461181464, "top": 405, "right": 3205, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706536f.jpg"} -{"rects": [{"solidity": 0.9958524246986477, "top": 855, "right": 3875, "bottom": 3260, "left": 2255}, {"solidity": 0.9944410513010619, "top": 830, "right": 2055, "bottom": 3245, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717324f.jpg"} -{"rects": [{"solidity": 0.9958525452396951, "top": 840, "right": 2270, "bottom": 3550, "left": 460}], "shape": {"h": 4405, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/711646f.jpg"} -{"rects": [{"solidity": 0.9958527331460583, "top": 470, "right": 3200, "bottom": 2090, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720370f.jpg"} -{"rects": [{"solidity": 0.9958527336437383, "top": 365, "right": 3095, "bottom": 2000, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729633f.jpg"} -{"rects": [{"solidity": 0.9958530209297417, "top": 755, "right": 3880, "bottom": 3175, "left": 2255}, {"solidity": 0.9979457142669322, "top": 750, "right": 2010, "bottom": 3145, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718395f.jpg"} -{"rects": [{"solidity": 0.9958531242683635, "top": 405, "right": 3155, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722298f.jpg"} -{"rects": [{"solidity": 0.9958532289703599, "top": 480, "right": 2925, "bottom": 2095, "left": 885}, {"solidity": 0.9976361999099504, "top": 2335, "right": 2880, "bottom": 3755, "left": 905}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718298f.jpg"} -{"rects": [{"solidity": 0.9958533609346679, "top": 795, "right": 2020, "bottom": 3215, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733295f.jpg"} -{"rects": [{"solidity": 0.9958535447909165, "top": 820, "right": 3935, "bottom": 3260, "left": 2260}, {"solidity": 0.9964878743460871, "top": 855, "right": 5765, "bottom": 3275, "left": 4140}, {"solidity": 0.9979847861008186, "top": 850, "right": 2065, "bottom": 3265, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720223f.jpg"} -{"rects": [{"solidity": 0.9958536782212178, "top": 440, "right": 3290, "bottom": 2310, "left": 610}, {"solidity": 0.996926759405376, "top": 2415, "right": 3300, "bottom": 4005, "left": 905}, {"solidity": 0.9962689593641009, "top": 4130, "right": 3295, "bottom": 5695, "left": 915}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717816f.jpg"} -{"rects": [{"solidity": 0.9958536975549874, "top": 770, "right": 3920, "bottom": 3180, "left": 2300}, {"solidity": 0.9978659061131037, "top": 785, "right": 2020, "bottom": 3180, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724231f.jpg"} -{"rects": [{"solidity": 0.995854267440839, "top": 280, "right": 5160, "bottom": 3560, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725822f.jpg"} -{"rects": [{"solidity": 0.9958545213353969, "top": 405, "right": 3155, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702933f.jpg"} -{"rects": [{"solidity": 0.9958546517366208, "top": 780, "right": 2025, "bottom": 3220, "left": 380}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705558f.jpg"} -{"rects": [{"solidity": 0.995855208621166, "top": 380, "right": 3175, "bottom": 1980, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712714f.jpg"} -{"rects": [{"solidity": 0.9958552557480974, "top": 895, "right": 2055, "bottom": 3315, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728787f.jpg"} -{"rects": [{"solidity": 0.9958556017812636, "top": 400, "right": 3125, "bottom": 2050, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704860f.jpg"} -{"rects": [{"solidity": 0.9958556746736745, "top": 2230, "right": 3225, "bottom": 3855, "left": 790}, {"solidity": 0.9949945839328731, "top": 380, "right": 3235, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731007f.jpg"} -{"rects": [{"solidity": 0.9958560961270988, "top": 2105, "right": 5350, "bottom": 3555, "left": 3520}, {"solidity": 0.9971371466089912, "top": 655, "right": 2740, "bottom": 2085, "left": 910}, {"solidity": 0.9961508318369857, "top": 635, "right": 5330, "bottom": 2045, "left": 3520}, {"solidity": 0.9948277515402872, "top": 2240, "right": 2760, "bottom": 3395, "left": 915}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707221f.jpg"} -{"rects": [{"solidity": 0.9958563185593812, "top": 570, "right": 3430, "bottom": 2210, "left": 990}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707276f.jpg"} -{"rects": [{"solidity": 0.9958564039956341, "top": 2220, "right": 3170, "bottom": 3810, "left": 780}, {"solidity": 0.996925605645706, "top": 400, "right": 3170, "bottom": 1985, "left": 780}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/730230f.jpg"} -{"rects": [{"solidity": 0.9958566618150086, "top": 450, "right": 3130, "bottom": 2050, "left": 740}, {"solidity": 0.996409353683663, "top": 2230, "right": 3150, "bottom": 3825, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717694f.jpg"} -{"rects": [{"solidity": 0.9958567193484424, "top": 2155, "right": 3185, "bottom": 3785, "left": 775}, {"solidity": 0.9970816867720466, "top": 455, "right": 3190, "bottom": 2065, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707567f.jpg"} -{"rects": [{"solidity": 0.9958568126831003, "top": 860, "right": 2235, "bottom": 3570, "left": 430}], "shape": {"h": 4415, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711353f.jpg"} -{"rects": [{"solidity": 0.9958570705458673, "top": 405, "right": 3155, "bottom": 2025, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715568f.jpg"} -{"rects": [{"solidity": 0.9958570915556489, "top": 3980, "right": 2885, "bottom": 5495, "left": 970}, {"solidity": 0.9883716348448165, "top": 2165, "right": 2905, "bottom": 3675, "left": 985}, {"solidity": 0.994141821580456, "top": 400, "right": 2895, "bottom": 1895, "left": 1010}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702099f.jpg"} -{"rects": [{"solidity": 0.9958572839215533, "top": 765, "right": 2020, "bottom": 3170, "left": 405}, {"solidity": 0.9960505503358342, "top": 765, "right": 3825, "bottom": 3165, "left": 2220}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713337f.jpg"} -{"rects": [{"solidity": 0.9958574243354114, "top": 690, "right": 2545, "bottom": 2185, "left": 440}, {"solidity": 0.9961393096224967, "top": 2450, "right": 2505, "bottom": 3940, "left": 415}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716006f.jpg"} -{"rects": [{"solidity": 0.995857470361781, "top": 435, "right": 3175, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714778f.jpg"} -{"rects": [{"solidity": 0.9958576018195419, "top": 515, "right": 2500, "bottom": 1965, "left": 475}, {"solidity": 0.9956183441814769, "top": 2340, "right": 2510, "bottom": 3785, "left": 495}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508093.jpg"} -{"rects": [{"solidity": 0.9958576386922436, "top": 2395, "right": 2530, "bottom": 3890, "left": 430}, {"solidity": 0.9976387249114522, "top": 625, "right": 2525, "bottom": 2060, "left": 510}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716004f.jpg"} -{"rects": [{"solidity": 0.9958576410390119, "top": 760, "right": 2045, "bottom": 3165, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730434f.jpg"} -{"rects": [{"solidity": 0.995857891823244, "top": 775, "right": 2010, "bottom": 3185, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718362f.jpg"} -{"rects": [{"solidity": 0.9958580865076597, "top": 385, "right": 3195, "bottom": 1990, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725965f.jpg"} -{"rects": [{"solidity": 0.9958584278654534, "top": 590, "right": 2685, "bottom": 1955, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706124f.jpg"} -{"rects": [{"solidity": 0.9958584629720705, "top": 450, "right": 3215, "bottom": 2060, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706845f.jpg"} -{"rects": [{"solidity": 0.9958584865927278, "top": 795, "right": 1945, "bottom": 3175, "left": 350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718820f.jpg"} -{"rects": [{"solidity": 0.9958585235048388, "top": 780, "right": 3870, "bottom": 3180, "left": 2260}, {"solidity": 0.99811135104437, "top": 790, "right": 2010, "bottom": 3180, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723650f.jpg"} -{"rects": [{"solidity": 0.995858621232518, "top": 900, "right": 3905, "bottom": 3320, "left": 2280}, {"solidity": 0.996459884630458, "top": 895, "right": 2015, "bottom": 3335, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731244f.jpg"} -{"rects": [{"solidity": 0.9958586336387069, "top": 2860, "right": 2890, "bottom": 5280, "left": 1240}, {"solidity": 0.994097611951852, "top": 210, "right": 2855, "bottom": 2645, "left": 1195}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710305f.jpg"} -{"rects": [{"solidity": 0.9958587584674176, "top": 235, "right": 3160, "bottom": 1870, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720593f.jpg"} -{"rects": [{"solidity": 0.9958587838823091, "top": 815, "right": 5620, "bottom": 3235, "left": 4000}, {"solidity": 0.9963591129357048, "top": 775, "right": 1975, "bottom": 3195, "left": 355}, {"solidity": 0.996726704230857, "top": 805, "right": 3785, "bottom": 3210, "left": 2170}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719747f.jpg"} -{"rects": [{"solidity": 0.9958589679995459, "top": 680, "right": 3290, "bottom": 2590, "left": 595}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714324f.jpg"} -{"rects": [{"solidity": 0.9958590049876357, "top": 380, "right": 3020, "bottom": 1870, "left": 1000}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701051f.jpg"} -{"rects": [{"solidity": 0.9958590631503531, "top": 415, "right": 3010, "bottom": 1935, "left": 1055}, {"solidity": 0.9952741677670442, "top": 2140, "right": 2920, "bottom": 3550, "left": 1105}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/717866f.jpg"} -{"rects": [{"solidity": 0.995859176297354, "top": 405, "right": 2915, "bottom": 1900, "left": 1025}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700366f.jpg"} -{"rects": [{"solidity": 0.9958595925545948, "top": 2430, "right": 2510, "bottom": 3915, "left": 425}, {"solidity": 0.9919693008832542, "top": 675, "right": 2525, "bottom": 2155, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716202f.jpg"} -{"rects": [{"solidity": 0.9958596552516068, "top": 455, "right": 3120, "bottom": 2075, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729214f.jpg"} -{"rects": [{"solidity": 0.995859722937135, "top": 480, "right": 3605, "bottom": 2130, "left": 1165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704195f.jpg"} -{"rects": [{"solidity": 0.995859958599586, "top": 625, "right": 2690, "bottom": 2010, "left": 945}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706470f.jpg"} -{"rects": [{"solidity": 0.995860046574476, "top": 150, "right": 2820, "bottom": 2585, "left": 1190}, {"solidity": 0.9966537801376345, "top": 2600, "right": 3265, "bottom": 4220, "left": 835}, {"solidity": 0.996109960169584, "top": 4280, "right": 3260, "bottom": 5915, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734138f.jpg"} -{"rects": [{"solidity": 0.9958600539777651, "top": 660, "right": 2725, "bottom": 2080, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726428f.jpg"} -{"rects": [{"solidity": 0.9958600966737456, "top": 850, "right": 1985, "bottom": 3265, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713741f.jpg"} -{"rects": [{"solidity": 0.9958601914289773, "top": 780, "right": 2050, "bottom": 3175, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714192f.jpg"} -{"rects": [{"solidity": 0.9958603028717945, "top": 775, "right": 3875, "bottom": 3195, "left": 2240}, {"solidity": 0.9968612538141111, "top": 785, "right": 2040, "bottom": 3185, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720435f.jpg"} -{"rects": [{"solidity": 0.995860377996592, "top": 440, "right": 3130, "bottom": 2055, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721895f.jpg"} -{"rects": [{"solidity": 0.9958605895368292, "top": 825, "right": 2015, "bottom": 3245, "left": 380}, {"solidity": 0.998155659738568, "top": 830, "right": 3855, "bottom": 3240, "left": 2235}, {"solidity": 0.9966709239077584, "top": 840, "right": 5720, "bottom": 3245, "left": 4105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730252f.jpg"} -{"rects": [{"solidity": 0.9958608104184812, "top": 500, "right": 3145, "bottom": 3735, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714600f.jpg"} -{"rects": [{"solidity": 0.9958609487527398, "top": 790, "right": 2025, "bottom": 3200, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719783f.jpg"} -{"rects": [{"solidity": 0.9958612180710799, "top": 2555, "right": 3565, "bottom": 4390, "left": 830}, {"solidity": 0.9956863914829176, "top": 470, "right": 3565, "bottom": 2295, "left": 840}], "shape": {"h": 6865, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/701641f.jpg"} -{"rects": [{"solidity": 0.9958614883861411, "top": 845, "right": 5730, "bottom": 3275, "left": 4110}, {"solidity": 0.9966727445823181, "top": 835, "right": 3890, "bottom": 3265, "left": 2270}, {"solidity": 0.9985753679480713, "top": 835, "right": 2030, "bottom": 3245, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734266f.jpg"} -{"rects": [{"solidity": 0.9958616203125201, "top": 415, "right": 3160, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726856f.jpg"} -{"rects": [{"solidity": 0.995861664107758, "top": 2280, "right": 3175, "bottom": 3905, "left": 750}, {"solidity": 0.9957040927399168, "top": 450, "right": 3180, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715737f.jpg"} -{"rects": [{"solidity": 0.9958617501216244, "top": 505, "right": 3245, "bottom": 3940, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714507f.jpg"} -{"rects": [{"solidity": 0.9958618243442963, "top": 550, "right": 3125, "bottom": 2160, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710099f.jpg"} -{"rects": [{"solidity": 0.9958620080305515, "top": 2135, "right": 2790, "bottom": 3560, "left": 985}, {"solidity": 0.9946944622832584, "top": 510, "right": 4935, "bottom": 1945, "left": 3145}, {"solidity": 0.9968606813032744, "top": 525, "right": 2760, "bottom": 1910, "left": 970}, {"solidity": 0.9937692955374684, "top": 2180, "right": 4945, "bottom": 3560, "left": 3135}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727731f.jpg"} -{"rects": [{"solidity": 0.995862114443034, "top": 550, "right": 3130, "bottom": 2155, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709624f.jpg"} -{"rects": [{"solidity": 0.9958623026297468, "top": 3165, "right": 3310, "bottom": 5090, "left": 490}, {"solidity": 0.9959033950321057, "top": 815, "right": 3310, "bottom": 2745, "left": 505}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725766f.jpg"} -{"rects": [{"solidity": 0.9958624112965642, "top": 460, "right": 3140, "bottom": 2090, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712273f.jpg"} -{"rects": [{"solidity": 0.9958624, "top": 2270, "right": 3315, "bottom": 3900, "left": 880}, {"solidity": 0.9957691987419691, "top": 410, "right": 3325, "bottom": 2045, "left": 895}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725808f.jpg"} -{"rects": [{"solidity": 0.9958626050811579, "top": 4060, "right": 3160, "bottom": 5680, "left": 725}, {"solidity": 0.9968423523510327, "top": 2230, "right": 3185, "bottom": 3855, "left": 765}, {"solidity": 0.9955761594510197, "top": 405, "right": 3210, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3705}, "file": "/usr/local/google/home/danvk/milstein/713236f.jpg"} -{"rects": [{"solidity": 0.9958626675667857, "top": 4080, "right": 3060, "bottom": 5715, "left": 640}, {"solidity": 0.9975673888145054, "top": 2250, "right": 3055, "bottom": 3870, "left": 645}, {"solidity": 0.9993373587442786, "top": 400, "right": 3060, "bottom": 2010, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726615f.jpg"} -{"rects": [{"solidity": 0.9958627621843087, "top": 465, "right": 5080, "bottom": 3740, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702149f.jpg"} -{"rects": [{"solidity": 0.995862784514623, "top": 430, "right": 3210, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732433f.jpg"} -{"rects": [{"solidity": 0.9958628697438199, "top": 1215, "right": 3755, "bottom": 5805, "left": 380}], "shape": {"h": 6900, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708809f.jpg"} -{"rects": [{"solidity": 0.9958629015635582, "top": 2070, "right": 2690, "bottom": 3480, "left": 860}, {"solidity": 0.9955617170669433, "top": 610, "right": 2655, "bottom": 2030, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707138f.jpg"} -{"rects": [{"solidity": 0.9958629038792426, "top": 500, "right": 2960, "bottom": 1935, "left": 1105}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711825f.jpg"} -{"rects": [{"solidity": 0.9958630148399522, "top": 810, "right": 2010, "bottom": 3240, "left": 380}, {"solidity": 0.9955898318079757, "top": 790, "right": 3840, "bottom": 3220, "left": 2230}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719164f.jpg"} -{"rects": [{"solidity": 0.9958630317701229, "top": 425, "right": 3090, "bottom": 2070, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703748f.jpg"} -{"rects": [{"solidity": 0.9958631064309891, "top": 560, "right": 3105, "bottom": 2150, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724891f.jpg"} -{"rects": [{"solidity": 0.9958631082831407, "top": 645, "right": 2750, "bottom": 2065, "left": 940}, {"solidity": 0.9948565106009709, "top": 2100, "right": 2775, "bottom": 3515, "left": 965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725460f.jpg"} -{"rects": [{"solidity": 0.9958632856135697, "top": 410, "right": 3175, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701248f.jpg"} -{"rects": [{"solidity": 0.9958634753883219, "top": 715, "right": 3875, "bottom": 3130, "left": 2245}, {"solidity": 0.9972781076552011, "top": 715, "right": 2010, "bottom": 3125, "left": 385}, {"solidity": 0.9957922903901342, "top": 705, "right": 5735, "bottom": 3120, "left": 4100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733459f.jpg"} -{"rects": [{"solidity": 0.9958635918829831, "top": 795, "right": 2360, "bottom": 3210, "left": 720}, {"solidity": 0.997647841862599, "top": 790, "right": 4095, "bottom": 3200, "left": 2475}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729721f.jpg"} -{"rects": [{"solidity": 0.9958636705639997, "top": 555, "right": 3515, "bottom": 4595, "left": 260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725031f.jpg"} -{"rects": [{"solidity": 0.9958637703447392, "top": 395, "right": 3150, "bottom": 2040, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728786f.jpg"} -{"rects": [{"solidity": 0.9958641180810831, "top": 775, "right": 2090, "bottom": 3170, "left": 500}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709780f.jpg"} -{"rects": [{"solidity": 0.9958641249203085, "top": 255, "right": 5065, "bottom": 3775, "left": 1075}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702059f.jpg"} -{"rects": [{"solidity": 0.9958644622253658, "top": 635, "right": 3295, "bottom": 2685, "left": 455}, {"solidity": 0.9959256548450773, "top": 3245, "right": 3265, "bottom": 5275, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729211f.jpg"} -{"rects": [{"solidity": 0.9958645418192306, "top": 485, "right": 3120, "bottom": 3830, "left": 860}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714156f.jpg"} -{"rects": [{"solidity": 0.9958645703460225, "top": 955, "right": 2070, "bottom": 3375, "left": 460}, {"solidity": 0.9944010134402774, "top": 1010, "right": 5745, "bottom": 3365, "left": 4150}, {"solidity": 0.9964684481460212, "top": 1025, "right": 3885, "bottom": 3375, "left": 2325}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724788f.jpg"} -{"rects": [{"solidity": 0.9958645771212373, "top": 845, "right": 2055, "bottom": 3260, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730237f.jpg"} -{"rects": [{"solidity": 0.9958646616541353, "top": 690, "right": 1955, "bottom": 2095, "left": 520}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723758f.jpg"} -{"rects": [{"solidity": 0.9958647576796397, "top": 635, "right": 3270, "bottom": 2445, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709992f.jpg"} -{"rects": [{"solidity": 0.9958648150263548, "top": 425, "right": 3075, "bottom": 2035, "left": 665}, {"solidity": 0.9968870328472852, "top": 2330, "right": 3070, "bottom": 3925, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720925f.jpg"} -{"rects": [{"solidity": 0.9958649761874115, "top": 2265, "right": 3175, "bottom": 3895, "left": 755}, {"solidity": 0.9943519333255857, "top": 470, "right": 3165, "bottom": 2075, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722652f.jpg"} -{"rects": [{"solidity": 0.9958650553941649, "top": 785, "right": 3905, "bottom": 3215, "left": 2275}, {"solidity": 0.9993435307053002, "top": 815, "right": 2035, "bottom": 3230, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720411f.jpg"} -{"rects": [{"solidity": 0.9958651461283909, "top": 415, "right": 3170, "bottom": 2035, "left": 750}, {"solidity": 0.9960041222680251, "top": 2230, "right": 3170, "bottom": 3845, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700583f.jpg"} -{"rects": [{"solidity": 0.9958651676689035, "top": 415, "right": 3125, "bottom": 2025, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729709f.jpg"} -{"rects": [{"solidity": 0.9958652255855994, "top": 4075, "right": 3240, "bottom": 5695, "left": 810}, {"solidity": 0.996416323070402, "top": 380, "right": 3255, "bottom": 2000, "left": 830}, {"solidity": 0.9956371023652516, "top": 2235, "right": 3260, "bottom": 3850, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734094f.jpg"} -{"rects": [{"solidity": 0.9958653165138492, "top": 730, "right": 2030, "bottom": 3165, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720724f.jpg"} -{"rects": [{"solidity": 0.9958654180575917, "top": 800, "right": 2020, "bottom": 3210, "left": 400}, {"solidity": 0.9986771622680951, "top": 805, "right": 3855, "bottom": 3205, "left": 2250}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729698f.jpg"} -{"rects": [{"solidity": 0.995865448420193, "top": 2275, "right": 3110, "bottom": 3935, "left": 670}, {"solidity": 0.9980511280908142, "top": 430, "right": 3115, "bottom": 2050, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707508f.jpg"} -{"rects": [{"solidity": 0.9958655551337324, "top": 890, "right": 2535, "bottom": 3585, "left": 735}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708847f.jpg"} -{"rects": [{"solidity": 0.9958656154584102, "top": 630, "right": 2715, "bottom": 2055, "left": 885}, {"solidity": 0.9961165904349615, "top": 2150, "right": 2720, "bottom": 3560, "left": 890}, {"solidity": 0.9968943158405041, "top": 585, "right": 5120, "bottom": 2010, "left": 3360}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706821f.jpg"} -{"rects": [{"solidity": 0.9958656230123187, "top": 835, "right": 3860, "bottom": 3250, "left": 2245}, {"solidity": 0.997554112769321, "top": 840, "right": 1975, "bottom": 3240, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730330f.jpg"} -{"rects": [{"solidity": 0.9958658576249136, "top": 480, "right": 3580, "bottom": 2305, "left": 860}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711308f.jpg"} -{"rects": [{"solidity": 0.9958659330183877, "top": 1195, "right": 5480, "bottom": 2810, "left": 675}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719815f.jpg"} -{"rects": [{"solidity": 0.9958660440539058, "top": 430, "right": 3200, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711947f.jpg"} -{"rects": [{"solidity": 0.9958661184962315, "top": 415, "right": 3255, "bottom": 2325, "left": 605}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/700628f.jpg"} -{"rects": [{"solidity": 0.9958661397761488, "top": 360, "right": 3150, "bottom": 1965, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715430f.jpg"} -{"rects": [{"solidity": 0.9958667093880167, "top": 325, "right": 3160, "bottom": 1975, "left": 730}, {"solidity": 0.9953559816196014, "top": 2180, "right": 3145, "bottom": 3820, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719650f.jpg"} -{"rects": [{"solidity": 0.9958668160717145, "top": 2275, "right": 3095, "bottom": 3915, "left": 670}, {"solidity": 0.9965460187474248, "top": 4115, "right": 3075, "bottom": 5745, "left": 660}, {"solidity": 0.9982783069911073, "top": 425, "right": 3090, "bottom": 2050, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730248f.jpg"} -{"rects": [{"solidity": 0.9958671926406856, "top": 865, "right": 3885, "bottom": 3280, "left": 2270}, {"solidity": 0.9957578946684597, "top": 865, "right": 2055, "bottom": 3280, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710079f.jpg"} -{"rects": [{"solidity": 0.9958672045619995, "top": 895, "right": 2265, "bottom": 3620, "left": 430}, {"solidity": 0.9953880297714145, "top": 890, "right": 4340, "bottom": 3615, "left": 2525}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711244f.jpg"} -{"rects": [{"solidity": 0.995867327290203, "top": 400, "right": 3160, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/711943f.jpg"} -{"rects": [{"solidity": 0.9958674195413876, "top": 825, "right": 3795, "bottom": 3215, "left": 2170}, {"solidity": 0.9973492076931594, "top": 810, "right": 1905, "bottom": 3195, "left": 285}, {"solidity": 0.9972679226265078, "top": 820, "right": 5615, "bottom": 3215, "left": 4030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708040f.jpg"} -{"rects": [{"solidity": 0.9958674725475126, "top": 780, "right": 2055, "bottom": 3180, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731594f.jpg"} -{"rects": [{"solidity": 0.9958676794527311, "top": 750, "right": 3190, "bottom": 2670, "left": 435}, {"solidity": 0.9975752997368165, "top": 3345, "right": 3200, "bottom": 5225, "left": 455}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706916f.jpg"} -{"rects": [{"solidity": 0.9958676876676916, "top": 785, "right": 2030, "bottom": 3195, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716991f.jpg"} -{"rects": [{"solidity": 0.9958678219547785, "top": 445, "right": 3085, "bottom": 2085, "left": 660}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705004f.jpg"} -{"rects": [{"solidity": 0.9958678477070544, "top": 2260, "right": 3330, "bottom": 3895, "left": 890}, {"solidity": 0.9983101296207393, "top": 4090, "right": 3310, "bottom": 5715, "left": 890}, {"solidity": 0.9966997655096547, "top": 400, "right": 3335, "bottom": 2020, "left": 910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734743f.jpg"} -{"rects": [{"solidity": 0.9958678481370027, "top": 765, "right": 3935, "bottom": 3205, "left": 2295}, {"solidity": 0.995743345743184, "top": 735, "right": 2045, "bottom": 3160, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723060f.jpg"} -{"rects": [{"solidity": 0.9958678748979027, "top": 380, "right": 3195, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727298f.jpg"} -{"rects": [{"solidity": 0.9958679008552261, "top": 2195, "right": 3215, "bottom": 3825, "left": 785}, {"solidity": 0.9950115081373141, "top": 370, "right": 3205, "bottom": 1990, "left": 800}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/710068f.jpg"} -{"rects": [{"solidity": 0.9958679534575388, "top": 495, "right": 3935, "bottom": 2585, "left": 2450}, {"solidity": 0.997181211343786, "top": 485, "right": 2160, "bottom": 2570, "left": 680}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716192f.jpg"} -{"rects": [{"solidity": 0.9958682981365362, "top": 2095, "right": 5135, "bottom": 3620, "left": 3255}, {"solidity": 0.9967428072262285, "top": 375, "right": 2080, "bottom": 1830, "left": 210}, {"solidity": 0.9979921081932235, "top": 375, "right": 4030, "bottom": 1830, "left": 2170}, {"solidity": 0.9969027230810197, "top": 385, "right": 6010, "bottom": 1835, "left": 4150}, {"solidity": 0.9977582777582777, "top": 2095, "right": 3105, "bottom": 3545, "left": 1245}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722033f.jpg"} -{"rects": [{"solidity": 0.9958683891723763, "top": 815, "right": 5540, "bottom": 3185, "left": 3925}, {"solidity": 0.9977901224555997, "top": 825, "right": 1885, "bottom": 3145, "left": 275}, {"solidity": 0.9972422779995909, "top": 960, "right": 3735, "bottom": 3000, "left": 2090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711925f.jpg"} -{"rects": [{"solidity": 0.995869470108346, "top": 4055, "right": 3020, "bottom": 5680, "left": 590}, {"solidity": 0.997027689924482, "top": 2220, "right": 3030, "bottom": 3830, "left": 605}, {"solidity": 0.9958742086305348, "top": 375, "right": 3035, "bottom": 1990, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730616f.jpg"} -{"rects": [{"solidity": 0.9958695001496558, "top": 1130, "right": 2225, "bottom": 2575, "left": 320}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731248f.jpg"} -{"rects": [{"solidity": 0.9958697030282343, "top": 565, "right": 2740, "bottom": 1985, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705436f.jpg"} -{"rects": [{"solidity": 0.9958697803987064, "top": 2265, "right": 3190, "bottom": 3890, "left": 765}, {"solidity": 0.9988259551716512, "top": 500, "right": 3190, "bottom": 2105, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709270f.jpg"} -{"rects": [{"solidity": 0.9958698715941121, "top": 2065, "right": 3185, "bottom": 3670, "left": 775}, {"solidity": 0.997640262012287, "top": 335, "right": 3185, "bottom": 1910, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734624f.jpg"} -{"rects": [{"solidity": 0.9958698902404763, "top": 2310, "right": 3205, "bottom": 3925, "left": 780}, {"solidity": 0.9944834633244086, "top": 445, "right": 3190, "bottom": 2065, "left": 785}, {"solidity": 0.9983127678113956, "top": 4135, "right": 3205, "bottom": 5745, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734470f.jpg"} -{"rects": [{"solidity": 0.9958699377024176, "top": 760, "right": 2020, "bottom": 3150, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714935f.jpg"} -{"rects": [{"solidity": 0.9958700130809702, "top": 2290, "right": 3130, "bottom": 3935, "left": 710}, {"solidity": 0.9985954647102417, "top": 445, "right": 3135, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718029f.jpg"} -{"rects": [{"solidity": 0.9958700884704486, "top": 405, "right": 3220, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733975f.jpg"} -{"rects": [{"solidity": 0.9958703503854005, "top": 835, "right": 2060, "bottom": 3225, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713304f.jpg"} -{"rects": [{"solidity": 0.9958706634351381, "top": 785, "right": 3070, "bottom": 2220, "left": 1040}], "shape": {"h": 2980, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1507310.jpg"} -{"rects": [{"solidity": 0.9958708164639115, "top": 855, "right": 3870, "bottom": 3270, "left": 2245}, {"solidity": 0.9968280429543959, "top": 870, "right": 2005, "bottom": 3300, "left": 400}, {"solidity": 0.9965265830016815, "top": 855, "right": 5740, "bottom": 3260, "left": 4125}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732207f.jpg"} -{"rects": [{"solidity": 0.9958709016729741, "top": 780, "right": 3890, "bottom": 3185, "left": 2290}, {"solidity": 0.9963077510877477, "top": 790, "right": 2050, "bottom": 3185, "left": 455}, {"solidity": 0.9894946429636304, "top": 800, "right": 5745, "bottom": 3190, "left": 4140}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720389f.jpg"} -{"rects": [{"solidity": 0.9958709389873136, "top": 2240, "right": 3105, "bottom": 3895, "left": 665}, {"solidity": 0.9972261771911597, "top": 400, "right": 3115, "bottom": 2025, "left": 695}, {"solidity": 0.9962476183069565, "top": 4140, "right": 3065, "bottom": 5765, "left": 655}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/719091f.jpg"} -{"rects": [{"solidity": 0.9958712553058556, "top": 695, "right": 2690, "bottom": 3540, "left": 620}, {"solidity": 0.9952659808547812, "top": 705, "right": 5330, "bottom": 3535, "left": 3275}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709489f.jpg"} -{"rects": [{"solidity": 0.995871332591725, "top": 3165, "right": 3265, "bottom": 5065, "left": 545}, {"solidity": 0.9957440435330679, "top": 645, "right": 3295, "bottom": 2530, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714898f.jpg"} -{"rects": [{"solidity": 0.9958714291256612, "top": 385, "right": 3130, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728847f.jpg"} -{"rects": [{"solidity": 0.9958714466981042, "top": 2145, "right": 2765, "bottom": 3585, "left": 905}, {"solidity": 0.9990562903544208, "top": 665, "right": 2765, "bottom": 2090, "left": 930}, {"solidity": 0.9971499995136518, "top": 635, "right": 5280, "bottom": 2035, "left": 3430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702738f.jpg"} -{"rects": [{"solidity": 0.9958716097083332, "top": 430, "right": 3105, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729317f.jpg"} -{"rects": [{"solidity": 0.9958716310951862, "top": 2235, "right": 2660, "bottom": 3665, "left": 850}, {"solidity": 0.9968949851817189, "top": 760, "right": 2655, "bottom": 2190, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727970f.jpg"} -{"rects": [{"solidity": 0.9958717370286819, "top": 4000, "right": 3235, "bottom": 5625, "left": 810}, {"solidity": 0.9962909281072758, "top": 2190, "right": 3205, "bottom": 3810, "left": 790}, {"solidity": 0.9968742197708842, "top": 405, "right": 3180, "bottom": 2015, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730909f.jpg"} -{"rects": [{"solidity": 0.9958720330237358, "top": 735, "right": 3860, "bottom": 3130, "left": 2250}, {"solidity": 0.9962797029048714, "top": 740, "right": 1990, "bottom": 3130, "left": 395}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731631f.jpg"} -{"rects": [{"solidity": 0.9958720993782431, "top": 410, "right": 3205, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720228f.jpg"} -{"rects": [{"solidity": 0.995872285159515, "top": 800, "right": 2015, "bottom": 3215, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705669f.jpg"} -{"rects": [{"solidity": 0.9958723987013858, "top": 935, "right": 5755, "bottom": 3365, "left": 4125}, {"solidity": 0.9948834273667753, "top": 925, "right": 3915, "bottom": 3350, "left": 2290}, {"solidity": 0.9955818090413395, "top": 935, "right": 2010, "bottom": 3360, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731232f.jpg"} -{"rects": [{"solidity": 0.9958724202626642, "top": 1360, "right": 3270, "bottom": 4755, "left": 635}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717669f.jpg"} -{"rects": [{"solidity": 0.9958726002935887, "top": 2260, "right": 3110, "bottom": 3900, "left": 660}, {"solidity": 0.9964620612874852, "top": 410, "right": 3105, "bottom": 2020, "left": 690}, {"solidity": 0.9915004342134256, "top": 4125, "right": 3075, "bottom": 5765, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731814f.jpg"} -{"rects": [{"solidity": 0.99587299099653, "top": 2130, "right": 3375, "bottom": 4205, "left": 350}, {"solidity": 0.9967525766546702, "top": 415, "right": 3165, "bottom": 2040, "left": 745}, {"solidity": 0.996942005342554, "top": 4275, "right": 3125, "bottom": 5885, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715306f.jpg"} -{"rects": [{"solidity": 0.9958730086766826, "top": 880, "right": 5125, "bottom": 3215, "left": 1020}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726210f.jpg"} -{"rects": [{"solidity": 0.9958730384794655, "top": 430, "right": 3360, "bottom": 2045, "left": 945}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725927f.jpg"} -{"rects": [{"solidity": 0.9958731200248648, "top": 505, "right": 3590, "bottom": 2185, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727483f.jpg"} -{"rects": [{"solidity": 0.9958732418190929, "top": 2270, "right": 3090, "bottom": 3920, "left": 655}, {"solidity": 0.9956749672346002, "top": 400, "right": 3110, "bottom": 2035, "left": 670}, {"solidity": 0.9972523249558066, "top": 4130, "right": 3085, "bottom": 5745, "left": 650}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/701350f.jpg"} -{"rects": [{"solidity": 0.9958732432757954, "top": 890, "right": 5670, "bottom": 3340, "left": 3995}, {"solidity": 0.995017197141036, "top": 855, "right": 3830, "bottom": 3275, "left": 2190}, {"solidity": 0.9966366319205878, "top": 825, "right": 1985, "bottom": 3230, "left": 365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714080f.jpg"} -{"rects": [{"solidity": 0.9958732585183752, "top": 805, "right": 2020, "bottom": 3215, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720366f.jpg"} -{"rects": [{"solidity": 0.9958732900979208, "top": 860, "right": 2260, "bottom": 3245, "left": 675}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709591f.jpg"} -{"rects": [{"solidity": 0.9958732918932247, "top": 415, "right": 3180, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703759f.jpg"} -{"rects": [{"solidity": 0.9958736888508564, "top": 4130, "right": 3075, "bottom": 5745, "left": 645}, {"solidity": 0.9971637642520846, "top": 410, "right": 3025, "bottom": 2000, "left": 635}, {"solidity": 0.9938167641065491, "top": 2275, "right": 3040, "bottom": 3870, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729521f.jpg"} -{"rects": [{"solidity": 0.9958740379523533, "top": 425, "right": 3100, "bottom": 2055, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734356f.jpg"} -{"rects": [{"solidity": 0.9958741853952661, "top": 365, "right": 3205, "bottom": 1985, "left": 800}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/700808f.jpg"} -{"rects": [{"solidity": 0.9958743653364381, "top": 1300, "right": 3780, "bottom": 5590, "left": 370}], "shape": {"h": 6910, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708845f.jpg"} -{"rects": [{"solidity": 0.9958743895535705, "top": 415, "right": 3130, "bottom": 2060, "left": 700}, {"solidity": 0.9960652875629863, "top": 2280, "right": 3110, "bottom": 3905, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709300f.jpg"} -{"rects": [{"solidity": 0.9958744563814366, "top": 970, "right": 2530, "bottom": 3580, "left": 570}], "shape": {"h": 4405, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711649f.jpg"} -{"rects": [{"solidity": 0.9958745657437625, "top": 855, "right": 2040, "bottom": 3250, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722205f.jpg"} -{"rects": [{"solidity": 0.9958746736292429, "top": 2350, "right": 3050, "bottom": 3960, "left": 635}, {"solidity": 0.9960258223339619, "top": 455, "right": 3060, "bottom": 2060, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728354f.jpg"} -{"rects": [{"solidity": 0.995874675142744, "top": 2055, "right": 5210, "bottom": 3480, "left": 3375}, {"solidity": 0.997396136390085, "top": 605, "right": 5205, "bottom": 2030, "left": 3380}, {"solidity": 0.9874734923710924, "top": 2075, "right": 2645, "bottom": 3515, "left": 790}, {"solidity": 0.9344854976531471, "top": 625, "right": 2610, "bottom": 2070, "left": 765}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702812f.jpg"} -{"rects": [{"solidity": 0.9958748277133928, "top": 825, "right": 3850, "bottom": 3235, "left": 2230}, {"solidity": 0.9951661807958758, "top": 835, "right": 5635, "bottom": 3245, "left": 4020}, {"solidity": 0.9954285194060327, "top": 810, "right": 2060, "bottom": 3225, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717573f.jpg"} -{"rects": [{"solidity": 0.9958750188446845, "top": 2195, "right": 3140, "bottom": 3845, "left": 690}, {"solidity": 0.9956597979093401, "top": 4060, "right": 3105, "bottom": 5690, "left": 670}, {"solidity": 0.9958609647161017, "top": 345, "right": 3140, "bottom": 1970, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728558f.jpg"} -{"rects": [{"solidity": 0.9958752422257082, "top": 385, "right": 3240, "bottom": 2360, "left": 410}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704246f.jpg"} -{"rects": [{"solidity": 0.995875418453186, "top": 350, "right": 3175, "bottom": 1995, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706246f.jpg"} -{"rects": [{"solidity": 0.9958755118755118, "top": 425, "right": 3175, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711992f.jpg"} -{"rects": [{"solidity": 0.9958755739852704, "top": 2240, "right": 2775, "bottom": 4670, "left": 1105}, {"solidity": 0.9940898539749436, "top": 435, "right": 3080, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733281f.jpg"} -{"rects": [{"solidity": 0.9958757522879198, "top": 1060, "right": 3550, "bottom": 5090, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721339f.jpg"} -{"rects": [{"solidity": 0.9958758001043858, "top": 1140, "right": 5480, "bottom": 2765, "left": 645}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719030f.jpg"} -{"rects": [{"solidity": 0.9958758262972135, "top": 805, "right": 3910, "bottom": 3215, "left": 2295}, {"solidity": 0.996881133989382, "top": 795, "right": 2115, "bottom": 3195, "left": 510}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722473f.jpg"} -{"rects": [{"solidity": 0.9958760841675545, "top": 405, "right": 3345, "bottom": 2040, "left": 915}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724967f.jpg"} -{"rects": [{"solidity": 0.9958764468397281, "top": 4040, "right": 3215, "bottom": 5665, "left": 785}, {"solidity": 0.9955658736257906, "top": 365, "right": 3205, "bottom": 1985, "left": 780}, {"solidity": 0.9954225375007315, "top": 2200, "right": 3190, "bottom": 3825, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734148f.jpg"} -{"rects": [{"solidity": 0.995876509753078, "top": 2210, "right": 3160, "bottom": 3815, "left": 745}, {"solidity": 0.9965123227995467, "top": 370, "right": 3155, "bottom": 1975, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730751f.jpg"} -{"rects": [{"solidity": 0.9958765772267052, "top": 1375, "right": 3780, "bottom": 5585, "left": 360}], "shape": {"h": 6910, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708812f.jpg"} -{"rects": [{"solidity": 0.9958770040923796, "top": 1060, "right": 2685, "bottom": 4080, "left": 235}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508119.jpg"} -{"rects": [{"solidity": 0.9958771023569499, "top": 840, "right": 3835, "bottom": 3275, "left": 2205}, {"solidity": 0.9963801139809988, "top": 820, "right": 1990, "bottom": 3235, "left": 380}, {"solidity": 0.995264743865691, "top": 880, "right": 5725, "bottom": 3285, "left": 4115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722069f.jpg"} -{"rects": [{"solidity": 0.9958774405455649, "top": 800, "right": 3870, "bottom": 3235, "left": 2245}, {"solidity": 0.9960868259703025, "top": 800, "right": 2040, "bottom": 3225, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721586f.jpg"} -{"rects": [{"solidity": 0.9958774471311365, "top": 460, "right": 3115, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721063f.jpg"} -{"rects": [{"solidity": 0.9958775643112993, "top": 890, "right": 2310, "bottom": 3305, "left": 685}, {"solidity": 0.9954639743724398, "top": 895, "right": 4005, "bottom": 3295, "left": 2390}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709215f.jpg"} -{"rects": [{"solidity": 0.9958777938959883, "top": 500, "right": 3245, "bottom": 2175, "left": 785}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705808f.jpg"} -{"rects": [{"solidity": 0.9958781661861614, "top": 895, "right": 3795, "bottom": 3310, "left": 2165}, {"solidity": 0.9974961485445553, "top": 875, "right": 1935, "bottom": 3295, "left": 330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715280f.jpg"} -{"rects": [{"solidity": 0.995878206804766, "top": 390, "right": 3335, "bottom": 1980, "left": 940}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725897f.jpg"} -{"rects": [{"solidity": 0.9958782488092176, "top": 2260, "right": 3160, "bottom": 3870, "left": 750}, {"solidity": 0.9931375357694423, "top": 445, "right": 3155, "bottom": 2055, "left": 755}, {"solidity": 0.9957239961800152, "top": 4095, "right": 3155, "bottom": 5690, "left": 755}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/726961f.jpg"} -{"rects": [{"solidity": 0.9958783070146062, "top": 755, "right": 2070, "bottom": 3175, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724267f.jpg"} -{"rects": [{"solidity": 0.9958783185423851, "top": 2165, "right": 2695, "bottom": 3635, "left": 855}, {"solidity": 0.9970739717134688, "top": 665, "right": 2685, "bottom": 2115, "left": 855}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705090f.jpg"} -{"rects": [{"solidity": 0.9958783665928046, "top": 655, "right": 2630, "bottom": 3505, "left": 560}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709427f.jpg"} -{"rects": [{"solidity": 0.9958788770666125, "top": 790, "right": 2035, "bottom": 3210, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714614f.jpg"} -{"rects": [{"solidity": 0.9958789864199061, "top": 440, "right": 3195, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704159f.jpg"} -{"rects": [{"solidity": 0.9958790947332357, "top": 4155, "right": 3205, "bottom": 5790, "left": 760}, {"solidity": 0.9973912820808286, "top": 2315, "right": 3205, "bottom": 3935, "left": 775}, {"solidity": 0.996023195892767, "top": 430, "right": 3195, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732102f.jpg"} -{"rects": [{"solidity": 0.9958791969483255, "top": 2275, "right": 3180, "bottom": 3890, "left": 770}, {"solidity": 0.9965682773283724, "top": 445, "right": 3175, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731824f.jpg"} -{"rects": [{"solidity": 0.9958792593724896, "top": 815, "right": 2060, "bottom": 3230, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717757f.jpg"} -{"rects": [{"solidity": 0.9958794353300267, "top": 790, "right": 2035, "bottom": 3175, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717409f.jpg"} -{"rects": [{"solidity": 0.9958794431627107, "top": 720, "right": 2665, "bottom": 2140, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725733f.jpg"} -{"rects": [{"solidity": 0.9958796699033692, "top": 505, "right": 3320, "bottom": 2885, "left": 605}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703836f.jpg"} -{"rects": [{"solidity": 0.995879801836525, "top": 425, "right": 3110, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707493f.jpg"} -{"rects": [{"solidity": 0.9958798784163343, "top": 885, "right": 3880, "bottom": 3315, "left": 2245}, {"solidity": 0.9954951153808704, "top": 895, "right": 2000, "bottom": 3305, "left": 380}, {"solidity": 0.995097138356524, "top": 920, "right": 5715, "bottom": 3330, "left": 4120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713901f.jpg"} -{"rects": [{"solidity": 0.9958801752868817, "top": 430, "right": 3220, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706869f.jpg"} -{"rects": [{"solidity": 0.9958802666683646, "top": 785, "right": 2045, "bottom": 3215, "left": 405}, {"solidity": 0.9951408565380231, "top": 775, "right": 3880, "bottom": 3200, "left": 2265}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731592f.jpg"} -{"rects": [{"solidity": 0.9958804154255906, "top": 4115, "right": 3110, "bottom": 5765, "left": 665}, {"solidity": 0.9964947500411637, "top": 2240, "right": 3095, "bottom": 3880, "left": 665}, {"solidity": 0.9952139755719284, "top": 380, "right": 3115, "bottom": 2005, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710785f.jpg"} -{"rects": [{"solidity": 0.9958804404923596, "top": 655, "right": 3160, "bottom": 2570, "left": 370}, {"solidity": 0.9972272421668995, "top": 3215, "right": 3140, "bottom": 5125, "left": 365}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724452f.jpg"} -{"rects": [{"solidity": 0.9958804633894947, "top": 440, "right": 3145, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721598f.jpg"} -{"rects": [{"solidity": 0.995880496785753, "top": 660, "right": 2425, "bottom": 3460, "left": 460}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705751f.jpg"} -{"rects": [{"solidity": 0.9958806041008688, "top": 375, "right": 3150, "bottom": 2095, "left": 570}, {"solidity": 0.9958206484792954, "top": 2320, "right": 3145, "bottom": 4025, "left": 560}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732042f.jpg"} -{"rects": [{"solidity": 0.9958807133519153, "top": 705, "right": 2690, "bottom": 2105, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702865f.jpg"} -{"rects": [{"solidity": 0.9958809378959295, "top": 575, "right": 4805, "bottom": 3585, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709899f.jpg"} -{"rects": [{"solidity": 0.9958810922828403, "top": 2340, "right": 3160, "bottom": 3985, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731425f.jpg"} -{"rects": [{"solidity": 0.9958811151688807, "top": 2285, "right": 3030, "bottom": 3920, "left": 590}, {"solidity": 0.9949866899019442, "top": 4125, "right": 3005, "bottom": 5755, "left": 565}, {"solidity": 0.9943991330999372, "top": 405, "right": 3030, "bottom": 2050, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729780f.jpg"} -{"rects": [{"solidity": 0.9958811405246091, "top": 895, "right": 2015, "bottom": 3265, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729063f.jpg"} -{"rects": [{"solidity": 0.9958811424493983, "top": 2240, "right": 3030, "bottom": 3890, "left": 600}, {"solidity": 0.9961428870393921, "top": 390, "right": 3035, "bottom": 2020, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707610f.jpg"} -{"rects": [{"solidity": 0.9958811462792589, "top": 1010, "right": 3700, "bottom": 3425, "left": 2075}, {"solidity": 0.9954675188607051, "top": 955, "right": 1895, "bottom": 3370, "left": 305}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710802f.jpg"} -{"rects": [{"solidity": 0.995881171518105, "top": 1090, "right": 3340, "bottom": 4855, "left": 330}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722160f.jpg"} -{"rects": [{"solidity": 0.9958812848789085, "top": 855, "right": 2115, "bottom": 3245, "left": 535}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721353f.jpg"} -{"rects": [{"solidity": 0.9958814090318637, "top": 500, "right": 3640, "bottom": 2330, "left": 915}], "shape": {"h": 6915, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711310f.jpg"} -{"rects": [{"solidity": 0.9958815177953865, "top": 655, "right": 3335, "bottom": 2580, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707893f.jpg"} -{"rects": [{"solidity": 0.9958817302533316, "top": 650, "right": 2800, "bottom": 2080, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706146f.jpg"} -{"rects": [{"solidity": 0.9958818580348049, "top": 480, "right": 3140, "bottom": 2060, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714782f.jpg"} -{"rects": [{"solidity": 0.9958822138203401, "top": 2305, "right": 3170, "bottom": 3915, "left": 755}, {"solidity": 0.9970882203791857, "top": 430, "right": 3150, "bottom": 2035, "left": 745}, {"solidity": 0.9939522869861083, "top": 4145, "right": 3150, "bottom": 5770, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728717f.jpg"} -{"rects": [{"solidity": 0.995882247052319, "top": 405, "right": 3090, "bottom": 2035, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729831f.jpg"} -{"rects": [{"solidity": 0.9958822840638538, "top": 2335, "right": 3140, "bottom": 3950, "left": 720}, {"solidity": 0.995543197460017, "top": 450, "right": 3145, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722102f.jpg"} -{"rects": [{"solidity": 0.9958822953756746, "top": 660, "right": 3335, "bottom": 2545, "left": 655}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/715193f.jpg"} -{"rects": [{"solidity": 0.9958823021945571, "top": 760, "right": 2045, "bottom": 3155, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718111f.jpg"} -{"rects": [{"solidity": 0.9958823817531715, "top": 440, "right": 3365, "bottom": 2055, "left": 945}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728056f.jpg"} -{"rects": [{"solidity": 0.9958827330718586, "top": 2225, "right": 3180, "bottom": 3850, "left": 745}, {"solidity": 0.9959790147780074, "top": 380, "right": 3165, "bottom": 2000, "left": 745}, {"solidity": 0.9959440622620322, "top": 4100, "right": 3180, "bottom": 5720, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726815f.jpg"} -{"rects": [{"solidity": 0.9958829531657668, "top": 445, "right": 3185, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723086f.jpg"} -{"rects": [{"solidity": 0.9958829881599753, "top": 410, "right": 3175, "bottom": 2050, "left": 755}, {"solidity": 0.9962360419890427, "top": 2240, "right": 3160, "bottom": 3870, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709335f.jpg"} -{"rects": [{"solidity": 0.9958830100627739, "top": 575, "right": 4970, "bottom": 3610, "left": 1205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709825f.jpg"} -{"rects": [{"solidity": 0.9958831067935378, "top": 915, "right": 2015, "bottom": 3320, "left": 430}, {"solidity": 0.9945946305776157, "top": 915, "right": 3860, "bottom": 3310, "left": 2275}, {"solidity": 0.996151063231097, "top": 940, "right": 5705, "bottom": 3325, "left": 4125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709566f.jpg"} -{"rects": [{"solidity": 0.9958833481432394, "top": 665, "right": 2730, "bottom": 2065, "left": 925}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726742f.jpg"} -{"rects": [{"solidity": 0.9958834011492171, "top": 380, "right": 3190, "bottom": 2025, "left": 735}, {"solidity": 0.9990607598899748, "top": 2305, "right": 3175, "bottom": 3925, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703754f.jpg"} -{"rects": [{"solidity": 0.9958834655180635, "top": 860, "right": 2070, "bottom": 3305, "left": 420}, {"solidity": 0.9962223909776866, "top": 860, "right": 3945, "bottom": 3275, "left": 2315}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726664f.jpg"} -{"rects": [{"solidity": 0.99588360630901, "top": 2285, "right": 3100, "bottom": 3915, "left": 670}, {"solidity": 0.9966290492814809, "top": 430, "right": 3105, "bottom": 2040, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728541f.jpg"} -{"rects": [{"solidity": 0.9958836189822272, "top": 810, "right": 2010, "bottom": 3210, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705513f.jpg"} -{"rects": [{"solidity": 0.9958837010298124, "top": 625, "right": 2705, "bottom": 2055, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705655f.jpg"} -{"rects": [{"solidity": 0.9958844918390973, "top": 600, "right": 2465, "bottom": 3015, "left": 835}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718113f.jpg"} -{"rects": [{"solidity": 0.9958846540234452, "top": 730, "right": 3815, "bottom": 3140, "left": 2180}, {"solidity": 0.9958585227327922, "top": 720, "right": 5750, "bottom": 3135, "left": 4130}, {"solidity": 0.9950797340907821, "top": 975, "right": 1845, "bottom": 2970, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718947f.jpg"} -{"rects": [{"solidity": 0.9958848839260396, "top": 625, "right": 4905, "bottom": 3615, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713768f.jpg"} -{"rects": [{"solidity": 0.9958849348148874, "top": 580, "right": 3190, "bottom": 2200, "left": 785}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715003f.jpg"} -{"rects": [{"solidity": 0.9958849747820308, "top": 4150, "right": 3205, "bottom": 5760, "left": 800}, {"solidity": 0.9947314917991125, "top": 415, "right": 3220, "bottom": 2030, "left": 820}, {"solidity": 0.9953304292739634, "top": 2290, "right": 3220, "bottom": 3895, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733732f.jpg"} -{"rects": [{"solidity": 0.9958850395023288, "top": 380, "right": 3195, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715082f.jpg"} -{"rects": [{"solidity": 0.9958850533312039, "top": 460, "right": 3190, "bottom": 2035, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714976f.jpg"} -{"rects": [{"solidity": 0.9958852252153398, "top": 570, "right": 3165, "bottom": 2205, "left": 750}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704507f.jpg"} -{"rects": [{"solidity": 0.9958854039042718, "top": 580, "right": 3175, "bottom": 2150, "left": 805}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/707618f.jpg"} -{"rects": [{"solidity": 0.9958856393647936, "top": 470, "right": 3020, "bottom": 1895, "left": 1210}, {"solidity": 0.9953363397965671, "top": 2315, "right": 3015, "bottom": 3735, "left": 1205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727608f.jpg"} -{"rects": [{"solidity": 0.9958857272568205, "top": 2190, "right": 5295, "bottom": 3645, "left": 3455}, {"solidity": 0.9955466277549319, "top": 670, "right": 5295, "bottom": 2120, "left": 3455}, {"solidity": 0.997698504027618, "top": 2180, "right": 2675, "bottom": 3620, "left": 850}, {"solidity": 0.9949948462257593, "top": 655, "right": 2675, "bottom": 2095, "left": 845}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731979f.jpg"} -{"rects": [{"solidity": 0.9958858064123624, "top": 770, "right": 2285, "bottom": 3495, "left": 445}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711246f.jpg"} -{"rects": [{"solidity": 0.9958861878019086, "top": 770, "right": 1945, "bottom": 3160, "left": 330}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711584f.jpg"} -{"rects": [{"solidity": 0.9958862094706435, "top": 480, "right": 3980, "bottom": 2580, "left": 2490}, {"solidity": 0.9935092820946982, "top": 475, "right": 2225, "bottom": 2565, "left": 745}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716229f.jpg"} -{"rects": [{"solidity": 0.9958862378554417, "top": 655, "right": 3270, "bottom": 2485, "left": 605}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/713352f.jpg"} -{"rects": [{"solidity": 0.9958862714391952, "top": 910, "right": 3410, "bottom": 3065, "left": 430}, {"solidity": 0.9973074934832103, "top": 3505, "right": 3360, "bottom": 5535, "left": 530}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/706356f.jpg"} -{"rects": [{"solidity": 0.9958863980374758, "top": 205, "right": 3145, "bottom": 1820, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709704f.jpg"} -{"rects": [{"solidity": 0.9958866000932671, "top": 410, "right": 3120, "bottom": 2025, "left": 685}, {"solidity": 0.9963242801715336, "top": 2280, "right": 2860, "bottom": 3525, "left": 1220}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707519f.jpg"} -{"rects": [{"solidity": 0.995886989849746, "top": 760, "right": 2095, "bottom": 3210, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706059f.jpg"} -{"rects": [{"solidity": 0.9958871915393654, "top": 2225, "right": 3165, "bottom": 3855, "left": 735}, {"solidity": 0.9958409742718494, "top": 420, "right": 3165, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721142f.jpg"} -{"rects": [{"solidity": 0.9958872775664657, "top": 480, "right": 3185, "bottom": 2085, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713402f.jpg"} -{"rects": [{"solidity": 0.9958873555211618, "top": 780, "right": 2375, "bottom": 3650, "left": 455}, {"solidity": 0.9973790120784248, "top": 780, "right": 4590, "bottom": 3605, "left": 2670}, {"solidity": 0.9964275170746109, "top": 1080, "right": 6485, "bottom": 3285, "left": 4760}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711236f.jpg"} -{"rects": [{"solidity": 0.9958873664904521, "top": 470, "right": 5180, "bottom": 1945, "left": 3180}, {"solidity": 0.9932927467863925, "top": 470, "right": 2850, "bottom": 1900, "left": 905}, {"solidity": 0.9825750573414125, "top": 2205, "right": 2875, "bottom": 3535, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734161f.jpg"} -{"rects": [{"solidity": 0.9958875054132567, "top": 4125, "right": 3090, "bottom": 5780, "left": 665}, {"solidity": 0.9983910355880034, "top": 2265, "right": 3085, "bottom": 3900, "left": 665}, {"solidity": 0.9966978358223423, "top": 415, "right": 3090, "bottom": 2030, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710619f.jpg"} -{"rects": [{"solidity": 0.995887615882801, "top": 730, "right": 3225, "bottom": 2235, "left": 1080}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508989.jpg"} -{"rects": [{"solidity": 0.9958876228023783, "top": 380, "right": 3190, "bottom": 2020, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706736f.jpg"} -{"rects": [{"solidity": 0.9958876840064959, "top": 840, "right": 3930, "bottom": 3230, "left": 2305}, {"solidity": 0.9945650559828932, "top": 860, "right": 5805, "bottom": 3255, "left": 4190}, {"solidity": 0.996376907587961, "top": 815, "right": 2040, "bottom": 3195, "left": 435}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731715f.jpg"} -{"rects": [{"solidity": 0.9958877765129772, "top": 805, "right": 2060, "bottom": 3215, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708173f.jpg"} -{"rects": [{"solidity": 0.9958878677846155, "top": 1205, "right": 3350, "bottom": 4965, "left": 525}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733300f.jpg"} -{"rects": [{"solidity": 0.9958879523092209, "top": 4010, "right": 3220, "bottom": 5640, "left": 790}, {"solidity": 0.9963492389962978, "top": 2205, "right": 3225, "bottom": 3830, "left": 800}, {"solidity": 0.9999548419144448, "top": 425, "right": 3220, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705854f.jpg"} -{"rects": [{"solidity": 0.9958880201960355, "top": 345, "right": 3125, "bottom": 1965, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700136f.jpg"} -{"rects": [{"solidity": 0.9958880583159101, "top": 505, "right": 4990, "bottom": 3590, "left": 930}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731368f.jpg"} -{"rects": [{"solidity": 0.9958880698898405, "top": 825, "right": 1990, "bottom": 3235, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719385f.jpg"} -{"rects": [{"solidity": 0.995888178995715, "top": 2275, "right": 3255, "bottom": 3900, "left": 825}, {"solidity": 0.9973238955836227, "top": 4140, "right": 3240, "bottom": 5750, "left": 810}, {"solidity": 0.9967513357994245, "top": 405, "right": 3235, "bottom": 2010, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734529f.jpg"} -{"rects": [{"solidity": 0.9958881867509658, "top": 2215, "right": 3250, "bottom": 3860, "left": 810}, {"solidity": 0.9973237951469348, "top": 365, "right": 3265, "bottom": 1995, "left": 850}, {"solidity": 0.9964579850940206, "top": 4090, "right": 3205, "bottom": 5710, "left": 775}], "shape": {"h": 6140, "w": 4095}, "file": "/usr/local/google/home/danvk/milstein/726953f.jpg"} -{"rects": [{"solidity": 0.9958882252847633, "top": 2120, "right": 2685, "bottom": 3555, "left": 865}, {"solidity": 0.9985435778135096, "top": 625, "right": 2685, "bottom": 2045, "left": 870}, {"solidity": 0.9958333129563427, "top": 610, "right": 5315, "bottom": 2030, "left": 3490}, {"solidity": 0.9965840486921151, "top": 2095, "right": 5325, "bottom": 3500, "left": 3505}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731966f.jpg"} -{"rects": [{"solidity": 0.9958884983871744, "top": 430, "right": 3135, "bottom": 2060, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728666f.jpg"} -{"rects": [{"solidity": 0.9958886002476848, "top": 635, "right": 3270, "bottom": 2900, "left": 1925}, {"solidity": 0.9967625373352549, "top": 3105, "right": 1795, "bottom": 5370, "left": 455}, {"solidity": 0.997924338801473, "top": 585, "right": 1775, "bottom": 2850, "left": 445}, {"solidity": 0.9959175657493377, "top": 3170, "right": 3265, "bottom": 5435, "left": 1920}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717171f.jpg"} -{"rects": [{"solidity": 0.9958886961384245, "top": 720, "right": 5645, "bottom": 3155, "left": 3995}, {"solidity": 0.996464904984324, "top": 745, "right": 3780, "bottom": 3170, "left": 2140}, {"solidity": 0.996472339864489, "top": 780, "right": 1945, "bottom": 3195, "left": 315}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730293f.jpg"} -{"rects": [{"solidity": 0.9958887786139402, "top": 485, "right": 3185, "bottom": 2110, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702022f.jpg"} -{"rects": [{"solidity": 0.9958887814280756, "top": 480, "right": 3175, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702098f.jpg"} -{"rects": [{"solidity": 0.9958888462057053, "top": 705, "right": 2735, "bottom": 3470, "left": 925}, {"solidity": 0.9961021048633738, "top": 650, "right": 5280, "bottom": 2055, "left": 3475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703884f.jpg"} -{"rects": [{"solidity": 0.9958888800191587, "top": 435, "right": 3165, "bottom": 2145, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707166f.jpg"} -{"rects": [{"solidity": 0.9958890325374636, "top": 2140, "right": 3190, "bottom": 3775, "left": 745}, {"solidity": 0.9957249493238375, "top": 3955, "right": 3180, "bottom": 5590, "left": 750}, {"solidity": 0.9981119209515661, "top": 300, "right": 3175, "bottom": 1920, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720881f.jpg"} -{"rects": [{"solidity": 0.9958890760118834, "top": 665, "right": 2785, "bottom": 2125, "left": 935}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704656f.jpg"} -{"rects": [{"solidity": 0.9958890859261648, "top": 415, "right": 3175, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728814f.jpg"} -{"rects": [{"solidity": 0.9958890979897658, "top": 740, "right": 2040, "bottom": 3180, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732323f.jpg"} -{"rects": [{"solidity": 0.9958892143260881, "top": 415, "right": 3060, "bottom": 2050, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701920f.jpg"} -{"rects": [{"solidity": 0.9958892187979932, "top": 385, "right": 3555, "bottom": 2210, "left": 840}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/702198f.jpg"} -{"rects": [{"solidity": 0.9958892978347116, "top": 4005, "right": 3130, "bottom": 5650, "left": 690}, {"solidity": 0.9966464336978701, "top": 2180, "right": 3140, "bottom": 3810, "left": 725}, {"solidity": 0.9975739083397306, "top": 315, "right": 3135, "bottom": 1950, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707677f.jpg"} -{"rects": [{"solidity": 0.9958894302935132, "top": 445, "right": 3300, "bottom": 2040, "left": 905}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728228f.jpg"} -{"rects": [{"solidity": 0.9958894818526537, "top": 505, "right": 3375, "bottom": 2425, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709380f.jpg"} -{"rects": [{"solidity": 0.9958895053034005, "top": 425, "right": 2380, "bottom": 1645, "left": 570}, {"solidity": 0.9940755554528009, "top": 3110, "right": 2370, "bottom": 4320, "left": 565}, {"solidity": 0.9964226492108955, "top": 1765, "right": 2380, "bottom": 2970, "left": 575}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716505f.jpg"} -{"rects": [{"solidity": 0.9958898058075564, "top": 1055, "right": 3470, "bottom": 3030, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724982f.jpg"} -{"rects": [{"solidity": 0.9958898627548745, "top": 2310, "right": 3180, "bottom": 3910, "left": 780}, {"solidity": 0.9945562896833923, "top": 485, "right": 3150, "bottom": 2075, "left": 750}, {"solidity": 0.9964665013722969, "top": 4170, "right": 3160, "bottom": 5765, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721165f.jpg"} -{"rects": [{"solidity": 0.9958899179268991, "top": 805, "right": 2010, "bottom": 3235, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720456f.jpg"} -{"rects": [{"solidity": 0.9958900121868787, "top": 920, "right": 3660, "bottom": 2715, "left": 2230}, {"solidity": 0.9956120735064651, "top": 920, "right": 5440, "bottom": 2735, "left": 4030}, {"solidity": 0.9941338906642031, "top": 905, "right": 1870, "bottom": 2715, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725273f.jpg"} -{"rects": [{"solidity": 0.9958901995086248, "top": 425, "right": 3170, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704050f.jpg"} -{"rects": [{"solidity": 0.9958902633780324, "top": 475, "right": 3185, "bottom": 2125, "left": 740}, {"solidity": 0.9970162455972796, "top": 2305, "right": 3170, "bottom": 3930, "left": 750}, {"solidity": 0.9961376404494382, "top": 4135, "right": 3155, "bottom": 5740, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727577f.jpg"} -{"rects": [{"solidity": 0.9958903932696715, "top": 730, "right": 1875, "bottom": 3150, "left": 250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719454f.jpg"} -{"rects": [{"solidity": 0.9958904640674068, "top": 890, "right": 2680, "bottom": 3775, "left": 275}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508137.jpg"} -{"rects": [{"solidity": 0.9958904861187314, "top": 2150, "right": 2910, "bottom": 3300, "left": 895}, {"solidity": 0.9962492674350459, "top": 720, "right": 2890, "bottom": 1850, "left": 880}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713234f.jpg"} -{"rects": [{"solidity": 0.9958905253958462, "top": 750, "right": 4385, "bottom": 3185, "left": 2750}, {"solidity": 0.9956717350145414, "top": 735, "right": 2685, "bottom": 2145, "left": 830}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704976f.jpg"} -{"rects": [{"solidity": 0.9958905980883818, "top": 380, "right": 3325, "bottom": 3805, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718601f.jpg"} -{"rects": [{"solidity": 0.9958908628547454, "top": 380, "right": 3195, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705339f.jpg"} -{"rects": [{"solidity": 0.9958908894980846, "top": 900, "right": 4005, "bottom": 3410, "left": 2300}, {"solidity": 0.995934510395057, "top": 915, "right": 2105, "bottom": 3400, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714145f.jpg"} -{"rects": [{"solidity": 0.9958909965609428, "top": 2150, "right": 3240, "bottom": 3800, "left": 795}, {"solidity": 0.9964490821454209, "top": 390, "right": 3240, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705042f.jpg"} -{"rects": [{"solidity": 0.995891056543382, "top": 505, "right": 3060, "bottom": 1895, "left": 1210}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728274f.jpg"} -{"rects": [{"solidity": 0.9958913134884768, "top": 420, "right": 3090, "bottom": 2010, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728334f.jpg"} -{"rects": [{"solidity": 0.9958915575661152, "top": 420, "right": 3105, "bottom": 2040, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728809f.jpg"} -{"rects": [{"solidity": 0.9958916357750744, "top": 740, "right": 3825, "bottom": 3150, "left": 2220}, {"solidity": 0.9963673561712745, "top": 760, "right": 1975, "bottom": 3135, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712143f.jpg"} -{"rects": [{"solidity": 0.9958917207952784, "top": 455, "right": 3155, "bottom": 2050, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724531f.jpg"} -{"rects": [{"solidity": 0.9958918918918919, "top": 2180, "right": 3235, "bottom": 3915, "left": 795}, {"solidity": 0.9967835596993257, "top": 4135, "right": 3250, "bottom": 5750, "left": 825}, {"solidity": 0.9957775419423307, "top": 400, "right": 3225, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720888f.jpg"} -{"rects": [{"solidity": 0.9958919189552636, "top": 2235, "right": 3125, "bottom": 3860, "left": 695}, {"solidity": 0.996448099749467, "top": 410, "right": 3130, "bottom": 2035, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734777f.jpg"} -{"rects": [{"solidity": 0.9958921100067804, "top": 390, "right": 3190, "bottom": 1985, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724721f.jpg"} -{"rects": [{"solidity": 0.9958923184769541, "top": 695, "right": 2410, "bottom": 3140, "left": 765}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721893f.jpg"} -{"rects": [{"solidity": 0.9958925359931575, "top": 730, "right": 3910, "bottom": 3140, "left": 2295}, {"solidity": 0.9966248134851081, "top": 745, "right": 5740, "bottom": 3155, "left": 4125}, {"solidity": 0.9968519741358457, "top": 735, "right": 2060, "bottom": 3135, "left": 455}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731621f.jpg"} -{"rects": [{"solidity": 0.9958925492701516, "top": 880, "right": 3285, "bottom": 2875, "left": 490}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703587f.jpg"} -{"rects": [{"solidity": 0.9958927853697749, "top": 735, "right": 3310, "bottom": 2615, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711087f.jpg"} -{"rects": [{"solidity": 0.9958928149153049, "top": 745, "right": 3735, "bottom": 2310, "left": 490}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508485.jpg"} -{"rects": [{"solidity": 0.9958929870030018, "top": 425, "right": 3055, "bottom": 2065, "left": 625}, {"solidity": 0.9996354015422837, "top": 2295, "right": 3025, "bottom": 3915, "left": 620}, {"solidity": 0.9983053593415852, "top": 4130, "right": 3025, "bottom": 5745, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734058f.jpg"} -{"rects": [{"solidity": 0.9958930346757466, "top": 2260, "right": 3210, "bottom": 3905, "left": 765}, {"solidity": 0.9961996945727685, "top": 365, "right": 3220, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702166f.jpg"} -{"rects": [{"solidity": 0.9958930435376406, "top": 380, "right": 3160, "bottom": 1985, "left": 740}, {"solidity": 0.9959500947155269, "top": 2230, "right": 3130, "bottom": 3840, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724619f.jpg"} -{"rects": [{"solidity": 0.9958931322984451, "top": 2230, "right": 3165, "bottom": 3860, "left": 730}, {"solidity": 0.9968189991344867, "top": 4110, "right": 3145, "bottom": 5740, "left": 710}, {"solidity": 0.9989899840080801, "top": 385, "right": 3150, "bottom": 1990, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725526f.jpg"} -{"rects": [{"solidity": 0.9958932039773112, "top": 875, "right": 2030, "bottom": 3300, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729301f.jpg"} -{"rects": [{"solidity": 0.9958935631920872, "top": 865, "right": 2020, "bottom": 3320, "left": 365}, {"solidity": 0.9960693450287559, "top": 895, "right": 3860, "bottom": 3340, "left": 2220}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729184f.jpg"} -{"rects": [{"solidity": 0.9958936775827778, "top": 695, "right": 3175, "bottom": 2285, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708005f.jpg"} -{"rects": [{"solidity": 0.9958937470293366, "top": 540, "right": 3110, "bottom": 1975, "left": 1310}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728218f.jpg"} -{"rects": [{"solidity": 0.9958941605839416, "top": 620, "right": 2715, "bottom": 2060, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732021f.jpg"} -{"rects": [{"solidity": 0.9958944031295741, "top": 420, "right": 3185, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720502f.jpg"} -{"rects": [{"solidity": 0.9958944720024444, "top": 750, "right": 2050, "bottom": 3170, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723951f.jpg"} -{"rects": [{"solidity": 0.9958946442887067, "top": 380, "right": 3155, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/700806f.jpg"} -{"rects": [{"solidity": 0.9958949360187294, "top": 2215, "right": 3300, "bottom": 3840, "left": 870}, {"solidity": 0.9963441681618452, "top": 385, "right": 3310, "bottom": 2015, "left": 885}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727932f.jpg"} -{"rects": [{"solidity": 0.9958950257657825, "top": 635, "right": 2770, "bottom": 2060, "left": 955}, {"solidity": 0.9957998916736422, "top": 2300, "right": 2775, "bottom": 3725, "left": 975}, {"solidity": 0.9966418673812054, "top": 2290, "right": 4960, "bottom": 3710, "left": 3175}, {"solidity": 0.9917197260329002, "top": 635, "right": 4980, "bottom": 2045, "left": 3185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727790f.jpg"} -{"rects": [{"solidity": 0.9958951347147947, "top": 365, "right": 3280, "bottom": 2005, "left": 835}, {"solidity": 0.9965490317045662, "top": 3890, "right": 3265, "bottom": 5505, "left": 830}, {"solidity": 0.9962054902719345, "top": 2135, "right": 3265, "bottom": 3760, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733185f.jpg"} -{"rects": [{"solidity": 0.9958951987025559, "top": 2255, "right": 3265, "bottom": 3915, "left": 815}, {"solidity": 0.9963622469440664, "top": 4140, "right": 3240, "bottom": 5785, "left": 795}, {"solidity": 0.9949412599542695, "top": 370, "right": 3295, "bottom": 2035, "left": 845}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/727839f.jpg"} -{"rects": [{"solidity": 0.995895209188498, "top": 170, "right": 3035, "bottom": 1840, "left": 885}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718979f.jpg"} -{"rects": [{"solidity": 0.9958952861996357, "top": 420, "right": 3140, "bottom": 2050, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702354f.jpg"} -{"rects": [{"solidity": 0.9958954036580095, "top": 450, "right": 3270, "bottom": 3925, "left": 660}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708143f.jpg"} -{"rects": [{"solidity": 0.9958954792461556, "top": 930, "right": 3180, "bottom": 2555, "left": 760}, {"solidity": 0.9974800298082077, "top": 3300, "right": 3175, "bottom": 4910, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733126f.jpg"} -{"rects": [{"solidity": 0.9958956591050802, "top": 410, "right": 3190, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700141f.jpg"} -{"rects": [{"solidity": 0.9958958278092251, "top": 435, "right": 2795, "bottom": 1740, "left": 1115}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723591f.jpg"} -{"rects": [{"solidity": 0.9958958308728003, "top": 380, "right": 3045, "bottom": 1985, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728645f.jpg"} -{"rects": [{"solidity": 0.9958958829972295, "top": 450, "right": 3060, "bottom": 2075, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729767f.jpg"} -{"rects": [{"solidity": 0.9958959316331684, "top": 810, "right": 2030, "bottom": 3230, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729225f.jpg"} -{"rects": [{"solidity": 0.9958959788485063, "top": 470, "right": 3215, "bottom": 2070, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709595f.jpg"} -{"rects": [{"solidity": 0.9958959926343353, "top": 470, "right": 3165, "bottom": 2085, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710689f.jpg"} -{"rects": [{"solidity": 0.9958960152461266, "top": 290, "right": 3230, "bottom": 1930, "left": 805}, {"solidity": 0.9964516390125455, "top": 1980, "right": 2865, "bottom": 4385, "left": 1235}, {"solidity": 0.9978712978917412, "top": 4395, "right": 3275, "bottom": 6010, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711144f.jpg"} -{"rects": [{"solidity": 0.9958960372733323, "top": 410, "right": 3075, "bottom": 2015, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729674f.jpg"} -{"rects": [{"solidity": 0.9958963066760084, "top": 4155, "right": 3050, "bottom": 5780, "left": 635}, {"solidity": 0.9960782245892023, "top": 2350, "right": 3050, "bottom": 3945, "left": 650}, {"solidity": 0.9924250715538885, "top": 435, "right": 3065, "bottom": 2050, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734837f.jpg"} -{"rects": [{"solidity": 0.9958963811762401, "top": 2150, "right": 3040, "bottom": 3760, "left": 635}, {"solidity": 0.9977704918032787, "top": 365, "right": 3040, "bottom": 1965, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719022f.jpg"} -{"rects": [{"solidity": 0.995896641455444, "top": 860, "right": 2055, "bottom": 3290, "left": 420}, {"solidity": 0.9984585084540674, "top": 855, "right": 3895, "bottom": 3275, "left": 2280}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708296f.jpg"} -{"rects": [{"solidity": 0.995896808558085, "top": 750, "right": 3880, "bottom": 3190, "left": 2240}, {"solidity": 0.9961475950629999, "top": 745, "right": 5710, "bottom": 3170, "left": 4085}, {"solidity": 0.9960929932192444, "top": 775, "right": 2045, "bottom": 3195, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723577f.jpg"} -{"rects": [{"solidity": 0.995896897993182, "top": 635, "right": 2685, "bottom": 2005, "left": 890}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728108f.jpg"} -{"rects": [{"solidity": 0.9958969757530028, "top": 675, "right": 2510, "bottom": 2165, "left": 415}, {"solidity": 0.9950602946648729, "top": 2455, "right": 2490, "bottom": 3950, "left": 390}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716147f.jpg"} -{"rects": [{"solidity": 0.9958969844011479, "top": 395, "right": 3050, "bottom": 1970, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729024f.jpg"} -{"rects": [{"solidity": 0.9958970496902003, "top": 490, "right": 2980, "bottom": 1915, "left": 1165}, {"solidity": 0.9936107911149905, "top": 2360, "right": 2985, "bottom": 3755, "left": 1195}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727389f.jpg"} -{"rects": [{"solidity": 0.9958971733165282, "top": 790, "right": 2055, "bottom": 3185, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718138f.jpg"} -{"rects": [{"solidity": 0.9958972359826191, "top": 575, "right": 2665, "bottom": 2010, "left": 810}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705635f.jpg"} -{"rects": [{"solidity": 0.9958972678438327, "top": 685, "right": 2355, "bottom": 3105, "left": 700}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720231f.jpg"} -{"rects": [{"solidity": 0.9958974460529009, "top": 445, "right": 3215, "bottom": 2040, "left": 820}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702243f.jpg"} -{"rects": [{"solidity": 0.9958975258475361, "top": 415, "right": 3150, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715680f.jpg"} -{"rects": [{"solidity": 0.9958979192175919, "top": 410, "right": 3015, "bottom": 2045, "left": 990}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/702806f.jpg"} -{"rects": [{"solidity": 0.9958982540248129, "top": 2430, "right": 2500, "bottom": 3925, "left": 400}, {"solidity": 0.9965544358598102, "top": 645, "right": 2520, "bottom": 2135, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716095f.jpg"} -{"rects": [{"solidity": 0.995898324667822, "top": 335, "right": 3175, "bottom": 1965, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700197f.jpg"} -{"rects": [{"solidity": 0.995898337361752, "top": 405, "right": 3185, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715295f.jpg"} -{"rects": [{"solidity": 0.995898565295798, "top": 2260, "right": 3230, "bottom": 3895, "left": 790}, {"solidity": 0.9954479499723924, "top": 390, "right": 3250, "bottom": 2025, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719606f.jpg"} -{"rects": [{"solidity": 0.9958988446311707, "top": 2285, "right": 3195, "bottom": 3905, "left": 775}, {"solidity": 0.9954948517231299, "top": 4130, "right": 3190, "bottom": 5735, "left": 760}, {"solidity": 0.9965118492121308, "top": 420, "right": 3190, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732184f.jpg"} -{"rects": [{"solidity": 0.9958989019640743, "top": 405, "right": 3210, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702603f.jpg"} -{"rects": [{"solidity": 0.9958991302657791, "top": 830, "right": 2030, "bottom": 3245, "left": 400}, {"solidity": 0.9955509224529031, "top": 795, "right": 3830, "bottom": 3220, "left": 2210}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712506f.jpg"} -{"rects": [{"solidity": 0.9958996027840382, "top": 3005, "right": 2810, "bottom": 5425, "left": 1170}, {"solidity": 0.9970811573565466, "top": 320, "right": 2810, "bottom": 2735, "left": 1190}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720255f.jpg"} -{"rects": [{"solidity": 0.9958997531484038, "top": 2175, "right": 3130, "bottom": 3795, "left": 705}, {"solidity": 0.9977829997569079, "top": 395, "right": 3140, "bottom": 2005, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730402f.jpg"} -{"rects": [{"solidity": 0.9958999563688627, "top": 820, "right": 5640, "bottom": 3245, "left": 4000}, {"solidity": 0.9957672983408455, "top": 775, "right": 2045, "bottom": 3195, "left": 415}, {"solidity": 0.9950168166175505, "top": 795, "right": 3835, "bottom": 3220, "left": 2220}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722616f.jpg"} -{"rects": [{"solidity": 0.9959001276175374, "top": 585, "right": 5170, "bottom": 2115, "left": 3210}, {"solidity": 0.9971242761866633, "top": 635, "right": 2695, "bottom": 2050, "left": 870}, {"solidity": 0.9970220602640962, "top": 2125, "right": 2690, "bottom": 3545, "left": 870}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704238f.jpg"} -{"rects": [{"solidity": 0.9959004307913226, "top": 375, "right": 3095, "bottom": 2005, "left": 665}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729827f.jpg"} -{"rects": [{"solidity": 0.9959006878619235, "top": 375, "right": 3290, "bottom": 1970, "left": 900}, {"solidity": 0.9973928312913863, "top": 2225, "right": 3275, "bottom": 3805, "left": 900}], "shape": {"h": 6050, "w": 3870}, "file": "/usr/local/google/home/danvk/milstein/728210f.jpg"} -{"rects": [{"solidity": 0.9959008377937167, "top": 630, "right": 3400, "bottom": 2780, "left": 445}, {"solidity": 0.9960736574994856, "top": 3380, "right": 1625, "bottom": 5300, "left": 475}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723693f.jpg"} -{"rects": [{"solidity": 0.9959008877119939, "top": 405, "right": 3130, "bottom": 2030, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719423f.jpg"} -{"rects": [{"solidity": 0.9959010801591813, "top": 265, "right": 2400, "bottom": 1500, "left": 575}, {"solidity": 0.9955897751069835, "top": 1535, "right": 2430, "bottom": 2770, "left": 605}, {"solidity": 0.9971464988631927, "top": 275, "right": 4285, "bottom": 1490, "left": 2475}], "shape": {"h": 2965, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/701426f.jpg"} -{"rects": [{"solidity": 0.9959013221541438, "top": 835, "right": 3910, "bottom": 3255, "left": 2280}, {"solidity": 0.9986083020634848, "top": 835, "right": 2045, "bottom": 3235, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722290f.jpg"} -{"rects": [{"solidity": 0.9959015444462453, "top": 490, "right": 3225, "bottom": 2085, "left": 835}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723673f.jpg"} -{"rects": [{"solidity": 0.9959016262219077, "top": 835, "right": 2100, "bottom": 3255, "left": 465}, {"solidity": 0.9940395095367848, "top": 850, "right": 3895, "bottom": 3215, "left": 2320}, {"solidity": 0.9894164771574024, "top": 920, "right": 5580, "bottom": 3115, "left": 4180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708006f.jpg"} -{"rects": [{"solidity": 0.9959019055165158, "top": 800, "right": 1935, "bottom": 3225, "left": 325}, {"solidity": 0.9960772313391779, "top": 795, "right": 3790, "bottom": 3200, "left": 2170}, {"solidity": 0.9961120112622185, "top": 805, "right": 5645, "bottom": 3180, "left": 4030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711741f.jpg"} -{"rects": [{"solidity": 0.9959019988721097, "top": 345, "right": 3645, "bottom": 1235, "left": 2510}, {"solidity": 0.9932091086796476, "top": 670, "right": 2365, "bottom": 1805, "left": 1480}, {"solidity": 0.9933553546149039, "top": 1380, "right": 3630, "bottom": 2270, "left": 2510}], "shape": {"h": 2555, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/727046f.jpg"} -{"rects": [{"solidity": 0.9959020767770335, "top": 410, "right": 3105, "bottom": 2020, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728679f.jpg"} -{"rects": [{"solidity": 0.9959021214854319, "top": 765, "right": 2015, "bottom": 3175, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719243f.jpg"} -{"rects": [{"solidity": 0.9959023325429474, "top": 2260, "right": 3100, "bottom": 3905, "left": 670}, {"solidity": 0.9976638684787034, "top": 415, "right": 3100, "bottom": 2040, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712205f.jpg"} -{"rects": [{"solidity": 0.9959026460849144, "top": 425, "right": 3205, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707724f.jpg"} -{"rects": [{"solidity": 0.9959031300851919, "top": 4110, "right": 3150, "bottom": 5755, "left": 720}, {"solidity": 0.9947046084045063, "top": 360, "right": 3195, "bottom": 1975, "left": 765}, {"solidity": 0.996619604971984, "top": 2260, "right": 3160, "bottom": 3855, "left": 760}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/730801f.jpg"} -{"rects": [{"solidity": 0.9959032012195121, "top": 820, "right": 2080, "bottom": 3220, "left": 480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723806f.jpg"} -{"rects": [{"solidity": 0.9959033327461123, "top": 2305, "right": 3265, "bottom": 3925, "left": 830}, {"solidity": 0.9975130273859191, "top": 425, "right": 3260, "bottom": 2035, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725305f.jpg"} -{"rects": [{"solidity": 0.9959034016865643, "top": 750, "right": 2035, "bottom": 3150, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719900f.jpg"} -{"rects": [{"solidity": 0.99590357853527, "top": 395, "right": 3240, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726079f.jpg"} -{"rects": [{"solidity": 0.995903709941057, "top": 660, "right": 2625, "bottom": 2080, "left": 820}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705598f.jpg"} -{"rects": [{"solidity": 0.9959037163525322, "top": 465, "right": 3135, "bottom": 2080, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713936f.jpg"} -{"rects": [{"solidity": 0.9959037378392217, "top": 860, "right": 3460, "bottom": 2080, "left": 1570}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508709.jpg"} -{"rects": [{"solidity": 0.9959041479083124, "top": 970, "right": 3145, "bottom": 2195, "left": 1325}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509583.jpg"} -{"rects": [{"solidity": 0.9959041810946302, "top": 745, "right": 2045, "bottom": 3165, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718602f.jpg"} -{"rects": [{"solidity": 0.9959041882977729, "top": 445, "right": 3040, "bottom": 2065, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705754f.jpg"} -{"rects": [{"solidity": 0.9959041965985632, "top": 435, "right": 3180, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724185f.jpg"} -{"rects": [{"solidity": 0.995904361301749, "top": 365, "right": 3135, "bottom": 1985, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729488f.jpg"} -{"rects": [{"solidity": 0.9959043827229034, "top": 410, "right": 3160, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724583f.jpg"} -{"rects": [{"solidity": 0.995904450236131, "top": 865, "right": 3875, "bottom": 3270, "left": 2265}, {"solidity": 0.9958160363481843, "top": 870, "right": 5725, "bottom": 3280, "left": 4115}, {"solidity": 0.9957602860498362, "top": 880, "right": 2010, "bottom": 3290, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734797f.jpg"} -{"rects": [{"solidity": 0.9959045133139841, "top": 665, "right": 2720, "bottom": 2095, "left": 910}, {"solidity": 0.9965926148303813, "top": 2125, "right": 2710, "bottom": 3525, "left": 905}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726179f.jpg"} -{"rects": [{"solidity": 0.9959046028845269, "top": 565, "right": 3170, "bottom": 2185, "left": 780}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710507f.jpg"} -{"rects": [{"solidity": 0.9959049304104732, "top": 850, "right": 3955, "bottom": 3245, "left": 2345}, {"solidity": 0.9950323332342916, "top": 840, "right": 2140, "bottom": 3235, "left": 530}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721360f.jpg"} -{"rects": [{"solidity": 0.9959049363690112, "top": 2335, "right": 2995, "bottom": 3770, "left": 1180}, {"solidity": 0.9953395407790182, "top": 525, "right": 3010, "bottom": 1955, "left": 1195}, {"solidity": 0.9937563188913274, "top": 4160, "right": 3000, "bottom": 5580, "left": 1170}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726998f.jpg"} -{"rects": [{"solidity": 0.9959050657189413, "top": 860, "right": 2095, "bottom": 3260, "left": 480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713817f.jpg"} -{"rects": [{"solidity": 0.9959051612917702, "top": 360, "right": 2545, "bottom": 2900, "left": 285}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509015.jpg"} -{"rects": [{"solidity": 0.995905237283034, "top": 810, "right": 3870, "bottom": 3265, "left": 2190}, {"solidity": 0.9955915020627311, "top": 1010, "right": 1930, "bottom": 2975, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723785f.jpg"} -{"rects": [{"solidity": 0.9959052411611148, "top": 410, "right": 3130, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/729911f.jpg"} -{"rects": [{"solidity": 0.9959052653574779, "top": 545, "right": 2720, "bottom": 3440, "left": 755}, {"solidity": 0.9906195335500256, "top": 580, "right": 5025, "bottom": 3415, "left": 3565}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717103f.jpg"} -{"rects": [{"solidity": 0.9959053685168335, "top": 2255, "right": 3115, "bottom": 3875, "left": 690}, {"solidity": 0.9961796898655483, "top": 4100, "right": 3085, "bottom": 5720, "left": 660}, {"solidity": 0.9957883913830092, "top": 425, "right": 3105, "bottom": 2020, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731571f.jpg"} -{"rects": [{"solidity": 0.995905512830472, "top": 770, "right": 3865, "bottom": 3190, "left": 2250}, {"solidity": 0.9975442043222004, "top": 775, "right": 2020, "bottom": 3185, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733998f.jpg"} -{"rects": [{"solidity": 0.9959055189584523, "top": 385, "right": 3160, "bottom": 2000, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715303f.jpg"} -{"rects": [{"solidity": 0.9959056231405933, "top": 725, "right": 3880, "bottom": 3135, "left": 2275}, {"solidity": 0.9959025160855042, "top": 705, "right": 2035, "bottom": 3105, "left": 435}, {"solidity": 0.9944755749256328, "top": 735, "right": 5705, "bottom": 3145, "left": 4105}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731672f.jpg"} -{"rects": [{"solidity": 0.9959057844166959, "top": 2240, "right": 3195, "bottom": 3860, "left": 770}, {"solidity": 0.9971995851721961, "top": 435, "right": 3190, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724931f.jpg"} -{"rects": [{"solidity": 0.9959059433294666, "top": 415, "right": 3200, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704843f.jpg"} -{"rects": [{"solidity": 0.9959061529573193, "top": 3775, "right": 3435, "bottom": 5770, "left": 625}, {"solidity": 0.9955808829896065, "top": 1985, "right": 3315, "bottom": 3610, "left": 880}, {"solidity": 0.9955634691000816, "top": 425, "right": 3100, "bottom": 1835, "left": 1290}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725154f.jpg"} -{"rects": [{"solidity": 0.9959061637534499, "top": 755, "right": 3830, "bottom": 3165, "left": 2235}, {"solidity": 0.9970352007932574, "top": 760, "right": 2005, "bottom": 3150, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732325f.jpg"} -{"rects": [{"solidity": 0.9959062356982282, "top": 665, "right": 2715, "bottom": 2060, "left": 915}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725356f.jpg"} -{"rects": [{"solidity": 0.995906382862204, "top": 500, "right": 4955, "bottom": 3565, "left": 1065}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731733f.jpg"} -{"rects": [{"solidity": 0.9959064580064019, "top": 2390, "right": 2835, "bottom": 3820, "left": 990}, {"solidity": 0.9962460836545819, "top": 630, "right": 2840, "bottom": 2055, "left": 1000}, {"solidity": 0.9964597101831517, "top": 4145, "right": 2820, "bottom": 5550, "left": 1040}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704227f.jpg"} -{"rects": [{"solidity": 0.9959064620314965, "top": 525, "right": 5080, "bottom": 3760, "left": 1050}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705971f.jpg"} -{"rects": [{"solidity": 0.9959065375228598, "top": 1220, "right": 3505, "bottom": 4850, "left": 340}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718346f.jpg"} -{"rects": [{"solidity": 0.9959065790371364, "top": 795, "right": 2010, "bottom": 3210, "left": 385}, {"solidity": 0.9960578528807622, "top": 810, "right": 3845, "bottom": 3220, "left": 2225}, {"solidity": 0.9947728905352573, "top": 855, "right": 5710, "bottom": 3245, "left": 4105}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723290f.jpg"} -{"rects": [{"solidity": 0.9959066496782414, "top": 875, "right": 3955, "bottom": 3290, "left": 2325}, {"solidity": 0.9960565761916594, "top": 875, "right": 5815, "bottom": 3290, "left": 4190}, {"solidity": 0.9959278801022885, "top": 885, "right": 2065, "bottom": 3300, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709407f.jpg"} -{"rects": [{"solidity": 0.9959071739387225, "top": 2235, "right": 3035, "bottom": 3880, "left": 600}, {"solidity": 0.9971459736348455, "top": 365, "right": 3060, "bottom": 1985, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701292f.jpg"} -{"rects": [{"solidity": 0.9959072899583472, "top": 795, "right": 3335, "bottom": 2825, "left": 345}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723385f.jpg"} -{"rects": [{"solidity": 0.9959075930114656, "top": 680, "right": 3345, "bottom": 2580, "left": 625}, {"solidity": 0.9964347297515227, "top": 3310, "right": 3310, "bottom": 5190, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712543f.jpg"} -{"rects": [{"solidity": 0.9959075983861494, "top": 985, "right": 5650, "bottom": 3420, "left": 4030}, {"solidity": 0.9954583348085967, "top": 980, "right": 3860, "bottom": 3405, "left": 2245}, {"solidity": 0.9969357786189792, "top": 975, "right": 2085, "bottom": 3395, "left": 490}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734691f.jpg"} -{"rects": [{"solidity": 0.9959077538151501, "top": 410, "right": 3275, "bottom": 2020, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726412f.jpg"} -{"rects": [{"solidity": 0.9959078534132059, "top": 620, "right": 3335, "bottom": 2555, "left": 610}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724736f.jpg"} -{"rects": [{"solidity": 0.9959082391285482, "top": 440, "right": 3170, "bottom": 2075, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719756f.jpg"} -{"rects": [{"solidity": 0.9959082797356321, "top": 635, "right": 1985, "bottom": 3045, "left": 365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725170f.jpg"} -{"rects": [{"solidity": 0.9959084134941065, "top": 500, "right": 3110, "bottom": 2075, "left": 745}, {"solidity": 0.9856766997490883, "top": 2295, "right": 3110, "bottom": 3875, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714293f.jpg"} -{"rects": [{"solidity": 0.99590877828985, "top": 835, "right": 3845, "bottom": 3260, "left": 2195}, {"solidity": 0.9957275870197219, "top": 840, "right": 1970, "bottom": 3250, "left": 365}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728543f.jpg"} -{"rects": [{"solidity": 0.9959089194582623, "top": 4115, "right": 3135, "bottom": 5740, "left": 710}, {"solidity": 0.9958236522455222, "top": 410, "right": 3125, "bottom": 2015, "left": 715}, {"solidity": 0.9975967299549969, "top": 2275, "right": 3105, "bottom": 3860, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734788f.jpg"} -{"rects": [{"solidity": 0.9959089705587952, "top": 355, "right": 3220, "bottom": 1980, "left": 810}, {"solidity": 0.995842070454091, "top": 2245, "right": 2875, "bottom": 3615, "left": 1080}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724265f.jpg"} -{"rects": [{"solidity": 0.995908975518945, "top": 410, "right": 3145, "bottom": 2015, "left": 735}, {"solidity": 0.9952006104662838, "top": 2270, "right": 3150, "bottom": 3860, "left": 750}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/729004f.jpg"} -{"rects": [{"solidity": 0.9959090165275732, "top": 805, "right": 2250, "bottom": 3215, "left": 645}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709911f.jpg"} -{"rects": [{"solidity": 0.9959090894094903, "top": 435, "right": 3115, "bottom": 2040, "left": 725}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/717681f.jpg"} -{"rects": [{"solidity": 0.995909114767866, "top": 785, "right": 2010, "bottom": 3190, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721412f.jpg"} -{"rects": [{"solidity": 0.9959091928453406, "top": 915, "right": 2380, "bottom": 3615, "left": 565}, {"solidity": 0.9976516186685925, "top": 915, "right": 4480, "bottom": 3615, "left": 2685}], "shape": {"h": 4430, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711301f.jpg"} -{"rects": [{"solidity": 0.9959092992408287, "top": 735, "right": 4785, "bottom": 3300, "left": 1330}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701012f.jpg"} -{"rects": [{"solidity": 0.9959093158900999, "top": 645, "right": 2700, "bottom": 3495, "left": 875}, {"solidity": 0.9947489414376799, "top": 675, "right": 5210, "bottom": 2100, "left": 3375}, {"solidity": 0.9941685089411161, "top": 2095, "right": 5190, "bottom": 3505, "left": 3375}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707110f.jpg"} -{"rects": [{"solidity": 0.9959094663803073, "top": 2270, "right": 3185, "bottom": 3865, "left": 790}, {"solidity": 0.9971461815175247, "top": 420, "right": 3185, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724697f.jpg"} -{"rects": [{"solidity": 0.9959095230017315, "top": 2230, "right": 3095, "bottom": 3880, "left": 665}, {"solidity": 0.9962822526651903, "top": 390, "right": 3110, "bottom": 2020, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721694f.jpg"} -{"rects": [{"solidity": 0.9959096693396894, "top": 605, "right": 2705, "bottom": 1990, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707007f.jpg"} -{"rects": [{"solidity": 0.995909859598065, "top": 375, "right": 3295, "bottom": 1975, "left": 885}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725928f.jpg"} -{"rects": [{"solidity": 0.9959100009533798, "top": 3890, "right": 3210, "bottom": 5550, "left": 760}, {"solidity": 0.9958635183976309, "top": 2095, "right": 3245, "bottom": 3750, "left": 815}, {"solidity": 0.997272534518983, "top": 255, "right": 3235, "bottom": 1885, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704372f.jpg"} -{"rects": [{"solidity": 0.9959101400536821, "top": 1070, "right": 3415, "bottom": 5110, "left": 440}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708510f.jpg"} -{"rects": [{"solidity": 0.9959105631528631, "top": 365, "right": 3055, "bottom": 2010, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729595f.jpg"} -{"rects": [{"solidity": 0.995910576228266, "top": 2200, "right": 3155, "bottom": 3835, "left": 730}, {"solidity": 0.9986330694039667, "top": 400, "right": 3140, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730547f.jpg"} -{"rects": [{"solidity": 0.9959106140206598, "top": 3975, "right": 3200, "bottom": 5615, "left": 780}, {"solidity": 0.9955407187195986, "top": 2270, "right": 3060, "bottom": 3690, "left": 1260}, {"solidity": 0.9953115299610122, "top": 520, "right": 3070, "bottom": 1940, "left": 1280}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727698f.jpg"} -{"rects": [{"solidity": 0.9959106822394164, "top": 465, "right": 5715, "bottom": 4100, "left": 1130}], "shape": {"h": 4425, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708824f.jpg"} -{"rects": [{"solidity": 0.995910867840405, "top": 885, "right": 3890, "bottom": 3315, "left": 2270}, {"solidity": 0.9973230987550796, "top": 890, "right": 2045, "bottom": 3315, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729744f.jpg"} -{"rects": [{"solidity": 0.9959109598568836, "top": 2220, "right": 3140, "bottom": 3840, "left": 720}, {"solidity": 0.9967340492101151, "top": 410, "right": 3115, "bottom": 1990, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731393f.jpg"} -{"rects": [{"solidity": 0.9959109694592323, "top": 1055, "right": 2885, "bottom": 2110, "left": 1515}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509369.jpg"} -{"rects": [{"solidity": 0.9959111858917821, "top": 690, "right": 2675, "bottom": 2220, "left": 850}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725076f.jpg"} -{"rects": [{"solidity": 0.995911200787688, "top": 795, "right": 3145, "bottom": 2685, "left": 390}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702858f.jpg"} -{"rects": [{"solidity": 0.9959112218277397, "top": 975, "right": 3460, "bottom": 4975, "left": 250}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/708760f.jpg"} -{"rects": [{"solidity": 0.9959112809275938, "top": 445, "right": 3150, "bottom": 2065, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715457f.jpg"} -{"rects": [{"solidity": 0.9959113741676726, "top": 2245, "right": 3215, "bottom": 3860, "left": 795}, {"solidity": 0.9981948692504301, "top": 425, "right": 3205, "bottom": 2025, "left": 795}, {"solidity": 0.9962635304253049, "top": 4060, "right": 3195, "bottom": 5675, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702607f.jpg"} -{"rects": [{"solidity": 0.9959114205714322, "top": 2270, "right": 3140, "bottom": 3890, "left": 720}, {"solidity": 0.9941699451288953, "top": 435, "right": 3155, "bottom": 2050, "left": 735}, {"solidity": 0.9941686806315967, "top": 4125, "right": 3140, "bottom": 5735, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734780f.jpg"} -{"rects": [{"solidity": 0.9959114205714322, "top": 440, "right": 3165, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703953f.jpg"} -{"rects": [{"solidity": 0.9959114897126766, "top": 810, "right": 3730, "bottom": 3240, "left": 2120}, {"solidity": 0.9966254769947126, "top": 815, "right": 1890, "bottom": 3220, "left": 290}, {"solidity": 0.9974614467460661, "top": 830, "right": 5565, "bottom": 3240, "left": 3965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730080f.jpg"} -{"rects": [{"solidity": 0.9959116186244179, "top": 2310, "right": 3170, "bottom": 3940, "left": 750}, {"solidity": 0.9953244816237862, "top": 425, "right": 3185, "bottom": 2050, "left": 770}, {"solidity": 0.9990401051939514, "top": 4150, "right": 3150, "bottom": 5745, "left": 750}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722892f.jpg"} -{"rects": [{"solidity": 0.9959117052181327, "top": 1220, "right": 3460, "bottom": 4985, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724019f.jpg"} -{"rects": [{"solidity": 0.9959118128774695, "top": 375, "right": 3210, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/705340f.jpg"} -{"rects": [{"solidity": 0.9959119177461444, "top": 1130, "right": 3555, "bottom": 5145, "left": 300}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721330f.jpg"} -{"rects": [{"solidity": 0.9959120234039068, "top": 390, "right": 3190, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722572f.jpg"} -{"rects": [{"solidity": 0.9959120839316439, "top": 445, "right": 3075, "bottom": 2055, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728404f.jpg"} -{"rects": [{"solidity": 0.9959121170042955, "top": 910, "right": 3890, "bottom": 3330, "left": 2270}, {"solidity": 0.9982770456717502, "top": 920, "right": 2010, "bottom": 3295, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721273f.jpg"} -{"rects": [{"solidity": 0.9959121519390977, "top": 570, "right": 4890, "bottom": 3625, "left": 1060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718432f.jpg"} -{"rects": [{"solidity": 0.9959122602853594, "top": 760, "right": 2025, "bottom": 3160, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719299f.jpg"} -{"rects": [{"solidity": 0.9959126843030462, "top": 540, "right": 3130, "bottom": 2125, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710921f.jpg"} -{"rects": [{"solidity": 0.9959126943923814, "top": 640, "right": 2525, "bottom": 3090, "left": 870}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707821f.jpg"} -{"rects": [{"solidity": 0.99591307782453, "top": 310, "right": 3105, "bottom": 1935, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715710f.jpg"} -{"rects": [{"solidity": 0.995913087796035, "top": 380, "right": 3155, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705379f.jpg"} -{"rects": [{"solidity": 0.9959131973429337, "top": 770, "right": 3875, "bottom": 3200, "left": 2260}, {"solidity": 0.997322806948977, "top": 780, "right": 1995, "bottom": 3195, "left": 395}, {"solidity": 0.9953227067350373, "top": 800, "right": 5730, "bottom": 3205, "left": 4145}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709297f.jpg"} -{"rects": [{"solidity": 0.9959134285376778, "top": 2275, "right": 3185, "bottom": 3910, "left": 760}, {"solidity": 0.9961007721686616, "top": 425, "right": 3200, "bottom": 2060, "left": 775}, {"solidity": 0.9728518930113909, "top": 4105, "right": 3275, "bottom": 5740, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719597f.jpg"} -{"rects": [{"solidity": 0.9959134560810043, "top": 815, "right": 2055, "bottom": 3230, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702154f.jpg"} -{"rects": [{"solidity": 0.9959139961310801, "top": 565, "right": 2945, "bottom": 1980, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725791f.jpg"} -{"rects": [{"solidity": 0.995914041134683, "top": 300, "right": 2015, "bottom": 1320, "left": 480}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727157f.jpg"} -{"rects": [{"solidity": 0.9959140686709509, "top": 665, "right": 2750, "bottom": 2085, "left": 925}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704968f.jpg"} -{"rects": [{"solidity": 0.9959143590671734, "top": 790, "right": 2025, "bottom": 3180, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713874f.jpg"} -{"rects": [{"solidity": 0.9959144025851044, "top": 2250, "right": 2935, "bottom": 3655, "left": 1085}, {"solidity": 0.9975741002117149, "top": 2215, "right": 5025, "bottom": 3645, "left": 3225}, {"solidity": 0.9948284642120824, "top": 600, "right": 2915, "bottom": 2000, "left": 1090}, {"solidity": 0.9951928806960391, "top": 585, "right": 5040, "bottom": 1985, "left": 3225}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726414f.jpg"} -{"rects": [{"solidity": 0.9959145311046272, "top": 2305, "right": 3090, "bottom": 3960, "left": 640}, {"solidity": 0.995843102790189, "top": 435, "right": 3080, "bottom": 2060, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722903f.jpg"} -{"rects": [{"solidity": 0.9959145667604254, "top": 790, "right": 5755, "bottom": 3205, "left": 4135}, {"solidity": 0.9974746659260743, "top": 780, "right": 3890, "bottom": 3195, "left": 2275}, {"solidity": 0.9967540890047603, "top": 785, "right": 2045, "bottom": 3195, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715460f.jpg"} -{"rects": [{"solidity": 0.9959148836360794, "top": 445, "right": 3195, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714998f.jpg"} -{"rects": [{"solidity": 0.9959150636769486, "top": 450, "right": 4965, "bottom": 3690, "left": 965}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732367f.jpg"} -{"rects": [{"solidity": 0.9959153335921506, "top": 295, "right": 3085, "bottom": 1905, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707904f.jpg"} -{"rects": [{"solidity": 0.9959153864548528, "top": 810, "right": 3840, "bottom": 3225, "left": 2210}, {"solidity": 0.9961228207129846, "top": 825, "right": 2030, "bottom": 3225, "left": 410}, {"solidity": 0.9959491535398317, "top": 845, "right": 5685, "bottom": 3250, "left": 4075}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717297f.jpg"} -{"rects": [{"solidity": 0.9959155344029068, "top": 2180, "right": 3335, "bottom": 3815, "left": 900}, {"solidity": 0.9957263177453923, "top": 370, "right": 3335, "bottom": 2005, "left": 900}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706177f.jpg"} -{"rects": [{"solidity": 0.9959157480001591, "top": 480, "right": 3015, "bottom": 1900, "left": 1215}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727743f.jpg"} -{"rects": [{"solidity": 0.9959157626037013, "top": 870, "right": 5730, "bottom": 3310, "left": 4095}, {"solidity": 0.9962923456536267, "top": 860, "right": 3880, "bottom": 3290, "left": 2245}, {"solidity": 0.9987974530506972, "top": 855, "right": 1990, "bottom": 3280, "left": 380}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730443f.jpg"} -{"rects": [{"solidity": 0.9959159612960797, "top": 900, "right": 3885, "bottom": 3310, "left": 2275}, {"solidity": 0.9955941394233276, "top": 920, "right": 5715, "bottom": 3330, "left": 4095}, {"solidity": 0.9956964150167361, "top": 910, "right": 2035, "bottom": 3290, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728864f.jpg"} -{"rects": [{"solidity": 0.9959160037792204, "top": 990, "right": 1885, "bottom": 2950, "left": 405}, {"solidity": 0.9985396986512561, "top": 1065, "right": 5560, "bottom": 2910, "left": 4135}, {"solidity": 0.9951833203043442, "top": 1065, "right": 3735, "bottom": 2900, "left": 2315}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704273f.jpg"} -{"rects": [{"solidity": 0.9959161025413383, "top": 760, "right": 3900, "bottom": 3200, "left": 2255}, {"solidity": 0.9964030620415746, "top": 760, "right": 2015, "bottom": 3190, "left": 385}, {"solidity": 0.9855823736499791, "top": 785, "right": 5815, "bottom": 1780, "left": 4105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720798f.jpg"} -{"rects": [{"solidity": 0.9959163943423683, "top": 770, "right": 2705, "bottom": 2170, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727449f.jpg"} -{"rects": [{"solidity": 0.9959170485254377, "top": 555, "right": 3150, "bottom": 2160, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710738f.jpg"} -{"rects": [{"solidity": 0.995917049947551, "top": 395, "right": 3120, "bottom": 2020, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728618f.jpg"} -{"rects": [{"solidity": 0.9959170509884865, "top": 365, "right": 3215, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708954f.jpg"} -{"rects": [{"solidity": 0.9959170864432387, "top": 450, "right": 3180, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705604f.jpg"} -{"rects": [{"solidity": 0.9959172041013686, "top": 720, "right": 3910, "bottom": 3145, "left": 2270}, {"solidity": 0.9989974288902185, "top": 725, "right": 2020, "bottom": 3150, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719651f.jpg"} -{"rects": [{"solidity": 0.9959172377867131, "top": 815, "right": 2160, "bottom": 3225, "left": 540}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722061f.jpg"} -{"rects": [{"solidity": 0.99591736107687, "top": 770, "right": 2045, "bottom": 3165, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719351f.jpg"} -{"rects": [{"solidity": 0.9959174798713585, "top": 2220, "right": 3190, "bottom": 3830, "left": 770}, {"solidity": 0.9968197914329473, "top": 445, "right": 3190, "bottom": 2050, "left": 775}, {"solidity": 0.9937171806639057, "top": 4010, "right": 2920, "bottom": 5445, "left": 1080}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731341f.jpg"} -{"rects": [{"solidity": 0.9959176359684317, "top": 505, "right": 2130, "bottom": 2645, "left": 605}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509343.jpg"} -{"rects": [{"solidity": 0.9959180680484944, "top": 705, "right": 2725, "bottom": 2135, "left": 905}, {"solidity": 0.994701018001612, "top": 2160, "right": 2740, "bottom": 3570, "left": 925}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702512f.jpg"} -{"rects": [{"solidity": 0.9959181217660061, "top": 4030, "right": 3210, "bottom": 5690, "left": 765}, {"solidity": 0.9965507621293972, "top": 2180, "right": 3200, "bottom": 3820, "left": 765}, {"solidity": 0.997484826073651, "top": 320, "right": 3195, "bottom": 1955, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703217f.jpg"} -{"rects": [{"solidity": 0.9959181247151604, "top": 610, "right": 5105, "bottom": 2015, "left": 3290}, {"solidity": 0.9963647003977504, "top": 615, "right": 2875, "bottom": 2020, "left": 1065}, {"solidity": 0.9962919965171789, "top": 2245, "right": 5120, "bottom": 3640, "left": 3315}, {"solidity": 0.9942625547470948, "top": 2265, "right": 2870, "bottom": 3665, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725779f.jpg"} -{"rects": [{"solidity": 0.9959181564534463, "top": 805, "right": 2060, "bottom": 3230, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708084f.jpg"} -{"rects": [{"solidity": 0.9959181671000343, "top": 805, "right": 3965, "bottom": 3210, "left": 2360}, {"solidity": 0.996438378689468, "top": 810, "right": 5815, "bottom": 3205, "left": 4210}, {"solidity": 0.996422582821717, "top": 800, "right": 2095, "bottom": 3190, "left": 515}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731688f.jpg"} -{"rects": [{"solidity": 0.9959185206327269, "top": 975, "right": 4845, "bottom": 3320, "left": 1250}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708442f.jpg"} -{"rects": [{"solidity": 0.9959188224799287, "top": 2215, "right": 3225, "bottom": 3860, "left": 785}, {"solidity": 0.9958733603548974, "top": 4105, "right": 3200, "bottom": 5735, "left": 765}, {"solidity": 0.9968122297377553, "top": 375, "right": 3225, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725162f.jpg"} -{"rects": [{"solidity": 0.9959188760770077, "top": 2260, "right": 3125, "bottom": 3905, "left": 685}, {"solidity": 0.9956004048148233, "top": 430, "right": 3120, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731874f.jpg"} -{"rects": [{"solidity": 0.9959189552525447, "top": 680, "right": 2710, "bottom": 2120, "left": 875}, {"solidity": 0.9965622854471707, "top": 680, "right": 5295, "bottom": 2100, "left": 3470}, {"solidity": 0.9973684468445865, "top": 2190, "right": 2720, "bottom": 3600, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706002f.jpg"} -{"rects": [{"solidity": 0.9959190000347433, "top": 435, "right": 3525, "bottom": 2210, "left": 860}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711273f.jpg"} -{"rects": [{"solidity": 0.9959190044485621, "top": 430, "right": 3575, "bottom": 2260, "left": 840}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/703423f.jpg"} -{"rects": [{"solidity": 0.9959194952743253, "top": 900, "right": 3275, "bottom": 2930, "left": 450}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728708f.jpg"} -{"rects": [{"solidity": 0.9959198409479817, "top": 620, "right": 2640, "bottom": 2010, "left": 800}, {"solidity": 0.9963036237509704, "top": 2020, "right": 2605, "bottom": 3450, "left": 830}, {"solidity": 0.9966627572772528, "top": 2015, "right": 5155, "bottom": 3425, "left": 3375}, {"solidity": 0.9961399870648503, "top": 615, "right": 5155, "bottom": 2000, "left": 3375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706037f.jpg"} -{"rects": [{"solidity": 0.9959200395632527, "top": 605, "right": 3320, "bottom": 2530, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707894f.jpg"} -{"rects": [{"solidity": 0.9959201202490874, "top": 420, "right": 3140, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713287f.jpg"} -{"rects": [{"solidity": 0.9959201650478685, "top": 2315, "right": 3140, "bottom": 3910, "left": 755}, {"solidity": 0.9950132032973101, "top": 475, "right": 3150, "bottom": 2060, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713783f.jpg"} -{"rects": [{"solidity": 0.9959201773835921, "top": 530, "right": 5430, "bottom": 1995, "left": 3185}, {"solidity": 0.996268864731414, "top": 2160, "right": 5435, "bottom": 3595, "left": 3195}, {"solidity": 0.9956879085255201, "top": 2185, "right": 2810, "bottom": 3565, "left": 700}, {"solidity": 0.9902093661946714, "top": 560, "right": 2765, "bottom": 1960, "left": 690}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710520f.jpg"} -{"rects": [{"solidity": 0.9959202703022811, "top": 565, "right": 4995, "bottom": 3620, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717640f.jpg"} -{"rects": [{"solidity": 0.9959203555988553, "top": 480, "right": 3260, "bottom": 2115, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707350f.jpg"} -{"rects": [{"solidity": 0.9959203772662574, "top": 955, "right": 3605, "bottom": 3185, "left": 460}, {"solidity": 0.9958696474975297, "top": 3900, "right": 3420, "bottom": 5730, "left": 700}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711633f.jpg"} -{"rects": [{"solidity": 0.995920411104442, "top": 445, "right": 3175, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707198f.jpg"} -{"rects": [{"solidity": 0.9959205629021803, "top": 860, "right": 3835, "bottom": 3245, "left": 2225}, {"solidity": 0.9957289781445902, "top": 830, "right": 2030, "bottom": 3230, "left": 455}, {"solidity": 0.9950076030685643, "top": 905, "right": 5610, "bottom": 3235, "left": 4015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719736f.jpg"} -{"rects": [{"solidity": 0.9959207384394176, "top": 2230, "right": 3195, "bottom": 3855, "left": 770}, {"solidity": 0.997909378483027, "top": 425, "right": 3195, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723332f.jpg"} -{"rects": [{"solidity": 0.995920745920746, "top": 550, "right": 2750, "bottom": 1970, "left": 900}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706282f.jpg"} -{"rects": [{"solidity": 0.9959207629275822, "top": 380, "right": 3100, "bottom": 1995, "left": 675}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729667f.jpg"} -{"rects": [{"solidity": 0.9959208456736095, "top": 755, "right": 2020, "bottom": 3175, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719295f.jpg"} -{"rects": [{"solidity": 0.9959209314733699, "top": 1200, "right": 3345, "bottom": 4690, "left": 400}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724018f.jpg"} -{"rects": [{"solidity": 0.9959209638800712, "top": 425, "right": 3245, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706884f.jpg"} -{"rects": [{"solidity": 0.9959214221067044, "top": 620, "right": 1535, "bottom": 2435, "left": 325}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716447f.jpg"} -{"rects": [{"solidity": 0.9959215164019707, "top": 415, "right": 3190, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702649f.jpg"} -{"rects": [{"solidity": 0.9959218555044695, "top": 525, "right": 3515, "bottom": 2830, "left": 310}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714551f.jpg"} -{"rects": [{"solidity": 0.9959219698238652, "top": 430, "right": 3130, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729340f.jpg"} -{"rects": [{"solidity": 0.9959221909957569, "top": 475, "right": 5715, "bottom": 2110, "left": 3295}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718183f.jpg"} -{"rects": [{"solidity": 0.9959222584615586, "top": 430, "right": 3170, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/730380f.jpg"} -{"rects": [{"solidity": 0.9959224140863826, "top": 605, "right": 2700, "bottom": 2030, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705995f.jpg"} -{"rects": [{"solidity": 0.9959224975946386, "top": 2290, "right": 3045, "bottom": 3880, "left": 645}, {"solidity": 0.99932857882518, "top": 435, "right": 3045, "bottom": 2010, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734344f.jpg"} -{"rects": [{"solidity": 0.9959225212299171, "top": 430, "right": 3235, "bottom": 2010, "left": 830}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726280f.jpg"} -{"rects": [{"solidity": 0.995922757813396, "top": 420, "right": 5485, "bottom": 3620, "left": 1500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733399f.jpg"} -{"rects": [{"solidity": 0.9959228175156571, "top": 665, "right": 2630, "bottom": 2085, "left": 870}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705517f.jpg"} -{"rects": [{"solidity": 0.9959230008270762, "top": 805, "right": 2090, "bottom": 3225, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718312f.jpg"} -{"rects": [{"solidity": 0.9959230528180498, "top": 435, "right": 3150, "bottom": 2060, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704672f.jpg"} -{"rects": [{"solidity": 0.9959230854089625, "top": 2080, "right": 2720, "bottom": 3525, "left": 885}, {"solidity": 0.9967868548721325, "top": 605, "right": 2695, "bottom": 2030, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703303f.jpg"} -{"rects": [{"solidity": 0.9959232422963612, "top": 385, "right": 3220, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733862f.jpg"} -{"rects": [{"solidity": 0.995923908713402, "top": 2230, "right": 3165, "bottom": 3880, "left": 725}, {"solidity": 0.9962966290980976, "top": 415, "right": 3165, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702495f.jpg"} -{"rects": [{"solidity": 0.9959239607856917, "top": 2275, "right": 3330, "bottom": 3940, "left": 890}, {"solidity": 0.9968197031082358, "top": 420, "right": 3335, "bottom": 2055, "left": 915}, {"solidity": 0.996068991623555, "top": 4150, "right": 3265, "bottom": 5780, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702265f.jpg"} -{"rects": [{"solidity": 0.9959240392035067, "top": 445, "right": 3130, "bottom": 2070, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707483f.jpg"} -{"rects": [{"solidity": 0.99592404713499, "top": 435, "right": 3100, "bottom": 1850, "left": 1290}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726552f.jpg"} -{"rects": [{"solidity": 0.9959240542506755, "top": 430, "right": 3140, "bottom": 2060, "left": 735}, {"solidity": 0.9518273659188827, "top": 5195, "right": 3850, "bottom": 6010, "left": 2975}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718758f.jpg"} -{"rects": [{"solidity": 0.9959242497785833, "top": 320, "right": 5070, "bottom": 3665, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713665f.jpg"} -{"rects": [{"solidity": 0.9959242766719656, "top": 790, "right": 3805, "bottom": 3215, "left": 2185}, {"solidity": 0.9944667991790695, "top": 805, "right": 5575, "bottom": 3230, "left": 3945}, {"solidity": 0.9972508725067754, "top": 785, "right": 2025, "bottom": 3195, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733122f.jpg"} -{"rects": [{"solidity": 0.9959242816426709, "top": 515, "right": 3255, "bottom": 2165, "left": 820}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702588f.jpg"} -{"rects": [{"solidity": 0.9959242835206153, "top": 645, "right": 2770, "bottom": 2080, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706217f.jpg"} -{"rects": [{"solidity": 0.9959242941022138, "top": 390, "right": 3155, "bottom": 3810, "left": 700}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714132f.jpg"} -{"rects": [{"solidity": 0.995924461498806, "top": 2235, "right": 2960, "bottom": 3675, "left": 1160}, {"solidity": 0.993604967167921, "top": 465, "right": 2980, "bottom": 1910, "left": 1185}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726879f.jpg"} -{"rects": [{"solidity": 0.9959246042070355, "top": 1050, "right": 3505, "bottom": 5060, "left": 270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732230f.jpg"} -{"rects": [{"solidity": 0.9959246068321446, "top": 285, "right": 3215, "bottom": 1910, "left": 800}, {"solidity": 0.997688560150777, "top": 2115, "right": 3215, "bottom": 3735, "left": 810}, {"solidity": 0.9973966670870806, "top": 3960, "right": 3210, "bottom": 5570, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734420f.jpg"} -{"rects": [{"solidity": 0.995924841618747, "top": 780, "right": 2095, "bottom": 3215, "left": 450}, {"solidity": 0.9959744688180824, "top": 800, "right": 3960, "bottom": 3235, "left": 2315}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730579f.jpg"} -{"rects": [{"solidity": 0.9959248768365057, "top": 1070, "right": 3515, "bottom": 5090, "left": 280}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709054f.jpg"} -{"rects": [{"solidity": 0.9959250597550526, "top": 490, "right": 3185, "bottom": 2115, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724437f.jpg"} -{"rects": [{"solidity": 0.9959250703352863, "top": 3970, "right": 3270, "bottom": 5590, "left": 845}, {"solidity": 0.9952891828668227, "top": 460, "right": 3270, "bottom": 2085, "left": 840}, {"solidity": 0.9958917515284816, "top": 2235, "right": 3265, "bottom": 3850, "left": 845}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733272f.jpg"} -{"rects": [{"solidity": 0.9959251358288057, "top": 450, "right": 2950, "bottom": 2005, "left": 1000}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701050f.jpg"} -{"rects": [{"solidity": 0.9959252379846761, "top": 660, "right": 1540, "bottom": 2460, "left": 330}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715914f.jpg"} -{"rects": [{"solidity": 0.9959252668472707, "top": 2245, "right": 3185, "bottom": 3885, "left": 745}, {"solidity": 0.9959574297831479, "top": 405, "right": 3160, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723168f.jpg"} -{"rects": [{"solidity": 0.9959254484394149, "top": 2295, "right": 3255, "bottom": 3940, "left": 820}, {"solidity": 0.9960823160989327, "top": 420, "right": 3265, "bottom": 2065, "left": 835}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726491f.jpg"} -{"rects": [{"solidity": 0.9959255842558425, "top": 410, "right": 3130, "bottom": 2035, "left": 710}, {"solidity": 0.9968080930286435, "top": 2230, "right": 3120, "bottom": 3860, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708054f.jpg"} -{"rects": [{"solidity": 0.9959257475197365, "top": 930, "right": 3435, "bottom": 2835, "left": 635}, {"solidity": 0.9953051760371792, "top": 3175, "right": 3395, "bottom": 5080, "left": 695}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/727027f.jpg"} -{"rects": [{"solidity": 0.9959257553247394, "top": 805, "right": 3855, "bottom": 3210, "left": 2230}, {"solidity": 0.9980147042071998, "top": 810, "right": 1990, "bottom": 3205, "left": 375}], "shape": {"h": 3840, "w": 6030}, "file": "/usr/local/google/home/danvk/milstein/726679f.jpg"} -{"rects": [{"solidity": 0.9959258024847433, "top": 860, "right": 3060, "bottom": 2085, "left": 1245}], "shape": {"h": 3005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1509725.jpg"} -{"rects": [{"solidity": 0.995926067344469, "top": 805, "right": 2040, "bottom": 3225, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720437f.jpg"} -{"rects": [{"solidity": 0.9959261436837556, "top": 380, "right": 3155, "bottom": 2015, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700489f.jpg"} -{"rects": [{"solidity": 0.9959262463362041, "top": 790, "right": 3840, "bottom": 3195, "left": 2215}, {"solidity": 0.999215996267883, "top": 785, "right": 1945, "bottom": 3195, "left": 335}, {"solidity": 0.9968306852019626, "top": 790, "right": 5720, "bottom": 3195, "left": 4105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724276f.jpg"} -{"rects": [{"solidity": 0.9959262860038671, "top": 935, "right": 3490, "bottom": 2990, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721749f.jpg"} -{"rects": [{"solidity": 0.9959264348652891, "top": 875, "right": 2015, "bottom": 3275, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713505f.jpg"} -{"rects": [{"solidity": 0.9959268119221568, "top": 795, "right": 2015, "bottom": 3225, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705648f.jpg"} -{"rects": [{"solidity": 0.9959269221140205, "top": 415, "right": 3245, "bottom": 2045, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706804f.jpg"} -{"rects": [{"solidity": 0.9959269320130465, "top": 780, "right": 3745, "bottom": 3220, "left": 2095}, {"solidity": 0.9958962198068045, "top": 805, "right": 5595, "bottom": 3155, "left": 4015}, {"solidity": 0.9975079963385645, "top": 855, "right": 1865, "bottom": 3200, "left": 315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723569f.jpg"} -{"rects": [{"solidity": 0.995926995256754, "top": 725, "right": 3625, "bottom": 2345, "left": 2565}, {"solidity": 0.9983508156776513, "top": 710, "right": 1920, "bottom": 2320, "left": 865}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509525.jpg"} -{"rects": [{"solidity": 0.9959271475691954, "top": 2260, "right": 3310, "bottom": 3900, "left": 875}, {"solidity": 0.9978421355151741, "top": 410, "right": 3290, "bottom": 2030, "left": 870}, {"solidity": 0.9973208694585574, "top": 4065, "right": 3285, "bottom": 5680, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731011f.jpg"} -{"rects": [{"solidity": 0.9959271999095651, "top": 430, "right": 3155, "bottom": 2055, "left": 740}, {"solidity": 0.9930800243935493, "top": 2285, "right": 2980, "bottom": 3845, "left": 1065}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724134f.jpg"} -{"rects": [{"solidity": 0.9959272727272728, "top": 845, "right": 3920, "bottom": 3255, "left": 2300}, {"solidity": 0.9943469785575049, "top": 830, "right": 2025, "bottom": 3220, "left": 415}, {"solidity": 0.9957089644896946, "top": 865, "right": 5755, "bottom": 3260, "left": 4150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734401f.jpg"} -{"rects": [{"solidity": 0.9959273244249669, "top": 780, "right": 3875, "bottom": 3185, "left": 2255}, {"solidity": 0.9969078257803087, "top": 770, "right": 2060, "bottom": 3170, "left": 440}, {"solidity": 0.9963719029139589, "top": 795, "right": 5705, "bottom": 3200, "left": 4095}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719838f.jpg"} -{"rects": [{"solidity": 0.9959273317262507, "top": 2210, "right": 3265, "bottom": 3810, "left": 870}, {"solidity": 0.9980289924555691, "top": 375, "right": 3245, "bottom": 1960, "left": 860}, {"solidity": 0.9973879987872851, "top": 4045, "right": 3270, "bottom": 5630, "left": 885}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733265f.jpg"} -{"rects": [{"solidity": 0.9959273746720589, "top": 2105, "right": 2675, "bottom": 3550, "left": 830}, {"solidity": 0.9966474026868266, "top": 630, "right": 2685, "bottom": 2075, "left": 845}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706936f.jpg"} -{"rects": [{"solidity": 0.9959275772595404, "top": 4105, "right": 3100, "bottom": 5745, "left": 660}, {"solidity": 0.9964315407895175, "top": 2285, "right": 3065, "bottom": 3870, "left": 665}, {"solidity": 0.9949494444055256, "top": 410, "right": 3065, "bottom": 2010, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728539f.jpg"} -{"rects": [{"solidity": 0.9959276234125848, "top": 1050, "right": 5465, "bottom": 2695, "left": 635}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722919f.jpg"} -{"rects": [{"solidity": 0.9959277092092771, "top": 560, "right": 3115, "bottom": 2140, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723176f.jpg"} -{"rects": [{"solidity": 0.9959277295041083, "top": 405, "right": 3100, "bottom": 2005, "left": 695}, {"solidity": 0.9973061047143168, "top": 2280, "right": 3110, "bottom": 3865, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729021f.jpg"} -{"rects": [{"solidity": 0.9959283213327508, "top": 1260, "right": 3265, "bottom": 4885, "left": 505}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724890f.jpg"} -{"rects": [{"solidity": 0.9959283281773988, "top": 4035, "right": 3200, "bottom": 5650, "left": 785}, {"solidity": 0.9954288944552198, "top": 2230, "right": 3205, "bottom": 3840, "left": 795}, {"solidity": 0.9943124104701133, "top": 420, "right": 3200, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724436f.jpg"} -{"rects": [{"solidity": 0.9959283839009911, "top": 935, "right": 4375, "bottom": 3660, "left": 2530}, {"solidity": 0.9966633944743751, "top": 935, "right": 2495, "bottom": 3640, "left": 685}, {"solidity": 0.9932463088031318, "top": 955, "right": 6225, "bottom": 3650, "left": 4425}], "shape": {"h": 4425, "w": 6935}, "file": "/usr/local/google/home/danvk/milstein/708899f.jpg"} -{"rects": [{"solidity": 0.9959283971875449, "top": 540, "right": 4095, "bottom": 3620, "left": 2025}, {"solidity": 0.99586406869852, "top": 825, "right": 2000, "bottom": 3270, "left": 355}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716604f.jpg"} -{"rects": [{"solidity": 0.9959284636067739, "top": 1020, "right": 3515, "bottom": 5050, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709003f.jpg"} -{"rects": [{"solidity": 0.9959284817867419, "top": 405, "right": 3160, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707024f.jpg"} -{"rects": [{"solidity": 0.9959286876137406, "top": 395, "right": 3230, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710206f.jpg"} -{"rects": [{"solidity": 0.9959290454716153, "top": 2225, "right": 3135, "bottom": 3890, "left": 670}, {"solidity": 0.995569040930153, "top": 380, "right": 3175, "bottom": 2050, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734033f.jpg"} -{"rects": [{"solidity": 0.9959291037765391, "top": 2485, "right": 3055, "bottom": 3930, "left": 1235}, {"solidity": 0.9953290829124313, "top": 595, "right": 3065, "bottom": 2010, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727392f.jpg"} -{"rects": [{"solidity": 0.9959291447691905, "top": 2185, "right": 4275, "bottom": 3820, "left": 1850}, {"solidity": 0.9965147038946495, "top": 295, "right": 5990, "bottom": 2710, "left": 4355}, {"solidity": 0.996057890357518, "top": 335, "right": 3405, "bottom": 1840, "left": 1550}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733539f.jpg"} -{"rects": [{"solidity": 0.9959291525206585, "top": 440, "right": 3200, "bottom": 2075, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705739f.jpg"} -{"rects": [{"solidity": 0.9959291614666904, "top": 435, "right": 3210, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705100f.jpg"} -{"rects": [{"solidity": 0.9959292667851348, "top": 650, "right": 2670, "bottom": 2080, "left": 835}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702737f.jpg"} -{"rects": [{"solidity": 0.9959294370839967, "top": 670, "right": 2660, "bottom": 2080, "left": 825}, {"solidity": 0.998391803575182, "top": 2145, "right": 2660, "bottom": 3550, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707233f.jpg"} -{"rects": [{"solidity": 0.9959294436906377, "top": 785, "right": 2035, "bottom": 3225, "left": 405}, {"solidity": 0.9964506606691031, "top": 800, "right": 5645, "bottom": 3235, "left": 4025}, {"solidity": 0.9962575547003637, "top": 805, "right": 3845, "bottom": 3230, "left": 2225}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732529f.jpg"} -{"rects": [{"solidity": 0.9959295438678779, "top": 580, "right": 4980, "bottom": 3600, "left": 1130}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717649f.jpg"} -{"rects": [{"solidity": 0.9959297020147975, "top": 2190, "right": 5590, "bottom": 3800, "left": 3195}, {"solidity": 0.9974535471292723, "top": 560, "right": 3185, "bottom": 2150, "left": 795}, {"solidity": 0.9928387291060655, "top": 2200, "right": 3165, "bottom": 3790, "left": 770}, {"solidity": 0.9947240286810072, "top": 550, "right": 5595, "bottom": 2145, "left": 3215}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709229f.jpg"} -{"rects": [{"solidity": 0.9959299562531226, "top": 645, "right": 2500, "bottom": 2130, "left": 405}, {"solidity": 0.9952870223774626, "top": 2510, "right": 2490, "bottom": 3995, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716027f.jpg"} -{"rects": [{"solidity": 0.9959301503208302, "top": 2235, "right": 3255, "bottom": 3850, "left": 820}, {"solidity": 0.9963333225837661, "top": 380, "right": 3255, "bottom": 1990, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727848f.jpg"} -{"rects": [{"solidity": 0.9959301658529123, "top": 2280, "right": 3115, "bottom": 3920, "left": 680}, {"solidity": 0.9978928947122917, "top": 4155, "right": 3080, "bottom": 5775, "left": 665}, {"solidity": 0.9978569980597145, "top": 420, "right": 3120, "bottom": 2040, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718118f.jpg"} -{"rects": [{"solidity": 0.9959303647406541, "top": 860, "right": 2045, "bottom": 3280, "left": 435}, {"solidity": 0.9942740676838785, "top": 880, "right": 3950, "bottom": 3290, "left": 2360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729330f.jpg"} -{"rects": [{"solidity": 0.9959303835829942, "top": 415, "right": 3055, "bottom": 2045, "left": 630}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729650f.jpg"} -{"rects": [{"solidity": 0.9959306035755445, "top": 705, "right": 3220, "bottom": 2610, "left": 435}, {"solidity": 0.9970230122668068, "top": 3350, "right": 3175, "bottom": 5220, "left": 500}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724144f.jpg"} -{"rects": [{"solidity": 0.9959309494451295, "top": 615, "right": 2590, "bottom": 2030, "left": 775}, {"solidity": 0.9968345962974369, "top": 2050, "right": 2580, "bottom": 3445, "left": 790}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706622f.jpg"} -{"rects": [{"solidity": 0.9959311556756792, "top": 805, "right": 2050, "bottom": 3205, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719458f.jpg"} -{"rects": [{"solidity": 0.9959312447697739, "top": 2215, "right": 3210, "bottom": 3840, "left": 775}, {"solidity": 0.9953782393446324, "top": 350, "right": 3205, "bottom": 1975, "left": 775}, {"solidity": 0.995050337197799, "top": 4045, "right": 3195, "bottom": 5680, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728735f.jpg"} -{"rects": [{"solidity": 0.9959315357804585, "top": 410, "right": 3155, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734845f.jpg"} -{"rects": [{"solidity": 0.9959316002266906, "top": 4125, "right": 3230, "bottom": 5770, "left": 790}, {"solidity": 0.9957073120500963, "top": 2270, "right": 3210, "bottom": 3890, "left": 780}, {"solidity": 0.9963657262069676, "top": 440, "right": 3215, "bottom": 2015, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734590f.jpg"} -{"rects": [{"solidity": 0.9959316802861853, "top": 2265, "right": 3070, "bottom": 3905, "left": 630}, {"solidity": 0.9967577837506606, "top": 400, "right": 3070, "bottom": 2010, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734809f.jpg"} -{"rects": [{"solidity": 0.9959316847969566, "top": 430, "right": 3225, "bottom": 2000, "left": 845}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726152f.jpg"} -{"rects": [{"solidity": 0.9959317568352942, "top": 2290, "right": 3095, "bottom": 3930, "left": 680}, {"solidity": 0.9969624155596862, "top": 415, "right": 3115, "bottom": 2040, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710740f.jpg"} -{"rects": [{"solidity": 0.9959319215484433, "top": 675, "right": 2700, "bottom": 2055, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707299f.jpg"} -{"rects": [{"solidity": 0.9959319235909126, "top": 810, "right": 2260, "bottom": 3215, "left": 655}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710304f.jpg"} -{"rects": [{"solidity": 0.9959323201023068, "top": 655, "right": 2620, "bottom": 2080, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716791f.jpg"} -{"rects": [{"solidity": 0.9959325371123604, "top": 840, "right": 2185, "bottom": 3245, "left": 565}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715386f.jpg"} -{"rects": [{"solidity": 0.9959326180090861, "top": 760, "right": 2045, "bottom": 3185, "left": 430}, {"solidity": 0.9962710744230047, "top": 750, "right": 3890, "bottom": 3175, "left": 2275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732818f.jpg"} -{"rects": [{"solidity": 0.9959327083434529, "top": 375, "right": 3290, "bottom": 2005, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703932f.jpg"} -{"rects": [{"solidity": 0.9959327219082607, "top": 870, "right": 5715, "bottom": 3295, "left": 4080}, {"solidity": 0.9967580749739517, "top": 845, "right": 3845, "bottom": 3265, "left": 2225}, {"solidity": 0.995176339833805, "top": 840, "right": 2010, "bottom": 3260, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730258f.jpg"} -{"rects": [{"solidity": 0.995933014354067, "top": 620, "right": 2825, "bottom": 2035, "left": 990}, {"solidity": 0.9970268374835785, "top": 625, "right": 4945, "bottom": 2045, "left": 3145}, {"solidity": 0.997248709714133, "top": 2220, "right": 2835, "bottom": 3630, "left": 1025}, {"solidity": 0.9976739918564917, "top": 2220, "right": 4950, "bottom": 3630, "left": 3145}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728269f.jpg"} -{"rects": [{"solidity": 0.9959334793943452, "top": 405, "right": 3265, "bottom": 2015, "left": 845}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726794f.jpg"} -{"rects": [{"solidity": 0.9959336416533743, "top": 465, "right": 3130, "bottom": 2100, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705664f.jpg"} -{"rects": [{"solidity": 0.9959336739856319, "top": 805, "right": 5800, "bottom": 3245, "left": 4145}, {"solidity": 0.9960113542599183, "top": 810, "right": 3935, "bottom": 3240, "left": 2300}, {"solidity": 0.9971156058686077, "top": 815, "right": 2055, "bottom": 3230, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723271f.jpg"} -{"rects": [{"solidity": 0.9959338305932969, "top": 3845, "right": 3345, "bottom": 5485, "left": 920}, {"solidity": 0.9976752325570194, "top": 250, "right": 3300, "bottom": 1870, "left": 875}, {"solidity": 0.9963718253471788, "top": 2025, "right": 3315, "bottom": 3660, "left": 890}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707949f.jpg"} -{"rects": [{"solidity": 0.9959338863112582, "top": 505, "right": 5020, "bottom": 3675, "left": 1095}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716820f.jpg"} -{"rects": [{"solidity": 0.9959339230631963, "top": 2240, "right": 3200, "bottom": 3900, "left": 745}, {"solidity": 0.9950974584276643, "top": 405, "right": 3225, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707216f.jpg"} -{"rects": [{"solidity": 0.9959339723197347, "top": 490, "right": 3965, "bottom": 2590, "left": 2500}, {"solidity": 0.9915744803576211, "top": 490, "right": 2170, "bottom": 2580, "left": 700}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716084f.jpg"} -{"rects": [{"solidity": 0.9959343676922927, "top": 520, "right": 3145, "bottom": 2145, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713155f.jpg"} -{"rects": [{"solidity": 0.9959343686323139, "top": 425, "right": 3155, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704206f.jpg"} -{"rects": [{"solidity": 0.9959344978705851, "top": 575, "right": 4950, "bottom": 3605, "left": 1235}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709058f.jpg"} -{"rects": [{"solidity": 0.9959346721727347, "top": 2315, "right": 3115, "bottom": 3940, "left": 685}, {"solidity": 0.9948780811025709, "top": 445, "right": 3095, "bottom": 2035, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734355f.jpg"} -{"rects": [{"solidity": 0.995934919973782, "top": 1140, "right": 5595, "bottom": 2770, "left": 3180}, {"solidity": 0.9976965159804204, "top": 1130, "right": 3035, "bottom": 2745, "left": 625}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714284f.jpg"} -{"rects": [{"solidity": 0.9959349593495935, "top": 735, "right": 3910, "bottom": 3160, "left": 2285}, {"solidity": 0.9963620737163926, "top": 710, "right": 2050, "bottom": 3115, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726905f.jpg"} -{"rects": [{"solidity": 0.9959349948859613, "top": 705, "right": 1585, "bottom": 3710, "left": 130}, {"solidity": 0.9810879470946409, "top": 2635, "right": 3560, "bottom": 3800, "left": 1885}, {"solidity": 0.9502589925460682, "top": 830, "right": 3515, "bottom": 1785, "left": 1860}], "shape": {"h": 4595, "w": 5740}, "file": "/usr/local/google/home/danvk/milstein/1823507.jpg"} -{"rects": [{"solidity": 0.995935011641818, "top": 4020, "right": 3180, "bottom": 5640, "left": 745}, {"solidity": 0.9956253632078518, "top": 2220, "right": 3185, "bottom": 3830, "left": 760}, {"solidity": 0.994155699164129, "top": 380, "right": 3200, "bottom": 1990, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730900f.jpg"} -{"rects": [{"solidity": 0.9959350642646982, "top": 745, "right": 3960, "bottom": 3170, "left": 2325}, {"solidity": 0.9951626490409539, "top": 725, "right": 2090, "bottom": 3140, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722108f.jpg"} -{"rects": [{"solidity": 0.9959351435321532, "top": 4100, "right": 3115, "bottom": 5725, "left": 690}, {"solidity": 0.9950792427302559, "top": 385, "right": 3120, "bottom": 2000, "left": 710}, {"solidity": 0.9966659170683536, "top": 2230, "right": 3130, "bottom": 3830, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731078f.jpg"} -{"rects": [{"solidity": 0.995935344548125, "top": 470, "right": 2805, "bottom": 1865, "left": 985}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726537f.jpg"} -{"rects": [{"solidity": 0.9959353521299141, "top": 885, "right": 4395, "bottom": 3305, "left": 2770}, {"solidity": 0.9975384432878094, "top": 2145, "right": 2740, "bottom": 3545, "left": 920}, {"solidity": 0.9991508321844592, "top": 685, "right": 2745, "bottom": 2070, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706764f.jpg"} -{"rects": [{"solidity": 0.9959355594264513, "top": 745, "right": 5720, "bottom": 3155, "left": 4110}, {"solidity": 0.9964773792490996, "top": 730, "right": 3840, "bottom": 3135, "left": 2240}, {"solidity": 0.9987933525294967, "top": 715, "right": 1970, "bottom": 3115, "left": 385}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731676f.jpg"} -{"rects": [{"solidity": 0.9959355790907763, "top": 520, "right": 2805, "bottom": 2935, "left": 1175}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/707700f.jpg"} -{"rects": [{"solidity": 0.9959356144603166, "top": 390, "right": 3280, "bottom": 2010, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725133f.jpg"} -{"rects": [{"solidity": 0.9959357311339728, "top": 375, "right": 3250, "bottom": 1995, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707226f.jpg"} -{"rects": [{"solidity": 0.9959357417351528, "top": 4155, "right": 3120, "bottom": 5790, "left": 685}, {"solidity": 0.9978446123362921, "top": 2305, "right": 3125, "bottom": 3920, "left": 705}, {"solidity": 0.996158440964608, "top": 410, "right": 3145, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729665f.jpg"} -{"rects": [{"solidity": 0.9959362782140159, "top": 865, "right": 3405, "bottom": 2880, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708132f.jpg"} -{"rects": [{"solidity": 0.9959366730659471, "top": 405, "right": 3150, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729411f.jpg"} -{"rects": [{"solidity": 0.995936820227685, "top": 805, "right": 2040, "bottom": 3190, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724938f.jpg"} -{"rects": [{"solidity": 0.9959368498347816, "top": 675, "right": 2610, "bottom": 2115, "left": 805}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706535f.jpg"} -{"rects": [{"solidity": 0.9959368551141995, "top": 650, "right": 1525, "bottom": 2455, "left": 325}, {"solidity": 0.9954944162317892, "top": 650, "right": 2865, "bottom": 2450, "left": 1665}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716502f.jpg"} -{"rects": [{"solidity": 0.9959368885017195, "top": 825, "right": 5685, "bottom": 3240, "left": 4080}, {"solidity": 0.9963463122828384, "top": 810, "right": 2085, "bottom": 3230, "left": 480}, {"solidity": 0.9972175013618911, "top": 820, "right": 3890, "bottom": 3230, "left": 2290}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719807f.jpg"} -{"rects": [{"solidity": 0.9959369117933407, "top": 850, "right": 2030, "bottom": 3255, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712319f.jpg"} -{"rects": [{"solidity": 0.9959370294047714, "top": 480, "right": 5105, "bottom": 3620, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702868f.jpg"} -{"rects": [{"solidity": 0.9959371321202661, "top": 3985, "right": 3165, "bottom": 5595, "left": 760}, {"solidity": 0.9973697531538148, "top": 2205, "right": 3180, "bottom": 3795, "left": 790}, {"solidity": 0.9951876548547484, "top": 425, "right": 3180, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730882f.jpg"} -{"rects": [{"solidity": 0.9959371706388331, "top": 355, "right": 2300, "bottom": 1585, "left": 475}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715860f.jpg"} -{"rects": [{"solidity": 0.9959372090865758, "top": 770, "right": 2040, "bottom": 3205, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707344f.jpg"} -{"rects": [{"solidity": 0.9959373111685373, "top": 4085, "right": 3055, "bottom": 5725, "left": 640}, {"solidity": 0.9957291187973404, "top": 2235, "right": 3080, "bottom": 3860, "left": 655}, {"solidity": 0.9996608527131783, "top": 415, "right": 3075, "bottom": 2030, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710065f.jpg"} -{"rects": [{"solidity": 0.995937316749983, "top": 405, "right": 3210, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731865f.jpg"} -{"rects": [{"solidity": 0.99593745860182, "top": 470, "right": 3115, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714074f.jpg"} -{"rects": [{"solidity": 0.9959375266706495, "top": 770, "right": 1995, "bottom": 3135, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713510f.jpg"} -{"rects": [{"solidity": 0.9959375715776347, "top": 4025, "right": 3145, "bottom": 5675, "left": 705}, {"solidity": 0.9953737847804224, "top": 310, "right": 3180, "bottom": 1950, "left": 755}, {"solidity": 0.9953530378194186, "top": 2145, "right": 3155, "bottom": 3800, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705801f.jpg"} -{"rects": [{"solidity": 0.9959376705268902, "top": 600, "right": 3285, "bottom": 2255, "left": 855}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705382f.jpg"} -{"rects": [{"solidity": 0.9959377181416272, "top": 835, "right": 3925, "bottom": 3265, "left": 2305}, {"solidity": 0.9950433665067198, "top": 820, "right": 5720, "bottom": 3250, "left": 4110}, {"solidity": 0.9964097978201402, "top": 860, "right": 2115, "bottom": 3260, "left": 515}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710359f.jpg"} -{"rects": [{"solidity": 0.9959378356994448, "top": 715, "right": 2075, "bottom": 3140, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726168f.jpg"} -{"rects": [{"solidity": 0.9959378978141412, "top": 415, "right": 3190, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707481f.jpg"} -{"rects": [{"solidity": 0.9959380495460077, "top": 2310, "right": 3155, "bottom": 3925, "left": 745}, {"solidity": 0.9966618182771182, "top": 475, "right": 3150, "bottom": 2090, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710456f.jpg"} -{"rects": [{"solidity": 0.9959381531938865, "top": 645, "right": 2740, "bottom": 2060, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727912f.jpg"} -{"rects": [{"solidity": 0.9959382692671842, "top": 845, "right": 5755, "bottom": 3305, "left": 4090}, {"solidity": 0.9963412127440905, "top": 830, "right": 3880, "bottom": 3280, "left": 2230}, {"solidity": 0.9962168458269461, "top": 820, "right": 2015, "bottom": 3260, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723675f.jpg"} -{"rects": [{"solidity": 0.9959384372992223, "top": 2285, "right": 3115, "bottom": 3915, "left": 695}, {"solidity": 0.9945011494866516, "top": 425, "right": 3105, "bottom": 2020, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710390f.jpg"} -{"rects": [{"solidity": 0.9959385888852715, "top": 2370, "right": 3250, "bottom": 4010, "left": 835}, {"solidity": 0.9949625253163741, "top": 610, "right": 3245, "bottom": 2245, "left": 815}, {"solidity": 0.9962883075140497, "top": 4140, "right": 3265, "bottom": 5735, "left": 850}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733140f.jpg"} -{"rects": [{"solidity": 0.9959387333765743, "top": 340, "right": 2795, "bottom": 1865, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721086f.jpg"} -{"rects": [{"solidity": 0.9959387681147592, "top": 2270, "right": 3025, "bottom": 3875, "left": 615}, {"solidity": 0.9957515579259998, "top": 420, "right": 3030, "bottom": 2020, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729536f.jpg"} -{"rects": [{"solidity": 0.9959389297280625, "top": 3900, "right": 3135, "bottom": 5540, "left": 695}, {"solidity": 0.9937338264309581, "top": 2160, "right": 2835, "bottom": 3580, "left": 1025}, {"solidity": 0.993486769377857, "top": 455, "right": 2875, "bottom": 1880, "left": 1065}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726604f.jpg"} -{"rects": [{"solidity": 0.9959389683053577, "top": 545, "right": 3135, "bottom": 2135, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719828f.jpg"} -{"rects": [{"solidity": 0.9959389844548855, "top": 2250, "right": 3070, "bottom": 3885, "left": 650}, {"solidity": 0.9957769362763453, "top": 4110, "right": 3060, "bottom": 5735, "left": 645}, {"solidity": 0.9965020945053871, "top": 430, "right": 3065, "bottom": 2040, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728525f.jpg"} -{"rects": [{"solidity": 0.9959391783397396, "top": 635, "right": 3390, "bottom": 2570, "left": 650}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/714481f.jpg"} -{"rects": [{"solidity": 0.9959392549762404, "top": 580, "right": 2780, "bottom": 2960, "left": 1185}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708247f.jpg"} -{"rects": [{"solidity": 0.995939345626869, "top": 680, "right": 2335, "bottom": 3555, "left": 325}, {"solidity": 0.9967727003883046, "top": 865, "right": 4085, "bottom": 3280, "left": 2455}, {"solidity": 0.9965321961786162, "top": 885, "right": 5840, "bottom": 3290, "left": 4215}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712397f.jpg"} -{"rects": [{"solidity": 0.9959395163088133, "top": 2235, "right": 3160, "bottom": 3870, "left": 725}, {"solidity": 0.9969747888318751, "top": 400, "right": 3165, "bottom": 2020, "left": 755}, {"solidity": 0.994954030637627, "top": 4090, "right": 3135, "bottom": 5725, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734053f.jpg"} -{"rects": [{"solidity": 0.9959395170850497, "top": 610, "right": 5040, "bottom": 3590, "left": 1220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708405f.jpg"} -{"rects": [{"solidity": 0.9959395592350445, "top": 485, "right": 3100, "bottom": 3760, "left": 715}, {"solidity": 0.9939771021360487, "top": 885, "right": 5145, "bottom": 3095, "left": 3870}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717170f.jpg"} -{"rects": [{"solidity": 0.9959396380842764, "top": 380, "right": 3100, "bottom": 2025, "left": 665}, {"solidity": 0.9958912910790582, "top": 2240, "right": 3090, "bottom": 3875, "left": 665}, {"solidity": 0.9960473927252745, "top": 4090, "right": 3070, "bottom": 5715, "left": 650}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728561f.jpg"} -{"rects": [{"solidity": 0.9959396507970375, "top": 485, "right": 3225, "bottom": 2110, "left": 810}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/700845f.jpg"} -{"rects": [{"solidity": 0.9959398545097066, "top": 585, "right": 5100, "bottom": 3665, "left": 1195}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/723330f.jpg"} -{"rects": [{"solidity": 0.9959400529644556, "top": 445, "right": 3205, "bottom": 2040, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723269f.jpg"} -{"rects": [{"solidity": 0.9959401404465353, "top": 720, "right": 2645, "bottom": 2140, "left": 840}, {"solidity": 0.9959548817561684, "top": 720, "right": 5295, "bottom": 2140, "left": 3500}, {"solidity": 0.9963114036185281, "top": 2195, "right": 2635, "bottom": 3605, "left": 850}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726391f.jpg"} -{"rects": [{"solidity": 0.9959402505049972, "top": 390, "right": 3170, "bottom": 2000, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714980f.jpg"} -{"rects": [{"solidity": 0.9959403034968677, "top": 240, "right": 3190, "bottom": 1855, "left": 760}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/723171f.jpg"} -{"rects": [{"solidity": 0.9959403116085144, "top": 4065, "right": 3240, "bottom": 5980, "left": 480}, {"solidity": 0.9947930404540704, "top": 2115, "right": 3245, "bottom": 3995, "left": 500}, {"solidity": 0.9974708955205431, "top": 200, "right": 3260, "bottom": 2055, "left": 515}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704306f.jpg"} -{"rects": [{"solidity": 0.9959404508287595, "top": 495, "right": 5150, "bottom": 3705, "left": 1135}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717313f.jpg"} -{"rects": [{"solidity": 0.9959404557557625, "top": 395, "right": 3120, "bottom": 2030, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723265f.jpg"} -{"rects": [{"solidity": 0.9959407459407459, "top": 395, "right": 3075, "bottom": 2010, "left": 655}, {"solidity": 0.9973852218579525, "top": 2250, "right": 3070, "bottom": 3830, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729591f.jpg"} -{"rects": [{"solidity": 0.9959407739590984, "top": 450, "right": 3035, "bottom": 2065, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729142f.jpg"} -{"rects": [{"solidity": 0.9959407831900668, "top": 375, "right": 3205, "bottom": 1965, "left": 810}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/728836f.jpg"} -{"rects": [{"solidity": 0.9959408289015578, "top": 1500, "right": 3210, "bottom": 3120, "left": 795}, {"solidity": 0.9955822692637766, "top": 3320, "right": 3200, "bottom": 4930, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731093f.jpg"} -{"rects": [{"solidity": 0.9959408337989814, "top": 735, "right": 3825, "bottom": 3165, "left": 2190}, {"solidity": 0.9972134533691882, "top": 740, "right": 2005, "bottom": 3145, "left": 390}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721966f.jpg"} -{"rects": [{"solidity": 0.9959409047272353, "top": 440, "right": 3125, "bottom": 2085, "left": 700}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700158f.jpg"} -{"rects": [{"solidity": 0.9959415212321545, "top": 985, "right": 3465, "bottom": 5015, "left": 260}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724364f.jpg"} -{"rects": [{"solidity": 0.9959417772320225, "top": 855, "right": 2615, "bottom": 2265, "left": 820}, {"solidity": 0.9938216075065283, "top": 2345, "right": 2640, "bottom": 3460, "left": 815}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726472f.jpg"} -{"rects": [{"solidity": 0.9959421122562574, "top": 330, "right": 3165, "bottom": 1945, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732923f.jpg"} -{"rects": [{"solidity": 0.9959421306792794, "top": 745, "right": 1985, "bottom": 3155, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713686f.jpg"} -{"rects": [{"solidity": 0.9959421611411451, "top": 535, "right": 5670, "bottom": 2160, "left": 3280}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706180f.jpg"} -{"rects": [{"solidity": 0.9959421961773284, "top": 1025, "right": 3555, "bottom": 5055, "left": 290}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715030f.jpg"} -{"rects": [{"solidity": 0.9959422179622539, "top": 595, "right": 2660, "bottom": 2010, "left": 825}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719399f.jpg"} -{"rects": [{"solidity": 0.995942664987471, "top": 2140, "right": 3190, "bottom": 3780, "left": 785}, {"solidity": 0.996627362978419, "top": 450, "right": 3185, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719363f.jpg"} -{"rects": [{"solidity": 0.9959426729727668, "top": 2105, "right": 2785, "bottom": 3555, "left": 950}, {"solidity": 0.99572635143283, "top": 610, "right": 2760, "bottom": 2045, "left": 925}, {"solidity": 0.9974969018628165, "top": 2115, "right": 5245, "bottom": 3540, "left": 3445}, {"solidity": 0.9954421758208971, "top": 615, "right": 5235, "bottom": 1990, "left": 3450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705819f.jpg"} -{"rects": [{"solidity": 0.9959429622517691, "top": 720, "right": 3900, "bottom": 3135, "left": 2275}, {"solidity": 0.9551993750768496, "top": 750, "right": 2020, "bottom": 3110, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714010f.jpg"} -{"rects": [{"solidity": 0.9959429757241617, "top": 545, "right": 3340, "bottom": 2445, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712725f.jpg"} -{"rects": [{"solidity": 0.9959429859369544, "top": 380, "right": 3195, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704118f.jpg"} -{"rects": [{"solidity": 0.9959430143778819, "top": 830, "right": 2250, "bottom": 3200, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718517f.jpg"} -{"rects": [{"solidity": 0.995943075072308, "top": 450, "right": 3200, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700860f.jpg"} -{"rects": [{"solidity": 0.995943086559368, "top": 2235, "right": 3250, "bottom": 3845, "left": 835}, {"solidity": 0.9953671962232365, "top": 415, "right": 3240, "bottom": 2020, "left": 830}, {"solidity": 0.9951836440483601, "top": 4075, "right": 3255, "bottom": 5675, "left": 850}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/726950f.jpg"} -{"rects": [{"solidity": 0.9959433227932936, "top": 345, "right": 3155, "bottom": 1970, "left": 735}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/732330f.jpg"} -{"rects": [{"solidity": 0.9959435923002713, "top": 2270, "right": 3190, "bottom": 3875, "left": 760}, {"solidity": 0.997517365409928, "top": 500, "right": 3185, "bottom": 2100, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723421f.jpg"} -{"rects": [{"solidity": 0.9959436420999, "top": 2050, "right": 2770, "bottom": 3475, "left": 965}, {"solidity": 0.9947312387036075, "top": 630, "right": 2760, "bottom": 2045, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703269f.jpg"} -{"rects": [{"solidity": 0.9959437178535534, "top": 410, "right": 3080, "bottom": 2010, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728565f.jpg"} -{"rects": [{"solidity": 0.9959439703424634, "top": 785, "right": 2040, "bottom": 3230, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722546f.jpg"} -{"rects": [{"solidity": 0.9959440125568926, "top": 570, "right": 4825, "bottom": 3575, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732867f.jpg"} -{"rects": [{"solidity": 0.9959440189222191, "top": 2940, "right": 3465, "bottom": 5020, "left": 595}, {"solidity": 0.996665882503903, "top": 640, "right": 3485, "bottom": 2715, "left": 635}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702225f.jpg"} -{"rects": [{"solidity": 0.9959441175241762, "top": 450, "right": 2415, "bottom": 2875, "left": 775}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712102f.jpg"} -{"rects": [{"solidity": 0.9959442985746436, "top": 710, "right": 2580, "bottom": 2235, "left": 440}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716327f.jpg"} -{"rects": [{"solidity": 0.9959443668687974, "top": 440, "right": 3155, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719297f.jpg"} -{"rects": [{"solidity": 0.9959443971929317, "top": 835, "right": 2070, "bottom": 3240, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712980f.jpg"} -{"rects": [{"solidity": 0.995944583490364, "top": 500, "right": 3195, "bottom": 2130, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723607f.jpg"} -{"rects": [{"solidity": 0.9959446686762377, "top": 800, "right": 2075, "bottom": 3235, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709873f.jpg"} -{"rects": [{"solidity": 0.9959447932077785, "top": 750, "right": 2010, "bottom": 3135, "left": 420}, {"solidity": 0.9925357661206717, "top": 1990, "right": 4040, "bottom": 3165, "left": 2110}, {"solidity": 0.9923512844390942, "top": 765, "right": 4055, "bottom": 1910, "left": 2100}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713615f.jpg"} -{"rects": [{"solidity": 0.9959448179768783, "top": 2280, "right": 3215, "bottom": 3880, "left": 810}, {"solidity": 0.9947217604267541, "top": 465, "right": 3215, "bottom": 2055, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709618f.jpg"} -{"rects": [{"solidity": 0.9959449413142896, "top": 835, "right": 5620, "bottom": 3265, "left": 4005}, {"solidity": 0.9956268597117205, "top": 835, "right": 3760, "bottom": 3255, "left": 2145}, {"solidity": 0.9953354746033539, "top": 815, "right": 1900, "bottom": 3240, "left": 290}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720710f.jpg"} -{"rects": [{"solidity": 0.9959449527333553, "top": 720, "right": 2415, "bottom": 3165, "left": 765}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714975f.jpg"} -{"rects": [{"solidity": 0.9959450116568856, "top": 2360, "right": 3155, "bottom": 4000, "left": 730}, {"solidity": 0.995763543943574, "top": 410, "right": 3180, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700665f.jpg"} -{"rects": [{"solidity": 0.995945153882371, "top": 2090, "right": 3165, "bottom": 3735, "left": 740}, {"solidity": 0.9960718402462505, "top": 4020, "right": 3155, "bottom": 5665, "left": 735}, {"solidity": 0.9936490859715944, "top": 315, "right": 2925, "bottom": 1800, "left": 950}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715035f.jpg"} -{"rects": [{"solidity": 0.9959451816680034, "top": 830, "right": 5660, "bottom": 3265, "left": 4030}, {"solidity": 0.996728451914959, "top": 825, "right": 3790, "bottom": 3255, "left": 2155}, {"solidity": 0.9932071737786023, "top": 1110, "right": 1890, "bottom": 2930, "left": 485}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734753f.jpg"} -{"rects": [{"solidity": 0.995945412693193, "top": 715, "right": 2025, "bottom": 3115, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725989f.jpg"} -{"rects": [{"solidity": 0.995945600188943, "top": 425, "right": 3195, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715429f.jpg"} -{"rects": [{"solidity": 0.9959456635318704, "top": 940, "right": 5695, "bottom": 3375, "left": 4050}, {"solidity": 0.995800859119788, "top": 915, "right": 3815, "bottom": 3350, "left": 2190}, {"solidity": 0.9992352609509983, "top": 920, "right": 1955, "bottom": 3330, "left": 345}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728896f.jpg"} -{"rects": [{"solidity": 0.9959456979168032, "top": 410, "right": 3145, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723489f.jpg"} -{"rects": [{"solidity": 0.9959457637564761, "top": 2255, "right": 3070, "bottom": 3885, "left": 650}, {"solidity": 0.9957709364355035, "top": 375, "right": 3085, "bottom": 2015, "left": 665}, {"solidity": 0.9955055524411622, "top": 4120, "right": 3045, "bottom": 5740, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701075f.jpg"} -{"rects": [{"solidity": 0.9959458710180332, "top": 415, "right": 3185, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734238f.jpg"} -{"rects": [{"solidity": 0.9959459802502982, "top": 755, "right": 3320, "bottom": 2610, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711904f.jpg"} -{"rects": [{"solidity": 0.9959459807570937, "top": 2310, "right": 3070, "bottom": 3940, "left": 640}, {"solidity": 0.9956669631091406, "top": 470, "right": 3085, "bottom": 2080, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734414f.jpg"} -{"rects": [{"solidity": 0.9959463531760048, "top": 415, "right": 3090, "bottom": 2030, "left": 665}, {"solidity": 0.9960088202150496, "top": 2265, "right": 3080, "bottom": 3875, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729760f.jpg"} -{"rects": [{"solidity": 0.9959464051652993, "top": 1055, "right": 3520, "bottom": 5055, "left": 270}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709422f.jpg"} -{"rects": [{"solidity": 0.995946475045487, "top": 730, "right": 3045, "bottom": 2335, "left": 990}], "shape": {"h": 4425, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706431f.jpg"} -{"rects": [{"solidity": 0.9959466355149185, "top": 2210, "right": 3280, "bottom": 3840, "left": 855}, {"solidity": 0.9966233883619883, "top": 340, "right": 3295, "bottom": 1960, "left": 880}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731412f.jpg"} -{"rects": [{"solidity": 0.9959467758444217, "top": 900, "right": 2025, "bottom": 3345, "left": 385}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728965f.jpg"} -{"rects": [{"solidity": 0.9959479082179954, "top": 420, "right": 3180, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/732026f.jpg"} -{"rects": [{"solidity": 0.9959479619290829, "top": 365, "right": 3165, "bottom": 1970, "left": 750}, {"solidity": 0.9936339435906648, "top": 2155, "right": 3140, "bottom": 3785, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718823f.jpg"} -{"rects": [{"solidity": 0.9959479876362718, "top": 480, "right": 2140, "bottom": 2565, "left": 650}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716277f.jpg"} -{"rects": [{"solidity": 0.9959480384007302, "top": 800, "right": 3860, "bottom": 3205, "left": 2250}, {"solidity": 0.9957258387916054, "top": 795, "right": 2025, "bottom": 3180, "left": 435}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721906f.jpg"} -{"rects": [{"solidity": 0.995948318993849, "top": 785, "right": 2415, "bottom": 3195, "left": 785}, {"solidity": 0.9974827203686322, "top": 790, "right": 4160, "bottom": 3185, "left": 2555}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704031f.jpg"} -{"rects": [{"solidity": 0.9959484194722662, "top": 2160, "right": 5210, "bottom": 3720, "left": 3230}, {"solidity": 0.9975591360419049, "top": 2175, "right": 2930, "bottom": 3720, "left": 960}, {"solidity": 0.9973870350337023, "top": 490, "right": 2930, "bottom": 2030, "left": 960}, {"solidity": 0.9915838447242742, "top": 500, "right": 5220, "bottom": 2020, "left": 3270}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703628f.jpg"} -{"rects": [{"solidity": 0.9959486396230811, "top": 370, "right": 3135, "bottom": 2005, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729616f.jpg"} -{"rects": [{"solidity": 0.9959486961522114, "top": 515, "right": 5020, "bottom": 3700, "left": 1060}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700390f.jpg"} -{"rects": [{"solidity": 0.9959487135248429, "top": 2135, "right": 3150, "bottom": 3775, "left": 720}, {"solidity": 0.9975127012706084, "top": 295, "right": 3150, "bottom": 1920, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703617f.jpg"} -{"rects": [{"solidity": 0.9959489234168736, "top": 425, "right": 3120, "bottom": 2085, "left": 670}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706648f.jpg"} -{"rects": [{"solidity": 0.9959489568563905, "top": 670, "right": 1920, "bottom": 3050, "left": 350}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728100f.jpg"} -{"rects": [{"solidity": 0.9959489954866797, "top": 505, "right": 5090, "bottom": 3660, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701708f.jpg"} -{"rects": [{"solidity": 0.9959492014972736, "top": 915, "right": 2030, "bottom": 3330, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729303f.jpg"} -{"rects": [{"solidity": 0.995949333209806, "top": 505, "right": 3055, "bottom": 1885, "left": 1270}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727898f.jpg"} -{"rects": [{"solidity": 0.9959494496430592, "top": 2170, "right": 3265, "bottom": 3805, "left": 825}, {"solidity": 0.9956911647992905, "top": 350, "right": 3265, "bottom": 1980, "left": 840}, {"solidity": 0.9945062203762837, "top": 4030, "right": 3250, "bottom": 5670, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726800f.jpg"} -{"rects": [{"solidity": 0.9959497654360558, "top": 2270, "right": 3150, "bottom": 3885, "left": 725}, {"solidity": 0.9954433313153801, "top": 4120, "right": 3145, "bottom": 5740, "left": 720}, {"solidity": 0.9963546840015867, "top": 435, "right": 3125, "bottom": 2035, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728556f.jpg"} -{"rects": [{"solidity": 0.9959497957555625, "top": 130, "right": 2750, "bottom": 3265, "left": 130}], "shape": {"h": 3625, "w": 2880}, "file": "/usr/local/google/home/danvk/milstein/1558033.jpg"} -{"rects": [{"solidity": 0.9959498211417366, "top": 415, "right": 3225, "bottom": 2030, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733952f.jpg"} -{"rects": [{"solidity": 0.9959498673401621, "top": 775, "right": 2050, "bottom": 3180, "left": 450}, {"solidity": 0.9967673761760233, "top": 820, "right": 5770, "bottom": 3215, "left": 4170}, {"solidity": 0.9958838045453943, "top": 790, "right": 3925, "bottom": 3185, "left": 2335}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723703f.jpg"} -{"rects": [{"solidity": 0.995949896297748, "top": 875, "right": 5005, "bottom": 3280, "left": 3400}, {"solidity": 0.996515599644035, "top": 1315, "right": 2995, "bottom": 2920, "left": 595}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720608f.jpg"} -{"rects": [{"solidity": 0.9959501009987097, "top": 820, "right": 2050, "bottom": 3215, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720470f.jpg"} -{"rects": [{"solidity": 0.9959501016252484, "top": 455, "right": 3180, "bottom": 2310, "left": 480}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702530f.jpg"} -{"rects": [{"solidity": 0.995950170256792, "top": 695, "right": 2810, "bottom": 3520, "left": 795}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724248f.jpg"} -{"rects": [{"solidity": 0.995950233503262, "top": 2155, "right": 2960, "bottom": 3680, "left": 640}, {"solidity": 0.9957127596665586, "top": 685, "right": 2770, "bottom": 2120, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707215f.jpg"} -{"rects": [{"solidity": 0.9959503204921522, "top": 695, "right": 2070, "bottom": 3115, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725489f.jpg"} -{"rects": [{"solidity": 0.9959503480324369, "top": 795, "right": 2075, "bottom": 3190, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719079f.jpg"} -{"rects": [{"solidity": 0.9959503952093061, "top": 590, "right": 2235, "bottom": 2760, "left": 690}, {"solidity": 0.9953658452445293, "top": 595, "right": 3940, "bottom": 2765, "left": 2360}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508987.jpg"} -{"rects": [{"solidity": 0.9959506109407363, "top": 830, "right": 3850, "bottom": 3260, "left": 2205}, {"solidity": 0.9968073203354082, "top": 890, "right": 5680, "bottom": 3300, "left": 4040}, {"solidity": 0.9964946339198184, "top": 795, "right": 2010, "bottom": 3200, "left": 375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719319f.jpg"} -{"rects": [{"solidity": 0.9959506611559608, "top": 850, "right": 2030, "bottom": 3265, "left": 400}, {"solidity": 0.999186994513839, "top": 875, "right": 5710, "bottom": 3270, "left": 4095}, {"solidity": 0.9973084256415791, "top": 875, "right": 3855, "bottom": 3265, "left": 2245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720127f.jpg"} -{"rects": [{"solidity": 0.995950735147282, "top": 150, "right": 3340, "bottom": 2075, "left": 590}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726090f.jpg"} -{"rects": [{"solidity": 0.9959510016702519, "top": 375, "right": 3180, "bottom": 2015, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729297f.jpg"} -{"rects": [{"solidity": 0.9959510562340924, "top": 1115, "right": 1495, "bottom": 3055, "left": 325}, {"solidity": 0.9961852307483945, "top": 1125, "right": 2870, "bottom": 3060, "left": 1710}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717802f.jpg"} -{"rects": [{"solidity": 0.9959511916149179, "top": 700, "right": 2650, "bottom": 2085, "left": 850}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725270f.jpg"} -{"rects": [{"solidity": 0.9959514363558147, "top": 620, "right": 2765, "bottom": 2070, "left": 945}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706261f.jpg"} -{"rects": [{"solidity": 0.9959514498515262, "top": 665, "right": 2525, "bottom": 2155, "left": 435}, {"solidity": 0.9964688488936134, "top": 2465, "right": 2510, "bottom": 3950, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716145f.jpg"} -{"rects": [{"solidity": 0.9959516786725736, "top": 340, "right": 2105, "bottom": 1565, "left": 345}], "shape": {"h": 3940, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727174f.jpg"} -{"rects": [{"solidity": 0.9959517797768198, "top": 415, "right": 3115, "bottom": 2060, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729657f.jpg"} -{"rects": [{"solidity": 0.9959520356871135, "top": 830, "right": 3910, "bottom": 3235, "left": 2290}, {"solidity": 0.9985053438851269, "top": 835, "right": 2045, "bottom": 3235, "left": 440}, {"solidity": 0.99778390994229, "top": 855, "right": 5760, "bottom": 3255, "left": 4160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711861f.jpg"} -{"rects": [{"solidity": 0.995952246597712, "top": 825, "right": 2065, "bottom": 3260, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729929f.jpg"} -{"rects": [{"solidity": 0.995952540797356, "top": 375, "right": 3045, "bottom": 2005, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728415f.jpg"} -{"rects": [{"solidity": 0.9959525775444391, "top": 2600, "right": 3405, "bottom": 4290, "left": 935}, {"solidity": 0.9957684718263539, "top": 720, "right": 3425, "bottom": 2370, "left": 975}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/721463f.jpg"} -{"rects": [{"solidity": 0.9959526220905961, "top": 425, "right": 5140, "bottom": 3730, "left": 1075}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708145f.jpg"} -{"rects": [{"solidity": 0.9959527016525929, "top": 400, "right": 3275, "bottom": 2015, "left": 850}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726065f.jpg"} -{"rects": [{"solidity": 0.9959527350956597, "top": 2230, "right": 3050, "bottom": 3860, "left": 620}, {"solidity": 0.9958444127583593, "top": 4075, "right": 3025, "bottom": 5705, "left": 595}, {"solidity": 0.9967513983461079, "top": 390, "right": 3060, "bottom": 2005, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730615f.jpg"} -{"rects": [{"solidity": 0.9959527564619383, "top": 795, "right": 2015, "bottom": 3235, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721733f.jpg"} -{"rects": [{"solidity": 0.9959531662269129, "top": 4100, "right": 3115, "bottom": 5695, "left": 710}, {"solidity": 0.9955724475589076, "top": 2245, "right": 3110, "bottom": 3835, "left": 705}, {"solidity": 0.9966179554608702, "top": 405, "right": 3110, "bottom": 1985, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734726f.jpg"} -{"rects": [{"solidity": 0.9959535427326587, "top": 855, "right": 2510, "bottom": 3590, "left": 680}], "shape": {"h": 4415, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708897f.jpg"} -{"rects": [{"solidity": 0.9959535753052482, "top": 410, "right": 2480, "bottom": 2830, "left": 840}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710218f.jpg"} -{"rects": [{"solidity": 0.9959536632261644, "top": 955, "right": 5675, "bottom": 3395, "left": 4030}, {"solidity": 0.9978722241685765, "top": 935, "right": 3810, "bottom": 3350, "left": 2185}, {"solidity": 0.9981029496818971, "top": 925, "right": 1925, "bottom": 3350, "left": 355}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718735f.jpg"} -{"rects": [{"solidity": 0.9959536733774612, "top": 865, "right": 1910, "bottom": 3195, "left": 490}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700060f.jpg"} -{"rects": [{"solidity": 0.9959536840073507, "top": 490, "right": 5040, "bottom": 3660, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714084f.jpg"} -{"rects": [{"solidity": 0.9959537345362005, "top": 410, "right": 3225, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730217f.jpg"} -{"rects": [{"solidity": 0.9959540243446797, "top": 755, "right": 2690, "bottom": 2180, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726392f.jpg"} -{"rects": [{"solidity": 0.995954118603604, "top": 2290, "right": 3280, "bottom": 3915, "left": 845}, {"solidity": 0.9968048702718161, "top": 445, "right": 3245, "bottom": 2045, "left": 840}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/731867f.jpg"} -{"rects": [{"solidity": 0.9959541619539148, "top": 745, "right": 5780, "bottom": 3190, "left": 4135}, {"solidity": 0.9987024415938128, "top": 745, "right": 3910, "bottom": 3170, "left": 2295}, {"solidity": 0.9964702434437026, "top": 765, "right": 2030, "bottom": 3190, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732118f.jpg"} -{"rects": [{"solidity": 0.9959542097394138, "top": 4125, "right": 3035, "bottom": 5755, "left": 600}, {"solidity": 0.9958779723658227, "top": 2280, "right": 3035, "bottom": 3895, "left": 615}, {"solidity": 0.9985702761727998, "top": 435, "right": 3030, "bottom": 2030, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734830f.jpg"} -{"rects": [{"solidity": 0.9959543701799486, "top": 430, "right": 3250, "bottom": 2060, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728001f.jpg"} -{"rects": [{"solidity": 0.9959546486419177, "top": 2205, "right": 3055, "bottom": 3835, "left": 610}, {"solidity": 0.9963339678388997, "top": 4055, "right": 3025, "bottom": 5685, "left": 595}, {"solidity": 0.9954795711388004, "top": 380, "right": 3065, "bottom": 2000, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734717f.jpg"} -{"rects": [{"solidity": 0.9959548641232754, "top": 865, "right": 5760, "bottom": 3295, "left": 4120}, {"solidity": 0.9949782390358219, "top": 840, "right": 3895, "bottom": 3265, "left": 2265}, {"solidity": 0.9962138417015975, "top": 815, "right": 2040, "bottom": 3225, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719758f.jpg"} -{"rects": [{"solidity": 0.9959549272428797, "top": 750, "right": 2075, "bottom": 3175, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712445f.jpg"} -{"rects": [{"solidity": 0.995955127695123, "top": 865, "right": 3860, "bottom": 3295, "left": 2220}, {"solidity": 0.9951036105301027, "top": 860, "right": 1995, "bottom": 3290, "left": 350}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716746f.jpg"} -{"rects": [{"solidity": 0.9959551442142892, "top": 390, "right": 3210, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/703171f.jpg"} -{"rects": [{"solidity": 0.9959553965645042, "top": 2295, "right": 3165, "bottom": 3905, "left": 735}, {"solidity": 0.9964034715725343, "top": 4130, "right": 3155, "bottom": 5740, "left": 730}, {"solidity": 0.9963088878096164, "top": 470, "right": 3160, "bottom": 2080, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720430f.jpg"} -{"rects": [{"solidity": 0.9959554290214915, "top": 415, "right": 3225, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725824f.jpg"} -{"rects": [{"solidity": 0.9959556017813385, "top": 3275, "right": 3250, "bottom": 4895, "left": 825}, {"solidity": 0.9952217899336882, "top": 1415, "right": 3265, "bottom": 3040, "left": 840}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/730701f.jpg"} -{"rects": [{"solidity": 0.9959557197450608, "top": 395, "right": 3150, "bottom": 2030, "left": 725}, {"solidity": 0.9978162178322713, "top": 2250, "right": 3130, "bottom": 3860, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713433f.jpg"} -{"rects": [{"solidity": 0.9959558426705677, "top": 835, "right": 3990, "bottom": 3640, "left": 2030}, {"solidity": 0.9945184740475849, "top": 870, "right": 5790, "bottom": 3285, "left": 4180}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718642f.jpg"} -{"rects": [{"solidity": 0.9959562692442608, "top": 410, "right": 3275, "bottom": 2035, "left": 845}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710475f.jpg"} -{"rects": [{"solidity": 0.9959566753331546, "top": 415, "right": 3320, "bottom": 2370, "left": 540}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703018f.jpg"} -{"rects": [{"solidity": 0.9959567875387321, "top": 810, "right": 2135, "bottom": 3200, "left": 560}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708461f.jpg"} -{"rects": [{"solidity": 0.9959569680776262, "top": 4005, "right": 3335, "bottom": 5635, "left": 915}, {"solidity": 0.9981076167616633, "top": 2170, "right": 3340, "bottom": 3795, "left": 945}, {"solidity": 0.9963952303137185, "top": 370, "right": 3360, "bottom": 1995, "left": 960}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703238f.jpg"} -{"rects": [{"solidity": 0.9959569867412471, "top": 410, "right": 3190, "bottom": 2025, "left": 775}, {"solidity": 0.9932861915222732, "top": 2295, "right": 3180, "bottom": 3910, "left": 780}, {"solidity": 0.994790625092205, "top": 4130, "right": 3185, "bottom": 5740, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734801f.jpg"} -{"rects": [{"solidity": 0.9959570638899602, "top": 415, "right": 3275, "bottom": 2050, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703735f.jpg"} -{"rects": [{"solidity": 0.9959574313322852, "top": 400, "right": 3265, "bottom": 3805, "left": 620}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722751f.jpg"} -{"rects": [{"solidity": 0.9959575183690366, "top": 410, "right": 3225, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705172f.jpg"} -{"rects": [{"solidity": 0.9959577194106342, "top": 2200, "right": 3205, "bottom": 3825, "left": 780}, {"solidity": 0.9978022544615524, "top": 370, "right": 3215, "bottom": 1985, "left": 795}, {"solidity": 0.998571751704527, "top": 4050, "right": 3190, "bottom": 5665, "left": 780}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/732374f.jpg"} -{"rects": [{"solidity": 0.9959577394187885, "top": 810, "right": 3880, "bottom": 3230, "left": 2240}, {"solidity": 0.9956995956912329, "top": 825, "right": 2035, "bottom": 3250, "left": 405}, {"solidity": 0.9961833043702131, "top": 805, "right": 5735, "bottom": 3220, "left": 4105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701827f.jpg"} -{"rects": [{"solidity": 0.9959578918955395, "top": 820, "right": 2025, "bottom": 3195, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714105f.jpg"} -{"rects": [{"solidity": 0.9959579819700268, "top": 415, "right": 3140, "bottom": 1995, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702350f.jpg"} -{"rects": [{"solidity": 0.9959580271353233, "top": 425, "right": 3150, "bottom": 2070, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702378f.jpg"} -{"rects": [{"solidity": 0.9959580532194985, "top": 440, "right": 3190, "bottom": 2070, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703897f.jpg"} -{"rects": [{"solidity": 0.9959582692997718, "top": 760, "right": 1965, "bottom": 3130, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708077f.jpg"} -{"rects": [{"solidity": 0.9959584165974359, "top": 830, "right": 2120, "bottom": 3250, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708001f.jpg"} -{"rects": [{"solidity": 0.995958416669059, "top": 375, "right": 3155, "bottom": 2025, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719231f.jpg"} -{"rects": [{"solidity": 0.9959584929798603, "top": 425, "right": 3140, "bottom": 2060, "left": 720}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/702074f.jpg"} -{"rects": [{"solidity": 0.9959585304346393, "top": 790, "right": 2015, "bottom": 3185, "left": 420}, {"solidity": 0.9924948653142325, "top": 950, "right": 4760, "bottom": 3025, "left": 3575}, {"solidity": 0.9947709267720166, "top": 960, "right": 3385, "bottom": 3020, "left": 2210}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713070f.jpg"} -{"rects": [{"solidity": 0.995958629721887, "top": 425, "right": 3070, "bottom": 2050, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728586f.jpg"} -{"rects": [{"solidity": 0.995958683592395, "top": 790, "right": 3335, "bottom": 2710, "left": 500}, {"solidity": 0.9956331773583466, "top": 3075, "right": 3310, "bottom": 4965, "left": 495}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727764f.jpg"} -{"rects": [{"solidity": 0.9959587929378251, "top": 470, "right": 3125, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717782f.jpg"} -{"rects": [{"solidity": 0.9959590227292741, "top": 455, "right": 3165, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721042f.jpg"} -{"rects": [{"solidity": 0.9959592090774165, "top": 425, "right": 3155, "bottom": 2065, "left": 710}, {"solidity": 0.9961853174691996, "top": 2280, "right": 3130, "bottom": 3920, "left": 700}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729150f.jpg"} -{"rects": [{"solidity": 0.995959219596179, "top": 395, "right": 3140, "bottom": 2035, "left": 715}, {"solidity": 0.9980198147527026, "top": 2260, "right": 3120, "bottom": 3880, "left": 710}, {"solidity": 0.9967274442405603, "top": 4105, "right": 3110, "bottom": 5725, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724401f.jpg"} -{"rects": [{"solidity": 0.995959221255821, "top": 700, "right": 2045, "bottom": 3090, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711562f.jpg"} -{"rects": [{"solidity": 0.9959593826781327, "top": 780, "right": 2075, "bottom": 3210, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714009f.jpg"} -{"rects": [{"solidity": 0.9959593869905191, "top": 865, "right": 5700, "bottom": 3290, "left": 4085}, {"solidity": 0.9960214478948989, "top": 865, "right": 3850, "bottom": 3290, "left": 2245}, {"solidity": 0.997119239296061, "top": 865, "right": 2005, "bottom": 3285, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731574f.jpg"} -{"rects": [{"solidity": 0.9959594767964844, "top": 550, "right": 2600, "bottom": 1960, "left": 775}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703808f.jpg"} -{"rects": [{"solidity": 0.9959595509338564, "top": 825, "right": 3940, "bottom": 3255, "left": 2300}, {"solidity": 0.9969034792624473, "top": 835, "right": 2035, "bottom": 3235, "left": 425}, {"solidity": 0.9968012624700016, "top": 845, "right": 5750, "bottom": 3245, "left": 4140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712294f.jpg"} -{"rects": [{"solidity": 0.9959595696289972, "top": 850, "right": 2005, "bottom": 3260, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716919f.jpg"} -{"rects": [{"solidity": 0.9959595959595959, "top": 620, "right": 2705, "bottom": 2025, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706767f.jpg"} -{"rects": [{"solidity": 0.9959596840171135, "top": 825, "right": 2070, "bottom": 3205, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711870f.jpg"} -{"rects": [{"solidity": 0.9959596856546641, "top": 465, "right": 3000, "bottom": 1880, "left": 1185}, {"solidity": 0.9925798127403774, "top": 2255, "right": 3010, "bottom": 3670, "left": 1180}, {"solidity": 0.9942499849212891, "top": 4035, "right": 3000, "bottom": 5430, "left": 1190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726841f.jpg"} -{"rects": [{"solidity": 0.9959597077706442, "top": 2270, "right": 3220, "bottom": 3880, "left": 810}, {"solidity": 0.9974659765774051, "top": 410, "right": 3235, "bottom": 2010, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734742f.jpg"} -{"rects": [{"solidity": 0.9959598500017735, "top": 885, "right": 2030, "bottom": 3295, "left": 405}, {"solidity": 0.995876745299457, "top": 885, "right": 3915, "bottom": 3295, "left": 2300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733602f.jpg"} -{"rects": [{"solidity": 0.9959600404314817, "top": 775, "right": 2115, "bottom": 3210, "left": 485}, {"solidity": 0.996719813984388, "top": 780, "right": 4015, "bottom": 3215, "left": 2390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727585f.jpg"} -{"rects": [{"solidity": 0.9959601019929736, "top": 2205, "right": 3200, "bottom": 3835, "left": 760}, {"solidity": 0.9952982332268884, "top": 350, "right": 3260, "bottom": 2005, "left": 810}, {"solidity": 0.9938688099492347, "top": 4045, "right": 3140, "bottom": 5685, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724337f.jpg"} -{"rects": [{"solidity": 0.9959601415512833, "top": 1495, "right": 3620, "bottom": 5385, "left": 695}], "shape": {"h": 6900, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708858f.jpg"} -{"rects": [{"solidity": 0.9959601507856001, "top": 980, "right": 3525, "bottom": 2390, "left": 1505}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509165.jpg"} -{"rects": [{"solidity": 0.9959602107994682, "top": 2275, "right": 3100, "bottom": 3915, "left": 670}, {"solidity": 0.998302124769574, "top": 440, "right": 3100, "bottom": 2055, "left": 690}, {"solidity": 0.9959054780086118, "top": 4145, "right": 3070, "bottom": 5755, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734810f.jpg"} -{"rects": [{"solidity": 0.9959602177011793, "top": 2285, "right": 3155, "bottom": 3895, "left": 730}, {"solidity": 0.9958830767832154, "top": 440, "right": 3165, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723278f.jpg"} -{"rects": [{"solidity": 0.995960256284134, "top": 315, "right": 3135, "bottom": 1935, "left": 675}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/730517f.jpg"} -{"rects": [{"solidity": 0.9959603497785493, "top": 405, "right": 3190, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725717f.jpg"} -{"rects": [{"solidity": 0.9959603598952094, "top": 400, "right": 3100, "bottom": 3315, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714289f.jpg"} -{"rects": [{"solidity": 0.9959604468396719, "top": 690, "right": 2360, "bottom": 3125, "left": 715}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721465f.jpg"} -{"rects": [{"solidity": 0.9959605305860338, "top": 1005, "right": 3220, "bottom": 3060, "left": 1420}], "shape": {"h": 5995, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465665.jpg"} -{"rects": [{"solidity": 0.9959605457898623, "top": 805, "right": 2030, "bottom": 3205, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718108f.jpg"} -{"rects": [{"solidity": 0.99596062681064, "top": 2420, "right": 3370, "bottom": 4060, "left": 965}, {"solidity": 0.995438406966557, "top": 4280, "right": 3315, "bottom": 5925, "left": 910}, {"solidity": 0.9963573619631901, "top": 540, "right": 3380, "bottom": 2150, "left": 1000}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/711842f.jpg"} -{"rects": [{"solidity": 0.9959606857201571, "top": 420, "right": 3185, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725789f.jpg"} -{"rects": [{"solidity": 0.9959607467439994, "top": 390, "right": 3215, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717888f.jpg"} -{"rects": [{"solidity": 0.9959607506298356, "top": 2390, "right": 3150, "bottom": 4030, "left": 715}, {"solidity": 0.9956187367411256, "top": 4170, "right": 3135, "bottom": 5815, "left": 705}, {"solidity": 0.9972520674610926, "top": 460, "right": 3130, "bottom": 2075, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707582f.jpg"} -{"rects": [{"solidity": 0.9959609007480528, "top": 400, "right": 3120, "bottom": 2020, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729902f.jpg"} -{"rects": [{"solidity": 0.9959609779245214, "top": 430, "right": 4845, "bottom": 3300, "left": 855}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715596f.jpg"} -{"rects": [{"solidity": 0.9959612040757477, "top": 285, "right": 3675, "bottom": 2730, "left": 650}], "shape": {"h": 2965, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/701387f.jpg"} -{"rects": [{"solidity": 0.995961405392122, "top": 475, "right": 3025, "bottom": 2105, "left": 600}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703216f.jpg"} -{"rects": [{"solidity": 0.9959614382490881, "top": 450, "right": 3320, "bottom": 2060, "left": 910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725988f.jpg"} -{"rects": [{"solidity": 0.9959616136176126, "top": 615, "right": 2655, "bottom": 2055, "left": 815}, {"solidity": 0.9949604695154484, "top": 2080, "right": 2675, "bottom": 3510, "left": 845}, {"solidity": 0.9944414376197651, "top": 2030, "right": 5190, "bottom": 3455, "left": 3370}, {"solidity": 0.994365331420961, "top": 565, "right": 5185, "bottom": 1990, "left": 3365}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707157f.jpg"} -{"rects": [{"solidity": 0.995961706629286, "top": 300, "right": 3180, "bottom": 1895, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730153f.jpg"} -{"rects": [{"solidity": 0.9959617942207714, "top": 540, "right": 3120, "bottom": 1965, "left": 1285}, {"solidity": 0.9934836236478645, "top": 2350, "right": 3115, "bottom": 3745, "left": 1310}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726999f.jpg"} -{"rects": [{"solidity": 0.9959620836793722, "top": 430, "right": 3245, "bottom": 2080, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707231f.jpg"} -{"rects": [{"solidity": 0.9959621293273209, "top": 470, "right": 3095, "bottom": 2110, "left": 670}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719185f.jpg"} -{"rects": [{"solidity": 0.9959622844339103, "top": 375, "right": 3145, "bottom": 2000, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728504f.jpg"} -{"rects": [{"solidity": 0.9959623449629695, "top": 395, "right": 3250, "bottom": 2045, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700856f.jpg"} -{"rects": [{"solidity": 0.9959623675075553, "top": 675, "right": 2720, "bottom": 2085, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705609f.jpg"} -{"rects": [{"solidity": 0.9959624224187773, "top": 375, "right": 3185, "bottom": 2025, "left": 745}, {"solidity": 0.996088393318796, "top": 2200, "right": 3165, "bottom": 3850, "left": 730}, {"solidity": 0.994874791001672, "top": 4110, "right": 2880, "bottom": 5555, "left": 1010}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705857f.jpg"} -{"rects": [{"solidity": 0.9959629153014495, "top": 385, "right": 3330, "bottom": 2025, "left": 910}, {"solidity": 0.9975358682365052, "top": 4090, "right": 3305, "bottom": 5710, "left": 890}, {"solidity": 0.9948919891989199, "top": 2250, "right": 3315, "bottom": 3875, "left": 900}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725731f.jpg"} -{"rects": [{"solidity": 0.995962954946446, "top": 815, "right": 3895, "bottom": 3225, "left": 2300}, {"solidity": 0.9952929831006613, "top": 815, "right": 2050, "bottom": 3210, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723640f.jpg"} -{"rects": [{"solidity": 0.9959630764212061, "top": 515, "right": 2585, "bottom": 1900, "left": 790}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705815f.jpg"} -{"rects": [{"solidity": 0.9959630818876514, "top": 410, "right": 3185, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706841f.jpg"} -{"rects": [{"solidity": 0.9959633063246942, "top": 805, "right": 3805, "bottom": 3195, "left": 2170}, {"solidity": 0.9973991391378978, "top": 815, "right": 1935, "bottom": 3195, "left": 310}, {"solidity": 0.9987150658528751, "top": 810, "right": 5680, "bottom": 3185, "left": 4065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719584f.jpg"} -{"rects": [{"solidity": 0.9959633706174194, "top": 780, "right": 3880, "bottom": 3205, "left": 2240}, {"solidity": 0.9972570545530641, "top": 785, "right": 5675, "bottom": 3200, "left": 4055}, {"solidity": 0.9975110985018232, "top": 790, "right": 2085, "bottom": 3200, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730401f.jpg"} -{"rects": [{"solidity": 0.9959636364834542, "top": 350, "right": 3145, "bottom": 1940, "left": 735}, {"solidity": 0.9957155725145168, "top": 2305, "right": 3120, "bottom": 3895, "left": 725}, {"solidity": 0.9954736663302725, "top": 4240, "right": 3115, "bottom": 5825, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730137f.jpg"} -{"rects": [{"solidity": 0.9959636664562366, "top": 915, "right": 2010, "bottom": 3330, "left": 415}, {"solidity": 0.9945596110253293, "top": 925, "right": 3895, "bottom": 3330, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721002f.jpg"} -{"rects": [{"solidity": 0.9959637897957151, "top": 390, "right": 3195, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710688f.jpg"} -{"rects": [{"solidity": 0.9959638590592296, "top": 2235, "right": 3260, "bottom": 3880, "left": 825}, {"solidity": 0.9976965383371077, "top": 405, "right": 3265, "bottom": 2020, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705803f.jpg"} -{"rects": [{"solidity": 0.9959641837199189, "top": 2505, "right": 3525, "bottom": 4325, "left": 795}, {"solidity": 0.9941662874965367, "top": 475, "right": 3525, "bottom": 2295, "left": 795}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711161f.jpg"} -{"rects": [{"solidity": 0.9959643311443865, "top": 885, "right": 3955, "bottom": 3300, "left": 2340}, {"solidity": 0.9964621609975929, "top": 870, "right": 2130, "bottom": 3280, "left": 515}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722992f.jpg"} -{"rects": [{"solidity": 0.9959643426109646, "top": 395, "right": 3180, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/731756f.jpg"} -{"rects": [{"solidity": 0.995965124727537, "top": 600, "right": 5220, "bottom": 3430, "left": 3380}, {"solidity": 0.9951300125771447, "top": 2015, "right": 2770, "bottom": 3450, "left": 950}, {"solidity": 0.9962927714025184, "top": 600, "right": 2750, "bottom": 2010, "left": 950}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705903f.jpg"} -{"rects": [{"solidity": 0.9959651716773451, "top": 1105, "right": 3475, "bottom": 2890, "left": 2395}, {"solidity": 0.9923867248133639, "top": 1105, "right": 1900, "bottom": 2895, "left": 840}, {"solidity": 0.9958596510374746, "top": 1110, "right": 5010, "bottom": 2890, "left": 3965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715158f.jpg"} -{"rects": [{"solidity": 0.9959651932416986, "top": 430, "right": 3130, "bottom": 2040, "left": 735}, {"solidity": 0.9959419093660339, "top": 4250, "right": 3140, "bottom": 5855, "left": 740}, {"solidity": 0.9957940322501271, "top": 2345, "right": 3135, "bottom": 3955, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711715f.jpg"} -{"rects": [{"solidity": 0.9959652155657391, "top": 815, "right": 2150, "bottom": 3205, "left": 540}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708202f.jpg"} -{"rects": [{"solidity": 0.9959652196695541, "top": 400, "right": 3150, "bottom": 2000, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/703114f.jpg"} -{"rects": [{"solidity": 0.9959654513530263, "top": 405, "right": 3175, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708692f.jpg"} -{"rects": [{"solidity": 0.9959655807517273, "top": 815, "right": 3855, "bottom": 3230, "left": 2245}, {"solidity": 0.9964146280546318, "top": 825, "right": 5690, "bottom": 3230, "left": 4095}, {"solidity": 0.996298495185722, "top": 825, "right": 2000, "bottom": 3220, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718871f.jpg"} -{"rects": [{"solidity": 0.9959656903133893, "top": 915, "right": 2050, "bottom": 3325, "left": 435}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729386f.jpg"} -{"rects": [{"solidity": 0.9959658115293532, "top": 370, "right": 3265, "bottom": 2010, "left": 820}, {"solidity": 0.99627624750499, "top": 2245, "right": 3235, "bottom": 3875, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726810f.jpg"} -{"rects": [{"solidity": 0.9959660882270013, "top": 535, "right": 3175, "bottom": 2175, "left": 750}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723050f.jpg"} -{"rects": [{"solidity": 0.9959662053701002, "top": 1275, "right": 3540, "bottom": 5260, "left": 325}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/734453f.jpg"} -{"rects": [{"solidity": 0.9959662526937146, "top": 3150, "right": 3305, "bottom": 4770, "left": 875}, {"solidity": 0.9947866867003597, "top": 900, "right": 3295, "bottom": 2515, "left": 875}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/730707f.jpg"} -{"rects": [{"solidity": 0.9959663852658035, "top": 445, "right": 5125, "bottom": 3690, "left": 1040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708418f.jpg"} -{"rects": [{"solidity": 0.9959664166840957, "top": 920, "right": 5585, "bottom": 3300, "left": 3980}, {"solidity": 0.9943964104930223, "top": 870, "right": 2105, "bottom": 3265, "left": 525}, {"solidity": 0.9912033306473275, "top": 1060, "right": 3690, "bottom": 3070, "left": 2375}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710126f.jpg"} -{"rects": [{"solidity": 0.99596682544672, "top": 735, "right": 2685, "bottom": 2175, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726395f.jpg"} -{"rects": [{"solidity": 0.9959668377316906, "top": 930, "right": 2005, "bottom": 3360, "left": 375}, {"solidity": 0.9967975458547793, "top": 950, "right": 3870, "bottom": 3375, "left": 2245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729927f.jpg"} -{"rects": [{"solidity": 0.9959668529781743, "top": 435, "right": 3220, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719694f.jpg"} -{"rects": [{"solidity": 0.995966879174326, "top": 460, "right": 3215, "bottom": 2425, "left": 420}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704448f.jpg"} -{"rects": [{"solidity": 0.9959669427444009, "top": 1085, "right": 3450, "bottom": 5105, "left": 330}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718416f.jpg"} -{"rects": [{"solidity": 0.9959669625945444, "top": 2225, "right": 3110, "bottom": 3840, "left": 685}, {"solidity": 0.9979950976904819, "top": 4060, "right": 3110, "bottom": 5670, "left": 690}, {"solidity": 0.9982058735741075, "top": 415, "right": 3100, "bottom": 2025, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700716f.jpg"} -{"rects": [{"solidity": 0.9959670365979282, "top": 2475, "right": 3205, "bottom": 4110, "left": 790}, {"solidity": 0.9958033651398661, "top": 685, "right": 3150, "bottom": 2305, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710678f.jpg"} -{"rects": [{"solidity": 0.9959672353981389, "top": 2370, "right": 3140, "bottom": 4005, "left": 725}, {"solidity": 0.9963968276558033, "top": 475, "right": 3140, "bottom": 2100, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719216f.jpg"} -{"rects": [{"solidity": 0.9959676382064672, "top": 380, "right": 3015, "bottom": 2010, "left": 590}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/729307f.jpg"} -{"rects": [{"solidity": 0.9959676508824393, "top": 2075, "right": 3330, "bottom": 3695, "left": 910}, {"solidity": 0.9968306744052654, "top": 405, "right": 3125, "bottom": 1835, "left": 1310}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725335f.jpg"} -{"rects": [{"solidity": 0.9959677289281579, "top": 420, "right": 3075, "bottom": 2035, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729750f.jpg"} -{"rects": [{"solidity": 0.9959677684519256, "top": 1180, "right": 3365, "bottom": 4945, "left": 305}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723939f.jpg"} -{"rects": [{"solidity": 0.9959678971476962, "top": 785, "right": 3845, "bottom": 3210, "left": 2205}, {"solidity": 0.9958068394379854, "top": 790, "right": 1990, "bottom": 3190, "left": 385}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716911f.jpg"} -{"rects": [{"solidity": 0.9959680444689465, "top": 2135, "right": 2985, "bottom": 3740, "left": 570}, {"solidity": 0.9974465698429567, "top": 660, "right": 2740, "bottom": 2065, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707247f.jpg"} -{"rects": [{"solidity": 0.9959681152295429, "top": 385, "right": 3295, "bottom": 2020, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727329f.jpg"} -{"rects": [{"solidity": 0.9959682200877505, "top": 755, "right": 2000, "bottom": 3165, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718000f.jpg"} -{"rects": [{"solidity": 0.9959682511618508, "top": 825, "right": 3665, "bottom": 3260, "left": 2005}, {"solidity": 0.9961041653608228, "top": 1095, "right": 1810, "bottom": 2970, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707082f.jpg"} -{"rects": [{"solidity": 0.9959682958542453, "top": 830, "right": 4050, "bottom": 3265, "left": 2400}, {"solidity": 0.9967048738262722, "top": 815, "right": 2075, "bottom": 3240, "left": 440}, {"solidity": 0.9966187800129351, "top": 870, "right": 5860, "bottom": 3255, "left": 4265}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712359f.jpg"} -{"rects": [{"solidity": 0.9959688443808615, "top": 390, "right": 3270, "bottom": 2035, "left": 840}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705810f.jpg"} -{"rects": [{"solidity": 0.9959691491030637, "top": 425, "right": 3200, "bottom": 2070, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704487f.jpg"} -{"rects": [{"solidity": 0.9959691779713148, "top": 415, "right": 3335, "bottom": 2035, "left": 915}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725969f.jpg"} -{"rects": [{"solidity": 0.9959692739737342, "top": 435, "right": 3160, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712217f.jpg"} -{"rects": [{"solidity": 0.9959693711147999, "top": 615, "right": 2710, "bottom": 2035, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704301f.jpg"} -{"rects": [{"solidity": 0.9959694914017169, "top": 2515, "right": 2510, "bottom": 4005, "left": 410}, {"solidity": 0.9952464113465918, "top": 660, "right": 2525, "bottom": 2155, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716094f.jpg"} -{"rects": [{"solidity": 0.9959697010728878, "top": 440, "right": 3075, "bottom": 2035, "left": 1075}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700697f.jpg"} -{"rects": [{"solidity": 0.9959697225405861, "top": 2225, "right": 3170, "bottom": 3895, "left": 700}, {"solidity": 0.9951093764297186, "top": 4075, "right": 3115, "bottom": 5745, "left": 640}, {"solidity": 0.9953615767446761, "top": 380, "right": 3185, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732128f.jpg"} -{"rects": [{"solidity": 0.9959698965960311, "top": 970, "right": 2165, "bottom": 2955, "left": 605}, {"solidity": 0.9721343989062436, "top": 1020, "right": 3920, "bottom": 2885, "left": 2400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717177f.jpg"} -{"rects": [{"solidity": 0.9959699147934173, "top": 910, "right": 2015, "bottom": 3330, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730396f.jpg"} -{"rects": [{"solidity": 0.9959700607258861, "top": 555, "right": 4945, "bottom": 3575, "left": 1245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718914f.jpg"} -{"rects": [{"solidity": 0.9959701693844721, "top": 815, "right": 1940, "bottom": 3215, "left": 345}, {"solidity": 0.9930637186723258, "top": 915, "right": 3490, "bottom": 3085, "left": 2195}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721575f.jpg"} -{"rects": [{"solidity": 0.9959702137819334, "top": 2315, "right": 3220, "bottom": 3940, "left": 800}, {"solidity": 0.9958536961103408, "top": 4085, "right": 3220, "bottom": 5685, "left": 805}, {"solidity": 0.9955031248358804, "top": 585, "right": 3225, "bottom": 2185, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733154f.jpg"} -{"rects": [{"solidity": 0.9959702417854929, "top": 830, "right": 3885, "bottom": 3265, "left": 2250}, {"solidity": 0.9961994323121771, "top": 840, "right": 5750, "bottom": 3275, "left": 4115}, {"solidity": 0.9951960246608472, "top": 825, "right": 2035, "bottom": 3230, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720294f.jpg"} -{"rects": [{"solidity": 0.9959702703993125, "top": 395, "right": 3130, "bottom": 2055, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705999f.jpg"} -{"rects": [{"solidity": 0.9959703117531468, "top": 530, "right": 3140, "bottom": 2120, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720353f.jpg"} -{"rects": [{"solidity": 0.9959703740087508, "top": 865, "right": 3930, "bottom": 3290, "left": 2305}, {"solidity": 0.9974514749711287, "top": 875, "right": 2020, "bottom": 3285, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730462f.jpg"} -{"rects": [{"solidity": 0.9959704778049031, "top": 1250, "right": 2610, "bottom": 3870, "left": 405}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509237.jpg"} -{"rects": [{"solidity": 0.9959704931961842, "top": 795, "right": 4035, "bottom": 3220, "left": 2405}, {"solidity": 0.9967059358063155, "top": 795, "right": 2155, "bottom": 3205, "left": 540}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723689f.jpg"} -{"rects": [{"solidity": 0.9959709037906254, "top": 770, "right": 2340, "bottom": 3510, "left": 340}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507507.jpg"} -{"rects": [{"solidity": 0.995970920557064, "top": 2165, "right": 5155, "bottom": 3600, "left": 3340}, {"solidity": 0.9965425867507887, "top": 665, "right": 5195, "bottom": 2025, "left": 3355}, {"solidity": 0.9948368820250388, "top": 660, "right": 2805, "bottom": 2020, "left": 980}, {"solidity": 0.9933107655036664, "top": 2200, "right": 2760, "bottom": 3530, "left": 975}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727954f.jpg"} -{"rects": [{"solidity": 0.995970956905904, "top": 470, "right": 3250, "bottom": 2065, "left": 830}, {"solidity": 0.997139163025155, "top": 2335, "right": 3240, "bottom": 3935, "left": 835}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710317f.jpg"} -{"rects": [{"solidity": 0.9959711193754817, "top": 445, "right": 3080, "bottom": 1820, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704961f.jpg"} -{"rects": [{"solidity": 0.9959711530670124, "top": 395, "right": 5775, "bottom": 2025, "left": 3355}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702952f.jpg"} -{"rects": [{"solidity": 0.9959712991824972, "top": 540, "right": 3145, "bottom": 2145, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709626f.jpg"} -{"rects": [{"solidity": 0.9959715556801065, "top": 320, "right": 2430, "bottom": 1520, "left": 625}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/705543f.jpg"} -{"rects": [{"solidity": 0.9959715707996432, "top": 400, "right": 3205, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707366f.jpg"} -{"rects": [{"solidity": 0.9959716088226899, "top": 760, "right": 5715, "bottom": 3185, "left": 4090}, {"solidity": 0.9985910826468346, "top": 755, "right": 3870, "bottom": 3175, "left": 2255}, {"solidity": 0.9991007078299661, "top": 765, "right": 2050, "bottom": 3180, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717987f.jpg"} -{"rects": [{"solidity": 0.9959717499346064, "top": 590, "right": 1535, "bottom": 2390, "left": 325}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716386f.jpg"} -{"rects": [{"solidity": 0.9959717827654073, "top": 965, "right": 5690, "bottom": 3385, "left": 4070}, {"solidity": 0.9961975298836424, "top": 945, "right": 2000, "bottom": 3345, "left": 405}, {"solidity": 0.9958206839367151, "top": 955, "right": 3840, "bottom": 3345, "left": 2255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730206f.jpg"} -{"rects": [{"solidity": 0.9959717832704125, "top": 420, "right": 3125, "bottom": 2065, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720295f.jpg"} -{"rects": [{"solidity": 0.9959721073159201, "top": 730, "right": 2815, "bottom": 3505, "left": 875}, {"solidity": 0.9954414275871022, "top": 725, "right": 5225, "bottom": 2140, "left": 3435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706824f.jpg"} -{"rects": [{"solidity": 0.9959721490743729, "top": 520, "right": 3250, "bottom": 3925, "left": 625}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713325f.jpg"} -{"rects": [{"solidity": 0.9959721819762388, "top": 760, "right": 2065, "bottom": 3180, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732436f.jpg"} -{"rects": [{"solidity": 0.9959724304452592, "top": 395, "right": 2885, "bottom": 1820, "left": 1075}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726215f.jpg"} -{"rects": [{"solidity": 0.9959725715654569, "top": 720, "right": 2790, "bottom": 2120, "left": 970}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705400f.jpg"} -{"rects": [{"solidity": 0.9959726072596584, "top": 410, "right": 3165, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707917f.jpg"} -{"rects": [{"solidity": 0.9959727445119404, "top": 355, "right": 3195, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707354f.jpg"} -{"rects": [{"solidity": 0.9959727464653573, "top": 885, "right": 3975, "bottom": 3310, "left": 2340}, {"solidity": 0.9964608119770001, "top": 880, "right": 2065, "bottom": 3300, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719051f.jpg"} -{"rects": [{"solidity": 0.9959728361301553, "top": 750, "right": 2035, "bottom": 3165, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724052f.jpg"} -{"rects": [{"solidity": 0.995972856261567, "top": 630, "right": 3320, "bottom": 2520, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713055f.jpg"} -{"rects": [{"solidity": 0.9959728585984235, "top": 390, "right": 3155, "bottom": 3625, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714682f.jpg"} -{"rects": [{"solidity": 0.9959730478539452, "top": 760, "right": 2040, "bottom": 3150, "left": 440}, {"solidity": 0.9941068726606673, "top": 765, "right": 5715, "bottom": 3160, "left": 4125}, {"solidity": 0.9959882151732984, "top": 755, "right": 3880, "bottom": 3145, "left": 2295}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731699f.jpg"} -{"rects": [{"solidity": 0.9959731413378874, "top": 4095, "right": 3050, "bottom": 5705, "left": 615}, {"solidity": 0.9953491457953226, "top": 410, "right": 3055, "bottom": 1995, "left": 645}, {"solidity": 0.9966570674829329, "top": 2260, "right": 3040, "bottom": 3830, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730607f.jpg"} -{"rects": [{"solidity": 0.9959731414313652, "top": 435, "right": 3105, "bottom": 2075, "left": 685}, {"solidity": 0.9961912427559562, "top": 2340, "right": 3085, "bottom": 3975, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717589f.jpg"} -{"rects": [{"solidity": 0.9959731953101961, "top": 430, "right": 3590, "bottom": 2260, "left": 865}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711253f.jpg"} -{"rects": [{"solidity": 0.995973218555715, "top": 2225, "right": 3160, "bottom": 3850, "left": 725}, {"solidity": 0.9958052604301633, "top": 360, "right": 3155, "bottom": 1965, "left": 730}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/728970f.jpg"} -{"rects": [{"solidity": 0.995973413982276, "top": 325, "right": 2460, "bottom": 1525, "left": 660}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715877f.jpg"} -{"rects": [{"solidity": 0.9959736758068286, "top": 475, "right": 3190, "bottom": 2080, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724007f.jpg"} -{"rects": [{"solidity": 0.9959739808142002, "top": 395, "right": 3110, "bottom": 2025, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729801f.jpg"} -{"rects": [{"solidity": 0.9959740456489716, "top": 660, "right": 5300, "bottom": 2290, "left": 2875}, {"solidity": 0.9964402580328388, "top": 2085, "right": 2800, "bottom": 3705, "left": 385}, {"solidity": 0.9948191826578956, "top": 655, "right": 2700, "bottom": 2085, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706520f.jpg"} -{"rects": [{"solidity": 0.9959742487812335, "top": 325, "right": 2295, "bottom": 1555, "left": 465}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715858f.jpg"} -{"rects": [{"solidity": 0.9959743104232458, "top": 425, "right": 3175, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702919f.jpg"} -{"rects": [{"solidity": 0.9959744072772941, "top": 445, "right": 3170, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710375f.jpg"} -{"rects": [{"solidity": 0.9959744249880444, "top": 1000, "right": 3910, "bottom": 3405, "left": 2300}, {"solidity": 0.9979483758817941, "top": 1025, "right": 2040, "bottom": 3395, "left": 455}, {"solidity": 0.9973505905412027, "top": 1000, "right": 5730, "bottom": 3375, "left": 4160}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712365f.jpg"} -{"rects": [{"solidity": 0.9959744267886748, "top": 1005, "right": 1865, "bottom": 3035, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720795f.jpg"} -{"rects": [{"solidity": 0.9959744690576079, "top": 755, "right": 3780, "bottom": 3165, "left": 2175}, {"solidity": 0.9967741297076926, "top": 740, "right": 1985, "bottom": 3140, "left": 395}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730342f.jpg"} -{"rects": [{"solidity": 0.9959746159536002, "top": 810, "right": 3890, "bottom": 3245, "left": 2260}, {"solidity": 0.9984138831871617, "top": 825, "right": 2040, "bottom": 3255, "left": 430}, {"solidity": 0.9966478275655455, "top": 820, "right": 5730, "bottom": 3245, "left": 4125}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705447f.jpg"} -{"rects": [{"solidity": 0.9959746711868034, "top": 1040, "right": 1945, "bottom": 3495, "left": 380}], "shape": {"h": 4665, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509651.jpg"} -{"rects": [{"solidity": 0.9959746829610272, "top": 560, "right": 3245, "bottom": 2155, "left": 830}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709232f.jpg"} -{"rects": [{"solidity": 0.9959752085086847, "top": 600, "right": 3000, "bottom": 2000, "left": 1230}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727475f.jpg"} -{"rects": [{"solidity": 0.9959753410840367, "top": 550, "right": 3150, "bottom": 2145, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718474f.jpg"} -{"rects": [{"solidity": 0.9959756557539492, "top": 860, "right": 5355, "bottom": 3290, "left": 3730}, {"solidity": 0.9957414356072379, "top": 835, "right": 3515, "bottom": 3265, "left": 1885}, {"solidity": 0.9940791081992861, "top": 1085, "right": 1705, "bottom": 2925, "left": 295}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724340f.jpg"} -{"rects": [{"solidity": 0.9959757210721638, "top": 825, "right": 2060, "bottom": 3215, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713156f.jpg"} -{"rects": [{"solidity": 0.9959758020358483, "top": 815, "right": 2150, "bottom": 3205, "left": 530}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723687f.jpg"} -{"rects": [{"solidity": 0.9959763403736799, "top": 2080, "right": 3140, "bottom": 3735, "left": 690}, {"solidity": 0.9960133423137368, "top": 4015, "right": 3135, "bottom": 5650, "left": 700}, {"solidity": 0.9974353527555709, "top": 485, "right": 2935, "bottom": 1825, "left": 1110}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/703366f.jpg"} -{"rects": [{"solidity": 0.9959763422006463, "top": 805, "right": 1980, "bottom": 3205, "left": 375}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709590f.jpg"} -{"rects": [{"solidity": 0.9959765429345462, "top": 1215, "right": 2625, "bottom": 4230, "left": 330}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507749.jpg"} -{"rects": [{"solidity": 0.995976573429947, "top": 770, "right": 5715, "bottom": 3200, "left": 4080}, {"solidity": 0.9958081254390139, "top": 785, "right": 2000, "bottom": 3205, "left": 380}, {"solidity": 0.9976744715521195, "top": 760, "right": 3855, "bottom": 3170, "left": 2245}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717182f.jpg"} -{"rects": [{"solidity": 0.9959765851113267, "top": 675, "right": 2545, "bottom": 2160, "left": 445}, {"solidity": 0.9957598854574268, "top": 2460, "right": 2485, "bottom": 3930, "left": 450}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716099f.jpg"} -{"rects": [{"solidity": 0.9959766299296242, "top": 665, "right": 2430, "bottom": 3490, "left": 405}, {"solidity": 0.9974817785912239, "top": 885, "right": 4190, "bottom": 3300, "left": 2585}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729528f.jpg"} -{"rects": [{"solidity": 0.9959767634328979, "top": 565, "right": 2210, "bottom": 2660, "left": 685}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509267.jpg"} -{"rects": [{"solidity": 0.9959768464741122, "top": 760, "right": 2050, "bottom": 3175, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713980f.jpg"} -{"rects": [{"solidity": 0.9959768531275833, "top": 735, "right": 2020, "bottom": 3160, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705493f.jpg"} -{"rects": [{"solidity": 0.9959768629225102, "top": 750, "right": 3805, "bottom": 3160, "left": 2185}, {"solidity": 0.9966848369491199, "top": 760, "right": 1985, "bottom": 3145, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712124f.jpg"} -{"rects": [{"solidity": 0.9959769227800718, "top": 510, "right": 2480, "bottom": 2935, "left": 845}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721781f.jpg"} -{"rects": [{"solidity": 0.9959772148428659, "top": 410, "right": 3190, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705564f.jpg"} -{"rects": [{"solidity": 0.9959773497594934, "top": 475, "right": 3925, "bottom": 2570, "left": 2430}, {"solidity": 0.9955848812674561, "top": 455, "right": 2220, "bottom": 2540, "left": 725}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716275f.jpg"} -{"rects": [{"solidity": 0.995977363498322, "top": 810, "right": 3960, "bottom": 3260, "left": 2315}, {"solidity": 0.9948233602405308, "top": 805, "right": 2050, "bottom": 3220, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724842f.jpg"} -{"rects": [{"solidity": 0.9959774583448462, "top": 2215, "right": 3210, "bottom": 3835, "left": 780}, {"solidity": 0.9961353537062219, "top": 4060, "right": 3200, "bottom": 5670, "left": 790}, {"solidity": 0.9956190719237804, "top": 390, "right": 3195, "bottom": 1990, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732882f.jpg"} -{"rects": [{"solidity": 0.9959776228558402, "top": 2070, "right": 2550, "bottom": 3535, "left": 705}, {"solidity": 0.9833390391418464, "top": 605, "right": 2445, "bottom": 1825, "left": 785}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723594f.jpg"} -{"rects": [{"solidity": 0.9959776780407565, "top": 365, "right": 3110, "bottom": 1990, "left": 685}, {"solidity": 0.9961378874211929, "top": 2220, "right": 3130, "bottom": 3850, "left": 705}, {"solidity": 0.9972456878813507, "top": 4100, "right": 3140, "bottom": 5720, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729916f.jpg"} -{"rects": [{"solidity": 0.9959777385881511, "top": 425, "right": 3210, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705704f.jpg"} -{"rects": [{"solidity": 0.9959778075717958, "top": 885, "right": 3120, "bottom": 2025, "left": 1615}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508781.jpg"} -{"rects": [{"solidity": 0.9959778703379861, "top": 2275, "right": 3205, "bottom": 3925, "left": 760}, {"solidity": 0.9960498015226806, "top": 395, "right": 3205, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710038f.jpg"} -{"rects": [{"solidity": 0.9959781164073278, "top": 2280, "right": 3220, "bottom": 3925, "left": 770}, {"solidity": 0.9986780450356609, "top": 405, "right": 3200, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732111f.jpg"} -{"rects": [{"solidity": 0.9959782413381904, "top": 405, "right": 3110, "bottom": 2000, "left": 695}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728913f.jpg"} -{"rects": [{"solidity": 0.9959785211955784, "top": 395, "right": 3095, "bottom": 1985, "left": 690}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/728844f.jpg"} -{"rects": [{"solidity": 0.9959785479970997, "top": 2235, "right": 3290, "bottom": 3865, "left": 840}, {"solidity": 0.9966935582055505, "top": 375, "right": 3290, "bottom": 1990, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727615f.jpg"} -{"rects": [{"solidity": 0.9959787193565951, "top": 2265, "right": 3175, "bottom": 3875, "left": 775}, {"solidity": 0.9986250933680585, "top": 420, "right": 3175, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711152f.jpg"} -{"rects": [{"solidity": 0.9959787544729537, "top": 4060, "right": 3025, "bottom": 5700, "left": 605}, {"solidity": 0.9968617423141745, "top": 2195, "right": 3050, "bottom": 3810, "left": 625}, {"solidity": 0.9951052390007212, "top": 370, "right": 3045, "bottom": 1975, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734365f.jpg"} -{"rects": [{"solidity": 0.9959787892178524, "top": 2245, "right": 3170, "bottom": 3885, "left": 720}, {"solidity": 0.9939221052902099, "top": 4095, "right": 3155, "bottom": 5715, "left": 730}, {"solidity": 0.9952869683530228, "top": 435, "right": 3160, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/732190f.jpg"} -{"rects": [{"solidity": 0.9959790115964645, "top": 935, "right": 1880, "bottom": 2950, "left": 360}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700100f.jpg"} -{"rects": [{"solidity": 0.9959791588555471, "top": 825, "right": 3880, "bottom": 3240, "left": 2260}, {"solidity": 0.9967919295139218, "top": 820, "right": 2030, "bottom": 3225, "left": 420}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712730f.jpg"} -{"rects": [{"solidity": 0.9959791823340398, "top": 2315, "right": 2955, "bottom": 3815, "left": 975}, {"solidity": 0.9950114276613969, "top": 4135, "right": 2955, "bottom": 5630, "left": 965}, {"solidity": 0.9957138576583854, "top": 520, "right": 2970, "bottom": 2020, "left": 1015}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718956f.jpg"} -{"rects": [{"solidity": 0.9959792856749348, "top": 470, "right": 5080, "bottom": 3725, "left": 965}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730405f.jpg"} -{"rects": [{"solidity": 0.9959795736402691, "top": 2220, "right": 3230, "bottom": 3835, "left": 815}, {"solidity": 0.996756104717504, "top": 4045, "right": 3210, "bottom": 5655, "left": 800}, {"solidity": 0.995780576576335, "top": 430, "right": 3215, "bottom": 2020, "left": 840}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715399f.jpg"} -{"rects": [{"solidity": 0.9959797145112931, "top": 435, "right": 3285, "bottom": 2365, "left": 555}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727444f.jpg"} -{"rects": [{"solidity": 0.9959797721870906, "top": 415, "right": 3285, "bottom": 2020, "left": 895}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726013f.jpg"} -{"rects": [{"solidity": 0.9959799091864378, "top": 2235, "right": 3155, "bottom": 3870, "left": 730}, {"solidity": 0.9972218812386533, "top": 415, "right": 3165, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/724710f.jpg"} -{"rects": [{"solidity": 0.9959803462350996, "top": 2125, "right": 2735, "bottom": 3555, "left": 885}, {"solidity": 0.9963280413929879, "top": 630, "right": 2710, "bottom": 2045, "left": 895}, {"solidity": 0.9964704436524517, "top": 635, "right": 5225, "bottom": 2045, "left": 3405}, {"solidity": 0.9982775804349493, "top": 2140, "right": 5190, "bottom": 3535, "left": 3425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705306f.jpg"} -{"rects": [{"solidity": 0.9959804134154512, "top": 2255, "right": 3180, "bottom": 3875, "left": 755}, {"solidity": 0.9955047914171137, "top": 410, "right": 3185, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734223f.jpg"} -{"rects": [{"solidity": 0.9959807048189875, "top": 795, "right": 3865, "bottom": 3230, "left": 2250}, {"solidity": 0.9967393512889399, "top": 805, "right": 2065, "bottom": 3230, "left": 455}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706318f.jpg"} -{"rects": [{"solidity": 0.9959808346552855, "top": 2285, "right": 3100, "bottom": 3915, "left": 670}, {"solidity": 0.9959716162875246, "top": 4125, "right": 3085, "bottom": 5740, "left": 665}, {"solidity": 0.9942649431917152, "top": 415, "right": 3125, "bottom": 2050, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733630f.jpg"} -{"rects": [{"solidity": 0.9959811437550593, "top": 2230, "right": 3185, "bottom": 3890, "left": 735}, {"solidity": 0.9960568484449861, "top": 335, "right": 3190, "bottom": 1975, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700785f.jpg"} -{"rects": [{"solidity": 0.9959812871091049, "top": 3550, "right": 3710, "bottom": 5740, "left": 600}, {"solidity": 0.9957304820031592, "top": 665, "right": 3735, "bottom": 2850, "left": 650}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710262f.jpg"} -{"rects": [{"solidity": 0.995981441919127, "top": 830, "right": 2095, "bottom": 3255, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714665f.jpg"} -{"rects": [{"solidity": 0.9959815372202204, "top": 900, "right": 2010, "bottom": 2895, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701569f.jpg"} -{"rects": [{"solidity": 0.995981551523276, "top": 2000, "right": 3185, "bottom": 3645, "left": 755}, {"solidity": 0.9951987301131074, "top": 230, "right": 3170, "bottom": 1835, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712211f.jpg"} -{"rects": [{"solidity": 0.9959821155929273, "top": 800, "right": 2055, "bottom": 3225, "left": 425}, {"solidity": 0.9942293426845599, "top": 775, "right": 3925, "bottom": 3220, "left": 2280}, {"solidity": 0.9946500337039345, "top": 980, "right": 5630, "bottom": 2970, "left": 4140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732030f.jpg"} -{"rects": [{"solidity": 0.995982211024584, "top": 605, "right": 2495, "bottom": 3035, "left": 850}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711047f.jpg"} -{"rects": [{"solidity": 0.9959822868705828, "top": 410, "right": 3205, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734528f.jpg"} -{"rects": [{"solidity": 0.995982529314551, "top": 550, "right": 3300, "bottom": 2640, "left": 235}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715441f.jpg"} -{"rects": [{"solidity": 0.9959825337845833, "top": 325, "right": 2370, "bottom": 1525, "left": 585}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716381f.jpg"} -{"rects": [{"solidity": 0.9959827173819324, "top": 395, "right": 3195, "bottom": 2050, "left": 755}, {"solidity": 0.9953907764350647, "top": 2195, "right": 3160, "bottom": 3860, "left": 715}, {"solidity": 0.9957240445962493, "top": 4040, "right": 3125, "bottom": 5680, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710040f.jpg"} -{"rects": [{"solidity": 0.9959828736513335, "top": 460, "right": 3330, "bottom": 2035, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726010f.jpg"} -{"rects": [{"solidity": 0.9959829993604775, "top": 750, "right": 1980, "bottom": 3145, "left": 400}, {"solidity": 0.9967292804416972, "top": 760, "right": 3800, "bottom": 3145, "left": 2210}, {"solidity": 0.9949136621632425, "top": 765, "right": 5630, "bottom": 3160, "left": 4035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711942f.jpg"} -{"rects": [{"solidity": 0.9959831707004654, "top": 785, "right": 2040, "bottom": 3190, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710517f.jpg"} -{"rects": [{"solidity": 0.9959833426858442, "top": 460, "right": 3045, "bottom": 1880, "left": 1235}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725583f.jpg"} -{"rects": [{"solidity": 0.9959834316555792, "top": 540, "right": 3380, "bottom": 2410, "left": 625}], "shape": {"h": 4410, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711429f.jpg"} -{"rects": [{"solidity": 0.9959835902865083, "top": 770, "right": 2055, "bottom": 3160, "left": 460}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717835f.jpg"} -{"rects": [{"solidity": 0.9959836110957311, "top": 525, "right": 5045, "bottom": 3460, "left": 1185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712885f.jpg"} -{"rects": [{"solidity": 0.9959837943702717, "top": 760, "right": 3910, "bottom": 3190, "left": 2280}, {"solidity": 0.9987193993172291, "top": 775, "right": 2035, "bottom": 3185, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723468f.jpg"} -{"rects": [{"solidity": 0.995983887910931, "top": 370, "right": 3355, "bottom": 2310, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717736f.jpg"} -{"rects": [{"solidity": 0.9959841526530328, "top": 1175, "right": 5505, "bottom": 2815, "left": 3070}, {"solidity": 0.9996143487958041, "top": 1175, "right": 3030, "bottom": 2795, "left": 615}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705587f.jpg"} -{"rects": [{"solidity": 0.995984169479688, "top": 705, "right": 2035, "bottom": 3120, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700195f.jpg"} -{"rects": [{"solidity": 0.9959842001316656, "top": 605, "right": 4965, "bottom": 3580, "left": 1100}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724569f.jpg"} -{"rects": [{"solidity": 0.9959842341614706, "top": 860, "right": 2040, "bottom": 3275, "left": 425}, {"solidity": 0.9983349733791242, "top": 860, "right": 3875, "bottom": 3275, "left": 2275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734601f.jpg"} -{"rects": [{"solidity": 0.9959844477022117, "top": 2130, "right": 5670, "bottom": 3765, "left": 3245}, {"solidity": 0.998404919395474, "top": 400, "right": 2910, "bottom": 2020, "left": 490}, {"solidity": 0.9981761551552516, "top": 2130, "right": 2905, "bottom": 3755, "left": 495}, {"solidity": 0.9851115882398228, "top": 400, "right": 5485, "bottom": 1915, "left": 3510}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715356f.jpg"} -{"rects": [{"solidity": 0.9959848647745257, "top": 495, "right": 5035, "bottom": 3610, "left": 1070}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700397f.jpg"} -{"rects": [{"solidity": 0.9959850419318461, "top": 430, "right": 3175, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701256f.jpg"} -{"rects": [{"solidity": 0.9959850544130784, "top": 410, "right": 3025, "bottom": 2040, "left": 600}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704513f.jpg"} -{"rects": [{"solidity": 0.9959851246706938, "top": 735, "right": 2005, "bottom": 3125, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721665f.jpg"} -{"rects": [{"solidity": 0.9959852717935467, "top": 425, "right": 3195, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734231f.jpg"} -{"rects": [{"solidity": 0.9959854815672528, "top": 420, "right": 3130, "bottom": 2065, "left": 700}, {"solidity": 0.9972997299729973, "top": 2295, "right": 3120, "bottom": 3920, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709259f.jpg"} -{"rects": [{"solidity": 0.9959857573764543, "top": 760, "right": 3875, "bottom": 3175, "left": 2260}, {"solidity": 0.9985546250363796, "top": 775, "right": 2035, "bottom": 3180, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713676f.jpg"} -{"rects": [{"solidity": 0.9959858597736693, "top": 575, "right": 3345, "bottom": 2505, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724632f.jpg"} -{"rects": [{"solidity": 0.9959859459035056, "top": 2265, "right": 3150, "bottom": 3870, "left": 745}, {"solidity": 0.9954523900472872, "top": 435, "right": 3150, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734120f.jpg"} -{"rects": [{"solidity": 0.9959859605576994, "top": 2255, "right": 3210, "bottom": 3870, "left": 790}, {"solidity": 0.9974714320447362, "top": 4105, "right": 3200, "bottom": 5715, "left": 785}, {"solidity": 0.9955461341938081, "top": 420, "right": 3210, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734257f.jpg"} -{"rects": [{"solidity": 0.9959860868218455, "top": 2120, "right": 3030, "bottom": 3755, "left": 620}, {"solidity": 0.9963853279231801, "top": 475, "right": 3055, "bottom": 2105, "left": 640}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700927f.jpg"} -{"rects": [{"solidity": 0.9959861979284017, "top": 460, "right": 3145, "bottom": 2085, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705687f.jpg"} -{"rects": [{"solidity": 0.9959862075540654, "top": 2290, "right": 3175, "bottom": 3935, "left": 745}, {"solidity": 0.9963960014312838, "top": 4195, "right": 3175, "bottom": 5820, "left": 760}, {"solidity": 0.996617390743012, "top": 450, "right": 3170, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707707f.jpg"} -{"rects": [{"solidity": 0.9959862102119504, "top": 840, "right": 2090, "bottom": 3240, "left": 495}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703634f.jpg"} -{"rects": [{"solidity": 0.99598625242982, "top": 690, "right": 2655, "bottom": 2120, "left": 830}, {"solidity": 0.9981299763812121, "top": 2175, "right": 2640, "bottom": 3605, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703813f.jpg"} -{"rects": [{"solidity": 0.9959864445401081, "top": 385, "right": 3115, "bottom": 2000, "left": 700}, {"solidity": 0.9971103814752024, "top": 4090, "right": 3120, "bottom": 5700, "left": 710}, {"solidity": 0.9957219530327831, "top": 2235, "right": 3130, "bottom": 3835, "left": 715}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729666f.jpg"} -{"rects": [{"solidity": 0.9959865271199784, "top": 890, "right": 2015, "bottom": 3315, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729520f.jpg"} -{"rects": [{"solidity": 0.9959869486905035, "top": 1915, "right": 2800, "bottom": 4335, "left": 1185}, {"solidity": 0.9974845458405863, "top": 250, "right": 3230, "bottom": 1860, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724903f.jpg"} -{"rects": [{"solidity": 0.9959872973681015, "top": 2320, "right": 3170, "bottom": 3965, "left": 735}, {"solidity": 0.9934821258595044, "top": 565, "right": 3125, "bottom": 2195, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725910f.jpg"} -{"rects": [{"solidity": 0.9959873195423672, "top": 435, "right": 3065, "bottom": 2055, "left": 645}, {"solidity": 0.9956904906508846, "top": 2310, "right": 3070, "bottom": 3925, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729562f.jpg"} -{"rects": [{"solidity": 0.995987571894765, "top": 4110, "right": 3135, "bottom": 5725, "left": 740}, {"solidity": 0.9952372414467572, "top": 400, "right": 3150, "bottom": 2015, "left": 755}, {"solidity": 0.996030355335602, "top": 2250, "right": 3135, "bottom": 3870, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734483f.jpg"} -{"rects": [{"solidity": 0.995987864983439, "top": 1075, "right": 2575, "bottom": 3990, "left": 325}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508373.jpg"} -{"rects": [{"solidity": 0.9959878928387429, "top": 430, "right": 3155, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719311f.jpg"} -{"rects": [{"solidity": 0.9959879250735332, "top": 830, "right": 3890, "bottom": 3245, "left": 2270}, {"solidity": 0.9963880971824576, "top": 835, "right": 5745, "bottom": 3250, "left": 4130}, {"solidity": 0.998118100510247, "top": 830, "right": 2040, "bottom": 3245, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731573f.jpg"} -{"rects": [{"solidity": 0.9959880825272203, "top": 755, "right": 2035, "bottom": 3190, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723288f.jpg"} -{"rects": [{"solidity": 0.9959884555231293, "top": 765, "right": 2050, "bottom": 3180, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707715f.jpg"} -{"rects": [{"solidity": 0.9959884938261941, "top": 795, "right": 2005, "bottom": 3195, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712010f.jpg"} -{"rects": [{"solidity": 0.9959885606802172, "top": 2130, "right": 2745, "bottom": 3560, "left": 890}, {"solidity": 0.9950680010757232, "top": 670, "right": 2715, "bottom": 2105, "left": 870}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703838f.jpg"} -{"rects": [{"solidity": 0.995988977736573, "top": 810, "right": 2105, "bottom": 3235, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707768f.jpg"} -{"rects": [{"solidity": 0.9959891949084924, "top": 410, "right": 4990, "bottom": 3660, "left": 980}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711935f.jpg"} -{"rects": [{"solidity": 0.9959895016483692, "top": 420, "right": 3205, "bottom": 2035, "left": 765}, {"solidity": 0.9955395017610613, "top": 2250, "right": 3190, "bottom": 3880, "left": 760}, {"solidity": 0.9951966945547545, "top": 4095, "right": 3175, "bottom": 5725, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727613f.jpg"} -{"rects": [{"solidity": 0.9959895470715587, "top": 615, "right": 4945, "bottom": 2050, "left": 3090}, {"solidity": 0.9944300543361833, "top": 615, "right": 2775, "bottom": 2055, "left": 960}, {"solidity": 0.9953140563588991, "top": 2235, "right": 2765, "bottom": 3670, "left": 960}, {"solidity": 0.9925116383280639, "top": 2240, "right": 4930, "bottom": 3650, "left": 3120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725248f.jpg"} -{"rects": [{"solidity": 0.9959896019559146, "top": 435, "right": 3160, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/717582f.jpg"} -{"rects": [{"solidity": 0.9959896667824004, "top": 385, "right": 3300, "bottom": 2030, "left": 855}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726078f.jpg"} -{"rects": [{"solidity": 0.9959897404833015, "top": 355, "right": 3300, "bottom": 3585, "left": 1265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718908f.jpg"} -{"rects": [{"solidity": 0.9959900931713646, "top": 675, "right": 2050, "bottom": 1865, "left": 140}, {"solidity": 0.996069933806287, "top": 2215, "right": 2055, "bottom": 3335, "left": 135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723149f.jpg"} -{"rects": [{"solidity": 0.9959902075299615, "top": 2265, "right": 3145, "bottom": 3905, "left": 710}, {"solidity": 0.9960336557872127, "top": 445, "right": 3145, "bottom": 2070, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701522f.jpg"} -{"rects": [{"solidity": 0.9959902076650347, "top": 425, "right": 3215, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711594f.jpg"} -{"rects": [{"solidity": 0.9959903579264808, "top": 825, "right": 2005, "bottom": 3210, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728853f.jpg"} -{"rects": [{"solidity": 0.9959903636723648, "top": 885, "right": 3220, "bottom": 2480, "left": 820}, {"solidity": 0.9965787079162876, "top": 3395, "right": 3275, "bottom": 4980, "left": 875}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730960f.jpg"} -{"rects": [{"solidity": 0.9959904830467163, "top": 2255, "right": 3195, "bottom": 3870, "left": 775}, {"solidity": 0.9979972755144173, "top": 435, "right": 3185, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734674f.jpg"} -{"rects": [{"solidity": 0.9959906565979777, "top": 2205, "right": 3210, "bottom": 3845, "left": 785}, {"solidity": 0.9987881444428688, "top": 370, "right": 3210, "bottom": 1990, "left": 800}, {"solidity": 0.9955414053747795, "top": 4035, "right": 3200, "bottom": 5675, "left": 775}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726822f.jpg"} -{"rects": [{"solidity": 0.9959907285597945, "top": 710, "right": 2820, "bottom": 3480, "left": 940}], "shape": {"h": 4420, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/708380f.jpg"} -{"rects": [{"solidity": 0.9959907361224509, "top": 4090, "right": 3170, "bottom": 5735, "left": 720}, {"solidity": 0.9956515061339681, "top": 2230, "right": 3200, "bottom": 3880, "left": 755}, {"solidity": 0.9960584618276939, "top": 430, "right": 3190, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732152f.jpg"} -{"rects": [{"solidity": 0.9959907534493968, "top": 385, "right": 2610, "bottom": 2900, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701298f.jpg"} -{"rects": [{"solidity": 0.9959909698238327, "top": 805, "right": 1995, "bottom": 3210, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713599f.jpg"} -{"rects": [{"solidity": 0.9959911676370843, "top": 2420, "right": 3145, "bottom": 4050, "left": 730}, {"solidity": 0.9943941482311488, "top": 545, "right": 3130, "bottom": 2145, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710833f.jpg"} -{"rects": [{"solidity": 0.9959918299921245, "top": 400, "right": 3205, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702886f.jpg"} -{"rects": [{"solidity": 0.9959919687651724, "top": 2510, "right": 3545, "bottom": 4350, "left": 805}, {"solidity": 0.9954160210960507, "top": 435, "right": 3535, "bottom": 2255, "left": 820}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/702237f.jpg"} -{"rects": [{"solidity": 0.9959919808893224, "top": 445, "right": 3025, "bottom": 3710, "left": 510}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714344f.jpg"} -{"rects": [{"solidity": 0.9959920084310239, "top": 725, "right": 2500, "bottom": 2205, "left": 410}, {"solidity": 0.9919465755703326, "top": 2460, "right": 2510, "bottom": 3955, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716244f.jpg"} -{"rects": [{"solidity": 0.9959921650376098, "top": 775, "right": 2035, "bottom": 3195, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719760f.jpg"} -{"rects": [{"solidity": 0.9959922671308101, "top": 725, "right": 2265, "bottom": 3150, "left": 630}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706881f.jpg"} -{"rects": [{"solidity": 0.9959922821433371, "top": 640, "right": 2665, "bottom": 2090, "left": 820}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703397f.jpg"} -{"rects": [{"solidity": 0.9959932290953211, "top": 460, "right": 3170, "bottom": 1885, "left": 1355}, {"solidity": 0.9949546263301102, "top": 2275, "right": 3150, "bottom": 3680, "left": 1330}, {"solidity": 0.9949189680214422, "top": 4090, "right": 3125, "bottom": 5490, "left": 1280}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728012f.jpg"} -{"rects": [{"solidity": 0.9959933705569054, "top": 965, "right": 2115, "bottom": 3385, "left": 480}, {"solidity": 0.9948871502624038, "top": 920, "right": 5755, "bottom": 3345, "left": 4110}, {"solidity": 0.9966490185950413, "top": 955, "right": 3940, "bottom": 3365, "left": 2320}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711807f.jpg"} -{"rects": [{"solidity": 0.9959934303624098, "top": 4090, "right": 3185, "bottom": 5835, "left": 610}, {"solidity": 0.9965827189720272, "top": 2295, "right": 3195, "bottom": 4015, "left": 605}, {"solidity": 0.9970231213026844, "top": 440, "right": 3125, "bottom": 2210, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708606f.jpg"} -{"rects": [{"solidity": 0.9959935026315622, "top": 2275, "right": 3185, "bottom": 3905, "left": 755}, {"solidity": 0.99748836546065, "top": 430, "right": 3180, "bottom": 2030, "left": 750}, {"solidity": 0.9957147239972157, "top": 4170, "right": 3165, "bottom": 5760, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734526f.jpg"} -{"rects": [{"solidity": 0.9959937309902536, "top": 4120, "right": 3150, "bottom": 5745, "left": 720}, {"solidity": 0.9959699431617481, "top": 400, "right": 3180, "bottom": 2020, "left": 745}, {"solidity": 0.9962528079733532, "top": 2265, "right": 3165, "bottom": 3880, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734100f.jpg"} -{"rects": [{"solidity": 0.9959937476192353, "top": 765, "right": 2015, "bottom": 3170, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718399f.jpg"} -{"rects": [{"solidity": 0.9959937976851612, "top": 450, "right": 3075, "bottom": 2060, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728499f.jpg"} -{"rects": [{"solidity": 0.9959939120333873, "top": 2290, "right": 3125, "bottom": 3925, "left": 710}, {"solidity": 0.9963485653697037, "top": 435, "right": 3150, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724402f.jpg"} -{"rects": [{"solidity": 0.9959939495263116, "top": 2240, "right": 3100, "bottom": 3875, "left": 665}, {"solidity": 0.9955424985589268, "top": 390, "right": 3080, "bottom": 1995, "left": 675}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/728976f.jpg"} -{"rects": [{"solidity": 0.9959939531368103, "top": 345, "right": 2410, "bottom": 1550, "left": 605}, {"solidity": 0.9988259023993739, "top": 1725, "right": 2395, "bottom": 2900, "left": 615}], "shape": {"h": 4700, "w": 3045}, "file": "/usr/local/google/home/danvk/milstein/702353f.jpg"} -{"rects": [{"solidity": 0.9959940444794595, "top": 1305, "right": 2915, "bottom": 2895, "left": 540}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719725f.jpg"} -{"rects": [{"solidity": 0.9959941415532644, "top": 415, "right": 3135, "bottom": 2040, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728302f.jpg"} -{"rects": [{"solidity": 0.9959942794559454, "top": 415, "right": 3110, "bottom": 2000, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714254f.jpg"} -{"rects": [{"solidity": 0.995994489566739, "top": 765, "right": 2045, "bottom": 3185, "left": 445}, {"solidity": 0.9951748050833783, "top": 825, "right": 3670, "bottom": 3150, "left": 2275}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720975f.jpg"} -{"rects": [{"solidity": 0.9959946801135867, "top": 4110, "right": 2975, "bottom": 5485, "left": 1185}, {"solidity": 0.9968737102765167, "top": 2385, "right": 2970, "bottom": 3755, "left": 1185}, {"solidity": 0.9672082150252983, "top": 785, "right": 3130, "bottom": 1945, "left": 925}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725627f.jpg"} -{"rects": [{"solidity": 0.9959947023605281, "top": 755, "right": 3890, "bottom": 3180, "left": 2255}, {"solidity": 0.9958548555796927, "top": 765, "right": 2080, "bottom": 3195, "left": 455}, {"solidity": 0.9961713112614369, "top": 790, "right": 5725, "bottom": 3205, "left": 4105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730990f.jpg"} -{"rects": [{"solidity": 0.9959948221060186, "top": 420, "right": 3185, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719483f.jpg"} -{"rects": [{"solidity": 0.9959950004377048, "top": 805, "right": 3290, "bottom": 2715, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712402f.jpg"} -{"rects": [{"solidity": 0.9959950606849007, "top": 820, "right": 2030, "bottom": 3220, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713205f.jpg"} -{"rects": [{"solidity": 0.9959950721372041, "top": 465, "right": 3195, "bottom": 3935, "left": 575}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717689f.jpg"} -{"rects": [{"solidity": 0.9959950829426496, "top": 865, "right": 1940, "bottom": 3255, "left": 320}, {"solidity": 0.9954602059709163, "top": 875, "right": 3795, "bottom": 3245, "left": 2165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733914f.jpg"} -{"rects": [{"solidity": 0.9959951573849879, "top": 735, "right": 2700, "bottom": 2175, "left": 890}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727455f.jpg"} -{"rects": [{"solidity": 0.995995207063814, "top": 2255, "right": 3170, "bottom": 3885, "left": 735}, {"solidity": 0.9968847452281571, "top": 430, "right": 3170, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706552f.jpg"} -{"rects": [{"solidity": 0.9959954159745561, "top": 725, "right": 2075, "bottom": 3145, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703365f.jpg"} -{"rects": [{"solidity": 0.9959954288657471, "top": 440, "right": 3165, "bottom": 2065, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721556f.jpg"} -{"rects": [{"solidity": 0.9959954429216153, "top": 475, "right": 3050, "bottom": 1900, "left": 1240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727724f.jpg"} -{"rects": [{"solidity": 0.9959957881007616, "top": 415, "right": 3680, "bottom": 2625, "left": 935}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509241.jpg"} -{"rects": [{"solidity": 0.9959958998013966, "top": 385, "right": 3225, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707179f.jpg"} -{"rects": [{"solidity": 0.9959959167302167, "top": 300, "right": 3990, "bottom": 2725, "left": 970}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516939.jpg"} -{"rects": [{"solidity": 0.9959959397307923, "top": 755, "right": 2085, "bottom": 3145, "left": 490}, {"solidity": 0.993418492091213, "top": 1115, "right": 3795, "bottom": 2900, "left": 2370}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721222f.jpg"} -{"rects": [{"solidity": 0.9959960862064526, "top": 400, "right": 3225, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722394f.jpg"} -{"rects": [{"solidity": 0.9959967260942172, "top": 390, "right": 3155, "bottom": 1995, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721899f.jpg"} -{"rects": [{"solidity": 0.9959968250297931, "top": 600, "right": 5000, "bottom": 3590, "left": 1210}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709937f.jpg"} -{"rects": [{"solidity": 0.9959969340959448, "top": 485, "right": 3160, "bottom": 2115, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700718f.jpg"} -{"rects": [{"solidity": 0.9959970741396897, "top": 765, "right": 2040, "bottom": 3145, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718154f.jpg"} -{"rects": [{"solidity": 0.9959971243954212, "top": 930, "right": 2015, "bottom": 2845, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706913f.jpg"} -{"rects": [{"solidity": 0.9959971821200975, "top": 2230, "right": 3175, "bottom": 3840, "left": 760}, {"solidity": 0.997000650894735, "top": 435, "right": 3170, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714850f.jpg"} -{"rects": [{"solidity": 0.995997209593226, "top": 655, "right": 2605, "bottom": 2100, "left": 765}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704397f.jpg"} -{"rects": [{"solidity": 0.995997236186891, "top": 575, "right": 2705, "bottom": 2010, "left": 855}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722529f.jpg"} -{"rects": [{"solidity": 0.9959973131895963, "top": 380, "right": 3720, "bottom": 2750, "left": 820}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508143.jpg"} -{"rects": [{"solidity": 0.9959975088859859, "top": 1025, "right": 3415, "bottom": 5065, "left": 520}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722294f.jpg"} -{"rects": [{"solidity": 0.9959975104131756, "top": 2190, "right": 3025, "bottom": 3835, "left": 595}, {"solidity": 0.9974049861567106, "top": 350, "right": 3030, "bottom": 1975, "left": 615}, {"solidity": 0.9958875119284875, "top": 4055, "right": 3000, "bottom": 5680, "left": 595}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726662f.jpg"} -{"rects": [{"solidity": 0.9959975699531859, "top": 825, "right": 2045, "bottom": 3235, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729333f.jpg"} -{"rects": [{"solidity": 0.9959977184445911, "top": 840, "right": 3900, "bottom": 3270, "left": 2260}, {"solidity": 0.9957268915211691, "top": 855, "right": 2030, "bottom": 3290, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704201f.jpg"} -{"rects": [{"solidity": 0.9959977714114284, "top": 425, "right": 3145, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707647f.jpg"} -{"rects": [{"solidity": 0.9959978075509761, "top": 800, "right": 2060, "bottom": 3215, "left": 440}, {"solidity": 0.9984121631576018, "top": 810, "right": 3935, "bottom": 3210, "left": 2335}, {"solidity": 0.9970473603401441, "top": 825, "right": 5810, "bottom": 3225, "left": 4210}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718341f.jpg"} -{"rects": [{"solidity": 0.9959979449791062, "top": 720, "right": 2070, "bottom": 3125, "left": 465}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723633f.jpg"} -{"rects": [{"solidity": 0.9959981575190536, "top": 790, "right": 2010, "bottom": 3190, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704869f.jpg"} -{"rects": [{"solidity": 0.9959985530767925, "top": 770, "right": 2065, "bottom": 3200, "left": 420}, {"solidity": 0.9960973874806001, "top": 825, "right": 5660, "bottom": 3245, "left": 4040}, {"solidity": 0.9959145550914571, "top": 805, "right": 3870, "bottom": 3215, "left": 2245}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723786f.jpg"} -{"rects": [{"solidity": 0.9959985932035806, "top": 380, "right": 3205, "bottom": 1965, "left": 810}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730386f.jpg"} -{"rects": [{"solidity": 0.9959987557505607, "top": 4060, "right": 3145, "bottom": 5665, "left": 735}, {"solidity": 0.995026524111188, "top": 2220, "right": 3150, "bottom": 3820, "left": 740}, {"solidity": 0.9963311937452453, "top": 395, "right": 3150, "bottom": 1990, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734386f.jpg"} -{"rects": [{"solidity": 0.995998796154029, "top": 780, "right": 3860, "bottom": 3220, "left": 2200}, {"solidity": 0.9965640347683917, "top": 775, "right": 2025, "bottom": 3200, "left": 380}, {"solidity": 0.9958062189687301, "top": 1010, "right": 5585, "bottom": 2995, "left": 4035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732372f.jpg"} -{"rects": [{"solidity": 0.9959989108324123, "top": 390, "right": 3135, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719459f.jpg"} -{"rects": [{"solidity": 0.995999049407996, "top": 385, "right": 3075, "bottom": 2005, "left": 665}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/729007f.jpg"} -{"rects": [{"solidity": 0.9959992556754745, "top": 4025, "right": 3245, "bottom": 5655, "left": 815}, {"solidity": 0.9943781316147996, "top": 2265, "right": 3220, "bottom": 3875, "left": 805}, {"solidity": 0.9958471433080808, "top": 515, "right": 3205, "bottom": 2115, "left": 800}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/731397f.jpg"} -{"rects": [{"solidity": 0.9959992630221357, "top": 775, "right": 3850, "bottom": 3170, "left": 2250}, {"solidity": 0.9955133228192335, "top": 780, "right": 5670, "bottom": 3170, "left": 4070}, {"solidity": 0.9985486260104818, "top": 775, "right": 2005, "bottom": 3165, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730359f.jpg"} -{"rects": [{"solidity": 0.9959996477251172, "top": 565, "right": 3095, "bottom": 2140, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723161f.jpg"} -{"rects": [{"solidity": 0.995999879595038, "top": 3960, "right": 3295, "bottom": 5545, "left": 915}, {"solidity": 0.9943922918782354, "top": 450, "right": 3150, "bottom": 1855, "left": 1335}, {"solidity": 0.9939524579366505, "top": 2185, "right": 3135, "bottom": 3585, "left": 1325}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/726981f.jpg"} -{"rects": [{"solidity": 0.9959998914575495, "top": 510, "right": 3675, "bottom": 2835, "left": 245}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711626f.jpg"} -{"rects": [{"solidity": 0.9959999615688861, "top": 2225, "right": 3070, "bottom": 3875, "left": 645}, {"solidity": 0.9956453842034548, "top": 370, "right": 3065, "bottom": 1990, "left": 630}, {"solidity": 0.9967652778539248, "top": 4095, "right": 3080, "bottom": 5710, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709303f.jpg"} -{"rects": [{"solidity": 0.9959999617221218, "top": 2265, "right": 3070, "bottom": 3905, "left": 620}, {"solidity": 0.9959495046878336, "top": 425, "right": 3030, "bottom": 2050, "left": 605}, {"solidity": 0.9957125936850486, "top": 4140, "right": 3065, "bottom": 5745, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729644f.jpg"} -{"rects": [{"solidity": 0.9960001804914524, "top": 755, "right": 2020, "bottom": 3175, "left": 395}, {"solidity": 0.9961667636626101, "top": 785, "right": 3875, "bottom": 3200, "left": 2250}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732544f.jpg"} -{"rects": [{"solidity": 0.9960002072767079, "top": 455, "right": 2940, "bottom": 2080, "left": 525}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707531f.jpg"} -{"rects": [{"solidity": 0.9960004216807813, "top": 2235, "right": 3075, "bottom": 3870, "left": 640}, {"solidity": 0.9965431600464818, "top": 395, "right": 3065, "bottom": 2005, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729632f.jpg"} -{"rects": [{"solidity": 0.9960004902624839, "top": 4080, "right": 3050, "bottom": 5705, "left": 625}, {"solidity": 0.997366579857737, "top": 2205, "right": 3035, "bottom": 3820, "left": 625}, {"solidity": 0.9980873164559445, "top": 355, "right": 3025, "bottom": 1960, "left": 625}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/734371f.jpg"} -{"rects": [{"solidity": 0.9960005152315322, "top": 340, "right": 3145, "bottom": 1965, "left": 725}, {"solidity": 0.9967898832684825, "top": 2200, "right": 3120, "bottom": 3810, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720027f.jpg"} -{"rects": [{"solidity": 0.9960005440555455, "top": 825, "right": 3980, "bottom": 3240, "left": 2365}, {"solidity": 0.995505174963036, "top": 845, "right": 2065, "bottom": 3255, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712737f.jpg"} -{"rects": [{"solidity": 0.9960006983552111, "top": 515, "right": 2135, "bottom": 2610, "left": 650}, {"solidity": 0.9976397500336305, "top": 525, "right": 3975, "bottom": 2610, "left": 2490}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716035f.jpg"} -{"rects": [{"solidity": 0.9960007771457591, "top": 845, "right": 3010, "bottom": 3245, "left": 280}, {"solidity": 0.9945741246585548, "top": 845, "right": 4855, "bottom": 1855, "left": 3845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709033f.jpg"} -{"rects": [{"solidity": 0.9960009145195479, "top": 2590, "right": 2510, "bottom": 4130, "left": 375}, {"solidity": 0.9483335657509413, "top": 1215, "right": 2160, "bottom": 2320, "left": 755}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517069.jpg"} -{"rects": [{"solidity": 0.996000980404804, "top": 755, "right": 3860, "bottom": 3175, "left": 2240}, {"solidity": 0.9947917508053078, "top": 765, "right": 2020, "bottom": 3195, "left": 385}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706511f.jpg"} -{"rects": [{"solidity": 0.9960011268079926, "top": 440, "right": 3205, "bottom": 2055, "left": 785}, {"solidity": 0.9954457034720319, "top": 2285, "right": 3180, "bottom": 3890, "left": 785}, {"solidity": 0.9935482375228941, "top": 4130, "right": 3175, "bottom": 5730, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717996f.jpg"} -{"rects": [{"solidity": 0.9960014484936426, "top": 840, "right": 2250, "bottom": 3575, "left": 410}], "shape": {"h": 4430, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/702230f.jpg"} -{"rects": [{"solidity": 0.9960014768064757, "top": 615, "right": 2635, "bottom": 3335, "left": 630}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720280f.jpg"} -{"rects": [{"solidity": 0.9960019143927826, "top": 775, "right": 3835, "bottom": 3190, "left": 2220}, {"solidity": 0.9964940322904231, "top": 770, "right": 2010, "bottom": 3175, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730176f.jpg"} -{"rects": [{"solidity": 0.9960020621966285, "top": 750, "right": 3915, "bottom": 3170, "left": 2305}, {"solidity": 0.9954695611137329, "top": 770, "right": 2065, "bottom": 3185, "left": 450}, {"solidity": 0.9959308605234735, "top": 760, "right": 5755, "bottom": 3175, "left": 4155}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732884f.jpg"} -{"rects": [{"solidity": 0.9960021142664937, "top": 800, "right": 3945, "bottom": 3225, "left": 2310}, {"solidity": 0.995555614651513, "top": 810, "right": 2165, "bottom": 3200, "left": 575}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720944f.jpg"} -{"rects": [{"solidity": 0.9960021159610791, "top": 400, "right": 3150, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701420f.jpg"} -{"rects": [{"solidity": 0.996002299079405, "top": 995, "right": 1960, "bottom": 3420, "left": 325}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717206f.jpg"} -{"rects": [{"solidity": 0.9960023718608682, "top": 740, "right": 2050, "bottom": 3150, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723195f.jpg"} -{"rects": [{"solidity": 0.9960024293917844, "top": 795, "right": 3480, "bottom": 2425, "left": 1055}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729992f.jpg"} -{"rects": [{"solidity": 0.9960024324670337, "top": 730, "right": 2020, "bottom": 3165, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723349f.jpg"} -{"rects": [{"solidity": 0.9960032077397994, "top": 4105, "right": 3170, "bottom": 5730, "left": 740}, {"solidity": 0.9964581178070625, "top": 420, "right": 3170, "bottom": 2040, "left": 755}, {"solidity": 0.9955150135487334, "top": 2250, "right": 3185, "bottom": 3865, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706993f.jpg"} -{"rects": [{"solidity": 0.9960032316319741, "top": 650, "right": 2680, "bottom": 2105, "left": 845}, {"solidity": 0.9956805219889778, "top": 2165, "right": 2675, "bottom": 3615, "left": 860}, {"solidity": 0.9953913266119487, "top": 2145, "right": 5325, "bottom": 3575, "left": 3495}, {"solidity": 0.995256513172298, "top": 645, "right": 5320, "bottom": 2070, "left": 3500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705301f.jpg"} -{"rects": [{"solidity": 0.9960034429906661, "top": 390, "right": 3075, "bottom": 2025, "left": 640}, {"solidity": 0.9988356234882404, "top": 4130, "right": 3040, "bottom": 5745, "left": 620}, {"solidity": 0.9970117567589302, "top": 2260, "right": 3060, "bottom": 3885, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722629f.jpg"} -{"rects": [{"solidity": 0.9960037417195365, "top": 395, "right": 3200, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730577f.jpg"} -{"rects": [{"solidity": 0.9960037807368519, "top": 355, "right": 2745, "bottom": 1765, "left": 915}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725979f.jpg"} -{"rects": [{"solidity": 0.9960037881505502, "top": 575, "right": 3340, "bottom": 2505, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721915f.jpg"} -{"rects": [{"solidity": 0.9960038280482127, "top": 820, "right": 2055, "bottom": 3240, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724400f.jpg"} -{"rects": [{"solidity": 0.99600386511407, "top": 525, "right": 2095, "bottom": 2610, "left": 615}, {"solidity": 0.9953183750706545, "top": 505, "right": 3960, "bottom": 2590, "left": 2480}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716049f.jpg"} -{"rects": [{"solidity": 0.9960039317362026, "top": 825, "right": 4805, "bottom": 3345, "left": 1470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723975f.jpg"} -{"rects": [{"solidity": 0.996003965057927, "top": 1090, "right": 3780, "bottom": 2995, "left": 2270}, {"solidity": 0.9952387517808723, "top": 1105, "right": 1975, "bottom": 2995, "left": 515}, {"solidity": 0.9953086698036122, "top": 1075, "right": 5510, "bottom": 2955, "left": 4060}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731459f.jpg"} -{"rects": [{"solidity": 0.996004005561863, "top": 2095, "right": 2835, "bottom": 3735, "left": 395}, {"solidity": 0.9982778231170116, "top": 350, "right": 5740, "bottom": 1965, "left": 3315}, {"solidity": 0.9964162830064234, "top": 350, "right": 2815, "bottom": 1960, "left": 405}, {"solidity": 0.993797328400865, "top": 2170, "right": 5675, "bottom": 3745, "left": 3360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730085f.jpg"} -{"rects": [{"solidity": 0.9960047493211712, "top": 500, "right": 3110, "bottom": 2105, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719842f.jpg"} -{"rects": [{"solidity": 0.9960047835998477, "top": 590, "right": 4985, "bottom": 3605, "left": 1225}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709884f.jpg"} -{"rects": [{"solidity": 0.9960048608595, "top": 2285, "right": 3100, "bottom": 3920, "left": 685}, {"solidity": 0.9957657227016692, "top": 425, "right": 3110, "bottom": 2060, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709608f.jpg"} -{"rects": [{"solidity": 0.9960049753002697, "top": 410, "right": 3130, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729836f.jpg"} -{"rects": [{"solidity": 0.9960049769862365, "top": 895, "right": 3860, "bottom": 3310, "left": 2230}, {"solidity": 0.997758443951367, "top": 895, "right": 1980, "bottom": 3300, "left": 365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730868f.jpg"} -{"rects": [{"solidity": 0.9960050292673625, "top": 465, "right": 2970, "bottom": 2085, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707013f.jpg"} -{"rects": [{"solidity": 0.99600517584648, "top": 400, "right": 3095, "bottom": 2040, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729757f.jpg"} -{"rects": [{"solidity": 0.9960052378387813, "top": 580, "right": 4940, "bottom": 3640, "left": 1095}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709421f.jpg"} -{"rects": [{"solidity": 0.9960052666564402, "top": 745, "right": 3900, "bottom": 3185, "left": 2265}, {"solidity": 0.9964928824243677, "top": 745, "right": 2040, "bottom": 3165, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703762f.jpg"} -{"rects": [{"solidity": 0.9960053305809419, "top": 835, "right": 5695, "bottom": 3245, "left": 4090}, {"solidity": 0.9973729462785598, "top": 830, "right": 3860, "bottom": 3230, "left": 2265}, {"solidity": 0.9947415625830455, "top": 835, "right": 2040, "bottom": 3235, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711713f.jpg"} -{"rects": [{"solidity": 0.9960053320897656, "top": 2150, "right": 5850, "bottom": 3650, "left": 3935}, {"solidity": 0.9978153231799582, "top": 1035, "right": 3805, "bottom": 2945, "left": 2330}, {"solidity": 0.9960741085425411, "top": 2140, "right": 2195, "bottom": 3610, "left": 275}, {"solidity": 0.9946969559620719, "top": 505, "right": 5845, "bottom": 1980, "left": 3945}, {"solidity": 0.9969967917167961, "top": 495, "right": 2200, "bottom": 1965, "left": 310}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731453f.jpg"} -{"rects": [{"solidity": 0.9960054480071333, "top": 425, "right": 3270, "bottom": 2030, "left": 865}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726432f.jpg"} -{"rects": [{"solidity": 0.9960054665397953, "top": 4010, "right": 3170, "bottom": 5650, "left": 730}, {"solidity": 0.996010536275989, "top": 2200, "right": 3180, "bottom": 3845, "left": 755}, {"solidity": 0.9977432931891691, "top": 425, "right": 3185, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715352f.jpg"} -{"rects": [{"solidity": 0.9960057718964216, "top": 445, "right": 3050, "bottom": 2105, "left": 600}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707806f.jpg"} -{"rects": [{"solidity": 0.9960058329549161, "top": 2225, "right": 3070, "bottom": 3860, "left": 640}, {"solidity": 0.9963597176295508, "top": 365, "right": 3090, "bottom": 1995, "left": 655}, {"solidity": 0.9958720495738942, "top": 4065, "right": 3050, "bottom": 5690, "left": 625}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/729944f.jpg"} -{"rects": [{"solidity": 0.9960058963690264, "top": 395, "right": 3030, "bottom": 1995, "left": 615}, {"solidity": 0.9977094852904983, "top": 2225, "right": 3020, "bottom": 3830, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729338f.jpg"} -{"rects": [{"solidity": 0.9960061414543385, "top": 620, "right": 2755, "bottom": 2060, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705856f.jpg"} -{"rects": [{"solidity": 0.9960062621809004, "top": 760, "right": 5710, "bottom": 3190, "left": 4080}, {"solidity": 0.9980346303914978, "top": 760, "right": 3815, "bottom": 3175, "left": 2195}, {"solidity": 0.9967570813071964, "top": 760, "right": 1975, "bottom": 3160, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702345f.jpg"} -{"rects": [{"solidity": 0.9960064854159048, "top": 740, "right": 2030, "bottom": 3170, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716918f.jpg"} -{"rects": [{"solidity": 0.9960066698869163, "top": 415, "right": 3205, "bottom": 2005, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718120f.jpg"} -{"rects": [{"solidity": 0.996006983736946, "top": 830, "right": 2165, "bottom": 3245, "left": 535}, {"solidity": 0.9952023034190557, "top": 880, "right": 5560, "bottom": 3290, "left": 3950}, {"solidity": 0.9957473519542791, "top": 855, "right": 3870, "bottom": 3260, "left": 2260}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709207f.jpg"} -{"rects": [{"solidity": 0.9960070181675735, "top": 690, "right": 5730, "bottom": 3090, "left": 4120}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711189f.jpg"} -{"rects": [{"solidity": 0.9960070509636642, "top": 425, "right": 3220, "bottom": 2035, "left": 805}, {"solidity": 0.9982037798719217, "top": 2225, "right": 3225, "bottom": 3830, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723558f.jpg"} -{"rects": [{"solidity": 0.9960071472065004, "top": 455, "right": 3165, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/702827f.jpg"} -{"rects": [{"solidity": 0.9960073454605949, "top": 670, "right": 2370, "bottom": 3105, "left": 725}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707127f.jpg"} -{"rects": [{"solidity": 0.9960073680454428, "top": 825, "right": 3950, "bottom": 3260, "left": 2300}, {"solidity": 0.9963712757830405, "top": 825, "right": 2070, "bottom": 3240, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712257f.jpg"} -{"rects": [{"solidity": 0.9960073777396434, "top": 325, "right": 3210, "bottom": 1980, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700082f.jpg"} -{"rects": [{"solidity": 0.9960073930091171, "top": 2045, "right": 2790, "bottom": 3485, "left": 945}, {"solidity": 0.995267881163765, "top": 560, "right": 5270, "bottom": 2000, "left": 3435}, {"solidity": 0.9962479045459027, "top": 585, "right": 2770, "bottom": 1990, "left": 940}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705905f.jpg"} -{"rects": [{"solidity": 0.9960075279361966, "top": 775, "right": 3785, "bottom": 3215, "left": 2140}, {"solidity": 0.9973960999078718, "top": 765, "right": 1940, "bottom": 3180, "left": 310}, {"solidity": 0.9970864709799703, "top": 805, "right": 5615, "bottom": 3220, "left": 3975}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730788f.jpg"} -{"rects": [{"solidity": 0.9960075310303383, "top": 2270, "right": 3035, "bottom": 3905, "left": 605}, {"solidity": 0.998441962292275, "top": 4115, "right": 3010, "bottom": 5740, "left": 600}, {"solidity": 0.996516601830479, "top": 440, "right": 3015, "bottom": 2060, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726682f.jpg"} -{"rects": [{"solidity": 0.9960076197794105, "top": 770, "right": 2030, "bottom": 3210, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700203f.jpg"} -{"rects": [{"solidity": 0.9960077969180838, "top": 2200, "right": 3050, "bottom": 3850, "left": 615}, {"solidity": 0.9963777280539612, "top": 380, "right": 3080, "bottom": 2010, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707590f.jpg"} -{"rects": [{"solidity": 0.996007939230895, "top": 2195, "right": 3350, "bottom": 3835, "left": 930}, {"solidity": 0.9959564531215346, "top": 370, "right": 3365, "bottom": 2010, "left": 935}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704200f.jpg"} -{"rects": [{"solidity": 0.9960080167324716, "top": 445, "right": 5095, "bottom": 3465, "left": 1280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732221f.jpg"} -{"rects": [{"solidity": 0.9960080359406797, "top": 445, "right": 3195, "bottom": 2065, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720347f.jpg"} -{"rects": [{"solidity": 0.9960080756171423, "top": 395, "right": 3215, "bottom": 1990, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720551f.jpg"} -{"rects": [{"solidity": 0.996008106021616, "top": 460, "right": 3145, "bottom": 2095, "left": 725}, {"solidity": 1.0, "top": 4800, "right": 3835, "bottom": 6010, "left": 2830}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710848f.jpg"} -{"rects": [{"solidity": 0.9960081291409877, "top": 415, "right": 3000, "bottom": 2010, "left": 605}, {"solidity": 0.9978093575999335, "top": 2250, "right": 3000, "bottom": 3835, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728693f.jpg"} -{"rects": [{"solidity": 0.996008219528262, "top": 515, "right": 3240, "bottom": 2120, "left": 835}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720849f.jpg"} -{"rects": [{"solidity": 0.9960082596388604, "top": 825, "right": 2060, "bottom": 3290, "left": 415}, {"solidity": 0.9952985008427215, "top": 865, "right": 3930, "bottom": 3295, "left": 2285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710196f.jpg"} -{"rects": [{"solidity": 0.996008743366712, "top": 895, "right": 3890, "bottom": 3315, "left": 2260}, {"solidity": 0.9970126320162755, "top": 895, "right": 2015, "bottom": 3285, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728493f.jpg"} -{"rects": [{"solidity": 0.9960087819692374, "top": 2280, "right": 3140, "bottom": 3900, "left": 710}, {"solidity": 0.9980509862009823, "top": 440, "right": 3145, "bottom": 2045, "left": 730}, {"solidity": 0.9931328709618543, "top": 4110, "right": 3115, "bottom": 5725, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734210f.jpg"} -{"rects": [{"solidity": 0.9960088502266802, "top": 735, "right": 2025, "bottom": 3150, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728231f.jpg"} -{"rects": [{"solidity": 0.9960091497542221, "top": 415, "right": 3125, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/729318f.jpg"} -{"rects": [{"solidity": 0.9960096654769558, "top": 790, "right": 3830, "bottom": 3225, "left": 2175}, {"solidity": 0.9968975768547276, "top": 830, "right": 1945, "bottom": 3225, "left": 355}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724701f.jpg"} -{"rects": [{"solidity": 0.9960099477132194, "top": 2280, "right": 3110, "bottom": 3900, "left": 685}, {"solidity": 0.9975695600321904, "top": 415, "right": 3110, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730652f.jpg"} -{"rects": [{"solidity": 0.9960100901042382, "top": 2210, "right": 2795, "bottom": 3640, "left": 990}, {"solidity": 0.9945291109929589, "top": 2220, "right": 4965, "bottom": 3620, "left": 3140}, {"solidity": 0.9951249238269348, "top": 645, "right": 4965, "bottom": 2030, "left": 3145}, {"solidity": 0.9964432408946462, "top": 645, "right": 2795, "bottom": 2025, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727299f.jpg"} -{"rects": [{"solidity": 0.9960101968797033, "top": 770, "right": 3935, "bottom": 3195, "left": 2320}, {"solidity": 0.9949393892299324, "top": 780, "right": 2065, "bottom": 3195, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716912f.jpg"} -{"rects": [{"solidity": 0.9960102004583751, "top": 365, "right": 3160, "bottom": 1990, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719438f.jpg"} -{"rects": [{"solidity": 0.9960104566693031, "top": 790, "right": 2070, "bottom": 3215, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719485f.jpg"} -{"rects": [{"solidity": 0.9960106809545982, "top": 505, "right": 5125, "bottom": 3700, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701846f.jpg"} -{"rects": [{"solidity": 0.9960107586598383, "top": 550, "right": 4910, "bottom": 3505, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716868f.jpg"} -{"rects": [{"solidity": 0.9960108013186886, "top": 765, "right": 2005, "bottom": 3160, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706301f.jpg"} -{"rects": [{"solidity": 0.9960111240928763, "top": 790, "right": 2015, "bottom": 3190, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713441f.jpg"} -{"rects": [{"solidity": 0.996011127022951, "top": 785, "right": 3910, "bottom": 3240, "left": 2255}, {"solidity": 0.996358808906079, "top": 775, "right": 2045, "bottom": 3215, "left": 410}, {"solidity": 0.9942465089999193, "top": 815, "right": 5745, "bottom": 3250, "left": 4120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724719f.jpg"} -{"rects": [{"solidity": 0.9960112006766542, "top": 2200, "right": 3295, "bottom": 3825, "left": 865}, {"solidity": 0.997166636581655, "top": 385, "right": 3295, "bottom": 1995, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725016f.jpg"} -{"rects": [{"solidity": 0.9960112276554882, "top": 815, "right": 2040, "bottom": 3215, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723740f.jpg"} -{"rects": [{"solidity": 0.9960112959058848, "top": 425, "right": 3210, "bottom": 2040, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709610f.jpg"} -{"rects": [{"solidity": 0.9960114640554096, "top": 2120, "right": 2785, "bottom": 3560, "left": 945}, {"solidity": 0.9950852322932239, "top": 615, "right": 2800, "bottom": 2060, "left": 955}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705251f.jpg"} -{"rects": [{"solidity": 0.9960115580780493, "top": 435, "right": 3110, "bottom": 2045, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729030f.jpg"} -{"rects": [{"solidity": 0.9960115859405531, "top": 290, "right": 1890, "bottom": 2095, "left": 665}], "shape": {"h": 3020, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/715748f.jpg"} -{"rects": [{"solidity": 0.996012590808326, "top": 2460, "right": 3445, "bottom": 4405, "left": 685}, {"solidity": 0.9970635517088636, "top": 420, "right": 3405, "bottom": 2300, "left": 695}, {"solidity": 0.99601111222802, "top": 4445, "right": 3030, "bottom": 5860, "left": 1070}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719630f.jpg"} -{"rects": [{"solidity": 0.9960126948048803, "top": 430, "right": 3120, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/728871f.jpg"} -{"rects": [{"solidity": 0.9960126983284515, "top": 405, "right": 3320, "bottom": 1990, "left": 920}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725850f.jpg"} -{"rects": [{"solidity": 0.9960127305954518, "top": 455, "right": 3200, "bottom": 2065, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712558f.jpg"} -{"rects": [{"solidity": 0.9960128658013289, "top": 355, "right": 3345, "bottom": 2275, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724712f.jpg"} -{"rects": [{"solidity": 0.9960130609940725, "top": 2320, "right": 3050, "bottom": 3970, "left": 625}, {"solidity": 0.9958101506858615, "top": 420, "right": 3060, "bottom": 2060, "left": 635}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700549f.jpg"} -{"rects": [{"solidity": 0.9960131039186866, "top": 355, "right": 3070, "bottom": 1990, "left": 630}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729845f.jpg"} -{"rects": [{"solidity": 0.9960132392314125, "top": 940, "right": 3210, "bottom": 2895, "left": 435}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702309f.jpg"} -{"rects": [{"solidity": 0.9960132494991769, "top": 410, "right": 3235, "bottom": 2020, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719667f.jpg"} -{"rects": [{"solidity": 0.9960134372706433, "top": 810, "right": 2020, "bottom": 3225, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707659f.jpg"} -{"rects": [{"solidity": 0.996013630602902, "top": 415, "right": 3145, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707496f.jpg"} -{"rects": [{"solidity": 0.9960138707515932, "top": 575, "right": 2775, "bottom": 1995, "left": 950}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703252f.jpg"} -{"rects": [{"solidity": 0.9960139437693732, "top": 460, "right": 2830, "bottom": 1885, "left": 1035}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704221f.jpg"} -{"rects": [{"solidity": 0.9960139835171077, "top": 365, "right": 3025, "bottom": 1990, "left": 610}, {"solidity": 0.9952159636764004, "top": 2245, "right": 3010, "bottom": 3865, "left": 595}, {"solidity": 0.9926187594347962, "top": 4110, "right": 2980, "bottom": 5690, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728442f.jpg"} -{"rects": [{"solidity": 0.9960141563984196, "top": 410, "right": 3240, "bottom": 2055, "left": 805}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702194f.jpg"} -{"rects": [{"solidity": 0.9960141588540056, "top": 440, "right": 3195, "bottom": 2065, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726849f.jpg"} -{"rects": [{"solidity": 0.9960142458567443, "top": 790, "right": 3860, "bottom": 3205, "left": 2230}, {"solidity": 0.9962771644617346, "top": 775, "right": 5760, "bottom": 3205, "left": 4130}, {"solidity": 0.9969582092829511, "top": 790, "right": 1940, "bottom": 3210, "left": 325}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723351f.jpg"} -{"rects": [{"solidity": 0.9960147864716755, "top": 420, "right": 3125, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710821f.jpg"} -{"rects": [{"solidity": 0.9960148229533496, "top": 370, "right": 3460, "bottom": 2015, "left": 1020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707137f.jpg"} -{"rects": [{"solidity": 0.9960149179947471, "top": 765, "right": 2050, "bottom": 3135, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712234f.jpg"} -{"rects": [{"solidity": 0.9960150012912788, "top": 1090, "right": 3390, "bottom": 4865, "left": 410}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723729f.jpg"} -{"rects": [{"solidity": 0.996015186663056, "top": 580, "right": 5000, "bottom": 3620, "left": 1200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717133f.jpg"} -{"rects": [{"solidity": 0.9960152115845176, "top": 2195, "right": 3240, "bottom": 3765, "left": 860}, {"solidity": 0.9953673846320076, "top": 360, "right": 3255, "bottom": 1935, "left": 885}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/701015f.jpg"} -{"rects": [{"solidity": 0.996015323706902, "top": 840, "right": 3890, "bottom": 3260, "left": 2240}, {"solidity": 0.9955432753724343, "top": 830, "right": 5760, "bottom": 3260, "left": 4100}, {"solidity": 0.9960109578507234, "top": 870, "right": 2035, "bottom": 3295, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726657f.jpg"} -{"rects": [{"solidity": 0.996015483065803, "top": 2230, "right": 3115, "bottom": 3840, "left": 700}, {"solidity": 0.9960822172336156, "top": 365, "right": 3105, "bottom": 1955, "left": 705}, {"solidity": 0.9942076968795436, "top": 4080, "right": 3095, "bottom": 5670, "left": 720}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724147f.jpg"} -{"rects": [{"solidity": 0.9960155374665405, "top": 795, "right": 3875, "bottom": 3215, "left": 2260}, {"solidity": 0.9964168823322251, "top": 790, "right": 2075, "bottom": 3205, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709654f.jpg"} -{"rects": [{"solidity": 0.9960157808874475, "top": 455, "right": 3275, "bottom": 2070, "left": 865}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727779f.jpg"} -{"rects": [{"solidity": 0.9960159109192022, "top": 380, "right": 3075, "bottom": 2015, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729174f.jpg"} -{"rects": [{"solidity": 0.9960159362549801, "top": 515, "right": 3430, "bottom": 2140, "left": 1000}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700510f.jpg"} -{"rects": [{"solidity": 0.9960161291700808, "top": 445, "right": 5070, "bottom": 3715, "left": 1000}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709576f.jpg"} -{"rects": [{"solidity": 0.9960161449245948, "top": 375, "right": 3145, "bottom": 1975, "left": 740}, {"solidity": 0.9963196861943432, "top": 2185, "right": 3115, "bottom": 3780, "left": 730}, {"solidity": 0.9939760037500374, "top": 3985, "right": 3115, "bottom": 5590, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719384f.jpg"} -{"rects": [{"solidity": 0.9960161992662088, "top": 750, "right": 3280, "bottom": 2615, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714903f.jpg"} -{"rects": [{"solidity": 0.996016218075888, "top": 2285, "right": 3180, "bottom": 3910, "left": 745}, {"solidity": 0.9949714502861523, "top": 450, "right": 3185, "bottom": 2065, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732123f.jpg"} -{"rects": [{"solidity": 0.9960162306473946, "top": 475, "right": 3190, "bottom": 2105, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707461f.jpg"} -{"rects": [{"solidity": 0.9960163080378547, "top": 2245, "right": 3175, "bottom": 3870, "left": 755}, {"solidity": 0.9965206098140126, "top": 420, "right": 3180, "bottom": 2040, "left": 765}, {"solidity": 0.9970170417418124, "top": 4175, "right": 3155, "bottom": 5765, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730756f.jpg"} -{"rects": [{"solidity": 0.9960164115888619, "top": 645, "right": 3230, "bottom": 2235, "left": 835}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709234f.jpg"} -{"rects": [{"solidity": 0.9960165030587566, "top": 690, "right": 3390, "bottom": 4770, "left": 165}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725662f.jpg"} -{"rects": [{"solidity": 0.9960165080082974, "top": 750, "right": 2580, "bottom": 2195, "left": 560}, {"solidity": 0.9917277043287605, "top": 2455, "right": 2565, "bottom": 3905, "left": 555}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508095.jpg"} -{"rects": [{"solidity": 0.9960165876425036, "top": 4080, "right": 3050, "bottom": 5480, "left": 1215}, {"solidity": 0.9949996972571498, "top": 2300, "right": 3080, "bottom": 3700, "left": 1255}, {"solidity": 0.995751350905416, "top": 560, "right": 3075, "bottom": 1905, "left": 1250}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725660f.jpg"} -{"rects": [{"solidity": 0.9960168116219473, "top": 800, "right": 2370, "bottom": 3550, "left": 235}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509045.jpg"} -{"rects": [{"solidity": 0.9960169795643895, "top": 755, "right": 2025, "bottom": 3185, "left": 415}, {"solidity": 0.9953163812263041, "top": 785, "right": 3875, "bottom": 3200, "left": 2240}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731742f.jpg"} -{"rects": [{"solidity": 0.9960170167161136, "top": 795, "right": 2010, "bottom": 3200, "left": 405}, {"solidity": 0.9962531237615493, "top": 805, "right": 3790, "bottom": 3210, "left": 2190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724431f.jpg"} -{"rects": [{"solidity": 0.9960170248879687, "top": 395, "right": 3155, "bottom": 2025, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718718f.jpg"} -{"rects": [{"solidity": 0.9960171872947313, "top": 390, "right": 3165, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700254f.jpg"} -{"rects": [{"solidity": 0.9960172123722014, "top": 2280, "right": 3250, "bottom": 3890, "left": 820}, {"solidity": 0.9982452555407435, "top": 420, "right": 3225, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733130f.jpg"} -{"rects": [{"solidity": 0.9960172239074299, "top": 880, "right": 3885, "bottom": 3250, "left": 2300}, {"solidity": 0.9945323643279222, "top": 870, "right": 5515, "bottom": 3235, "left": 3935}, {"solidity": 0.974177281373726, "top": 890, "right": 2235, "bottom": 3260, "left": 675}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709082f.jpg"} -{"rects": [{"solidity": 0.9960172275778753, "top": 2205, "right": 2940, "bottom": 3610, "left": 1110}, {"solidity": 0.9966912827259047, "top": 455, "right": 2925, "bottom": 1850, "left": 1110}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728079f.jpg"} -{"rects": [{"solidity": 0.9960173115894315, "top": 400, "right": 3255, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704483f.jpg"} -{"rects": [{"solidity": 0.9960173611335875, "top": 495, "right": 3105, "bottom": 3695, "left": 665}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719182f.jpg"} -{"rects": [{"solidity": 0.9960176077246792, "top": 715, "right": 2050, "bottom": 3140, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703710f.jpg"} -{"rects": [{"solidity": 0.9960176596651004, "top": 605, "right": 4910, "bottom": 3630, "left": 1130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713769f.jpg"} -{"rects": [{"solidity": 0.9960179516447027, "top": 300, "right": 3180, "bottom": 1915, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711885f.jpg"} -{"rects": [{"solidity": 0.9960181887908837, "top": 1960, "right": 3325, "bottom": 4000, "left": 495}, {"solidity": 0.994303939496665, "top": 320, "right": 2850, "bottom": 1755, "left": 1000}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721742f.jpg"} -{"rects": [{"solidity": 0.9960182496889257, "top": 790, "right": 5735, "bottom": 3220, "left": 4105}, {"solidity": 0.9967704765867554, "top": 790, "right": 3875, "bottom": 3215, "left": 2250}, {"solidity": 0.9967819452574929, "top": 805, "right": 2010, "bottom": 3220, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732058f.jpg"} -{"rects": [{"solidity": 0.9960182648401826, "top": 700, "right": 3205, "bottom": 2625, "left": 520}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708579f.jpg"} -{"rects": [{"solidity": 0.9960183194897788, "top": 590, "right": 4805, "bottom": 3600, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709948f.jpg"} -{"rects": [{"solidity": 0.9960185778449318, "top": 735, "right": 3855, "bottom": 3165, "left": 2225}, {"solidity": 0.9973268724728837, "top": 730, "right": 2025, "bottom": 3150, "left": 400}, {"solidity": 0.998183368674872, "top": 745, "right": 5705, "bottom": 3160, "left": 4110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719876f.jpg"} -{"rects": [{"solidity": 0.9960186581228797, "top": 2150, "right": 2705, "bottom": 3600, "left": 845}, {"solidity": 0.995652512584832, "top": 655, "right": 5235, "bottom": 2075, "left": 3410}, {"solidity": 0.9946534342959175, "top": 670, "right": 2640, "bottom": 2090, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705893f.jpg"} -{"rects": [{"solidity": 0.9960187723259581, "top": 405, "right": 3175, "bottom": 2035, "left": 745}, {"solidity": 0.99571172472497, "top": 2295, "right": 3190, "bottom": 3925, "left": 765}, {"solidity": 0.9960475606911348, "top": 4160, "right": 3200, "bottom": 5755, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724439f.jpg"} -{"rects": [{"solidity": 0.9960188620902907, "top": 3100, "right": 2830, "bottom": 5535, "left": 1200}, {"solidity": 0.9976356967740684, "top": 320, "right": 2810, "bottom": 2730, "left": 1195}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714041f.jpg"} -{"rects": [{"solidity": 0.9960188780513309, "top": 555, "right": 4880, "bottom": 3635, "left": 1025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724655f.jpg"} -{"rects": [{"solidity": 0.9960188820581701, "top": 865, "right": 2080, "bottom": 3275, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712108f.jpg"} -{"rects": [{"solidity": 0.9960190015259962, "top": 935, "right": 3865, "bottom": 3370, "left": 2215}, {"solidity": 0.9950354700909523, "top": 915, "right": 2000, "bottom": 3330, "left": 355}, {"solidity": 0.9960124742934935, "top": 970, "right": 5725, "bottom": 3385, "left": 4100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702123f.jpg"} -{"rects": [{"solidity": 0.9960190097259063, "top": 670, "right": 3245, "bottom": 2715, "left": 400}, {"solidity": 0.9972571642646413, "top": 3235, "right": 3215, "bottom": 5245, "left": 400}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728713f.jpg"} -{"rects": [{"solidity": 0.9960193760347682, "top": 415, "right": 3235, "bottom": 2035, "left": 820}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/701168f.jpg"} -{"rects": [{"solidity": 0.9960197643778683, "top": 775, "right": 3885, "bottom": 3180, "left": 2270}, {"solidity": 0.9966338267538453, "top": 780, "right": 2025, "bottom": 3175, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714364f.jpg"} -{"rects": [{"solidity": 0.9960197793252853, "top": 705, "right": 3895, "bottom": 3135, "left": 2260}, {"solidity": 0.9985483766444171, "top": 695, "right": 1990, "bottom": 3115, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724382f.jpg"} -{"rects": [{"solidity": 0.9960204268277612, "top": 445, "right": 2915, "bottom": 1855, "left": 1105}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728081f.jpg"} -{"rects": [{"solidity": 0.9960204497995824, "top": 645, "right": 2745, "bottom": 2075, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704594f.jpg"} -{"rects": [{"solidity": 0.9960204918827079, "top": 4010, "right": 3150, "bottom": 5625, "left": 725}, {"solidity": 0.9951013300188104, "top": 490, "right": 3230, "bottom": 2085, "left": 820}, {"solidity": 0.9938833048499068, "top": 2325, "right": 2955, "bottom": 3750, "left": 1100}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727757f.jpg"} -{"rects": [{"solidity": 0.9960205242954419, "top": 1010, "right": 2530, "bottom": 3920, "left": 265}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508023.jpg"} -{"rects": [{"solidity": 0.9960205667822551, "top": 740, "right": 4640, "bottom": 3520, "left": 2745}, {"solidity": 0.9979172255688609, "top": 2160, "right": 2650, "bottom": 3580, "left": 830}, {"solidity": 0.9975859808070573, "top": 700, "right": 2645, "bottom": 2105, "left": 840}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702638f.jpg"} -{"rects": [{"solidity": 0.9960206157776166, "top": 850, "right": 5725, "bottom": 3280, "left": 4095}, {"solidity": 0.9962519611831019, "top": 815, "right": 3850, "bottom": 3235, "left": 2230}, {"solidity": 0.9964617886178861, "top": 815, "right": 2040, "bottom": 3230, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719026f.jpg"} -{"rects": [{"solidity": 0.9960207273934445, "top": 485, "right": 3665, "bottom": 2545, "left": 850}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719210f.jpg"} -{"rects": [{"solidity": 0.9960207299845593, "top": 495, "right": 2145, "bottom": 2595, "left": 675}, {"solidity": 0.9963877729835177, "top": 515, "right": 3955, "bottom": 2600, "left": 2490}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716082f.jpg"} -{"rects": [{"solidity": 0.9960212243705564, "top": 2235, "right": 3240, "bottom": 3880, "left": 800}, {"solidity": 0.9956209443611702, "top": 370, "right": 3270, "bottom": 2020, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725178f.jpg"} -{"rects": [{"solidity": 0.996021245774988, "top": 580, "right": 2985, "bottom": 1995, "left": 1135}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725522f.jpg"} -{"rects": [{"solidity": 0.9960212734975765, "top": 425, "right": 3195, "bottom": 3855, "left": 540}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714127f.jpg"} -{"rects": [{"solidity": 0.9960213522902934, "top": 405, "right": 3190, "bottom": 2040, "left": 740}, {"solidity": 0.9965270987977817, "top": 2150, "right": 3140, "bottom": 3585, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710601f.jpg"} -{"rects": [{"solidity": 0.9960214290075747, "top": 410, "right": 3170, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733840f.jpg"} -{"rects": [{"solidity": 0.9960215541119001, "top": 745, "right": 3205, "bottom": 2685, "left": 485}, {"solidity": 0.9944915128860132, "top": 3260, "right": 3190, "bottom": 5170, "left": 490}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/717770f.jpg"} -{"rects": [{"solidity": 0.9960216695515857, "top": 590, "right": 3375, "bottom": 2630, "left": 320}, {"solidity": 0.9958913682978758, "top": 2685, "right": 3075, "bottom": 4300, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720897f.jpg"} -{"rects": [{"solidity": 0.9960217367705188, "top": 2260, "right": 3140, "bottom": 3905, "left": 700}, {"solidity": 0.9953308172523879, "top": 415, "right": 3165, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734178f.jpg"} -{"rects": [{"solidity": 0.99602197872819, "top": 2245, "right": 3205, "bottom": 3870, "left": 775}, {"solidity": 0.9959837804036848, "top": 445, "right": 3195, "bottom": 2065, "left": 775}, {"solidity": 0.9973970081822224, "top": 4075, "right": 3195, "bottom": 5680, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719786f.jpg"} -{"rects": [{"solidity": 0.9960220681290867, "top": 835, "right": 3875, "bottom": 3225, "left": 2275}, {"solidity": 0.9953692709570173, "top": 825, "right": 5510, "bottom": 3230, "left": 3910}, {"solidity": 0.9958053384789619, "top": 815, "right": 2250, "bottom": 3210, "left": 660}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708635f.jpg"} -{"rects": [{"solidity": 0.9960224306727601, "top": 375, "right": 3165, "bottom": 2005, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706917f.jpg"} -{"rects": [{"solidity": 0.9960225196529567, "top": 785, "right": 2015, "bottom": 3220, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728311f.jpg"} -{"rects": [{"solidity": 0.9960227911082578, "top": 375, "right": 3090, "bottom": 2005, "left": 655}, {"solidity": 0.9951534629806043, "top": 4105, "right": 3065, "bottom": 5740, "left": 630}, {"solidity": 0.9966953414975304, "top": 2260, "right": 3070, "bottom": 3875, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729635f.jpg"} -{"rects": [{"solidity": 0.9960228305758292, "top": 455, "right": 3145, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703867f.jpg"} -{"rects": [{"solidity": 0.9960228345277848, "top": 455, "right": 3170, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720436f.jpg"} -{"rects": [{"solidity": 0.9960229479037491, "top": 3890, "right": 3260, "bottom": 5570, "left": 800}, {"solidity": 0.9966948767411484, "top": 2180, "right": 3215, "bottom": 3815, "left": 775}, {"solidity": 0.9974389062435054, "top": 465, "right": 3210, "bottom": 2090, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734089f.jpg"} -{"rects": [{"solidity": 0.9960229826180662, "top": 2055, "right": 2660, "bottom": 3480, "left": 825}, {"solidity": 0.9969968181163845, "top": 625, "right": 2640, "bottom": 2040, "left": 845}, {"solidity": 0.9961378551339013, "top": 650, "right": 5170, "bottom": 2050, "left": 3395}, {"solidity": 0.9971209560286767, "top": 2065, "right": 5150, "bottom": 3465, "left": 3405}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702778f.jpg"} -{"rects": [{"solidity": 0.9960231532276488, "top": 2205, "right": 3105, "bottom": 3830, "left": 670}, {"solidity": 0.9955921920678861, "top": 365, "right": 3105, "bottom": 1985, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701236f.jpg"} -{"rects": [{"solidity": 0.9960232876881709, "top": 925, "right": 3480, "bottom": 5010, "left": 245}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709022f.jpg"} -{"rects": [{"solidity": 0.9960238238941985, "top": 775, "right": 2060, "bottom": 3165, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719187f.jpg"} -{"rects": [{"solidity": 0.9960239356432374, "top": 550, "right": 3120, "bottom": 2150, "left": 720}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723146f.jpg"} -{"rects": [{"solidity": 0.996024146039904, "top": 2130, "right": 2690, "bottom": 3555, "left": 860}, {"solidity": 0.995151899042561, "top": 635, "right": 2710, "bottom": 2060, "left": 880}, {"solidity": 0.9998556172363148, "top": 660, "right": 5245, "bottom": 2045, "left": 3420}, {"solidity": 0.9979906025147914, "top": 2120, "right": 5230, "bottom": 3510, "left": 3445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704365f.jpg"} -{"rects": [{"solidity": 0.996024152183221, "top": 2205, "right": 2860, "bottom": 3705, "left": 930}, {"solidity": 0.9981650147334583, "top": 395, "right": 2850, "bottom": 1865, "left": 930}, {"solidity": 0.9954298787563965, "top": 4040, "right": 2855, "bottom": 5265, "left": 965}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/700801f.jpg"} -{"rects": [{"solidity": 0.9960242460025863, "top": 885, "right": 3945, "bottom": 3105, "left": 2170}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732033f.jpg"} -{"rects": [{"solidity": 0.9960243653668226, "top": 4100, "right": 3145, "bottom": 5770, "left": 690}, {"solidity": 0.9959392337593033, "top": 2230, "right": 3190, "bottom": 3915, "left": 730}, {"solidity": 0.9956416077766763, "top": 395, "right": 3205, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704529f.jpg"} -{"rects": [{"solidity": 0.9960244223291713, "top": 2240, "right": 3130, "bottom": 3855, "left": 710}, {"solidity": 0.9952564463042292, "top": 410, "right": 3120, "bottom": 2005, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734814f.jpg"} -{"rects": [{"solidity": 0.9960245208070415, "top": 855, "right": 5755, "bottom": 3285, "left": 4135}, {"solidity": 0.9982250839684272, "top": 850, "right": 3900, "bottom": 3270, "left": 2295}, {"solidity": 0.9962666511245378, "top": 830, "right": 2025, "bottom": 3255, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734657f.jpg"} -{"rects": [{"solidity": 0.9960245283999376, "top": 2265, "right": 3180, "bottom": 3870, "left": 765}, {"solidity": 0.996990012313586, "top": 400, "right": 3195, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702908f.jpg"} -{"rects": [{"solidity": 0.996025274521466, "top": 805, "right": 3930, "bottom": 3225, "left": 2275}, {"solidity": 0.9962008002024532, "top": 795, "right": 5760, "bottom": 3220, "left": 4125}, {"solidity": 0.9967357228273165, "top": 825, "right": 2060, "bottom": 3230, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720426f.jpg"} -{"rects": [{"solidity": 0.9960254013280897, "top": 380, "right": 3100, "bottom": 2005, "left": 675}, {"solidity": 0.9967938048034751, "top": 2265, "right": 3075, "bottom": 3885, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726612f.jpg"} -{"rects": [{"solidity": 0.9960256254359973, "top": 425, "right": 3115, "bottom": 2060, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704083f.jpg"} -{"rects": [{"solidity": 0.9960256939048916, "top": 395, "right": 3090, "bottom": 2045, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729844f.jpg"} -{"rects": [{"solidity": 0.9960257393173314, "top": 795, "right": 2095, "bottom": 3200, "left": 490}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709660f.jpg"} -{"rects": [{"solidity": 0.9960257797611637, "top": 365, "right": 3100, "bottom": 2005, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701807f.jpg"} -{"rects": [{"solidity": 0.996025973723715, "top": 580, "right": 1555, "bottom": 2380, "left": 345}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716442f.jpg"} -{"rects": [{"solidity": 0.9960259930206302, "top": 2240, "right": 3195, "bottom": 3880, "left": 775}, {"solidity": 0.9994625302123169, "top": 370, "right": 3185, "bottom": 1975, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700092f.jpg"} -{"rects": [{"solidity": 0.996026244361563, "top": 410, "right": 3105, "bottom": 2015, "left": 695}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/728983f.jpg"} -{"rects": [{"solidity": 0.9960263772860157, "top": 2195, "right": 3230, "bottom": 3855, "left": 770}, {"solidity": 0.9954121066371738, "top": 375, "right": 3230, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733907f.jpg"} -{"rects": [{"solidity": 0.996026391007027, "top": 420, "right": 3170, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/732154f.jpg"} -{"rects": [{"solidity": 0.9960266151646512, "top": 2270, "right": 3240, "bottom": 3875, "left": 830}, {"solidity": 0.9966497994528116, "top": 475, "right": 3225, "bottom": 2070, "left": 835}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714052f.jpg"} -{"rects": [{"solidity": 0.9960266771081399, "top": 375, "right": 3185, "bottom": 2005, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729823f.jpg"} -{"rects": [{"solidity": 0.9960268693016942, "top": 400, "right": 3180, "bottom": 2035, "left": 745}, {"solidity": 0.9958681675129843, "top": 2260, "right": 3155, "bottom": 3885, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705864f.jpg"} -{"rects": [{"solidity": 0.996027144615166, "top": 675, "right": 2090, "bottom": 3090, "left": 465}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720175f.jpg"} -{"rects": [{"solidity": 0.9960271821028854, "top": 2545, "right": 3230, "bottom": 4200, "left": 790}, {"solidity": 0.9965066032549637, "top": 715, "right": 3235, "bottom": 2345, "left": 810}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/706488f.jpg"} -{"rects": [{"solidity": 0.9960272307002087, "top": 490, "right": 3160, "bottom": 2105, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720438f.jpg"} -{"rects": [{"solidity": 0.996027349133854, "top": 615, "right": 2325, "bottom": 3390, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717476f.jpg"} -{"rects": [{"solidity": 0.9960273706057855, "top": 400, "right": 3185, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707184f.jpg"} -{"rects": [{"solidity": 0.9960274714872337, "top": 465, "right": 3120, "bottom": 2080, "left": 705}, {"solidity": 0.9958945577334002, "top": 2235, "right": 3105, "bottom": 3840, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713114f.jpg"} -{"rects": [{"solidity": 0.9960275254046158, "top": 525, "right": 3045, "bottom": 2165, "left": 605}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701512f.jpg"} -{"rects": [{"solidity": 0.9960276470663249, "top": 345, "right": 3180, "bottom": 1995, "left": 745}, {"solidity": 0.9954101087198265, "top": 2245, "right": 3150, "bottom": 3895, "left": 715}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717607f.jpg"} -{"rects": [{"solidity": 0.9960276806546065, "top": 800, "right": 2150, "bottom": 3210, "left": 540}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718509f.jpg"} -{"rects": [{"solidity": 0.996027853584158, "top": 390, "right": 3220, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724912f.jpg"} -{"rects": [{"solidity": 0.9960279334291959, "top": 415, "right": 3130, "bottom": 2040, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719780f.jpg"} -{"rects": [{"solidity": 0.9960279466942683, "top": 760, "right": 4015, "bottom": 3185, "left": 2395}, {"solidity": 0.9973144904511523, "top": 770, "right": 2085, "bottom": 3160, "left": 500}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721358f.jpg"} -{"rects": [{"solidity": 0.9960279530151448, "top": 650, "right": 3260, "bottom": 2470, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707881f.jpg"} -{"rects": [{"solidity": 0.9960280809888643, "top": 2125, "right": 2765, "bottom": 3540, "left": 900}, {"solidity": 0.9959387967825044, "top": 610, "right": 2715, "bottom": 2065, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706255f.jpg"} -{"rects": [{"solidity": 0.9960281854113803, "top": 925, "right": 2190, "bottom": 3345, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707759f.jpg"} -{"rects": [{"solidity": 0.9960282170650582, "top": 2240, "right": 3050, "bottom": 3910, "left": 600}, {"solidity": 0.995465890987894, "top": 4110, "right": 3015, "bottom": 5755, "left": 595}, {"solidity": 0.9956306935709238, "top": 390, "right": 3080, "bottom": 2025, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719557f.jpg"} -{"rects": [{"solidity": 0.9960286832432873, "top": 295, "right": 3865, "bottom": 2750, "left": 840}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509033.jpg"} -{"rects": [{"solidity": 0.9960286976806467, "top": 1395, "right": 3380, "bottom": 4815, "left": 250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720163f.jpg"} -{"rects": [{"solidity": 0.9960287005567129, "top": 2545, "right": 2450, "bottom": 4035, "left": 350}, {"solidity": 0.998051320680564, "top": 675, "right": 2445, "bottom": 2150, "left": 355}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716056f.jpg"} -{"rects": [{"solidity": 0.9960287928556765, "top": 885, "right": 3870, "bottom": 3320, "left": 2250}, {"solidity": 0.996096703523953, "top": 885, "right": 2015, "bottom": 3300, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709358f.jpg"} -{"rects": [{"solidity": 0.9960288393118748, "top": 740, "right": 2600, "bottom": 2080, "left": 800}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726297f.jpg"} -{"rects": [{"solidity": 0.996029436490384, "top": 400, "right": 3075, "bottom": 2015, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729036f.jpg"} -{"rects": [{"solidity": 0.9960295204833406, "top": 2265, "right": 3170, "bottom": 3905, "left": 735}, {"solidity": 0.9957540749809519, "top": 440, "right": 3170, "bottom": 2050, "left": 760}, {"solidity": 0.994718622112157, "top": 4110, "right": 3130, "bottom": 5725, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734013f.jpg"} -{"rects": [{"solidity": 0.9960296615221994, "top": 455, "right": 3150, "bottom": 2070, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729108f.jpg"} -{"rects": [{"solidity": 0.9960297734073827, "top": 310, "right": 3145, "bottom": 1930, "left": 780}, {"solidity": 0.9993565537016259, "top": 2185, "right": 2935, "bottom": 3765, "left": 955}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724715f.jpg"} -{"rects": [{"solidity": 0.9960298594307692, "top": 2300, "right": 2480, "bottom": 3860, "left": 205}, {"solidity": 0.9984906481867822, "top": 485, "right": 2485, "bottom": 2010, "left": 210}], "shape": {"h": 4645, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715794f.jpg"} -{"rects": [{"solidity": 0.9960299179750982, "top": 455, "right": 3185, "bottom": 2090, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703393f.jpg"} -{"rects": [{"solidity": 0.9960300319829942, "top": 650, "right": 2775, "bottom": 2080, "left": 930}, {"solidity": 0.9966784305584389, "top": 605, "right": 5295, "bottom": 2055, "left": 3530}, {"solidity": 0.9945639717386322, "top": 2090, "right": 2765, "bottom": 3535, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704165f.jpg"} -{"rects": [{"solidity": 0.9960301015004703, "top": 785, "right": 2030, "bottom": 3185, "left": 410}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732344f.jpg"} -{"rects": [{"solidity": 0.9960301044849811, "top": 795, "right": 2060, "bottom": 3180, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722356f.jpg"} -{"rects": [{"solidity": 0.9960301745370952, "top": 340, "right": 3380, "bottom": 2260, "left": 650}, {"solidity": 0.995575703210098, "top": 4195, "right": 3200, "bottom": 5835, "left": 765}, {"solidity": 0.9941476113510506, "top": 2430, "right": 3195, "bottom": 4040, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703663f.jpg"} -{"rects": [{"solidity": 0.9960301973705256, "top": 2265, "right": 3215, "bottom": 3900, "left": 775}, {"solidity": 0.996309143083508, "top": 405, "right": 3180, "bottom": 2040, "left": 760}, {"solidity": 0.9955692482577329, "top": 4130, "right": 3240, "bottom": 5750, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733946f.jpg"} -{"rects": [{"solidity": 0.9960302860130517, "top": 705, "right": 2850, "bottom": 2140, "left": 1030}, {"solidity": 0.9949906956179518, "top": 660, "right": 5230, "bottom": 2100, "left": 3410}, {"solidity": 0.9947213905198896, "top": 2190, "right": 2825, "bottom": 3620, "left": 1005}, {"solidity": 0.9937973477200407, "top": 2155, "right": 5180, "bottom": 3505, "left": 3430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719743f.jpg"} -{"rects": [{"solidity": 0.9960303962966958, "top": 460, "right": 2980, "bottom": 2010, "left": 1015}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701770f.jpg"} -{"rects": [{"solidity": 0.9960305501819466, "top": 705, "right": 2405, "bottom": 3120, "left": 765}, {"solidity": 0.9961031507412166, "top": 510, "right": 5240, "bottom": 2135, "left": 2840}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714995f.jpg"} -{"rects": [{"solidity": 0.9960306624289531, "top": 505, "right": 3315, "bottom": 3905, "left": 675}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714270f.jpg"} -{"rects": [{"solidity": 0.9960308702980525, "top": 580, "right": 3045, "bottom": 2220, "left": 610}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702252f.jpg"} -{"rects": [{"solidity": 0.9960309546306074, "top": 445, "right": 3125, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720450f.jpg"} -{"rects": [{"solidity": 0.9960314411375061, "top": 635, "right": 4955, "bottom": 3485, "left": 1160}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702442f.jpg"} -{"rects": [{"solidity": 0.9960315860408591, "top": 1120, "right": 3270, "bottom": 2340, "left": 1460}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508201.jpg"} -{"rects": [{"solidity": 0.9960318711035748, "top": 740, "right": 3700, "bottom": 3200, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714933f.jpg"} -{"rects": [{"solidity": 0.9960322649894268, "top": 720, "right": 3300, "bottom": 2630, "left": 620}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714327f.jpg"} -{"rects": [{"solidity": 0.9960322763342943, "top": 2220, "right": 3205, "bottom": 3845, "left": 770}, {"solidity": 0.9973314151206965, "top": 4055, "right": 3200, "bottom": 5670, "left": 775}, {"solidity": 0.9961313832988986, "top": 385, "right": 3195, "bottom": 1990, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734092f.jpg"} -{"rects": [{"solidity": 0.9960323183375478, "top": 390, "right": 3165, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700569f.jpg"} -{"rects": [{"solidity": 0.9960323334255797, "top": 805, "right": 3725, "bottom": 3225, "left": 2105}, {"solidity": 0.9990816580599057, "top": 820, "right": 5650, "bottom": 3235, "left": 4040}, {"solidity": 0.9931778900485275, "top": 915, "right": 1820, "bottom": 3125, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730133f.jpg"} -{"rects": [{"solidity": 0.9960324504138479, "top": 380, "right": 3210, "bottom": 1980, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723816f.jpg"} -{"rects": [{"solidity": 0.9960325746502401, "top": 435, "right": 3230, "bottom": 2040, "left": 820}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727829f.jpg"} -{"rects": [{"solidity": 0.9960326849712013, "top": 725, "right": 3875, "bottom": 3140, "left": 2250}, {"solidity": 0.9962282726336241, "top": 715, "right": 2020, "bottom": 3130, "left": 405}, {"solidity": 0.9952596033330812, "top": 755, "right": 5720, "bottom": 3165, "left": 4110}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718339f.jpg"} -{"rects": [{"solidity": 0.9960326903705539, "top": 845, "right": 3955, "bottom": 3255, "left": 2335}, {"solidity": 0.9955183151520786, "top": 860, "right": 2135, "bottom": 3250, "left": 545}, {"solidity": 0.9940341348319138, "top": 845, "right": 5665, "bottom": 3225, "left": 4080}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708625f.jpg"} -{"rects": [{"solidity": 0.9960329126328417, "top": 650, "right": 3170, "bottom": 2230, "left": 795}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/707747f.jpg"} -{"rects": [{"solidity": 0.9960329267083209, "top": 2245, "right": 2930, "bottom": 3660, "left": 1100}, {"solidity": 0.9964653259396424, "top": 480, "right": 2925, "bottom": 1895, "left": 1130}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725535f.jpg"} -{"rects": [{"solidity": 0.9960329760923331, "top": 410, "right": 3120, "bottom": 2005, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729670f.jpg"} -{"rects": [{"solidity": 0.9960331441247472, "top": 560, "right": 3150, "bottom": 2160, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722631f.jpg"} -{"rects": [{"solidity": 0.996033301153688, "top": 2290, "right": 3145, "bottom": 3920, "left": 700}, {"solidity": 0.9972338497664566, "top": 455, "right": 3145, "bottom": 2075, "left": 705}, {"solidity": 0.9959975104131756, "top": 4115, "right": 3145, "bottom": 5740, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721436f.jpg"} -{"rects": [{"solidity": 0.9960333782926308, "top": 2265, "right": 3215, "bottom": 3900, "left": 780}, {"solidity": 0.9960885318059066, "top": 410, "right": 3220, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729995f.jpg"} -{"rects": [{"solidity": 0.9960334324975209, "top": 2295, "right": 3335, "bottom": 3925, "left": 905}, {"solidity": 0.9897436563216078, "top": 425, "right": 3345, "bottom": 2065, "left": 935}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702501f.jpg"} -{"rects": [{"solidity": 0.9960337008304438, "top": 4045, "right": 2995, "bottom": 5710, "left": 540}, {"solidity": 0.9950198616555525, "top": 2235, "right": 3025, "bottom": 3850, "left": 605}, {"solidity": 0.9925281019074735, "top": 420, "right": 3040, "bottom": 2035, "left": 620}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730626f.jpg"} -{"rects": [{"solidity": 0.9960338145084994, "top": 660, "right": 4950, "bottom": 3450, "left": 1265}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708212f.jpg"} -{"rects": [{"solidity": 0.9960339125578126, "top": 685, "right": 2735, "bottom": 1795, "left": 920}, {"solidity": 0.9945189909386544, "top": 2155, "right": 2715, "bottom": 3285, "left": 935}, {"solidity": 0.994517954809653, "top": 660, "right": 5235, "bottom": 1780, "left": 3450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705122f.jpg"} -{"rects": [{"solidity": 0.9960339753559038, "top": 460, "right": 5030, "bottom": 3720, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711775f.jpg"} -{"rects": [{"solidity": 0.9960342201168523, "top": 1120, "right": 1420, "bottom": 2895, "left": 305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713158f.jpg"} -{"rects": [{"solidity": 0.9960342296619138, "top": 315, "right": 2500, "bottom": 1540, "left": 675}], "shape": {"h": 2965, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/700170f.jpg"} -{"rects": [{"solidity": 0.9960346107309535, "top": 590, "right": 2560, "bottom": 1990, "left": 780}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706101f.jpg"} -{"rects": [{"solidity": 0.9960347774296294, "top": 300, "right": 3145, "bottom": 1930, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714929f.jpg"} -{"rects": [{"solidity": 0.9960348530969598, "top": 615, "right": 2475, "bottom": 3650, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708104f.jpg"} -{"rects": [{"solidity": 0.9960349295960647, "top": 730, "right": 2080, "bottom": 3125, "left": 480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713942f.jpg"} -{"rects": [{"solidity": 0.9960349514065184, "top": 2255, "right": 3175, "bottom": 3890, "left": 745}, {"solidity": 0.9963016753314354, "top": 415, "right": 3185, "bottom": 2045, "left": 760}, {"solidity": 0.9967890575738468, "top": 4105, "right": 3160, "bottom": 5725, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704052f.jpg"} -{"rects": [{"solidity": 0.9960351149520777, "top": 1000, "right": 3380, "bottom": 3555, "left": 1200}], "shape": {"h": 6005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465644.jpg"} -{"rects": [{"solidity": 0.9960351291990074, "top": 655, "right": 5645, "bottom": 3105, "left": 3990}, {"solidity": 0.998901632970451, "top": 665, "right": 3710, "bottom": 3070, "left": 2095}, {"solidity": 0.9954842453139585, "top": 880, "right": 1830, "bottom": 2710, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703285f.jpg"} -{"rects": [{"solidity": 0.9960352366746982, "top": 2205, "right": 3135, "bottom": 3845, "left": 705}, {"solidity": 0.9963906554518412, "top": 4095, "right": 3110, "bottom": 5730, "left": 685}, {"solidity": 0.9905254315085695, "top": 450, "right": 2930, "bottom": 1925, "left": 940}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719067f.jpg"} -{"rects": [{"solidity": 0.9960356555309912, "top": 2075, "right": 2740, "bottom": 3520, "left": 880}, {"solidity": 0.9967179398465168, "top": 630, "right": 2705, "bottom": 2065, "left": 875}, {"solidity": 0.9938642335344903, "top": 2035, "right": 5205, "bottom": 3465, "left": 3360}, {"solidity": 0.9953619788890073, "top": 610, "right": 5240, "bottom": 2040, "left": 3385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703107f.jpg"} -{"rects": [{"solidity": 0.9960360516759978, "top": 660, "right": 5225, "bottom": 2075, "left": 3375}, {"solidity": 0.9974647803306722, "top": 2085, "right": 2740, "bottom": 3490, "left": 935}, {"solidity": 0.9943998628949332, "top": 660, "right": 2720, "bottom": 2065, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726188f.jpg"} -{"rects": [{"solidity": 0.9960362785203839, "top": 1345, "right": 3265, "bottom": 4725, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701478f.jpg"} -{"rects": [{"solidity": 0.9960364049329004, "top": 2275, "right": 3225, "bottom": 3930, "left": 795}, {"solidity": 0.9957514092337754, "top": 415, "right": 3205, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733532f.jpg"} -{"rects": [{"solidity": 0.9960364154332074, "top": 435, "right": 3240, "bottom": 2050, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725218f.jpg"} -{"rects": [{"solidity": 0.996036507880336, "top": 2340, "right": 3115, "bottom": 3975, "left": 685}, {"solidity": 0.9960076058049804, "top": 430, "right": 3145, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718027f.jpg"} -{"rects": [{"solidity": 0.996036554661434, "top": 415, "right": 3195, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723250f.jpg"} -{"rects": [{"solidity": 0.9960365941645583, "top": 375, "right": 3075, "bottom": 2020, "left": 650}, {"solidity": 0.9962038258468823, "top": 2240, "right": 3095, "bottom": 3875, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710811f.jpg"} -{"rects": [{"solidity": 0.996036607598629, "top": 580, "right": 4915, "bottom": 3410, "left": 1240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731139f.jpg"} -{"rects": [{"solidity": 0.9960368363615477, "top": 390, "right": 3185, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714993f.jpg"} -{"rects": [{"solidity": 0.9960368903436208, "top": 3305, "right": 3360, "bottom": 5230, "left": 585}, {"solidity": 0.9946918190265801, "top": 790, "right": 3330, "bottom": 2685, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715271f.jpg"} -{"rects": [{"solidity": 0.9960372524089504, "top": 420, "right": 3030, "bottom": 2040, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729878f.jpg"} -{"rects": [{"solidity": 0.9960376408081287, "top": 4065, "right": 3265, "bottom": 5695, "left": 835}, {"solidity": 0.996589222972322, "top": 330, "right": 3270, "bottom": 1955, "left": 845}, {"solidity": 0.9952525038384695, "top": 2225, "right": 3265, "bottom": 3845, "left": 845}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733267f.jpg"} -{"rects": [{"solidity": 0.9960376899540397, "top": 4090, "right": 3025, "bottom": 5715, "left": 585}, {"solidity": 0.99816048411692, "top": 360, "right": 3050, "bottom": 1980, "left": 630}, {"solidity": 0.9951579284912618, "top": 2220, "right": 3045, "bottom": 3860, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701863f.jpg"} -{"rects": [{"solidity": 0.9960383980311278, "top": 785, "right": 2010, "bottom": 3245, "left": 365}, {"solidity": 0.9926836064247643, "top": 670, "right": 3255, "bottom": 2105, "left": 2270}, {"solidity": 0.9938799256062814, "top": 665, "right": 4505, "bottom": 2065, "left": 3495}, {"solidity": 0.9933705853632073, "top": 1350, "right": 5600, "bottom": 2655, "left": 4675}, {"solidity": 0.9962010241753007, "top": 2280, "right": 4370, "bottom": 3550, "left": 3530}, {"solidity": 0.9941264653117396, "top": 2245, "right": 3155, "bottom": 3485, "left": 2310}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712959f.jpg"} -{"rects": [{"solidity": 0.9960384269374116, "top": 735, "right": 3865, "bottom": 3150, "left": 2230}, {"solidity": 0.9961482815162525, "top": 740, "right": 2045, "bottom": 3155, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706923f.jpg"} -{"rects": [{"solidity": 0.9960384614144853, "top": 705, "right": 3875, "bottom": 3130, "left": 2250}, {"solidity": 0.9965938579567672, "top": 730, "right": 2015, "bottom": 3145, "left": 395}, {"solidity": 0.9968795823042537, "top": 705, "right": 5730, "bottom": 3120, "left": 4120}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731159f.jpg"} -{"rects": [{"solidity": 0.9960386958079541, "top": 475, "right": 3270, "bottom": 3885, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714823f.jpg"} -{"rects": [{"solidity": 0.9960387253697136, "top": 385, "right": 3080, "bottom": 2040, "left": 645}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702557f.jpg"} -{"rects": [{"solidity": 0.9960387676023665, "top": 2265, "right": 3145, "bottom": 3905, "left": 710}, {"solidity": 0.9961755870667657, "top": 445, "right": 3145, "bottom": 2070, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701521f.jpg"} -{"rects": [{"solidity": 0.9960388342028836, "top": 395, "right": 3065, "bottom": 2020, "left": 640}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728993f.jpg"} -{"rects": [{"solidity": 0.9960388560138689, "top": 365, "right": 2940, "bottom": 2010, "left": 525}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704982f.jpg"} -{"rects": [{"solidity": 0.9960388673901552, "top": 785, "right": 2105, "bottom": 3185, "left": 495}, {"solidity": 0.9948238997051715, "top": 790, "right": 3950, "bottom": 3190, "left": 2365}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731671f.jpg"} -{"rects": [{"solidity": 0.9960389050121579, "top": 435, "right": 3225, "bottom": 2040, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725188f.jpg"} -{"rects": [{"solidity": 0.9960391511533421, "top": 510, "right": 3325, "bottom": 2530, "left": 280}, {"solidity": 0.9968602825745683, "top": 2735, "right": 3020, "bottom": 4350, "left": 615}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720012f.jpg"} -{"rects": [{"solidity": 0.9960394011301364, "top": 510, "right": 3345, "bottom": 2415, "left": 630}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714652f.jpg"} -{"rects": [{"solidity": 0.9960398155475639, "top": 815, "right": 2125, "bottom": 3195, "left": 540}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711575f.jpg"} -{"rects": [{"solidity": 0.996039899337417, "top": 685, "right": 2725, "bottom": 2125, "left": 895}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702764f.jpg"} -{"rects": [{"solidity": 0.9960399860042445, "top": 425, "right": 3260, "bottom": 2025, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725924f.jpg"} -{"rects": [{"solidity": 0.9960400690754868, "top": 790, "right": 1995, "bottom": 3170, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718688f.jpg"} -{"rects": [{"solidity": 0.996040073431648, "top": 915, "right": 3890, "bottom": 3330, "left": 2250}, {"solidity": 0.9960377589642077, "top": 925, "right": 5765, "bottom": 3345, "left": 4130}, {"solidity": 0.996303447739628, "top": 915, "right": 2045, "bottom": 3325, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709376f.jpg"} -{"rects": [{"solidity": 0.9960401606425703, "top": 510, "right": 1340, "bottom": 2045, "left": 315}, {"solidity": 0.9945111822624522, "top": 500, "right": 2525, "bottom": 2035, "left": 1495}], "shape": {"h": 2605, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/712609f.jpg"} -{"rects": [{"solidity": 0.996040166791017, "top": 2265, "right": 3125, "bottom": 3880, "left": 695}, {"solidity": 0.995958784785861, "top": 410, "right": 3135, "bottom": 2020, "left": 710}, {"solidity": 0.9980635727740966, "top": 4110, "right": 3100, "bottom": 5705, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729531f.jpg"} -{"rects": [{"solidity": 0.9960401785519489, "top": 430, "right": 2775, "bottom": 3390, "left": 820}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706304f.jpg"} -{"rects": [{"solidity": 0.9960404050700654, "top": 395, "right": 3185, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721060f.jpg"} -{"rects": [{"solidity": 0.9960405879806998, "top": 380, "right": 3210, "bottom": 2015, "left": 790}, {"solidity": 0.9977407696401229, "top": 2245, "right": 3160, "bottom": 3875, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704342f.jpg"} -{"rects": [{"solidity": 0.9960406170771607, "top": 2120, "right": 3185, "bottom": 3725, "left": 775}, {"solidity": 0.996082561918116, "top": 280, "right": 3165, "bottom": 1890, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711361f.jpg"} -{"rects": [{"solidity": 0.9960410363687017, "top": 2050, "right": 2765, "bottom": 3485, "left": 945}, {"solidity": 0.9951872407366066, "top": 675, "right": 2720, "bottom": 2045, "left": 925}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702848f.jpg"} -{"rects": [{"solidity": 0.9960410692812875, "top": 400, "right": 3170, "bottom": 2105, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700635f.jpg"} -{"rects": [{"solidity": 0.9960413169454788, "top": 800, "right": 3840, "bottom": 3220, "left": 2200}, {"solidity": 0.9966205995378268, "top": 805, "right": 2100, "bottom": 3225, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715293f.jpg"} -{"rects": [{"solidity": 0.9960413719305041, "top": 495, "right": 3160, "bottom": 2090, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719972f.jpg"} -{"rects": [{"solidity": 0.9960414061281834, "top": 480, "right": 2955, "bottom": 2135, "left": 515}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705835f.jpg"} -{"rects": [{"solidity": 0.9960414068839935, "top": 620, "right": 2605, "bottom": 2055, "left": 825}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706472f.jpg"} -{"rects": [{"solidity": 0.9960414660470888, "top": 2235, "right": 3160, "bottom": 3860, "left": 735}, {"solidity": 0.9946280547234329, "top": 425, "right": 3125, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729464f.jpg"} -{"rects": [{"solidity": 0.9960416600108623, "top": 2215, "right": 3000, "bottom": 3860, "left": 575}, {"solidity": 0.9962047816548433, "top": 440, "right": 3020, "bottom": 2085, "left": 595}, {"solidity": 0.9969334361977191, "top": 4000, "right": 2985, "bottom": 5625, "left": 575}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721617f.jpg"} -{"rects": [{"solidity": 0.9960417139986368, "top": 595, "right": 3080, "bottom": 2230, "left": 640}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707883f.jpg"} -{"rects": [{"solidity": 0.9960417358342171, "top": 800, "right": 3845, "bottom": 3215, "left": 2225}, {"solidity": 0.9961630204913842, "top": 805, "right": 2040, "bottom": 3210, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719495f.jpg"} -{"rects": [{"solidity": 0.9960419293114813, "top": 400, "right": 3165, "bottom": 2045, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706681f.jpg"} -{"rects": [{"solidity": 0.996042356438893, "top": 2230, "right": 3065, "bottom": 3865, "left": 635}, {"solidity": 0.9951053235309453, "top": 365, "right": 3075, "bottom": 1980, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729962f.jpg"} -{"rects": [{"solidity": 0.9960426940441744, "top": 4065, "right": 3250, "bottom": 5710, "left": 820}, {"solidity": 0.9961247046857599, "top": 390, "right": 3265, "bottom": 2010, "left": 835}, {"solidity": 0.9967067315438404, "top": 2220, "right": 3245, "bottom": 3840, "left": 830}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727931f.jpg"} -{"rects": [{"solidity": 0.9960427739002369, "top": 2260, "right": 3000, "bottom": 3895, "left": 565}, {"solidity": 0.9959874394988629, "top": 380, "right": 3030, "bottom": 2015, "left": 595}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726620f.jpg"} -{"rects": [{"solidity": 0.9960428261186139, "top": 835, "right": 5700, "bottom": 3285, "left": 4035}, {"solidity": 0.996259710974787, "top": 815, "right": 3875, "bottom": 3265, "left": 2230}, {"solidity": 0.9948228786213255, "top": 795, "right": 2015, "bottom": 3220, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721564f.jpg"} -{"rects": [{"solidity": 0.996043205641623, "top": 795, "right": 2090, "bottom": 3240, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723256f.jpg"} -{"rects": [{"solidity": 0.9960432173233484, "top": 350, "right": 5200, "bottom": 3605, "left": 1120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708572f.jpg"} -{"rects": [{"solidity": 0.9960432226798971, "top": 435, "right": 3180, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734207f.jpg"} -{"rects": [{"solidity": 0.9960433600803061, "top": 4070, "right": 3180, "bottom": 5675, "left": 770}, {"solidity": 0.995034401221695, "top": 2240, "right": 3185, "bottom": 3845, "left": 785}, {"solidity": 0.9962086680642815, "top": 415, "right": 3190, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710628f.jpg"} -{"rects": [{"solidity": 0.996043448264797, "top": 4130, "right": 3085, "bottom": 5755, "left": 655}, {"solidity": 0.9965789312465136, "top": 400, "right": 3085, "bottom": 2025, "left": 665}, {"solidity": 0.9937633653777405, "top": 2265, "right": 3085, "bottom": 3880, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719711f.jpg"} -{"rects": [{"solidity": 0.9960434728718581, "top": 405, "right": 3175, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715527f.jpg"} -{"rects": [{"solidity": 0.9960435011144206, "top": 2475, "right": 2515, "bottom": 3965, "left": 425}, {"solidity": 0.9941225792271436, "top": 710, "right": 2530, "bottom": 2200, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716184f.jpg"} -{"rects": [{"solidity": 0.9960435114579511, "top": 810, "right": 2025, "bottom": 3200, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701692f.jpg"} -{"rects": [{"solidity": 0.9960435912611616, "top": 650, "right": 2255, "bottom": 3085, "left": 630}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730500f.jpg"} -{"rects": [{"solidity": 0.9960436363636364, "top": 375, "right": 3305, "bottom": 2000, "left": 885}, {"solidity": 0.9978793450196136, "top": 2235, "right": 3285, "bottom": 3825, "left": 900}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726517f.jpg"} -{"rects": [{"solidity": 0.9960439496272652, "top": 2255, "right": 2920, "bottom": 3690, "left": 1100}, {"solidity": 0.9943262058677275, "top": 440, "right": 2915, "bottom": 1840, "left": 1095}, {"solidity": 0.9966574068939092, "top": 4110, "right": 2915, "bottom": 5475, "left": 1070}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704739f.jpg"} -{"rects": [{"solidity": 0.9960440332061112, "top": 1095, "right": 3395, "bottom": 4970, "left": 525}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711109f.jpg"} -{"rects": [{"solidity": 0.9960440648117798, "top": 890, "right": 5700, "bottom": 3320, "left": 4050}, {"solidity": 0.9965985627639254, "top": 860, "right": 3915, "bottom": 3290, "left": 2280}, {"solidity": 0.9978524363458879, "top": 855, "right": 2090, "bottom": 3265, "left": 480}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700612f.jpg"} -{"rects": [{"solidity": 0.9960442044455607, "top": 725, "right": 2660, "bottom": 2150, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704592f.jpg"} -{"rects": [{"solidity": 0.9960442270881654, "top": 550, "right": 4925, "bottom": 3695, "left": 1245}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703817f.jpg"} -{"rects": [{"solidity": 0.996044254898325, "top": 395, "right": 3150, "bottom": 2000, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729865f.jpg"} -{"rects": [{"solidity": 0.9960442608231644, "top": 745, "right": 2010, "bottom": 3180, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705130f.jpg"} -{"rects": [{"solidity": 0.9960445173925527, "top": 3340, "right": 3350, "bottom": 5330, "left": 395}, {"solidity": 0.9921568712018942, "top": 875, "right": 3350, "bottom": 2815, "left": 340}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732438f.jpg"} -{"rects": [{"solidity": 0.9960446526555201, "top": 800, "right": 5495, "bottom": 3205, "left": 3915}, {"solidity": 0.9922824447795617, "top": 800, "right": 1835, "bottom": 3190, "left": 345}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710157f.jpg"} -{"rects": [{"solidity": 0.9960448651658579, "top": 345, "right": 3175, "bottom": 2005, "left": 730}, {"solidity": 0.9946364302321878, "top": 4150, "right": 3275, "bottom": 5825, "left": 815}, {"solidity": 0.9944587902711683, "top": 2265, "right": 3220, "bottom": 3930, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701352f.jpg"} -{"rects": [{"solidity": 0.9960449874064677, "top": 455, "right": 3375, "bottom": 2440, "left": 570}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703717f.jpg"} -{"rects": [{"solidity": 0.9960450288254679, "top": 2260, "right": 3180, "bottom": 3880, "left": 770}, {"solidity": 0.9954185974162069, "top": 4090, "right": 3155, "bottom": 5710, "left": 750}, {"solidity": 0.9976662354633461, "top": 440, "right": 3190, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717933f.jpg"} -{"rects": [{"solidity": 0.9960451388436429, "top": 380, "right": 3185, "bottom": 1985, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728839f.jpg"} -{"rects": [{"solidity": 0.9960452267104234, "top": 725, "right": 2500, "bottom": 3155, "left": 855}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707860f.jpg"} -{"rects": [{"solidity": 0.996045491566005, "top": 875, "right": 2040, "bottom": 3290, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729654f.jpg"} -{"rects": [{"solidity": 0.9960455610006363, "top": 440, "right": 3125, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724651f.jpg"} -{"rects": [{"solidity": 0.9960455626801947, "top": 730, "right": 2210, "bottom": 3200, "left": 540}, {"solidity": 0.9963174720080253, "top": 750, "right": 5635, "bottom": 3195, "left": 3995}, {"solidity": 0.9964552345856896, "top": 770, "right": 3910, "bottom": 3205, "left": 2280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733196f.jpg"} -{"rects": [{"solidity": 0.9960460253093528, "top": 760, "right": 3940, "bottom": 3160, "left": 2325}, {"solidity": 0.997567384442498, "top": 755, "right": 2070, "bottom": 3145, "left": 475}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712400f.jpg"} -{"rects": [{"solidity": 0.9960460574785494, "top": 845, "right": 2030, "bottom": 3265, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728500f.jpg"} -{"rects": [{"solidity": 0.9960461066849554, "top": 990, "right": 3540, "bottom": 5065, "left": 405}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/721264f.jpg"} -{"rects": [{"solidity": 0.9960461300723048, "top": 2330, "right": 2990, "bottom": 3770, "left": 1155}, {"solidity": 0.9943373066485103, "top": 4115, "right": 2995, "bottom": 5570, "left": 1165}, {"solidity": 0.995749869188773, "top": 550, "right": 2980, "bottom": 1975, "left": 1160}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727834f.jpg"} -{"rects": [{"solidity": 0.9960462870538661, "top": 475, "right": 3120, "bottom": 2100, "left": 705}, {"solidity": 0.9967963914131437, "top": 2410, "right": 3095, "bottom": 4010, "left": 695}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711135f.jpg"} -{"rects": [{"solidity": 0.9960464069578057, "top": 425, "right": 3200, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733341f.jpg"} -{"rects": [{"solidity": 0.9960464147652579, "top": 2265, "right": 3195, "bottom": 3870, "left": 780}, {"solidity": 0.9984440325707131, "top": 4105, "right": 3185, "bottom": 5705, "left": 780}, {"solidity": 0.9958721157410655, "top": 445, "right": 3170, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734613f.jpg"} -{"rects": [{"solidity": 0.996046415277345, "top": 4115, "right": 3145, "bottom": 5745, "left": 715}, {"solidity": 0.997060651035211, "top": 2255, "right": 3170, "bottom": 3875, "left": 755}, {"solidity": 0.9967219644705352, "top": 410, "right": 3185, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710940f.jpg"} -{"rects": [{"solidity": 0.9960466487372698, "top": 1020, "right": 2040, "bottom": 2955, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712247f.jpg"} -{"rects": [{"solidity": 0.9960466905247667, "top": 785, "right": 2030, "bottom": 3175, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712151f.jpg"} -{"rects": [{"solidity": 0.9960468478036404, "top": 2220, "right": 3175, "bottom": 3825, "left": 775}, {"solidity": 0.9935419559023826, "top": 460, "right": 3145, "bottom": 2060, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714852f.jpg"} -{"rects": [{"solidity": 0.9960472265998398, "top": 2230, "right": 3035, "bottom": 3875, "left": 630}, {"solidity": 0.997447757766624, "top": 410, "right": 3020, "bottom": 2020, "left": 625}, {"solidity": 0.9962815317178066, "top": 4090, "right": 3010, "bottom": 5690, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734631f.jpg"} -{"rects": [{"solidity": 0.9960475574351443, "top": 440, "right": 5225, "bottom": 3655, "left": 1180}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708230f.jpg"} -{"rects": [{"solidity": 0.996047559833286, "top": 775, "right": 3870, "bottom": 3180, "left": 2255}, {"solidity": 0.9956333021270467, "top": 790, "right": 2040, "bottom": 3195, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730422f.jpg"} -{"rects": [{"solidity": 0.996047737055719, "top": 570, "right": 5015, "bottom": 3745, "left": 1150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717755f.jpg"} -{"rects": [{"solidity": 0.9960477457808092, "top": 1385, "right": 2010, "bottom": 2415, "left": 470}, {"solidity": 0.9922607614958762, "top": 265, "right": 2000, "bottom": 1290, "left": 465}], "shape": {"h": 3950, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727120f.jpg"} -{"rects": [{"solidity": 0.9960477605045521, "top": 755, "right": 3655, "bottom": 3185, "left": 2025}, {"solidity": 0.99520586294467, "top": 1015, "right": 1775, "bottom": 2865, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722049f.jpg"} -{"rects": [{"solidity": 0.9960478949169733, "top": 750, "right": 3305, "bottom": 2620, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711088f.jpg"} -{"rects": [{"solidity": 0.9960480905650003, "top": 2190, "right": 3080, "bottom": 3605, "left": 1255}, {"solidity": 0.9932506008731055, "top": 485, "right": 3105, "bottom": 1905, "left": 1265}, {"solidity": 0.9934013407754051, "top": 3995, "right": 3065, "bottom": 5415, "left": 1250}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727712f.jpg"} -{"rects": [{"solidity": 0.9960480997033586, "top": 625, "right": 2745, "bottom": 2005, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706122f.jpg"} -{"rects": [{"solidity": 0.9960482073612202, "top": 2270, "right": 3200, "bottom": 3895, "left": 780}, {"solidity": 0.9981793339696403, "top": 480, "right": 3185, "bottom": 2080, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731880f.jpg"} -{"rects": [{"solidity": 0.9960485509230661, "top": 2525, "right": 3375, "bottom": 4165, "left": 930}, {"solidity": 0.9957368926187978, "top": 4360, "right": 3335, "bottom": 6000, "left": 895}, {"solidity": 0.9996044392846462, "top": 620, "right": 3380, "bottom": 2235, "left": 960}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/721468f.jpg"} -{"rects": [{"solidity": 0.9960485636996007, "top": 635, "right": 3195, "bottom": 2270, "left": 770}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703359f.jpg"} -{"rects": [{"solidity": 0.9960485896014174, "top": 820, "right": 4020, "bottom": 3250, "left": 2350}, {"solidity": 0.9959977111511056, "top": 785, "right": 2165, "bottom": 3220, "left": 515}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707518f.jpg"} -{"rects": [{"solidity": 0.9960486046174878, "top": 3255, "right": 3250, "bottom": 5155, "left": 540}, {"solidity": 0.9939860794778946, "top": 665, "right": 3275, "bottom": 2575, "left": 570}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713274f.jpg"} -{"rects": [{"solidity": 0.9960486389933422, "top": 840, "right": 3860, "bottom": 3285, "left": 2240}, {"solidity": 0.996820237194857, "top": 855, "right": 5690, "bottom": 3295, "left": 4080}, {"solidity": 0.9962529489160785, "top": 855, "right": 2010, "bottom": 3265, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732202f.jpg"} -{"rects": [{"solidity": 0.9960487533644644, "top": 660, "right": 2650, "bottom": 2075, "left": 840}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725505f.jpg"} -{"rects": [{"solidity": 0.9960489962789658, "top": 2185, "right": 3160, "bottom": 3820, "left": 720}, {"solidity": 0.996046272774982, "top": 400, "right": 3170, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705443f.jpg"} -{"rects": [{"solidity": 0.9960491892537948, "top": 835, "right": 2155, "bottom": 3215, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710903f.jpg"} -{"rects": [{"solidity": 0.9960492634629317, "top": 800, "right": 2000, "bottom": 3230, "left": 390}, {"solidity": 0.9969040147833295, "top": 830, "right": 3865, "bottom": 3255, "left": 2250}, {"solidity": 0.9949581942222064, "top": 855, "right": 5745, "bottom": 3280, "left": 4130}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734503f.jpg"} -{"rects": [{"solidity": 0.9960496030206636, "top": 645, "right": 2100, "bottom": 3055, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707911f.jpg"} -{"rects": [{"solidity": 0.9960496469351924, "top": 4035, "right": 3130, "bottom": 5660, "left": 690}, {"solidity": 0.9953160841179962, "top": 2195, "right": 3145, "bottom": 3815, "left": 710}, {"solidity": 0.9958252552668994, "top": 370, "right": 3145, "bottom": 1980, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728746f.jpg"} -{"rects": [{"solidity": 0.9960497430243733, "top": 2240, "right": 3175, "bottom": 3880, "left": 745}, {"solidity": 0.9961464602853424, "top": 420, "right": 3190, "bottom": 2050, "left": 760}, {"solidity": 0.9960975672894595, "top": 4105, "right": 3155, "bottom": 5735, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718723f.jpg"} -{"rects": [{"solidity": 0.9960497709449492, "top": 805, "right": 3830, "bottom": 3220, "left": 2215}, {"solidity": 0.9962199323874504, "top": 800, "right": 2005, "bottom": 3210, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704815f.jpg"} -{"rects": [{"solidity": 0.9960498230951744, "top": 2225, "right": 3080, "bottom": 3845, "left": 660}, {"solidity": 0.9965667955465325, "top": 375, "right": 3080, "bottom": 1990, "left": 655}, {"solidity": 0.9958671138031284, "top": 4085, "right": 3085, "bottom": 5695, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728562f.jpg"} -{"rects": [{"solidity": 0.9960498281519727, "top": 645, "right": 2630, "bottom": 1995, "left": 820}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703008f.jpg"} -{"rects": [{"solidity": 0.9960499294057246, "top": 2245, "right": 3195, "bottom": 3870, "left": 765}, {"solidity": 0.9949528353378583, "top": 430, "right": 3190, "bottom": 2045, "left": 760}, {"solidity": 0.9956437748765088, "top": 4070, "right": 3180, "bottom": 5685, "left": 760}], "shape": {"h": 6140, "w": 4065}, "file": "/usr/local/google/home/danvk/milstein/731869f.jpg"} -{"rects": [{"solidity": 0.996050075014142, "top": 630, "right": 2785, "bottom": 2045, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704379f.jpg"} -{"rects": [{"solidity": 0.9960501610094465, "top": 380, "right": 3175, "bottom": 2000, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709219f.jpg"} -{"rects": [{"solidity": 0.996050224513554, "top": 410, "right": 3275, "bottom": 2055, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725304f.jpg"} -{"rects": [{"solidity": 0.996050230429, "top": 820, "right": 2150, "bottom": 3215, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700262f.jpg"} -{"rects": [{"solidity": 0.9960503700128176, "top": 620, "right": 3145, "bottom": 2235, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710661f.jpg"} -{"rects": [{"solidity": 0.9960503935191859, "top": 2105, "right": 3155, "bottom": 3730, "left": 725}, {"solidity": 0.9971044893284345, "top": 290, "right": 3165, "bottom": 1910, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724142f.jpg"} -{"rects": [{"solidity": 0.9960505160347715, "top": 685, "right": 2040, "bottom": 3075, "left": 445}, {"solidity": 0.9740394915014451, "top": 690, "right": 3900, "bottom": 3055, "left": 2295}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731680f.jpg"} -{"rects": [{"solidity": 0.9960505691705784, "top": 430, "right": 5210, "bottom": 2000, "left": 3230}, {"solidity": 0.996470431825297, "top": 2130, "right": 5170, "bottom": 3735, "left": 3335}, {"solidity": 0.9969325989748065, "top": 2220, "right": 2855, "bottom": 3685, "left": 955}, {"solidity": 0.9932376801065504, "top": 525, "right": 2705, "bottom": 1770, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706759f.jpg"} -{"rects": [{"solidity": 0.9960507306874197, "top": 1010, "right": 2980, "bottom": 2085, "left": 1345}], "shape": {"h": 3005, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/1509727.jpg"} -{"rects": [{"solidity": 0.9960507830455584, "top": 430, "right": 3140, "bottom": 2040, "left": 720}, {"solidity": 0.9916962449738707, "top": 2280, "right": 3125, "bottom": 3885, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701578f.jpg"} -{"rects": [{"solidity": 0.9960509579261859, "top": 635, "right": 2790, "bottom": 2045, "left": 970}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702351f.jpg"} -{"rects": [{"solidity": 0.9960512012778135, "top": 930, "right": 3850, "bottom": 3375, "left": 2205}, {"solidity": 0.9958079441405312, "top": 935, "right": 2005, "bottom": 3350, "left": 395}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729622f.jpg"} -{"rects": [{"solidity": 0.9960513200193588, "top": 2255, "right": 3130, "bottom": 3895, "left": 700}, {"solidity": 0.9960926381161858, "top": 420, "right": 3150, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722960f.jpg"} -{"rects": [{"solidity": 0.9960514150089124, "top": 465, "right": 3340, "bottom": 2430, "left": 640}, {"solidity": 0.9947578032762086, "top": 2650, "right": 3170, "bottom": 4265, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724012f.jpg"} -{"rects": [{"solidity": 0.9960514530973622, "top": 370, "right": 3225, "bottom": 2005, "left": 790}, {"solidity": 0.9947835899089223, "top": 2205, "right": 3210, "bottom": 3850, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722649f.jpg"} -{"rects": [{"solidity": 0.9960519006428061, "top": 910, "right": 5730, "bottom": 3305, "left": 4135}, {"solidity": 0.9953167537955339, "top": 920, "right": 3845, "bottom": 3295, "left": 2255}, {"solidity": 0.997253155159614, "top": 925, "right": 1990, "bottom": 3300, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728827f.jpg"} -{"rects": [{"solidity": 0.9960519796870484, "top": 510, "right": 3120, "bottom": 2390, "left": 495}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718763f.jpg"} -{"rects": [{"solidity": 0.9960519859511389, "top": 2215, "right": 3175, "bottom": 3830, "left": 750}, {"solidity": 0.996254375614874, "top": 405, "right": 3175, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707468f.jpg"} -{"rects": [{"solidity": 0.996052021169498, "top": 885, "right": 3870, "bottom": 3340, "left": 2215}, {"solidity": 0.9964583531500681, "top": 865, "right": 2010, "bottom": 3305, "left": 370}, {"solidity": 0.9969809895183029, "top": 935, "right": 5720, "bottom": 3350, "left": 4085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721687f.jpg"} -{"rects": [{"solidity": 0.9960520395058808, "top": 410, "right": 3150, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730188f.jpg"} -{"rects": [{"solidity": 0.9960520867770585, "top": 835, "right": 2040, "bottom": 3260, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715007f.jpg"} -{"rects": [{"solidity": 0.9960521716263064, "top": 435, "right": 3155, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702051f.jpg"} -{"rects": [{"solidity": 0.9960521810135918, "top": 400, "right": 3255, "bottom": 2000, "left": 865}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728149f.jpg"} -{"rects": [{"solidity": 0.9960524207760582, "top": 2250, "right": 3160, "bottom": 3875, "left": 730}, {"solidity": 0.994887730553328, "top": 4125, "right": 3155, "bottom": 5745, "left": 735}, {"solidity": 0.9949772595017572, "top": 410, "right": 3170, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731864f.jpg"} -{"rects": [{"solidity": 0.9960525313079482, "top": 455, "right": 2940, "bottom": 1835, "left": 1130}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725362f.jpg"} -{"rects": [{"solidity": 0.9960525444534429, "top": 2150, "right": 2895, "bottom": 3535, "left": 1105}, {"solidity": 0.9959754440801234, "top": 545, "right": 2880, "bottom": 1930, "left": 1090}, {"solidity": 0.9947214196011966, "top": 2145, "right": 5055, "bottom": 3530, "left": 3265}, {"solidity": 0.9952158783348369, "top": 555, "right": 5065, "bottom": 1945, "left": 3290}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725620f.jpg"} -{"rects": [{"solidity": 0.9960525767278394, "top": 2280, "right": 3230, "bottom": 3915, "left": 805}, {"solidity": 0.9975457952041686, "top": 415, "right": 3245, "bottom": 2040, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727559f.jpg"} -{"rects": [{"solidity": 0.996052666881305, "top": 810, "right": 3820, "bottom": 3195, "left": 2240}, {"solidity": 0.9471377449757398, "top": 810, "right": 1935, "bottom": 3185, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730113f.jpg"} -{"rects": [{"solidity": 0.9960529764073456, "top": 865, "right": 3875, "bottom": 3300, "left": 2230}, {"solidity": 0.9964219641297086, "top": 850, "right": 2005, "bottom": 3280, "left": 370}, {"solidity": 0.9960107981327416, "top": 910, "right": 5740, "bottom": 3295, "left": 4100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709418f.jpg"} -{"rects": [{"solidity": 0.9960533030171885, "top": 810, "right": 2140, "bottom": 3215, "left": 510}, {"solidity": 0.9970530870470228, "top": 820, "right": 3970, "bottom": 3215, "left": 2365}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723811f.jpg"} -{"rects": [{"solidity": 0.9960533439260899, "top": 2215, "right": 3080, "bottom": 3840, "left": 650}, {"solidity": 0.9972178277235284, "top": 360, "right": 3075, "bottom": 1980, "left": 645}, {"solidity": 0.9954281086412012, "top": 4085, "right": 3060, "bottom": 5700, "left": 650}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729855f.jpg"} -{"rects": [{"solidity": 0.9960537194846777, "top": 2285, "right": 3060, "bottom": 3895, "left": 655}, {"solidity": 0.9945924260810175, "top": 440, "right": 3070, "bottom": 2040, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734400f.jpg"} -{"rects": [{"solidity": 0.9960538992069518, "top": 390, "right": 3230, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703097f.jpg"} -{"rects": [{"solidity": 0.9960539280002773, "top": 900, "right": 3305, "bottom": 2705, "left": 1890}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706016f.jpg"} -{"rects": [{"solidity": 0.9960539402472262, "top": 380, "right": 3170, "bottom": 2010, "left": 755}, {"solidity": 0.9960728958588962, "top": 2180, "right": 3160, "bottom": 3805, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714978f.jpg"} -{"rects": [{"solidity": 0.996053952280048, "top": 425, "right": 3170, "bottom": 2030, "left": 770}, {"solidity": 0.9958180163665691, "top": 2290, "right": 3175, "bottom": 3890, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713170f.jpg"} -{"rects": [{"solidity": 0.9960540792983623, "top": 2045, "right": 5325, "bottom": 3665, "left": 3340}, {"solidity": 0.9372309651875667, "top": 245, "right": 5330, "bottom": 1970, "left": 3300}, {"solidity": 0.9923897612389762, "top": 2025, "right": 2910, "bottom": 3545, "left": 970}, {"solidity": 0.9908293899710209, "top": 435, "right": 2900, "bottom": 1860, "left": 950}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733699f.jpg"} -{"rects": [{"solidity": 0.9960541015949987, "top": 2115, "right": 2850, "bottom": 3565, "left": 1010}, {"solidity": 0.9987904929834021, "top": 640, "right": 2830, "bottom": 2065, "left": 1010}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702783f.jpg"} -{"rects": [{"solidity": 0.9960541023563286, "top": 410, "right": 3180, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706809f.jpg"} -{"rects": [{"solidity": 0.996054291897405, "top": 865, "right": 2090, "bottom": 3265, "left": 480}, {"solidity": 0.9948763320876306, "top": 845, "right": 3940, "bottom": 3260, "left": 2315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733465f.jpg"} -{"rects": [{"solidity": 0.9960546470574787, "top": 2255, "right": 3125, "bottom": 3870, "left": 710}, {"solidity": 0.9959610078122181, "top": 380, "right": 3130, "bottom": 1985, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729687f.jpg"} -{"rects": [{"solidity": 0.9960546723536254, "top": 680, "right": 3845, "bottom": 3100, "left": 2215}, {"solidity": 0.9951187732439369, "top": 720, "right": 2060, "bottom": 3130, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712518f.jpg"} -{"rects": [{"solidity": 0.9960547396745648, "top": 385, "right": 3215, "bottom": 1990, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734265f.jpg"} -{"rects": [{"solidity": 0.9960549641172982, "top": 3795, "right": 3240, "bottom": 5450, "left": 795}, {"solidity": 0.9950857113529049, "top": 2035, "right": 3275, "bottom": 3685, "left": 825}, {"solidity": 0.995544860644014, "top": 315, "right": 3300, "bottom": 1955, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730772f.jpg"} -{"rects": [{"solidity": 0.996055087427358, "top": 765, "right": 3925, "bottom": 3195, "left": 2290}, {"solidity": 0.9985126859142607, "top": 755, "right": 2055, "bottom": 3160, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722077f.jpg"} -{"rects": [{"solidity": 0.9960552074856278, "top": 725, "right": 2035, "bottom": 3135, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709667f.jpg"} -{"rects": [{"solidity": 0.9960552841746142, "top": 385, "right": 3205, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731451f.jpg"} -{"rects": [{"solidity": 0.9960553682137548, "top": 535, "right": 5055, "bottom": 3725, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701785f.jpg"} -{"rects": [{"solidity": 0.9960556874651305, "top": 700, "right": 2010, "bottom": 3120, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724996f.jpg"} -{"rects": [{"solidity": 0.9960560541032644, "top": 785, "right": 2065, "bottom": 3205, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707849f.jpg"} -{"rects": [{"solidity": 0.9960560812317958, "top": 360, "right": 3145, "bottom": 1980, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728687f.jpg"} -{"rects": [{"solidity": 0.9960561221861639, "top": 2370, "right": 3140, "bottom": 3995, "left": 720}, {"solidity": 0.997363027515533, "top": 545, "right": 3140, "bottom": 2160, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727942f.jpg"} -{"rects": [{"solidity": 0.9960561277994737, "top": 775, "right": 5630, "bottom": 3195, "left": 4010}, {"solidity": 0.9967534777238128, "top": 760, "right": 3805, "bottom": 3175, "left": 2185}, {"solidity": 0.9963286359871926, "top": 745, "right": 2000, "bottom": 3155, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703253f.jpg"} -{"rects": [{"solidity": 0.9960563791718396, "top": 475, "right": 2225, "bottom": 2560, "left": 730}, {"solidity": 0.9966390857663047, "top": 480, "right": 3995, "bottom": 2565, "left": 2505}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716127f.jpg"} -{"rects": [{"solidity": 0.9960564761001445, "top": 365, "right": 3200, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704642f.jpg"} -{"rects": [{"solidity": 0.9960565137544599, "top": 840, "right": 2055, "bottom": 3275, "left": 410}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712716f.jpg"} -{"rects": [{"solidity": 0.9960565956356632, "top": 460, "right": 3145, "bottom": 2075, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734088f.jpg"} -{"rects": [{"solidity": 0.9960568818452531, "top": 2125, "right": 3115, "bottom": 3780, "left": 670}, {"solidity": 0.9974672884675501, "top": 475, "right": 3070, "bottom": 2100, "left": 640}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702219f.jpg"} -{"rects": [{"solidity": 0.9960570442191422, "top": 450, "right": 3175, "bottom": 3800, "left": 640}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722343f.jpg"} -{"rects": [{"solidity": 0.9960571066419611, "top": 2065, "right": 2750, "bottom": 3500, "left": 935}, {"solidity": 0.995269019851659, "top": 610, "right": 5260, "bottom": 2030, "left": 3420}, {"solidity": 0.9973375184267792, "top": 640, "right": 2745, "bottom": 2035, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725055f.jpg"} -{"rects": [{"solidity": 0.996057328059272, "top": 2330, "right": 3120, "bottom": 3960, "left": 700}, {"solidity": 0.9961730626129478, "top": 440, "right": 3110, "bottom": 2070, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728446f.jpg"} -{"rects": [{"solidity": 0.9960574185000048, "top": 390, "right": 3140, "bottom": 2005, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724236f.jpg"} -{"rects": [{"solidity": 0.9960574713014213, "top": 1225, "right": 5645, "bottom": 2845, "left": 3230}, {"solidity": 0.9962750281632403, "top": 1225, "right": 2920, "bottom": 2840, "left": 500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734693f.jpg"} -{"rects": [{"solidity": 0.9960574735660332, "top": 750, "right": 2080, "bottom": 3150, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711108f.jpg"} -{"rects": [{"solidity": 0.9960576300487692, "top": 2265, "right": 3200, "bottom": 3920, "left": 770}, {"solidity": 0.9964398455558899, "top": 360, "right": 3195, "bottom": 2005, "left": 775}, {"solidity": 0.9961473772901076, "top": 4190, "right": 3185, "bottom": 5825, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703080f.jpg"} -{"rects": [{"solidity": 0.9960577428494507, "top": 800, "right": 2055, "bottom": 3230, "left": 435}, {"solidity": 0.9957018761907838, "top": 810, "right": 3880, "bottom": 3230, "left": 2265}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723792f.jpg"} -{"rects": [{"solidity": 0.9960579631408235, "top": 690, "right": 2015, "bottom": 3110, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722569f.jpg"} -{"rects": [{"solidity": 0.9960579938299033, "top": 2130, "right": 3145, "bottom": 3775, "left": 710}, {"solidity": 0.9968408831415413, "top": 4000, "right": 3120, "bottom": 5630, "left": 705}, {"solidity": 0.9930519825661741, "top": 395, "right": 2925, "bottom": 1955, "left": 1020}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733540f.jpg"} -{"rects": [{"solidity": 0.9960580074974665, "top": 580, "right": 3290, "bottom": 2480, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714312f.jpg"} -{"rects": [{"solidity": 0.996058130546762, "top": 2270, "right": 3210, "bottom": 3890, "left": 780}, {"solidity": 0.9962391297371883, "top": 395, "right": 3200, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733707f.jpg"} -{"rects": [{"solidity": 0.9960582606386641, "top": 1075, "right": 3445, "bottom": 5080, "left": 255}], "shape": {"h": 6070, "w": 3850}, "file": "/usr/local/google/home/danvk/milstein/711688f.jpg"} -{"rects": [{"solidity": 0.9960583618808343, "top": 420, "right": 3180, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707034f.jpg"} -{"rects": [{"solidity": 0.9960583775384451, "top": 385, "right": 3190, "bottom": 1970, "left": 810}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/730220f.jpg"} -{"rects": [{"solidity": 0.9960583974459959, "top": 4045, "right": 3200, "bottom": 5665, "left": 775}, {"solidity": 0.9971298180376147, "top": 2240, "right": 3200, "bottom": 3845, "left": 785}, {"solidity": 0.9981986912009485, "top": 440, "right": 3190, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734507f.jpg"} -{"rects": [{"solidity": 0.996058635330228, "top": 2125, "right": 3260, "bottom": 3780, "left": 820}, {"solidity": 0.9964247476292444, "top": 3870, "right": 3230, "bottom": 5510, "left": 800}, {"solidity": 0.9960368517963155, "top": 425, "right": 3275, "bottom": 2040, "left": 850}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706075f.jpg"} -{"rects": [{"solidity": 0.9960586570286744, "top": 395, "right": 3305, "bottom": 2000, "left": 880}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726102f.jpg"} -{"rects": [{"solidity": 0.9960586679061594, "top": 4015, "right": 3125, "bottom": 5660, "left": 680}, {"solidity": 0.9882087964617776, "top": 2210, "right": 2925, "bottom": 3715, "left": 970}, {"solidity": 0.9937137609632097, "top": 405, "right": 2935, "bottom": 1890, "left": 995}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730602f.jpg"} -{"rects": [{"solidity": 0.9960591421460987, "top": 335, "right": 2405, "bottom": 1535, "left": 605}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716474f.jpg"} -{"rects": [{"solidity": 0.9960593594242958, "top": 460, "right": 2925, "bottom": 2060, "left": 965}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711600f.jpg"} -{"rects": [{"solidity": 0.9960594947953443, "top": 2150, "right": 3095, "bottom": 3780, "left": 705}, {"solidity": 0.9961930757075133, "top": 305, "right": 3110, "bottom": 1935, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707987f.jpg"} -{"rects": [{"solidity": 0.9960595961576162, "top": 620, "right": 2960, "bottom": 2035, "left": 1140}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707449f.jpg"} -{"rects": [{"solidity": 0.9960599549891298, "top": 865, "right": 3915, "bottom": 3310, "left": 2275}, {"solidity": 0.9964038682714269, "top": 875, "right": 2025, "bottom": 3275, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728362f.jpg"} -{"rects": [{"solidity": 0.9960600949484556, "top": 430, "right": 3205, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734719f.jpg"} -{"rects": [{"solidity": 0.9960601296914915, "top": 815, "right": 2455, "bottom": 3215, "left": 840}, {"solidity": 0.9952201424988789, "top": 1195, "right": 5465, "bottom": 2795, "left": 3075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722967f.jpg"} -{"rects": [{"solidity": 0.9960601410901742, "top": 440, "right": 5035, "bottom": 3750, "left": 965}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719068f.jpg"} -{"rects": [{"solidity": 0.996060143786148, "top": 2115, "right": 5040, "bottom": 3670, "left": 3080}, {"solidity": 0.9932350338883315, "top": 2105, "right": 2800, "bottom": 3680, "left": 895}, {"solidity": 0.9921747105157148, "top": 500, "right": 5055, "bottom": 2020, "left": 3110}, {"solidity": 0.9974704590516666, "top": 510, "right": 2780, "bottom": 2020, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732588f.jpg"} -{"rects": [{"solidity": 0.9960602011714857, "top": 850, "right": 3935, "bottom": 3255, "left": 2330}, {"solidity": 0.9946127281697089, "top": 825, "right": 2040, "bottom": 3235, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729463f.jpg"} -{"rects": [{"solidity": 0.9960603768621132, "top": 740, "right": 1990, "bottom": 3130, "left": 385}, {"solidity": 0.9952231707726952, "top": 945, "right": 3805, "bottom": 2930, "left": 2245}, {"solidity": 0.9926737858765183, "top": 915, "right": 5550, "bottom": 2885, "left": 4040}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721999f.jpg"} -{"rects": [{"solidity": 0.9960609461011641, "top": 780, "right": 2050, "bottom": 3165, "left": 455}, {"solidity": 0.9974391070952592, "top": 785, "right": 3900, "bottom": 3160, "left": 2330}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713926f.jpg"} -{"rects": [{"solidity": 0.9960610202571485, "top": 525, "right": 3280, "bottom": 2145, "left": 860}, {"solidity": 0.9952239892763168, "top": 2405, "right": 3285, "bottom": 3995, "left": 870}, {"solidity": 0.9966766299526403, "top": 4285, "right": 3275, "bottom": 5820, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710621f.jpg"} -{"rects": [{"solidity": 0.9960611364614942, "top": 1025, "right": 4420, "bottom": 3745, "left": 2585}, {"solidity": 0.9954643761339059, "top": 1015, "right": 2285, "bottom": 3720, "left": 460}], "shape": {"h": 4410, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711650f.jpg"} -{"rects": [{"solidity": 0.996061155739829, "top": 740, "right": 2030, "bottom": 3160, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722514f.jpg"} -{"rects": [{"solidity": 0.9960612301980828, "top": 315, "right": 3100, "bottom": 3040, "left": 1255}, {"solidity": 0.9962233935397334, "top": 3310, "right": 3050, "bottom": 6030, "left": 1230}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710263f.jpg"} -{"rects": [{"solidity": 0.9960612648480166, "top": 2270, "right": 3195, "bottom": 3875, "left": 795}, {"solidity": 0.996025131427106, "top": 4130, "right": 3180, "bottom": 5730, "left": 780}, {"solidity": 0.997988066928108, "top": 405, "right": 3190, "bottom": 2010, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731596f.jpg"} -{"rects": [{"solidity": 0.9960612748028214, "top": 770, "right": 3170, "bottom": 2410, "left": 750}, {"solidity": 0.9945606557377049, "top": 2945, "right": 3165, "bottom": 4550, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709305f.jpg"} -{"rects": [{"solidity": 0.9960612920532315, "top": 780, "right": 2175, "bottom": 3185, "left": 565}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709676f.jpg"} -{"rects": [{"solidity": 0.9960614339699724, "top": 770, "right": 3900, "bottom": 3200, "left": 2260}, {"solidity": 0.9970685748665498, "top": 760, "right": 2040, "bottom": 3185, "left": 410}, {"solidity": 0.9955873857003407, "top": 800, "right": 5775, "bottom": 3200, "left": 4170}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722018f.jpg"} -{"rects": [{"solidity": 0.9960614927918808, "top": 2340, "right": 3110, "bottom": 3950, "left": 695}, {"solidity": 0.9970012584004927, "top": 570, "right": 3110, "bottom": 2150, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722258f.jpg"} -{"rects": [{"solidity": 0.99606152457746, "top": 505, "right": 3020, "bottom": 1940, "left": 1220}, {"solidity": 0.9944308807661517, "top": 2320, "right": 3050, "bottom": 3730, "left": 1245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727745f.jpg"} -{"rects": [{"solidity": 0.9960616946785567, "top": 775, "right": 3810, "bottom": 3185, "left": 2195}, {"solidity": 0.9986853695646372, "top": 785, "right": 2005, "bottom": 3170, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730880f.jpg"} -{"rects": [{"solidity": 0.9960617591976414, "top": 1050, "right": 3515, "bottom": 5005, "left": 400}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722367f.jpg"} -{"rects": [{"solidity": 0.9960620861544246, "top": 395, "right": 3190, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710048f.jpg"} -{"rects": [{"solidity": 0.9960620957475124, "top": 2270, "right": 2970, "bottom": 3900, "left": 540}, {"solidity": 0.9963963084134968, "top": 405, "right": 2975, "bottom": 2010, "left": 565}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728453f.jpg"} -{"rects": [{"solidity": 0.9960621636099278, "top": 380, "right": 3200, "bottom": 2025, "left": 745}, {"solidity": 0.9957968722096079, "top": 2260, "right": 3180, "bottom": 3905, "left": 735}, {"solidity": 0.9961743153658591, "top": 4110, "right": 3170, "bottom": 5740, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723730f.jpg"} -{"rects": [{"solidity": 0.9960622886598633, "top": 560, "right": 3090, "bottom": 2145, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721434f.jpg"} -{"rects": [{"solidity": 0.9960625717982773, "top": 2115, "right": 2880, "bottom": 3560, "left": 820}, {"solidity": 0.9967839584362052, "top": 475, "right": 2880, "bottom": 1915, "left": 830}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730037f.jpg"} -{"rects": [{"solidity": 0.9960626093719619, "top": 620, "right": 2810, "bottom": 2050, "left": 985}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707094f.jpg"} -{"rects": [{"solidity": 0.9960626266689357, "top": 495, "right": 3595, "bottom": 2300, "left": 880}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711539f.jpg"} -{"rects": [{"solidity": 0.9960626818423628, "top": 765, "right": 3855, "bottom": 3165, "left": 2255}, {"solidity": 0.9981812420367449, "top": 775, "right": 2005, "bottom": 3160, "left": 405}, {"solidity": 0.9960449913098436, "top": 2060, "right": 5840, "bottom": 3360, "left": 3865}, {"solidity": 0.9977169429078274, "top": 790, "right": 5805, "bottom": 2035, "left": 3875}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717366f.jpg"} -{"rects": [{"solidity": 0.9960630311684964, "top": 705, "right": 3200, "bottom": 2600, "left": 515}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713849f.jpg"} -{"rects": [{"solidity": 0.9960632253902213, "top": 805, "right": 4060, "bottom": 3215, "left": 2470}, {"solidity": 0.9962798527785571, "top": 800, "right": 5810, "bottom": 3210, "left": 4225}, {"solidity": 0.9958378015757594, "top": 535, "right": 2265, "bottom": 1960, "left": 450}, {"solidity": 0.9944929409965013, "top": 2120, "right": 2285, "bottom": 3525, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726085f.jpg"} -{"rects": [{"solidity": 0.9960638851881316, "top": 510, "right": 3150, "bottom": 2160, "left": 725}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707503f.jpg"} -{"rects": [{"solidity": 0.9960639016723808, "top": 705, "right": 5000, "bottom": 3600, "left": 975}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710234f.jpg"} -{"rects": [{"solidity": 0.9960640469658781, "top": 630, "right": 3890, "bottom": 3415, "left": 1970}, {"solidity": 0.9969829845441878, "top": 855, "right": 5700, "bottom": 3280, "left": 4070}, {"solidity": 0.9945815416132656, "top": 1005, "right": 1820, "bottom": 2830, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726197f.jpg"} -{"rects": [{"solidity": 0.9960646015287384, "top": 800, "right": 2035, "bottom": 3210, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708030f.jpg"} -{"rects": [{"solidity": 0.9960646589050323, "top": 2245, "right": 3025, "bottom": 3890, "left": 600}, {"solidity": 0.9959222958340685, "top": 390, "right": 3045, "bottom": 2030, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712550f.jpg"} -{"rects": [{"solidity": 0.9960647226430999, "top": 520, "right": 3595, "bottom": 2320, "left": 885}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711385f.jpg"} -{"rects": [{"solidity": 0.9960648140329069, "top": 460, "right": 3180, "bottom": 2040, "left": 810}, {"solidity": 0.996639652775423, "top": 2290, "right": 3180, "bottom": 3860, "left": 815}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714282f.jpg"} -{"rects": [{"solidity": 0.9960648351326838, "top": 2080, "right": 2670, "bottom": 3495, "left": 840}, {"solidity": 0.9947202423820994, "top": 660, "right": 2655, "bottom": 2070, "left": 850}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706512f.jpg"} -{"rects": [{"solidity": 0.996065087998358, "top": 635, "right": 1870, "bottom": 3060, "left": 240}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722683f.jpg"} -{"rects": [{"solidity": 0.9960651802687115, "top": 470, "right": 3045, "bottom": 2040, "left": 1050}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702461f.jpg"} -{"rects": [{"solidity": 0.9960652146722871, "top": 410, "right": 3155, "bottom": 1985, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724933f.jpg"} -{"rects": [{"solidity": 0.9960653346870878, "top": 2495, "right": 3580, "bottom": 4335, "left": 850}, {"solidity": 0.9977605690061719, "top": 400, "right": 3570, "bottom": 2210, "left": 875}], "shape": {"h": 6860, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/702200f.jpg"} -{"rects": [{"solidity": 0.9960653449894508, "top": 615, "right": 4990, "bottom": 3610, "left": 1165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701047f.jpg"} -{"rects": [{"solidity": 0.9960654909452611, "top": 2300, "right": 3220, "bottom": 3940, "left": 780}, {"solidity": 0.9961143482702326, "top": 450, "right": 3220, "bottom": 2080, "left": 785}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/730514f.jpg"} -{"rects": [{"solidity": 0.9960656519492906, "top": 725, "right": 2545, "bottom": 2150, "left": 760}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727315f.jpg"} -{"rects": [{"solidity": 0.9960656814792412, "top": 440, "right": 3490, "bottom": 2235, "left": 795}], "shape": {"h": 6880, "w": 4405}, "file": "/usr/local/google/home/danvk/milstein/711708f.jpg"} -{"rects": [{"solidity": 0.9960658140975536, "top": 2255, "right": 3205, "bottom": 3875, "left": 785}, {"solidity": 0.9971469656620449, "top": 435, "right": 3205, "bottom": 2035, "left": 800}, {"solidity": 0.9953882287833818, "top": 4105, "right": 3195, "bottom": 5705, "left": 795}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/726954f.jpg"} -{"rects": [{"solidity": 0.9960659331339116, "top": 765, "right": 3880, "bottom": 3175, "left": 2265}, {"solidity": 0.9973716081306667, "top": 755, "right": 2040, "bottom": 3155, "left": 435}, {"solidity": 0.9956490234511959, "top": 805, "right": 5705, "bottom": 3180, "left": 4100}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717838f.jpg"} -{"rects": [{"solidity": 0.9960661149593606, "top": 2195, "right": 3145, "bottom": 3820, "left": 715}, {"solidity": 0.995102910094867, "top": 4080, "right": 3145, "bottom": 5700, "left": 720}, {"solidity": 0.9961439421948072, "top": 340, "right": 3130, "bottom": 1960, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701064f.jpg"} -{"rects": [{"solidity": 0.9960661304852204, "top": 2150, "right": 3100, "bottom": 3775, "left": 680}, {"solidity": 0.9954882203317793, "top": 3970, "right": 3065, "bottom": 5605, "left": 650}, {"solidity": 0.9938865674023396, "top": 360, "right": 3095, "bottom": 1960, "left": 705}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/719370f.jpg"} -{"rects": [{"solidity": 0.9960662155074262, "top": 2290, "right": 3190, "bottom": 3925, "left": 765}, {"solidity": 0.996451902139106, "top": 445, "right": 3190, "bottom": 2075, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733705f.jpg"} -{"rects": [{"solidity": 0.9960664160233339, "top": 365, "right": 3140, "bottom": 1950, "left": 755}], "shape": {"h": 6045, "w": 3875}, "file": "/usr/local/google/home/danvk/milstein/728158f.jpg"} -{"rects": [{"solidity": 0.9960664349872728, "top": 745, "right": 3825, "bottom": 3155, "left": 2200}, {"solidity": 0.9949918498670068, "top": 750, "right": 2050, "bottom": 3150, "left": 435}, {"solidity": 0.9948441001632119, "top": 1050, "right": 5475, "bottom": 2840, "left": 4045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712951f.jpg"} -{"rects": [{"solidity": 0.9960664762154723, "top": 800, "right": 2130, "bottom": 3170, "left": 550}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711592f.jpg"} -{"rects": [{"solidity": 0.996066803436338, "top": 3810, "right": 3150, "bottom": 5465, "left": 715}, {"solidity": 0.9961480236571003, "top": 2015, "right": 3145, "bottom": 3670, "left": 710}, {"solidity": 0.996898779519682, "top": 310, "right": 3140, "bottom": 1930, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704661f.jpg"} -{"rects": [{"solidity": 0.9960669605547723, "top": 2200, "right": 3125, "bottom": 3850, "left": 695}, {"solidity": 0.9958779172769311, "top": 4080, "right": 3090, "bottom": 5725, "left": 660}, {"solidity": 0.9967678347425183, "top": 375, "right": 3120, "bottom": 1980, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701293f.jpg"} -{"rects": [{"solidity": 0.99606702815621, "top": 740, "right": 2335, "bottom": 3160, "left": 710}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711754f.jpg"} -{"rects": [{"solidity": 0.996067457554379, "top": 245, "right": 2920, "bottom": 1725, "left": 970}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719487f.jpg"} -{"rects": [{"solidity": 0.9960678969516306, "top": 600, "right": 4960, "bottom": 3620, "left": 1165}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709831f.jpg"} -{"rects": [{"solidity": 0.9960679159439833, "top": 635, "right": 2630, "bottom": 2035, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731340f.jpg"} -{"rects": [{"solidity": 0.996068023445951, "top": 715, "right": 4315, "bottom": 3395, "left": 2435}, {"solidity": 0.9949713711599678, "top": 735, "right": 2355, "bottom": 2095, "left": 530}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704469f.jpg"} -{"rects": [{"solidity": 0.9960681101695728, "top": 635, "right": 2525, "bottom": 3065, "left": 880}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711585f.jpg"} -{"rects": [{"solidity": 0.9960681219962547, "top": 405, "right": 3140, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719428f.jpg"} -{"rects": [{"solidity": 0.9960681606667819, "top": 795, "right": 3705, "bottom": 3190, "left": 515}, {"solidity": 0.9945794858996756, "top": 790, "right": 5585, "bottom": 3180, "left": 4000}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723457f.jpg"} -{"rects": [{"solidity": 0.9960682096536131, "top": 740, "right": 3915, "bottom": 3195, "left": 2235}, {"solidity": 0.997084585020275, "top": 725, "right": 2000, "bottom": 3170, "left": 365}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730585f.jpg"} -{"rects": [{"solidity": 0.9960682412910628, "top": 860, "right": 4355, "bottom": 3550, "left": 2550}, {"solidity": 0.9795042224260295, "top": 1375, "right": 2240, "bottom": 3555, "left": 455}], "shape": {"h": 4410, "w": 6900}, "file": "/usr/local/google/home/danvk/milstein/711643f.jpg"} -{"rects": [{"solidity": 0.9960683531194262, "top": 400, "right": 3205, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732365f.jpg"} -{"rects": [{"solidity": 0.9960685300904919, "top": 405, "right": 3025, "bottom": 2030, "left": 620}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727822f.jpg"} -{"rects": [{"solidity": 0.9960687293601366, "top": 1385, "right": 3205, "bottom": 4795, "left": 535}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717004f.jpg"} -{"rects": [{"solidity": 0.9960689358648179, "top": 2300, "right": 3265, "bottom": 3925, "left": 845}, {"solidity": 0.9964783370753026, "top": 415, "right": 3280, "bottom": 2040, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702247f.jpg"} -{"rects": [{"solidity": 0.9960690702400086, "top": 460, "right": 3270, "bottom": 2105, "left": 825}, {"solidity": 0.9961230918342622, "top": 3925, "right": 3260, "bottom": 5560, "left": 815}, {"solidity": 0.9973594433629512, "top": 2195, "right": 3235, "bottom": 3810, "left": 805}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/733280f.jpg"} -{"rects": [{"solidity": 0.9960691034039304, "top": 3220, "right": 3265, "bottom": 5095, "left": 575}, {"solidity": 0.9918885901524904, "top": 680, "right": 3305, "bottom": 2560, "left": 620}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711999f.jpg"} -{"rects": [{"solidity": 0.9960691903751029, "top": 790, "right": 3850, "bottom": 3155, "left": 2275}, {"solidity": 0.9946300371034168, "top": 805, "right": 2015, "bottom": 3160, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723473f.jpg"} -{"rects": [{"solidity": 0.9960694440888024, "top": 380, "right": 3125, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729968f.jpg"} -{"rects": [{"solidity": 0.9960697389115066, "top": 855, "right": 2025, "bottom": 3285, "left": 405}], "shape": {"h": 4065, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701220f.jpg"} -{"rects": [{"solidity": 0.9960698463017579, "top": 910, "right": 3335, "bottom": 2965, "left": 500}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718417f.jpg"} -{"rects": [{"solidity": 0.9960698589926927, "top": 820, "right": 2010, "bottom": 3225, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700747f.jpg"} -{"rects": [{"solidity": 0.9960698804676211, "top": 1090, "right": 2960, "bottom": 2830, "left": 1565}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708637f.jpg"} -{"rects": [{"solidity": 0.9960704257962687, "top": 2275, "right": 3160, "bottom": 3895, "left": 735}, {"solidity": 0.9955280935903773, "top": 415, "right": 3185, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718896f.jpg"} -{"rects": [{"solidity": 0.9960705275063074, "top": 345, "right": 3210, "bottom": 2215, "left": 420}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706034f.jpg"} -{"rects": [{"solidity": 0.9960705807778633, "top": 2300, "right": 3160, "bottom": 3915, "left": 745}, {"solidity": 0.9964905915530122, "top": 445, "right": 3155, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734034f.jpg"} -{"rects": [{"solidity": 0.9960708440728053, "top": 755, "right": 3825, "bottom": 3140, "left": 2230}, {"solidity": 0.9960290405510122, "top": 760, "right": 2015, "bottom": 3145, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716772f.jpg"} -{"rects": [{"solidity": 0.996070846840132, "top": 2170, "right": 3150, "bottom": 3795, "left": 730}, {"solidity": 0.9974142619411273, "top": 325, "right": 3145, "bottom": 1930, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719052f.jpg"} -{"rects": [{"solidity": 0.9960709025007861, "top": 810, "right": 2030, "bottom": 3205, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707079f.jpg"} -{"rects": [{"solidity": 0.9960709677419355, "top": 785, "right": 2025, "bottom": 3195, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727204f.jpg"} -{"rects": [{"solidity": 0.9960711150842622, "top": 390, "right": 3230, "bottom": 2005, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733888f.jpg"} -{"rects": [{"solidity": 0.9960711291984208, "top": 2210, "right": 3175, "bottom": 3840, "left": 755}, {"solidity": 0.9967752710827894, "top": 440, "right": 3185, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705672f.jpg"} -{"rects": [{"solidity": 0.9960712355543474, "top": 895, "right": 4085, "bottom": 3315, "left": 2470}, {"solidity": 0.9951106221733285, "top": 2100, "right": 2370, "bottom": 3240, "left": 535}, {"solidity": 0.9958535155647426, "top": 895, "right": 2335, "bottom": 2020, "left": 510}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706915f.jpg"} -{"rects": [{"solidity": 0.9960712972460374, "top": 700, "right": 5750, "bottom": 3140, "left": 4140}, {"solidity": 0.9961966446391739, "top": 725, "right": 3910, "bottom": 3120, "left": 2305}, {"solidity": 0.9930562195632606, "top": 720, "right": 2060, "bottom": 3115, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722114f.jpg"} -{"rects": [{"solidity": 0.9960714967827765, "top": 435, "right": 2655, "bottom": 2835, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710348f.jpg"} -{"rects": [{"solidity": 0.996071613022334, "top": 615, "right": 3260, "bottom": 2595, "left": 500}, {"solidity": 0.9956485750895537, "top": 3140, "right": 3195, "bottom": 5100, "left": 435}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714901f.jpg"} -{"rects": [{"solidity": 0.9960718130764978, "top": 420, "right": 3120, "bottom": 2035, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700286f.jpg"} -{"rects": [{"solidity": 0.9960719407149198, "top": 795, "right": 2065, "bottom": 3205, "left": 440}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717688f.jpg"} -{"rects": [{"solidity": 0.9960720099028236, "top": 460, "right": 3145, "bottom": 2075, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712136f.jpg"} -{"rects": [{"solidity": 0.996072057860019, "top": 2215, "right": 3075, "bottom": 3860, "left": 625}, {"solidity": 0.9979025285115009, "top": 390, "right": 3075, "bottom": 2005, "left": 645}, {"solidity": 0.99486087705983, "top": 4025, "right": 3035, "bottom": 5695, "left": 605}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701683f.jpg"} -{"rects": [{"solidity": 0.9960721119951657, "top": 805, "right": 2050, "bottom": 3185, "left": 470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723503f.jpg"} -{"rects": [{"solidity": 0.9960723748152684, "top": 2075, "right": 5225, "bottom": 3575, "left": 3325}, {"solidity": 0.9969817868002874, "top": 460, "right": 5245, "bottom": 1930, "left": 3345}, {"solidity": 0.9982931590176586, "top": 460, "right": 2755, "bottom": 1940, "left": 880}, {"solidity": 0.9984459510216346, "top": 2080, "right": 2735, "bottom": 3550, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731442f.jpg"} -{"rects": [{"solidity": 0.9960728661537305, "top": 890, "right": 2005, "bottom": 3290, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728303f.jpg"} -{"rects": [{"solidity": 0.9960728960408313, "top": 730, "right": 2105, "bottom": 3120, "left": 510}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709662f.jpg"} -{"rects": [{"solidity": 0.9960728990666163, "top": 895, "right": 5720, "bottom": 3295, "left": 4120}, {"solidity": 0.9974108803006978, "top": 925, "right": 2145, "bottom": 3300, "left": 550}, {"solidity": 0.9964033715879751, "top": 880, "right": 3925, "bottom": 3275, "left": 2350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719868f.jpg"} -{"rects": [{"solidity": 0.9960729108516784, "top": 670, "right": 2625, "bottom": 2100, "left": 805}, {"solidity": 0.9958864098603826, "top": 2120, "right": 2620, "bottom": 3510, "left": 835}, {"solidity": 0.9974798979690942, "top": 655, "right": 5155, "bottom": 2040, "left": 3375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705303f.jpg"} -{"rects": [{"solidity": 0.9960729797947443, "top": 395, "right": 3095, "bottom": 2025, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730630f.jpg"} -{"rects": [{"solidity": 0.996073083368933, "top": 880, "right": 3810, "bottom": 3280, "left": 2210}, {"solidity": 0.9943683756531395, "top": 835, "right": 2020, "bottom": 3230, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717454f.jpg"} -{"rects": [{"solidity": 0.9960731523130971, "top": 335, "right": 3130, "bottom": 1940, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724677f.jpg"} -{"rects": [{"solidity": 0.9960732984293194, "top": 455, "right": 2985, "bottom": 2075, "left": 555}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729642f.jpg"} -{"rects": [{"solidity": 0.9960735610006785, "top": 460, "right": 3175, "bottom": 2475, "left": 350}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703604f.jpg"} -{"rects": [{"solidity": 0.9960737534725433, "top": 2290, "right": 3100, "bottom": 3915, "left": 665}, {"solidity": 0.9957936287069646, "top": 420, "right": 3095, "bottom": 2050, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728322f.jpg"} -{"rects": [{"solidity": 0.9960738963623643, "top": 3985, "right": 3075, "bottom": 5625, "left": 645}, {"solidity": 0.9961934774549034, "top": 2195, "right": 3095, "bottom": 3840, "left": 665}, {"solidity": 0.9950814612882071, "top": 415, "right": 3105, "bottom": 2050, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730931f.jpg"} -{"rects": [{"solidity": 0.9960740656818171, "top": 2305, "right": 3045, "bottom": 3705, "left": 1215}, {"solidity": 0.9938980847176325, "top": 4105, "right": 3030, "bottom": 5525, "left": 1215}, {"solidity": 0.9948367097105398, "top": 550, "right": 3035, "bottom": 1965, "left": 1220}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/727030f.jpg"} -{"rects": [{"solidity": 0.9960741733428544, "top": 425, "right": 3185, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719921f.jpg"} -{"rects": [{"solidity": 0.9960742690143507, "top": 580, "right": 2605, "bottom": 2015, "left": 775}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704108f.jpg"} -{"rects": [{"solidity": 0.9960742856037801, "top": 2310, "right": 3090, "bottom": 3925, "left": 660}, {"solidity": 0.9967908527993589, "top": 425, "right": 3100, "bottom": 2045, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729095f.jpg"} -{"rects": [{"solidity": 0.9960743570480955, "top": 2260, "right": 3150, "bottom": 3895, "left": 715}, {"solidity": 0.9968419770185698, "top": 425, "right": 3180, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706731f.jpg"} -{"rects": [{"solidity": 0.996074526365671, "top": 2230, "right": 3075, "bottom": 3870, "left": 645}, {"solidity": 0.9957772881880025, "top": 380, "right": 3090, "bottom": 2015, "left": 665}, {"solidity": 0.9954237025761427, "top": 4080, "right": 3050, "bottom": 5725, "left": 620}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730635f.jpg"} -{"rects": [{"solidity": 0.9960746951219512, "top": 2280, "right": 3230, "bottom": 3935, "left": 780}, {"solidity": 0.9963821102025764, "top": 400, "right": 3240, "bottom": 2040, "left": 800}, {"solidity": 0.9956412302781018, "top": 4150, "right": 3195, "bottom": 5775, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732131f.jpg"} -{"rects": [{"solidity": 0.9960747410553725, "top": 825, "right": 2020, "bottom": 3255, "left": 390}, {"solidity": 0.9988095623200596, "top": 835, "right": 3860, "bottom": 3250, "left": 2250}, {"solidity": 0.9989857121958355, "top": 835, "right": 5705, "bottom": 3245, "left": 4100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713547f.jpg"} -{"rects": [{"solidity": 0.9960747574511329, "top": 2205, "right": 3215, "bottom": 3855, "left": 770}, {"solidity": 0.9994656239400475, "top": 370, "right": 3200, "bottom": 1990, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706737f.jpg"} -{"rects": [{"solidity": 0.9960749109453639, "top": 615, "right": 2680, "bottom": 2055, "left": 830}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702846f.jpg"} -{"rects": [{"solidity": 0.9960749272984257, "top": 820, "right": 2055, "bottom": 3235, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718891f.jpg"} -{"rects": [{"solidity": 0.9960749536582009, "top": 2265, "right": 3165, "bottom": 3895, "left": 735}, {"solidity": 0.9964919924521773, "top": 4145, "right": 3160, "bottom": 5765, "left": 725}, {"solidity": 0.9969503093028407, "top": 385, "right": 3175, "bottom": 2010, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723166f.jpg"} -{"rects": [{"solidity": 0.9960749873974757, "top": 2250, "right": 3210, "bottom": 3895, "left": 760}, {"solidity": 0.9953632798966452, "top": 395, "right": 3180, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709793f.jpg"} -{"rects": [{"solidity": 0.9960753255331497, "top": 785, "right": 5725, "bottom": 3215, "left": 4080}, {"solidity": 0.9971366864098956, "top": 760, "right": 3965, "bottom": 3160, "left": 2360}, {"solidity": 0.9966831798253513, "top": 755, "right": 2075, "bottom": 3155, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723496f.jpg"} -{"rects": [{"solidity": 0.9960753608370838, "top": 865, "right": 3875, "bottom": 3285, "left": 2255}, {"solidity": 0.9982693245131044, "top": 870, "right": 2000, "bottom": 3275, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729269f.jpg"} -{"rects": [{"solidity": 0.996075669148722, "top": 395, "right": 3125, "bottom": 2005, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729233f.jpg"} -{"rects": [{"solidity": 0.9960757741675471, "top": 870, "right": 5710, "bottom": 3300, "left": 4080}, {"solidity": 0.9970948583501887, "top": 855, "right": 3830, "bottom": 3280, "left": 2215}, {"solidity": 0.9957078666756086, "top": 1010, "right": 1975, "bottom": 2925, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712106f.jpg"} -{"rects": [{"solidity": 0.9960757910935847, "top": 365, "right": 3225, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700967f.jpg"} -{"rects": [{"solidity": 0.9960759241802009, "top": 415, "right": 3185, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724210f.jpg"} -{"rects": [{"solidity": 0.9960759582369841, "top": 425, "right": 3190, "bottom": 2075, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704160f.jpg"} -{"rects": [{"solidity": 0.9960760128711891, "top": 430, "right": 3060, "bottom": 2075, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701289f.jpg"} -{"rects": [{"solidity": 0.9960760591082012, "top": 2210, "right": 3115, "bottom": 3830, "left": 695}, {"solidity": 0.9992098999856937, "top": 375, "right": 3105, "bottom": 1980, "left": 695}, {"solidity": 0.9973079649125088, "top": 4070, "right": 3105, "bottom": 5675, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729076f.jpg"} -{"rects": [{"solidity": 0.9960760600652148, "top": 390, "right": 3205, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724991f.jpg"} -{"rects": [{"solidity": 0.9960762349985594, "top": 4120, "right": 3230, "bottom": 5735, "left": 815}, {"solidity": 0.9975215724029364, "top": 2280, "right": 3230, "bottom": 3885, "left": 820}, {"solidity": 0.9962696796428292, "top": 425, "right": 3220, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701251f.jpg"} -{"rects": [{"solidity": 0.9960767049500848, "top": 780, "right": 2060, "bottom": 3200, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719478f.jpg"} -{"rects": [{"solidity": 0.9960768524632406, "top": 800, "right": 2040, "bottom": 3215, "left": 420}, {"solidity": 0.9953317168080856, "top": 800, "right": 3900, "bottom": 3215, "left": 2280}, {"solidity": 0.9950674381444834, "top": 800, "right": 5740, "bottom": 3205, "left": 4140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709083f.jpg"} -{"rects": [{"solidity": 0.9960769918443382, "top": 745, "right": 2430, "bottom": 3295, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723239f.jpg"} -{"rects": [{"solidity": 0.9960772470691799, "top": 3290, "right": 3190, "bottom": 4915, "left": 760}, {"solidity": 0.9958641139523441, "top": 840, "right": 3215, "bottom": 2465, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731006f.jpg"} -{"rects": [{"solidity": 0.9960777241783508, "top": 4065, "right": 3320, "bottom": 5710, "left": 900}, {"solidity": 0.9971764083268525, "top": 375, "right": 3320, "bottom": 2000, "left": 910}, {"solidity": 0.9976990381064129, "top": 2210, "right": 3325, "bottom": 3820, "left": 930}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705500f.jpg"} -{"rects": [{"solidity": 0.9960777559055118, "top": 730, "right": 2610, "bottom": 2140, "left": 790}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726400f.jpg"} -{"rects": [{"solidity": 0.9960778004794157, "top": 840, "right": 3715, "bottom": 3255, "left": 2090}, {"solidity": 0.9771984489682869, "top": 875, "right": 5640, "bottom": 3255, "left": 4065}, {"solidity": 0.9963060605907267, "top": 1160, "right": 1770, "bottom": 2960, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730804f.jpg"} -{"rects": [{"solidity": 0.9960778948328545, "top": 4085, "right": 3040, "bottom": 5710, "left": 645}, {"solidity": 0.9958522243560554, "top": 2230, "right": 3030, "bottom": 3835, "left": 635}, {"solidity": 0.9955312300057352, "top": 390, "right": 3020, "bottom": 1985, "left": 615}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/729045f.jpg"} -{"rects": [{"solidity": 0.9960780585201208, "top": 625, "right": 2785, "bottom": 2065, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704045f.jpg"} -{"rects": [{"solidity": 0.9960782206941012, "top": 2280, "right": 3320, "bottom": 3955, "left": 865}, {"solidity": 0.9961384321272285, "top": 4045, "right": 3250, "bottom": 5710, "left": 815}, {"solidity": 0.9958194034210782, "top": 445, "right": 3325, "bottom": 2055, "left": 915}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703915f.jpg"} -{"rects": [{"solidity": 0.9960782400178452, "top": 1260, "right": 3285, "bottom": 4690, "left": 630}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724486f.jpg"} -{"rects": [{"solidity": 0.9960782998138115, "top": 900, "right": 1975, "bottom": 3275, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717857f.jpg"} -{"rects": [{"solidity": 0.996078431372549, "top": 765, "right": 3795, "bottom": 3175, "left": 2175}, {"solidity": 0.9960302881536126, "top": 765, "right": 5590, "bottom": 3170, "left": 3975}, {"solidity": 0.9952244100307096, "top": 775, "right": 1995, "bottom": 3180, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705001f.jpg"} -{"rects": [{"solidity": 0.996078570943246, "top": 395, "right": 3085, "bottom": 2015, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728597f.jpg"} -{"rects": [{"solidity": 0.9960786492253698, "top": 815, "right": 2160, "bottom": 3220, "left": 560}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710180f.jpg"} -{"rects": [{"solidity": 0.9960787376463965, "top": 415, "right": 3135, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707698f.jpg"} -{"rects": [{"solidity": 0.996078944689268, "top": 340, "right": 5525, "bottom": 3555, "left": 1480}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733401f.jpg"} -{"rects": [{"solidity": 0.9960791406406438, "top": 830, "right": 2035, "bottom": 3260, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724371f.jpg"} -{"rects": [{"solidity": 0.996079277636607, "top": 370, "right": 3185, "bottom": 2410, "left": 640}], "shape": {"h": 2560, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727097f.jpg"} -{"rects": [{"solidity": 0.9960794631430557, "top": 2370, "right": 3135, "bottom": 3990, "left": 725}, {"solidity": 0.9937832183366876, "top": 550, "right": 3140, "bottom": 2140, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724895f.jpg"} -{"rects": [{"solidity": 0.9960798345804188, "top": 795, "right": 3880, "bottom": 3260, "left": 2215}, {"solidity": 0.9960938251650022, "top": 775, "right": 2005, "bottom": 3215, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723030f.jpg"} -{"rects": [{"solidity": 0.9960799899996474, "top": 4170, "right": 3205, "bottom": 5800, "left": 790}, {"solidity": 0.9953582207588889, "top": 2310, "right": 3235, "bottom": 3935, "left": 810}, {"solidity": 0.9960560538263484, "top": 455, "right": 3235, "bottom": 2055, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704882f.jpg"} -{"rects": [{"solidity": 0.9960800847062156, "top": 875, "right": 5690, "bottom": 3290, "left": 4060}, {"solidity": 0.9966028930201377, "top": 880, "right": 2035, "bottom": 3300, "left": 415}, {"solidity": 0.996843409766289, "top": 890, "right": 3865, "bottom": 3300, "left": 2250}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709415f.jpg"} -{"rects": [{"solidity": 0.9960801678947976, "top": 385, "right": 3235, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700053f.jpg"} -{"rects": [{"solidity": 0.9960804723994577, "top": 2215, "right": 3140, "bottom": 3855, "left": 715}, {"solidity": 0.9965090006367842, "top": 365, "right": 3140, "bottom": 1990, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734382f.jpg"} -{"rects": [{"solidity": 0.9960805822035339, "top": 2190, "right": 3305, "bottom": 3820, "left": 885}, {"solidity": 0.9967634610596836, "top": 300, "right": 3275, "bottom": 1915, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704369f.jpg"} -{"rects": [{"solidity": 0.9960807968828966, "top": 755, "right": 3815, "bottom": 3165, "left": 2200}, {"solidity": 0.9950486641844667, "top": 775, "right": 5685, "bottom": 3185, "left": 4070}, {"solidity": 0.9982548166070065, "top": 755, "right": 1975, "bottom": 3150, "left": 385}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721795f.jpg"} -{"rects": [{"solidity": 0.9960808257757632, "top": 385, "right": 3080, "bottom": 2030, "left": 655}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705485f.jpg"} -{"rects": [{"solidity": 0.9960808648559941, "top": 485, "right": 4975, "bottom": 3670, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717707f.jpg"} -{"rects": [{"solidity": 0.9960808946186955, "top": 595, "right": 3425, "bottom": 2585, "left": 345}, {"solidity": 0.9982390611772765, "top": 2815, "right": 3095, "bottom": 4435, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715523f.jpg"} -{"rects": [{"solidity": 0.9960809107525705, "top": 2460, "right": 2495, "bottom": 3960, "left": 400}, {"solidity": 0.9969270862932623, "top": 675, "right": 2510, "bottom": 2165, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716136f.jpg"} -{"rects": [{"solidity": 0.9960809778955406, "top": 445, "right": 3140, "bottom": 2075, "left": 725}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701906f.jpg"} -{"rects": [{"solidity": 0.9960810257167996, "top": 795, "right": 2010, "bottom": 3175, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713358f.jpg"} -{"rects": [{"solidity": 0.9960810779497636, "top": 1325, "right": 2395, "bottom": 3720, "left": 545}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1517135.jpg"} -{"rects": [{"solidity": 0.9960812964930924, "top": 825, "right": 2080, "bottom": 3215, "left": 490}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712571f.jpg"} -{"rects": [{"solidity": 0.9960813648801732, "top": 3325, "right": 3380, "bottom": 5410, "left": 535}, {"solidity": 0.9958949539178947, "top": 825, "right": 3410, "bottom": 2910, "left": 565}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731923f.jpg"} -{"rects": [{"solidity": 0.9960813990856597, "top": 750, "right": 3855, "bottom": 3110, "left": 2305}, {"solidity": 0.9962422925475596, "top": 750, "right": 2010, "bottom": 3095, "left": 445}, {"solidity": 0.9959972992157338, "top": 760, "right": 5675, "bottom": 3120, "left": 4120}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731604f.jpg"} -{"rects": [{"solidity": 0.9960815740567753, "top": 675, "right": 2745, "bottom": 2090, "left": 930}, {"solidity": 0.9958739869383901, "top": 2095, "right": 2735, "bottom": 3525, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726042f.jpg"} -{"rects": [{"solidity": 0.9960815853815468, "top": 650, "right": 2210, "bottom": 3075, "left": 575}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709494f.jpg"} -{"rects": [{"solidity": 0.9960816115217344, "top": 1055, "right": 3290, "bottom": 5060, "left": 540}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709822f.jpg"} -{"rects": [{"solidity": 0.996081992734821, "top": 850, "right": 2040, "bottom": 3270, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728654f.jpg"} -{"rects": [{"solidity": 0.9960820938019636, "top": 445, "right": 3110, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700435f.jpg"} -{"rects": [{"solidity": 0.9960826581915753, "top": 795, "right": 2010, "bottom": 3205, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728496f.jpg"} -{"rects": [{"solidity": 0.9960828296715385, "top": 465, "right": 5075, "bottom": 3690, "left": 1085}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731849f.jpg"} -{"rects": [{"solidity": 0.9960831089610747, "top": 260, "right": 3220, "bottom": 1925, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702532f.jpg"} -{"rects": [{"solidity": 0.9960831173567065, "top": 725, "right": 2020, "bottom": 3140, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715556f.jpg"} -{"rects": [{"solidity": 0.9960831681401263, "top": 475, "right": 3360, "bottom": 2120, "left": 930}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707077f.jpg"} -{"rects": [{"solidity": 0.9960832631145774, "top": 670, "right": 3295, "bottom": 2590, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714323f.jpg"} -{"rects": [{"solidity": 0.9960833801932809, "top": 765, "right": 1975, "bottom": 3170, "left": 360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713639f.jpg"} -{"rects": [{"solidity": 0.9960835002908291, "top": 800, "right": 5730, "bottom": 3220, "left": 4115}, {"solidity": 0.9971085164390392, "top": 800, "right": 3875, "bottom": 3215, "left": 2265}, {"solidity": 0.9954620929397028, "top": 785, "right": 2000, "bottom": 3215, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723232f.jpg"} -{"rects": [{"solidity": 0.9960836752998847, "top": 770, "right": 2025, "bottom": 3175, "left": 425}, {"solidity": 0.9975151000314375, "top": 790, "right": 3845, "bottom": 3175, "left": 2265}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711050f.jpg"} -{"rects": [{"solidity": 0.9960836933918782, "top": 520, "right": 5045, "bottom": 3745, "left": 1025}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717896f.jpg"} -{"rects": [{"solidity": 0.9960839170067534, "top": 780, "right": 2240, "bottom": 3180, "left": 645}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709524f.jpg"} -{"rects": [{"solidity": 0.9960839195177942, "top": 490, "right": 5085, "bottom": 3565, "left": 1060}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713292f.jpg"} -{"rects": [{"solidity": 0.9960839497022901, "top": 2650, "right": 3525, "bottom": 4500, "left": 785}, {"solidity": 0.9958136612421743, "top": 460, "right": 3520, "bottom": 2295, "left": 795}], "shape": {"h": 6900, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711234f.jpg"} -{"rects": [{"solidity": 0.9960839608642378, "top": 470, "right": 2945, "bottom": 3805, "left": 495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712057f.jpg"} -{"rects": [{"solidity": 0.9960840769414333, "top": 470, "right": 2510, "bottom": 2610, "left": 995}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508991.jpg"} -{"rects": [{"solidity": 0.9960841805365248, "top": 4075, "right": 3230, "bottom": 5735, "left": 790}, {"solidity": 0.9960384814823164, "top": 2295, "right": 3255, "bottom": 3930, "left": 830}, {"solidity": 0.9958846254583552, "top": 445, "right": 3250, "bottom": 2050, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705116f.jpg"} -{"rects": [{"solidity": 0.9960841836734694, "top": 910, "right": 2075, "bottom": 3345, "left": 425}, {"solidity": 0.9954295302013423, "top": 945, "right": 3890, "bottom": 3345, "left": 2315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734264f.jpg"} -{"rects": [{"solidity": 0.9960842322309631, "top": 2280, "right": 3025, "bottom": 3905, "left": 590}, {"solidity": 0.9984142638896947, "top": 415, "right": 3020, "bottom": 2025, "left": 595}, {"solidity": 0.9953624139906412, "top": 4130, "right": 3010, "bottom": 5760, "left": 585}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722968f.jpg"} -{"rects": [{"solidity": 0.9960843233325134, "top": 430, "right": 3180, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723485f.jpg"} -{"rects": [{"solidity": 0.9960844209056211, "top": 2250, "right": 3225, "bottom": 3880, "left": 785}, {"solidity": 0.9954476189261736, "top": 400, "right": 3225, "bottom": 2025, "left": 790}, {"solidity": 0.9962117804310666, "top": 4090, "right": 3205, "bottom": 5715, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727533f.jpg"} -{"rects": [{"solidity": 0.9960845069505697, "top": 445, "right": 3205, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720478f.jpg"} -{"rects": [{"solidity": 0.9960845732184808, "top": 2170, "right": 2650, "bottom": 3575, "left": 840}, {"solidity": 0.9951965454743535, "top": 690, "right": 5250, "bottom": 2110, "left": 3450}, {"solidity": 0.9960109822334521, "top": 700, "right": 2650, "bottom": 2110, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725153f.jpg"} -{"rects": [{"solidity": 0.9960848414850196, "top": 2365, "right": 3040, "bottom": 3780, "left": 1220}, {"solidity": 0.9932808752700533, "top": 545, "right": 3045, "bottom": 1955, "left": 1225}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726974f.jpg"} -{"rects": [{"solidity": 0.9960850342946864, "top": 1185, "right": 3430, "bottom": 5085, "left": 305}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724799f.jpg"} -{"rects": [{"solidity": 0.9960852772955927, "top": 2185, "right": 2710, "bottom": 4570, "left": 1100}, {"solidity": 0.9481371490280778, "top": 1000, "right": 3015, "bottom": 2050, "left": 835}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723989f.jpg"} -{"rects": [{"solidity": 0.9960854196488563, "top": 570, "right": 3175, "bottom": 2195, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709233f.jpg"} -{"rects": [{"solidity": 0.9960854422352735, "top": 3220, "right": 3320, "bottom": 5135, "left": 600}, {"solidity": 0.9940836352177599, "top": 630, "right": 3355, "bottom": 2550, "left": 660}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/719383f.jpg"} -{"rects": [{"solidity": 0.9960854951999517, "top": 440, "right": 3200, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701152f.jpg"} -{"rects": [{"solidity": 0.996085616993676, "top": 455, "right": 3320, "bottom": 2075, "left": 915}, {"solidity": 0.997654595303993, "top": 2320, "right": 3305, "bottom": 3935, "left": 905}, {"solidity": 0.9971572726711565, "top": 4095, "right": 3300, "bottom": 5715, "left": 900}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/706494f.jpg"} -{"rects": [{"solidity": 0.9960856253310424, "top": 420, "right": 3230, "bottom": 2045, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707644f.jpg"} -{"rects": [{"solidity": 0.9960856697323617, "top": 2240, "right": 3165, "bottom": 3885, "left": 730}, {"solidity": 0.9963812398880546, "top": 380, "right": 3175, "bottom": 2015, "left": 745}, {"solidity": 0.9967205637675294, "top": 4110, "right": 3145, "bottom": 5735, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727781f.jpg"} -{"rects": [{"solidity": 0.9960857052625024, "top": 505, "right": 3215, "bottom": 2515, "left": 400}, {"solidity": 0.995867980414138, "top": 3245, "right": 3240, "bottom": 5255, "left": 420}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728758f.jpg"} -{"rects": [{"solidity": 0.9960857743294523, "top": 710, "right": 2685, "bottom": 2105, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704425f.jpg"} -{"rects": [{"solidity": 0.9960860220707605, "top": 495, "right": 3220, "bottom": 2090, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709632f.jpg"} -{"rects": [{"solidity": 0.9960860336018535, "top": 415, "right": 3095, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729877f.jpg"} -{"rects": [{"solidity": 0.9960860736276693, "top": 805, "right": 2035, "bottom": 3210, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721898f.jpg"} -{"rects": [{"solidity": 0.9960861555721289, "top": 570, "right": 3180, "bottom": 2195, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727542f.jpg"} -{"rects": [{"solidity": 0.9960861967001787, "top": 395, "right": 3050, "bottom": 1980, "left": 650}, {"solidity": 0.996467806148412, "top": 4075, "right": 3045, "bottom": 5660, "left": 650}, {"solidity": 0.9958935993349959, "top": 2235, "right": 3055, "bottom": 3820, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728899f.jpg"} -{"rects": [{"solidity": 0.9960864386591799, "top": 2225, "right": 3175, "bottom": 3845, "left": 750}, {"solidity": 0.996089129937596, "top": 4035, "right": 3175, "bottom": 5640, "left": 775}, {"solidity": 0.9994779343602855, "top": 450, "right": 3160, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730948f.jpg"} -{"rects": [{"solidity": 0.9960864715916546, "top": 2450, "right": 3345, "bottom": 4065, "left": 945}, {"solidity": 0.9990452015556228, "top": 700, "right": 3345, "bottom": 2295, "left": 975}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/710293f.jpg"} -{"rects": [{"solidity": 0.9960867455283238, "top": 820, "right": 2135, "bottom": 3170, "left": 575}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709982f.jpg"} -{"rects": [{"solidity": 0.9960868487869553, "top": 410, "right": 3160, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705182f.jpg"} -{"rects": [{"solidity": 0.996087038563526, "top": 725, "right": 2645, "bottom": 2135, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725483f.jpg"} -{"rects": [{"solidity": 0.9960870541014374, "top": 520, "right": 2490, "bottom": 2935, "left": 875}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715086f.jpg"} -{"rects": [{"solidity": 0.9960871533450115, "top": 1105, "right": 3510, "bottom": 5125, "left": 330}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731485f.jpg"} -{"rects": [{"solidity": 0.9960872066596951, "top": 2335, "right": 3195, "bottom": 3975, "left": 760}, {"solidity": 0.9972609585683944, "top": 4170, "right": 3175, "bottom": 5790, "left": 750}, {"solidity": 0.9920968313852268, "top": 460, "right": 3185, "bottom": 2095, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726619f.jpg"} -{"rects": [{"solidity": 0.996087492597303, "top": 410, "right": 3185, "bottom": 2040, "left": 770}, {"solidity": 0.9961284520751299, "top": 2230, "right": 3165, "bottom": 3830, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719668f.jpg"} -{"rects": [{"solidity": 0.9960875197739745, "top": 2265, "right": 3135, "bottom": 3885, "left": 730}, {"solidity": 0.9961545850305582, "top": 420, "right": 3135, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719898f.jpg"} -{"rects": [{"solidity": 0.9960876018886998, "top": 2255, "right": 3150, "bottom": 3900, "left": 725}, {"solidity": 0.9948099733720649, "top": 415, "right": 3130, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709292f.jpg"} -{"rects": [{"solidity": 0.9960877508870413, "top": 430, "right": 3145, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722757f.jpg"} -{"rects": [{"solidity": 0.9960883268619725, "top": 2260, "right": 3170, "bottom": 3890, "left": 745}, {"solidity": 0.9975011945194158, "top": 4110, "right": 3150, "bottom": 5725, "left": 730}, {"solidity": 0.9974393295699238, "top": 420, "right": 3165, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700638f.jpg"} -{"rects": [{"solidity": 0.9960883638603937, "top": 770, "right": 2035, "bottom": 3185, "left": 425}, {"solidity": 0.9964972929171473, "top": 775, "right": 5765, "bottom": 3180, "left": 4160}, {"solidity": 0.9973671902850957, "top": 775, "right": 3895, "bottom": 3180, "left": 2295}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718227f.jpg"} -{"rects": [{"solidity": 0.9960885766501317, "top": 2035, "right": 2660, "bottom": 3490, "left": 830}, {"solidity": 0.9959362855634986, "top": 565, "right": 2645, "bottom": 2020, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705305f.jpg"} -{"rects": [{"solidity": 0.9960889629482829, "top": 2420, "right": 2515, "bottom": 3915, "left": 420}, {"solidity": 0.9971724328452801, "top": 685, "right": 2525, "bottom": 2170, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716116f.jpg"} -{"rects": [{"solidity": 0.9960891049863911, "top": 410, "right": 3190, "bottom": 2005, "left": 795}, {"solidity": 0.9958390572502027, "top": 4080, "right": 3185, "bottom": 5680, "left": 795}, {"solidity": 0.9973784835853802, "top": 2275, "right": 3170, "bottom": 3835, "left": 820}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724611f.jpg"} -{"rects": [{"solidity": 0.9960891276718064, "top": 485, "right": 3300, "bottom": 2330, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713802f.jpg"} -{"rects": [{"solidity": 0.9960893417439122, "top": 3495, "right": 3270, "bottom": 5105, "left": 865}, {"solidity": 0.9965753536675116, "top": 945, "right": 3265, "bottom": 2550, "left": 865}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731004f.jpg"} -{"rects": [{"solidity": 0.9960894362811968, "top": 370, "right": 3060, "bottom": 1985, "left": 645}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724594f.jpg"} -{"rects": [{"solidity": 0.9960894363131501, "top": 3245, "right": 3215, "bottom": 5165, "left": 515}, {"solidity": 0.9942266690958151, "top": 725, "right": 3245, "bottom": 2640, "left": 525}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/717872f.jpg"} -{"rects": [{"solidity": 0.9960895655543147, "top": 470, "right": 3200, "bottom": 2075, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723066f.jpg"} -{"rects": [{"solidity": 0.9960896119691877, "top": 3285, "right": 3255, "bottom": 4895, "left": 860}, {"solidity": 0.9965722899462577, "top": 870, "right": 3210, "bottom": 2475, "left": 815}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/730700f.jpg"} -{"rects": [{"solidity": 0.9960897181421199, "top": 770, "right": 2735, "bottom": 2180, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727904f.jpg"} -{"rects": [{"solidity": 0.9960900505103651, "top": 360, "right": 3105, "bottom": 1980, "left": 730}, {"solidity": 0.9975894813732652, "top": 2270, "right": 3120, "bottom": 3870, "left": 740}, {"solidity": 0.995723630749228, "top": 4170, "right": 3115, "bottom": 5760, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723038f.jpg"} -{"rects": [{"solidity": 0.9960901404546295, "top": 595, "right": 1550, "bottom": 2400, "left": 335}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716451f.jpg"} -{"rects": [{"solidity": 0.9960903590053565, "top": 755, "right": 3895, "bottom": 3180, "left": 2260}, {"solidity": 0.9961380798975356, "top": 740, "right": 2040, "bottom": 3155, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731819f.jpg"} -{"rects": [{"solidity": 0.9960903881777433, "top": 785, "right": 5595, "bottom": 3215, "left": 3955}, {"solidity": 0.9981628884051736, "top": 775, "right": 2020, "bottom": 3180, "left": 400}, {"solidity": 0.9964397506208609, "top": 785, "right": 3805, "bottom": 3200, "left": 2185}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722913f.jpg"} -{"rects": [{"solidity": 0.9960906260946577, "top": 405, "right": 3130, "bottom": 2015, "left": 745}, {"solidity": 0.9969943652679247, "top": 2275, "right": 3130, "bottom": 3870, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726205f.jpg"} -{"rects": [{"solidity": 0.9960907876811157, "top": 430, "right": 3120, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714135f.jpg"} -{"rects": [{"solidity": 0.9960908243399118, "top": 2230, "right": 3085, "bottom": 3895, "left": 640}, {"solidity": 0.995119087875559, "top": 4105, "right": 3080, "bottom": 5750, "left": 655}, {"solidity": 0.9960319520330162, "top": 420, "right": 3075, "bottom": 2040, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710634f.jpg"} -{"rects": [{"solidity": 0.9960909806370205, "top": 820, "right": 2030, "bottom": 3230, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721970f.jpg"} -{"rects": [{"solidity": 0.9960915935779966, "top": 1080, "right": 5445, "bottom": 2705, "left": 640}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730332f.jpg"} -{"rects": [{"solidity": 0.9960916960312665, "top": 515, "right": 2750, "bottom": 2630, "left": 1225}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508167.jpg"} -{"rects": [{"solidity": 0.9960917211175305, "top": 415, "right": 3160, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709273f.jpg"} -{"rects": [{"solidity": 0.996092367441816, "top": 3210, "right": 3270, "bottom": 5140, "left": 535}, {"solidity": 0.9953024930225033, "top": 700, "right": 3250, "bottom": 2495, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713363f.jpg"} -{"rects": [{"solidity": 0.9960924437990236, "top": 2190, "right": 3040, "bottom": 3830, "left": 600}, {"solidity": 0.9968272796553692, "top": 4055, "right": 3035, "bottom": 5685, "left": 600}, {"solidity": 0.9953381636961139, "top": 350, "right": 3030, "bottom": 1950, "left": 610}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701534f.jpg"} -{"rects": [{"solidity": 0.9960926062088845, "top": 2195, "right": 3070, "bottom": 3800, "left": 660}, {"solidity": 0.9979717303696032, "top": 4045, "right": 3045, "bottom": 5655, "left": 680}, {"solidity": 0.995311011795736, "top": 365, "right": 3065, "bottom": 1960, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730748f.jpg"} -{"rects": [{"solidity": 0.9960927665501581, "top": 730, "right": 1990, "bottom": 3140, "left": 380}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730178f.jpg"} -{"rects": [{"solidity": 0.996092803978236, "top": 645, "right": 4220, "bottom": 3065, "left": 2590}, {"solidity": 0.9959139701457771, "top": 650, "right": 2510, "bottom": 3070, "left": 865}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700674f.jpg"} -{"rects": [{"solidity": 0.9960928986269054, "top": 300, "right": 2470, "bottom": 2735, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700249f.jpg"} -{"rects": [{"solidity": 0.9960935102287773, "top": 625, "right": 2480, "bottom": 3475, "left": 450}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707829f.jpg"} -{"rects": [{"solidity": 0.9960935835799423, "top": 385, "right": 3200, "bottom": 1980, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724098f.jpg"} -{"rects": [{"solidity": 0.9960937153206261, "top": 3190, "right": 3220, "bottom": 5210, "left": 395}, {"solidity": 0.996458569178946, "top": 605, "right": 3200, "bottom": 2590, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729422f.jpg"} -{"rects": [{"solidity": 0.9960940381168004, "top": 2230, "right": 3225, "bottom": 3855, "left": 800}, {"solidity": 0.9974914797367666, "top": 435, "right": 3210, "bottom": 2050, "left": 790}, {"solidity": 0.9956323936755761, "top": 4100, "right": 3205, "bottom": 5715, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719550f.jpg"} -{"rects": [{"solidity": 0.996094048388986, "top": 295, "right": 3850, "bottom": 2750, "left": 830}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517007.jpg"} -{"rects": [{"solidity": 0.9960943027764413, "top": 420, "right": 5355, "bottom": 3640, "left": 1325}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721683f.jpg"} -{"rects": [{"solidity": 0.9960943154665107, "top": 315, "right": 5330, "bottom": 3620, "left": 1230}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717767f.jpg"} -{"rects": [{"solidity": 0.9960945788245279, "top": 740, "right": 3920, "bottom": 3130, "left": 2330}, {"solidity": 0.9963838748095463, "top": 745, "right": 2025, "bottom": 3135, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724943f.jpg"} -{"rects": [{"solidity": 0.9960945804944902, "top": 465, "right": 3130, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729130f.jpg"} -{"rects": [{"solidity": 0.9960946806524105, "top": 400, "right": 3315, "bottom": 2030, "left": 890}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725694f.jpg"} -{"rects": [{"solidity": 0.9960948721257967, "top": 455, "right": 3055, "bottom": 2000, "left": 1080}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702843f.jpg"} -{"rects": [{"solidity": 0.9960949061918174, "top": 825, "right": 3810, "bottom": 3255, "left": 2175}, {"solidity": 0.9964046512223546, "top": 830, "right": 5625, "bottom": 3260, "left": 4000}, {"solidity": 0.996338331698756, "top": 825, "right": 2000, "bottom": 3245, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703400f.jpg"} -{"rects": [{"solidity": 0.9960950401181202, "top": 2345, "right": 3135, "bottom": 3970, "left": 710}, {"solidity": 0.9963554024831902, "top": 470, "right": 3130, "bottom": 2075, "left": 720}, {"solidity": 0.9953460869269285, "top": 4165, "right": 3045, "bottom": 5495, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718867f.jpg"} -{"rects": [{"solidity": 0.9960950736611105, "top": 970, "right": 5670, "bottom": 3375, "left": 4045}, {"solidity": 0.993745768722396, "top": 950, "right": 3885, "bottom": 3375, "left": 2230}, {"solidity": 0.9951228077020621, "top": 965, "right": 2050, "bottom": 3380, "left": 425}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716591f.jpg"} -{"rects": [{"solidity": 0.9960951386116413, "top": 355, "right": 2905, "bottom": 1565, "left": 975}, {"solidity": 0.9976018643388763, "top": 1745, "right": 2495, "bottom": 3630, "left": 1295}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701419f.jpg"} -{"rects": [{"solidity": 0.9960953881607609, "top": 2415, "right": 2530, "bottom": 3900, "left": 435}, {"solidity": 0.9959770770836051, "top": 645, "right": 2535, "bottom": 2125, "left": 445}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716190f.jpg"} -{"rects": [{"solidity": 0.9960954627356724, "top": 460, "right": 3185, "bottom": 2090, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705899f.jpg"} -{"rects": [{"solidity": 0.9960955742428623, "top": 2245, "right": 3175, "bottom": 3890, "left": 740}, {"solidity": 0.9971281094727363, "top": 410, "right": 3150, "bottom": 2030, "left": 725}, {"solidity": 0.9954302706834042, "top": 4100, "right": 3195, "bottom": 5730, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724274f.jpg"} -{"rects": [{"solidity": 0.9960956977718102, "top": 510, "right": 3370, "bottom": 2125, "left": 965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700812f.jpg"} -{"rects": [{"solidity": 0.9960957910485544, "top": 435, "right": 3185, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707593f.jpg"} -{"rects": [{"solidity": 0.996095796916747, "top": 375, "right": 3205, "bottom": 1990, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707374f.jpg"} -{"rects": [{"solidity": 0.9960958342551502, "top": 2030, "right": 3150, "bottom": 3650, "left": 745}, {"solidity": 0.9908255968334635, "top": 370, "right": 2875, "bottom": 1760, "left": 1025}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724162f.jpg"} -{"rects": [{"solidity": 0.9960958596591686, "top": 2245, "right": 3175, "bottom": 3875, "left": 755}, {"solidity": 0.9959436645624085, "top": 420, "right": 3185, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703355f.jpg"} -{"rects": [{"solidity": 0.9960958914962053, "top": 420, "right": 3190, "bottom": 2050, "left": 745}, {"solidity": 0.9956780032947672, "top": 2240, "right": 3180, "bottom": 3865, "left": 740}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734558f.jpg"} -{"rects": [{"solidity": 0.9960958968378439, "top": 2240, "right": 3295, "bottom": 3820, "left": 910}, {"solidity": 0.9950271293248372, "top": 395, "right": 3285, "bottom": 1990, "left": 905}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726965f.jpg"} -{"rects": [{"solidity": 0.9960959697951347, "top": 850, "right": 5705, "bottom": 3280, "left": 4080}, {"solidity": 0.9963685485856453, "top": 840, "right": 3845, "bottom": 3260, "left": 2225}, {"solidity": 0.9975830737195001, "top": 835, "right": 2000, "bottom": 3250, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729256f.jpg"} -{"rects": [{"solidity": 0.9960959801465905, "top": 790, "right": 1985, "bottom": 3190, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721530f.jpg"} -{"rects": [{"solidity": 0.9960960820166597, "top": 565, "right": 2965, "bottom": 2235, "left": 500}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721762f.jpg"} -{"rects": [{"solidity": 0.9960961229801193, "top": 4120, "right": 3175, "bottom": 5780, "left": 750}, {"solidity": 0.9960766953135275, "top": 405, "right": 3245, "bottom": 2045, "left": 820}, {"solidity": 0.9956695771734032, "top": 2245, "right": 3230, "bottom": 3900, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704769f.jpg"} -{"rects": [{"solidity": 0.996096481775518, "top": 550, "right": 3270, "bottom": 2595, "left": 440}, {"solidity": 0.995810997647173, "top": 3130, "right": 3225, "bottom": 5035, "left": 490}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702552f.jpg"} -{"rects": [{"solidity": 0.9960965025843054, "top": 325, "right": 3110, "bottom": 1950, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703773f.jpg"} -{"rects": [{"solidity": 0.9960968840837049, "top": 630, "right": 3130, "bottom": 2230, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710312f.jpg"} -{"rects": [{"solidity": 0.9960969387755102, "top": 360, "right": 3265, "bottom": 2000, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725797f.jpg"} -{"rects": [{"solidity": 0.996096948523391, "top": 505, "right": 5070, "bottom": 3570, "left": 1145}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733612f.jpg"} -{"rects": [{"solidity": 0.9960970693437148, "top": 370, "right": 3135, "bottom": 1970, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728923f.jpg"} -{"rects": [{"solidity": 0.9960970795388273, "top": 4115, "right": 3005, "bottom": 5750, "left": 570}, {"solidity": 0.9957946043616511, "top": 2245, "right": 3035, "bottom": 3890, "left": 600}, {"solidity": 0.9960887586873188, "top": 695, "right": 2890, "bottom": 1830, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734803f.jpg"} -{"rects": [{"solidity": 0.9960973046409393, "top": 845, "right": 3855, "bottom": 3285, "left": 2230}, {"solidity": 0.9965713837895026, "top": 835, "right": 1975, "bottom": 3285, "left": 400}, {"solidity": 0.994987743388405, "top": 875, "right": 5680, "bottom": 3290, "left": 4100}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731816f.jpg"} -{"rects": [{"solidity": 0.9960973200742695, "top": 360, "right": 2555, "bottom": 2780, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719055f.jpg"} -{"rects": [{"solidity": 0.9960973364885503, "top": 500, "right": 3395, "bottom": 2355, "left": 390}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722250f.jpg"} -{"rects": [{"solidity": 0.9960974697816803, "top": 3060, "right": 2330, "bottom": 4270, "left": 540}, {"solidity": 0.998569393292701, "top": 1655, "right": 2340, "bottom": 2845, "left": 550}, {"solidity": 0.9963479238805528, "top": 255, "right": 2345, "bottom": 1445, "left": 555}], "shape": {"h": 4595, "w": 2940}, "file": "/usr/local/google/home/danvk/milstein/734186f.jpg"} -{"rects": [{"solidity": 0.9960975199010292, "top": 425, "right": 3165, "bottom": 2045, "left": 750}, {"solidity": 0.9950202111300714, "top": 2255, "right": 3150, "bottom": 3875, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707921f.jpg"} -{"rects": [{"solidity": 0.9960976457189918, "top": 750, "right": 3910, "bottom": 3170, "left": 2290}, {"solidity": 0.9969964538778041, "top": 735, "right": 2030, "bottom": 3155, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715168f.jpg"} -{"rects": [{"solidity": 0.9960979612085826, "top": 395, "right": 3160, "bottom": 2040, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706670f.jpg"} -{"rects": [{"solidity": 0.9960979641889742, "top": 365, "right": 2940, "bottom": 3585, "left": 870}, {"solidity": 0.9968413316445404, "top": 395, "right": 5470, "bottom": 3600, "left": 3460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705047f.jpg"} -{"rects": [{"solidity": 0.9960981065254197, "top": 545, "right": 4985, "bottom": 3705, "left": 1125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709754f.jpg"} -{"rects": [{"solidity": 0.996098392636126, "top": 2495, "right": 2460, "bottom": 3975, "left": 375}, {"solidity": 0.9952032066235175, "top": 630, "right": 2460, "bottom": 2105, "left": 365}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716053f.jpg"} -{"rects": [{"solidity": 0.9960984314706773, "top": 450, "right": 3190, "bottom": 2050, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710593f.jpg"} -{"rects": [{"solidity": 0.9960984988635763, "top": 915, "right": 3870, "bottom": 3315, "left": 2275}, {"solidity": 0.9966328716746234, "top": 920, "right": 1995, "bottom": 3305, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729228f.jpg"} -{"rects": [{"solidity": 0.9960985226703587, "top": 435, "right": 3165, "bottom": 2075, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706995f.jpg"} -{"rects": [{"solidity": 0.9960985229420609, "top": 780, "right": 2025, "bottom": 3190, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730372f.jpg"} -{"rects": [{"solidity": 0.9960986547085202, "top": 410, "right": 3180, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705860f.jpg"} -{"rects": [{"solidity": 0.9960990757138352, "top": 455, "right": 5085, "bottom": 3665, "left": 1050}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717345f.jpg"} -{"rects": [{"solidity": 0.9960990789225662, "top": 2230, "right": 3085, "bottom": 3845, "left": 640}, {"solidity": 0.9961397225790546, "top": 385, "right": 3085, "bottom": 1990, "left": 665}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710787f.jpg"} -{"rects": [{"solidity": 0.9960992604227538, "top": 1050, "right": 5665, "bottom": 3100, "left": 4000}, {"solidity": 0.9959019186471788, "top": 1100, "right": 3675, "bottom": 2970, "left": 2185}, {"solidity": 0.9951238368464684, "top": 1090, "right": 1865, "bottom": 2945, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721314f.jpg"} -{"rects": [{"solidity": 0.9960993327301154, "top": 810, "right": 2100, "bottom": 3240, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707766f.jpg"} -{"rects": [{"solidity": 0.9960995590183747, "top": 295, "right": 4995, "bottom": 3545, "left": 905}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725710f.jpg"} -{"rects": [{"solidity": 0.9960996505467253, "top": 400, "right": 3205, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707679f.jpg"} -{"rects": [{"solidity": 0.9960997452571952, "top": 640, "right": 3265, "bottom": 2470, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710034f.jpg"} -{"rects": [{"solidity": 0.9960998093240114, "top": 310, "right": 3185, "bottom": 2320, "left": 360}, {"solidity": 0.9958646060864852, "top": 4210, "right": 2990, "bottom": 5805, "left": 575}, {"solidity": 0.9956288692418759, "top": 2445, "right": 2990, "bottom": 4035, "left": 580}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729304f.jpg"} -{"rects": [{"solidity": 0.9960999300930866, "top": 390, "right": 3160, "bottom": 1980, "left": 785}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/717859f.jpg"} -{"rects": [{"solidity": 0.9960999437368933, "top": 2205, "right": 3170, "bottom": 3840, "left": 740}, {"solidity": 0.9963538323276415, "top": 375, "right": 3195, "bottom": 2005, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707284f.jpg"} -{"rects": [{"solidity": 0.9961001528740073, "top": 535, "right": 3340, "bottom": 2460, "left": 595}, {"solidity": 0.997303189421416, "top": 3105, "right": 3320, "bottom": 5010, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715272f.jpg"} -{"rects": [{"solidity": 0.9961005392397165, "top": 2115, "right": 3035, "bottom": 3760, "left": 600}, {"solidity": 0.9973260490854127, "top": 295, "right": 3050, "bottom": 1925, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704438f.jpg"} -{"rects": [{"solidity": 0.9961006305363388, "top": 760, "right": 2060, "bottom": 3185, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712120f.jpg"} -{"rects": [{"solidity": 0.9961008929237456, "top": 540, "right": 2735, "bottom": 3570, "left": 675}, {"solidity": 0.9963263217255531, "top": 750, "right": 5030, "bottom": 3160, "left": 3425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718779f.jpg"} -{"rects": [{"solidity": 0.9961009204171168, "top": 400, "right": 3150, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732332f.jpg"} -{"rects": [{"solidity": 0.9961012954902516, "top": 2270, "right": 3170, "bottom": 3890, "left": 745}, {"solidity": 0.995945510756151, "top": 385, "right": 3195, "bottom": 2015, "left": 765}, {"solidity": 0.9964509347378891, "top": 4130, "right": 3140, "bottom": 5750, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727519f.jpg"} -{"rects": [{"solidity": 0.9961015645037189, "top": 395, "right": 3170, "bottom": 2020, "left": 735}, {"solidity": 0.9954568075644957, "top": 2210, "right": 3145, "bottom": 3850, "left": 715}, {"solidity": 0.994203485089314, "top": 4065, "right": 3120, "bottom": 5690, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726802f.jpg"} -{"rects": [{"solidity": 0.9961016015391303, "top": 1120, "right": 3475, "bottom": 4985, "left": 390}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708739f.jpg"} -{"rects": [{"solidity": 0.9961016265627101, "top": 380, "right": 3185, "bottom": 1965, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724689f.jpg"} -{"rects": [{"solidity": 0.9961017711518028, "top": 840, "right": 2035, "bottom": 3260, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700377f.jpg"} -{"rects": [{"solidity": 0.9961018225830335, "top": 2280, "right": 3180, "bottom": 3905, "left": 765}, {"solidity": 0.995946434800584, "top": 405, "right": 3210, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734647f.jpg"} -{"rects": [{"solidity": 0.9961020173065074, "top": 840, "right": 2010, "bottom": 3225, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717433f.jpg"} -{"rects": [{"solidity": 0.9961022404628048, "top": 400, "right": 3285, "bottom": 1985, "left": 890}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726826f.jpg"} -{"rects": [{"solidity": 0.9961022606240916, "top": 425, "right": 3190, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704811f.jpg"} -{"rects": [{"solidity": 0.9961023902092042, "top": 465, "right": 3130, "bottom": 2080, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729862f.jpg"} -{"rects": [{"solidity": 0.9961027731205014, "top": 4445, "right": 3130, "bottom": 5820, "left": 870}, {"solidity": 0.9929659261665922, "top": 1570, "right": 3160, "bottom": 2940, "left": 875}, {"solidity": 0.9941554023591518, "top": 155, "right": 3125, "bottom": 1520, "left": 865}, {"solidity": 0.9945991084374389, "top": 3000, "right": 3125, "bottom": 4375, "left": 880}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704962f.jpg"} -{"rects": [{"solidity": 0.9961028448861878, "top": 1475, "right": 3135, "bottom": 4475, "left": 875}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724454f.jpg"} -{"rects": [{"solidity": 0.9961029664322241, "top": 865, "right": 3840, "bottom": 3285, "left": 2215}, {"solidity": 0.999138401169451, "top": 870, "right": 2000, "bottom": 3290, "left": 390}, {"solidity": 0.9972935083141867, "top": 875, "right": 5700, "bottom": 3290, "left": 4090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729354f.jpg"} -{"rects": [{"solidity": 0.996102985692891, "top": 775, "right": 3895, "bottom": 3205, "left": 2250}, {"solidity": 0.9964521082911847, "top": 795, "right": 5740, "bottom": 3225, "left": 4105}, {"solidity": 0.9968813186457676, "top": 750, "right": 2030, "bottom": 3165, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713764f.jpg"} -{"rects": [{"solidity": 0.9961030242496685, "top": 825, "right": 2025, "bottom": 3230, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733859f.jpg"} -{"rects": [{"solidity": 0.9961030933376334, "top": 610, "right": 2675, "bottom": 1970, "left": 945}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706462f.jpg"} -{"rects": [{"solidity": 0.9961032193751558, "top": 765, "right": 3910, "bottom": 3190, "left": 2300}, {"solidity": 0.996186459980607, "top": 765, "right": 2065, "bottom": 3175, "left": 460}, {"solidity": 0.9953069416794491, "top": 790, "right": 5760, "bottom": 3205, "left": 4155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733826f.jpg"} -{"rects": [{"solidity": 0.9961032406115686, "top": 1105, "right": 3495, "bottom": 5045, "left": 435}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721389f.jpg"} -{"rects": [{"solidity": 0.9961034887518553, "top": 785, "right": 2055, "bottom": 3200, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721868f.jpg"} -{"rects": [{"solidity": 0.9961036918642904, "top": 640, "right": 2895, "bottom": 3065, "left": 1265}, {"solidity": 0.9964404067182878, "top": 3585, "right": 3270, "bottom": 5195, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731013f.jpg"} -{"rects": [{"solidity": 0.996103744301726, "top": 430, "right": 3130, "bottom": 2040, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728533f.jpg"} -{"rects": [{"solidity": 0.9961038503314611, "top": 410, "right": 3245, "bottom": 2040, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725739f.jpg"} -{"rects": [{"solidity": 0.9961040282603323, "top": 395, "right": 2860, "bottom": 1830, "left": 1035}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703651f.jpg"} -{"rects": [{"solidity": 0.9961040900267419, "top": 2455, "right": 3130, "bottom": 4030, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722348f.jpg"} -{"rects": [{"solidity": 0.9961041386282704, "top": 2215, "right": 3170, "bottom": 3840, "left": 745}, {"solidity": 0.9977973282887832, "top": 415, "right": 3170, "bottom": 2025, "left": 755}, {"solidity": 0.9962207985504433, "top": 4045, "right": 3155, "bottom": 5655, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732161f.jpg"} -{"rects": [{"solidity": 0.996104184144801, "top": 765, "right": 2040, "bottom": 3190, "left": 415}, {"solidity": 0.9958412049544467, "top": 760, "right": 3895, "bottom": 3175, "left": 2270}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730571f.jpg"} -{"rects": [{"solidity": 0.9961042013451774, "top": 790, "right": 2020, "bottom": 3220, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710929f.jpg"} -{"rects": [{"solidity": 0.9961042131346538, "top": 570, "right": 2985, "bottom": 2150, "left": 600}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710926f.jpg"} -{"rects": [{"solidity": 0.9961042254414049, "top": 865, "right": 2110, "bottom": 3300, "left": 470}, {"solidity": 0.9968325473358204, "top": 860, "right": 4000, "bottom": 3285, "left": 2370}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710395f.jpg"} -{"rects": [{"solidity": 0.9961042852861852, "top": 440, "right": 3100, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728865f.jpg"} -{"rects": [{"solidity": 0.9961043710546819, "top": 2225, "right": 3355, "bottom": 3870, "left": 915}, {"solidity": 0.9975195793206528, "top": 365, "right": 3350, "bottom": 1990, "left": 925}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706566f.jpg"} -{"rects": [{"solidity": 0.9961043994879696, "top": 360, "right": 3140, "bottom": 1980, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718815f.jpg"} -{"rects": [{"solidity": 0.996104599599573, "top": 690, "right": 3275, "bottom": 2520, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710033f.jpg"} -{"rects": [{"solidity": 0.9961046127876906, "top": 465, "right": 4975, "bottom": 3680, "left": 995}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717630f.jpg"} -{"rects": [{"solidity": 0.9961046760477393, "top": 840, "right": 1970, "bottom": 3225, "left": 375}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717860f.jpg"} -{"rects": [{"solidity": 0.996104687772136, "top": 785, "right": 2045, "bottom": 3165, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713082f.jpg"} -{"rects": [{"solidity": 0.9961047030077488, "top": 365, "right": 3110, "bottom": 2000, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728637f.jpg"} -{"rects": [{"solidity": 0.9961049428011212, "top": 510, "right": 5160, "bottom": 3415, "left": 1530}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724186f.jpg"} -{"rects": [{"solidity": 0.9961049537905882, "top": 440, "right": 3110, "bottom": 2065, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707070f.jpg"} -{"rects": [{"solidity": 0.996104989933716, "top": 345, "right": 3265, "bottom": 2020, "left": 850}, {"solidity": 0.9979601095339584, "top": 2230, "right": 3225, "bottom": 3860, "left": 850}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/731148f.jpg"} -{"rects": [{"solidity": 0.9961052510304923, "top": 4105, "right": 2980, "bottom": 5740, "left": 550}, {"solidity": 0.9959110951599672, "top": 380, "right": 3005, "bottom": 2025, "left": 565}, {"solidity": 0.999516573472775, "top": 2255, "right": 2980, "bottom": 3870, "left": 565}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731666f.jpg"} -{"rects": [{"solidity": 0.9961052655634306, "top": 2250, "right": 3095, "bottom": 3860, "left": 690}, {"solidity": 0.9966291489023603, "top": 430, "right": 3080, "bottom": 1995, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729311f.jpg"} -{"rects": [{"solidity": 0.9961053822447042, "top": 820, "right": 2150, "bottom": 3235, "left": 540}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722059f.jpg"} -{"rects": [{"solidity": 0.9961057934262666, "top": 2135, "right": 2890, "bottom": 3400, "left": 825}, {"solidity": 0.9970606528761461, "top": 685, "right": 2870, "bottom": 1915, "left": 820}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717562f.jpg"} -{"rects": [{"solidity": 0.9961060356447506, "top": 4115, "right": 3150, "bottom": 5735, "left": 740}, {"solidity": 0.9954576246780575, "top": 2270, "right": 3170, "bottom": 3870, "left": 760}, {"solidity": 0.995252475921847, "top": 425, "right": 3165, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722701f.jpg"} -{"rects": [{"solidity": 0.9961060870588697, "top": 3115, "right": 3280, "bottom": 5005, "left": 535}, {"solidity": 0.9942541333050925, "top": 750, "right": 3305, "bottom": 2660, "left": 565}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726594f.jpg"} -{"rects": [{"solidity": 0.9961061611002222, "top": 905, "right": 2070, "bottom": 3310, "left": 465}, {"solidity": 0.9937595458627494, "top": 900, "right": 4000, "bottom": 3305, "left": 2390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730265f.jpg"} -{"rects": [{"solidity": 0.9961064309967401, "top": 840, "right": 2035, "bottom": 3210, "left": 465}, {"solidity": 0.9954776135088499, "top": 830, "right": 3850, "bottom": 3200, "left": 2280}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717455f.jpg"} -{"rects": [{"solidity": 0.9961064705673105, "top": 2215, "right": 3130, "bottom": 3830, "left": 710}, {"solidity": 0.9969185458131147, "top": 390, "right": 3130, "bottom": 2000, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729416f.jpg"} -{"rects": [{"solidity": 0.9961067074141279, "top": 770, "right": 2035, "bottom": 3215, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706614f.jpg"} -{"rects": [{"solidity": 0.9961068055019416, "top": 555, "right": 3110, "bottom": 2150, "left": 715}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722107f.jpg"} -{"rects": [{"solidity": 0.9961068195436363, "top": 415, "right": 3205, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711941f.jpg"} -{"rects": [{"solidity": 0.9961070575176654, "top": 395, "right": 3235, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706855f.jpg"} -{"rects": [{"solidity": 0.996107107318397, "top": 1105, "right": 3530, "bottom": 5020, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732887f.jpg"} -{"rects": [{"solidity": 0.9961071074125961, "top": 485, "right": 3310, "bottom": 2410, "left": 560}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702470f.jpg"} -{"rects": [{"solidity": 0.9961072230120767, "top": 380, "right": 3035, "bottom": 2000, "left": 625}, {"solidity": 0.997518062986046, "top": 4105, "right": 2995, "bottom": 5720, "left": 590}, {"solidity": 0.997772220959309, "top": 2255, "right": 3020, "bottom": 3865, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726681f.jpg"} -{"rects": [{"solidity": 0.9961072931390229, "top": 460, "right": 3140, "bottom": 2080, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707875f.jpg"} -{"rects": [{"solidity": 0.9961076961154943, "top": 400, "right": 3140, "bottom": 1980, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706106f.jpg"} -{"rects": [{"solidity": 0.9961077231480008, "top": 405, "right": 3215, "bottom": 2015, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725643f.jpg"} -{"rects": [{"solidity": 0.996107737317229, "top": 430, "right": 3165, "bottom": 2060, "left": 740}, {"solidity": 0.9999677463053392, "top": 2290, "right": 3155, "bottom": 3900, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704480f.jpg"} -{"rects": [{"solidity": 0.9961078829075759, "top": 420, "right": 3100, "bottom": 2050, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705679f.jpg"} -{"rects": [{"solidity": 0.9961083737504985, "top": 2300, "right": 3215, "bottom": 3925, "left": 785}, {"solidity": 0.9967774647887324, "top": 430, "right": 3215, "bottom": 2055, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711139f.jpg"} -{"rects": [{"solidity": 0.9961084383788491, "top": 800, "right": 4125, "bottom": 2035, "left": 525}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715963f.jpg"} -{"rects": [{"solidity": 0.9961085228829817, "top": 440, "right": 3220, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719035f.jpg"} -{"rects": [{"solidity": 0.9961087661668697, "top": 605, "right": 1555, "bottom": 2395, "left": 355}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716383f.jpg"} -{"rects": [{"solidity": 0.9961087942578962, "top": 380, "right": 3130, "bottom": 1980, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722846f.jpg"} -{"rects": [{"solidity": 0.9961090502648502, "top": 810, "right": 3735, "bottom": 3225, "left": 2120}, {"solidity": 0.995455399308588, "top": 795, "right": 1920, "bottom": 3205, "left": 325}, {"solidity": 0.9974334252686673, "top": 830, "right": 5545, "bottom": 3210, "left": 3970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730132f.jpg"} -{"rects": [{"solidity": 0.9961091766965969, "top": 455, "right": 3185, "bottom": 2065, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725837f.jpg"} -{"rects": [{"solidity": 0.9961092089465962, "top": 825, "right": 2075, "bottom": 3270, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703800f.jpg"} -{"rects": [{"solidity": 0.9961092477240058, "top": 1995, "right": 3305, "bottom": 3645, "left": 860}, {"solidity": 0.9973455024584632, "top": 300, "right": 3270, "bottom": 1925, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715616f.jpg"} -{"rects": [{"solidity": 0.9961093747990379, "top": 420, "right": 3205, "bottom": 2050, "left": 780}, {"solidity": 0.9978044016830736, "top": 2290, "right": 3200, "bottom": 3890, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719612f.jpg"} -{"rects": [{"solidity": 0.9961094260194625, "top": 390, "right": 3185, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722625f.jpg"} -{"rects": [{"solidity": 0.9961094300006176, "top": 770, "right": 2060, "bottom": 3180, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724143f.jpg"} -{"rects": [{"solidity": 0.9961096181272114, "top": 670, "right": 3470, "bottom": 4115, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714611f.jpg"} -{"rects": [{"solidity": 0.9961097345952437, "top": 390, "right": 3125, "bottom": 1985, "left": 735}, {"solidity": 0.9956316559333365, "top": 2190, "right": 3120, "bottom": 3795, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715385f.jpg"} -{"rects": [{"solidity": 0.9961097738254283, "top": 415, "right": 2345, "bottom": 1610, "left": 545}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716339f.jpg"} -{"rects": [{"solidity": 0.9961099155768912, "top": 425, "right": 3325, "bottom": 2070, "left": 895}, {"solidity": 0.9961073391529259, "top": 2265, "right": 3275, "bottom": 3910, "left": 880}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704649f.jpg"} -{"rects": [{"solidity": 0.9961100566192091, "top": 770, "right": 3930, "bottom": 3190, "left": 2315}, {"solidity": 0.9908851482119461, "top": 805, "right": 2025, "bottom": 3185, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718785f.jpg"} -{"rects": [{"solidity": 0.9961103117628568, "top": 410, "right": 3535, "bottom": 2240, "left": 810}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/701712f.jpg"} -{"rects": [{"solidity": 0.9961104849581214, "top": 4130, "right": 3130, "bottom": 5785, "left": 675}, {"solidity": 0.9971514475136025, "top": 2275, "right": 3155, "bottom": 3915, "left": 705}, {"solidity": 0.9981271081977239, "top": 410, "right": 3165, "bottom": 2030, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734031f.jpg"} -{"rects": [{"solidity": 0.9961105130965195, "top": 620, "right": 2835, "bottom": 2060, "left": 985}, {"solidity": 0.9958744748297462, "top": 2075, "right": 2800, "bottom": 3475, "left": 1005}, {"solidity": 0.9953255408799935, "top": 2015, "right": 5355, "bottom": 3435, "left": 3585}, {"solidity": 0.995784328700168, "top": 600, "right": 5360, "bottom": 1980, "left": 3550}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705286f.jpg"} -{"rects": [{"solidity": 0.9961106697080759, "top": 830, "right": 3915, "bottom": 3255, "left": 2280}, {"solidity": 0.9966787789761233, "top": 830, "right": 2035, "bottom": 3245, "left": 405}, {"solidity": 0.9965085943536212, "top": 835, "right": 5825, "bottom": 3250, "left": 4205}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731166f.jpg"} -{"rects": [{"solidity": 0.9961108698227188, "top": 670, "right": 3180, "bottom": 2275, "left": 775}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/707516f.jpg"} -{"rects": [{"solidity": 0.9961109550793834, "top": 390, "right": 3185, "bottom": 1990, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730270f.jpg"} -{"rects": [{"solidity": 0.9961109997607763, "top": 2290, "right": 3120, "bottom": 3910, "left": 705}, {"solidity": 0.9970816772881047, "top": 4135, "right": 3100, "bottom": 5745, "left": 690}, {"solidity": 0.9971941108879565, "top": 425, "right": 3120, "bottom": 2030, "left": 710}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709306f.jpg"} -{"rects": [{"solidity": 0.9961112191328019, "top": 795, "right": 3885, "bottom": 3210, "left": 2275}, {"solidity": 0.9955335986341122, "top": 790, "right": 5710, "bottom": 3210, "left": 4105}, {"solidity": 0.9937701057174246, "top": 815, "right": 2055, "bottom": 3225, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731227f.jpg"} -{"rects": [{"solidity": 0.9961112695408706, "top": 2265, "right": 3175, "bottom": 3875, "left": 760}, {"solidity": 0.9956802050601453, "top": 420, "right": 3175, "bottom": 2030, "left": 765}, {"solidity": 0.996912601100867, "top": 4100, "right": 3185, "bottom": 5700, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714178f.jpg"} -{"rects": [{"solidity": 0.996111326609775, "top": 2075, "right": 2685, "bottom": 3510, "left": 870}, {"solidity": 0.9981272490170509, "top": 600, "right": 2695, "bottom": 2005, "left": 865}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705742f.jpg"} -{"rects": [{"solidity": 0.9961115188749343, "top": 355, "right": 4580, "bottom": 3810, "left": 1345}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733375f.jpg"} -{"rects": [{"solidity": 0.9961116653332411, "top": 310, "right": 3095, "bottom": 1920, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711968f.jpg"} -{"rects": [{"solidity": 0.9961118299504966, "top": 2095, "right": 2950, "bottom": 3745, "left": 525}, {"solidity": 0.9964859114062802, "top": 2135, "right": 5680, "bottom": 3765, "left": 3270}, {"solidity": 0.99581986724208, "top": 375, "right": 2980, "bottom": 2025, "left": 555}, {"solidity": 0.9962584660679351, "top": 450, "right": 5705, "bottom": 2085, "left": 3290}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701572f.jpg"} -{"rects": [{"solidity": 0.9961119577267252, "top": 820, "right": 3795, "bottom": 3245, "left": 2165}, {"solidity": 0.9955874863821256, "top": 815, "right": 5655, "bottom": 3245, "left": 4025}, {"solidity": 0.9975656192537387, "top": 825, "right": 1935, "bottom": 3235, "left": 330}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728726f.jpg"} -{"rects": [{"solidity": 0.9961119713184617, "top": 2105, "right": 5255, "bottom": 3525, "left": 3430}, {"solidity": 0.9946285084231428, "top": 2055, "right": 2715, "bottom": 3480, "left": 890}, {"solidity": 0.9955955347158189, "top": 625, "right": 5245, "bottom": 2050, "left": 3435}, {"solidity": 0.9967661318538511, "top": 625, "right": 2725, "bottom": 1990, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707154f.jpg"} -{"rects": [{"solidity": 0.9961119981564089, "top": 4065, "right": 3085, "bottom": 5665, "left": 690}, {"solidity": 0.995914191397287, "top": 395, "right": 3085, "bottom": 1985, "left": 680}, {"solidity": 0.9982603603879635, "top": 2235, "right": 3065, "bottom": 3795, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729585f.jpg"} -{"rects": [{"solidity": 0.9961120289668681, "top": 820, "right": 1995, "bottom": 3215, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722589f.jpg"} -{"rects": [{"solidity": 0.9961121169100121, "top": 745, "right": 2035, "bottom": 3155, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716893f.jpg"} -{"rects": [{"solidity": 0.9961122526746351, "top": 430, "right": 3210, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703685f.jpg"} -{"rects": [{"solidity": 0.9961124870005253, "top": 855, "right": 2575, "bottom": 3460, "left": 305}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507849.jpg"} -{"rects": [{"solidity": 0.9961125107940892, "top": 770, "right": 2005, "bottom": 3195, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706820f.jpg"} -{"rects": [{"solidity": 0.9961125638627499, "top": 2265, "right": 3210, "bottom": 3895, "left": 765}, {"solidity": 0.996117378321125, "top": 395, "right": 3210, "bottom": 2025, "left": 775}, {"solidity": 0.9952210351225129, "top": 4160, "right": 3200, "bottom": 5785, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724623f.jpg"} -{"rects": [{"solidity": 0.9961127242137255, "top": 555, "right": 3205, "bottom": 2585, "left": 430}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729939f.jpg"} -{"rects": [{"solidity": 0.9961128286397174, "top": 415, "right": 3210, "bottom": 2030, "left": 795}, {"solidity": 0.9943234314872869, "top": 2255, "right": 3205, "bottom": 3885, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721777f.jpg"} -{"rects": [{"solidity": 0.9961129441542426, "top": 2245, "right": 3120, "bottom": 3865, "left": 710}, {"solidity": 0.9966865904365905, "top": 4100, "right": 3115, "bottom": 5705, "left": 700}, {"solidity": 0.996332346808587, "top": 375, "right": 3105, "bottom": 1980, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728515f.jpg"} -{"rects": [{"solidity": 0.996113085219126, "top": 375, "right": 3150, "bottom": 2040, "left": 675}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700034f.jpg"} -{"rects": [{"solidity": 0.9961134025660673, "top": 405, "right": 3220, "bottom": 2010, "left": 810}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721664f.jpg"} -{"rects": [{"solidity": 0.9961134260825849, "top": 435, "right": 3170, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706734f.jpg"} -{"rects": [{"solidity": 0.9961136321332983, "top": 745, "right": 5785, "bottom": 3175, "left": 4155}, {"solidity": 0.9949896979910274, "top": 770, "right": 2055, "bottom": 3195, "left": 435}, {"solidity": 0.9964943799819692, "top": 765, "right": 3935, "bottom": 3185, "left": 2315}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711559f.jpg"} -{"rects": [{"solidity": 0.9961138576015494, "top": 545, "right": 3185, "bottom": 2180, "left": 745}, {"solidity": 0.9971875639190019, "top": 2270, "right": 3185, "bottom": 3900, "left": 760}, {"solidity": 0.994683037173434, "top": 3995, "right": 3190, "bottom": 5610, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733117f.jpg"} -{"rects": [{"solidity": 0.996114170606105, "top": 790, "right": 3820, "bottom": 3210, "left": 2190}, {"solidity": 0.9968188875666303, "top": 775, "right": 1990, "bottom": 3175, "left": 390}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730411f.jpg"} -{"rects": [{"solidity": 0.9961141970068159, "top": 620, "right": 3100, "bottom": 2030, "left": 1255}, {"solidity": 0.9944160413669764, "top": 4025, "right": 3060, "bottom": 5435, "left": 1215}, {"solidity": 0.9951191458505239, "top": 2355, "right": 3075, "bottom": 3750, "left": 1255}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725855f.jpg"} -{"rects": [{"solidity": 0.996114320289677, "top": 800, "right": 3975, "bottom": 3225, "left": 2325}, {"solidity": 0.9986905350733681, "top": 800, "right": 2080, "bottom": 3220, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731810f.jpg"} -{"rects": [{"solidity": 0.9961144001724116, "top": 830, "right": 2100, "bottom": 3280, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729548f.jpg"} -{"rects": [{"solidity": 0.9961144399260324, "top": 980, "right": 3505, "bottom": 2990, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715278f.jpg"} -{"rects": [{"solidity": 0.9961145783325333, "top": 765, "right": 3925, "bottom": 3195, "left": 2290}, {"solidity": 0.9945944382490094, "top": 755, "right": 2115, "bottom": 3180, "left": 490}, {"solidity": 0.9956643726565052, "top": 1010, "right": 5570, "bottom": 2890, "left": 4275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720952f.jpg"} -{"rects": [{"solidity": 0.9961146064134389, "top": 2130, "right": 3260, "bottom": 3785, "left": 820}, {"solidity": 0.9963952332712299, "top": 305, "right": 3250, "bottom": 1935, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706334f.jpg"} -{"rects": [{"solidity": 0.9961147339444637, "top": 510, "right": 3125, "bottom": 2100, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711983f.jpg"} -{"rects": [{"solidity": 0.9961149087966813, "top": 4115, "right": 3210, "bottom": 5740, "left": 780}, {"solidity": 0.9969397802820165, "top": 2265, "right": 3220, "bottom": 3885, "left": 805}, {"solidity": 0.9957601813388588, "top": 405, "right": 3220, "bottom": 2005, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731540f.jpg"} -{"rects": [{"solidity": 0.9961149101841782, "top": 475, "right": 3330, "bottom": 2510, "left": 290}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715343f.jpg"} -{"rects": [{"solidity": 0.9961149176740308, "top": 775, "right": 2020, "bottom": 3190, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720622f.jpg"} -{"rects": [{"solidity": 0.9961149340337772, "top": 445, "right": 3095, "bottom": 2020, "left": 690}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729448f.jpg"} -{"rects": [{"solidity": 0.9961149860695424, "top": 535, "right": 2525, "bottom": 2950, "left": 895}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700402f.jpg"} -{"rects": [{"solidity": 0.9961151486671773, "top": 2265, "right": 3205, "bottom": 3895, "left": 780}, {"solidity": 0.9965574695131834, "top": 420, "right": 3190, "bottom": 2035, "left": 775}, {"solidity": 0.9973634504663539, "top": 4125, "right": 3205, "bottom": 5730, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734256f.jpg"} -{"rects": [{"solidity": 0.9961152362295657, "top": 1445, "right": 3540, "bottom": 5345, "left": 520}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/710870f.jpg"} -{"rects": [{"solidity": 0.9961152935973305, "top": 435, "right": 3190, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724426f.jpg"} -{"rects": [{"solidity": 0.9961153542270214, "top": 820, "right": 2095, "bottom": 3215, "left": 485}, {"solidity": 0.9961543816842482, "top": 835, "right": 3975, "bottom": 3225, "left": 2385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721235f.jpg"} -{"rects": [{"solidity": 0.9961154369266367, "top": 380, "right": 3325, "bottom": 2285, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712197f.jpg"} -{"rects": [{"solidity": 0.9961155280175502, "top": 1230, "right": 2950, "bottom": 2885, "left": 505}, {"solidity": 0.9959915807225376, "top": 1240, "right": 5690, "bottom": 2885, "left": 3260}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734313f.jpg"} -{"rects": [{"solidity": 0.9961160993944456, "top": 2215, "right": 3175, "bottom": 3840, "left": 750}, {"solidity": 0.9955916308708384, "top": 405, "right": 3170, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722664f.jpg"} -{"rects": [{"solidity": 0.9961161682950942, "top": 410, "right": 3190, "bottom": 2050, "left": 780}, {"solidity": 0.9968154607770919, "top": 2190, "right": 3170, "bottom": 3815, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702674f.jpg"} -{"rects": [{"solidity": 0.9961163481404959, "top": 395, "right": 3110, "bottom": 2015, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705524f.jpg"} -{"rects": [{"solidity": 0.9961163801029281, "top": 725, "right": 5340, "bottom": 3555, "left": 3315}, {"solidity": 0.9968645990168057, "top": 710, "right": 2795, "bottom": 3530, "left": 775}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729253f.jpg"} -{"rects": [{"solidity": 0.9961164034064193, "top": 305, "right": 2835, "bottom": 1465, "left": 960}, {"solidity": 0.9956701516119273, "top": 1690, "right": 2800, "bottom": 2750, "left": 1010}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720351f.jpg"} -{"rects": [{"solidity": 0.9961164924517516, "top": 370, "right": 3120, "bottom": 2005, "left": 700}, {"solidity": 0.9971430864296605, "top": 2260, "right": 3125, "bottom": 3890, "left": 710}, {"solidity": 0.9966872585130689, "top": 4125, "right": 3120, "bottom": 5745, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734192f.jpg"} -{"rects": [{"solidity": 0.9961165455781575, "top": 645, "right": 3020, "bottom": 3365, "left": 360}, {"solidity": 0.9977673580723261, "top": 665, "right": 4670, "bottom": 3090, "left": 3045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733822f.jpg"} -{"rects": [{"solidity": 0.9961166546651579, "top": 730, "right": 1995, "bottom": 3160, "left": 380}, {"solidity": 0.99427059668932, "top": 715, "right": 3840, "bottom": 3155, "left": 2205}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723793f.jpg"} -{"rects": [{"solidity": 0.9961166756732981, "top": 455, "right": 1750, "bottom": 1340, "left": 610}], "shape": {"h": 2560, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727152f.jpg"} -{"rects": [{"solidity": 0.9961166763722494, "top": 820, "right": 2045, "bottom": 3220, "left": 440}, {"solidity": 0.9949023106257414, "top": 810, "right": 3955, "bottom": 3220, "left": 2350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717513f.jpg"} -{"rects": [{"solidity": 0.9961166772435971, "top": 815, "right": 3995, "bottom": 3210, "left": 2385}, {"solidity": 0.9950944863212271, "top": 800, "right": 5785, "bottom": 3225, "left": 4200}, {"solidity": 0.9931845361982728, "top": 805, "right": 2110, "bottom": 3200, "left": 510}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731675f.jpg"} -{"rects": [{"solidity": 0.9961171500141698, "top": 3620, "right": 3150, "bottom": 5225, "left": 735}, {"solidity": 0.9953926407951925, "top": 415, "right": 2860, "bottom": 1850, "left": 1025}, {"solidity": 0.9956624879651411, "top": 1990, "right": 2860, "bottom": 3410, "left": 1060}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727552f.jpg"} -{"rects": [{"solidity": 0.9961173304326619, "top": 710, "right": 5795, "bottom": 3685, "left": 3835}, {"solidity": 0.9982035298726863, "top": 735, "right": 2035, "bottom": 3160, "left": 405}, {"solidity": 0.9968190367423839, "top": 750, "right": 3750, "bottom": 3175, "left": 2140}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724324f.jpg"} -{"rects": [{"solidity": 0.9961177424962336, "top": 450, "right": 3225, "bottom": 2465, "left": 405}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731364f.jpg"} -{"rects": [{"solidity": 0.9961178692475471, "top": 2245, "right": 3070, "bottom": 3895, "left": 635}, {"solidity": 0.9966843076449935, "top": 4135, "right": 3070, "bottom": 5765, "left": 650}, {"solidity": 0.9982291390642875, "top": 375, "right": 3055, "bottom": 1990, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734383f.jpg"} -{"rects": [{"solidity": 0.9961181168765115, "top": 380, "right": 3220, "bottom": 1980, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711739f.jpg"} -{"rects": [{"solidity": 0.9961183084820338, "top": 785, "right": 3915, "bottom": 3190, "left": 2295}, {"solidity": 0.9960127434558413, "top": 805, "right": 5735, "bottom": 3205, "left": 4135}, {"solidity": 0.9946972373465055, "top": 785, "right": 2055, "bottom": 3180, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717911f.jpg"} -{"rects": [{"solidity": 0.9961183596795011, "top": 2300, "right": 3265, "bottom": 3925, "left": 830}, {"solidity": 0.9961252255202214, "top": 395, "right": 3285, "bottom": 2025, "left": 850}, {"solidity": 0.9965411385473436, "top": 4165, "right": 3250, "bottom": 5770, "left": 840}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733116f.jpg"} -{"rects": [{"solidity": 0.9961184482775213, "top": 2335, "right": 3110, "bottom": 3965, "left": 685}, {"solidity": 0.9975299049838942, "top": 430, "right": 3100, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711805f.jpg"} -{"rects": [{"solidity": 0.9961184607290878, "top": 2125, "right": 3245, "bottom": 3745, "left": 810}, {"solidity": 0.9941661631031512, "top": 3825, "right": 3260, "bottom": 5455, "left": 815}, {"solidity": 0.996063550606426, "top": 430, "right": 3230, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733128f.jpg"} -{"rects": [{"solidity": 0.9961185931235685, "top": 700, "right": 2640, "bottom": 3515, "left": 690}, {"solidity": 0.998059854456856, "top": 890, "right": 4400, "bottom": 3310, "left": 2785}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734352f.jpg"} -{"rects": [{"solidity": 0.9961186328454987, "top": 2280, "right": 3040, "bottom": 3895, "left": 630}, {"solidity": 0.9974090967303392, "top": 420, "right": 3045, "bottom": 2020, "left": 645}, {"solidity": 0.9960346744595645, "top": 4145, "right": 3020, "bottom": 5745, "left": 620}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728963f.jpg"} -{"rects": [{"solidity": 0.9961186888359294, "top": 235, "right": 2435, "bottom": 1600, "left": 425}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/707091f.jpg"} -{"rects": [{"solidity": 0.996118689628114, "top": 2300, "right": 3110, "bottom": 3925, "left": 685}, {"solidity": 0.9953527327951716, "top": 400, "right": 3130, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733694f.jpg"} -{"rects": [{"solidity": 0.9961187454106787, "top": 770, "right": 2060, "bottom": 3175, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711105f.jpg"} -{"rects": [{"solidity": 0.9961187705345902, "top": 2040, "right": 2580, "bottom": 3295, "left": 925}, {"solidity": 0.9942452824338487, "top": 2030, "right": 5200, "bottom": 3280, "left": 3555}, {"solidity": 0.9943494235398455, "top": 775, "right": 5210, "bottom": 2010, "left": 3570}, {"solidity": 0.9915359608335815, "top": 785, "right": 2585, "bottom": 2020, "left": 970}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713298f.jpg"} -{"rects": [{"solidity": 0.9961188318028938, "top": 510, "right": 3045, "bottom": 1915, "left": 1225}, {"solidity": 0.9942165047486061, "top": 2260, "right": 3045, "bottom": 3665, "left": 1220}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728024f.jpg"} -{"rects": [{"solidity": 0.9961190871223383, "top": 205, "right": 2705, "bottom": 2630, "left": 1065}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702464f.jpg"} -{"rects": [{"solidity": 0.9961191881641862, "top": 795, "right": 3290, "bottom": 2790, "left": 405}, {"solidity": 0.9965392393430105, "top": 3350, "right": 3300, "bottom": 5325, "left": 430}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731320f.jpg"} -{"rects": [{"solidity": 0.9961192695197705, "top": 1220, "right": 3395, "bottom": 5015, "left": 340}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718939f.jpg"} -{"rects": [{"solidity": 0.9961193801220353, "top": 865, "right": 3955, "bottom": 3290, "left": 2315}, {"solidity": 0.9995308392835337, "top": 865, "right": 2055, "bottom": 3280, "left": 435}, {"solidity": 0.9961737375436236, "top": 895, "right": 5810, "bottom": 3305, "left": 4185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709367f.jpg"} -{"rects": [{"solidity": 0.9961193898546971, "top": 665, "right": 2810, "bottom": 2080, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704232f.jpg"} -{"rects": [{"solidity": 0.9961195984712977, "top": 455, "right": 3170, "bottom": 2070, "left": 750}, {"solidity": 0.9962770847012475, "top": 2325, "right": 3160, "bottom": 3930, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710479f.jpg"} -{"rects": [{"solidity": 0.9961196473912752, "top": 800, "right": 2085, "bottom": 3240, "left": 445}, {"solidity": 0.9964430098592224, "top": 780, "right": 3875, "bottom": 3215, "left": 2250}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705053f.jpg"} -{"rects": [{"solidity": 0.996119689306843, "top": 720, "right": 2080, "bottom": 3100, "left": 500}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719058f.jpg"} -{"rects": [{"solidity": 0.9961198130657284, "top": 735, "right": 2050, "bottom": 3190, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703658f.jpg"} -{"rects": [{"solidity": 0.9961199011521551, "top": 785, "right": 5605, "bottom": 3200, "left": 3970}, {"solidity": 0.9961055629493418, "top": 780, "right": 1865, "bottom": 3160, "left": 300}, {"solidity": 0.9908782507823459, "top": 795, "right": 3705, "bottom": 3180, "left": 2130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724060f.jpg"} -{"rects": [{"solidity": 0.9961199522037857, "top": 440, "right": 3140, "bottom": 2005, "left": 765}, {"solidity": 0.995105264240322, "top": 2495, "right": 2750, "bottom": 3670, "left": 1180}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712706f.jpg"} -{"rects": [{"solidity": 0.9961201335967331, "top": 415, "right": 3230, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707373f.jpg"} -{"rects": [{"solidity": 0.9961202621967443, "top": 605, "right": 5250, "bottom": 2025, "left": 3405}, {"solidity": 0.9992136151374231, "top": 2095, "right": 2760, "bottom": 3490, "left": 900}, {"solidity": 0.9952861684422432, "top": 620, "right": 2725, "bottom": 2020, "left": 915}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705874f.jpg"} -{"rects": [{"solidity": 0.9961202969213837, "top": 410, "right": 3060, "bottom": 2015, "left": 650}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733646f.jpg"} -{"rects": [{"solidity": 0.996120624434593, "top": 2260, "right": 3260, "bottom": 3880, "left": 830}, {"solidity": 0.9963189708617483, "top": 420, "right": 3225, "bottom": 2045, "left": 800}, {"solidity": 0.9963628479806363, "top": 4125, "right": 3245, "bottom": 5735, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734776f.jpg"} -{"rects": [{"solidity": 0.9961206387270969, "top": 3225, "right": 3275, "bottom": 5265, "left": 420}, {"solidity": 0.9967397884494733, "top": 650, "right": 3285, "bottom": 2685, "left": 435}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701365f.jpg"} -{"rects": [{"solidity": 0.9961207680018368, "top": 365, "right": 3350, "bottom": 2290, "left": 600}, {"solidity": 0.9964898320638119, "top": 2455, "right": 3220, "bottom": 4075, "left": 785}, {"solidity": 0.9954138900040145, "top": 4205, "right": 3205, "bottom": 5830, "left": 765}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726239f.jpg"} -{"rects": [{"solidity": 0.9961208842017195, "top": 690, "right": 4760, "bottom": 3315, "left": 1275}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701948f.jpg"} -{"rects": [{"solidity": 0.9961210815830372, "top": 2250, "right": 3150, "bottom": 3880, "left": 730}, {"solidity": 0.9951579707994348, "top": 415, "right": 3160, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719585f.jpg"} -{"rects": [{"solidity": 0.996121120721331, "top": 905, "right": 3850, "bottom": 3340, "left": 2215}, {"solidity": 0.9949915774759484, "top": 910, "right": 5720, "bottom": 3340, "left": 4090}, {"solidity": 0.9954447038568391, "top": 920, "right": 1970, "bottom": 3330, "left": 365}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728973f.jpg"} -{"rects": [{"solidity": 0.9961211556694001, "top": 745, "right": 2010, "bottom": 3130, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711774f.jpg"} -{"rects": [{"solidity": 0.9961211649477849, "top": 2300, "right": 3155, "bottom": 3915, "left": 725}, {"solidity": 0.9966922622563497, "top": 425, "right": 3160, "bottom": 2025, "left": 760}, {"solidity": 0.9953730023890819, "top": 4155, "right": 3125, "bottom": 5765, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733770f.jpg"} -{"rects": [{"solidity": 0.9961213955314646, "top": 330, "right": 2845, "bottom": 2770, "left": 1185}, {"solidity": 0.9675771942017474, "top": 3045, "right": 2925, "bottom": 5470, "left": 1165}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709117f.jpg"} -{"rects": [{"solidity": 0.9961214531920473, "top": 815, "right": 2030, "bottom": 3245, "left": 395}, {"solidity": 0.996716928019288, "top": 795, "right": 3905, "bottom": 3215, "left": 2280}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704935f.jpg"} -{"rects": [{"solidity": 0.9961215915643793, "top": 425, "right": 3110, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702838f.jpg"} -{"rects": [{"solidity": 0.996121793262714, "top": 820, "right": 3885, "bottom": 3275, "left": 2200}, {"solidity": 0.996703818722956, "top": 810, "right": 1995, "bottom": 3230, "left": 365}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716775f.jpg"} -{"rects": [{"solidity": 0.996122044271307, "top": 1180, "right": 3370, "bottom": 5010, "left": 390}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716958f.jpg"} -{"rects": [{"solidity": 0.9961220833697457, "top": 380, "right": 2505, "bottom": 1900, "left": 210}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716315f.jpg"} -{"rects": [{"solidity": 0.9961222215785761, "top": 745, "right": 2065, "bottom": 3105, "left": 490}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710226f.jpg"} -{"rects": [{"solidity": 0.9961223111158207, "top": 755, "right": 2035, "bottom": 3155, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701955f.jpg"} -{"rects": [{"solidity": 0.9961223281312678, "top": 555, "right": 3150, "bottom": 2195, "left": 720}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706655f.jpg"} -{"rects": [{"solidity": 0.9961225614671182, "top": 2260, "right": 3305, "bottom": 3905, "left": 865}, {"solidity": 0.9977189338199608, "top": 4120, "right": 3275, "bottom": 5735, "left": 865}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723263f.jpg"} -{"rects": [{"solidity": 0.9961226278484872, "top": 735, "right": 2030, "bottom": 3180, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722556f.jpg"} -{"rects": [{"solidity": 0.9961227381262984, "top": 435, "right": 3160, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724873f.jpg"} -{"rects": [{"solidity": 0.9961227754713489, "top": 740, "right": 2055, "bottom": 3145, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723924f.jpg"} -{"rects": [{"solidity": 0.9961228277811193, "top": 420, "right": 3110, "bottom": 2035, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718080f.jpg"} -{"rects": [{"solidity": 0.9961228629382788, "top": 610, "right": 1590, "bottom": 2420, "left": 385}, {"solidity": 0.9948150508356748, "top": 610, "right": 2915, "bottom": 2420, "left": 1710}, {"solidity": 0.9956720814255301, "top": 630, "right": 4245, "bottom": 2425, "left": 3040}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716489f.jpg"} -{"rects": [{"solidity": 0.9961229155416439, "top": 770, "right": 2115, "bottom": 3190, "left": 500}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719251f.jpg"} -{"rects": [{"solidity": 0.9961231059017811, "top": 835, "right": 2025, "bottom": 3260, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729951f.jpg"} -{"rects": [{"solidity": 0.9961233373175923, "top": 2220, "right": 3185, "bottom": 3855, "left": 750}, {"solidity": 0.9963701767991086, "top": 425, "right": 3185, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723407f.jpg"} -{"rects": [{"solidity": 0.9961234992346534, "top": 765, "right": 3210, "bottom": 2575, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714734f.jpg"} -{"rects": [{"solidity": 0.9961235177669344, "top": 2305, "right": 3180, "bottom": 3910, "left": 795}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711148f.jpg"} -{"rects": [{"solidity": 0.9961236632737426, "top": 1005, "right": 2815, "bottom": 4855, "left": 1115}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713372f.jpg"} -{"rects": [{"solidity": 0.9961236976802703, "top": 2200, "right": 3245, "bottom": 3840, "left": 810}, {"solidity": 0.9958835153941719, "top": 350, "right": 3235, "bottom": 1975, "left": 810}, {"solidity": 0.9976110783812304, "top": 4070, "right": 3225, "bottom": 5680, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727933f.jpg"} -{"rects": [{"solidity": 0.9961238301868462, "top": 3975, "right": 3070, "bottom": 5600, "left": 665}, {"solidity": 0.995768398832482, "top": 2155, "right": 3065, "bottom": 3780, "left": 650}, {"solidity": 0.996042216358839, "top": 365, "right": 3080, "bottom": 1985, "left": 665}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718129f.jpg"} -{"rects": [{"solidity": 0.9961240183085255, "top": 435, "right": 3185, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/717842f.jpg"} -{"rects": [{"solidity": 0.9961241303317232, "top": 845, "right": 3935, "bottom": 3260, "left": 2280}, {"solidity": 0.996262449081118, "top": 815, "right": 2040, "bottom": 3240, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704701f.jpg"} -{"rects": [{"solidity": 0.9961241672391481, "top": 2290, "right": 3205, "bottom": 3930, "left": 775}, {"solidity": 0.990413864544453, "top": 400, "right": 3195, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700077f.jpg"} -{"rects": [{"solidity": 0.9961241837793806, "top": 685, "right": 5770, "bottom": 3300, "left": 3925}, {"solidity": 0.9960875051250186, "top": 835, "right": 3630, "bottom": 3275, "left": 1990}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709996f.jpg"} -{"rects": [{"solidity": 0.9961242210043693, "top": 420, "right": 3090, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705683f.jpg"} -{"rects": [{"solidity": 0.996124232481076, "top": 755, "right": 2000, "bottom": 3160, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716614f.jpg"} -{"rects": [{"solidity": 0.9961242930214741, "top": 2255, "right": 3195, "bottom": 3880, "left": 775}, {"solidity": 0.9966232575976705, "top": 360, "right": 3190, "bottom": 1975, "left": 785}, {"solidity": 0.9973267785072992, "top": 4160, "right": 3200, "bottom": 5765, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700081f.jpg"} -{"rects": [{"solidity": 0.9961243535255262, "top": 385, "right": 3130, "bottom": 2040, "left": 700}, {"solidity": 0.9963930978320114, "top": 2275, "right": 3110, "bottom": 3915, "left": 690}, {"solidity": 0.9969070222291533, "top": 4140, "right": 3080, "bottom": 5755, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720029f.jpg"} -{"rects": [{"solidity": 0.9961243692806971, "top": 750, "right": 1995, "bottom": 3165, "left": 380}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719291f.jpg"} -{"rects": [{"solidity": 0.9961245877985169, "top": 2240, "right": 3130, "bottom": 3890, "left": 700}, {"solidity": 0.9957287739333175, "top": 390, "right": 3135, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701757f.jpg"} -{"rects": [{"solidity": 0.996124607289229, "top": 820, "right": 2055, "bottom": 3245, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724138f.jpg"} -{"rects": [{"solidity": 0.9961246620251992, "top": 755, "right": 5725, "bottom": 3200, "left": 4085}, {"solidity": 0.9963473479823903, "top": 745, "right": 3865, "bottom": 3180, "left": 2230}, {"solidity": 0.9970357762219796, "top": 745, "right": 2015, "bottom": 3170, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723306f.jpg"} -{"rects": [{"solidity": 0.9961247384442895, "top": 2210, "right": 3050, "bottom": 3810, "left": 635}, {"solidity": 0.9959759671266964, "top": 385, "right": 3055, "bottom": 1995, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709271f.jpg"} -{"rects": [{"solidity": 0.9961249152630756, "top": 430, "right": 3105, "bottom": 2035, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729109f.jpg"} -{"rects": [{"solidity": 0.9961251046731174, "top": 825, "right": 3935, "bottom": 3260, "left": 2290}, {"solidity": 0.9958622500776628, "top": 820, "right": 2070, "bottom": 3250, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721591f.jpg"} -{"rects": [{"solidity": 0.9961252804703284, "top": 490, "right": 2230, "bottom": 2925, "left": 590}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706931f.jpg"} -{"rects": [{"solidity": 0.9961254086733207, "top": 500, "right": 3070, "bottom": 2130, "left": 640}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704703f.jpg"} -{"rects": [{"solidity": 0.9961255923782575, "top": 440, "right": 3180, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734665f.jpg"} -{"rects": [{"solidity": 0.9961256229564925, "top": 475, "right": 3170, "bottom": 2105, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733224f.jpg"} -{"rects": [{"solidity": 0.996125635486333, "top": 425, "right": 3200, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700574f.jpg"} -{"rects": [{"solidity": 0.9961257824703699, "top": 520, "right": 3310, "bottom": 2465, "left": 485}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725788f.jpg"} -{"rects": [{"solidity": 0.9961257998427017, "top": 420, "right": 3095, "bottom": 2035, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728612f.jpg"} -{"rects": [{"solidity": 0.9961258541236294, "top": 410, "right": 3170, "bottom": 2055, "left": 730}, {"solidity": 0.999383559893704, "top": 2295, "right": 3170, "bottom": 3925, "left": 755}, {"solidity": 0.9970357857415835, "top": 4165, "right": 3170, "bottom": 5780, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730859f.jpg"} -{"rects": [{"solidity": 0.9961259268137044, "top": 800, "right": 2030, "bottom": 3215, "left": 415}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723193f.jpg"} -{"rects": [{"solidity": 0.9961259977751322, "top": 390, "right": 3120, "bottom": 2000, "left": 700}, {"solidity": 0.995103522716122, "top": 2275, "right": 3110, "bottom": 3885, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728359f.jpg"} -{"rects": [{"solidity": 0.9961260554015733, "top": 4110, "right": 3130, "bottom": 5740, "left": 690}, {"solidity": 0.996275617151392, "top": 2250, "right": 3150, "bottom": 3880, "left": 715}, {"solidity": 0.9960202011759374, "top": 385, "right": 3195, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723715f.jpg"} -{"rects": [{"solidity": 0.9961260556822716, "top": 400, "right": 3200, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713126f.jpg"} -{"rects": [{"solidity": 0.9961263126288925, "top": 525, "right": 5080, "bottom": 3680, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731853f.jpg"} -{"rects": [{"solidity": 0.9961266414027187, "top": 1050, "right": 3335, "bottom": 4845, "left": 365}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721422f.jpg"} -{"rects": [{"solidity": 0.9961266469086534, "top": 2245, "right": 3090, "bottom": 3860, "left": 675}, {"solidity": 0.9965798179633623, "top": 4090, "right": 3095, "bottom": 5675, "left": 680}, {"solidity": 0.9964211614774627, "top": 420, "right": 3070, "bottom": 1990, "left": 675}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730610f.jpg"} -{"rects": [{"solidity": 0.9961266744733693, "top": 2290, "right": 3200, "bottom": 3905, "left": 770}, {"solidity": 0.9960007593087716, "top": 375, "right": 3200, "bottom": 2005, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706624f.jpg"} -{"rects": [{"solidity": 0.9961266758307868, "top": 470, "right": 3190, "bottom": 2070, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710470f.jpg"} -{"rects": [{"solidity": 0.9961266803372066, "top": 425, "right": 3330, "bottom": 2405, "left": 245}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715079f.jpg"} -{"rects": [{"solidity": 0.9961270233820152, "top": 2405, "right": 3375, "bottom": 4045, "left": 955}, {"solidity": 0.9951368271589002, "top": 4290, "right": 3355, "bottom": 5950, "left": 925}, {"solidity": 0.9965737927467839, "top": 565, "right": 3390, "bottom": 2190, "left": 980}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710730f.jpg"} -{"rects": [{"solidity": 0.9961271676300578, "top": 785, "right": 2050, "bottom": 3215, "left": 420}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704906f.jpg"} -{"rects": [{"solidity": 0.9961272215812603, "top": 400, "right": 3170, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703307f.jpg"} -{"rects": [{"solidity": 0.9961272520173905, "top": 4065, "right": 3195, "bottom": 5690, "left": 770}, {"solidity": 0.9954901016516771, "top": 415, "right": 3195, "bottom": 2030, "left": 785}, {"solidity": 0.9966452033580568, "top": 2280, "right": 3195, "bottom": 3885, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721558f.jpg"} -{"rects": [{"solidity": 0.9961272541519162, "top": 800, "right": 3195, "bottom": 2325, "left": 1085}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509597.jpg"} -{"rects": [{"solidity": 0.9961274746499276, "top": 420, "right": 3155, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706312f.jpg"} -{"rects": [{"solidity": 0.9961277686827685, "top": 1035, "right": 3270, "bottom": 2025, "left": 1525}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508689.jpg"} -{"rects": [{"solidity": 0.9961277881793236, "top": 985, "right": 3405, "bottom": 4855, "left": 260}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711004f.jpg"} -{"rects": [{"solidity": 0.9961278551490602, "top": 665, "right": 2740, "bottom": 2075, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726933f.jpg"} -{"rects": [{"solidity": 0.9961282085827383, "top": 365, "right": 3115, "bottom": 2000, "left": 690}, {"solidity": 0.9971407872494567, "top": 2250, "right": 3095, "bottom": 3870, "left": 680}, {"solidity": 0.9965038571016047, "top": 4095, "right": 3040, "bottom": 5675, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730824f.jpg"} -{"rects": [{"solidity": 0.9961288339747132, "top": 465, "right": 3175, "bottom": 2075, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712260f.jpg"} -{"rects": [{"solidity": 0.996128924236082, "top": 480, "right": 3235, "bottom": 2070, "left": 850}, {"solidity": 0.9953899771340188, "top": 2355, "right": 3240, "bottom": 3935, "left": 850}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709323f.jpg"} -{"rects": [{"solidity": 0.996129197053998, "top": 440, "right": 3215, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718625f.jpg"} -{"rects": [{"solidity": 0.9961292124743112, "top": 455, "right": 3120, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723746f.jpg"} -{"rects": [{"solidity": 0.9961292396720784, "top": 810, "right": 3820, "bottom": 3220, "left": 2195}, {"solidity": 0.9947416244870377, "top": 790, "right": 5690, "bottom": 3190, "left": 4080}, {"solidity": 0.9945927170344443, "top": 820, "right": 1995, "bottom": 3205, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719308f.jpg"} -{"rects": [{"solidity": 0.9961292677304511, "top": 2170, "right": 2805, "bottom": 4595, "left": 1155}, {"solidity": 0.99584954939812, "top": 325, "right": 3195, "bottom": 1970, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700105f.jpg"} -{"rects": [{"solidity": 0.9961293193509737, "top": 635, "right": 4890, "bottom": 3385, "left": 1285}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718897f.jpg"} -{"rects": [{"solidity": 0.9961295521384225, "top": 805, "right": 3935, "bottom": 3260, "left": 2285}, {"solidity": 0.9995975116560625, "top": 795, "right": 2090, "bottom": 3220, "left": 480}, {"solidity": 0.9966825346723439, "top": 820, "right": 5730, "bottom": 3250, "left": 4120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733230f.jpg"} -{"rects": [{"solidity": 0.9961296058997359, "top": 435, "right": 3185, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719897f.jpg"} -{"rects": [{"solidity": 0.9961299703960668, "top": 805, "right": 2080, "bottom": 3210, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717460f.jpg"} -{"rects": [{"solidity": 0.996130062850822, "top": 2245, "right": 3255, "bottom": 3890, "left": 805}, {"solidity": 0.996509425827694, "top": 410, "right": 3230, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725815f.jpg"} -{"rects": [{"solidity": 0.996130070371615, "top": 1345, "right": 3540, "bottom": 5265, "left": 380}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721862f.jpg"} -{"rects": [{"solidity": 0.9961301086890594, "top": 495, "right": 5015, "bottom": 3715, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712968f.jpg"} -{"rects": [{"solidity": 0.9961301253812267, "top": 775, "right": 2055, "bottom": 3140, "left": 480}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718454f.jpg"} -{"rects": [{"solidity": 0.9961303364297059, "top": 785, "right": 2045, "bottom": 3210, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718023f.jpg"} -{"rects": [{"solidity": 0.9961303495324982, "top": 465, "right": 3190, "bottom": 2085, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733854f.jpg"} -{"rects": [{"solidity": 0.9961305402204496, "top": 920, "right": 5780, "bottom": 3385, "left": 4095}, {"solidity": 0.998142034010657, "top": 920, "right": 3900, "bottom": 3340, "left": 2265}, {"solidity": 0.9984022842843164, "top": 925, "right": 2010, "bottom": 3340, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701486f.jpg"} -{"rects": [{"solidity": 0.9961305419202185, "top": 785, "right": 2045, "bottom": 3190, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717306f.jpg"} -{"rects": [{"solidity": 0.9961305588079286, "top": 750, "right": 3305, "bottom": 2660, "left": 600}, {"solidity": 0.9958879998770243, "top": 3300, "right": 3265, "bottom": 5160, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714491f.jpg"} -{"rects": [{"solidity": 0.9961305878006572, "top": 395, "right": 3210, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715203f.jpg"} -{"rects": [{"solidity": 0.9961307409082101, "top": 785, "right": 5670, "bottom": 3205, "left": 4055}, {"solidity": 0.9962818777165288, "top": 790, "right": 2045, "bottom": 3205, "left": 435}, {"solidity": 0.9951504162202258, "top": 795, "right": 3845, "bottom": 3200, "left": 2255}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719499f.jpg"} -{"rects": [{"solidity": 0.9961307748185833, "top": 675, "right": 3330, "bottom": 2570, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714716f.jpg"} -{"rects": [{"solidity": 0.9961311954606027, "top": 855, "right": 2710, "bottom": 2680, "left": 1420}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508937.jpg"} -{"rects": [{"solidity": 0.9961312032345466, "top": 490, "right": 3180, "bottom": 2110, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700151f.jpg"} -{"rects": [{"solidity": 0.9961313507869853, "top": 2255, "right": 3185, "bottom": 3865, "left": 785}, {"solidity": 0.996891412815126, "top": 425, "right": 3180, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730353f.jpg"} -{"rects": [{"solidity": 0.996131364555497, "top": 820, "right": 2070, "bottom": 3230, "left": 445}, {"solidity": 0.9953073659049685, "top": 800, "right": 3885, "bottom": 3210, "left": 2265}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711792f.jpg"} -{"rects": [{"solidity": 0.9961314199693669, "top": 710, "right": 2065, "bottom": 3100, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704771f.jpg"} -{"rects": [{"solidity": 0.9961314336470918, "top": 800, "right": 1935, "bottom": 3190, "left": 280}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719080f.jpg"} -{"rects": [{"solidity": 0.9961314700413842, "top": 570, "right": 3475, "bottom": 2525, "left": 470}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732273f.jpg"} -{"rects": [{"solidity": 0.9961315965853104, "top": 1140, "right": 3920, "bottom": 5705, "left": 260}], "shape": {"h": 6900, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708880f.jpg"} -{"rects": [{"solidity": 0.9961316343117896, "top": 805, "right": 1990, "bottom": 3225, "left": 380}, {"solidity": 0.9969066503767583, "top": 820, "right": 3840, "bottom": 3240, "left": 2230}, {"solidity": 0.9974911747803957, "top": 845, "right": 5705, "bottom": 3250, "left": 4110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734363f.jpg"} -{"rects": [{"solidity": 0.9961316767860486, "top": 760, "right": 1920, "bottom": 3130, "left": 330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709923f.jpg"} -{"rects": [{"solidity": 0.9961317715398691, "top": 545, "right": 5065, "bottom": 3625, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728979f.jpg"} -{"rects": [{"solidity": 0.9961318351869612, "top": 435, "right": 2465, "bottom": 2880, "left": 800}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703998f.jpg"} -{"rects": [{"solidity": 0.9961318374261866, "top": 785, "right": 2050, "bottom": 3190, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714001f.jpg"} -{"rects": [{"solidity": 0.9961318742511099, "top": 500, "right": 3055, "bottom": 1895, "left": 1235}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/726781f.jpg"} -{"rects": [{"solidity": 0.9961319718218833, "top": 395, "right": 3095, "bottom": 2000, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700887f.jpg"} -{"rects": [{"solidity": 0.9961323734752172, "top": 455, "right": 3155, "bottom": 2415, "left": 415}, {"solidity": 0.9985246828227735, "top": 2475, "right": 3135, "bottom": 4100, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704492f.jpg"} -{"rects": [{"solidity": 0.9961323994140201, "top": 525, "right": 3195, "bottom": 2115, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726128f.jpg"} -{"rects": [{"solidity": 0.9961325016406604, "top": 405, "right": 3210, "bottom": 2070, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702302f.jpg"} -{"rects": [{"solidity": 0.996132873604432, "top": 1070, "right": 3195, "bottom": 5130, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709582f.jpg"} -{"rects": [{"solidity": 0.9961329049387229, "top": 345, "right": 3110, "bottom": 1985, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700998f.jpg"} -{"rects": [{"solidity": 0.9961329791515737, "top": 370, "right": 3080, "bottom": 1995, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701931f.jpg"} -{"rects": [{"solidity": 0.9961329841651814, "top": 440, "right": 3200, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724631f.jpg"} -{"rects": [{"solidity": 0.9961330968190928, "top": 2130, "right": 2675, "bottom": 3485, "left": 880}, {"solidity": 0.9955413199395577, "top": 730, "right": 2680, "bottom": 2065, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726291f.jpg"} -{"rects": [{"solidity": 0.9961333303031975, "top": 900, "right": 2035, "bottom": 3310, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709239f.jpg"} -{"rects": [{"solidity": 0.9961335272950004, "top": 2230, "right": 3140, "bottom": 3860, "left": 705}, {"solidity": 0.9976081701056578, "top": 380, "right": 3150, "bottom": 2000, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702168f.jpg"} -{"rects": [{"solidity": 0.9961337236593921, "top": 2495, "right": 2485, "bottom": 3960, "left": 460}, {"solidity": 0.9952653245950721, "top": 770, "right": 2490, "bottom": 2205, "left": 470}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716002f.jpg"} -{"rects": [{"solidity": 0.9961337964186068, "top": 790, "right": 2050, "bottom": 3215, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724510f.jpg"} -{"rects": [{"solidity": 0.9961338183442419, "top": 450, "right": 5230, "bottom": 3515, "left": 1340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730014f.jpg"} -{"rects": [{"solidity": 0.9961340827364139, "top": 2045, "right": 2690, "bottom": 3465, "left": 845}, {"solidity": 0.9962991961328788, "top": 560, "right": 5265, "bottom": 1955, "left": 3405}, {"solidity": 0.9954557079062814, "top": 570, "right": 2675, "bottom": 1975, "left": 845}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705910f.jpg"} -{"rects": [{"solidity": 0.9961341801009608, "top": 405, "right": 3220, "bottom": 2010, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726902f.jpg"} -{"rects": [{"solidity": 0.9961343003434758, "top": 2265, "right": 3070, "bottom": 3895, "left": 640}, {"solidity": 0.9966414696232058, "top": 395, "right": 3080, "bottom": 2010, "left": 655}, {"solidity": 0.9962883071960201, "top": 4150, "right": 3065, "bottom": 5760, "left": 645}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710588f.jpg"} -{"rects": [{"solidity": 0.9961343943300202, "top": 380, "right": 3230, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710843f.jpg"} -{"rects": [{"solidity": 0.9961345286592969, "top": 2125, "right": 3040, "bottom": 3765, "left": 620}, {"solidity": 0.9962351401881148, "top": 470, "right": 3065, "bottom": 2110, "left": 640}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700926f.jpg"} -{"rects": [{"solidity": 0.9961347267887898, "top": 860, "right": 2050, "bottom": 3260, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729447f.jpg"} -{"rects": [{"solidity": 0.9961348098025239, "top": 440, "right": 3060, "bottom": 2025, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733659f.jpg"} -{"rects": [{"solidity": 0.9961351600757534, "top": 2220, "right": 3105, "bottom": 3845, "left": 675}, {"solidity": 0.9967049316297518, "top": 385, "right": 3115, "bottom": 2005, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733642f.jpg"} -{"rects": [{"solidity": 0.9961352911019679, "top": 300, "right": 3090, "bottom": 1905, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709368f.jpg"} -{"rects": [{"solidity": 0.9961355617272359, "top": 575, "right": 3055, "bottom": 1975, "left": 1230}, {"solidity": 0.9976004053973491, "top": 2355, "right": 3045, "bottom": 3765, "left": 1245}, {"solidity": 0.998042864476386, "top": 4170, "right": 3025, "bottom": 5600, "left": 1375}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725947f.jpg"} -{"rects": [{"solidity": 0.9961358650525179, "top": 775, "right": 5730, "bottom": 3195, "left": 4100}, {"solidity": 0.995513810868989, "top": 755, "right": 2030, "bottom": 3175, "left": 410}, {"solidity": 0.9982946661306429, "top": 775, "right": 3870, "bottom": 3185, "left": 2260}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724352f.jpg"} -{"rects": [{"solidity": 0.996135977985243, "top": 2100, "right": 3260, "bottom": 3745, "left": 825}, {"solidity": 0.9958726114649682, "top": 3895, "right": 3225, "bottom": 5545, "left": 780}, {"solidity": 0.9981848676973796, "top": 265, "right": 3245, "bottom": 1885, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704346f.jpg"} -{"rects": [{"solidity": 0.9961362409031296, "top": 425, "right": 3140, "bottom": 2050, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707442f.jpg"} -{"rects": [{"solidity": 0.9961366648667223, "top": 2120, "right": 2770, "bottom": 3520, "left": 925}, {"solidity": 0.9980448053014134, "top": 655, "right": 2735, "bottom": 2055, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705850f.jpg"} -{"rects": [{"solidity": 0.9961368598568053, "top": 760, "right": 1975, "bottom": 3155, "left": 380}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717887f.jpg"} -{"rects": [{"solidity": 0.9961370233926502, "top": 895, "right": 1995, "bottom": 3315, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724086f.jpg"} -{"rects": [{"solidity": 0.9961371115291866, "top": 2285, "right": 3055, "bottom": 3895, "left": 635}, {"solidity": 0.9955099464660041, "top": 430, "right": 3050, "bottom": 2030, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707615f.jpg"} -{"rects": [{"solidity": 0.9961376180703387, "top": 2190, "right": 3100, "bottom": 3825, "left": 660}, {"solidity": 0.9968372237421658, "top": 350, "right": 3105, "bottom": 1965, "left": 685}, {"solidity": 0.9957033571963921, "top": 4050, "right": 3080, "bottom": 5675, "left": 655}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/728394f.jpg"} -{"rects": [{"solidity": 0.996137629999504, "top": 415, "right": 3200, "bottom": 2010, "left": 805}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/701127f.jpg"} -{"rects": [{"solidity": 0.9961376977675044, "top": 825, "right": 1980, "bottom": 3230, "left": 355}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724785f.jpg"} -{"rects": [{"solidity": 0.9961376983054646, "top": 505, "right": 3190, "bottom": 2100, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720688f.jpg"} -{"rects": [{"solidity": 0.9961377140296409, "top": 470, "right": 3280, "bottom": 2085, "left": 850}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726077f.jpg"} -{"rects": [{"solidity": 0.9961379121219937, "top": 420, "right": 3060, "bottom": 2030, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729614f.jpg"} -{"rects": [{"solidity": 0.9961379283418145, "top": 4065, "right": 3135, "bottom": 5680, "left": 725}, {"solidity": 0.9991016682836638, "top": 420, "right": 3135, "bottom": 2020, "left": 730}, {"solidity": 0.9958253061278073, "top": 2240, "right": 3130, "bottom": 3845, "left": 735}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730347f.jpg"} -{"rects": [{"solidity": 0.9961382529504469, "top": 330, "right": 4265, "bottom": 2750, "left": 1235}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517225.jpg"} -{"rects": [{"solidity": 0.9961385131992931, "top": 795, "right": 3885, "bottom": 3220, "left": 2255}, {"solidity": 0.9968527178058568, "top": 800, "right": 2030, "bottom": 3190, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713438f.jpg"} -{"rects": [{"solidity": 0.9961386054072174, "top": 795, "right": 2080, "bottom": 3235, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714064f.jpg"} -{"rects": [{"solidity": 0.9961386363503998, "top": 635, "right": 1545, "bottom": 2440, "left": 340}], "shape": {"h": 3020, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/715752f.jpg"} -{"rects": [{"solidity": 0.9961386969716537, "top": 3995, "right": 3220, "bottom": 5605, "left": 795}, {"solidity": 0.9961613600872923, "top": 300, "right": 3180, "bottom": 1910, "left": 775}, {"solidity": 0.9898362824541095, "top": 2155, "right": 3190, "bottom": 3755, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702078f.jpg"} -{"rects": [{"solidity": 0.9961388219216935, "top": 360, "right": 3345, "bottom": 1980, "left": 930}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704602f.jpg"} -{"rects": [{"solidity": 0.996138845172579, "top": 690, "right": 3920, "bottom": 3090, "left": 2305}, {"solidity": 0.9942373808407564, "top": 700, "right": 5790, "bottom": 3105, "left": 4165}, {"solidity": 0.9962917465153227, "top": 690, "right": 2050, "bottom": 3080, "left": 440}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731708f.jpg"} -{"rects": [{"solidity": 0.9961388733060513, "top": 530, "right": 5055, "bottom": 3535, "left": 1090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715609f.jpg"} -{"rects": [{"solidity": 0.9961393051389498, "top": 425, "right": 3180, "bottom": 2065, "left": 745}, {"solidity": 0.996461164161594, "top": 2320, "right": 3160, "bottom": 3950, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706973f.jpg"} -{"rects": [{"solidity": 0.9961393096985788, "top": 510, "right": 5335, "bottom": 3595, "left": 3365}, {"solidity": 0.9922326519109453, "top": 590, "right": 2795, "bottom": 3580, "left": 835}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731428f.jpg"} -{"rects": [{"solidity": 0.996139330429315, "top": 1300, "right": 3300, "bottom": 4740, "left": 700}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/711095f.jpg"} -{"rects": [{"solidity": 0.9961394031227354, "top": 810, "right": 2025, "bottom": 3215, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720067f.jpg"} -{"rects": [{"solidity": 0.9961397064756746, "top": 395, "right": 3210, "bottom": 2030, "left": 780}, {"solidity": 0.995626534513824, "top": 2195, "right": 3180, "bottom": 3850, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702628f.jpg"} -{"rects": [{"solidity": 0.9961400811390475, "top": 2205, "right": 3205, "bottom": 3825, "left": 780}, {"solidity": 0.9946951335036291, "top": 390, "right": 3210, "bottom": 2005, "left": 795}, {"solidity": 0.9953094129970697, "top": 4110, "right": 3175, "bottom": 5705, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720594f.jpg"} -{"rects": [{"solidity": 0.9961401781262033, "top": 325, "right": 3195, "bottom": 1965, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700096f.jpg"} -{"rects": [{"solidity": 0.996140363416623, "top": 465, "right": 3170, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718654f.jpg"} -{"rects": [{"solidity": 0.9961405504188525, "top": 910, "right": 2005, "bottom": 3345, "left": 370}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720917f.jpg"} -{"rects": [{"solidity": 0.9961406462891077, "top": 370, "right": 3185, "bottom": 1990, "left": 755}, {"solidity": 0.9955614591050466, "top": 2230, "right": 3165, "bottom": 3845, "left": 755}, {"solidity": 0.9956715241051899, "top": 4110, "right": 3145, "bottom": 5720, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727536f.jpg"} -{"rects": [{"solidity": 0.9961407955260041, "top": 2185, "right": 3210, "bottom": 3825, "left": 775}, {"solidity": 0.9957270825682214, "top": 300, "right": 3230, "bottom": 1955, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700164f.jpg"} -{"rects": [{"solidity": 0.9961411192214112, "top": 2230, "right": 4965, "bottom": 3655, "left": 3145}, {"solidity": 0.9960937881466001, "top": 2225, "right": 2830, "bottom": 3650, "left": 1015}, {"solidity": 0.9942069477550701, "top": 605, "right": 2830, "bottom": 2030, "left": 1010}, {"solidity": 0.9951836983686562, "top": 630, "right": 4955, "bottom": 2045, "left": 3140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726420f.jpg"} -{"rects": [{"solidity": 0.9961412185388724, "top": 2295, "right": 3175, "bottom": 3925, "left": 750}, {"solidity": 0.995640070017246, "top": 535, "right": 3200, "bottom": 2165, "left": 770}, {"solidity": 0.9963879888503004, "top": 4065, "right": 3190, "bottom": 5680, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733173f.jpg"} -{"rects": [{"solidity": 0.9961412557639993, "top": 435, "right": 3180, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731626f.jpg"} -{"rects": [{"solidity": 0.9961412711069269, "top": 390, "right": 3215, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707032f.jpg"} -{"rects": [{"solidity": 0.9961413103345493, "top": 405, "right": 3165, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704850f.jpg"} -{"rects": [{"solidity": 0.9961414326316297, "top": 2095, "right": 2775, "bottom": 3530, "left": 945}, {"solidity": 0.9967268292682927, "top": 625, "right": 2755, "bottom": 2045, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703200f.jpg"} -{"rects": [{"solidity": 0.9961420105972206, "top": 2290, "right": 3210, "bottom": 3895, "left": 805}, {"solidity": 0.99548136554443, "top": 465, "right": 3200, "bottom": 2065, "left": 790}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/733968f.jpg"} -{"rects": [{"solidity": 0.9961420587705065, "top": 720, "right": 3240, "bottom": 2240, "left": 1130}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508173.jpg"} -{"rects": [{"solidity": 0.9961422136422137, "top": 4045, "right": 3240, "bottom": 5665, "left": 810}, {"solidity": 0.9966524787828607, "top": 2210, "right": 3240, "bottom": 3825, "left": 825}, {"solidity": 0.9978023616508866, "top": 405, "right": 3245, "bottom": 2015, "left": 830}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707306f.jpg"} -{"rects": [{"solidity": 0.9961422143306519, "top": 2250, "right": 3045, "bottom": 3890, "left": 610}, {"solidity": 0.9962603776122126, "top": 4095, "right": 3015, "bottom": 5735, "left": 580}, {"solidity": 0.9968759312128116, "top": 410, "right": 3060, "bottom": 2040, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729369f.jpg"} -{"rects": [{"solidity": 0.9961423360333801, "top": 2250, "right": 3165, "bottom": 3885, "left": 730}, {"solidity": 0.9963582368490108, "top": 435, "right": 3170, "bottom": 2060, "left": 735}, {"solidity": 0.9951559588143847, "top": 4080, "right": 3150, "bottom": 5705, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705452f.jpg"} -{"rects": [{"solidity": 0.9961425487489826, "top": 800, "right": 2150, "bottom": 3250, "left": 395}, {"solidity": 0.9965243863766093, "top": 800, "right": 4045, "bottom": 3240, "left": 2405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720954f.jpg"} -{"rects": [{"solidity": 0.9961426370037424, "top": 410, "right": 3230, "bottom": 2000, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725709f.jpg"} -{"rects": [{"solidity": 0.9961427595781724, "top": 445, "right": 3120, "bottom": 2075, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728782f.jpg"} -{"rects": [{"solidity": 0.99614288164277, "top": 2285, "right": 3115, "bottom": 3895, "left": 690}, {"solidity": 0.9965779590779591, "top": 420, "right": 3135, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710596f.jpg"} -{"rects": [{"solidity": 0.9961430424771797, "top": 765, "right": 3050, "bottom": 2290, "left": 920}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508995.jpg"} -{"rects": [{"solidity": 0.9961432382621696, "top": 430, "right": 3280, "bottom": 2070, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706929f.jpg"} -{"rects": [{"solidity": 0.9961433506828538, "top": 500, "right": 3020, "bottom": 2125, "left": 605}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704203f.jpg"} -{"rects": [{"solidity": 0.9961437068345715, "top": 745, "right": 3525, "bottom": 2345, "left": 600}], "shape": {"h": 3040, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517013.jpg"} -{"rects": [{"solidity": 0.9961437981824884, "top": 2250, "right": 3090, "bottom": 3890, "left": 670}, {"solidity": 0.9962272397148899, "top": 400, "right": 3085, "bottom": 2030, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710826f.jpg"} -{"rects": [{"solidity": 0.9961438755670772, "top": 755, "right": 3910, "bottom": 3175, "left": 2300}, {"solidity": 0.9953866930409382, "top": 780, "right": 2045, "bottom": 3180, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711953f.jpg"} -{"rects": [{"solidity": 0.9961439965307689, "top": 360, "right": 2395, "bottom": 1560, "left": 600}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715870f.jpg"} -{"rects": [{"solidity": 0.9961440349341714, "top": 2210, "right": 3290, "bottom": 3905, "left": 805}, {"solidity": 0.9949499934201869, "top": 510, "right": 3235, "bottom": 2125, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734135f.jpg"} -{"rects": [{"solidity": 0.9961443878162655, "top": 745, "right": 5765, "bottom": 3170, "left": 4150}, {"solidity": 0.9962615302022158, "top": 730, "right": 3895, "bottom": 3145, "left": 2290}, {"solidity": 0.9966377072489858, "top": 725, "right": 2040, "bottom": 3140, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733804f.jpg"} -{"rects": [{"solidity": 0.996144417850525, "top": 2220, "right": 2905, "bottom": 3640, "left": 1060}, {"solidity": 0.9941594302071186, "top": 2210, "right": 5115, "bottom": 3655, "left": 3290}, {"solidity": 0.9967800616749516, "top": 560, "right": 5105, "bottom": 1975, "left": 3270}, {"solidity": 0.9931984139447236, "top": 570, "right": 2915, "bottom": 1980, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725068f.jpg"} -{"rects": [{"solidity": 0.9961444930804262, "top": 270, "right": 2490, "bottom": 1640, "left": 400}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715874f.jpg"} -{"rects": [{"solidity": 0.9961449016982826, "top": 415, "right": 3205, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724709f.jpg"} -{"rects": [{"solidity": 0.9961450879433487, "top": 450, "right": 3125, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720731f.jpg"} -{"rects": [{"solidity": 0.996145095140791, "top": 610, "right": 2830, "bottom": 2055, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706126f.jpg"} -{"rects": [{"solidity": 0.9961452937748447, "top": 820, "right": 2015, "bottom": 3240, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711973f.jpg"} -{"rects": [{"solidity": 0.9961455591680859, "top": 375, "right": 3100, "bottom": 1990, "left": 680}, {"solidity": 0.995858022766256, "top": 2230, "right": 3090, "bottom": 3845, "left": 685}, {"solidity": 0.9928964793811054, "top": 4095, "right": 3080, "bottom": 5705, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709545f.jpg"} -{"rects": [{"solidity": 0.9961457551818997, "top": 2165, "right": 2820, "bottom": 3600, "left": 1030}, {"solidity": 0.9960058061458251, "top": 500, "right": 2820, "bottom": 1930, "left": 1030}, {"solidity": 0.9959668017680589, "top": 530, "right": 5120, "bottom": 1950, "left": 3330}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727703f.jpg"} -{"rects": [{"solidity": 0.9961458547096245, "top": 770, "right": 2025, "bottom": 3195, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732518f.jpg"} -{"rects": [{"solidity": 0.996145895717018, "top": 2280, "right": 3110, "bottom": 3910, "left": 680}, {"solidity": 0.9962545004064883, "top": 4155, "right": 3060, "bottom": 5780, "left": 630}, {"solidity": 0.9970382755894285, "top": 450, "right": 3130, "bottom": 2060, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703133f.jpg"} -{"rects": [{"solidity": 0.9961459654600449, "top": 765, "right": 2060, "bottom": 3180, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716872f.jpg"} -{"rects": [{"solidity": 0.996145966709347, "top": 385, "right": 3200, "bottom": 2025, "left": 760}, {"solidity": 0.9960277290142361, "top": 2235, "right": 3185, "bottom": 3885, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707220f.jpg"} -{"rects": [{"solidity": 0.9961460465742102, "top": 2305, "right": 3120, "bottom": 3935, "left": 685}, {"solidity": 0.9958058835040114, "top": 430, "right": 3115, "bottom": 2050, "left": 715}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700497f.jpg"} -{"rects": [{"solidity": 0.9961460793184878, "top": 825, "right": 4795, "bottom": 3450, "left": 1320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702066f.jpg"} -{"rects": [{"solidity": 0.9961464603269377, "top": 420, "right": 2945, "bottom": 2045, "left": 525}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707355f.jpg"} -{"rects": [{"solidity": 0.9961465121799928, "top": 475, "right": 3230, "bottom": 3780, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715642f.jpg"} -{"rects": [{"solidity": 0.9961466739152223, "top": 475, "right": 5725, "bottom": 4135, "left": 1210}], "shape": {"h": 4420, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/708372f.jpg"} -{"rects": [{"solidity": 0.9961467412349472, "top": 2280, "right": 3080, "bottom": 3930, "left": 650}, {"solidity": 0.9960486878752541, "top": 420, "right": 3085, "bottom": 2035, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710607f.jpg"} -{"rects": [{"solidity": 0.9961468765517286, "top": 400, "right": 3215, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732139f.jpg"} -{"rects": [{"solidity": 0.9961470308796407, "top": 415, "right": 3160, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700425f.jpg"} -{"rects": [{"solidity": 0.996147045799084, "top": 965, "right": 2050, "bottom": 3385, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720916f.jpg"} -{"rects": [{"solidity": 0.996147165918729, "top": 510, "right": 3265, "bottom": 2545, "left": 440}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718598f.jpg"} -{"rects": [{"solidity": 0.9961474202730028, "top": 1205, "right": 3035, "bottom": 2845, "left": 605}, {"solidity": 0.9963792392536852, "top": 885, "right": 5175, "bottom": 3310, "left": 3555}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722893f.jpg"} -{"rects": [{"solidity": 0.9961474425988307, "top": 780, "right": 3955, "bottom": 3195, "left": 2335}, {"solidity": 0.9976774201896235, "top": 780, "right": 2070, "bottom": 3190, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712375f.jpg"} -{"rects": [{"solidity": 0.9961475290442156, "top": 640, "right": 3040, "bottom": 2050, "left": 1255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727421f.jpg"} -{"rects": [{"solidity": 0.9961476028258534, "top": 190, "right": 3435, "bottom": 2170, "left": 640}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/726775f.jpg"} -{"rects": [{"solidity": 0.9961477257869578, "top": 2215, "right": 3170, "bottom": 3845, "left": 735}, {"solidity": 0.9962461117013787, "top": 4015, "right": 3160, "bottom": 5645, "left": 730}, {"solidity": 0.9966953392999922, "top": 415, "right": 3170, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719766f.jpg"} -{"rects": [{"solidity": 0.9961480453265352, "top": 675, "right": 3260, "bottom": 2490, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713962f.jpg"} -{"rects": [{"solidity": 0.9961480615522031, "top": 410, "right": 3260, "bottom": 2015, "left": 860}, {"solidity": 0.9962879779353927, "top": 2225, "right": 3195, "bottom": 3845, "left": 855}, {"solidity": 1.0, "top": 4990, "right": 3865, "bottom": 6010, "left": 2420}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702267f.jpg"} -{"rects": [{"solidity": 0.9961480758048401, "top": 905, "right": 2090, "bottom": 3320, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724418f.jpg"} -{"rects": [{"solidity": 0.996148218140777, "top": 445, "right": 3150, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707729f.jpg"} -{"rects": [{"solidity": 0.9961484762409129, "top": 415, "right": 3265, "bottom": 2045, "left": 830}], "shape": {"h": 6140, "w": 4090}, "file": "/usr/local/google/home/danvk/milstein/701276f.jpg"} -{"rects": [{"solidity": 0.9961485225973401, "top": 440, "right": 3315, "bottom": 2085, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700127f.jpg"} -{"rects": [{"solidity": 0.9961485242099725, "top": 720, "right": 3300, "bottom": 2640, "left": 605}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715092f.jpg"} -{"rects": [{"solidity": 0.9961487938858371, "top": 2305, "right": 3140, "bottom": 3890, "left": 740}, {"solidity": 0.9961657332744638, "top": 440, "right": 3135, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729050f.jpg"} -{"rects": [{"solidity": 0.9961488047343422, "top": 2280, "right": 3210, "bottom": 3890, "left": 785}, {"solidity": 0.9951583704514079, "top": 440, "right": 3225, "bottom": 2050, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731016f.jpg"} -{"rects": [{"solidity": 0.9961489088575096, "top": 840, "right": 2025, "bottom": 3255, "left": 400}, {"solidity": 0.9960555906097818, "top": 840, "right": 3870, "bottom": 3245, "left": 2235}, {"solidity": 0.9962070092656421, "top": 825, "right": 5720, "bottom": 3240, "left": 4095}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713242f.jpg"} -{"rects": [{"solidity": 0.9961489170831731, "top": 4140, "right": 3195, "bottom": 5760, "left": 760}, {"solidity": 0.998005426793335, "top": 2280, "right": 3195, "bottom": 3885, "left": 775}, {"solidity": 0.9974225455306678, "top": 405, "right": 3195, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734580f.jpg"} -{"rects": [{"solidity": 0.9961489915252054, "top": 425, "right": 3105, "bottom": 2045, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729156f.jpg"} -{"rects": [{"solidity": 0.9961490886176395, "top": 2245, "right": 3195, "bottom": 3830, "left": 810}, {"solidity": 0.9952320491830666, "top": 415, "right": 3190, "bottom": 1995, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724727f.jpg"} -{"rects": [{"solidity": 0.996149121072541, "top": 725, "right": 1875, "bottom": 3135, "left": 255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724846f.jpg"} -{"rects": [{"solidity": 0.9961491612556708, "top": 2050, "right": 5280, "bottom": 3480, "left": 3430}, {"solidity": 0.9957622971676877, "top": 620, "right": 2665, "bottom": 2040, "left": 830}, {"solidity": 0.9963855120940566, "top": 615, "right": 5265, "bottom": 1985, "left": 3420}, {"solidity": 0.9966069783480918, "top": 2105, "right": 2650, "bottom": 3505, "left": 855}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702474f.jpg"} -{"rects": [{"solidity": 0.996149383188233, "top": 760, "right": 3880, "bottom": 3175, "left": 2260}, {"solidity": 0.9962062464136404, "top": 780, "right": 2040, "bottom": 3180, "left": 430}, {"solidity": 0.9947288266880226, "top": 755, "right": 5720, "bottom": 3160, "left": 4115}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730425f.jpg"} -{"rects": [{"solidity": 0.9961494805328814, "top": 660, "right": 2840, "bottom": 1870, "left": 905}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700252f.jpg"} -{"rects": [{"solidity": 0.9961496521176914, "top": 420, "right": 3090, "bottom": 2075, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700483f.jpg"} -{"rects": [{"solidity": 0.996149998100328, "top": 2090, "right": 3125, "bottom": 3745, "left": 680}, {"solidity": 0.9958781583611558, "top": 3940, "right": 3095, "bottom": 5600, "left": 650}, {"solidity": 0.9961289293122706, "top": 280, "right": 3135, "bottom": 1910, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704442f.jpg"} -{"rects": [{"solidity": 0.9961503630434853, "top": 925, "right": 5685, "bottom": 3355, "left": 4050}, {"solidity": 0.9963008352222571, "top": 905, "right": 3800, "bottom": 3325, "left": 2185}, {"solidity": 0.9961764744165462, "top": 900, "right": 1985, "bottom": 3315, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724090f.jpg"} -{"rects": [{"solidity": 0.9961503694760331, "top": 435, "right": 3195, "bottom": 2085, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701459f.jpg"} -{"rects": [{"solidity": 0.9961505128733208, "top": 625, "right": 4645, "bottom": 3300, "left": 1200}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708233f.jpg"} -{"rects": [{"solidity": 0.9961508182334418, "top": 850, "right": 2005, "bottom": 3265, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729919f.jpg"} -{"rects": [{"solidity": 0.9961508552389691, "top": 385, "right": 3090, "bottom": 1995, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728299f.jpg"} -{"rects": [{"solidity": 0.9961508753445952, "top": 455, "right": 2930, "bottom": 2075, "left": 515}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707014f.jpg"} -{"rects": [{"solidity": 0.9961508779314875, "top": 2190, "right": 3160, "bottom": 3825, "left": 730}, {"solidity": 0.9967714950461402, "top": 340, "right": 3155, "bottom": 1945, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724308f.jpg"} -{"rects": [{"solidity": 0.9961508903101431, "top": 725, "right": 1990, "bottom": 3140, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730182f.jpg"} -{"rects": [{"solidity": 0.9961509001305514, "top": 530, "right": 3100, "bottom": 1950, "left": 1255}, {"solidity": 0.9956149848419229, "top": 4010, "right": 3070, "bottom": 5440, "left": 1260}, {"solidity": 0.9953348148222464, "top": 2285, "right": 3095, "bottom": 3665, "left": 1255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727770f.jpg"} -{"rects": [{"solidity": 0.9961514702854285, "top": 780, "right": 2745, "bottom": 2205, "left": 935}, {"solidity": 0.9941544967494862, "top": 2260, "right": 2740, "bottom": 3675, "left": 925}, {"solidity": 0.9953938938171312, "top": 805, "right": 5145, "bottom": 2215, "left": 3335}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734190f.jpg"} -{"rects": [{"solidity": 0.9961516937156402, "top": 480, "right": 3155, "bottom": 2090, "left": 765}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711112f.jpg"} -{"rects": [{"solidity": 0.9961517246273496, "top": 790, "right": 3885, "bottom": 3210, "left": 2260}, {"solidity": 0.9966619828663563, "top": 800, "right": 5745, "bottom": 3205, "left": 4125}, {"solidity": 0.9949643922233268, "top": 800, "right": 1990, "bottom": 3210, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724416f.jpg"} -{"rects": [{"solidity": 0.9961518163900527, "top": 1100, "right": 3410, "bottom": 5005, "left": 410}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717016f.jpg"} -{"rects": [{"solidity": 0.9961518752356735, "top": 735, "right": 3285, "bottom": 2660, "left": 575}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714506f.jpg"} -{"rects": [{"solidity": 0.996152182619143, "top": 800, "right": 5755, "bottom": 3230, "left": 4120}, {"solidity": 0.9955824777017216, "top": 795, "right": 3900, "bottom": 3210, "left": 2290}, {"solidity": 0.9961966442124682, "top": 805, "right": 2050, "bottom": 3220, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721170f.jpg"} -{"rects": [{"solidity": 0.9961522849507831, "top": 430, "right": 2935, "bottom": 1930, "left": 940}, {"solidity": 0.9886364123652986, "top": 2180, "right": 2935, "bottom": 3695, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/715325f.jpg"} -{"rects": [{"solidity": 0.9961523548185045, "top": 405, "right": 3840, "bottom": 2620, "left": 955}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517177.jpg"} -{"rects": [{"solidity": 0.9961523884456512, "top": 700, "right": 2650, "bottom": 2145, "left": 830}, {"solidity": 0.9961247544204322, "top": 2185, "right": 2645, "bottom": 3600, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726136f.jpg"} -{"rects": [{"solidity": 0.9961525395608997, "top": 380, "right": 3320, "bottom": 2495, "left": 1800}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508147.jpg"} -{"rects": [{"solidity": 0.9961526500226032, "top": 615, "right": 3275, "bottom": 2245, "left": 845}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700476f.jpg"} -{"rects": [{"solidity": 0.9961530460280613, "top": 390, "right": 3145, "bottom": 1985, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716910f.jpg"} -{"rects": [{"solidity": 0.9961530488774906, "top": 605, "right": 2655, "bottom": 2045, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705943f.jpg"} -{"rects": [{"solidity": 0.996153209520972, "top": 795, "right": 2030, "bottom": 3185, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713567f.jpg"} -{"rects": [{"solidity": 0.9961538706858611, "top": 405, "right": 3240, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707229f.jpg"} -{"rects": [{"solidity": 0.9961538829212645, "top": 2270, "right": 3040, "bottom": 3900, "left": 605}, {"solidity": 0.9962346432036271, "top": 405, "right": 3045, "bottom": 2040, "left": 620}, {"solidity": 0.9944746755964838, "top": 4165, "right": 2755, "bottom": 5610, "left": 880}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728401f.jpg"} -{"rects": [{"solidity": 0.9961539362150518, "top": 715, "right": 4300, "bottom": 2515, "left": 3100}, {"solidity": 0.9927018796597711, "top": 715, "right": 2925, "bottom": 2515, "left": 1720}, {"solidity": 0.9911889877021514, "top": 710, "right": 1545, "bottom": 2510, "left": 350}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715879f.jpg"} -{"rects": [{"solidity": 0.9961540951764325, "top": 445, "right": 3155, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707830f.jpg"} -{"rects": [{"solidity": 0.9961542423514061, "top": 795, "right": 2600, "bottom": 2200, "left": 765}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705636f.jpg"} -{"rects": [{"solidity": 0.9961543106988429, "top": 2175, "right": 2680, "bottom": 3605, "left": 850}, {"solidity": 0.9960723844990108, "top": 675, "right": 2670, "bottom": 2105, "left": 850}, {"solidity": 0.9940933576266487, "top": 670, "right": 5305, "bottom": 2095, "left": 3510}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704723f.jpg"} -{"rects": [{"solidity": 0.9961543449417914, "top": 555, "right": 2920, "bottom": 1955, "left": 1115}, {"solidity": 0.9943079508623104, "top": 2265, "right": 2950, "bottom": 3665, "left": 1145}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731332f.jpg"} -{"rects": [{"solidity": 0.9961546245699251, "top": 740, "right": 4985, "bottom": 3560, "left": 1590}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715744f.jpg"} -{"rects": [{"solidity": 0.9961546567236768, "top": 770, "right": 3905, "bottom": 3185, "left": 2285}, {"solidity": 0.9966665026165986, "top": 755, "right": 2025, "bottom": 3155, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724268f.jpg"} -{"rects": [{"solidity": 0.9961546919872707, "top": 745, "right": 3880, "bottom": 3165, "left": 2270}, {"solidity": 0.9971397483760417, "top": 750, "right": 2040, "bottom": 3165, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732198f.jpg"} -{"rects": [{"solidity": 0.9961552820660611, "top": 790, "right": 3860, "bottom": 3200, "left": 2265}, {"solidity": 0.995696268237474, "top": 785, "right": 2010, "bottom": 3190, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724387f.jpg"} -{"rects": [{"solidity": 0.9961553070964971, "top": 455, "right": 3190, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710424f.jpg"} -{"rects": [{"solidity": 0.9961553287244002, "top": 370, "right": 5445, "bottom": 3560, "left": 1485}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733402f.jpg"} -{"rects": [{"solidity": 0.996155493172194, "top": 2140, "right": 3260, "bottom": 3795, "left": 825}, {"solidity": 0.9967395376302439, "top": 360, "right": 3235, "bottom": 1995, "left": 800}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704987f.jpg"} -{"rects": [{"solidity": 0.9961556055164628, "top": 685, "right": 2910, "bottom": 2105, "left": 1080}, {"solidity": 0.995948278383992, "top": 2395, "right": 2915, "bottom": 3820, "left": 1095}, {"solidity": 0.9956286890051284, "top": 4105, "right": 2745, "bottom": 5520, "left": 1165}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704244f.jpg"} -{"rects": [{"solidity": 0.9961556264143181, "top": 2240, "right": 3115, "bottom": 3870, "left": 690}, {"solidity": 0.9955515668334154, "top": 400, "right": 3125, "bottom": 2015, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729626f.jpg"} -{"rects": [{"solidity": 0.9961558595042118, "top": 735, "right": 3905, "bottom": 3150, "left": 2270}, {"solidity": 0.9963968768596896, "top": 745, "right": 2070, "bottom": 3155, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718619f.jpg"} -{"rects": [{"solidity": 0.9961560424858462, "top": 815, "right": 2010, "bottom": 3225, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704457f.jpg"} -{"rects": [{"solidity": 0.9961561753945175, "top": 670, "right": 2780, "bottom": 2075, "left": 985}], "shape": {"h": 4160, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703901f.jpg"} -{"rects": [{"solidity": 0.9961562326778135, "top": 730, "right": 4580, "bottom": 3115, "left": 1395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723043f.jpg"} -{"rects": [{"solidity": 0.9961563814576454, "top": 2280, "right": 3095, "bottom": 3910, "left": 665}, {"solidity": 0.996935118672077, "top": 390, "right": 3085, "bottom": 2015, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710777f.jpg"} -{"rects": [{"solidity": 0.9961566594376788, "top": 430, "right": 3115, "bottom": 2070, "left": 685}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728555f.jpg"} -{"rects": [{"solidity": 0.9961567876400234, "top": 395, "right": 3015, "bottom": 2020, "left": 590}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729308f.jpg"} -{"rects": [{"solidity": 0.9961569969540642, "top": 625, "right": 3885, "bottom": 3070, "left": 2240}, {"solidity": 0.997467969654441, "top": 625, "right": 2035, "bottom": 3030, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729974f.jpg"} -{"rects": [{"solidity": 0.9961570196679053, "top": 615, "right": 5030, "bottom": 3580, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706056f.jpg"} -{"rects": [{"solidity": 0.9961570782159017, "top": 4095, "right": 3200, "bottom": 5715, "left": 780}, {"solidity": 0.9957747073984874, "top": 410, "right": 3165, "bottom": 2035, "left": 745}, {"solidity": 0.996285292202749, "top": 2260, "right": 3180, "bottom": 3865, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734026f.jpg"} -{"rects": [{"solidity": 0.9961571070780045, "top": 740, "right": 2040, "bottom": 3150, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709621f.jpg"} -{"rects": [{"solidity": 0.9961571430881948, "top": 2235, "right": 3005, "bottom": 3850, "left": 590}, {"solidity": 0.9969587537043935, "top": 375, "right": 3000, "bottom": 1985, "left": 585}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728929f.jpg"} -{"rects": [{"solidity": 0.9961571569571533, "top": 685, "right": 4675, "bottom": 3315, "left": 1430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703245f.jpg"} -{"rects": [{"solidity": 0.9961571744495369, "top": 415, "right": 3030, "bottom": 2045, "left": 615}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707044f.jpg"} -{"rects": [{"solidity": 0.9961573126567904, "top": 760, "right": 2025, "bottom": 3160, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720097f.jpg"} -{"rects": [{"solidity": 0.9961573553014511, "top": 470, "right": 3115, "bottom": 2060, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714062f.jpg"} -{"rects": [{"solidity": 0.9961573773859893, "top": 355, "right": 3335, "bottom": 2005, "left": 915}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704335f.jpg"} -{"rects": [{"solidity": 0.9961573907248022, "top": 815, "right": 5580, "bottom": 3240, "left": 3935}, {"solidity": 0.9962675696148443, "top": 805, "right": 3740, "bottom": 3225, "left": 2125}, {"solidity": 0.9961664417241924, "top": 825, "right": 1925, "bottom": 3205, "left": 345}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730129f.jpg"} -{"rects": [{"solidity": 0.9961575703912744, "top": 390, "right": 3390, "bottom": 2325, "left": 600}, {"solidity": 0.9947920765164142, "top": 2545, "right": 3290, "bottom": 4525, "left": 540}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707139f.jpg"} -{"rects": [{"solidity": 0.9961576052586191, "top": 2220, "right": 3105, "bottom": 3855, "left": 680}, {"solidity": 0.9960348650703883, "top": 390, "right": 3115, "bottom": 2015, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723289f.jpg"} -{"rects": [{"solidity": 0.9961576221104039, "top": 520, "right": 5310, "bottom": 3790, "left": 1290}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701849f.jpg"} -{"rects": [{"solidity": 0.9961576354679803, "top": 2145, "right": 3070, "bottom": 3790, "left": 635}, {"solidity": 0.9963752699352155, "top": 305, "right": 3075, "bottom": 1945, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704441f.jpg"} -{"rects": [{"solidity": 0.9961577311451131, "top": 420, "right": 3145, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720779f.jpg"} -{"rects": [{"solidity": 0.9961577732505529, "top": 465, "right": 3070, "bottom": 1900, "left": 1250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725925f.jpg"} -{"rects": [{"solidity": 0.9961579382905781, "top": 830, "right": 2170, "bottom": 3225, "left": 570}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707559f.jpg"} -{"rects": [{"solidity": 0.9961579453754426, "top": 830, "right": 4015, "bottom": 3240, "left": 2395}, {"solidity": 0.9971471559489614, "top": 815, "right": 2160, "bottom": 3215, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710201f.jpg"} -{"rects": [{"solidity": 0.9961579536452938, "top": 435, "right": 3140, "bottom": 2060, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703698f.jpg"} -{"rects": [{"solidity": 0.9961579913779339, "top": 510, "right": 3210, "bottom": 2100, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727618f.jpg"} -{"rects": [{"solidity": 0.996158096692643, "top": 735, "right": 2665, "bottom": 2170, "left": 810}, {"solidity": 0.9963965121796899, "top": 2220, "right": 2640, "bottom": 3630, "left": 830}, {"solidity": 0.9975620943055707, "top": 740, "right": 5270, "bottom": 2130, "left": 3450}, {"solidity": 0.9963096309630963, "top": 2180, "right": 5230, "bottom": 3555, "left": 3495}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727362f.jpg"} -{"rects": [{"solidity": 0.9961581364939962, "top": 455, "right": 3215, "bottom": 2055, "left": 850}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724911f.jpg"} -{"rects": [{"solidity": 0.9961582639506285, "top": 425, "right": 3160, "bottom": 2040, "left": 745}, {"solidity": 0.9980138476239552, "top": 2250, "right": 3150, "bottom": 3855, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733951f.jpg"} -{"rects": [{"solidity": 0.9961584171136736, "top": 420, "right": 3145, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711985f.jpg"} -{"rects": [{"solidity": 0.9961586466019543, "top": 2300, "right": 3095, "bottom": 3915, "left": 670}, {"solidity": 0.9972335492647323, "top": 400, "right": 3095, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729763f.jpg"} -{"rects": [{"solidity": 0.9961586928012364, "top": 735, "right": 3860, "bottom": 3170, "left": 2245}, {"solidity": 0.9974407999233891, "top": 770, "right": 2030, "bottom": 3160, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721529f.jpg"} -{"rects": [{"solidity": 0.9961588079259013, "top": 3335, "right": 3240, "bottom": 5270, "left": 505}, {"solidity": 0.9946315689930676, "top": 770, "right": 3265, "bottom": 2705, "left": 540}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/717869f.jpg"} -{"rects": [{"solidity": 0.9961589455623148, "top": 1130, "right": 3190, "bottom": 4745, "left": 335}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713272f.jpg"} -{"rects": [{"solidity": 0.9961591582986971, "top": 765, "right": 4895, "bottom": 3185, "left": 3270}, {"solidity": 0.9934197092215961, "top": 930, "right": 2230, "bottom": 2960, "left": 1010}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732281f.jpg"} -{"rects": [{"solidity": 0.9961592654879323, "top": 2280, "right": 3110, "bottom": 3910, "left": 705}, {"solidity": 0.9972732176032282, "top": 4210, "right": 3090, "bottom": 5795, "left": 705}, {"solidity": 0.9949430928477979, "top": 420, "right": 3100, "bottom": 1995, "left": 725}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/731686f.jpg"} -{"rects": [{"solidity": 0.9961600207566446, "top": 960, "right": 2025, "bottom": 3375, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729203f.jpg"} -{"rects": [{"solidity": 0.996160148461098, "top": 355, "right": 3155, "bottom": 1950, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728376f.jpg"} -{"rects": [{"solidity": 0.9961601596446619, "top": 2265, "right": 3315, "bottom": 3890, "left": 890}, {"solidity": 0.9951756699386345, "top": 415, "right": 3325, "bottom": 2040, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727614f.jpg"} -{"rects": [{"solidity": 0.9961603071754259, "top": 675, "right": 2720, "bottom": 2090, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725471f.jpg"} -{"rects": [{"solidity": 0.9961603903817137, "top": 380, "right": 3200, "bottom": 2005, "left": 770}, {"solidity": 0.9959242403317136, "top": 2230, "right": 3200, "bottom": 3850, "left": 770}, {"solidity": 0.9952110723089564, "top": 4105, "right": 3180, "bottom": 5730, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726169f.jpg"} -{"rects": [{"solidity": 0.9961604582657798, "top": 470, "right": 3150, "bottom": 2070, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711819f.jpg"} -{"rects": [{"solidity": 0.9961605496476293, "top": 640, "right": 2655, "bottom": 2065, "left": 895}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702901f.jpg"} -{"rects": [{"solidity": 0.9961607502187925, "top": 775, "right": 2030, "bottom": 3210, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717819f.jpg"} -{"rects": [{"solidity": 0.996160814020069, "top": 4020, "right": 3195, "bottom": 5675, "left": 735}, {"solidity": 0.9988386691776522, "top": 285, "right": 3205, "bottom": 1920, "left": 755}, {"solidity": 0.9960053972637128, "top": 2150, "right": 3205, "bottom": 3800, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700126f.jpg"} -{"rects": [{"solidity": 0.9961610571959529, "top": 395, "right": 4350, "bottom": 2810, "left": 1185}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508869.jpg"} -{"rects": [{"solidity": 0.9961611971594813, "top": 485, "right": 3240, "bottom": 2105, "left": 835}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711038f.jpg"} -{"rects": [{"solidity": 0.9961612407280804, "top": 2230, "right": 3170, "bottom": 3860, "left": 735}, {"solidity": 0.9980058301096956, "top": 400, "right": 3185, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732432f.jpg"} -{"rects": [{"solidity": 0.9961613205825572, "top": 395, "right": 3195, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715603f.jpg"} -{"rects": [{"solidity": 0.9961613219207237, "top": 315, "right": 3585, "bottom": 2130, "left": 870}], "shape": {"h": 6860, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711392f.jpg"} -{"rects": [{"solidity": 0.9961613383751575, "top": 985, "right": 1885, "bottom": 3000, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721067f.jpg"} -{"rects": [{"solidity": 0.9961615763546798, "top": 1005, "right": 2065, "bottom": 2980, "left": 430}, {"solidity": 0.9962221382697394, "top": 1050, "right": 3935, "bottom": 2970, "left": 2295}, {"solidity": 0.9959514170040485, "top": 1090, "right": 5705, "bottom": 2955, "left": 4130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719574f.jpg"} -{"rects": [{"solidity": 0.9961618377005657, "top": 410, "right": 3165, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706553f.jpg"} -{"rects": [{"solidity": 0.9961618900967572, "top": 2265, "right": 3185, "bottom": 3875, "left": 785}, {"solidity": 0.9968171219628521, "top": 460, "right": 3190, "bottom": 2050, "left": 795}, {"solidity": 0.9960537175584507, "top": 4105, "right": 3175, "bottom": 5690, "left": 790}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/726957f.jpg"} -{"rects": [{"solidity": 0.9961618981158409, "top": 620, "right": 3250, "bottom": 2265, "left": 810}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700470f.jpg"} -{"rects": [{"solidity": 0.9961619035303246, "top": 495, "right": 5020, "bottom": 1865, "left": 3235}, {"solidity": 0.996104454494123, "top": 485, "right": 2905, "bottom": 1855, "left": 1120}, {"solidity": 0.9963053867668502, "top": 2080, "right": 2885, "bottom": 3445, "left": 1100}, {"solidity": 0.992864445545285, "top": 2055, "right": 4990, "bottom": 3430, "left": 3230}], "shape": {"h": 3880, "w": 6055}, "file": "/usr/local/google/home/danvk/milstein/728134f.jpg"} -{"rects": [{"solidity": 0.9961619376548897, "top": 965, "right": 2965, "bottom": 4845, "left": 965}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713375f.jpg"} -{"rects": [{"solidity": 0.9961619980523572, "top": 2255, "right": 3090, "bottom": 3900, "left": 645}, {"solidity": 0.9962720119295618, "top": 370, "right": 3110, "bottom": 2005, "left": 675}, {"solidity": 0.9959460673004144, "top": 4120, "right": 3070, "bottom": 5755, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730617f.jpg"} -{"rects": [{"solidity": 0.9961621059477699, "top": 2240, "right": 3200, "bottom": 3865, "left": 775}, {"solidity": 0.996355569125629, "top": 385, "right": 3210, "bottom": 1995, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723465f.jpg"} -{"rects": [{"solidity": 0.9961621997102005, "top": 790, "right": 3955, "bottom": 3250, "left": 2295}, {"solidity": 0.9960880521932013, "top": 775, "right": 2085, "bottom": 3220, "left": 440}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720750f.jpg"} -{"rects": [{"solidity": 0.9961622031653788, "top": 375, "right": 3200, "bottom": 2005, "left": 775}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/701154f.jpg"} -{"rects": [{"solidity": 0.9961622331628016, "top": 820, "right": 3955, "bottom": 3240, "left": 2330}, {"solidity": 0.9965381670302235, "top": 815, "right": 5795, "bottom": 3240, "left": 4175}, {"solidity": 0.9965321644965838, "top": 825, "right": 2060, "bottom": 3240, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726649f.jpg"} -{"rects": [{"solidity": 0.996162235424996, "top": 825, "right": 5235, "bottom": 3525, "left": 3310}, {"solidity": 0.9780219515949056, "top": 830, "right": 2620, "bottom": 3530, "left": 675}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715204f.jpg"} -{"rects": [{"solidity": 0.9961625201823612, "top": 400, "right": 3090, "bottom": 2020, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728890f.jpg"} -{"rects": [{"solidity": 0.9961625824902404, "top": 510, "right": 3245, "bottom": 2160, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727581f.jpg"} -{"rects": [{"solidity": 0.9961626300635841, "top": 365, "right": 2880, "bottom": 1815, "left": 1010}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723615f.jpg"} -{"rects": [{"solidity": 0.9961626443457244, "top": 815, "right": 2075, "bottom": 3235, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714783f.jpg"} -{"rects": [{"solidity": 0.9961627806934527, "top": 1730, "right": 2360, "bottom": 2945, "left": 545}, {"solidity": 0.9911370798319328, "top": 350, "right": 2375, "bottom": 1540, "left": 585}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715827f.jpg"} -{"rects": [{"solidity": 0.9961630232581357, "top": 835, "right": 2080, "bottom": 3220, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712464f.jpg"} -{"rects": [{"solidity": 0.9961633073856333, "top": 2360, "right": 3170, "bottom": 3975, "left": 760}, {"solidity": 0.9964067741143745, "top": 4115, "right": 3175, "bottom": 5720, "left": 760}, {"solidity": 0.9963104825509068, "top": 615, "right": 3180, "bottom": 2215, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733118f.jpg"} -{"rects": [{"solidity": 0.9961635120089073, "top": 740, "right": 3720, "bottom": 3185, "left": 2090}, {"solidity": 0.9958985058379878, "top": 745, "right": 5550, "bottom": 3160, "left": 3935}, {"solidity": 0.9957178878343906, "top": 860, "right": 1925, "bottom": 2985, "left": 305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719965f.jpg"} -{"rects": [{"solidity": 0.9961637400283656, "top": 2505, "right": 2515, "bottom": 3990, "left": 420}, {"solidity": 0.9963132215363205, "top": 670, "right": 2515, "bottom": 2155, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716003f.jpg"} -{"rects": [{"solidity": 0.9961637796311833, "top": 815, "right": 3190, "bottom": 2430, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709208f.jpg"} -{"rects": [{"solidity": 0.9961637983880856, "top": 755, "right": 1940, "bottom": 3160, "left": 315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722817f.jpg"} -{"rects": [{"solidity": 0.9961639052797031, "top": 425, "right": 3245, "bottom": 2050, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724930f.jpg"} -{"rects": [{"solidity": 0.9961639115650879, "top": 1185, "right": 3460, "bottom": 4870, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722169f.jpg"} -{"rects": [{"solidity": 0.9961639242511013, "top": 815, "right": 5690, "bottom": 3245, "left": 4065}, {"solidity": 0.9961248835524272, "top": 810, "right": 3845, "bottom": 3230, "left": 2235}, {"solidity": 0.9963293402873565, "top": 805, "right": 2035, "bottom": 3225, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733894f.jpg"} -{"rects": [{"solidity": 0.9961639663431419, "top": 825, "right": 5605, "bottom": 3245, "left": 3975}, {"solidity": 0.9962147047889964, "top": 815, "right": 3730, "bottom": 3230, "left": 2105}, {"solidity": 0.9983734865292154, "top": 815, "right": 1950, "bottom": 3225, "left": 345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718599f.jpg"} -{"rects": [{"solidity": 0.9961640545400539, "top": 795, "right": 3835, "bottom": 3230, "left": 2190}, {"solidity": 0.996085593302518, "top": 795, "right": 1955, "bottom": 3220, "left": 335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713490f.jpg"} -{"rects": [{"solidity": 0.9961644281644282, "top": 4040, "right": 3140, "bottom": 5655, "left": 725}, {"solidity": 0.9943887304828954, "top": 2215, "right": 3150, "bottom": 3830, "left": 740}, {"solidity": 0.9946102533279468, "top": 405, "right": 3160, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722858f.jpg"} -{"rects": [{"solidity": 0.9961644676281067, "top": 950, "right": 1995, "bottom": 2920, "left": 445}, {"solidity": 0.9957639562512792, "top": 930, "right": 5400, "bottom": 3020, "left": 4010}, {"solidity": 0.9946563505205657, "top": 950, "right": 3675, "bottom": 2970, "left": 2340}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700857f.jpg"} -{"rects": [{"solidity": 0.9961645203543037, "top": 2210, "right": 3085, "bottom": 3830, "left": 670}, {"solidity": 0.9952899801147101, "top": 375, "right": 3085, "bottom": 1975, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724153f.jpg"} -{"rects": [{"solidity": 0.9961650428338986, "top": 650, "right": 2730, "bottom": 3470, "left": 910}, {"solidity": 0.9967449630696913, "top": 625, "right": 5170, "bottom": 2060, "left": 3330}, {"solidity": 0.9965656795260144, "top": 2065, "right": 5170, "bottom": 3480, "left": 3365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705884f.jpg"} -{"rects": [{"solidity": 0.9961652003246323, "top": 825, "right": 2055, "bottom": 3245, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706629f.jpg"} -{"rects": [{"solidity": 0.9961652675368268, "top": 2255, "right": 3135, "bottom": 3875, "left": 725}, {"solidity": 0.9960900532132624, "top": 370, "right": 3145, "bottom": 1990, "left": 740}, {"solidity": 0.9979072879110449, "top": 4155, "right": 3130, "bottom": 5750, "left": 735}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/733365f.jpg"} -{"rects": [{"solidity": 0.9961654624639157, "top": 760, "right": 2030, "bottom": 3150, "left": 450}, {"solidity": 0.9405822997687618, "top": 1225, "right": 3845, "bottom": 3075, "left": 2350}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721411f.jpg"} -{"rects": [{"solidity": 0.9961656071068378, "top": 385, "right": 3315, "bottom": 2000, "left": 895}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725230f.jpg"} -{"rects": [{"solidity": 0.9961657558314486, "top": 490, "right": 2950, "bottom": 1910, "left": 1115}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727331f.jpg"} -{"rects": [{"solidity": 0.9961658051573827, "top": 420, "right": 5215, "bottom": 3685, "left": 1125}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/728166f.jpg"} -{"rects": [{"solidity": 0.9961660820621584, "top": 425, "right": 3185, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703034f.jpg"} -{"rects": [{"solidity": 0.9961662230344444, "top": 455, "right": 3080, "bottom": 1845, "left": 1245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725722f.jpg"} -{"rects": [{"solidity": 0.9961662352034464, "top": 830, "right": 2135, "bottom": 3230, "left": 540}, {"solidity": 0.9959651086855117, "top": 835, "right": 4000, "bottom": 3225, "left": 2415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723624f.jpg"} -{"rects": [{"solidity": 0.9961662842471731, "top": 3900, "right": 3225, "bottom": 5565, "left": 785}, {"solidity": 0.9969312651338975, "top": 2090, "right": 3000, "bottom": 3700, "left": 1025}, {"solidity": 0.9954900718651805, "top": 310, "right": 2980, "bottom": 1850, "left": 1015}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710371f.jpg"} -{"rects": [{"solidity": 0.9961663140322612, "top": 755, "right": 2105, "bottom": 3175, "left": 495}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722237f.jpg"} -{"rects": [{"solidity": 0.9961663158720406, "top": 915, "right": 2025, "bottom": 3320, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734728f.jpg"} -{"rects": [{"solidity": 0.9961663778846691, "top": 830, "right": 2000, "bottom": 3230, "left": 375}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715317f.jpg"} -{"rects": [{"solidity": 0.9961666698974548, "top": 2125, "right": 2745, "bottom": 3540, "left": 905}, {"solidity": 0.994745147150908, "top": 710, "right": 5290, "bottom": 2105, "left": 3480}, {"solidity": 0.9936654804270463, "top": 705, "right": 2735, "bottom": 2080, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726134f.jpg"} -{"rects": [{"solidity": 0.9961668206177848, "top": 535, "right": 3975, "bottom": 2625, "left": 2490}, {"solidity": 0.9966125979882642, "top": 525, "right": 2110, "bottom": 2610, "left": 650}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716070f.jpg"} -{"rects": [{"solidity": 0.9961668206177848, "top": 665, "right": 2615, "bottom": 3710, "left": 575}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715702f.jpg"} -{"rects": [{"solidity": 0.996166856017328, "top": 415, "right": 3195, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733964f.jpg"} -{"rects": [{"solidity": 0.9961668687591522, "top": 800, "right": 3915, "bottom": 3185, "left": 2320}, {"solidity": 0.9963039932217638, "top": 805, "right": 2095, "bottom": 3190, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719158f.jpg"} -{"rects": [{"solidity": 0.996166873793411, "top": 565, "right": 5035, "bottom": 3185, "left": 1590}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734443f.jpg"} -{"rects": [{"solidity": 0.9961670281372076, "top": 2150, "right": 3180, "bottom": 3780, "left": 755}, {"solidity": 0.9978730844125638, "top": 4070, "right": 3185, "bottom": 5695, "left": 770}, {"solidity": 0.9984040628553706, "top": 285, "right": 3185, "bottom": 1905, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705802f.jpg"} -{"rects": [{"solidity": 0.9961670918367347, "top": 900, "right": 2070, "bottom": 3335, "left": 440}, {"solidity": 0.9984208715116859, "top": 905, "right": 3950, "bottom": 3320, "left": 2330}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722042f.jpg"} -{"rects": [{"solidity": 0.9961674247002322, "top": 2230, "right": 3365, "bottom": 3860, "left": 920}, {"solidity": 0.9986597323312321, "top": 370, "right": 3370, "bottom": 1985, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703694f.jpg"} -{"rects": [{"solidity": 0.9961675310668324, "top": 1070, "right": 3470, "bottom": 5170, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715242f.jpg"} -{"rects": [{"solidity": 0.9961675960286774, "top": 565, "right": 2615, "bottom": 2005, "left": 790}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704133f.jpg"} -{"rects": [{"solidity": 0.9961677401150334, "top": 2105, "right": 2910, "bottom": 3730, "left": 540}, {"solidity": 0.998025178968156, "top": 345, "right": 2915, "bottom": 1960, "left": 545}, {"solidity": 0.9946250331051071, "top": 2220, "right": 5415, "bottom": 3695, "left": 3445}, {"solidity": 0.958630837621384, "top": 365, "right": 5395, "bottom": 1830, "left": 3430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715273f.jpg"} -{"rects": [{"solidity": 0.9961679148219617, "top": 525, "right": 5040, "bottom": 3645, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722247f.jpg"} -{"rects": [{"solidity": 0.996168188332714, "top": 455, "right": 3175, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729771f.jpg"} -{"rects": [{"solidity": 0.9961682328254722, "top": 415, "right": 3190, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718659f.jpg"} -{"rects": [{"solidity": 0.9961682470216388, "top": 765, "right": 2035, "bottom": 3180, "left": 405}, {"solidity": 0.9954043339864473, "top": 785, "right": 3845, "bottom": 3195, "left": 2220}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719019f.jpg"} -{"rects": [{"solidity": 0.9961683341808559, "top": 2000, "right": 3205, "bottom": 3615, "left": 795}, {"solidity": 0.9950062175552178, "top": 340, "right": 2890, "bottom": 1755, "left": 1075}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710772f.jpg"} -{"rects": [{"solidity": 0.9961684105311044, "top": 2310, "right": 3130, "bottom": 3940, "left": 700}, {"solidity": 0.9954933974900505, "top": 435, "right": 3135, "bottom": 2055, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728396f.jpg"} -{"rects": [{"solidity": 0.9961686694568277, "top": 445, "right": 3180, "bottom": 2060, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704116f.jpg"} -{"rects": [{"solidity": 0.9961687317819784, "top": 435, "right": 3200, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702482f.jpg"} -{"rects": [{"solidity": 0.99616876944911, "top": 425, "right": 3145, "bottom": 2035, "left": 730}, {"solidity": 0.9986114106107833, "top": 2235, "right": 3140, "bottom": 3840, "left": 740}, {"solidity": 0.9932017586968345, "top": 4050, "right": 3145, "bottom": 5650, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720118f.jpg"} -{"rects": [{"solidity": 0.9961690483429614, "top": 385, "right": 3080, "bottom": 2020, "left": 655}, {"solidity": 0.9968271370070616, "top": 2265, "right": 3090, "bottom": 3885, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721971f.jpg"} -{"rects": [{"solidity": 0.9961691769064406, "top": 685, "right": 2045, "bottom": 3105, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733271f.jpg"} -{"rects": [{"solidity": 0.9961692880032413, "top": 470, "right": 3155, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712176f.jpg"} -{"rects": [{"solidity": 0.9961693094464636, "top": 790, "right": 2090, "bottom": 3215, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712162f.jpg"} -{"rects": [{"solidity": 0.9961696592925718, "top": 1015, "right": 3400, "bottom": 2230, "left": 1505}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507777.jpg"} -{"rects": [{"solidity": 0.9961698541991165, "top": 3990, "right": 3170, "bottom": 5625, "left": 750}, {"solidity": 0.9980142053292441, "top": 300, "right": 3180, "bottom": 1925, "left": 765}, {"solidity": 0.9979212246809658, "top": 2140, "right": 3180, "bottom": 3765, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703059f.jpg"} -{"rects": [{"solidity": 0.9961698996526561, "top": 2145, "right": 3270, "bottom": 3785, "left": 845}, {"solidity": 0.9962184561337677, "top": 330, "right": 3260, "bottom": 1955, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710319f.jpg"} -{"rects": [{"solidity": 0.9961699271277086, "top": 485, "right": 3270, "bottom": 2520, "left": 450}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718928f.jpg"} -{"rects": [{"solidity": 0.9961699881559297, "top": 750, "right": 3840, "bottom": 3175, "left": 2215}, {"solidity": 0.9973784418052871, "top": 735, "right": 5690, "bottom": 3145, "left": 4070}, {"solidity": 0.9978363238851732, "top": 775, "right": 2030, "bottom": 3185, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732474f.jpg"} -{"rects": [{"solidity": 0.9961707079885854, "top": 730, "right": 3890, "bottom": 3170, "left": 2245}, {"solidity": 0.9965659120231593, "top": 725, "right": 2035, "bottom": 3150, "left": 405}, {"solidity": 0.9954121366335107, "top": 755, "right": 5715, "bottom": 3185, "left": 4085}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724237f.jpg"} -{"rects": [{"solidity": 0.9961707227887702, "top": 460, "right": 3125, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/712718f.jpg"} -{"rects": [{"solidity": 0.9961708708524494, "top": 430, "right": 3080, "bottom": 2055, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729144f.jpg"} -{"rects": [{"solidity": 0.9961711369101754, "top": 785, "right": 1945, "bottom": 3205, "left": 325}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711568f.jpg"} -{"rects": [{"solidity": 0.9961716075267391, "top": 865, "right": 2015, "bottom": 3265, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717886f.jpg"} -{"rects": [{"solidity": 0.9961717360982238, "top": 740, "right": 2155, "bottom": 3185, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733306f.jpg"} -{"rects": [{"solidity": 0.9961718044795408, "top": 495, "right": 3135, "bottom": 2110, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711719f.jpg"} -{"rects": [{"solidity": 0.9961718702646832, "top": 2015, "right": 3155, "bottom": 3650, "left": 725}, {"solidity": 0.9969077174537262, "top": 410, "right": 2940, "bottom": 1810, "left": 1105}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704143f.jpg"} -{"rects": [{"solidity": 0.9961719917938894, "top": 710, "right": 3730, "bottom": 3120, "left": 2100}, {"solidity": 0.9956565275628438, "top": 735, "right": 1845, "bottom": 3145, "left": 205}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712097f.jpg"} -{"rects": [{"solidity": 0.9961720179073915, "top": 795, "right": 2095, "bottom": 3205, "left": 495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700400f.jpg"} -{"rects": [{"solidity": 0.9961721752498078, "top": 670, "right": 2750, "bottom": 2055, "left": 960}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705613f.jpg"} -{"rects": [{"solidity": 0.9961722174965648, "top": 410, "right": 3055, "bottom": 2020, "left": 650}, {"solidity": 0.9969887627005414, "top": 4155, "right": 3050, "bottom": 5740, "left": 660}, {"solidity": 0.998830019499675, "top": 2305, "right": 3045, "bottom": 3880, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729462f.jpg"} -{"rects": [{"solidity": 0.9961722978054721, "top": 2210, "right": 3290, "bottom": 3840, "left": 855}, {"solidity": 0.9977310411030631, "top": 4075, "right": 3285, "bottom": 5695, "left": 880}, {"solidity": 0.9976590784778475, "top": 400, "right": 3275, "bottom": 2005, "left": 865}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/734731f.jpg"} -{"rects": [{"solidity": 0.9961724798734093, "top": 865, "right": 4385, "bottom": 3565, "left": 2565}, {"solidity": 0.9965669610749784, "top": 875, "right": 2310, "bottom": 3565, "left": 495}], "shape": {"h": 4410, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/711557f.jpg"} -{"rects": [{"solidity": 0.9961725225037038, "top": 445, "right": 3035, "bottom": 2070, "left": 615}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725303f.jpg"} -{"rects": [{"solidity": 0.996172593111832, "top": 615, "right": 5000, "bottom": 3535, "left": 1275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718551f.jpg"} -{"rects": [{"solidity": 0.9961726302242156, "top": 2020, "right": 2820, "bottom": 3450, "left": 975}, {"solidity": 0.9959957494082983, "top": 590, "right": 2820, "bottom": 2015, "left": 985}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707149f.jpg"} -{"rects": [{"solidity": 0.9961728264254777, "top": 2775, "right": 3210, "bottom": 4395, "left": 780}, {"solidity": 0.9965046126859343, "top": 550, "right": 3240, "bottom": 2170, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730807f.jpg"} -{"rects": [{"solidity": 0.9961730694159131, "top": 520, "right": 2990, "bottom": 2150, "left": 560}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707817f.jpg"} -{"rects": [{"solidity": 0.9961731374168196, "top": 750, "right": 5710, "bottom": 3185, "left": 4085}, {"solidity": 0.9955970014450867, "top": 745, "right": 3840, "bottom": 3170, "left": 2215}, {"solidity": 0.9967334134856877, "top": 760, "right": 2015, "bottom": 3170, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709561f.jpg"} -{"rects": [{"solidity": 0.9961731757845469, "top": 2295, "right": 3140, "bottom": 3925, "left": 715}, {"solidity": 0.9962265478349018, "top": 425, "right": 3140, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729690f.jpg"} -{"rects": [{"solidity": 0.9961731887925411, "top": 1285, "right": 3650, "bottom": 5355, "left": 410}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724536f.jpg"} -{"rects": [{"solidity": 0.9961732840327451, "top": 855, "right": 5000, "bottom": 3275, "left": 3385}, {"solidity": 0.9977457051796959, "top": 840, "right": 2585, "bottom": 3255, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722315f.jpg"} -{"rects": [{"solidity": 0.9961735064566024, "top": 2190, "right": 3125, "bottom": 3815, "left": 725}, {"solidity": 0.9971362652368486, "top": 335, "right": 3140, "bottom": 1955, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713109f.jpg"} -{"rects": [{"solidity": 0.9961735981529063, "top": 780, "right": 3855, "bottom": 3200, "left": 2230}, {"solidity": 0.9953395037519283, "top": 810, "right": 2020, "bottom": 3225, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732482f.jpg"} -{"rects": [{"solidity": 0.9961740394106091, "top": 425, "right": 3205, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/726944f.jpg"} -{"rects": [{"solidity": 0.9961740686877727, "top": 2255, "right": 3045, "bottom": 3880, "left": 615}, {"solidity": 0.9983961224089662, "top": 400, "right": 3050, "bottom": 2015, "left": 625}, {"solidity": 0.996750984817596, "top": 4105, "right": 3030, "bottom": 5730, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731583f.jpg"} -{"rects": [{"solidity": 0.9961742172050918, "top": 815, "right": 2035, "bottom": 3210, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713071f.jpg"} -{"rects": [{"solidity": 0.9961742686586854, "top": 425, "right": 3195, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720572f.jpg"} -{"rects": [{"solidity": 0.9961742986999526, "top": 4040, "right": 3070, "bottom": 5730, "left": 610}, {"solidity": 0.9961124345525058, "top": 2195, "right": 3035, "bottom": 3885, "left": 580}, {"solidity": 0.9977684330013931, "top": 360, "right": 2995, "bottom": 1985, "left": 590}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705019f.jpg"} -{"rects": [{"solidity": 0.9961743276236615, "top": 800, "right": 3925, "bottom": 3230, "left": 2290}, {"solidity": 0.9962455051252092, "top": 795, "right": 2110, "bottom": 3210, "left": 500}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706314f.jpg"} -{"rects": [{"solidity": 0.9961744159267125, "top": 450, "right": 3070, "bottom": 2075, "left": 635}, {"solidity": 0.9975192713782325, "top": 2335, "right": 3070, "bottom": 3950, "left": 640}, {"solidity": 0.9957714796924829, "top": 4170, "right": 3065, "bottom": 5785, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729889f.jpg"} -{"rects": [{"solidity": 0.9961744377182618, "top": 420, "right": 3215, "bottom": 2015, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717823f.jpg"} -{"rects": [{"solidity": 0.99617447586324, "top": 960, "right": 3865, "bottom": 3350, "left": 2280}, {"solidity": 0.9899693424011995, "top": 955, "right": 2005, "bottom": 3345, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729736f.jpg"} -{"rects": [{"solidity": 0.9961745094058082, "top": 3385, "right": 3215, "bottom": 5005, "left": 790}, {"solidity": 0.9965637851427388, "top": 915, "right": 3205, "bottom": 2530, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730800f.jpg"} -{"rects": [{"solidity": 0.9961746332561241, "top": 855, "right": 2060, "bottom": 3285, "left": 420}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706289f.jpg"} -{"rects": [{"solidity": 0.9961746441809342, "top": 4115, "right": 3195, "bottom": 5755, "left": 775}, {"solidity": 0.996973172031722, "top": 440, "right": 3170, "bottom": 2045, "left": 740}, {"solidity": 0.9959474603215971, "top": 2305, "right": 3175, "bottom": 3910, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732060f.jpg"} -{"rects": [{"solidity": 0.996174759273644, "top": 760, "right": 3200, "bottom": 2655, "left": 470}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702725f.jpg"} -{"rects": [{"solidity": 0.9961749468565828, "top": 460, "right": 3165, "bottom": 2085, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701275f.jpg"} -{"rects": [{"solidity": 0.9961753524162889, "top": 730, "right": 3890, "bottom": 3130, "left": 2270}, {"solidity": 0.9947736776663173, "top": 730, "right": 2015, "bottom": 3105, "left": 435}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711168f.jpg"} -{"rects": [{"solidity": 0.9961754701912583, "top": 2365, "right": 3135, "bottom": 3995, "left": 695}, {"solidity": 0.9965214499926465, "top": 435, "right": 3135, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728989f.jpg"} -{"rects": [{"solidity": 0.9961755547835842, "top": 2250, "right": 3160, "bottom": 3890, "left": 730}, {"solidity": 0.996794115333176, "top": 430, "right": 3130, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729561f.jpg"} -{"rects": [{"solidity": 0.9961756885695051, "top": 130, "right": 3780, "bottom": 6740, "left": 585}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/706429f.jpg"} -{"rects": [{"solidity": 0.9961757006959076, "top": 2290, "right": 3190, "bottom": 3915, "left": 755}, {"solidity": 0.9952156485489819, "top": 470, "right": 3185, "bottom": 2090, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722827f.jpg"} -{"rects": [{"solidity": 0.9961758029680432, "top": 750, "right": 5725, "bottom": 3165, "left": 4105}, {"solidity": 0.9960149771796448, "top": 765, "right": 3895, "bottom": 3170, "left": 2285}, {"solidity": 0.9958192603048176, "top": 765, "right": 2055, "bottom": 3140, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720121f.jpg"} -{"rects": [{"solidity": 0.9961760797342193, "top": 980, "right": 2265, "bottom": 3190, "left": 540}], "shape": {"h": 4420, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/706446f.jpg"} -{"rects": [{"solidity": 0.9961761476373023, "top": 475, "right": 3165, "bottom": 2100, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704464f.jpg"} -{"rects": [{"solidity": 0.9961763659517026, "top": 765, "right": 2030, "bottom": 3145, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714884f.jpg"} -{"rects": [{"solidity": 0.9961763891232438, "top": 415, "right": 3240, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707486f.jpg"} -{"rects": [{"solidity": 0.9961766201940776, "top": 1235, "right": 3255, "bottom": 4670, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714656f.jpg"} -{"rects": [{"solidity": 0.9961769672740521, "top": 385, "right": 3330, "bottom": 2290, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711451f.jpg"} -{"rects": [{"solidity": 0.9961769867850263, "top": 1200, "right": 3275, "bottom": 4970, "left": 335}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709170f.jpg"} -{"rects": [{"solidity": 0.9961770812724944, "top": 600, "right": 3295, "bottom": 2675, "left": 225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718024f.jpg"} -{"rects": [{"solidity": 0.9961771073445573, "top": 735, "right": 2450, "bottom": 3125, "left": 840}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710334f.jpg"} -{"rects": [{"solidity": 0.9961772025883524, "top": 790, "right": 1910, "bottom": 3165, "left": 305}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709779f.jpg"} -{"rects": [{"solidity": 0.9961776198005828, "top": 1380, "right": 2910, "bottom": 2990, "left": 515}, {"solidity": 0.996966097288902, "top": 1380, "right": 5670, "bottom": 2985, "left": 3280}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733556f.jpg"} -{"rects": [{"solidity": 0.9961777502436862, "top": 440, "right": 3245, "bottom": 3855, "left": 625}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714271f.jpg"} -{"rects": [{"solidity": 0.9961777860783828, "top": 790, "right": 3905, "bottom": 3215, "left": 2270}, {"solidity": 0.996995098316523, "top": 815, "right": 2035, "bottom": 3195, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719325f.jpg"} -{"rects": [{"solidity": 0.9961779114323132, "top": 660, "right": 2670, "bottom": 2080, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702971f.jpg"} -{"rects": [{"solidity": 0.9961779961779962, "top": 450, "right": 3765, "bottom": 2590, "left": 895}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509029.jpg"} -{"rects": [{"solidity": 0.9961780342323652, "top": 430, "right": 3150, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705555f.jpg"} -{"rects": [{"solidity": 0.99617818990673, "top": 385, "right": 3225, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705127f.jpg"} -{"rects": [{"solidity": 0.9961781936549504, "top": 1040, "right": 3515, "bottom": 5080, "left": 295}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712565f.jpg"} -{"rects": [{"solidity": 0.9961785657851032, "top": 780, "right": 2085, "bottom": 3210, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723435f.jpg"} -{"rects": [{"solidity": 0.9961785835679093, "top": 785, "right": 2040, "bottom": 3175, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712193f.jpg"} -{"rects": [{"solidity": 0.996178586528872, "top": 820, "right": 2045, "bottom": 3240, "left": 430}, {"solidity": 0.9971431899212517, "top": 820, "right": 3820, "bottom": 3235, "left": 2210}, {"solidity": 0.9953785439817219, "top": 810, "right": 5610, "bottom": 3230, "left": 3995}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707728f.jpg"} -{"rects": [{"solidity": 0.9961786319954776, "top": 960, "right": 2130, "bottom": 3375, "left": 505}, {"solidity": 0.9976274973711883, "top": 970, "right": 3990, "bottom": 3350, "left": 2380}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717847f.jpg"} -{"rects": [{"solidity": 0.9961789129987659, "top": 2140, "right": 3015, "bottom": 3775, "left": 595}, {"solidity": 0.9920851761411178, "top": 410, "right": 2870, "bottom": 1905, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712187f.jpg"} -{"rects": [{"solidity": 0.9961790736405747, "top": 2275, "right": 3145, "bottom": 3870, "left": 745}, {"solidity": 0.9939898228108269, "top": 445, "right": 3155, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733863f.jpg"} -{"rects": [{"solidity": 0.9961790912612762, "top": 580, "right": 3270, "bottom": 2620, "left": 430}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729332f.jpg"} -{"rects": [{"solidity": 0.9961791788183635, "top": 380, "right": 3170, "bottom": 1985, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728741f.jpg"} -{"rects": [{"solidity": 0.9961794067177975, "top": 2155, "right": 3320, "bottom": 3825, "left": 890}, {"solidity": 0.9960021364582767, "top": 405, "right": 3295, "bottom": 2055, "left": 870}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727553f.jpg"} -{"rects": [{"solidity": 0.9961794819808404, "top": 405, "right": 3150, "bottom": 2040, "left": 700}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700073f.jpg"} -{"rects": [{"solidity": 0.9961800714326642, "top": 745, "right": 3860, "bottom": 3175, "left": 2220}, {"solidity": 0.9960037216755293, "top": 765, "right": 2010, "bottom": 3190, "left": 395}, {"solidity": 0.998331569281091, "top": 760, "right": 5715, "bottom": 3155, "left": 4120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720363f.jpg"} -{"rects": [{"solidity": 0.9961800924547114, "top": 445, "right": 3275, "bottom": 2070, "left": 865}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707532f.jpg"} -{"rects": [{"solidity": 0.9961801248350955, "top": 830, "right": 2090, "bottom": 3235, "left": 490}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722482f.jpg"} -{"rects": [{"solidity": 0.9961802634146654, "top": 780, "right": 2025, "bottom": 3215, "left": 385}, {"solidity": 0.9954267346558782, "top": 785, "right": 3835, "bottom": 3195, "left": 2235}, {"solidity": 0.9965401438330357, "top": 800, "right": 5685, "bottom": 3210, "left": 4090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723273f.jpg"} -{"rects": [{"solidity": 0.9961803259558909, "top": 2525, "right": 3545, "bottom": 4335, "left": 850}, {"solidity": 0.9975842077997809, "top": 455, "right": 3545, "bottom": 2255, "left": 860}], "shape": {"h": 6895, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711270f.jpg"} -{"rects": [{"solidity": 0.9961804526775477, "top": 2265, "right": 2975, "bottom": 3880, "left": 550}, {"solidity": 0.9992129044479063, "top": 395, "right": 2980, "bottom": 1990, "left": 565}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729417f.jpg"} -{"rects": [{"solidity": 0.9961804994376297, "top": 780, "right": 2065, "bottom": 3175, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709794f.jpg"} -{"rects": [{"solidity": 0.9961805578720537, "top": 610, "right": 3190, "bottom": 2200, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727631f.jpg"} -{"rects": [{"solidity": 0.9961807994511328, "top": 450, "right": 3155, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711581f.jpg"} -{"rects": [{"solidity": 0.9961808015093995, "top": 430, "right": 3075, "bottom": 2040, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729776f.jpg"} -{"rects": [{"solidity": 0.9961809091750764, "top": 750, "right": 2040, "bottom": 3150, "left": 445}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711857f.jpg"} -{"rects": [{"solidity": 0.9961809109518935, "top": 845, "right": 3895, "bottom": 3265, "left": 2260}, {"solidity": 0.9970750081886669, "top": 845, "right": 2075, "bottom": 3240, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712300f.jpg"} -{"rects": [{"solidity": 0.9961810872894333, "top": 785, "right": 2670, "bottom": 2235, "left": 850}, {"solidity": 0.9931617356369736, "top": 2260, "right": 2655, "bottom": 3600, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726833f.jpg"} -{"rects": [{"solidity": 0.9961811380861301, "top": 425, "right": 3290, "bottom": 2030, "left": 875}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/724957f.jpg"} -{"rects": [{"solidity": 0.9961811502349689, "top": 915, "right": 2040, "bottom": 3350, "left": 425}, {"solidity": 0.9986034515161137, "top": 900, "right": 3835, "bottom": 3315, "left": 2225}, {"solidity": 0.9928552674762061, "top": 880, "right": 5630, "bottom": 3290, "left": 4030}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707529f.jpg"} -{"rects": [{"solidity": 0.996181217983747, "top": 425, "right": 3180, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705498f.jpg"} -{"rects": [{"solidity": 0.996181275767586, "top": 2235, "right": 3065, "bottom": 3870, "left": 640}, {"solidity": 0.9955050544023458, "top": 385, "right": 3080, "bottom": 2025, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731097f.jpg"} -{"rects": [{"solidity": 0.996181303374594, "top": 400, "right": 3120, "bottom": 2010, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729128f.jpg"} -{"rects": [{"solidity": 0.9961818585320583, "top": 2525, "right": 2735, "bottom": 3895, "left": 905}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709042f.jpg"} -{"rects": [{"solidity": 0.9961818835820994, "top": 435, "right": 3170, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714894f.jpg"} -{"rects": [{"solidity": 0.996181948562901, "top": 395, "right": 3170, "bottom": 2010, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702525f.jpg"} -{"rects": [{"solidity": 0.9961820029605869, "top": 3165, "right": 3215, "bottom": 5055, "left": 535}, {"solidity": 0.9943715979007859, "top": 710, "right": 3220, "bottom": 2575, "left": 550}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711452f.jpg"} -{"rects": [{"solidity": 0.9961821543494107, "top": 520, "right": 2945, "bottom": 2025, "left": 1055}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700228f.jpg"} -{"rects": [{"solidity": 0.9961821854652417, "top": 935, "right": 2185, "bottom": 3350, "left": 565}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707765f.jpg"} -{"rects": [{"solidity": 0.9961822167464038, "top": 4085, "right": 3280, "bottom": 5725, "left": 850}, {"solidity": 0.9975221943344267, "top": 2260, "right": 3285, "bottom": 3875, "left": 855}, {"solidity": 0.9980167864858165, "top": 430, "right": 3295, "bottom": 2045, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726919f.jpg"} -{"rects": [{"solidity": 0.9961822411812331, "top": 4115, "right": 3090, "bottom": 5745, "left": 650}, {"solidity": 0.995202071568561, "top": 2240, "right": 3110, "bottom": 3865, "left": 675}, {"solidity": 0.9965740770751629, "top": 385, "right": 3120, "bottom": 1995, "left": 705}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729444f.jpg"} -{"rects": [{"solidity": 0.9961825244452382, "top": 4040, "right": 3260, "bottom": 5690, "left": 825}, {"solidity": 0.9966363156294507, "top": 2245, "right": 3270, "bottom": 3875, "left": 850}, {"solidity": 0.9967157694483006, "top": 370, "right": 3290, "bottom": 1995, "left": 875}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703737f.jpg"} -{"rects": [{"solidity": 0.9961825572980665, "top": 2320, "right": 3020, "bottom": 3740, "left": 1185}, {"solidity": 0.9962559376923963, "top": 525, "right": 3030, "bottom": 1910, "left": 1210}, {"solidity": 0.9943378563375745, "top": 4135, "right": 2995, "bottom": 5530, "left": 1170}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/727043f.jpg"} -{"rects": [{"solidity": 0.9961828606889597, "top": 835, "right": 3985, "bottom": 3255, "left": 2365}, {"solidity": 0.9956852257071075, "top": 855, "right": 5765, "bottom": 3265, "left": 4150}, {"solidity": 0.9964022535838334, "top": 840, "right": 2160, "bottom": 3245, "left": 560}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711523f.jpg"} -{"rects": [{"solidity": 0.9961829468297433, "top": 740, "right": 2060, "bottom": 3155, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719665f.jpg"} -{"rects": [{"solidity": 0.9961830607451918, "top": 385, "right": 3040, "bottom": 1960, "left": 1130}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701821f.jpg"} -{"rects": [{"solidity": 0.9961830816970455, "top": 440, "right": 3055, "bottom": 2050, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729124f.jpg"} -{"rects": [{"solidity": 0.9961832548283741, "top": 880, "right": 3850, "bottom": 3310, "left": 2210}, {"solidity": 0.9957970337686597, "top": 870, "right": 1975, "bottom": 3290, "left": 350}, {"solidity": 0.9963654925322987, "top": 900, "right": 5700, "bottom": 3315, "left": 4085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728482f.jpg"} -{"rects": [{"solidity": 0.9961832920875718, "top": 440, "right": 3110, "bottom": 2065, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703374f.jpg"} -{"rects": [{"solidity": 0.9961834985873448, "top": 430, "right": 2920, "bottom": 3615, "left": 545}], "shape": {"h": 3915, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714454f.jpg"} -{"rects": [{"solidity": 0.9961835147241943, "top": 800, "right": 3810, "bottom": 3195, "left": 2170}, {"solidity": 0.9959022663925975, "top": 810, "right": 1910, "bottom": 3195, "left": 310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720519f.jpg"} -{"rects": [{"solidity": 0.99618363815715, "top": 375, "right": 3210, "bottom": 1985, "left": 790}, {"solidity": 0.9948728599057645, "top": 2200, "right": 3215, "bottom": 3810, "left": 800}, {"solidity": 0.9948350174721929, "top": 4085, "right": 3200, "bottom": 5685, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727342f.jpg"} -{"rects": [{"solidity": 0.9961837377636091, "top": 1140, "right": 3425, "bottom": 5155, "left": 250}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/714609f.jpg"} -{"rects": [{"solidity": 0.9961837946187649, "top": 425, "right": 3270, "bottom": 2060, "left": 845}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703363f.jpg"} -{"rects": [{"solidity": 0.9961842409149788, "top": 2290, "right": 3085, "bottom": 3885, "left": 700}, {"solidity": 0.996381813211107, "top": 415, "right": 3090, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728593f.jpg"} -{"rects": [{"solidity": 0.9961843414070921, "top": 825, "right": 2030, "bottom": 3260, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729286f.jpg"} -{"rects": [{"solidity": 0.9961843629066477, "top": 815, "right": 3930, "bottom": 3250, "left": 2290}, {"solidity": 0.9974501008325146, "top": 840, "right": 5745, "bottom": 3260, "left": 4135}, {"solidity": 0.9934202981181659, "top": 820, "right": 2030, "bottom": 3230, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710171f.jpg"} -{"rects": [{"solidity": 0.9961846855649132, "top": 750, "right": 2350, "bottom": 3180, "left": 720}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707327f.jpg"} -{"rects": [{"solidity": 0.9961848118257988, "top": 430, "right": 3125, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729455f.jpg"} -{"rects": [{"solidity": 0.9961848787152321, "top": 860, "right": 3785, "bottom": 3265, "left": 2140}, {"solidity": 0.9935463821852903, "top": 1025, "right": 1950, "bottom": 3025, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714740f.jpg"} -{"rects": [{"solidity": 0.9961850725581064, "top": 405, "right": 3185, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719821f.jpg"} -{"rects": [{"solidity": 0.9961851326952571, "top": 480, "right": 2890, "bottom": 1875, "left": 1015}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706702f.jpg"} -{"rects": [{"solidity": 0.996185138238117, "top": 920, "right": 1975, "bottom": 2915, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701570f.jpg"} -{"rects": [{"solidity": 0.9961854053932252, "top": 745, "right": 3825, "bottom": 3175, "left": 2190}, {"solidity": 0.997308090226753, "top": 765, "right": 2040, "bottom": 3165, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718115f.jpg"} -{"rects": [{"solidity": 0.9961854354770816, "top": 840, "right": 2040, "bottom": 3255, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729055f.jpg"} -{"rects": [{"solidity": 0.996185654870392, "top": 875, "right": 2030, "bottom": 3310, "left": 405}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728867f.jpg"} -{"rects": [{"solidity": 0.996185917331678, "top": 2255, "right": 3225, "bottom": 3885, "left": 790}, {"solidity": 0.9956740537195037, "top": 4090, "right": 3200, "bottom": 5715, "left": 775}, {"solidity": 0.9984218010738398, "top": 410, "right": 3215, "bottom": 1995, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725158f.jpg"} -{"rects": [{"solidity": 0.9961860417072231, "top": 920, "right": 2065, "bottom": 2910, "left": 470}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705753f.jpg"} -{"rects": [{"solidity": 0.9961860501598133, "top": 440, "right": 3175, "bottom": 2040, "left": 765}, {"solidity": 0.9974577109506381, "top": 2260, "right": 3180, "bottom": 3850, "left": 775}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730226f.jpg"} -{"rects": [{"solidity": 0.9961860879329371, "top": 4125, "right": 3135, "bottom": 5740, "left": 720}, {"solidity": 0.9959795487011098, "top": 2290, "right": 3140, "bottom": 3905, "left": 725}, {"solidity": 0.994026906409676, "top": 450, "right": 3140, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/701073f.jpg"} -{"rects": [{"solidity": 0.9961863475834298, "top": 420, "right": 3175, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730415f.jpg"} -{"rects": [{"solidity": 0.9961863753873547, "top": 2245, "right": 2895, "bottom": 3785, "left": 980}, {"solidity": 0.9931140081117931, "top": 435, "right": 2905, "bottom": 2000, "left": 1005}, {"solidity": 0.994129141012399, "top": 4120, "right": 2885, "bottom": 5635, "left": 1020}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723639f.jpg"} -{"rects": [{"solidity": 0.9961863947400308, "top": 760, "right": 3910, "bottom": 3195, "left": 2275}, {"solidity": 0.9968994584472924, "top": 760, "right": 2055, "bottom": 3195, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706274f.jpg"} -{"rects": [{"solidity": 0.996186459980607, "top": 795, "right": 2155, "bottom": 3205, "left": 550}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708929f.jpg"} -{"rects": [{"solidity": 0.996186523283967, "top": 880, "right": 5140, "bottom": 3345, "left": 1060}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725998f.jpg"} -{"rects": [{"solidity": 0.9961865811871339, "top": 910, "right": 5665, "bottom": 3325, "left": 4035}, {"solidity": 0.9970638554413178, "top": 890, "right": 1990, "bottom": 3285, "left": 365}, {"solidity": 0.9963511637403022, "top": 900, "right": 3820, "bottom": 3310, "left": 2205}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720380f.jpg"} -{"rects": [{"solidity": 0.9961866574846099, "top": 810, "right": 3870, "bottom": 3230, "left": 2235}, {"solidity": 0.9970090892612062, "top": 830, "right": 5730, "bottom": 3250, "left": 4105}, {"solidity": 0.9969062112264038, "top": 790, "right": 2015, "bottom": 3195, "left": 390}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716784f.jpg"} -{"rects": [{"solidity": 0.9961868499753241, "top": 520, "right": 3205, "bottom": 4085, "left": 670}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717397f.jpg"} -{"rects": [{"solidity": 0.9961868509577791, "top": 800, "right": 2025, "bottom": 3185, "left": 430}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717822f.jpg"} -{"rects": [{"solidity": 0.9961870762293197, "top": 760, "right": 2050, "bottom": 3170, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717213f.jpg"} -{"rects": [{"solidity": 0.9961871739242729, "top": 875, "right": 3965, "bottom": 3285, "left": 2335}, {"solidity": 0.9968276625209116, "top": 875, "right": 2035, "bottom": 3290, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729079f.jpg"} -{"rects": [{"solidity": 0.9961871783835178, "top": 440, "right": 3215, "bottom": 2070, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723248f.jpg"} -{"rects": [{"solidity": 0.9961872498495827, "top": 830, "right": 2015, "bottom": 3235, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701382f.jpg"} -{"rects": [{"solidity": 0.9961873375924659, "top": 2285, "right": 3225, "bottom": 3905, "left": 800}, {"solidity": 0.9961047851364772, "top": 545, "right": 3230, "bottom": 2165, "left": 800}, {"solidity": 0.9959106116217884, "top": 4000, "right": 3200, "bottom": 5615, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733142f.jpg"} -{"rects": [{"solidity": 0.9961875886982325, "top": 390, "right": 3240, "bottom": 2010, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726511f.jpg"} -{"rects": [{"solidity": 0.9961876709989076, "top": 810, "right": 1995, "bottom": 3230, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728495f.jpg"} -{"rects": [{"solidity": 0.9961878919240887, "top": 850, "right": 3785, "bottom": 3245, "left": 2190}, {"solidity": 0.9967453923815339, "top": 845, "right": 1990, "bottom": 3230, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713151f.jpg"} -{"rects": [{"solidity": 0.9961879226308906, "top": 415, "right": 3175, "bottom": 2005, "left": 760}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/728834f.jpg"} -{"rects": [{"solidity": 0.9961879775175096, "top": 390, "right": 3095, "bottom": 2005, "left": 675}, {"solidity": 0.9984741037805057, "top": 2260, "right": 3085, "bottom": 3875, "left": 695}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/701142f.jpg"} -{"rects": [{"solidity": 0.9961880601610452, "top": 2290, "right": 3085, "bottom": 3885, "left": 700}, {"solidity": 0.9963622374601804, "top": 415, "right": 3090, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728595f.jpg"} -{"rects": [{"solidity": 0.9961881414832574, "top": 2285, "right": 3145, "bottom": 3860, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722842f.jpg"} -{"rects": [{"solidity": 0.9961882684701693, "top": 670, "right": 3325, "bottom": 2620, "left": 600}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718527f.jpg"} -{"rects": [{"solidity": 0.9961884115994675, "top": 785, "right": 2015, "bottom": 3190, "left": 400}, {"solidity": 0.9977627163255905, "top": 785, "right": 3865, "bottom": 3185, "left": 2270}, {"solidity": 0.9959294213657663, "top": 785, "right": 5720, "bottom": 3185, "left": 4120}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724240f.jpg"} -{"rects": [{"solidity": 0.9961884506852782, "top": 2275, "right": 3050, "bottom": 3900, "left": 620}, {"solidity": 0.9975105045742866, "top": 4120, "right": 3035, "bottom": 5735, "left": 615}, {"solidity": 0.996455601057488, "top": 410, "right": 3050, "bottom": 2025, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734413f.jpg"} -{"rects": [{"solidity": 0.9961884851459275, "top": 410, "right": 3200, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706690f.jpg"} -{"rects": [{"solidity": 0.9961884961884961, "top": 705, "right": 2030, "bottom": 3120, "left": 420}, {"solidity": 0.9963711549010507, "top": 705, "right": 3890, "bottom": 3120, "left": 2280}, {"solidity": 0.9960053218895316, "top": 715, "right": 5755, "bottom": 3130, "left": 4155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723020f.jpg"} -{"rects": [{"solidity": 0.9961885495723003, "top": 485, "right": 3220, "bottom": 2075, "left": 845}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724898f.jpg"} -{"rects": [{"solidity": 0.9961888283569875, "top": 425, "right": 3135, "bottom": 2005, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713959f.jpg"} -{"rects": [{"solidity": 0.9961889048512261, "top": 2285, "right": 3195, "bottom": 3925, "left": 740}, {"solidity": 0.9965663350177333, "top": 420, "right": 3195, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700031f.jpg"} -{"rects": [{"solidity": 0.9961889970340739, "top": 810, "right": 2070, "bottom": 3220, "left": 450}, {"solidity": 0.9953860889094392, "top": 845, "right": 3875, "bottom": 3240, "left": 2265}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717394f.jpg"} -{"rects": [{"solidity": 0.9961890790546047, "top": 800, "right": 2065, "bottom": 3215, "left": 455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718632f.jpg"} -{"rects": [{"solidity": 0.9961890979257115, "top": 4120, "right": 3180, "bottom": 5745, "left": 760}, {"solidity": 0.9967552928477477, "top": 2270, "right": 3180, "bottom": 3885, "left": 760}, {"solidity": 0.9978847909647107, "top": 420, "right": 3185, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734209f.jpg"} -{"rects": [{"solidity": 0.9961892297625005, "top": 780, "right": 5775, "bottom": 3210, "left": 4135}, {"solidity": 0.9966124508531665, "top": 780, "right": 3945, "bottom": 3195, "left": 2315}, {"solidity": 0.9971770913345455, "top": 780, "right": 2080, "bottom": 3190, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731164f.jpg"} -{"rects": [{"solidity": 0.9961893698098515, "top": 795, "right": 3885, "bottom": 3225, "left": 2240}, {"solidity": 0.996768694830882, "top": 810, "right": 2080, "bottom": 3220, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709525f.jpg"} -{"rects": [{"solidity": 0.996189480220265, "top": 2265, "right": 3115, "bottom": 3880, "left": 710}, {"solidity": 0.9957041700496466, "top": 435, "right": 3125, "bottom": 2025, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710770f.jpg"} -{"rects": [{"solidity": 0.9961895154729752, "top": 400, "right": 3095, "bottom": 2015, "left": 685}, {"solidity": 0.9950532497262865, "top": 2295, "right": 2870, "bottom": 3715, "left": 1070}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/726256f.jpg"} -{"rects": [{"solidity": 0.9961895850809834, "top": 195, "right": 4000, "bottom": 2615, "left": 2370}, {"solidity": 0.9970144851543554, "top": 220, "right": 5790, "bottom": 2625, "left": 4190}, {"solidity": 0.9970225393769168, "top": 190, "right": 2080, "bottom": 2585, "left": 490}], "shape": {"h": 3385, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724045f.jpg"} -{"rects": [{"solidity": 0.9961900608786959, "top": 325, "right": 2440, "bottom": 1540, "left": 625}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/725109f.jpg"} -{"rects": [{"solidity": 0.9961901117999533, "top": 420, "right": 3200, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718141f.jpg"} -{"rects": [{"solidity": 0.996190292220684, "top": 880, "right": 3360, "bottom": 5290, "left": 430}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/716936f.jpg"} -{"rects": [{"solidity": 0.9961903346628885, "top": 420, "right": 3155, "bottom": 1995, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724904f.jpg"} -{"rects": [{"solidity": 0.9961903658728857, "top": 2230, "right": 3080, "bottom": 3855, "left": 665}, {"solidity": 0.9978365118715311, "top": 375, "right": 3080, "bottom": 1985, "left": 675}, {"solidity": 0.9952595525225952, "top": 4080, "right": 3065, "bottom": 5710, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709315f.jpg"} -{"rects": [{"solidity": 0.996190457044639, "top": 695, "right": 2590, "bottom": 2095, "left": 790}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706515f.jpg"} -{"rects": [{"solidity": 0.9961906579372303, "top": 1110, "right": 3345, "bottom": 2175, "left": 1715}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509705.jpg"} -{"rects": [{"solidity": 0.9961906782521481, "top": 415, "right": 3360, "bottom": 2045, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703750f.jpg"} -{"rects": [{"solidity": 0.99619080346491, "top": 2265, "right": 3245, "bottom": 3875, "left": 820}, {"solidity": 0.9953303979072904, "top": 425, "right": 3255, "bottom": 2045, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725018f.jpg"} -{"rects": [{"solidity": 0.9961908093558387, "top": 810, "right": 1985, "bottom": 3215, "left": 360}, {"solidity": 0.9968939650457115, "top": 815, "right": 3755, "bottom": 3210, "left": 2135}, {"solidity": 0.9974508137786784, "top": 815, "right": 5530, "bottom": 3205, "left": 3910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733216f.jpg"} -{"rects": [{"solidity": 0.9961909201498089, "top": 790, "right": 3855, "bottom": 3210, "left": 2215}, {"solidity": 0.9972984119777862, "top": 800, "right": 1970, "bottom": 3215, "left": 335}, {"solidity": 0.9970195031649732, "top": 805, "right": 5740, "bottom": 3220, "left": 4110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714829f.jpg"} -{"rects": [{"solidity": 0.9961909674347554, "top": 2265, "right": 3240, "bottom": 3875, "left": 850}, {"solidity": 0.9959535287023717, "top": 390, "right": 3250, "bottom": 2000, "left": 870}, {"solidity": 0.9809490903055124, "top": 4100, "right": 3215, "bottom": 5690, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727275f.jpg"} -{"rects": [{"solidity": 0.9961911040902385, "top": 2290, "right": 3130, "bottom": 3895, "left": 725}, {"solidity": 0.997396029765282, "top": 475, "right": 3125, "bottom": 2075, "left": 725}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720592f.jpg"} -{"rects": [{"solidity": 0.9961916614810206, "top": 445, "right": 2960, "bottom": 1950, "left": 940}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700775f.jpg"} -{"rects": [{"solidity": 0.9961916941987282, "top": 3220, "right": 3395, "bottom": 5125, "left": 590}, {"solidity": 0.996959901119536, "top": 635, "right": 3385, "bottom": 2565, "left": 645}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721912f.jpg"} -{"rects": [{"solidity": 0.9961917877518901, "top": 345, "right": 3855, "bottom": 1555, "left": 2365}, {"solidity": 0.9976326524860671, "top": 1620, "right": 2185, "bottom": 2820, "left": 690}, {"solidity": 0.9957032650965887, "top": 345, "right": 2175, "bottom": 1550, "left": 680}, {"solidity": 0.9974530471715418, "top": 1625, "right": 3845, "bottom": 2830, "left": 2360}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716282f.jpg"} -{"rects": [{"solidity": 0.9961918112637114, "top": 805, "right": 2035, "bottom": 3225, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722656f.jpg"} -{"rects": [{"solidity": 0.9961920551245353, "top": 760, "right": 2020, "bottom": 3180, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733772f.jpg"} -{"rects": [{"solidity": 0.9961922546074531, "top": 540, "right": 4020, "bottom": 2630, "left": 2530}, {"solidity": 0.9962256477000041, "top": 525, "right": 2220, "bottom": 2620, "left": 735}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716067f.jpg"} -{"rects": [{"solidity": 0.9961923125220259, "top": 620, "right": 2515, "bottom": 2120, "left": 420}, {"solidity": 0.9955258994848497, "top": 2440, "right": 2495, "bottom": 3935, "left": 390}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716011f.jpg"} -{"rects": [{"solidity": 0.9961923219983947, "top": 810, "right": 2010, "bottom": 3220, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730298f.jpg"} -{"rects": [{"solidity": 0.9961927037650651, "top": 410, "right": 3160, "bottom": 2020, "left": 750}, {"solidity": 0.9971337235744692, "top": 2225, "right": 3160, "bottom": 3830, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715384f.jpg"} -{"rects": [{"solidity": 0.9961928043043969, "top": 2270, "right": 3155, "bottom": 3900, "left": 735}, {"solidity": 0.996595094378229, "top": 440, "right": 3160, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719493f.jpg"} -{"rects": [{"solidity": 0.9961928230803582, "top": 380, "right": 3090, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700646f.jpg"} -{"rects": [{"solidity": 0.9961928568916962, "top": 2140, "right": 3040, "bottom": 3775, "left": 605}, {"solidity": 0.9969805466428615, "top": 305, "right": 3010, "bottom": 1935, "left": 590}, {"solidity": 0.9965738252060136, "top": 3940, "right": 3010, "bottom": 5535, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731561f.jpg"} -{"rects": [{"solidity": 0.9961931118711894, "top": 390, "right": 3220, "bottom": 2005, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724528f.jpg"} -{"rects": [{"solidity": 0.9961931168030983, "top": 395, "right": 3320, "bottom": 2130, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720596f.jpg"} -{"rects": [{"solidity": 0.9961932662541996, "top": 1000, "right": 1955, "bottom": 2950, "left": 435}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733604f.jpg"} -{"rects": [{"solidity": 0.9961934173100365, "top": 840, "right": 4020, "bottom": 3255, "left": 2410}, {"solidity": 0.9958243349927252, "top": 845, "right": 2115, "bottom": 3255, "left": 505}, {"solidity": 0.995878174445901, "top": 1090, "right": 5530, "bottom": 2940, "left": 4400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721282f.jpg"} -{"rects": [{"solidity": 0.9961934800641306, "top": 400, "right": 3190, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734008f.jpg"} -{"rects": [{"solidity": 0.9961939401166662, "top": 495, "right": 4680, "bottom": 3350, "left": 1115}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701631f.jpg"} -{"rects": [{"solidity": 0.9961940080023421, "top": 705, "right": 2750, "bottom": 2120, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703940f.jpg"} -{"rects": [{"solidity": 0.9961940457100906, "top": 815, "right": 3855, "bottom": 3240, "left": 2235}, {"solidity": 0.9989009874758364, "top": 835, "right": 2050, "bottom": 3230, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708140f.jpg"} -{"rects": [{"solidity": 0.9961941039225544, "top": 870, "right": 5675, "bottom": 3295, "left": 4015}, {"solidity": 0.9966383998912899, "top": 815, "right": 3850, "bottom": 3235, "left": 2215}, {"solidity": 0.9966356963094112, "top": 785, "right": 2030, "bottom": 3190, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718143f.jpg"} -{"rects": [{"solidity": 0.9961941671336886, "top": 425, "right": 3225, "bottom": 2070, "left": 795}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/725405f.jpg"} -{"rects": [{"solidity": 0.9961941924532056, "top": 440, "right": 3210, "bottom": 2070, "left": 790}, {"solidity": 0.9984430655169635, "top": 2250, "right": 3210, "bottom": 3870, "left": 800}, {"solidity": 0.9971831488117523, "top": 4065, "right": 2995, "bottom": 5540, "left": 1075}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732373f.jpg"} -{"rects": [{"solidity": 0.9961942010949902, "top": 410, "right": 3210, "bottom": 2005, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725994f.jpg"} -{"rects": [{"solidity": 0.9961943307609828, "top": 670, "right": 2730, "bottom": 2065, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726278f.jpg"} -{"rects": [{"solidity": 0.9961945790701849, "top": 2240, "right": 3190, "bottom": 3860, "left": 800}, {"solidity": 0.9955202913120503, "top": 365, "right": 3210, "bottom": 1975, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/719534f.jpg"} -{"rects": [{"solidity": 0.9961947083461028, "top": 1255, "right": 2945, "bottom": 2900, "left": 505}, {"solidity": 0.9961550067652413, "top": 1285, "right": 5685, "bottom": 2920, "left": 3280}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720607f.jpg"} -{"rects": [{"solidity": 0.9961948286462594, "top": 585, "right": 2705, "bottom": 2010, "left": 865}, {"solidity": 0.9951598089193642, "top": 2215, "right": 4940, "bottom": 3660, "left": 3120}, {"solidity": 0.9950926744924017, "top": 610, "right": 4945, "bottom": 2005, "left": 3130}, {"solidity": 0.994284940139891, "top": 2240, "right": 2695, "bottom": 3640, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725255f.jpg"} -{"rects": [{"solidity": 0.9961949997896896, "top": 395, "right": 3305, "bottom": 2020, "left": 870}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725930f.jpg"} -{"rects": [{"solidity": 0.9961950923962436, "top": 3340, "right": 3150, "bottom": 5260, "left": 440}, {"solidity": 0.9950880462849709, "top": 785, "right": 3165, "bottom": 2710, "left": 460}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717777f.jpg"} -{"rects": [{"solidity": 0.9961951497048575, "top": 425, "right": 3340, "bottom": 2045, "left": 925}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725212f.jpg"} -{"rects": [{"solidity": 0.9961952184235756, "top": 2080, "right": 2745, "bottom": 3495, "left": 965}, {"solidity": 0.995804139647869, "top": 655, "right": 2730, "bottom": 2065, "left": 930}, {"solidity": 0.992353836601438, "top": 665, "right": 5225, "bottom": 2080, "left": 3425}, {"solidity": 0.9958589934168613, "top": 2095, "right": 5235, "bottom": 3485, "left": 3430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727656f.jpg"} -{"rects": [{"solidity": 0.9961953014380798, "top": 2285, "right": 3185, "bottom": 3915, "left": 760}, {"solidity": 0.9967240528985436, "top": 475, "right": 3175, "bottom": 2080, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709690f.jpg"} -{"rects": [{"solidity": 0.9961955506149888, "top": 2270, "right": 3010, "bottom": 3700, "left": 1165}, {"solidity": 0.9963454892204033, "top": 2250, "right": 5225, "bottom": 3685, "left": 3405}, {"solidity": 0.9980006681059197, "top": 655, "right": 3005, "bottom": 2040, "left": 1180}, {"solidity": 0.9947319972384259, "top": 640, "right": 5215, "bottom": 2040, "left": 3400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725253f.jpg"} -{"rects": [{"solidity": 0.9961956331097909, "top": 2255, "right": 3215, "bottom": 3895, "left": 770}, {"solidity": 0.9972266269911186, "top": 410, "right": 3200, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734566f.jpg"} -{"rects": [{"solidity": 0.9961956856353108, "top": 425, "right": 3175, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701366f.jpg"} -{"rects": [{"solidity": 0.9961961087075801, "top": 480, "right": 5000, "bottom": 3690, "left": 970}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717641f.jpg"} -{"rects": [{"solidity": 0.996196132325513, "top": 680, "right": 2690, "bottom": 2100, "left": 870}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705471f.jpg"} -{"rects": [{"solidity": 0.996196155459306, "top": 630, "right": 3425, "bottom": 2625, "left": 385}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708160f.jpg"} -{"rects": [{"solidity": 0.9961961672529838, "top": 2035, "right": 3125, "bottom": 3665, "left": 705}, {"solidity": 0.9962354243352467, "top": 305, "right": 3120, "bottom": 1930, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718948f.jpg"} -{"rects": [{"solidity": 0.996196199395867, "top": 2250, "right": 3040, "bottom": 3875, "left": 605}, {"solidity": 0.9961999452998054, "top": 405, "right": 3025, "bottom": 2025, "left": 605}, {"solidity": 0.9975477601358164, "top": 4090, "right": 3020, "bottom": 5695, "left": 610}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730629f.jpg"} -{"rects": [{"solidity": 0.9961962624708716, "top": 465, "right": 3155, "bottom": 2075, "left": 745}, {"solidity": 0.9945061712389152, "top": 2325, "right": 3150, "bottom": 3950, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729199f.jpg"} -{"rects": [{"solidity": 0.9961965385650722, "top": 810, "right": 3960, "bottom": 3250, "left": 2310}, {"solidity": 0.9988282754953561, "top": 790, "right": 2065, "bottom": 3220, "left": 440}, {"solidity": 0.9960122718911315, "top": 850, "right": 5825, "bottom": 3285, "left": 4185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732129f.jpg"} -{"rects": [{"solidity": 0.996196655657556, "top": 425, "right": 3135, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706516f.jpg"} -{"rects": [{"solidity": 0.996196693037164, "top": 1065, "right": 3515, "bottom": 5125, "left": 285}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724483f.jpg"} -{"rects": [{"solidity": 0.9961968079080501, "top": 2260, "right": 3210, "bottom": 3865, "left": 785}, {"solidity": 0.9969903353441006, "top": 4080, "right": 3205, "bottom": 5685, "left": 785}, {"solidity": 0.9963073682557957, "top": 435, "right": 3200, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734835f.jpg"} -{"rects": [{"solidity": 0.9961969186949767, "top": 450, "right": 3190, "bottom": 2070, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721132f.jpg"} -{"rects": [{"solidity": 0.9961969986777751, "top": 835, "right": 3915, "bottom": 3255, "left": 2275}, {"solidity": 0.9964622641509434, "top": 830, "right": 2045, "bottom": 3240, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705486f.jpg"} -{"rects": [{"solidity": 0.9961970323961274, "top": 825, "right": 2005, "bottom": 3250, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706853f.jpg"} -{"rects": [{"solidity": 0.9961971156335767, "top": 780, "right": 2030, "bottom": 3195, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718582f.jpg"} -{"rects": [{"solidity": 0.9961972446210581, "top": 455, "right": 4955, "bottom": 3690, "left": 935}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717636f.jpg"} -{"rects": [{"solidity": 0.996197472951013, "top": 395, "right": 3140, "bottom": 2030, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700290f.jpg"} -{"rects": [{"solidity": 0.996197472951013, "top": 425, "right": 3205, "bottom": 2050, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702333f.jpg"} -{"rects": [{"solidity": 0.9961975324760102, "top": 2265, "right": 3095, "bottom": 3890, "left": 705}, {"solidity": 0.9976523929471033, "top": 4150, "right": 3055, "bottom": 5740, "left": 695}, {"solidity": 0.9956653648234131, "top": 460, "right": 3085, "bottom": 2060, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711119f.jpg"} -{"rects": [{"solidity": 0.9961975346866111, "top": 410, "right": 3120, "bottom": 2030, "left": 705}, {"solidity": 0.9992505231737586, "top": 2290, "right": 3115, "bottom": 3895, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720885f.jpg"} -{"rects": [{"solidity": 0.9961975837402359, "top": 865, "right": 2015, "bottom": 3285, "left": 390}, {"solidity": 0.996287492925863, "top": 845, "right": 3870, "bottom": 3260, "left": 2250}, {"solidity": 0.9943646408839779, "top": 845, "right": 5735, "bottom": 3260, "left": 4125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722302f.jpg"} -{"rects": [{"solidity": 0.9961976094702492, "top": 420, "right": 3190, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702162f.jpg"} -{"rects": [{"solidity": 0.9961976579647249, "top": 1050, "right": 3490, "bottom": 5015, "left": 300}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718438f.jpg"} -{"rects": [{"solidity": 0.9961977058709032, "top": 835, "right": 1985, "bottom": 3220, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712152f.jpg"} -{"rects": [{"solidity": 0.9961977309457416, "top": 420, "right": 3175, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702907f.jpg"} -{"rects": [{"solidity": 0.9961977793753495, "top": 745, "right": 2025, "bottom": 3185, "left": 355}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713577f.jpg"} -{"rects": [{"solidity": 0.9961978305350786, "top": 545, "right": 3365, "bottom": 3955, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714328f.jpg"} -{"rects": [{"solidity": 0.9961978576390158, "top": 975, "right": 2005, "bottom": 3370, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717471f.jpg"} -{"rects": [{"solidity": 0.996197950346518, "top": 805, "right": 2055, "bottom": 3180, "left": 480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723406f.jpg"} -{"rects": [{"solidity": 0.996198028037848, "top": 450, "right": 3285, "bottom": 2445, "left": 460}, {"solidity": 0.9959829805855953, "top": 2515, "right": 3215, "bottom": 4450, "left": 465}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703788f.jpg"} -{"rects": [{"solidity": 0.9961981083109352, "top": 450, "right": 3235, "bottom": 2040, "left": 840}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710081f.jpg"} -{"rects": [{"solidity": 0.996198209063031, "top": 905, "right": 3905, "bottom": 3330, "left": 2285}, {"solidity": 0.9960300604476393, "top": 900, "right": 2065, "bottom": 3315, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734412f.jpg"} -{"rects": [{"solidity": 0.9961982183556173, "top": 420, "right": 3235, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711064f.jpg"} -{"rects": [{"solidity": 0.9961982803620498, "top": 445, "right": 3260, "bottom": 2055, "left": 860}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726424f.jpg"} -{"rects": [{"solidity": 0.9961984019114294, "top": 420, "right": 3445, "bottom": 2250, "left": 715}, {"solidity": 0.9966475545152774, "top": 4665, "right": 3425, "bottom": 6490, "left": 695}, {"solidity": 0.9954646736016501, "top": 2555, "right": 3425, "bottom": 4375, "left": 710}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/702182f.jpg"} -{"rects": [{"solidity": 0.9961984774902348, "top": 860, "right": 2090, "bottom": 3310, "left": 445}, {"solidity": 0.9962140439248499, "top": 890, "right": 3970, "bottom": 3320, "left": 2350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729783f.jpg"} -{"rects": [{"solidity": 0.9961985327386723, "top": 740, "right": 2455, "bottom": 3590, "left": 250}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509245.jpg"} -{"rects": [{"solidity": 0.9961985415524891, "top": 760, "right": 2820, "bottom": 3935, "left": 525}], "shape": {"h": 4410, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711642f.jpg"} -{"rects": [{"solidity": 0.9961986017920877, "top": 355, "right": 3150, "bottom": 1970, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719248f.jpg"} -{"rects": [{"solidity": 0.996198657344251, "top": 720, "right": 3910, "bottom": 3170, "left": 2250}, {"solidity": 0.9954951651932169, "top": 680, "right": 5760, "bottom": 3125, "left": 4105}, {"solidity": 0.9957920902799522, "top": 760, "right": 2050, "bottom": 3200, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705588f.jpg"} -{"rects": [{"solidity": 0.9961987043836424, "top": 815, "right": 3850, "bottom": 3240, "left": 2240}, {"solidity": 0.9966922530620981, "top": 805, "right": 2055, "bottom": 3220, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716554f.jpg"} -{"rects": [{"solidity": 0.9961988075711422, "top": 455, "right": 3045, "bottom": 2080, "left": 645}, {"solidity": 0.9971478210983008, "top": 2305, "right": 3025, "bottom": 3920, "left": 625}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/701804f.jpg"} -{"rects": [{"solidity": 0.996198993300171, "top": 755, "right": 2675, "bottom": 2175, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728251f.jpg"} -{"rects": [{"solidity": 0.9961990427955941, "top": 590, "right": 2745, "bottom": 1985, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706747f.jpg"} -{"rects": [{"solidity": 0.9961991995923309, "top": 830, "right": 5580, "bottom": 3250, "left": 3960}, {"solidity": 0.9944446652885991, "top": 840, "right": 3785, "bottom": 3250, "left": 2180}, {"solidity": 0.996359861359945, "top": 850, "right": 2005, "bottom": 3250, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719884f.jpg"} -{"rects": [{"solidity": 0.9961992248023146, "top": 630, "right": 2680, "bottom": 2035, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706021f.jpg"} -{"rects": [{"solidity": 0.9961994180157875, "top": 420, "right": 3175, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714005f.jpg"} -{"rects": [{"solidity": 0.9961995412058753, "top": 535, "right": 2855, "bottom": 1950, "left": 1030}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704309f.jpg"} -{"rects": [{"solidity": 0.9961999711024419, "top": 690, "right": 2710, "bottom": 2120, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705075f.jpg"} -{"rects": [{"solidity": 0.9961999785639817, "top": 405, "right": 3110, "bottom": 2020, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728620f.jpg"} -{"rects": [{"solidity": 0.9962000047416961, "top": 395, "right": 5165, "bottom": 3650, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732389f.jpg"} -{"rects": [{"solidity": 0.9962001546448691, "top": 780, "right": 2090, "bottom": 3235, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707763f.jpg"} -{"rects": [{"solidity": 0.9962004027312859, "top": 2185, "right": 3210, "bottom": 3805, "left": 800}, {"solidity": 0.9973026963228394, "top": 390, "right": 3210, "bottom": 2000, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715231f.jpg"} -{"rects": [{"solidity": 0.9962004152586702, "top": 2260, "right": 3110, "bottom": 3885, "left": 680}, {"solidity": 0.9973419287326846, "top": 390, "right": 3105, "bottom": 2000, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728736f.jpg"} -{"rects": [{"solidity": 0.9962007020441875, "top": 795, "right": 3780, "bottom": 3220, "left": 2135}, {"solidity": 0.9974964658817345, "top": 785, "right": 1995, "bottom": 3200, "left": 365}, {"solidity": 0.9969603783214569, "top": 810, "right": 5680, "bottom": 3225, "left": 4060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709325f.jpg"} -{"rects": [{"solidity": 0.9962007617761921, "top": 415, "right": 3125, "bottom": 2040, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734827f.jpg"} -{"rects": [{"solidity": 0.9962008201404141, "top": 935, "right": 3835, "bottom": 3380, "left": 2185}, {"solidity": 0.996362856996622, "top": 970, "right": 5685, "bottom": 3405, "left": 4055}, {"solidity": 0.9963378222120585, "top": 915, "right": 2000, "bottom": 3335, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701079f.jpg"} -{"rects": [{"solidity": 0.9962009133623729, "top": 815, "right": 2055, "bottom": 3235, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723801f.jpg"} -{"rects": [{"solidity": 0.9962009318469055, "top": 130, "right": 3765, "bottom": 2890, "left": 145}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509969.jpg"} -{"rects": [{"solidity": 0.9962011428032106, "top": 2090, "right": 3025, "bottom": 3720, "left": 1040}, {"solidity": 0.9960316821482041, "top": 340, "right": 3015, "bottom": 1945, "left": 1045}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704722f.jpg"} -{"rects": [{"solidity": 0.9962011818545341, "top": 540, "right": 2985, "bottom": 2190, "left": 545}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702755f.jpg"} -{"rects": [{"solidity": 0.9962013835956118, "top": 320, "right": 5065, "bottom": 3580, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700521f.jpg"} -{"rects": [{"solidity": 0.996201459473547, "top": 760, "right": 3890, "bottom": 3170, "left": 2285}, {"solidity": 0.995084034024088, "top": 755, "right": 5760, "bottom": 3165, "left": 4150}, {"solidity": 0.995224922500926, "top": 765, "right": 2040, "bottom": 3150, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724350f.jpg"} -{"rects": [{"solidity": 0.9962015856511568, "top": 450, "right": 3245, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711771f.jpg"} -{"rects": [{"solidity": 0.9962015932481585, "top": 735, "right": 3325, "bottom": 2630, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712349f.jpg"} -{"rects": [{"solidity": 0.996201660804434, "top": 440, "right": 3150, "bottom": 2065, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714420f.jpg"} -{"rects": [{"solidity": 0.9962017500797101, "top": 405, "right": 3595, "bottom": 2230, "left": 860}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/703410f.jpg"} -{"rects": [{"solidity": 0.9962018571586383, "top": 800, "right": 2150, "bottom": 3225, "left": 545}, {"solidity": 0.9972868975412509, "top": 825, "right": 5880, "bottom": 3235, "left": 4280}, {"solidity": 0.9959854712292104, "top": 820, "right": 4020, "bottom": 3210, "left": 2420}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731598f.jpg"} -{"rects": [{"solidity": 0.996201866146491, "top": 680, "right": 2690, "bottom": 2095, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706114f.jpg"} -{"rects": [{"solidity": 0.9962019011992677, "top": 750, "right": 2540, "bottom": 2315, "left": 260}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716336f.jpg"} -{"rects": [{"solidity": 0.9962019947560536, "top": 2070, "right": 3040, "bottom": 3705, "left": 620}, {"solidity": 0.9970446464868074, "top": 315, "right": 3020, "bottom": 1940, "left": 610}, {"solidity": 0.9977127024501661, "top": 310, "right": 5630, "bottom": 1925, "left": 3225}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702816f.jpg"} -{"rects": [{"solidity": 0.996202146555926, "top": 405, "right": 3150, "bottom": 2010, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718313f.jpg"} -{"rects": [{"solidity": 0.9962022273856261, "top": 4095, "right": 3110, "bottom": 5725, "left": 690}, {"solidity": 0.9978080072206821, "top": 390, "right": 3120, "bottom": 2010, "left": 705}, {"solidity": 0.9971827054466613, "top": 2240, "right": 3115, "bottom": 3855, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726618f.jpg"} -{"rects": [{"solidity": 0.9962024139048101, "top": 4010, "right": 3070, "bottom": 5640, "left": 640}, {"solidity": 0.9966244969665436, "top": 2220, "right": 3085, "bottom": 3855, "left": 665}, {"solidity": 0.9957744563457628, "top": 460, "right": 3095, "bottom": 2075, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730932f.jpg"} -{"rects": [{"solidity": 0.996202415126975, "top": 785, "right": 3370, "bottom": 2750, "left": 345}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722533f.jpg"} -{"rects": [{"solidity": 0.9962024244718257, "top": 360, "right": 3330, "bottom": 2255, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713588f.jpg"} -{"rects": [{"solidity": 0.9962025483072711, "top": 725, "right": 2005, "bottom": 3120, "left": 405}, {"solidity": 0.9941585901633949, "top": 745, "right": 3785, "bottom": 3135, "left": 2180}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718259f.jpg"} -{"rects": [{"solidity": 0.9962025528915147, "top": 4095, "right": 2915, "bottom": 5605, "left": 925}, {"solidity": 0.9947671903675985, "top": 460, "right": 2920, "bottom": 1970, "left": 925}, {"solidity": 0.9965756487740056, "top": 2270, "right": 2925, "bottom": 3765, "left": 940}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731245f.jpg"} -{"rects": [{"solidity": 0.9962025797141808, "top": 780, "right": 3915, "bottom": 3230, "left": 2235}, {"solidity": 0.9943866557572636, "top": 750, "right": 2005, "bottom": 3160, "left": 360}, {"solidity": 0.9934133943814993, "top": 1140, "right": 5575, "bottom": 2965, "left": 4125}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719933f.jpg"} -{"rects": [{"solidity": 0.9962030213287475, "top": 800, "right": 2075, "bottom": 3210, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720148f.jpg"} -{"rects": [{"solidity": 0.9962030472606659, "top": 670, "right": 2735, "bottom": 2085, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705299f.jpg"} -{"rects": [{"solidity": 0.9962033312495295, "top": 755, "right": 2055, "bottom": 3155, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721867f.jpg"} -{"rects": [{"solidity": 0.9962033658560108, "top": 2250, "right": 3115, "bottom": 3885, "left": 695}, {"solidity": 0.9975045883375728, "top": 415, "right": 3105, "bottom": 2035, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719706f.jpg"} -{"rects": [{"solidity": 0.9962034751784797, "top": 405, "right": 3170, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720445f.jpg"} -{"rects": [{"solidity": 0.9962035005012327, "top": 280, "right": 3915, "bottom": 2715, "left": 835}], "shape": {"h": 2975, "w": 4595}, "file": "/usr/local/google/home/danvk/milstein/1507280.jpg"} -{"rects": [{"solidity": 0.9962035410319379, "top": 920, "right": 5775, "bottom": 3360, "left": 4130}, {"solidity": 0.9965052993411629, "top": 895, "right": 3895, "bottom": 3325, "left": 2260}, {"solidity": 0.996446923716383, "top": 860, "right": 2020, "bottom": 3295, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734819f.jpg"} -{"rects": [{"solidity": 0.9962035651108995, "top": 425, "right": 3135, "bottom": 2000, "left": 765}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732327f.jpg"} -{"rects": [{"solidity": 0.9962035814996718, "top": 130, "right": 3465, "bottom": 2860, "left": 275}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723460f.jpg"} -{"rects": [{"solidity": 0.9962037119261167, "top": 4040, "right": 3165, "bottom": 5690, "left": 725}, {"solidity": 0.9988498770007348, "top": 2215, "right": 3150, "bottom": 3835, "left": 720}, {"solidity": 0.9966426950613372, "top": 380, "right": 3155, "bottom": 2005, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723165f.jpg"} -{"rects": [{"solidity": 0.9962037877254715, "top": 785, "right": 2115, "bottom": 3190, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721040f.jpg"} -{"rects": [{"solidity": 0.9962038234777917, "top": 650, "right": 3325, "bottom": 2720, "left": 455}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728996f.jpg"} -{"rects": [{"solidity": 0.9962038782524906, "top": 735, "right": 3935, "bottom": 3155, "left": 2305}, {"solidity": 0.9961923039104327, "top": 760, "right": 2025, "bottom": 3130, "left": 455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723743f.jpg"} -{"rects": [{"solidity": 0.9962039257665743, "top": 605, "right": 2465, "bottom": 3635, "left": 440}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714660f.jpg"} -{"rects": [{"solidity": 0.9962039493463458, "top": 415, "right": 3155, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712522f.jpg"} -{"rects": [{"solidity": 0.996204060504975, "top": 840, "right": 3890, "bottom": 3270, "left": 2255}, {"solidity": 0.9958580468802515, "top": 825, "right": 5720, "bottom": 3255, "left": 4085}, {"solidity": 0.9965956537089883, "top": 870, "right": 2045, "bottom": 3275, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707944f.jpg"} -{"rects": [{"solidity": 0.9962041220913463, "top": 745, "right": 5740, "bottom": 3145, "left": 4150}, {"solidity": 0.9953680698516363, "top": 510, "right": 2350, "bottom": 1995, "left": 425}, {"solidity": 0.9942505502403091, "top": 1035, "right": 3960, "bottom": 2855, "left": 2565}, {"solidity": 0.9972521942185361, "top": 2170, "right": 2285, "bottom": 3580, "left": 505}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720553f.jpg"} -{"rects": [{"solidity": 0.9962042377433872, "top": 2280, "right": 3125, "bottom": 3915, "left": 695}, {"solidity": 0.9980131636001217, "top": 400, "right": 3120, "bottom": 2010, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734335f.jpg"} -{"rects": [{"solidity": 0.9962043420270292, "top": 380, "right": 3140, "bottom": 2005, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722912f.jpg"} -{"rects": [{"solidity": 0.996204846220632, "top": 475, "right": 3125, "bottom": 2080, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713129f.jpg"} -{"rects": [{"solidity": 0.9962050128534704, "top": 780, "right": 3870, "bottom": 3210, "left": 2230}, {"solidity": 0.9965903084836218, "top": 775, "right": 1995, "bottom": 3195, "left": 365}, {"solidity": 0.9950801418990652, "top": 810, "right": 5735, "bottom": 3235, "left": 4110}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724270f.jpg"} -{"rects": [{"solidity": 0.9962050169968351, "top": 1620, "right": 2150, "bottom": 3235, "left": 1080}], "shape": {"h": 4645, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509563.jpg"} -{"rects": [{"solidity": 0.9962050350098883, "top": 795, "right": 1950, "bottom": 3160, "left": 355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720855f.jpg"} -{"rects": [{"solidity": 0.9962050976586894, "top": 885, "right": 5735, "bottom": 3310, "left": 4095}, {"solidity": 0.996475580577966, "top": 870, "right": 3850, "bottom": 3300, "left": 2235}, {"solidity": 0.9956178156192632, "top": 865, "right": 1980, "bottom": 3280, "left": 370}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714360f.jpg"} -{"rects": [{"solidity": 0.9962051745772097, "top": 640, "right": 2690, "bottom": 2015, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704107f.jpg"} -{"rects": [{"solidity": 0.9962052383456729, "top": 1175, "right": 3990, "bottom": 5680, "left": 415}], "shape": {"h": 6860, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706377f.jpg"} -{"rects": [{"solidity": 0.9962054622131281, "top": 740, "right": 3925, "bottom": 3165, "left": 2280}, {"solidity": 0.9968768757201963, "top": 715, "right": 2035, "bottom": 3130, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733340f.jpg"} -{"rects": [{"solidity": 0.99620568266718, "top": 4130, "right": 3210, "bottom": 5740, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724567f.jpg"} -{"rects": [{"solidity": 0.9962056914628058, "top": 795, "right": 3845, "bottom": 3225, "left": 2200}, {"solidity": 0.9968107009290992, "top": 775, "right": 2015, "bottom": 3190, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730455f.jpg"} -{"rects": [{"solidity": 0.996205922374503, "top": 380, "right": 5085, "bottom": 3670, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722279f.jpg"} -{"rects": [{"solidity": 0.9962059411293359, "top": 875, "right": 2070, "bottom": 3300, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722894f.jpg"} -{"rects": [{"solidity": 0.996206069648237, "top": 385, "right": 3180, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705996f.jpg"} -{"rects": [{"solidity": 0.9962062135517485, "top": 475, "right": 5045, "bottom": 3630, "left": 1140}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701188f.jpg"} -{"rects": [{"solidity": 0.9962062374952858, "top": 810, "right": 2090, "bottom": 3245, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715233f.jpg"} -{"rects": [{"solidity": 0.9962063550755608, "top": 2265, "right": 5080, "bottom": 3690, "left": 3235}, {"solidity": 0.9970222464211546, "top": 680, "right": 2885, "bottom": 2100, "left": 1040}, {"solidity": 0.9970463356101164, "top": 2265, "right": 2885, "bottom": 3685, "left": 1060}, {"solidity": 0.9950573483670295, "top": 700, "right": 5070, "bottom": 2115, "left": 3230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725067f.jpg"} -{"rects": [{"solidity": 0.9962063909511951, "top": 450, "right": 3280, "bottom": 2045, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726005f.jpg"} -{"rects": [{"solidity": 0.9962064835232244, "top": 445, "right": 3110, "bottom": 2075, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701893f.jpg"} -{"rects": [{"solidity": 0.9962064914751524, "top": 740, "right": 1980, "bottom": 3160, "left": 360}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722852f.jpg"} -{"rects": [{"solidity": 0.9962065573770492, "top": 460, "right": 3205, "bottom": 2060, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712501f.jpg"} -{"rects": [{"solidity": 0.996206562902492, "top": 815, "right": 2015, "bottom": 3245, "left": 395}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728869f.jpg"} -{"rects": [{"solidity": 0.9962066647459906, "top": 855, "right": 3845, "bottom": 3295, "left": 2220}, {"solidity": 0.997675908311042, "top": 850, "right": 2010, "bottom": 3280, "left": 400}, {"solidity": 0.9976235022106582, "top": 860, "right": 5690, "bottom": 3290, "left": 4080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726637f.jpg"} -{"rects": [{"solidity": 0.9962069188909044, "top": 400, "right": 3200, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706928f.jpg"} -{"rects": [{"solidity": 0.9962071165707436, "top": 900, "right": 3910, "bottom": 3325, "left": 2290}, {"solidity": 0.9956998147363793, "top": 890, "right": 2025, "bottom": 3310, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730468f.jpg"} -{"rects": [{"solidity": 0.9962072520395566, "top": 435, "right": 3535, "bottom": 2270, "left": 815}], "shape": {"h": 6895, "w": 4440}, "file": "/usr/local/google/home/danvk/milstein/708340f.jpg"} -{"rects": [{"solidity": 0.9962073238200182, "top": 815, "right": 2930, "bottom": 3585, "left": 930}, {"solidity": 0.995674016854604, "top": 2280, "right": 5290, "bottom": 3705, "left": 3435}, {"solidity": 0.9951086694617127, "top": 800, "right": 5280, "bottom": 2240, "left": 3455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704298f.jpg"} -{"rects": [{"solidity": 0.9962073451083069, "top": 2265, "right": 3190, "bottom": 3850, "left": 800}, {"solidity": 0.9944068911886104, "top": 4115, "right": 3185, "bottom": 5710, "left": 785}, {"solidity": 0.994886173976901, "top": 415, "right": 3195, "bottom": 2005, "left": 805}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/731303f.jpg"} -{"rects": [{"solidity": 0.9962073942778572, "top": 435, "right": 5695, "bottom": 2065, "left": 3300}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705038f.jpg"} -{"rects": [{"solidity": 0.9962074007202504, "top": 2350, "right": 2975, "bottom": 3770, "left": 1160}, {"solidity": 0.9946312963840203, "top": 505, "right": 2960, "bottom": 1925, "left": 1155}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727601f.jpg"} -{"rects": [{"solidity": 0.996207407212822, "top": 470, "right": 3135, "bottom": 2070, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711854f.jpg"} -{"rects": [{"solidity": 0.9962074308423393, "top": 530, "right": 3170, "bottom": 2150, "left": 750}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/711588f.jpg"} -{"rects": [{"solidity": 0.996207487154392, "top": 765, "right": 2020, "bottom": 3190, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725688f.jpg"} -{"rects": [{"solidity": 0.9962075115738505, "top": 435, "right": 3195, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706683f.jpg"} -{"rects": [{"solidity": 0.9962078167494478, "top": 740, "right": 2090, "bottom": 3185, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703887f.jpg"} -{"rects": [{"solidity": 0.9962078524333217, "top": 400, "right": 3195, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710872f.jpg"} -{"rects": [{"solidity": 0.9962079043698929, "top": 385, "right": 3190, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723721f.jpg"} -{"rects": [{"solidity": 0.9962079616864209, "top": 565, "right": 3630, "bottom": 2835, "left": 470}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708346f.jpg"} -{"rects": [{"solidity": 0.9962080033131439, "top": 725, "right": 1995, "bottom": 3135, "left": 380}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718731f.jpg"} -{"rects": [{"solidity": 0.9962081403344881, "top": 750, "right": 2110, "bottom": 3160, "left": 490}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710698f.jpg"} -{"rects": [{"solidity": 0.9962081843464442, "top": 2235, "right": 3045, "bottom": 3875, "left": 610}, {"solidity": 0.9960457472711206, "top": 375, "right": 3060, "bottom": 2010, "left": 620}, {"solidity": 0.9929882558204364, "top": 4105, "right": 3020, "bottom": 5710, "left": 595}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718755f.jpg"} -{"rects": [{"solidity": 0.9962084105069863, "top": 810, "right": 3080, "bottom": 2310, "left": 945}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508993.jpg"} -{"rects": [{"solidity": 0.9962086041473228, "top": 730, "right": 2330, "bottom": 3155, "left": 690}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722106f.jpg"} -{"rects": [{"solidity": 0.9962088176138689, "top": 2470, "right": 3475, "bottom": 4305, "left": 755}, {"solidity": 0.9955718968542714, "top": 4525, "right": 3465, "bottom": 6345, "left": 760}, {"solidity": 0.9952091280354058, "top": 455, "right": 3480, "bottom": 2270, "left": 780}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711619f.jpg"} -{"rects": [{"solidity": 0.9962088287461872, "top": 765, "right": 2040, "bottom": 3190, "left": 410}, {"solidity": 0.9981100514143818, "top": 780, "right": 3885, "bottom": 3190, "left": 2275}, {"solidity": 0.9925854878519847, "top": 805, "right": 5730, "bottom": 3215, "left": 4125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713998f.jpg"} -{"rects": [{"solidity": 0.9962088502961334, "top": 2245, "right": 3115, "bottom": 3875, "left": 685}, {"solidity": 0.9953633641369095, "top": 4095, "right": 3110, "bottom": 5725, "left": 675}, {"solidity": 0.9959179886816959, "top": 415, "right": 3120, "bottom": 2005, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733623f.jpg"} -{"rects": [{"solidity": 0.9962089435632088, "top": 2255, "right": 3330, "bottom": 3900, "left": 905}, {"solidity": 0.9971054846856181, "top": 405, "right": 3320, "bottom": 2020, "left": 910}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705359f.jpg"} -{"rects": [{"solidity": 0.9962089840668875, "top": 670, "right": 5185, "bottom": 2090, "left": 3380}, {"solidity": 0.9955080277326165, "top": 2130, "right": 2665, "bottom": 3555, "left": 870}, {"solidity": 0.9961703309786492, "top": 655, "right": 2680, "bottom": 2070, "left": 870}, {"solidity": 0.9991522024966875, "top": 2160, "right": 5190, "bottom": 3515, "left": 3360}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718098f.jpg"} -{"rects": [{"solidity": 0.9962089894697712, "top": 365, "right": 3155, "bottom": 1990, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718561f.jpg"} -{"rects": [{"solidity": 0.9962097837595567, "top": 415, "right": 3165, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715245f.jpg"} -{"rects": [{"solidity": 0.9962098509626636, "top": 625, "right": 3385, "bottom": 2760, "left": 280}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701839f.jpg"} -{"rects": [{"solidity": 0.996209888250974, "top": 785, "right": 2030, "bottom": 3215, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723572f.jpg"} -{"rects": [{"solidity": 0.9962099549265739, "top": 800, "right": 3865, "bottom": 3215, "left": 2245}, {"solidity": 0.9944669875638645, "top": 800, "right": 2070, "bottom": 3195, "left": 460}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717672f.jpg"} -{"rects": [{"solidity": 0.9962099671724352, "top": 755, "right": 2040, "bottom": 3170, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707762f.jpg"} -{"rects": [{"solidity": 0.9962100301841719, "top": 475, "right": 5810, "bottom": 2105, "left": 3400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701571f.jpg"} -{"rects": [{"solidity": 0.9962100475849581, "top": 400, "right": 3150, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708914f.jpg"} -{"rects": [{"solidity": 0.9962101470257053, "top": 410, "right": 3240, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710626f.jpg"} -{"rects": [{"solidity": 0.996210253227547, "top": 685, "right": 4945, "bottom": 3615, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733805f.jpg"} -{"rects": [{"solidity": 0.9962102953115486, "top": 355, "right": 3020, "bottom": 2015, "left": 575}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715542f.jpg"} -{"rects": [{"solidity": 0.9962103487138253, "top": 760, "right": 2040, "bottom": 3160, "left": 445}, {"solidity": 0.9969700851332177, "top": 1115, "right": 3715, "bottom": 2925, "left": 2300}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717381f.jpg"} -{"rects": [{"solidity": 0.9962103609647543, "top": 810, "right": 2085, "bottom": 3210, "left": 480}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711853f.jpg"} -{"rects": [{"solidity": 0.9962106011065571, "top": 805, "right": 2000, "bottom": 3195, "left": 390}, {"solidity": 0.9414009169864853, "top": 1110, "right": 3830, "bottom": 3135, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730114f.jpg"} -{"rects": [{"solidity": 0.9962106422065328, "top": 2230, "right": 3015, "bottom": 3860, "left": 580}, {"solidity": 0.9963480469990473, "top": 4090, "right": 2985, "bottom": 5710, "left": 570}, {"solidity": 0.9975006305748549, "top": 390, "right": 3005, "bottom": 1985, "left": 595}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733651f.jpg"} -{"rects": [{"solidity": 0.9962106995884774, "top": 825, "right": 2085, "bottom": 3230, "left": 485}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712979f.jpg"} -{"rects": [{"solidity": 0.996210830562442, "top": 440, "right": 3270, "bottom": 3900, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714273f.jpg"} -{"rects": [{"solidity": 0.9962108351537126, "top": 755, "right": 2035, "bottom": 3185, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707571f.jpg"} -{"rects": [{"solidity": 0.9962109625536534, "top": 2145, "right": 5305, "bottom": 3550, "left": 3485}, {"solidity": 0.9949196984595214, "top": 720, "right": 2625, "bottom": 2125, "left": 820}, {"solidity": 0.9947681473671647, "top": 2175, "right": 2620, "bottom": 3585, "left": 815}, {"solidity": 0.9935420693209638, "top": 705, "right": 5280, "bottom": 2090, "left": 3500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726583f.jpg"} -{"rects": [{"solidity": 0.9962109950515001, "top": 440, "right": 3145, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722370f.jpg"} -{"rects": [{"solidity": 0.9962113266488313, "top": 790, "right": 3860, "bottom": 3210, "left": 2235}, {"solidity": 0.9971100887708158, "top": 790, "right": 2045, "bottom": 3200, "left": 430}, {"solidity": 0.9962201056548781, "top": 800, "right": 5665, "bottom": 3210, "left": 4045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713334f.jpg"} -{"rects": [{"solidity": 0.9962114420685838, "top": 500, "right": 2965, "bottom": 2095, "left": 910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721562f.jpg"} -{"rects": [{"solidity": 0.996211446612159, "top": 755, "right": 3890, "bottom": 3175, "left": 2275}, {"solidity": 0.9950841165887478, "top": 740, "right": 5755, "bottom": 3155, "left": 4145}, {"solidity": 0.9963522106973542, "top": 760, "right": 2035, "bottom": 3175, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733801f.jpg"} -{"rects": [{"solidity": 0.9962114755627309, "top": 535, "right": 2960, "bottom": 2170, "left": 535}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706882f.jpg"} -{"rects": [{"solidity": 0.9962115640454874, "top": 810, "right": 1990, "bottom": 3210, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712313f.jpg"} -{"rects": [{"solidity": 0.9962118740293131, "top": 425, "right": 3180, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721910f.jpg"} -{"rects": [{"solidity": 0.9962118911454154, "top": 2210, "right": 3165, "bottom": 3845, "left": 750}, {"solidity": 0.9981691265354808, "top": 335, "right": 3175, "bottom": 1960, "left": 760}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704697f.jpg"} -{"rects": [{"solidity": 0.996211960932902, "top": 400, "right": 4890, "bottom": 3690, "left": 835}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702928f.jpg"} -{"rects": [{"solidity": 0.9962120602594594, "top": 2270, "right": 3190, "bottom": 3895, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731054f.jpg"} -{"rects": [{"solidity": 0.996212451163526, "top": 2260, "right": 3170, "bottom": 3880, "left": 745}, {"solidity": 0.9977078994091547, "top": 445, "right": 3155, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734591f.jpg"} -{"rects": [{"solidity": 0.9962124844184486, "top": 400, "right": 3255, "bottom": 2035, "left": 810}, {"solidity": 0.9980620465943035, "top": 2285, "right": 3245, "bottom": 3900, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702920f.jpg"} -{"rects": [{"solidity": 0.9962129134182559, "top": 760, "right": 3840, "bottom": 3180, "left": 2215}, {"solidity": 0.9958172333848532, "top": 750, "right": 5625, "bottom": 3180, "left": 4000}, {"solidity": 0.9967114614291253, "top": 765, "right": 2045, "bottom": 3185, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732029f.jpg"} -{"rects": [{"solidity": 0.9962130124116504, "top": 315, "right": 3180, "bottom": 1945, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704741f.jpg"} -{"rects": [{"solidity": 0.9962130421227557, "top": 475, "right": 5080, "bottom": 3715, "left": 1005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709147f.jpg"} -{"rects": [{"solidity": 0.9962132516936071, "top": 2235, "right": 3090, "bottom": 3865, "left": 670}, {"solidity": 0.9950016682913425, "top": 390, "right": 3075, "bottom": 1995, "left": 665}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729926f.jpg"} -{"rects": [{"solidity": 0.9962133733051, "top": 875, "right": 3175, "bottom": 2480, "left": 780}, {"solidity": 0.9941292552192634, "top": 2870, "right": 2765, "bottom": 5265, "left": 1165}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708137f.jpg"} -{"rects": [{"solidity": 0.9962134454468271, "top": 440, "right": 3040, "bottom": 1855, "left": 1075}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712137f.jpg"} -{"rects": [{"solidity": 0.9962136393703301, "top": 775, "right": 2065, "bottom": 3180, "left": 455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712195f.jpg"} -{"rects": [{"solidity": 0.9962139574567102, "top": 2160, "right": 2735, "bottom": 3590, "left": 915}, {"solidity": 0.9918989327703422, "top": 640, "right": 2730, "bottom": 2075, "left": 905}, {"solidity": 0.9977881844027853, "top": 655, "right": 5230, "bottom": 2075, "left": 3415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706012f.jpg"} -{"rects": [{"solidity": 0.996214000198421, "top": 2310, "right": 3170, "bottom": 3940, "left": 730}, {"solidity": 0.9961952197010944, "top": 440, "right": 3175, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705414f.jpg"} -{"rects": [{"solidity": 0.9962140789336005, "top": 380, "right": 3215, "bottom": 2020, "left": 770}, {"solidity": 0.9954133165101293, "top": 2250, "right": 3195, "bottom": 3890, "left": 765}, {"solidity": 0.9948276807811073, "top": 4105, "right": 3160, "bottom": 5750, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732121f.jpg"} -{"rects": [{"solidity": 0.9962141890385914, "top": 800, "right": 2050, "bottom": 3230, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720706f.jpg"} -{"rects": [{"solidity": 0.9962142484656424, "top": 615, "right": 2740, "bottom": 2005, "left": 915}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703709f.jpg"} -{"rects": [{"solidity": 0.996214250490595, "top": 455, "right": 4430, "bottom": 3580, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712499f.jpg"} -{"rects": [{"solidity": 0.9962145702197224, "top": 865, "right": 2035, "bottom": 3250, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711979f.jpg"} -{"rects": [{"solidity": 0.996214917866297, "top": 2200, "right": 3165, "bottom": 3820, "left": 740}, {"solidity": 0.9969385367375592, "top": 420, "right": 3165, "bottom": 2025, "left": 750}, {"solidity": 0.9952582590200402, "top": 4020, "right": 3160, "bottom": 5625, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733764f.jpg"} -{"rects": [{"solidity": 0.9962151439110607, "top": 2220, "right": 3160, "bottom": 3855, "left": 740}, {"solidity": 0.9944244557593391, "top": 415, "right": 3160, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713655f.jpg"} -{"rects": [{"solidity": 0.9962151541753892, "top": 1020, "right": 4300, "bottom": 2660, "left": 1890}, {"solidity": 0.9951336862084463, "top": 630, "right": 6000, "bottom": 3045, "left": 4380}, {"solidity": 0.9948620744496123, "top": 620, "right": 1805, "bottom": 3040, "left": 165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714058f.jpg"} -{"rects": [{"solidity": 0.996215195907902, "top": 420, "right": 3040, "bottom": 2045, "left": 630}, {"solidity": 0.9999837393614772, "top": 2295, "right": 3035, "bottom": 3905, "left": 635}, {"solidity": 0.9922502484172889, "top": 4180, "right": 2805, "bottom": 5745, "left": 885}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720247f.jpg"} -{"rects": [{"solidity": 0.9962152092275557, "top": 730, "right": 2050, "bottom": 3125, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711821f.jpg"} -{"rects": [{"solidity": 0.996215243206889, "top": 415, "right": 3025, "bottom": 2010, "left": 625}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729653f.jpg"} -{"rects": [{"solidity": 0.9962153518123668, "top": 755, "right": 2040, "bottom": 3135, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723709f.jpg"} -{"rects": [{"solidity": 0.996215436898203, "top": 425, "right": 3215, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702576f.jpg"} -{"rects": [{"solidity": 0.9962154584214893, "top": 425, "right": 3095, "bottom": 2050, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729682f.jpg"} -{"rects": [{"solidity": 0.9962155755597993, "top": 800, "right": 3895, "bottom": 3240, "left": 2235}, {"solidity": 0.9956143316685826, "top": 840, "right": 5740, "bottom": 3265, "left": 4100}, {"solidity": 0.9973557575462986, "top": 780, "right": 2040, "bottom": 3190, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717920f.jpg"} -{"rects": [{"solidity": 0.9962157332141929, "top": 400, "right": 3090, "bottom": 1995, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715159f.jpg"} -{"rects": [{"solidity": 0.996215987453011, "top": 2375, "right": 4785, "bottom": 3615, "left": 3145}, {"solidity": 0.9967518270972578, "top": 605, "right": 2975, "bottom": 2240, "left": 1740}, {"solidity": 0.9954662686641729, "top": 2360, "right": 2885, "bottom": 3605, "left": 1250}, {"solidity": 0.9952031778946449, "top": 595, "right": 1655, "bottom": 2230, "left": 420}, {"solidity": 0.9950562423643948, "top": 590, "right": 4325, "bottom": 2215, "left": 3085}, {"solidity": 0.9903151819132714, "top": 595, "right": 5670, "bottom": 2245, "left": 4435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713264f.jpg"} -{"rects": [{"solidity": 0.9962160427509035, "top": 680, "right": 4850, "bottom": 3305, "left": 1410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722324f.jpg"} -{"rects": [{"solidity": 0.9962160470891918, "top": 460, "right": 3190, "bottom": 2065, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720850f.jpg"} -{"rects": [{"solidity": 0.9962161631577781, "top": 2755, "right": 3695, "bottom": 5200, "left": 2045}, {"solidity": 0.9958478907024039, "top": 2785, "right": 1810, "bottom": 5210, "left": 175}, {"solidity": 0.9959279741918494, "top": 300, "right": 2870, "bottom": 2695, "left": 1270}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727617f.jpg"} -{"rects": [{"solidity": 0.9962161717528996, "top": 470, "right": 3565, "bottom": 2290, "left": 870}], "shape": {"h": 6895, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/703422f.jpg"} -{"rects": [{"solidity": 0.9962165538097429, "top": 415, "right": 3150, "bottom": 2015, "left": 745}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/729001f.jpg"} -{"rects": [{"solidity": 0.9962166266387286, "top": 755, "right": 2030, "bottom": 3170, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717553f.jpg"} -{"rects": [{"solidity": 0.9962166415317029, "top": 840, "right": 2005, "bottom": 3240, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709810f.jpg"} -{"rects": [{"solidity": 0.9962168160256452, "top": 310, "right": 5085, "bottom": 3670, "left": 1030}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713829f.jpg"} -{"rects": [{"solidity": 0.9962170608761622, "top": 1175, "right": 3610, "bottom": 5255, "left": 345}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/730893f.jpg"} -{"rects": [{"solidity": 0.9962171234525335, "top": 2175, "right": 3170, "bottom": 3785, "left": 760}, {"solidity": 0.9960039862435517, "top": 365, "right": 3185, "bottom": 1985, "left": 770}, {"solidity": 0.9962787351623558, "top": 4000, "right": 3135, "bottom": 5610, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724839f.jpg"} -{"rects": [{"solidity": 0.9962171373174157, "top": 625, "right": 2545, "bottom": 2020, "left": 730}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702914f.jpg"} -{"rects": [{"solidity": 0.996217379233759, "top": 820, "right": 2055, "bottom": 3260, "left": 400}, {"solidity": 0.9949397834227305, "top": 1025, "right": 3950, "bottom": 3070, "left": 2295}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723779f.jpg"} -{"rects": [{"solidity": 0.996217530341221, "top": 810, "right": 5650, "bottom": 3245, "left": 4010}, {"solidity": 0.9967147600906096, "top": 810, "right": 2030, "bottom": 3230, "left": 410}, {"solidity": 0.9958726814038683, "top": 800, "right": 3835, "bottom": 3230, "left": 2220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723727f.jpg"} -{"rects": [{"solidity": 0.9962175632207291, "top": 695, "right": 2060, "bottom": 3125, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702539f.jpg"} -{"rects": [{"solidity": 0.9962178541398949, "top": 785, "right": 5705, "bottom": 3225, "left": 4060}, {"solidity": 0.997471744911527, "top": 785, "right": 3840, "bottom": 3210, "left": 2215}, {"solidity": 0.996829278603972, "top": 795, "right": 2050, "bottom": 3210, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731487f.jpg"} -{"rects": [{"solidity": 0.9962178761920155, "top": 780, "right": 2060, "bottom": 3205, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704894f.jpg"} -{"rects": [{"solidity": 0.9962179158292108, "top": 3210, "right": 3360, "bottom": 5160, "left": 595}, {"solidity": 0.9923221769729559, "top": 690, "right": 3330, "bottom": 2585, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711751f.jpg"} -{"rects": [{"solidity": 0.9962181431989716, "top": 410, "right": 3210, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724990f.jpg"} -{"rects": [{"solidity": 0.9962181548113475, "top": 2205, "right": 3145, "bottom": 3835, "left": 765}, {"solidity": 0.9980708592020995, "top": 330, "right": 3150, "bottom": 1955, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707071f.jpg"} -{"rects": [{"solidity": 0.9962182034309379, "top": 635, "right": 2830, "bottom": 2075, "left": 1005}, {"solidity": 0.9954036100114071, "top": 635, "right": 5060, "bottom": 2085, "left": 3230}, {"solidity": 0.995373331944837, "top": 2270, "right": 2840, "bottom": 3690, "left": 1030}, {"solidity": 0.9958231727001375, "top": 2290, "right": 5055, "bottom": 3700, "left": 3240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725468f.jpg"} -{"rects": [{"solidity": 0.9962182621239006, "top": 4105, "right": 3255, "bottom": 5745, "left": 825}, {"solidity": 0.9976835197594474, "top": 2235, "right": 3200, "bottom": 3850, "left": 785}, {"solidity": 0.9968119162896526, "top": 405, "right": 3200, "bottom": 1995, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724099f.jpg"} -{"rects": [{"solidity": 0.9962183682935628, "top": 735, "right": 2015, "bottom": 3160, "left": 380}, {"solidity": 0.9954823253627342, "top": 750, "right": 3795, "bottom": 3175, "left": 2170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703657f.jpg"} -{"rects": [{"solidity": 0.9962183707567972, "top": 600, "right": 3265, "bottom": 2425, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723630f.jpg"} -{"rects": [{"solidity": 0.9962185333534733, "top": 670, "right": 2755, "bottom": 2010, "left": 945}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706022f.jpg"} -{"rects": [{"solidity": 0.9962185625335306, "top": 415, "right": 3225, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719677f.jpg"} -{"rects": [{"solidity": 0.9962186755694888, "top": 795, "right": 2215, "bottom": 3525, "left": 400}], "shape": {"h": 4415, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/708364f.jpg"} -{"rects": [{"solidity": 0.9962189447725105, "top": 3340, "right": 3190, "bottom": 5270, "left": 470}, {"solidity": 0.9970307560133276, "top": 750, "right": 3215, "bottom": 2655, "left": 495}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724446f.jpg"} -{"rects": [{"solidity": 0.9962191820790041, "top": 2445, "right": 2525, "bottom": 3940, "left": 430}, {"solidity": 0.9980906396560709, "top": 715, "right": 2545, "bottom": 2195, "left": 455}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716228f.jpg"} -{"rects": [{"solidity": 0.9962194532797702, "top": 430, "right": 3180, "bottom": 2040, "left": 760}, {"solidity": 0.9968877176812685, "top": 4080, "right": 3175, "bottom": 5685, "left": 755}, {"solidity": 0.9969766543156555, "top": 2255, "right": 3170, "bottom": 3870, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719524f.jpg"} -{"rects": [{"solidity": 0.9962196562434861, "top": 715, "right": 3330, "bottom": 2580, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733549f.jpg"} -{"rects": [{"solidity": 0.9962197869334454, "top": 810, "right": 2055, "bottom": 3255, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729526f.jpg"} -{"rects": [{"solidity": 0.9962198338445148, "top": 555, "right": 5240, "bottom": 2075, "left": 3280}, {"solidity": 0.9969344198680636, "top": 2035, "right": 2810, "bottom": 3535, "left": 855}, {"solidity": 0.996006980131118, "top": 2110, "right": 5245, "bottom": 3620, "left": 3285}, {"solidity": 0.9953310866381818, "top": 595, "right": 2730, "bottom": 1995, "left": 895}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731433f.jpg"} -{"rects": [{"solidity": 0.9962198995054506, "top": 805, "right": 2045, "bottom": 3200, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707210f.jpg"} -{"rects": [{"solidity": 0.9962201066158205, "top": 480, "right": 3205, "bottom": 2055, "left": 815}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721405f.jpg"} -{"rects": [{"solidity": 0.9962205740083844, "top": 765, "right": 1980, "bottom": 3185, "left": 365}, {"solidity": 0.9967113134697098, "top": 765, "right": 3830, "bottom": 3190, "left": 2220}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722253f.jpg"} -{"rects": [{"solidity": 0.9962206141186758, "top": 585, "right": 4675, "bottom": 3185, "left": 1210}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723618f.jpg"} -{"rects": [{"solidity": 0.99622065637172, "top": 785, "right": 3910, "bottom": 3425, "left": 2175}, {"solidity": 0.997083549994671, "top": 920, "right": 5700, "bottom": 3335, "left": 4085}, {"solidity": 0.9982026320003399, "top": 790, "right": 2040, "bottom": 3195, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718337f.jpg"} -{"rects": [{"solidity": 0.9962207578730194, "top": 640, "right": 4955, "bottom": 2075, "left": 3130}, {"solidity": 0.9944721419371537, "top": 2375, "right": 4990, "bottom": 3500, "left": 3140}, {"solidity": 0.9969161171504676, "top": 2400, "right": 2785, "bottom": 3520, "left": 960}, {"solidity": 0.9919670656163222, "top": 810, "right": 2805, "bottom": 1895, "left": 990}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728265f.jpg"} -{"rects": [{"solidity": 0.9962210424068234, "top": 770, "right": 2070, "bottom": 3160, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710114f.jpg"} -{"rects": [{"solidity": 0.9962211268966851, "top": 410, "right": 2670, "bottom": 2830, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700562f.jpg"} -{"rects": [{"solidity": 0.9962211803658421, "top": 790, "right": 1910, "bottom": 3195, "left": 310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709777f.jpg"} -{"rects": [{"solidity": 0.9962212790738715, "top": 635, "right": 3265, "bottom": 2675, "left": 420}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729704f.jpg"} -{"rects": [{"solidity": 0.996221305617893, "top": 585, "right": 3580, "bottom": 2430, "left": 830}], "shape": {"h": 4410, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/706581f.jpg"} -{"rects": [{"solidity": 0.9962213752890974, "top": 555, "right": 2480, "bottom": 2085, "left": 1465}, {"solidity": 0.9946577113537863, "top": 550, "right": 1345, "bottom": 2080, "left": 325}, {"solidity": 0.9957519810473, "top": 540, "right": 3585, "bottom": 2060, "left": 2565}], "shape": {"h": 2575, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733150f.jpg"} -{"rects": [{"solidity": 0.9962214289025917, "top": 670, "right": 2920, "bottom": 2470, "left": 1705}, {"solidity": 0.9954014692014855, "top": 655, "right": 1550, "bottom": 2455, "left": 340}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716481f.jpg"} -{"rects": [{"solidity": 0.9962214903145178, "top": 410, "right": 3200, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704109f.jpg"} -{"rects": [{"solidity": 0.9962214992157828, "top": 475, "right": 3025, "bottom": 2100, "left": 605}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707176f.jpg"} -{"rects": [{"solidity": 0.9962215317553499, "top": 2205, "right": 3200, "bottom": 3825, "left": 780}, {"solidity": 0.9968137453919483, "top": 415, "right": 3210, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710049f.jpg"} -{"rects": [{"solidity": 0.9962218489125747, "top": 2245, "right": 3070, "bottom": 3865, "left": 640}, {"solidity": 0.9979808128605692, "top": 4090, "right": 3055, "bottom": 5695, "left": 635}, {"solidity": 0.9949153367858824, "top": 400, "right": 3075, "bottom": 2015, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729385f.jpg"} -{"rects": [{"solidity": 0.9962218593374286, "top": 4180, "right": 3175, "bottom": 5770, "left": 780}, {"solidity": 0.9920993303051866, "top": 2335, "right": 3180, "bottom": 3940, "left": 805}, {"solidity": 0.9918632142132723, "top": 465, "right": 3180, "bottom": 2070, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709641f.jpg"} -{"rects": [{"solidity": 0.9962219877126925, "top": 420, "right": 3225, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727597f.jpg"} -{"rects": [{"solidity": 0.9962220488299355, "top": 795, "right": 2035, "bottom": 3185, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714220f.jpg"} -{"rects": [{"solidity": 0.9962221333986616, "top": 855, "right": 5725, "bottom": 3270, "left": 4100}, {"solidity": 0.998126480371727, "top": 865, "right": 3860, "bottom": 3270, "left": 2245}, {"solidity": 0.9986265029726632, "top": 865, "right": 2020, "bottom": 3270, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713671f.jpg"} -{"rects": [{"solidity": 0.9962221768429651, "top": 600, "right": 3315, "bottom": 2470, "left": 605}, {"solidity": 0.9975006423000077, "top": 3135, "right": 3260, "bottom": 5035, "left": 600}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711086f.jpg"} -{"rects": [{"solidity": 0.996222229756237, "top": 645, "right": 2760, "bottom": 2070, "left": 930}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727359f.jpg"} -{"rects": [{"solidity": 0.996222268012913, "top": 745, "right": 3975, "bottom": 3145, "left": 2355}, {"solidity": 0.996557506411521, "top": 755, "right": 2090, "bottom": 3150, "left": 490}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709691f.jpg"} -{"rects": [{"solidity": 0.9962222736050909, "top": 375, "right": 3215, "bottom": 1980, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719911f.jpg"} -{"rects": [{"solidity": 0.9962223332219661, "top": 770, "right": 1980, "bottom": 3165, "left": 390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722499f.jpg"} -{"rects": [{"solidity": 0.9962224709749637, "top": 2265, "right": 3035, "bottom": 3885, "left": 605}, {"solidity": 0.9968073934047469, "top": 405, "right": 3040, "bottom": 2015, "left": 620}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729756f.jpg"} -{"rects": [{"solidity": 0.9962225252738669, "top": 355, "right": 3120, "bottom": 1985, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701415f.jpg"} -{"rects": [{"solidity": 0.9962225787492256, "top": 835, "right": 2085, "bottom": 3270, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724404f.jpg"} -{"rects": [{"solidity": 0.9962226248432101, "top": 640, "right": 2690, "bottom": 2085, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702852f.jpg"} -{"rects": [{"solidity": 0.9962226545816922, "top": 2295, "right": 2835, "bottom": 3745, "left": 995}, {"solidity": 0.9952260480539714, "top": 4200, "right": 2825, "bottom": 5650, "left": 990}, {"solidity": 0.9961579365915819, "top": 435, "right": 2825, "bottom": 1875, "left": 990}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703559f.jpg"} -{"rects": [{"solidity": 0.9962226573048879, "top": 400, "right": 3195, "bottom": 1970, "left": 815}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729898f.jpg"} -{"rects": [{"solidity": 0.9962226919466387, "top": 820, "right": 3860, "bottom": 3255, "left": 2225}, {"solidity": 0.9961536739926974, "top": 780, "right": 2015, "bottom": 3220, "left": 375}, {"solidity": 0.9945140539382056, "top": 850, "right": 5690, "bottom": 3285, "left": 4055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733783f.jpg"} -{"rects": [{"solidity": 0.9962229124043283, "top": 770, "right": 3890, "bottom": 3195, "left": 2265}, {"solidity": 0.9973049746350554, "top": 785, "right": 2025, "bottom": 3200, "left": 410}, {"solidity": 0.9943265700735554, "top": 770, "right": 5750, "bottom": 3175, "left": 4145}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712952f.jpg"} -{"rects": [{"solidity": 0.9962230923552293, "top": 2255, "right": 3165, "bottom": 3870, "left": 745}, {"solidity": 0.9995778727383721, "top": 430, "right": 3170, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721981f.jpg"} -{"rects": [{"solidity": 0.9962231773836676, "top": 450, "right": 4995, "bottom": 3590, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712835f.jpg"} -{"rects": [{"solidity": 0.9962232670033823, "top": 780, "right": 3895, "bottom": 3200, "left": 2280}, {"solidity": 0.9970736619768966, "top": 790, "right": 5720, "bottom": 3200, "left": 4120}, {"solidity": 0.9965904558916792, "top": 785, "right": 2050, "bottom": 3195, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733872f.jpg"} -{"rects": [{"solidity": 0.9962235861218541, "top": 405, "right": 3340, "bottom": 2345, "left": 560}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725306f.jpg"} -{"rects": [{"solidity": 0.9962235969749642, "top": 815, "right": 5675, "bottom": 3215, "left": 4060}, {"solidity": 0.9976973727186026, "top": 810, "right": 2020, "bottom": 3215, "left": 415}, {"solidity": 0.9983890693423457, "top": 805, "right": 3835, "bottom": 3205, "left": 2240}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721667f.jpg"} -{"rects": [{"solidity": 0.9962236006080003, "top": 945, "right": 3345, "bottom": 4920, "left": 320}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731286f.jpg"} -{"rects": [{"solidity": 0.9962237348708357, "top": 860, "right": 3965, "bottom": 3295, "left": 2330}, {"solidity": 0.9943738880880959, "top": 845, "right": 2055, "bottom": 3260, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731774f.jpg"} -{"rects": [{"solidity": 0.9962237432145385, "top": 960, "right": 3690, "bottom": 2955, "left": 2315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717908f.jpg"} -{"rects": [{"solidity": 0.9962237501593871, "top": 2370, "right": 3195, "bottom": 3970, "left": 785}, {"solidity": 0.9944008291143641, "top": 485, "right": 3205, "bottom": 2090, "left": 810}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709612f.jpg"} -{"rects": [{"solidity": 0.9962237879751773, "top": 360, "right": 3365, "bottom": 2290, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724700f.jpg"} -{"rects": [{"solidity": 0.9962238116505243, "top": 495, "right": 3165, "bottom": 2090, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723776f.jpg"} -{"rects": [{"solidity": 0.9962238253422561, "top": 2395, "right": 3050, "bottom": 4015, "left": 630}, {"solidity": 0.9959613270387376, "top": 475, "right": 3065, "bottom": 2085, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729038f.jpg"} -{"rects": [{"solidity": 0.9962238642455887, "top": 435, "right": 3175, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702995f.jpg"} -{"rects": [{"solidity": 0.9962239236068197, "top": 2295, "right": 3200, "bottom": 3905, "left": 790}, {"solidity": 0.9962227127790042, "top": 425, "right": 3200, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703117f.jpg"} -{"rects": [{"solidity": 0.9962239439588121, "top": 3100, "right": 3255, "bottom": 4990, "left": 580}, {"solidity": 0.9959107944439739, "top": 645, "right": 3285, "bottom": 2455, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714934f.jpg"} -{"rects": [{"solidity": 0.9962241733456845, "top": 875, "right": 3905, "bottom": 3260, "left": 2325}, {"solidity": 0.9951909725749971, "top": 865, "right": 2115, "bottom": 3260, "left": 545}, {"solidity": 0.9964613685010012, "top": 860, "right": 5665, "bottom": 3215, "left": 4105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730243f.jpg"} -{"rects": [{"solidity": 0.9962241952036729, "top": 910, "right": 2070, "bottom": 3350, "left": 435}, {"solidity": 0.9965876442546908, "top": 925, "right": 3935, "bottom": 3350, "left": 2310}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729202f.jpg"} -{"rects": [{"solidity": 0.9962241973933926, "top": 665, "right": 3260, "bottom": 2705, "left": 420}, {"solidity": 0.9962636081217009, "top": 3290, "right": 3240, "bottom": 5295, "left": 420}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729707f.jpg"} -{"rects": [{"solidity": 0.996224263043008, "top": 735, "right": 2710, "bottom": 2160, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726835f.jpg"} -{"rects": [{"solidity": 0.996224319573412, "top": 470, "right": 4085, "bottom": 6260, "left": 200}], "shape": {"h": 6900, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711537f.jpg"} -{"rects": [{"solidity": 0.996224519506116, "top": 380, "right": 3185, "bottom": 2010, "left": 760}, {"solidity": 0.9994229527864534, "top": 2245, "right": 3180, "bottom": 3845, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725286f.jpg"} -{"rects": [{"solidity": 0.996224552503236, "top": 455, "right": 3155, "bottom": 2065, "left": 755}, {"solidity": 0.988426154911465, "top": 2310, "right": 3150, "bottom": 3930, "left": 730}, {"solidity": 0.9952514023736155, "top": 4175, "right": 3120, "bottom": 5745, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731542f.jpg"} -{"rects": [{"solidity": 0.9962245635945978, "top": 2160, "right": 3145, "bottom": 3800, "left": 710}, {"solidity": 0.9965337013679899, "top": 320, "right": 3150, "bottom": 1960, "left": 725}, {"solidity": 0.9951170090317699, "top": 4010, "right": 3115, "bottom": 5645, "left": 690}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719083f.jpg"} -{"rects": [{"solidity": 0.9962245795497219, "top": 530, "right": 3390, "bottom": 2385, "left": 645}], "shape": {"h": 4410, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711388f.jpg"} -{"rects": [{"solidity": 0.9962246083071558, "top": 775, "right": 2030, "bottom": 3195, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725092f.jpg"} -{"rects": [{"solidity": 0.9962246758610963, "top": 445, "right": 3490, "bottom": 2295, "left": 750}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708303f.jpg"} -{"rects": [{"solidity": 0.9962247542667123, "top": 775, "right": 3845, "bottom": 3180, "left": 2230}, {"solidity": 0.9972670514010873, "top": 780, "right": 2025, "bottom": 3180, "left": 425}, {"solidity": 0.9952373465403613, "top": 775, "right": 5650, "bottom": 3185, "left": 4045}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730420f.jpg"} -{"rects": [{"solidity": 0.9962247918178141, "top": 1450, "right": 2820, "bottom": 3875, "left": 1190}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730887f.jpg"} -{"rects": [{"solidity": 0.9962248308601508, "top": 795, "right": 2060, "bottom": 3220, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734513f.jpg"} -{"rects": [{"solidity": 0.996224953386381, "top": 750, "right": 2030, "bottom": 3155, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713842f.jpg"} -{"rects": [{"solidity": 0.9962255801543608, "top": 430, "right": 3195, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702621f.jpg"} -{"rects": [{"solidity": 0.9962255943089638, "top": 370, "right": 2940, "bottom": 1990, "left": 505}, {"solidity": 0.9956724045705595, "top": 3915, "right": 2995, "bottom": 5535, "left": 575}, {"solidity": 0.9946977626906409, "top": 2115, "right": 2980, "bottom": 3735, "left": 565}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726098f.jpg"} -{"rects": [{"solidity": 0.9962256612008421, "top": 1065, "right": 3475, "bottom": 4990, "left": 335}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717174f.jpg"} -{"rects": [{"solidity": 0.9962258342980654, "top": 365, "right": 3140, "bottom": 1945, "left": 750}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714358f.jpg"} -{"rects": [{"solidity": 0.9962258819730363, "top": 775, "right": 2055, "bottom": 3145, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715087f.jpg"} -{"rects": [{"solidity": 0.9962259835315646, "top": 825, "right": 2070, "bottom": 3265, "left": 430}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705043f.jpg"} -{"rects": [{"solidity": 0.99622629317308, "top": 420, "right": 3080, "bottom": 2035, "left": 665}, {"solidity": 0.9964408762920106, "top": 2285, "right": 3090, "bottom": 3900, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728564f.jpg"} -{"rects": [{"solidity": 0.9962265408846962, "top": 1110, "right": 2790, "bottom": 4905, "left": 1300}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712248f.jpg"} -{"rects": [{"solidity": 0.9962267719513925, "top": 655, "right": 2720, "bottom": 2095, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706704f.jpg"} -{"rects": [{"solidity": 0.9962268864766871, "top": 2935, "right": 2880, "bottom": 5360, "left": 1250}, {"solidity": 0.9991422453823134, "top": 810, "right": 3260, "bottom": 2425, "left": 845}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730959f.jpg"} -{"rects": [{"solidity": 0.9962270594906691, "top": 725, "right": 5630, "bottom": 3150, "left": 4010}, {"solidity": 0.9956948887003068, "top": 730, "right": 3820, "bottom": 3140, "left": 2215}, {"solidity": 0.9937593970152782, "top": 745, "right": 2035, "bottom": 3150, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709324f.jpg"} -{"rects": [{"solidity": 0.9962271309333108, "top": 460, "right": 3320, "bottom": 2430, "left": 270}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714623f.jpg"} -{"rects": [{"solidity": 0.9962272033421709, "top": 2225, "right": 3135, "bottom": 3865, "left": 690}, {"solidity": 0.9960064644952759, "top": 4085, "right": 3125, "bottom": 5710, "left": 710}, {"solidity": 0.9973806231188481, "top": 400, "right": 3100, "bottom": 2005, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710056f.jpg"} -{"rects": [{"solidity": 0.996227213426889, "top": 390, "right": 3210, "bottom": 2015, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706454f.jpg"} -{"rects": [{"solidity": 0.9962273150025039, "top": 2225, "right": 2890, "bottom": 3675, "left": 1050}, {"solidity": 0.9947308494225622, "top": 590, "right": 2855, "bottom": 2020, "left": 1060}, {"solidity": 0.9942161876212309, "top": 600, "right": 5025, "bottom": 2005, "left": 3195}, {"solidity": 0.9972190548914193, "top": 2245, "right": 4985, "bottom": 3630, "left": 3210}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727805f.jpg"} -{"rects": [{"solidity": 0.9962273938365047, "top": 410, "right": 3120, "bottom": 2000, "left": 740}, {"solidity": 0.9970383548384898, "top": 2310, "right": 3110, "bottom": 3875, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701016f.jpg"} -{"rects": [{"solidity": 0.99622744385591, "top": 700, "right": 4960, "bottom": 3705, "left": 1165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709946f.jpg"} -{"rects": [{"solidity": 0.9962277777419543, "top": 530, "right": 3150, "bottom": 2155, "left": 735}, {"solidity": 0.994754845321792, "top": 2345, "right": 3150, "bottom": 3965, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710660f.jpg"} -{"rects": [{"solidity": 0.9962278556362177, "top": 780, "right": 2045, "bottom": 3195, "left": 420}, {"solidity": 0.9957942821648448, "top": 800, "right": 5555, "bottom": 3235, "left": 3920}, {"solidity": 0.9963831806485489, "top": 795, "right": 3795, "bottom": 3215, "left": 2180}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733109f.jpg"} -{"rects": [{"solidity": 0.9962278772042742, "top": 445, "right": 3205, "bottom": 2075, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703678f.jpg"} -{"rects": [{"solidity": 0.9962278918947362, "top": 750, "right": 3815, "bottom": 3155, "left": 2215}, {"solidity": 0.996103414770963, "top": 775, "right": 5635, "bottom": 3165, "left": 4040}, {"solidity": 0.9971912468917472, "top": 760, "right": 1980, "bottom": 3135, "left": 400}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731304f.jpg"} -{"rects": [{"solidity": 0.996228141235156, "top": 605, "right": 3385, "bottom": 2425, "left": 660}], "shape": {"h": 4410, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/711628f.jpg"} -{"rects": [{"solidity": 0.996228191187211, "top": 395, "right": 3060, "bottom": 2025, "left": 655}, {"solidity": 0.997305808598663, "top": 2245, "right": 3070, "bottom": 3855, "left": 660}, {"solidity": 0.99807000871925, "top": 4095, "right": 3065, "bottom": 5705, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710072f.jpg"} -{"rects": [{"solidity": 0.9962284345455009, "top": 620, "right": 5850, "bottom": 3055, "left": 4200}, {"solidity": 0.9962260656894454, "top": 605, "right": 2355, "bottom": 3035, "left": 715}, {"solidity": 0.9981456647695556, "top": 605, "right": 4100, "bottom": 3020, "left": 2475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700084f.jpg"} -{"rects": [{"solidity": 0.9962289042263944, "top": 4135, "right": 3180, "bottom": 5750, "left": 755}, {"solidity": 0.9975441631114582, "top": 445, "right": 3175, "bottom": 2060, "left": 760}, {"solidity": 0.9944170038783385, "top": 2295, "right": 3170, "bottom": 3910, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734491f.jpg"} -{"rects": [{"solidity": 0.9962289284944351, "top": 2160, "right": 3130, "bottom": 3800, "left": 715}, {"solidity": 0.995325924251804, "top": 375, "right": 3150, "bottom": 2000, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722799f.jpg"} -{"rects": [{"solidity": 0.9962290321182437, "top": 325, "right": 3515, "bottom": 2155, "left": 805}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706408f.jpg"} -{"rects": [{"solidity": 0.9962290433311776, "top": 665, "right": 2725, "bottom": 2075, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727474f.jpg"} -{"rects": [{"solidity": 0.9962292023013528, "top": 4125, "right": 3105, "bottom": 5740, "left": 685}, {"solidity": 0.9974227725507402, "top": 425, "right": 3095, "bottom": 2035, "left": 685}, {"solidity": 0.996248187766937, "top": 2285, "right": 3095, "bottom": 3890, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734196f.jpg"} -{"rects": [{"solidity": 0.9962292817679558, "top": 850, "right": 3290, "bottom": 4470, "left": 525}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717006f.jpg"} -{"rects": [{"solidity": 0.9962294175728313, "top": 2630, "right": 3190, "bottom": 4275, "left": 760}, {"solidity": 0.9958810802147608, "top": 4315, "right": 3165, "bottom": 5960, "left": 745}, {"solidity": 0.9989089574911816, "top": 170, "right": 2785, "bottom": 2590, "left": 1170}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707936f.jpg"} -{"rects": [{"solidity": 0.9962294588904383, "top": 405, "right": 3190, "bottom": 4210, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713773f.jpg"} -{"rects": [{"solidity": 0.9962294815537136, "top": 770, "right": 2045, "bottom": 3180, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717788f.jpg"} -{"rects": [{"solidity": 0.9962295066104587, "top": 2245, "right": 3190, "bottom": 3865, "left": 775}, {"solidity": 0.9967753574899799, "top": 400, "right": 3195, "bottom": 2005, "left": 770}, {"solidity": 0.9955737401245982, "top": 4100, "right": 3210, "bottom": 5720, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734498f.jpg"} -{"rects": [{"solidity": 0.9962295934146197, "top": 755, "right": 2055, "bottom": 3145, "left": 445}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703348f.jpg"} -{"rects": [{"solidity": 0.9962297488579226, "top": 815, "right": 2020, "bottom": 3220, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713116f.jpg"} -{"rects": [{"solidity": 0.9962297743101011, "top": 1075, "right": 2610, "bottom": 4070, "left": 200}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508197.jpg"} -{"rects": [{"solidity": 0.9962298338138141, "top": 775, "right": 3815, "bottom": 3255, "left": 2160}, {"solidity": 0.9703409512202398, "top": 910, "right": 1830, "bottom": 3075, "left": 415}, {"solidity": 0.9948951085684815, "top": 1095, "right": 5570, "bottom": 2970, "left": 4135}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707774f.jpg"} -{"rects": [{"solidity": 0.9962298727701367, "top": 890, "right": 3875, "bottom": 3330, "left": 2230}, {"solidity": 0.996174621787355, "top": 925, "right": 5715, "bottom": 3355, "left": 4085}, {"solidity": 0.9961132292130337, "top": 895, "right": 2035, "bottom": 3310, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730437f.jpg"} -{"rects": [{"solidity": 0.9962299293513166, "top": 2255, "right": 3075, "bottom": 3890, "left": 655}, {"solidity": 0.9985851488977697, "top": 405, "right": 3085, "bottom": 2025, "left": 675}, {"solidity": 0.9961446140742557, "top": 4105, "right": 3040, "bottom": 5730, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734059f.jpg"} -{"rects": [{"solidity": 0.9962302098780242, "top": 875, "right": 2305, "bottom": 3595, "left": 490}], "shape": {"h": 4410, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711365f.jpg"} -{"rects": [{"solidity": 0.9962304130935854, "top": 425, "right": 3340, "bottom": 2020, "left": 940}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727679f.jpg"} -{"rects": [{"solidity": 0.9962304307786759, "top": 630, "right": 2510, "bottom": 2115, "left": 425}, {"solidity": 0.99533276636305, "top": 2410, "right": 2505, "bottom": 3895, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716121f.jpg"} -{"rects": [{"solidity": 0.9962305541894235, "top": 2295, "right": 3100, "bottom": 3905, "left": 680}, {"solidity": 0.9967622692099937, "top": 4140, "right": 3095, "bottom": 5745, "left": 685}, {"solidity": 0.9961669825507997, "top": 425, "right": 3100, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731563f.jpg"} -{"rects": [{"solidity": 0.9962306346016724, "top": 420, "right": 3185, "bottom": 2060, "left": 780}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723392f.jpg"} -{"rects": [{"solidity": 0.9962306408878648, "top": 770, "right": 3875, "bottom": 3200, "left": 2255}, {"solidity": 0.9957327079376155, "top": 780, "right": 5685, "bottom": 3210, "left": 4070}, {"solidity": 0.9966798198542882, "top": 780, "right": 2035, "bottom": 3195, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731019f.jpg"} -{"rects": [{"solidity": 0.9962307933923501, "top": 465, "right": 2950, "bottom": 2100, "left": 525}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703647f.jpg"} -{"rects": [{"solidity": 0.9962308355088856, "top": 445, "right": 3095, "bottom": 2070, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719713f.jpg"} -{"rects": [{"solidity": 0.9962310485433068, "top": 440, "right": 2925, "bottom": 2065, "left": 535}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701177f.jpg"} -{"rects": [{"solidity": 0.9962311357841561, "top": 2305, "right": 3220, "bottom": 3935, "left": 780}, {"solidity": 0.9980255750233645, "top": 435, "right": 3235, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727598f.jpg"} -{"rects": [{"solidity": 0.996231208680151, "top": 1610, "right": 3860, "bottom": 2820, "left": 2370}, {"solidity": 0.9961051264956665, "top": 1605, "right": 2160, "bottom": 2815, "left": 670}, {"solidity": 0.9954650436296499, "top": 340, "right": 3865, "bottom": 1550, "left": 2375}, {"solidity": 0.9967102250713255, "top": 335, "right": 2160, "bottom": 1540, "left": 670}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716281f.jpg"} -{"rects": [{"solidity": 0.996231371722315, "top": 580, "right": 2015, "bottom": 3010, "left": 385}], "shape": {"h": 3765, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724246f.jpg"} -{"rects": [{"solidity": 0.996231538426643, "top": 420, "right": 3170, "bottom": 2035, "left": 745}, {"solidity": 0.9976705804380738, "top": 2265, "right": 3175, "bottom": 3870, "left": 760}, {"solidity": 0.9953496140507154, "top": 4065, "right": 3195, "bottom": 5670, "left": 795}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730389f.jpg"} -{"rects": [{"solidity": 0.9962320976164625, "top": 750, "right": 3955, "bottom": 3155, "left": 2325}, {"solidity": 0.9971215431654559, "top": 745, "right": 2065, "bottom": 3150, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718591f.jpg"} -{"rects": [{"solidity": 0.9962321782354792, "top": 445, "right": 3185, "bottom": 2060, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703899f.jpg"} -{"rects": [{"solidity": 0.9962322695035462, "top": 400, "right": 3070, "bottom": 2035, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729239f.jpg"} -{"rects": [{"solidity": 0.9962325492445975, "top": 2295, "right": 3165, "bottom": 3925, "left": 730}, {"solidity": 0.9947057580086219, "top": 4150, "right": 3170, "bottom": 5785, "left": 730}, {"solidity": 0.9953477015666038, "top": 415, "right": 3145, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733771f.jpg"} -{"rects": [{"solidity": 0.9962325667965265, "top": 2285, "right": 3055, "bottom": 3905, "left": 625}, {"solidity": 0.9954065509104584, "top": 405, "right": 3065, "bottom": 2025, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734813f.jpg"} -{"rects": [{"solidity": 0.9962329335946584, "top": 435, "right": 3155, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706568f.jpg"} -{"rects": [{"solidity": 0.9962330898489961, "top": 2330, "right": 3105, "bottom": 3930, "left": 695}, {"solidity": 0.9953446073941292, "top": 415, "right": 3115, "bottom": 2025, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728856f.jpg"} -{"rects": [{"solidity": 0.9962330941930482, "top": 800, "right": 2255, "bottom": 3520, "left": 430}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711254f.jpg"} -{"rects": [{"solidity": 0.9962331457906478, "top": 445, "right": 3540, "bottom": 2280, "left": 800}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/703405f.jpg"} -{"rects": [{"solidity": 0.9962331630880858, "top": 405, "right": 3555, "bottom": 2220, "left": 850}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711303f.jpg"} -{"rects": [{"solidity": 0.9962331844300693, "top": 755, "right": 2020, "bottom": 3190, "left": 380}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718716f.jpg"} -{"rects": [{"solidity": 0.9962332945694449, "top": 940, "right": 3380, "bottom": 2985, "left": 330}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710325f.jpg"} -{"rects": [{"solidity": 0.9962336244541484, "top": 4075, "right": 2990, "bottom": 5715, "left": 565}, {"solidity": 0.9961505093024003, "top": 2220, "right": 3020, "bottom": 3855, "left": 595}, {"solidity": 0.9975534223115008, "top": 395, "right": 3030, "bottom": 2020, "left": 620}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730658f.jpg"} -{"rects": [{"solidity": 0.996233712027339, "top": 810, "right": 2085, "bottom": 3215, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720444f.jpg"} -{"rects": [{"solidity": 0.9962337893053829, "top": 805, "right": 2015, "bottom": 3225, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728636f.jpg"} -{"rects": [{"solidity": 0.9962339344800563, "top": 975, "right": 3590, "bottom": 5060, "left": 315}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/733395f.jpg"} -{"rects": [{"solidity": 0.9962339410016362, "top": 615, "right": 2725, "bottom": 2035, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703290f.jpg"} -{"rects": [{"solidity": 0.9962340403862713, "top": 635, "right": 2330, "bottom": 3445, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706270f.jpg"} -{"rects": [{"solidity": 0.9962340873590549, "top": 2265, "right": 3125, "bottom": 3935, "left": 690}, {"solidity": 0.9971783042952479, "top": 390, "right": 3105, "bottom": 2025, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726683f.jpg"} -{"rects": [{"solidity": 0.9962340971706363, "top": 650, "right": 2685, "bottom": 2095, "left": 820}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706825f.jpg"} -{"rects": [{"solidity": 0.9962343360527096, "top": 2115, "right": 2670, "bottom": 3555, "left": 850}, {"solidity": 0.997090852520224, "top": 645, "right": 2645, "bottom": 2050, "left": 900}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731947f.jpg"} -{"rects": [{"solidity": 0.9962343940052814, "top": 730, "right": 3865, "bottom": 3170, "left": 2205}, {"solidity": 0.9956410005152407, "top": 775, "right": 5700, "bottom": 3215, "left": 4050}, {"solidity": 0.9972832719929752, "top": 715, "right": 2005, "bottom": 3145, "left": 365}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731764f.jpg"} -{"rects": [{"solidity": 0.9962344780009198, "top": 405, "right": 3205, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702987f.jpg"} -{"rects": [{"solidity": 0.9962347317085708, "top": 850, "right": 2025, "bottom": 3275, "left": 400}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729863f.jpg"} -{"rects": [{"solidity": 0.9962347838943374, "top": 475, "right": 5780, "bottom": 2095, "left": 3385}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702531f.jpg"} -{"rects": [{"solidity": 0.9962350231916488, "top": 475, "right": 3240, "bottom": 2530, "left": 395}, {"solidity": 0.9958357584546966, "top": 2915, "right": 2985, "bottom": 4585, "left": 545}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723207f.jpg"} -{"rects": [{"solidity": 0.9962350568763844, "top": 665, "right": 3220, "bottom": 2475, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710025f.jpg"} -{"rects": [{"solidity": 0.9962351823349679, "top": 800, "right": 3895, "bottom": 3215, "left": 2270}, {"solidity": 0.9950441265232215, "top": 850, "right": 5730, "bottom": 3270, "left": 4110}, {"solidity": 0.9924950763251392, "top": 805, "right": 2055, "bottom": 3210, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718456f.jpg"} -{"rects": [{"solidity": 0.9962352771989025, "top": 520, "right": 4610, "bottom": 3100, "left": 760}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701973f.jpg"} -{"rects": [{"solidity": 0.9962354451804943, "top": 2245, "right": 3265, "bottom": 3865, "left": 850}, {"solidity": 0.9965121862589872, "top": 4095, "right": 3255, "bottom": 5720, "left": 840}, {"solidity": 0.9974302677050617, "top": 420, "right": 3265, "bottom": 2015, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725844f.jpg"} -{"rects": [{"solidity": 0.9962356582843389, "top": 635, "right": 3155, "bottom": 2255, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709724f.jpg"} -{"rects": [{"solidity": 0.9962356967865149, "top": 805, "right": 2025, "bottom": 3210, "left": 405}, {"solidity": 0.9956527794357566, "top": 2195, "right": 3825, "bottom": 3610, "left": 2025}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719616f.jpg"} -{"rects": [{"solidity": 0.996235736972121, "top": 845, "right": 3830, "bottom": 3290, "left": 2180}, {"solidity": 0.9966841029727402, "top": 900, "right": 5675, "bottom": 3325, "left": 4045}, {"solidity": 0.9954579516932874, "top": 835, "right": 2000, "bottom": 3240, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713551f.jpg"} -{"rects": [{"solidity": 0.9962357596410482, "top": 875, "right": 2070, "bottom": 3285, "left": 445}, {"solidity": 0.9961576307002403, "top": 875, "right": 3955, "bottom": 3300, "left": 2325}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708168f.jpg"} -{"rects": [{"solidity": 0.9962358039017774, "top": 2235, "right": 3200, "bottom": 3860, "left": 770}, {"solidity": 0.9971755333400044, "top": 4065, "right": 3185, "bottom": 5680, "left": 760}, {"solidity": 0.9982728954971918, "top": 435, "right": 3210, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703139f.jpg"} -{"rects": [{"solidity": 0.996235851626263, "top": 360, "right": 3250, "bottom": 1990, "left": 850}, {"solidity": 0.9964177196000501, "top": 2110, "right": 3270, "bottom": 3725, "left": 885}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/710298f.jpg"} -{"rects": [{"solidity": 0.9962359167224605, "top": 410, "right": 3225, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/704942f.jpg"} -{"rects": [{"solidity": 0.9962359639411672, "top": 700, "right": 3925, "bottom": 3145, "left": 2280}, {"solidity": 0.9971994091201851, "top": 755, "right": 5785, "bottom": 3185, "left": 4165}, {"solidity": 0.9979325868748249, "top": 705, "right": 2030, "bottom": 3125, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709456f.jpg"} -{"rects": [{"solidity": 0.9962360615908499, "top": 895, "right": 3185, "bottom": 2800, "left": 405}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703194f.jpg"} -{"rects": [{"solidity": 0.9962361245121305, "top": 4105, "right": 2890, "bottom": 5590, "left": 935}, {"solidity": 0.9979158496768025, "top": 425, "right": 2870, "bottom": 1900, "left": 930}, {"solidity": 0.9983172289188639, "top": 2285, "right": 2895, "bottom": 3725, "left": 920}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731250f.jpg"} -{"rects": [{"solidity": 0.9962362261792231, "top": 980, "right": 3530, "bottom": 5035, "left": 295}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717999f.jpg"} -{"rects": [{"solidity": 0.9962363168061816, "top": 2265, "right": 3105, "bottom": 3885, "left": 675}, {"solidity": 0.9972627119463763, "top": 410, "right": 3095, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728815f.jpg"} -{"rects": [{"solidity": 0.9962363409050318, "top": 850, "right": 2150, "bottom": 3260, "left": 525}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721261f.jpg"} -{"rects": [{"solidity": 0.9962363775702391, "top": 370, "right": 3340, "bottom": 1985, "left": 925}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702334f.jpg"} -{"rects": [{"solidity": 0.9962363876899567, "top": 885, "right": 5830, "bottom": 3325, "left": 4170}, {"solidity": 0.9967493045696041, "top": 875, "right": 3940, "bottom": 3295, "left": 2305}, {"solidity": 0.9960508385913474, "top": 850, "right": 2065, "bottom": 3270, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723425f.jpg"} -{"rects": [{"solidity": 0.9962365353677244, "top": 340, "right": 3820, "bottom": 2765, "left": 730}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509803.jpg"} -{"rects": [{"solidity": 0.9962366757302283, "top": 795, "right": 1995, "bottom": 3180, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713730f.jpg"} -{"rects": [{"solidity": 0.9962367305724953, "top": 920, "right": 5205, "bottom": 3315, "left": 3615}, {"solidity": 0.9961873928015849, "top": 1255, "right": 2995, "bottom": 2850, "left": 610}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721015f.jpg"} -{"rects": [{"solidity": 0.9962367562768976, "top": 1085, "right": 4260, "bottom": 2710, "left": 1850}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720299f.jpg"} -{"rects": [{"solidity": 0.9962368370049745, "top": 810, "right": 2070, "bottom": 3235, "left": 460}], "shape": {"h": 4070, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718198f.jpg"} -{"rects": [{"solidity": 0.9962368954551261, "top": 420, "right": 3195, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704646f.jpg"} -{"rects": [{"solidity": 0.9962369716733807, "top": 870, "right": 5730, "bottom": 3300, "left": 4095}, {"solidity": 0.9961185308848081, "top": 820, "right": 1980, "bottom": 3255, "left": 355}, {"solidity": 0.9969177961117307, "top": 845, "right": 3875, "bottom": 3270, "left": 2250}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728961f.jpg"} -{"rects": [{"solidity": 0.9962370889099357, "top": 880, "right": 2065, "bottom": 3310, "left": 425}, {"solidity": 0.9969718205723324, "top": 905, "right": 3915, "bottom": 3325, "left": 2285}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710284f.jpg"} -{"rects": [{"solidity": 0.9962370895789014, "top": 405, "right": 3140, "bottom": 2005, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728523f.jpg"} -{"rects": [{"solidity": 0.9962371830617976, "top": 465, "right": 3130, "bottom": 1860, "left": 1330}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728059f.jpg"} -{"rects": [{"solidity": 0.9962372411639572, "top": 965, "right": 3505, "bottom": 4965, "left": 285}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719331f.jpg"} -{"rects": [{"solidity": 0.9962373591067102, "top": 455, "right": 3180, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724918f.jpg"} -{"rects": [{"solidity": 0.9962374270458214, "top": 860, "right": 3545, "bottom": 2295, "left": 1415}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1508257.jpg"} -{"rects": [{"solidity": 0.9962374770479657, "top": 805, "right": 5720, "bottom": 3230, "left": 4090}, {"solidity": 0.9965545470953768, "top": 785, "right": 3860, "bottom": 3205, "left": 2235}, {"solidity": 0.9986154210319815, "top": 790, "right": 2020, "bottom": 3200, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721854f.jpg"} -{"rects": [{"solidity": 0.9962375757575758, "top": 595, "right": 2860, "bottom": 2030, "left": 1025}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703912f.jpg"} -{"rects": [{"solidity": 0.9962377202399483, "top": 690, "right": 4640, "bottom": 3345, "left": 1245}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730680f.jpg"} -{"rects": [{"solidity": 0.9962378473832885, "top": 850, "right": 3850, "bottom": 3285, "left": 2220}, {"solidity": 0.9953650583743348, "top": 860, "right": 1975, "bottom": 3275, "left": 360}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713638f.jpg"} -{"rects": [{"solidity": 0.9962380006567558, "top": 805, "right": 3725, "bottom": 3225, "left": 2085}, {"solidity": 0.9978772853548674, "top": 800, "right": 5560, "bottom": 3225, "left": 3935}, {"solidity": 0.9969354200582432, "top": 795, "right": 1890, "bottom": 3195, "left": 270}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733510f.jpg"} -{"rects": [{"solidity": 0.9962381029198257, "top": 4150, "right": 3115, "bottom": 5765, "left": 685}, {"solidity": 0.9954027150491573, "top": 2285, "right": 3120, "bottom": 3900, "left": 700}, {"solidity": 0.9960723159747386, "top": 430, "right": 3115, "bottom": 2040, "left": 690}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733889f.jpg"} -{"rects": [{"solidity": 0.996238115719669, "top": 405, "right": 3095, "bottom": 2040, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719721f.jpg"} -{"rects": [{"solidity": 0.9962384185405447, "top": 770, "right": 4010, "bottom": 3205, "left": 2360}, {"solidity": 0.998850909614711, "top": 785, "right": 2065, "bottom": 3185, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700436f.jpg"} -{"rects": [{"solidity": 0.9962384345036348, "top": 465, "right": 3040, "bottom": 2055, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729088f.jpg"} -{"rects": [{"solidity": 0.9962385212168462, "top": 565, "right": 4875, "bottom": 3560, "left": 1130}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709863f.jpg"} -{"rects": [{"solidity": 0.9962386378941628, "top": 4090, "right": 3090, "bottom": 5690, "left": 685}, {"solidity": 0.9991008871247036, "top": 2245, "right": 3090, "bottom": 3825, "left": 700}, {"solidity": 0.9959820759274375, "top": 385, "right": 3095, "bottom": 1975, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729734f.jpg"} -{"rects": [{"solidity": 0.9962386919649459, "top": 425, "right": 3105, "bottom": 2060, "left": 690}, {"solidity": 0.9962474296352515, "top": 2320, "right": 3085, "bottom": 3940, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710694f.jpg"} -{"rects": [{"solidity": 0.9962391572477102, "top": 375, "right": 3705, "bottom": 2620, "left": 655}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507755.jpg"} -{"rects": [{"solidity": 0.996239242296096, "top": 4050, "right": 3210, "bottom": 5685, "left": 805}, {"solidity": 0.9889467698585442, "top": 2270, "right": 3050, "bottom": 3815, "left": 1090}, {"solidity": 0.9945032449148482, "top": 470, "right": 3035, "bottom": 1980, "left": 1100}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706888f.jpg"} -{"rects": [{"solidity": 0.9962393348726131, "top": 630, "right": 2670, "bottom": 2025, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705510f.jpg"} -{"rects": [{"solidity": 0.9962393843548427, "top": 1040, "right": 3165, "bottom": 2860, "left": 1480}, {"solidity": 0.9367180979181075, "top": 3750, "right": 2125, "bottom": 5475, "left": 440}], "shape": {"h": 6005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465538.jpg"} -{"rects": [{"solidity": 0.9962395353217395, "top": 875, "right": 3515, "bottom": 2940, "left": 670}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718911f.jpg"} -{"rects": [{"solidity": 0.9962398652618385, "top": 130, "right": 3180, "bottom": 1755, "left": 725}], "shape": {"h": 3695, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704889f.jpg"} -{"rects": [{"solidity": 0.9962398744511199, "top": 4075, "right": 3155, "bottom": 5695, "left": 700}, {"solidity": 0.9960037341108469, "top": 410, "right": 3120, "bottom": 2045, "left": 695}, {"solidity": 0.9952836714012258, "top": 2225, "right": 3140, "bottom": 3860, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710763f.jpg"} -{"rects": [{"solidity": 0.9962398823543478, "top": 625, "right": 1525, "bottom": 2410, "left": 340}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716482f.jpg"} -{"rects": [{"solidity": 0.996239960081768, "top": 415, "right": 3225, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725446f.jpg"} -{"rects": [{"solidity": 0.9962400074812887, "top": 800, "right": 2050, "bottom": 3220, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731739f.jpg"} -{"rects": [{"solidity": 0.9962400074907244, "top": 4035, "right": 3135, "bottom": 5895, "left": 805}, {"solidity": 0.9985089210744135, "top": 340, "right": 3115, "bottom": 2160, "left": 800}, {"solidity": 0.9981077534280154, "top": 2200, "right": 3130, "bottom": 4005, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731112f.jpg"} -{"rects": [{"solidity": 0.9962400413343886, "top": 395, "right": 5030, "bottom": 3635, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733589f.jpg"} -{"rects": [{"solidity": 0.9962400526846802, "top": 435, "right": 2965, "bottom": 2055, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703644f.jpg"} -{"rects": [{"solidity": 0.9962402979337789, "top": 4110, "right": 3110, "bottom": 5735, "left": 685}, {"solidity": 0.9966128099133487, "top": 2260, "right": 3130, "bottom": 3885, "left": 715}, {"solidity": 0.9988301851232042, "top": 415, "right": 3125, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713605f.jpg"} -{"rects": [{"solidity": 0.9962403556950438, "top": 455, "right": 3155, "bottom": 2065, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703044f.jpg"} -{"rects": [{"solidity": 0.9962404234968797, "top": 835, "right": 3925, "bottom": 3285, "left": 2275}, {"solidity": 0.9964562303387111, "top": 860, "right": 2080, "bottom": 3300, "left": 435}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704682f.jpg"} -{"rects": [{"solidity": 0.9962404920361198, "top": 445, "right": 3150, "bottom": 2065, "left": 730}, {"solidity": 0.9968546430457161, "top": 2280, "right": 3140, "bottom": 3890, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734219f.jpg"} -{"rects": [{"solidity": 0.9962406015037594, "top": 665, "right": 2730, "bottom": 2010, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728237f.jpg"} -{"rects": [{"solidity": 0.9962406015037594, "top": 700, "right": 2560, "bottom": 2120, "left": 765}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731331f.jpg"} -{"rects": [{"solidity": 0.9962406502378761, "top": 2270, "right": 3185, "bottom": 3890, "left": 770}, {"solidity": 0.99669921875, "top": 445, "right": 3190, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/703072f.jpg"} -{"rects": [{"solidity": 0.9962406720502411, "top": 460, "right": 2680, "bottom": 2925, "left": 1020}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703999f.jpg"} -{"rects": [{"solidity": 0.9962408886908362, "top": 2245, "right": 3150, "bottom": 3885, "left": 720}, {"solidity": 0.9962079514617788, "top": 380, "right": 3165, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729936f.jpg"} -{"rects": [{"solidity": 0.9962414100006286, "top": 770, "right": 2000, "bottom": 3160, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709583f.jpg"} -{"rects": [{"solidity": 0.9962414608341279, "top": 780, "right": 2015, "bottom": 3195, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723787f.jpg"} -{"rects": [{"solidity": 0.9962414720006443, "top": 740, "right": 2050, "bottom": 3120, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713947f.jpg"} -{"rects": [{"solidity": 0.9962414800389484, "top": 430, "right": 2995, "bottom": 1830, "left": 1140}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703830f.jpg"} -{"rects": [{"solidity": 0.9962414826983872, "top": 615, "right": 3270, "bottom": 2630, "left": 195}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721113f.jpg"} -{"rects": [{"solidity": 0.9962414980587433, "top": 620, "right": 5045, "bottom": 2075, "left": 3205}, {"solidity": 0.9982568969893163, "top": 2255, "right": 2855, "bottom": 3685, "left": 1015}, {"solidity": 0.99315629944526, "top": 620, "right": 2875, "bottom": 2050, "left": 1020}, {"solidity": 0.9971913343558282, "top": 2240, "right": 5045, "bottom": 3675, "left": 3205}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732922f.jpg"} -{"rects": [{"solidity": 0.9962415615198759, "top": 365, "right": 3175, "bottom": 1970, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713618f.jpg"} -{"rects": [{"solidity": 0.9962418610531639, "top": 2225, "right": 3205, "bottom": 3880, "left": 760}, {"solidity": 0.9966323104097518, "top": 410, "right": 3195, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705381f.jpg"} -{"rects": [{"solidity": 0.9962424135115727, "top": 795, "right": 2055, "bottom": 3190, "left": 450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732188f.jpg"} -{"rects": [{"solidity": 0.9962425657631623, "top": 1930, "right": 3000, "bottom": 3565, "left": 595}, {"solidity": 0.9941776287294732, "top": 615, "right": 2745, "bottom": 1730, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734078f.jpg"} -{"rects": [{"solidity": 0.9962426265117987, "top": 960, "right": 3110, "bottom": 2990, "left": 275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720442f.jpg"} -{"rects": [{"solidity": 0.9962427452669995, "top": 730, "right": 5655, "bottom": 3170, "left": 3995}, {"solidity": 0.9966831659531123, "top": 700, "right": 3860, "bottom": 3130, "left": 2220}, {"solidity": 0.9968506371180431, "top": 690, "right": 2015, "bottom": 3110, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702997f.jpg"} -{"rects": [{"solidity": 0.9962428348934667, "top": 2095, "right": 3270, "bottom": 3715, "left": 840}, {"solidity": 0.9959492286160132, "top": 3995, "right": 3260, "bottom": 5615, "left": 830}, {"solidity": 0.9957860395568545, "top": 415, "right": 3025, "bottom": 1835, "left": 1190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727459f.jpg"} -{"rects": [{"solidity": 0.9962429570277826, "top": 440, "right": 3345, "bottom": 2370, "left": 565}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704588f.jpg"} -{"rects": [{"solidity": 0.9962431311793952, "top": 1365, "right": 3315, "bottom": 4535, "left": 585}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730064f.jpg"} -{"rects": [{"solidity": 0.9962432155438604, "top": 555, "right": 3140, "bottom": 2160, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707692f.jpg"} -{"rects": [{"solidity": 0.9962433442555806, "top": 345, "right": 3430, "bottom": 1985, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704980f.jpg"} -{"rects": [{"solidity": 0.9962435526360147, "top": 2125, "right": 2690, "bottom": 3555, "left": 855}, {"solidity": 0.9951821216078943, "top": 625, "right": 5230, "bottom": 2045, "left": 3385}, {"solidity": 0.9970824817837153, "top": 630, "right": 2690, "bottom": 2045, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723286f.jpg"} -{"rects": [{"solidity": 0.9962437247660877, "top": 835, "right": 2255, "bottom": 3560, "left": 420}, {"solidity": 0.9973519719303947, "top": 790, "right": 4405, "bottom": 3505, "left": 2580}], "shape": {"h": 4430, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711232f.jpg"} -{"rects": [{"solidity": 0.9962439899027158, "top": 4235, "right": 3050, "bottom": 5855, "left": 615}, {"solidity": 0.9973471731751637, "top": 285, "right": 2675, "bottom": 2195, "left": 1135}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730534f.jpg"} -{"rects": [{"solidity": 0.9962440249534149, "top": 535, "right": 3165, "bottom": 2155, "left": 750}, {"solidity": 0.994724777430993, "top": 2405, "right": 3140, "bottom": 4025, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709663f.jpg"} -{"rects": [{"solidity": 0.9962440505960168, "top": 775, "right": 1985, "bottom": 3175, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703847f.jpg"} -{"rects": [{"solidity": 0.9962441679374978, "top": 880, "right": 3845, "bottom": 3300, "left": 2230}, {"solidity": 0.9939489855939061, "top": 905, "right": 2020, "bottom": 3320, "left": 395}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732849f.jpg"} -{"rects": [{"solidity": 0.9962441939833853, "top": 430, "right": 3105, "bottom": 2010, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728574f.jpg"} -{"rects": [{"solidity": 0.9962443073965148, "top": 590, "right": 2485, "bottom": 2080, "left": 395}, {"solidity": 0.9986133015427537, "top": 2505, "right": 2475, "bottom": 3965, "left": 390}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716059f.jpg"} -{"rects": [{"solidity": 0.996244398466381, "top": 700, "right": 2070, "bottom": 3105, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711104f.jpg"} -{"rects": [{"solidity": 0.9962444306064424, "top": 545, "right": 2555, "bottom": 1980, "left": 735}, {"solidity": 0.9982800958858724, "top": 565, "right": 5190, "bottom": 1985, "left": 3370}, {"solidity": 0.9962948517940717, "top": 2025, "right": 2565, "bottom": 3420, "left": 745}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705726f.jpg"} -{"rects": [{"solidity": 0.9962445266143878, "top": 410, "right": 3160, "bottom": 2045, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719464f.jpg"} -{"rects": [{"solidity": 0.9962445819938263, "top": 585, "right": 3265, "bottom": 2215, "left": 840}], "shape": {"h": 3910, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713836f.jpg"} -{"rects": [{"solidity": 0.9962445952083062, "top": 490, "right": 5085, "bottom": 3675, "left": 1105}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731753f.jpg"} -{"rects": [{"solidity": 0.9962446594662375, "top": 2235, "right": 3180, "bottom": 3855, "left": 750}, {"solidity": 0.9992622600304889, "top": 405, "right": 3175, "bottom": 2000, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734392f.jpg"} -{"rects": [{"solidity": 0.9962447671021162, "top": 200, "right": 3190, "bottom": 1845, "left": 765}, {"solidity": 0.9958747511729276, "top": 1955, "right": 3185, "bottom": 3625, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714949f.jpg"} -{"rects": [{"solidity": 0.9962447698412447, "top": 870, "right": 2070, "bottom": 3310, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700905f.jpg"} -{"rects": [{"solidity": 0.9962448257379579, "top": 890, "right": 1970, "bottom": 3305, "left": 355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724088f.jpg"} -{"rects": [{"solidity": 0.996244860008905, "top": 755, "right": 3895, "bottom": 3155, "left": 2290}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717891f.jpg"} -{"rects": [{"solidity": 0.9962449634694799, "top": 630, "right": 3120, "bottom": 2215, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710144f.jpg"} -{"rects": [{"solidity": 0.9962450427371481, "top": 495, "right": 5090, "bottom": 3690, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717592f.jpg"} -{"rects": [{"solidity": 0.9962451605372209, "top": 890, "right": 3780, "bottom": 3305, "left": 2155}, {"solidity": 0.9964992146092477, "top": 870, "right": 1970, "bottom": 3275, "left": 360}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718828f.jpg"} -{"rects": [{"solidity": 0.9962451694830582, "top": 320, "right": 3130, "bottom": 1945, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723069f.jpg"} -{"rects": [{"solidity": 0.996245445804253, "top": 755, "right": 5715, "bottom": 3155, "left": 4110}, {"solidity": 0.9978053701182606, "top": 730, "right": 2025, "bottom": 3130, "left": 425}, {"solidity": 0.9964687641660043, "top": 735, "right": 3870, "bottom": 3135, "left": 2270}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718393f.jpg"} -{"rects": [{"solidity": 0.9962456030369519, "top": 635, "right": 2395, "bottom": 3475, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707431f.jpg"} -{"rects": [{"solidity": 0.9962456465843671, "top": 340, "right": 3420, "bottom": 2300, "left": 625}, {"solidity": 0.9976893994710283, "top": 2460, "right": 3250, "bottom": 4070, "left": 840}, {"solidity": 0.9957470975491141, "top": 4210, "right": 3250, "bottom": 5815, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726250f.jpg"} -{"rects": [{"solidity": 0.9962456813985566, "top": 425, "right": 5160, "bottom": 3470, "left": 1330}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700647f.jpg"} -{"rects": [{"solidity": 0.9962458291667088, "top": 385, "right": 3045, "bottom": 1970, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729164f.jpg"} -{"rects": [{"solidity": 0.9962458390841926, "top": 760, "right": 3910, "bottom": 3180, "left": 2300}, {"solidity": 0.9971254444214217, "top": 755, "right": 2045, "bottom": 3165, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731837f.jpg"} -{"rects": [{"solidity": 0.9962459208647767, "top": 2215, "right": 3035, "bottom": 3840, "left": 595}, {"solidity": 0.9943673217436813, "top": 410, "right": 3015, "bottom": 1995, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734143f.jpg"} -{"rects": [{"solidity": 0.9962459338830472, "top": 2270, "right": 3190, "bottom": 3915, "left": 750}, {"solidity": 0.9962462893804462, "top": 430, "right": 3180, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734544f.jpg"} -{"rects": [{"solidity": 0.9962460477257188, "top": 430, "right": 5095, "bottom": 3735, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710209f.jpg"} -{"rects": [{"solidity": 0.9962467405055121, "top": 2245, "right": 3090, "bottom": 3865, "left": 675}, {"solidity": 0.9951383926677826, "top": 415, "right": 3085, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729705f.jpg"} -{"rects": [{"solidity": 0.9962467791336477, "top": 375, "right": 3175, "bottom": 1995, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729413f.jpg"} -{"rects": [{"solidity": 0.996246792787371, "top": 2235, "right": 3220, "bottom": 3850, "left": 800}, {"solidity": 0.9971712694292963, "top": 425, "right": 3225, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723153f.jpg"} -{"rects": [{"solidity": 0.9962468303131113, "top": 430, "right": 3270, "bottom": 2055, "left": 865}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713921f.jpg"} -{"rects": [{"solidity": 0.9962469658912563, "top": 390, "right": 3215, "bottom": 2020, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716921f.jpg"} -{"rects": [{"solidity": 0.9962469869737351, "top": 770, "right": 2670, "bottom": 1885, "left": 855}, {"solidity": 0.9959432558197951, "top": 2265, "right": 2675, "bottom": 3380, "left": 870}, {"solidity": 0.9959975834466093, "top": 770, "right": 5285, "bottom": 1885, "left": 3480}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725782f.jpg"} -{"rects": [{"solidity": 0.9962472066719235, "top": 540, "right": 3105, "bottom": 2150, "left": 705}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710958f.jpg"} -{"rects": [{"solidity": 0.9962473851993932, "top": 470, "right": 3110, "bottom": 2075, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723750f.jpg"} -{"rects": [{"solidity": 0.9962474003074419, "top": 2110, "right": 3180, "bottom": 3730, "left": 770}, {"solidity": 0.9963369723124953, "top": 320, "right": 3180, "bottom": 1930, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730967f.jpg"} -{"rects": [{"solidity": 0.9962474567161888, "top": 370, "right": 3195, "bottom": 2005, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727201f.jpg"} -{"rects": [{"solidity": 0.9962474751826005, "top": 2265, "right": 3110, "bottom": 3910, "left": 675}, {"solidity": 0.9965082928045891, "top": 420, "right": 3145, "bottom": 2055, "left": 715}, {"solidity": 0.996006930388458, "top": 4110, "right": 3080, "bottom": 5755, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726676f.jpg"} -{"rects": [{"solidity": 0.9962475506205095, "top": 425, "right": 3160, "bottom": 2035, "left": 750}, {"solidity": 0.9949732914662007, "top": 4070, "right": 3160, "bottom": 5670, "left": 775}, {"solidity": 0.9966280638109856, "top": 2255, "right": 3165, "bottom": 3845, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734070f.jpg"} -{"rects": [{"solidity": 0.9962476846907449, "top": 2230, "right": 3710, "bottom": 4660, "left": 2060}, {"solidity": 0.995297750415611, "top": 2225, "right": 1910, "bottom": 4660, "left": 265}, {"solidity": 0.9954729120590468, "top": 425, "right": 3160, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732376f.jpg"} -{"rects": [{"solidity": 0.9962476979742173, "top": 520, "right": 3165, "bottom": 2125, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710563f.jpg"} -{"rects": [{"solidity": 0.9962478022998045, "top": 810, "right": 3380, "bottom": 2820, "left": 505}, {"solidity": 0.9953029187587891, "top": 3250, "right": 3360, "bottom": 5255, "left": 480}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725615f.jpg"} -{"rects": [{"solidity": 0.996247939254642, "top": 3185, "right": 3230, "bottom": 5105, "left": 490}, {"solidity": 0.9920094951946226, "top": 660, "right": 3245, "bottom": 2585, "left": 505}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724374f.jpg"} -{"rects": [{"solidity": 0.9962483463105448, "top": 2050, "right": 3195, "bottom": 3660, "left": 805}, {"solidity": 0.9949589770734774, "top": 435, "right": 3120, "bottom": 1805, "left": 870}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718396f.jpg"} -{"rects": [{"solidity": 0.9962485376064768, "top": 895, "right": 3920, "bottom": 3325, "left": 2295}, {"solidity": 0.9977739432816555, "top": 905, "right": 2035, "bottom": 3295, "left": 435}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733546f.jpg"} -{"rects": [{"solidity": 0.9962487679307936, "top": 3430, "right": 3280, "bottom": 5075, "left": 840}, {"solidity": 0.9965664578673108, "top": 970, "right": 3225, "bottom": 2615, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730763f.jpg"} -{"rects": [{"solidity": 0.9962490428759276, "top": 750, "right": 3880, "bottom": 3170, "left": 2260}, {"solidity": 0.9955822138053395, "top": 760, "right": 2025, "bottom": 3185, "left": 405}, {"solidity": 0.9968170637082528, "top": 755, "right": 5730, "bottom": 3155, "left": 4135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724813f.jpg"} -{"rects": [{"solidity": 0.996249146801633, "top": 865, "right": 3850, "bottom": 3285, "left": 2235}, {"solidity": 0.9968326565367582, "top": 865, "right": 2010, "bottom": 3285, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720374f.jpg"} -{"rects": [{"solidity": 0.9962492852320048, "top": 345, "right": 3215, "bottom": 1960, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725882f.jpg"} -{"rects": [{"solidity": 0.9962494063982995, "top": 785, "right": 2035, "bottom": 3205, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706218f.jpg"} -{"rects": [{"solidity": 0.9962494622671295, "top": 300, "right": 5175, "bottom": 3555, "left": 1090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725196f.jpg"} -{"rects": [{"solidity": 0.9962495344150821, "top": 1080, "right": 3570, "bottom": 5125, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712992f.jpg"} -{"rects": [{"solidity": 0.9962496639872358, "top": 1025, "right": 1920, "bottom": 2970, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701055f.jpg"} -{"rects": [{"solidity": 0.996249792010649, "top": 845, "right": 2035, "bottom": 3260, "left": 395}, {"solidity": 0.9989022556875067, "top": 825, "right": 3875, "bottom": 3235, "left": 2255}, {"solidity": 0.9954648890488802, "top": 810, "right": 5735, "bottom": 3230, "left": 4100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719422f.jpg"} -{"rects": [{"solidity": 0.996249874075061, "top": 855, "right": 1975, "bottom": 3260, "left": 350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700753f.jpg"} -{"rects": [{"solidity": 0.9962499079289948, "top": 230, "right": 3335, "bottom": 1875, "left": 895}, {"solidity": 0.9960915114324901, "top": 2050, "right": 3355, "bottom": 3675, "left": 925}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705188f.jpg"} -{"rects": [{"solidity": 0.996249951674635, "top": 470, "right": 3310, "bottom": 2085, "left": 885}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726406f.jpg"} -{"rects": [{"solidity": 0.9962503466012724, "top": 435, "right": 3575, "bottom": 2260, "left": 840}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/703412f.jpg"} -{"rects": [{"solidity": 0.996250384575941, "top": 2295, "right": 3190, "bottom": 3930, "left": 750}, {"solidity": 0.9965029893800461, "top": 445, "right": 3190, "bottom": 2060, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700119f.jpg"} -{"rects": [{"solidity": 0.9962503953387524, "top": 995, "right": 2665, "bottom": 3405, "left": 1055}, {"solidity": 0.9971413877627352, "top": 1000, "right": 4965, "bottom": 3390, "left": 3385}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716999f.jpg"} -{"rects": [{"solidity": 0.9962505668861821, "top": 850, "right": 3895, "bottom": 3280, "left": 2255}, {"solidity": 0.9973347684580098, "top": 835, "right": 2035, "bottom": 3255, "left": 405}, {"solidity": 0.9964231673159267, "top": 885, "right": 5760, "bottom": 3290, "left": 4115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726672f.jpg"} -{"rects": [{"solidity": 0.996250605522364, "top": 430, "right": 5685, "bottom": 2060, "left": 3275}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707338f.jpg"} -{"rects": [{"solidity": 0.9962508932271358, "top": 2250, "right": 3170, "bottom": 3855, "left": 765}, {"solidity": 0.994809660360616, "top": 4040, "right": 3170, "bottom": 5650, "left": 765}, {"solidity": 0.9942171953397397, "top": 440, "right": 3175, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725852f.jpg"} -{"rects": [{"solidity": 0.9962510511821385, "top": 405, "right": 3165, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723190f.jpg"} -{"rects": [{"solidity": 0.9962512654809151, "top": 2230, "right": 3175, "bottom": 3850, "left": 760}, {"solidity": 0.9964423179641901, "top": 4050, "right": 3160, "bottom": 5670, "left": 740}, {"solidity": 0.9980846094460026, "top": 425, "right": 3170, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704123f.jpg"} -{"rects": [{"solidity": 0.9962514436561624, "top": 2215, "right": 3140, "bottom": 3815, "left": 750}, {"solidity": 0.9951450168159568, "top": 390, "right": 3145, "bottom": 1980, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724641f.jpg"} -{"rects": [{"solidity": 0.9962514712655443, "top": 375, "right": 3060, "bottom": 2025, "left": 635}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702572f.jpg"} -{"rects": [{"solidity": 0.9962514722920257, "top": 830, "right": 2040, "bottom": 3265, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722337f.jpg"} -{"rects": [{"solidity": 0.9962515349318167, "top": 775, "right": 3775, "bottom": 3195, "left": 2160}, {"solidity": 0.9959454756761371, "top": 770, "right": 1910, "bottom": 3185, "left": 315}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719186f.jpg"} -{"rects": [{"solidity": 0.9962519054693819, "top": 860, "right": 3935, "bottom": 3285, "left": 2305}, {"solidity": 0.9960118438129774, "top": 865, "right": 2050, "bottom": 3280, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730233f.jpg"} -{"rects": [{"solidity": 0.9962519717887546, "top": 435, "right": 3060, "bottom": 2050, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728936f.jpg"} -{"rects": [{"solidity": 0.9962519981912786, "top": 810, "right": 3865, "bottom": 3245, "left": 2225}, {"solidity": 0.9968012679427373, "top": 820, "right": 2000, "bottom": 3235, "left": 370}, {"solidity": 0.9960176621976343, "top": 840, "right": 5735, "bottom": 3275, "left": 4090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719569f.jpg"} -{"rects": [{"solidity": 0.996252046622465, "top": 2265, "right": 3210, "bottom": 3880, "left": 805}, {"solidity": 0.9959562093513072, "top": 440, "right": 3210, "bottom": 2025, "left": 810}, {"solidity": 0.9961002952206176, "top": 4120, "right": 3205, "bottom": 5700, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719975f.jpg"} -{"rects": [{"solidity": 0.9962521483979323, "top": 820, "right": 3970, "bottom": 3230, "left": 2360}, {"solidity": 0.9967871565184221, "top": 825, "right": 2030, "bottom": 3220, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718368f.jpg"} -{"rects": [{"solidity": 0.9962521953498864, "top": 4110, "right": 3090, "bottom": 5735, "left": 660}, {"solidity": 0.9963420461296072, "top": 2265, "right": 3095, "bottom": 3880, "left": 680}, {"solidity": 0.9983750206359431, "top": 420, "right": 3095, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729185f.jpg"} -{"rects": [{"solidity": 0.9962525418805074, "top": 2270, "right": 3180, "bottom": 3890, "left": 765}, {"solidity": 0.9958371276180564, "top": 490, "right": 3185, "bottom": 2100, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719794f.jpg"} -{"rects": [{"solidity": 0.9962525823551078, "top": 4115, "right": 3180, "bottom": 5740, "left": 745}, {"solidity": 0.995970650177426, "top": 2235, "right": 3195, "bottom": 3865, "left": 760}, {"solidity": 0.9986175649808908, "top": 350, "right": 3200, "bottom": 1960, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701043f.jpg"} -{"rects": [{"solidity": 0.9962526296907932, "top": 465, "right": 4885, "bottom": 3685, "left": 875}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722738f.jpg"} -{"rects": [{"solidity": 0.9962527389424289, "top": 1020, "right": 3000, "bottom": 3110, "left": 1740}, {"solidity": 0.9488536155202821, "top": 3460, "right": 2055, "bottom": 5535, "left": 920}, {"solidity": 0.9511028145785382, "top": 3490, "right": 3725, "bottom": 5440, "left": 2595}], "shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465678.jpg"} -{"rects": [{"solidity": 0.9962531367089478, "top": 445, "right": 2975, "bottom": 1855, "left": 1145}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725444f.jpg"} -{"rects": [{"solidity": 0.9962531953662642, "top": 385, "right": 3190, "bottom": 1990, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718370f.jpg"} -{"rects": [{"solidity": 0.9962532087780587, "top": 425, "right": 3370, "bottom": 2325, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704909f.jpg"} -{"rects": [{"solidity": 0.9962537221083568, "top": 3140, "right": 3340, "bottom": 5070, "left": 625}, {"solidity": 0.9975104041823093, "top": 680, "right": 3305, "bottom": 2475, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714719f.jpg"} -{"rects": [{"solidity": 0.9962538935595663, "top": 415, "right": 3190, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706150f.jpg"} -{"rects": [{"solidity": 0.9962540567420436, "top": 425, "right": 3160, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713785f.jpg"} -{"rects": [{"solidity": 0.996254150871079, "top": 900, "right": 2045, "bottom": 3325, "left": 430}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728889f.jpg"} -{"rects": [{"solidity": 0.9962543031504277, "top": 910, "right": 3840, "bottom": 3315, "left": 2225}, {"solidity": 0.9962256091252825, "top": 930, "right": 5690, "bottom": 3325, "left": 4105}, {"solidity": 0.9984715988885574, "top": 910, "right": 1975, "bottom": 3295, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731804f.jpg"} -{"rects": [{"solidity": 0.9962545270946005, "top": 3220, "right": 3300, "bottom": 5115, "left": 550}, {"solidity": 0.9927635889133742, "top": 675, "right": 3265, "bottom": 2480, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713321f.jpg"} -{"rects": [{"solidity": 0.9962547000807134, "top": 750, "right": 2735, "bottom": 2170, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728240f.jpg"} -{"rects": [{"solidity": 0.9962550791079164, "top": 365, "right": 3365, "bottom": 2315, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718532f.jpg"} -{"rects": [{"solidity": 0.9962552909063107, "top": 2100, "right": 3275, "bottom": 3710, "left": 870}, {"solidity": 0.9948787588757322, "top": 415, "right": 3005, "bottom": 1820, "left": 1200}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725183f.jpg"} -{"rects": [{"solidity": 0.9962552945706584, "top": 705, "right": 2050, "bottom": 3120, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710967f.jpg"} -{"rects": [{"solidity": 0.9962554027126671, "top": 430, "right": 3310, "bottom": 2070, "left": 880}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700276f.jpg"} -{"rects": [{"solidity": 0.9962555080166023, "top": 2240, "right": 3185, "bottom": 3870, "left": 750}, {"solidity": 0.9963577394818466, "top": 390, "right": 3210, "bottom": 2005, "left": 775}, {"solidity": 0.9954243142916065, "top": 4105, "right": 3175, "bottom": 5730, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734149f.jpg"} -{"rects": [{"solidity": 0.9962557624728771, "top": 470, "right": 2455, "bottom": 1990, "left": 180}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715804f.jpg"} -{"rects": [{"solidity": 0.9962558656458385, "top": 420, "right": 3100, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728471f.jpg"} -{"rects": [{"solidity": 0.9962558872177099, "top": 550, "right": 4875, "bottom": 3560, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713887f.jpg"} -{"rects": [{"solidity": 0.9962559224937357, "top": 2170, "right": 3165, "bottom": 3810, "left": 740}, {"solidity": 0.9966875362813167, "top": 390, "right": 3165, "bottom": 2000, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712281f.jpg"} -{"rects": [{"solidity": 0.9962559541654176, "top": 405, "right": 3210, "bottom": 2000, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725017f.jpg"} -{"rects": [{"solidity": 0.9962560212104109, "top": 880, "right": 2005, "bottom": 3285, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728583f.jpg"} -{"rects": [{"solidity": 0.9962561083764367, "top": 2205, "right": 3100, "bottom": 3955, "left": 650}, {"solidity": 0.9953423742761456, "top": 375, "right": 3040, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723686f.jpg"} -{"rects": [{"solidity": 0.996256129801248, "top": 575, "right": 5085, "bottom": 3725, "left": 1215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730819f.jpg"} -{"rects": [{"solidity": 0.9962562100780695, "top": 560, "right": 2715, "bottom": 3660, "left": 620}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722557f.jpg"} -{"rects": [{"solidity": 0.9962562534279589, "top": 2085, "right": 2770, "bottom": 3640, "left": 810}, {"solidity": 0.9961329216962246, "top": 715, "right": 2825, "bottom": 2055, "left": 740}, {"solidity": 0.9958935340328517, "top": 690, "right": 5365, "bottom": 2030, "left": 3295}, {"solidity": 0.9986889574887492, "top": 2175, "right": 5385, "bottom": 3485, "left": 3315}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700858f.jpg"} -{"rects": [{"solidity": 0.9962562603093895, "top": 460, "right": 3205, "bottom": 2045, "left": 810}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710559f.jpg"} -{"rects": [{"solidity": 0.9962563391455144, "top": 395, "right": 3145, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700289f.jpg"} -{"rects": [{"solidity": 0.9962565743309794, "top": 790, "right": 2030, "bottom": 3205, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724754f.jpg"} -{"rects": [{"solidity": 0.9962565967833746, "top": 755, "right": 5745, "bottom": 3185, "left": 4115}, {"solidity": 0.9970375713236904, "top": 715, "right": 2035, "bottom": 3130, "left": 410}, {"solidity": 0.9963762397286529, "top": 735, "right": 3890, "bottom": 3160, "left": 2260}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731163f.jpg"} -{"rects": [{"solidity": 0.9962570101354045, "top": 2280, "right": 3080, "bottom": 3905, "left": 635}, {"solidity": 0.9990746144495568, "top": 410, "right": 3070, "bottom": 2025, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734828f.jpg"} -{"rects": [{"solidity": 0.9962571599909014, "top": 395, "right": 3225, "bottom": 2105, "left": 710}, {"solidity": 0.9958089772835281, "top": 2315, "right": 3225, "bottom": 4025, "left": 680}, {"solidity": 0.9954968778568498, "top": 4185, "right": 3125, "bottom": 5835, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730160f.jpg"} -{"rects": [{"solidity": 0.9962571848683331, "top": 4110, "right": 3210, "bottom": 5715, "left": 800}, {"solidity": 0.9956240747624544, "top": 2265, "right": 3190, "bottom": 3875, "left": 775}, {"solidity": 0.9980624212754785, "top": 415, "right": 3175, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720501f.jpg"} -{"rects": [{"solidity": 0.996257249975967, "top": 4125, "right": 3025, "bottom": 5765, "left": 595}, {"solidity": 0.9968607223236451, "top": 385, "right": 3030, "bottom": 2010, "left": 620}, {"solidity": 0.9975505742976198, "top": 2245, "right": 3010, "bottom": 3870, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711988f.jpg"} -{"rects": [{"solidity": 0.9962573267378348, "top": 485, "right": 5095, "bottom": 3685, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718922f.jpg"} -{"rects": [{"solidity": 0.9962574442224496, "top": 845, "right": 2130, "bottom": 3285, "left": 505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704450f.jpg"} -{"rects": [{"solidity": 0.9962575599549228, "top": 2190, "right": 3010, "bottom": 3805, "left": 590}, {"solidity": 0.9957037286075425, "top": 4030, "right": 3005, "bottom": 5650, "left": 580}, {"solidity": 0.9952961894879492, "top": 365, "right": 3020, "bottom": 1980, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729664f.jpg"} -{"rects": [{"solidity": 0.99625765516005, "top": 775, "right": 2015, "bottom": 3205, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708110f.jpg"} -{"rects": [{"solidity": 0.9962577156816962, "top": 805, "right": 2035, "bottom": 3230, "left": 380}, {"solidity": 0.9966872812849099, "top": 820, "right": 3890, "bottom": 3225, "left": 2260}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715329f.jpg"} -{"rects": [{"solidity": 0.9962581132945902, "top": 2200, "right": 3070, "bottom": 3830, "left": 645}, {"solidity": 0.9964797316404841, "top": 360, "right": 3045, "bottom": 1975, "left": 635}, {"solidity": 0.996537169887752, "top": 4080, "right": 3080, "bottom": 5690, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729008f.jpg"} -{"rects": [{"solidity": 0.9962585946885464, "top": 525, "right": 3020, "bottom": 2175, "left": 585}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704001f.jpg"} -{"rects": [{"solidity": 0.9962586455456122, "top": 950, "right": 4410, "bottom": 3690, "left": 2555}, {"solidity": 0.9970091666771741, "top": 950, "right": 2265, "bottom": 3680, "left": 430}], "shape": {"h": 4430, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/711358f.jpg"} -{"rects": [{"solidity": 0.9962586612472196, "top": 4060, "right": 3060, "bottom": 5700, "left": 615}, {"solidity": 0.9968657060814275, "top": 350, "right": 3075, "bottom": 1970, "left": 640}, {"solidity": 0.9968852548413276, "top": 2215, "right": 3060, "bottom": 3835, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729762f.jpg"} -{"rects": [{"solidity": 0.9962586690789321, "top": 750, "right": 3240, "bottom": 2705, "left": 460}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704146f.jpg"} -{"rects": [{"solidity": 0.9962589196319311, "top": 285, "right": 3055, "bottom": 1930, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705784f.jpg"} -{"rects": [{"solidity": 0.9962591799020597, "top": 415, "right": 3245, "bottom": 2055, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720206f.jpg"} -{"rects": [{"solidity": 0.9962592389374818, "top": 410, "right": 3130, "bottom": 2030, "left": 715}, {"solidity": 0.9984614637148364, "top": 4100, "right": 3120, "bottom": 5715, "left": 715}, {"solidity": 0.9918953741289259, "top": 2330, "right": 2815, "bottom": 3810, "left": 965}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709644f.jpg"} -{"rects": [{"solidity": 0.9962594865787195, "top": 805, "right": 2095, "bottom": 3245, "left": 460}, {"solidity": 0.9955733585482429, "top": 795, "right": 4055, "bottom": 3210, "left": 2425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704604f.jpg"} -{"rects": [{"solidity": 0.9962595066885632, "top": 2270, "right": 3240, "bottom": 3905, "left": 805}, {"solidity": 0.998304379922053, "top": 395, "right": 3250, "bottom": 2015, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728179f.jpg"} -{"rects": [{"solidity": 0.9962596998854432, "top": 490, "right": 2240, "bottom": 2590, "left": 745}, {"solidity": 0.9955709064686891, "top": 505, "right": 3970, "bottom": 2585, "left": 2485}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716254f.jpg"} -{"rects": [{"solidity": 0.9962597227794531, "top": 2260, "right": 3055, "bottom": 3880, "left": 640}, {"solidity": 0.9955484162572229, "top": 410, "right": 3070, "bottom": 2015, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734775f.jpg"} -{"rects": [{"solidity": 0.9962597789479928, "top": 820, "right": 2020, "bottom": 3220, "left": 425}, {"solidity": 0.9960839123956698, "top": 835, "right": 3920, "bottom": 3235, "left": 2330}, {"solidity": 0.9968182842597871, "top": 835, "right": 5830, "bottom": 3235, "left": 4245}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731695f.jpg"} -{"rects": [{"solidity": 0.996259902646988, "top": 415, "right": 3190, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732552f.jpg"} -{"rects": [{"solidity": 0.9962600202271138, "top": 985, "right": 3870, "bottom": 3355, "left": 2270}, {"solidity": 0.9959353734566644, "top": 1010, "right": 5685, "bottom": 3375, "left": 4095}, {"solidity": 0.9970859006388338, "top": 1000, "right": 2065, "bottom": 3345, "left": 495}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719737f.jpg"} -{"rects": [{"solidity": 0.9962602457369052, "top": 2270, "right": 3040, "bottom": 3890, "left": 620}, {"solidity": 0.996011471890296, "top": 430, "right": 3040, "bottom": 2045, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729812f.jpg"} -{"rects": [{"solidity": 0.9962603393918401, "top": 2205, "right": 3120, "bottom": 3835, "left": 700}, {"solidity": 0.996205711776179, "top": 4070, "right": 3100, "bottom": 5695, "left": 685}, {"solidity": 0.9962092890376296, "top": 370, "right": 3110, "bottom": 1975, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707621f.jpg"} -{"rects": [{"solidity": 0.9962604355343974, "top": 725, "right": 2415, "bottom": 3160, "left": 765}, {"solidity": 0.9973913098805729, "top": 465, "right": 5170, "bottom": 2105, "left": 2750}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716583f.jpg"} -{"rects": [{"solidity": 0.9962607754353078, "top": 945, "right": 1990, "bottom": 3355, "left": 405}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729358f.jpg"} -{"rects": [{"solidity": 0.9962607985558947, "top": 840, "right": 2060, "bottom": 3230, "left": 455}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713833f.jpg"} -{"rects": [{"solidity": 0.9962608908069376, "top": 840, "right": 2030, "bottom": 3245, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729700f.jpg"} -{"rects": [{"solidity": 0.996260894922723, "top": 435, "right": 3215, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710566f.jpg"} -{"rects": [{"solidity": 0.9962609617423147, "top": 700, "right": 2660, "bottom": 2120, "left": 815}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726542f.jpg"} -{"rects": [{"solidity": 0.9962610613643683, "top": 595, "right": 2495, "bottom": 3660, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716646f.jpg"} -{"rects": [{"solidity": 0.9962612341167246, "top": 780, "right": 2030, "bottom": 3190, "left": 410}, {"solidity": 0.9994098833133911, "top": 780, "right": 3860, "bottom": 3190, "left": 2260}, {"solidity": 0.9365901461275989, "top": 890, "right": 5615, "bottom": 3175, "left": 4130}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721934f.jpg"} -{"rects": [{"solidity": 0.9962612850421518, "top": 2160, "right": 3190, "bottom": 3765, "left": 810}, {"solidity": 0.9944944677093507, "top": 305, "right": 3190, "bottom": 1890, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709706f.jpg"} -{"rects": [{"solidity": 0.9962613719370476, "top": 810, "right": 2015, "bottom": 3205, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715487f.jpg"} -{"rects": [{"solidity": 0.9962614891412079, "top": 880, "right": 5680, "bottom": 3305, "left": 4070}, {"solidity": 0.9976203947687483, "top": 895, "right": 1960, "bottom": 3315, "left": 350}, {"solidity": 0.9953167883589664, "top": 885, "right": 3820, "bottom": 3305, "left": 2200}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728744f.jpg"} -{"rects": [{"solidity": 0.9962614963000045, "top": 730, "right": 3890, "bottom": 3150, "left": 2250}, {"solidity": 0.9973008091092022, "top": 740, "right": 2020, "bottom": 3150, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718809f.jpg"} -{"rects": [{"solidity": 0.9962615378414328, "top": 875, "right": 2140, "bottom": 3250, "left": 550}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710233f.jpg"} -{"rects": [{"solidity": 0.99626166370839, "top": 540, "right": 2050, "bottom": 2930, "left": 455}], "shape": {"h": 3670, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712045f.jpg"} -{"rects": [{"solidity": 0.9962620804524238, "top": 945, "right": 2255, "bottom": 3365, "left": 620}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720403f.jpg"} -{"rects": [{"solidity": 0.9962622503451598, "top": 3950, "right": 3175, "bottom": 5585, "left": 765}, {"solidity": 0.9966323843173678, "top": 2135, "right": 3175, "bottom": 3755, "left": 770}, {"solidity": 0.9985329642923508, "top": 335, "right": 3175, "bottom": 1945, "left": 775}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/706492f.jpg"} -{"rects": [{"solidity": 0.9962624195337078, "top": 2295, "right": 3150, "bottom": 3910, "left": 730}, {"solidity": 0.9947602709482863, "top": 435, "right": 3165, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730371f.jpg"} -{"rects": [{"solidity": 0.9962624504710469, "top": 2295, "right": 3105, "bottom": 3910, "left": 670}, {"solidity": 0.997547994310832, "top": 435, "right": 3115, "bottom": 2045, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729742f.jpg"} -{"rects": [{"solidity": 0.9962625965522534, "top": 2250, "right": 3125, "bottom": 3895, "left": 695}, {"solidity": 0.9967538229704134, "top": 395, "right": 3120, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704863f.jpg"} -{"rects": [{"solidity": 0.9962629993196618, "top": 620, "right": 2695, "bottom": 2045, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707219f.jpg"} -{"rects": [{"solidity": 0.9962630121319117, "top": 770, "right": 1990, "bottom": 3160, "left": 400}, {"solidity": 0.9966147055592726, "top": 830, "right": 5670, "bottom": 3215, "left": 4085}, {"solidity": 0.9974451955948878, "top": 800, "right": 3815, "bottom": 3185, "left": 2230}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724544f.jpg"} -{"rects": [{"solidity": 0.9962630666419782, "top": 365, "right": 3345, "bottom": 2295, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724670f.jpg"} -{"rects": [{"solidity": 0.9962631418759964, "top": 1210, "right": 3960, "bottom": 5755, "left": 295}], "shape": {"h": 6910, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708370f.jpg"} -{"rects": [{"solidity": 0.9962633040259139, "top": 1010, "right": 3310, "bottom": 2215, "left": 1495}], "shape": {"h": 2975, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509731.jpg"} -{"rects": [{"solidity": 0.9962633051419751, "top": 815, "right": 2040, "bottom": 3240, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715468f.jpg"} -{"rects": [{"solidity": 0.9962633618753011, "top": 755, "right": 1975, "bottom": 3175, "left": 360}, {"solidity": 0.9974447413164926, "top": 725, "right": 3800, "bottom": 3140, "left": 2190}, {"solidity": 0.9935783244869009, "top": 765, "right": 5565, "bottom": 3095, "left": 4065}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721752f.jpg"} -{"rects": [{"solidity": 0.9962634374419219, "top": 2270, "right": 3135, "bottom": 3880, "left": 725}, {"solidity": 0.9944074994515552, "top": 365, "right": 3165, "bottom": 2005, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701965f.jpg"} -{"rects": [{"solidity": 0.9962634650461905, "top": 640, "right": 2655, "bottom": 2065, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706193f.jpg"} -{"rects": [{"solidity": 0.996263522680257, "top": 2185, "right": 3330, "bottom": 3815, "left": 910}, {"solidity": 0.9961951771299296, "top": 370, "right": 3345, "bottom": 2005, "left": 925}, {"solidity": 0.9956106244738212, "top": 4050, "right": 3305, "bottom": 5695, "left": 880}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725116f.jpg"} -{"rects": [{"solidity": 0.9962636396545482, "top": 2295, "right": 3175, "bottom": 3905, "left": 750}, {"solidity": 0.9972123562874154, "top": 445, "right": 3170, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734019f.jpg"} -{"rects": [{"solidity": 0.9962638041878441, "top": 425, "right": 3185, "bottom": 2135, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701613f.jpg"} -{"rects": [{"solidity": 0.9962639132839717, "top": 455, "right": 3155, "bottom": 2075, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719535f.jpg"} -{"rects": [{"solidity": 0.9962640932070371, "top": 785, "right": 3165, "bottom": 2695, "left": 475}, {"solidity": 0.9963564396630468, "top": 3385, "right": 3120, "bottom": 5260, "left": 455}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712030f.jpg"} -{"rects": [{"solidity": 0.9962641816794187, "top": 365, "right": 3110, "bottom": 2005, "left": 690}, {"solidity": 0.9951804679082653, "top": 2220, "right": 3115, "bottom": 3865, "left": 680}, {"solidity": 0.995565709438291, "top": 4090, "right": 3080, "bottom": 5735, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721696f.jpg"} -{"rects": [{"solidity": 0.9962642033049671, "top": 465, "right": 3190, "bottom": 2075, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707552f.jpg"} -{"rects": [{"solidity": 0.9962644073945921, "top": 420, "right": 3195, "bottom": 2005, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724224f.jpg"} -{"rects": [{"solidity": 0.9962644467311428, "top": 440, "right": 3200, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710462f.jpg"} -{"rects": [{"solidity": 0.9962645033672428, "top": 510, "right": 5095, "bottom": 3720, "left": 1080}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701780f.jpg"} -{"rects": [{"solidity": 0.996264674493063, "top": 925, "right": 2265, "bottom": 3615, "left": 470}], "shape": {"h": 4410, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711534f.jpg"} -{"rects": [{"solidity": 0.9962649210627648, "top": 2680, "right": 3305, "bottom": 4315, "left": 875}, {"solidity": 0.9980811589155162, "top": 840, "right": 3330, "bottom": 2450, "left": 905}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/713437f.jpg"} -{"rects": [{"solidity": 0.9962649450579224, "top": 475, "right": 5040, "bottom": 3720, "left": 985}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700822f.jpg"} -{"rects": [{"solidity": 0.9962654117399965, "top": 840, "right": 3875, "bottom": 3235, "left": 2270}, {"solidity": 0.9968892786871245, "top": 835, "right": 2035, "bottom": 3235, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734471f.jpg"} -{"rects": [{"solidity": 0.9962656984664771, "top": 2270, "right": 3050, "bottom": 3890, "left": 635}, {"solidity": 0.9955876402130105, "top": 385, "right": 3055, "bottom": 2005, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730471f.jpg"} -{"rects": [{"solidity": 0.9962661224436227, "top": 730, "right": 2105, "bottom": 3130, "left": 505}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711036f.jpg"} -{"rects": [{"solidity": 0.9962661367827735, "top": 515, "right": 5700, "bottom": 2135, "left": 3285}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703646f.jpg"} -{"rects": [{"solidity": 0.9962662879424687, "top": 2555, "right": 3625, "bottom": 4410, "left": 885}, {"solidity": 0.9985493487259333, "top": 455, "right": 3630, "bottom": 2280, "left": 910}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706413f.jpg"} -{"rects": [{"solidity": 0.996266352889455, "top": 2240, "right": 3175, "bottom": 3860, "left": 760}, {"solidity": 0.9956905503634476, "top": 4110, "right": 3190, "bottom": 5715, "left": 765}, {"solidity": 0.9961920756117089, "top": 430, "right": 3190, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733919f.jpg"} -{"rects": [{"solidity": 0.9962664502904903, "top": 510, "right": 3050, "bottom": 3135, "left": 1230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716713f.jpg"} -{"rects": [{"solidity": 0.9962665368070773, "top": 400, "right": 3100, "bottom": 2005, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728710f.jpg"} -{"rects": [{"solidity": 0.9962667676029209, "top": 485, "right": 5010, "bottom": 3705, "left": 945}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723623f.jpg"} -{"rects": [{"solidity": 0.9962668737307371, "top": 765, "right": 1995, "bottom": 3160, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733995f.jpg"} -{"rects": [{"solidity": 0.9962672458091351, "top": 755, "right": 2060, "bottom": 3170, "left": 445}, {"solidity": 0.9961887761085124, "top": 760, "right": 3875, "bottom": 3175, "left": 2265}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723359f.jpg"} -{"rects": [{"solidity": 0.9962673579457871, "top": 755, "right": 2005, "bottom": 3145, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713107f.jpg"} -{"rects": [{"solidity": 0.9962673938170927, "top": 2215, "right": 3110, "bottom": 3860, "left": 690}, {"solidity": 0.9981490140436304, "top": 415, "right": 3110, "bottom": 2035, "left": 700}, {"solidity": 0.9960288120982401, "top": 4065, "right": 3085, "bottom": 5705, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712098f.jpg"} -{"rects": [{"solidity": 0.9962676363775924, "top": 2055, "right": 2740, "bottom": 3490, "left": 910}, {"solidity": 0.9884281389420013, "top": 640, "right": 2715, "bottom": 2045, "left": 905}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704315f.jpg"} -{"rects": [{"solidity": 0.9962676577081953, "top": 785, "right": 3915, "bottom": 3210, "left": 2270}, {"solidity": 0.99671458563713, "top": 795, "right": 2025, "bottom": 3220, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732519f.jpg"} -{"rects": [{"solidity": 0.996267665329774, "top": 325, "right": 3870, "bottom": 2675, "left": 875}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1510021.jpg"} -{"rects": [{"solidity": 0.9962676974930733, "top": 2225, "right": 3340, "bottom": 3860, "left": 890}, {"solidity": 0.996150333820592, "top": 4085, "right": 3310, "bottom": 5700, "left": 885}, {"solidity": 0.9971756993544918, "top": 375, "right": 3350, "bottom": 1985, "left": 930}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734732f.jpg"} -{"rects": [{"solidity": 0.9962677314956446, "top": 870, "right": 5635, "bottom": 3295, "left": 4015}, {"solidity": 0.9961390595734892, "top": 880, "right": 1940, "bottom": 3300, "left": 350}, {"solidity": 0.9956879913693845, "top": 870, "right": 3775, "bottom": 3270, "left": 2185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728702f.jpg"} -{"rects": [{"solidity": 0.996268138750343, "top": 735, "right": 3895, "bottom": 3150, "left": 2280}, {"solidity": 0.997503726392688, "top": 735, "right": 2015, "bottom": 3125, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724384f.jpg"} -{"rects": [{"solidity": 0.9962683243093431, "top": 750, "right": 2020, "bottom": 3145, "left": 420}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730364f.jpg"} -{"rects": [{"solidity": 0.9962683820049348, "top": 1140, "right": 3385, "bottom": 5070, "left": 320}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708539f.jpg"} -{"rects": [{"solidity": 0.996268423630906, "top": 605, "right": 2795, "bottom": 3020, "left": 1195}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708119f.jpg"} -{"rects": [{"solidity": 0.9962684533636815, "top": 780, "right": 2045, "bottom": 3210, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723280f.jpg"} -{"rects": [{"solidity": 0.9962687362526378, "top": 1080, "right": 3405, "bottom": 5050, "left": 265}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717080f.jpg"} -{"rects": [{"solidity": 0.9962688407107283, "top": 380, "right": 3095, "bottom": 1990, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700211f.jpg"} -{"rects": [{"solidity": 0.9962690763317876, "top": 4070, "right": 3080, "bottom": 5660, "left": 675}, {"solidity": 0.9924915956223189, "top": 530, "right": 2980, "bottom": 1945, "left": 1150}, {"solidity": 0.9952041587150128, "top": 2355, "right": 2985, "bottom": 3780, "left": 1190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726990f.jpg"} -{"rects": [{"solidity": 0.9962690951821387, "top": 750, "right": 3880, "bottom": 3155, "left": 2275}, {"solidity": 0.9963599811654071, "top": 760, "right": 2020, "bottom": 3145, "left": 440}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711158f.jpg"} -{"rects": [{"solidity": 0.9962691359494281, "top": 515, "right": 3220, "bottom": 3780, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714534f.jpg"} -{"rects": [{"solidity": 0.9962692392760958, "top": 415, "right": 3195, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710830f.jpg"} -{"rects": [{"solidity": 0.9962693653414706, "top": 410, "right": 3040, "bottom": 2030, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729492f.jpg"} -{"rects": [{"solidity": 0.9962695066835254, "top": 425, "right": 3080, "bottom": 2025, "left": 685}, {"solidity": 0.9974440289676717, "top": 2295, "right": 3080, "bottom": 3860, "left": 700}, {"solidity": 0.994155327392989, "top": 4160, "right": 2950, "bottom": 5650, "left": 1000}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717890f.jpg"} -{"rects": [{"solidity": 0.9962695176044324, "top": 425, "right": 3220, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734029f.jpg"} -{"rects": [{"solidity": 0.9962696940114689, "top": 4035, "right": 3195, "bottom": 5645, "left": 770}, {"solidity": 0.9961785871450389, "top": 2275, "right": 3175, "bottom": 3885, "left": 755}, {"solidity": 0.9961153258556077, "top": 495, "right": 3180, "bottom": 2095, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730899f.jpg"} -{"rects": [{"solidity": 0.9962698056321765, "top": 410, "right": 3095, "bottom": 2035, "left": 675}, {"solidity": 0.9963633912580163, "top": 2290, "right": 3075, "bottom": 3915, "left": 655}, {"solidity": 0.9970572164032206, "top": 4160, "right": 3055, "bottom": 5755, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729937f.jpg"} -{"rects": [{"solidity": 0.9962698772502683, "top": 300, "right": 1860, "bottom": 2115, "left": 645}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715900f.jpg"} -{"rects": [{"solidity": 0.9962698955180158, "top": 420, "right": 3130, "bottom": 2030, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734535f.jpg"} -{"rects": [{"solidity": 0.9962700813533437, "top": 1010, "right": 2730, "bottom": 4025, "left": 310}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715990f.jpg"} -{"rects": [{"solidity": 0.9962701697249773, "top": 870, "right": 3940, "bottom": 3300, "left": 2310}, {"solidity": 0.9961371131057158, "top": 860, "right": 2080, "bottom": 3290, "left": 455}, {"solidity": 0.9967270020704069, "top": 855, "right": 5780, "bottom": 3270, "left": 4170}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713549f.jpg"} -{"rects": [{"solidity": 0.9962701977182387, "top": 2255, "right": 3125, "bottom": 3870, "left": 700}, {"solidity": 0.9966964406812501, "top": 410, "right": 3115, "bottom": 2030, "left": 700}, {"solidity": 0.9950577624019274, "top": 4150, "right": 3135, "bottom": 5775, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728752f.jpg"} -{"rects": [{"solidity": 0.9962702403765771, "top": 790, "right": 2060, "bottom": 3210, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724089f.jpg"} -{"rects": [{"solidity": 0.9962703297599153, "top": 700, "right": 2540, "bottom": 2185, "left": 450}, {"solidity": 0.9954179632133722, "top": 2420, "right": 2535, "bottom": 3910, "left": 445}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716181f.jpg"} -{"rects": [{"solidity": 0.9962703739213806, "top": 815, "right": 4000, "bottom": 3255, "left": 2350}, {"solidity": 0.9946649371981306, "top": 800, "right": 2100, "bottom": 3215, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722999f.jpg"} -{"rects": [{"solidity": 0.9962704353956159, "top": 840, "right": 3975, "bottom": 3220, "left": 2395}, {"solidity": 0.9982672482959027, "top": 845, "right": 2090, "bottom": 3220, "left": 515}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712972f.jpg"} -{"rects": [{"solidity": 0.9962704726477235, "top": 2070, "right": 5310, "bottom": 3495, "left": 3475}, {"solidity": 0.9970971572666364, "top": 625, "right": 2655, "bottom": 2045, "left": 835}, {"solidity": 0.9971732574226876, "top": 2105, "right": 2655, "bottom": 3510, "left": 850}, {"solidity": 0.9959484278801858, "top": 630, "right": 5300, "bottom": 1765, "left": 3470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705213f.jpg"} -{"rects": [{"solidity": 0.9962704931130357, "top": 2265, "right": 3225, "bottom": 3900, "left": 780}, {"solidity": 0.9965948005594946, "top": 420, "right": 3225, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719036f.jpg"} -{"rects": [{"solidity": 0.9962705192172839, "top": 425, "right": 5040, "bottom": 3500, "left": 960}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732083f.jpg"} -{"rects": [{"solidity": 0.9962705315943827, "top": 585, "right": 3325, "bottom": 2645, "left": 255}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/715195f.jpg"} -{"rects": [{"solidity": 0.9962705955865425, "top": 4065, "right": 2960, "bottom": 5670, "left": 570}, {"solidity": 0.9970264546418695, "top": 2200, "right": 2945, "bottom": 3810, "left": 575}, {"solidity": 0.9960808649308759, "top": 320, "right": 2940, "bottom": 1925, "left": 570}], "shape": {"h": 6010, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/734333f.jpg"} -{"rects": [{"solidity": 0.9962706176838122, "top": 920, "right": 2085, "bottom": 2920, "left": 460}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702824f.jpg"} -{"rects": [{"solidity": 0.9962706497272138, "top": 750, "right": 5670, "bottom": 3185, "left": 4025}, {"solidity": 0.9977141212954378, "top": 730, "right": 2030, "bottom": 3150, "left": 400}, {"solidity": 0.9975860701862083, "top": 735, "right": 3845, "bottom": 3155, "left": 2215}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732329f.jpg"} -{"rects": [{"solidity": 0.9962707997961479, "top": 3305, "right": 3315, "bottom": 5350, "left": 230}, {"solidity": 0.9968432419884052, "top": 780, "right": 3300, "bottom": 2810, "left": 280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715161f.jpg"} -{"rects": [{"solidity": 0.9962708212480318, "top": 2195, "right": 3275, "bottom": 3840, "left": 850}, {"solidity": 0.9964477908995173, "top": 440, "right": 3290, "bottom": 2075, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703229f.jpg"} -{"rects": [{"solidity": 0.9962712573180931, "top": 370, "right": 3195, "bottom": 2000, "left": 740}, {"solidity": 0.9957368404333048, "top": 2215, "right": 3180, "bottom": 3860, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706243f.jpg"} -{"rects": [{"solidity": 0.9962712825224309, "top": 470, "right": 3005, "bottom": 1885, "left": 1180}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725476f.jpg"} -{"rects": [{"solidity": 0.9962714056382523, "top": 405, "right": 3165, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729839f.jpg"} -{"rects": [{"solidity": 0.9962716542064551, "top": 490, "right": 3190, "bottom": 2100, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733264f.jpg"} -{"rects": [{"solidity": 0.9962716737040697, "top": 2070, "right": 3170, "bottom": 3695, "left": 740}, {"solidity": 0.9967812927181595, "top": 325, "right": 3190, "bottom": 1940, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731941f.jpg"} -{"rects": [{"solidity": 0.9962717983495009, "top": 450, "right": 3180, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728668f.jpg"} -{"rects": [{"solidity": 0.9962718346751515, "top": 2290, "right": 3105, "bottom": 3920, "left": 680}, {"solidity": 0.9993551238195001, "top": 445, "right": 3100, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733650f.jpg"} -{"rects": [{"solidity": 0.9962719453433091, "top": 410, "right": 2565, "bottom": 2830, "left": 935}, {"solidity": 0.9983113528300236, "top": 425, "right": 4435, "bottom": 2830, "left": 2820}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713013f.jpg"} -{"rects": [{"solidity": 0.9962721860568631, "top": 370, "right": 3100, "bottom": 1975, "left": 690}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729432f.jpg"} -{"rects": [{"solidity": 0.9962722996361054, "top": 740, "right": 2165, "bottom": 3180, "left": 520}, {"solidity": 0.9955923406223958, "top": 765, "right": 3920, "bottom": 3210, "left": 2275}, {"solidity": 0.997278217774449, "top": 815, "right": 5675, "bottom": 3240, "left": 4040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733201f.jpg"} -{"rects": [{"solidity": 0.996272311452182, "top": 860, "right": 3635, "bottom": 3305, "left": 1980}, {"solidity": 0.9965965655959559, "top": 890, "right": 5475, "bottom": 3315, "left": 3860}, {"solidity": 0.9954366932900316, "top": 1130, "right": 1805, "bottom": 2975, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706797f.jpg"} -{"rects": [{"solidity": 0.9962727458076355, "top": 780, "right": 3775, "bottom": 3210, "left": 2140}, {"solidity": 0.9991834183519165, "top": 800, "right": 1890, "bottom": 3175, "left": 315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720513f.jpg"} -{"rects": [{"solidity": 0.9962727486573613, "top": 465, "right": 3150, "bottom": 2055, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701349f.jpg"} -{"rects": [{"solidity": 0.99627284229199, "top": 395, "right": 3040, "bottom": 2000, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728613f.jpg"} -{"rects": [{"solidity": 0.9962729473471857, "top": 485, "right": 5030, "bottom": 3645, "left": 1090}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700075f.jpg"} -{"rects": [{"solidity": 0.9962729923486725, "top": 400, "right": 3225, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700027f.jpg"} -{"rects": [{"solidity": 0.9962730895991415, "top": 440, "right": 3235, "bottom": 2085, "left": 815}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703086f.jpg"} -{"rects": [{"solidity": 0.9962732179100806, "top": 450, "right": 5020, "bottom": 3675, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727004f.jpg"} -{"rects": [{"solidity": 0.9962733229953479, "top": 550, "right": 2555, "bottom": 1965, "left": 770}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705931f.jpg"} -{"rects": [{"solidity": 0.9962734544247943, "top": 800, "right": 5755, "bottom": 3240, "left": 4115}, {"solidity": 0.9966724629527816, "top": 810, "right": 3895, "bottom": 3245, "left": 2265}, {"solidity": 0.9969250874428258, "top": 805, "right": 2060, "bottom": 3235, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734539f.jpg"} -{"rects": [{"solidity": 0.9962735684585566, "top": 1280, "right": 3350, "bottom": 4950, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722175f.jpg"} -{"rects": [{"solidity": 0.996273579001088, "top": 2270, "right": 3070, "bottom": 3910, "left": 650}, {"solidity": 0.9969669690017778, "top": 410, "right": 3080, "bottom": 2030, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710754f.jpg"} -{"rects": [{"solidity": 0.9962737094211198, "top": 4065, "right": 3155, "bottom": 5665, "left": 740}, {"solidity": 0.9955095282198086, "top": 485, "right": 2815, "bottom": 1805, "left": 1110}, {"solidity": 0.9376348818718764, "top": 2790, "right": 3055, "bottom": 3685, "left": 855}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730653f.jpg"} -{"rects": [{"solidity": 0.9962738690143981, "top": 430, "right": 3270, "bottom": 2070, "left": 855}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/703697f.jpg"} -{"rects": [{"solidity": 0.9962739118016868, "top": 780, "right": 3870, "bottom": 3180, "left": 2270}, {"solidity": 0.9988441444357113, "top": 790, "right": 2020, "bottom": 3185, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713283f.jpg"} -{"rects": [{"solidity": 0.9962741927338182, "top": 1055, "right": 3615, "bottom": 5100, "left": 335}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708250f.jpg"} -{"rects": [{"solidity": 0.9962742199646897, "top": 2275, "right": 3115, "bottom": 3920, "left": 685}, {"solidity": 0.9968691789890044, "top": 4135, "right": 3070, "bottom": 5770, "left": 710}, {"solidity": 0.9964295830780683, "top": 435, "right": 3030, "bottom": 2085, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715504f.jpg"} -{"rects": [{"solidity": 0.9962742296042296, "top": 775, "right": 2075, "bottom": 3195, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701506f.jpg"} -{"rects": [{"solidity": 0.9962743163920377, "top": 395, "right": 3135, "bottom": 2025, "left": 720}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714942f.jpg"} -{"rects": [{"solidity": 0.9962745035034032, "top": 630, "right": 3725, "bottom": 2795, "left": 650}, {"solidity": 0.9842276397406556, "top": 3445, "right": 3695, "bottom": 5580, "left": 650}], "shape": {"h": 6855, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711319f.jpg"} -{"rects": [{"solidity": 0.9962745045954418, "top": 2275, "right": 3150, "bottom": 3865, "left": 760}, {"solidity": 0.997293471719301, "top": 4080, "right": 3145, "bottom": 5660, "left": 770}, {"solidity": 0.9953639188719544, "top": 480, "right": 3160, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714076f.jpg"} -{"rects": [{"solidity": 0.9962745427085081, "top": 895, "right": 2280, "bottom": 3605, "left": 475}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708316f.jpg"} -{"rects": [{"solidity": 0.9962745573611448, "top": 375, "right": 3025, "bottom": 2015, "left": 615}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707953f.jpg"} -{"rects": [{"solidity": 0.9962746383504089, "top": 505, "right": 3310, "bottom": 2445, "left": 595}, {"solidity": 0.9964209449185825, "top": 3010, "right": 3290, "bottom": 4955, "left": 575}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715240f.jpg"} -{"rects": [{"solidity": 0.9962747580660555, "top": 2290, "right": 3180, "bottom": 3930, "left": 740}, {"solidity": 0.9968948175465218, "top": 450, "right": 3165, "bottom": 2075, "left": 730}, {"solidity": 0.9969680538755972, "top": 4135, "right": 3185, "bottom": 5760, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719533f.jpg"} -{"rects": [{"solidity": 0.9962748705743878, "top": 780, "right": 3745, "bottom": 3185, "left": 2110}, {"solidity": 0.9974676530978066, "top": 795, "right": 5525, "bottom": 3180, "left": 3900}, {"solidity": 0.9963532827008643, "top": 785, "right": 1970, "bottom": 3175, "left": 350}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733214f.jpg"} -{"rects": [{"solidity": 0.9962748963803054, "top": 385, "right": 3030, "bottom": 2020, "left": 625}, {"solidity": 0.9971719623058782, "top": 2085, "right": 3055, "bottom": 3700, "left": 660}, {"solidity": 0.9962579706535772, "top": 395, "right": 5565, "bottom": 2015, "left": 3160}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702396f.jpg"} -{"rects": [{"solidity": 0.9962750315971318, "top": 805, "right": 3880, "bottom": 3260, "left": 2260}, {"solidity": 0.996081705024542, "top": 835, "right": 2015, "bottom": 3255, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724074f.jpg"} -{"rects": [{"solidity": 0.996275080966385, "top": 900, "right": 3300, "bottom": 2880, "left": 545}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717284f.jpg"} -{"rects": [{"solidity": 0.9962750965794734, "top": 955, "right": 2600, "bottom": 4015, "left": 185}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508409.jpg"} -{"rects": [{"solidity": 0.9962752958839783, "top": 755, "right": 3855, "bottom": 3180, "left": 2225}, {"solidity": 0.996431648385562, "top": 750, "right": 2010, "bottom": 3170, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718568f.jpg"} -{"rects": [{"solidity": 0.9962755031295448, "top": 2250, "right": 3285, "bottom": 3870, "left": 860}, {"solidity": 0.9959911430729406, "top": 395, "right": 3295, "bottom": 2020, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728195f.jpg"} -{"rects": [{"solidity": 0.9962755621356528, "top": 470, "right": 3590, "bottom": 2285, "left": 890}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711634f.jpg"} -{"rects": [{"solidity": 0.9962755753963806, "top": 635, "right": 1945, "bottom": 3055, "left": 310}, {"solidity": 0.9986295569655029, "top": 3700, "right": 3200, "bottom": 5315, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713981f.jpg"} -{"rects": [{"solidity": 0.9962756353947535, "top": 915, "right": 3905, "bottom": 3325, "left": 2285}, {"solidity": 0.9953115079688085, "top": 900, "right": 2260, "bottom": 3300, "left": 645}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708962f.jpg"} -{"rects": [{"solidity": 0.9962756408722085, "top": 620, "right": 2665, "bottom": 2045, "left": 815}, {"solidity": 0.996482785942739, "top": 2230, "right": 2675, "bottom": 3645, "left": 830}, {"solidity": 0.9965487615570113, "top": 2275, "right": 4955, "bottom": 3690, "left": 3125}, {"solidity": 0.9957740081755169, "top": 640, "right": 4925, "bottom": 2070, "left": 3125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727646f.jpg"} -{"rects": [{"solidity": 0.9962757718823263, "top": 780, "right": 4000, "bottom": 3470, "left": 2100}, {"solidity": 0.9961945607848354, "top": 785, "right": 2065, "bottom": 3200, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706870f.jpg"} -{"rects": [{"solidity": 0.9962758327919676, "top": 340, "right": 3070, "bottom": 1965, "left": 650}, {"solidity": 0.9979897778752952, "top": 2200, "right": 3070, "bottom": 3815, "left": 655}, {"solidity": 0.9975236962228285, "top": 4080, "right": 3065, "bottom": 5690, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726607f.jpg"} -{"rects": [{"solidity": 0.9962759166294151, "top": 425, "right": 3180, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/705525f.jpg"} -{"rects": [{"solidity": 0.9962759547187704, "top": 520, "right": 3030, "bottom": 1915, "left": 1200}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725934f.jpg"} -{"rects": [{"solidity": 0.9962759985430677, "top": 385, "right": 5200, "bottom": 3665, "left": 1105}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/719239f.jpg"} -{"rects": [{"solidity": 0.9962760337458177, "top": 495, "right": 5175, "bottom": 3640, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728086f.jpg"} -{"rects": [{"solidity": 0.9962763730069254, "top": 430, "right": 3125, "bottom": 2060, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705673f.jpg"} -{"rects": [{"solidity": 0.9962765603776632, "top": 695, "right": 5725, "bottom": 3140, "left": 4085}, {"solidity": 0.9965278457952164, "top": 950, "right": 3885, "bottom": 2770, "left": 2470}, {"solidity": 0.9963624760689215, "top": 500, "right": 2280, "bottom": 1915, "left": 465}, {"solidity": 0.9952883537389432, "top": 2090, "right": 2290, "bottom": 3505, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725589f.jpg"} -{"rects": [{"solidity": 0.9962767281150099, "top": 915, "right": 5735, "bottom": 3350, "left": 4095}, {"solidity": 0.9996719128446121, "top": 915, "right": 3880, "bottom": 3335, "left": 2265}, {"solidity": 0.9972910466030175, "top": 920, "right": 2025, "bottom": 3335, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730636f.jpg"} -{"rects": [{"solidity": 0.9962769448230602, "top": 2235, "right": 3390, "bottom": 3875, "left": 945}, {"solidity": 0.9966831807876396, "top": 390, "right": 3405, "bottom": 2005, "left": 985}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704878f.jpg"} -{"rects": [{"solidity": 0.9962769504334297, "top": 540, "right": 5135, "bottom": 3790, "left": 1095}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705956f.jpg"} -{"rects": [{"solidity": 0.9962770085234378, "top": 825, "right": 2080, "bottom": 3260, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721678f.jpg"} -{"rects": [{"solidity": 0.9962770175858205, "top": 2250, "right": 3055, "bottom": 3905, "left": 610}, {"solidity": 0.994662952824601, "top": 4120, "right": 3040, "bottom": 5745, "left": 595}, {"solidity": 0.9942697629154422, "top": 365, "right": 3050, "bottom": 1990, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732206f.jpg"} -{"rects": [{"solidity": 0.9962771372049399, "top": 775, "right": 3870, "bottom": 3205, "left": 2240}, {"solidity": 0.9972696422390228, "top": 790, "right": 5715, "bottom": 3215, "left": 4110}, {"solidity": 0.9956372846406562, "top": 775, "right": 1980, "bottom": 3190, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725712f.jpg"} -{"rects": [{"solidity": 0.9962772687572853, "top": 845, "right": 2030, "bottom": 3225, "left": 435}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732424f.jpg"} -{"rects": [{"solidity": 0.9962773724960138, "top": 2225, "right": 3180, "bottom": 3870, "left": 750}, {"solidity": 0.9962964505515277, "top": 375, "right": 3200, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700196f.jpg"} -{"rects": [{"solidity": 0.9962773754167179, "top": 425, "right": 3145, "bottom": 2015, "left": 760}, {"solidity": 0.9955400909927784, "top": 2255, "right": 3155, "bottom": 3845, "left": 765}, {"solidity": 0.9947569670557197, "top": 4080, "right": 3155, "bottom": 5665, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703283f.jpg"} -{"rects": [{"solidity": 0.9962775271277208, "top": 845, "right": 5735, "bottom": 3285, "left": 4095}, {"solidity": 0.9956286855865463, "top": 760, "right": 2020, "bottom": 3195, "left": 390}, {"solidity": 0.9965931092887873, "top": 810, "right": 3870, "bottom": 3235, "left": 2260}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734766f.jpg"} -{"rects": [{"solidity": 0.9962775823058921, "top": 445, "right": 3170, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713995f.jpg"} -{"rects": [{"solidity": 0.9962776006515023, "top": 435, "right": 3150, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720586f.jpg"} -{"rects": [{"solidity": 0.9962777884553783, "top": 2310, "right": 3035, "bottom": 3945, "left": 610}, {"solidity": 0.9991579272153425, "top": 430, "right": 3040, "bottom": 2050, "left": 625}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729884f.jpg"} -{"rects": [{"solidity": 0.996278007439052, "top": 750, "right": 3330, "bottom": 2660, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712476f.jpg"} -{"rects": [{"solidity": 0.9962781760111229, "top": 760, "right": 2020, "bottom": 3160, "left": 415}, {"solidity": 0.9960791326405585, "top": 760, "right": 5705, "bottom": 3160, "left": 4115}, {"solidity": 0.9942162429111688, "top": 755, "right": 3850, "bottom": 3150, "left": 2265}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711736f.jpg"} -{"rects": [{"solidity": 0.996278697156369, "top": 440, "right": 3065, "bottom": 2055, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728611f.jpg"} -{"rects": [{"solidity": 0.996278830213581, "top": 4075, "right": 3130, "bottom": 5695, "left": 700}, {"solidity": 0.996068848278793, "top": 2255, "right": 3160, "bottom": 3890, "left": 735}, {"solidity": 0.9975302336256753, "top": 430, "right": 3145, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/700616f.jpg"} -{"rects": [{"solidity": 0.9962789937928781, "top": 765, "right": 2030, "bottom": 3170, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713976f.jpg"} -{"rects": [{"solidity": 0.9962791917073367, "top": 450, "right": 2975, "bottom": 1850, "left": 1190}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725463f.jpg"} -{"rects": [{"solidity": 0.9962792409472002, "top": 615, "right": 5290, "bottom": 2065, "left": 3345}, {"solidity": 0.9852875391421044, "top": 635, "right": 3090, "bottom": 2015, "left": 1045}, {"solidity": 0.981619534736759, "top": 2215, "right": 3070, "bottom": 3535, "left": 1105}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706519f.jpg"} -{"rects": [{"solidity": 0.9962794171086804, "top": 760, "right": 2020, "bottom": 3150, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724560f.jpg"} -{"rects": [{"solidity": 0.9962795027618915, "top": 815, "right": 5845, "bottom": 3230, "left": 4240}, {"solidity": 0.995759350582387, "top": 815, "right": 2135, "bottom": 3205, "left": 540}, {"solidity": 0.9958124233673477, "top": 825, "right": 3990, "bottom": 3200, "left": 2405}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731597f.jpg"} -{"rects": [{"solidity": 0.9962795616227649, "top": 555, "right": 2715, "bottom": 3810, "left": 255}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507861.jpg"} -{"rects": [{"solidity": 0.9962798217531893, "top": 460, "right": 3015, "bottom": 2025, "left": 1000}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702822f.jpg"} -{"rects": [{"solidity": 0.996279872591439, "top": 560, "right": 4945, "bottom": 3620, "left": 1055}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720656f.jpg"} -{"rects": [{"solidity": 0.9962799145322838, "top": 590, "right": 4980, "bottom": 3620, "left": 1220}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709874f.jpg"} -{"rects": [{"solidity": 0.9962799190575795, "top": 405, "right": 3085, "bottom": 1980, "left": 720}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707686f.jpg"} -{"rects": [{"solidity": 0.9962799569982694, "top": 430, "right": 3200, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708165f.jpg"} -{"rects": [{"solidity": 0.9962800810785145, "top": 485, "right": 3225, "bottom": 2090, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712500f.jpg"} -{"rects": [{"solidity": 0.9962803206819305, "top": 450, "right": 3155, "bottom": 2080, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703693f.jpg"} -{"rects": [{"solidity": 0.9962803777142218, "top": 785, "right": 3885, "bottom": 3220, "left": 2250}, {"solidity": 0.9967082165748704, "top": 775, "right": 2045, "bottom": 3200, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730556f.jpg"} -{"rects": [{"solidity": 0.996280512448126, "top": 340, "right": 3160, "bottom": 1960, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704950f.jpg"} -{"rects": [{"solidity": 0.9962805394455974, "top": 2205, "right": 5290, "bottom": 3615, "left": 3485}, {"solidity": 0.9963608599079803, "top": 760, "right": 5290, "bottom": 2165, "left": 3480}, {"solidity": 0.9961145969455445, "top": 2205, "right": 2665, "bottom": 3600, "left": 850}, {"solidity": 0.9937678071562939, "top": 760, "right": 2675, "bottom": 2160, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726133f.jpg"} -{"rects": [{"solidity": 0.996280732261025, "top": 2190, "right": 3185, "bottom": 3810, "left": 760}, {"solidity": 0.9959445126806513, "top": 3995, "right": 3170, "bottom": 5615, "left": 740}, {"solidity": 0.9974052383813441, "top": 390, "right": 3165, "bottom": 1985, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719177f.jpg"} -{"rects": [{"solidity": 0.9962809930479024, "top": 860, "right": 3935, "bottom": 3295, "left": 2285}, {"solidity": 0.9963072236337688, "top": 885, "right": 5770, "bottom": 3315, "left": 4135}, {"solidity": 0.9976852974360466, "top": 865, "right": 2055, "bottom": 3270, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710415f.jpg"} -{"rects": [{"solidity": 0.9962810754493098, "top": 1370, "right": 3590, "bottom": 5395, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/701209f.jpg"} -{"rects": [{"solidity": 0.996281357161489, "top": 800, "right": 2195, "bottom": 3240, "left": 555}, {"solidity": 0.9977395502088042, "top": 810, "right": 3975, "bottom": 3235, "left": 2345}, {"solidity": 0.9968988084390775, "top": 815, "right": 5785, "bottom": 3245, "left": 4150}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704502f.jpg"} -{"rects": [{"solidity": 0.9962815199287292, "top": 700, "right": 3325, "bottom": 2625, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710591f.jpg"} -{"rects": [{"solidity": 0.9962815273175779, "top": 980, "right": 2505, "bottom": 3675, "left": 705}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708833f.jpg"} -{"rects": [{"solidity": 0.9962815766912346, "top": 785, "right": 3555, "bottom": 3205, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721157f.jpg"} -{"rects": [{"solidity": 0.9962816811036252, "top": 410, "right": 3180, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710932f.jpg"} -{"rects": [{"solidity": 0.9962817407484641, "top": 810, "right": 3885, "bottom": 3235, "left": 2260}, {"solidity": 0.9967866928227493, "top": 810, "right": 2055, "bottom": 3220, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734699f.jpg"} -{"rects": [{"solidity": 0.9962817425106688, "top": 390, "right": 3210, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703102f.jpg"} -{"rects": [{"solidity": 0.996281872578239, "top": 500, "right": 3195, "bottom": 2105, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716536f.jpg"} -{"rects": [{"solidity": 0.9962819149108144, "top": 820, "right": 2075, "bottom": 3235, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708036f.jpg"} -{"rects": [{"solidity": 0.9962819332008338, "top": 485, "right": 3035, "bottom": 1905, "left": 1190}, {"solidity": 0.9971367534047414, "top": 2220, "right": 3000, "bottom": 3640, "left": 1205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727817f.jpg"} -{"rects": [{"solidity": 0.9962821482419928, "top": 395, "right": 5105, "bottom": 3645, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728858f.jpg"} -{"rects": [{"solidity": 0.996282208751007, "top": 450, "right": 3200, "bottom": 2040, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733886f.jpg"} -{"rects": [{"solidity": 0.9962823681775745, "top": 520, "right": 5105, "bottom": 3615, "left": 1230}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720970f.jpg"} -{"rects": [{"solidity": 0.9962824357008248, "top": 350, "right": 5235, "bottom": 3585, "left": 1160}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732217f.jpg"} -{"rects": [{"solidity": 0.9962826472174426, "top": 380, "right": 3185, "bottom": 2005, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720138f.jpg"} -{"rects": [{"solidity": 0.996282761019162, "top": 1570, "right": 1875, "bottom": 3440, "left": 690}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508933.jpg"} -{"rects": [{"solidity": 0.9962829783332023, "top": 2210, "right": 3125, "bottom": 3805, "left": 710}, {"solidity": 0.9970767942946407, "top": 375, "right": 3120, "bottom": 1965, "left": 715}, {"solidity": 0.9959053504742391, "top": 4070, "right": 3105, "bottom": 5685, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728733f.jpg"} -{"rects": [{"solidity": 0.9962831521195075, "top": 785, "right": 3875, "bottom": 3190, "left": 2250}, {"solidity": 0.9968796837902723, "top": 790, "right": 2020, "bottom": 3175, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712556f.jpg"} -{"rects": [{"solidity": 0.9962832258290347, "top": 715, "right": 3890, "bottom": 3160, "left": 2250}, {"solidity": 0.9960552268244576, "top": 750, "right": 5770, "bottom": 3175, "left": 4115}, {"solidity": 0.9987331811844756, "top": 725, "right": 2015, "bottom": 3140, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713556f.jpg"} -{"rects": [{"solidity": 0.9962832895288646, "top": 2225, "right": 3235, "bottom": 3860, "left": 815}, {"solidity": 0.9962630500536638, "top": 4045, "right": 3220, "bottom": 5660, "left": 810}, {"solidity": 0.998069302894415, "top": 435, "right": 3230, "bottom": 2040, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715100f.jpg"} -{"rects": [{"solidity": 0.9962832918990125, "top": 725, "right": 4910, "bottom": 3475, "left": 1215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701516f.jpg"} -{"rects": [{"solidity": 0.9962833745061632, "top": 820, "right": 3950, "bottom": 3270, "left": 2290}, {"solidity": 0.9971771302744776, "top": 835, "right": 2040, "bottom": 3250, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704321f.jpg"} -{"rects": [{"solidity": 0.9962835042095509, "top": 2215, "right": 5010, "bottom": 3615, "left": 3190}, {"solidity": 0.9961194533490805, "top": 2205, "right": 2830, "bottom": 3610, "left": 1020}, {"solidity": 0.9954744844286536, "top": 595, "right": 2820, "bottom": 1985, "left": 990}, {"solidity": 0.9942352398844074, "top": 580, "right": 5010, "bottom": 1985, "left": 3190}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726405f.jpg"} -{"rects": [{"solidity": 0.9962835868789334, "top": 430, "right": 3185, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714883f.jpg"} -{"rects": [{"solidity": 0.99628358752873, "top": 455, "right": 3555, "bottom": 2625, "left": 280}, {"solidity": 0.9363808709903371, "top": 3035, "right": 3655, "bottom": 4455, "left": 220}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724346f.jpg"} -{"rects": [{"solidity": 0.9962837683112736, "top": 425, "right": 3110, "bottom": 2025, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728361f.jpg"} -{"rects": [{"solidity": 0.9962838054859638, "top": 815, "right": 2045, "bottom": 3240, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729846f.jpg"} -{"rects": [{"solidity": 0.9962839413866043, "top": 395, "right": 3195, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/705111f.jpg"} -{"rects": [{"solidity": 0.9962842605003391, "top": 760, "right": 3875, "bottom": 3180, "left": 2245}, {"solidity": 0.9957559545244097, "top": 775, "right": 5685, "bottom": 3190, "left": 4060}, {"solidity": 0.9974035319744826, "top": 750, "right": 2050, "bottom": 3160, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731821f.jpg"} -{"rects": [{"solidity": 0.9962843109667187, "top": 820, "right": 3965, "bottom": 3240, "left": 2310}, {"solidity": 0.9981160403411703, "top": 845, "right": 5810, "bottom": 3255, "left": 4185}, {"solidity": 0.9957131079967024, "top": 805, "right": 2045, "bottom": 3215, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719117f.jpg"} -{"rects": [{"solidity": 0.996284335006666, "top": 2200, "right": 5190, "bottom": 3640, "left": 3370}, {"solidity": 0.9971826229587283, "top": 725, "right": 5195, "bottom": 2160, "left": 3375}, {"solidity": 0.9946646303669802, "top": 725, "right": 2640, "bottom": 2130, "left": 830}, {"solidity": 0.994838437042515, "top": 2185, "right": 2650, "bottom": 3570, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726300f.jpg"} -{"rects": [{"solidity": 0.9962847842267847, "top": 2305, "right": 3205, "bottom": 3940, "left": 775}, {"solidity": 0.9961952930991275, "top": 440, "right": 3200, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719489f.jpg"} -{"rects": [{"solidity": 0.9962848001528103, "top": 750, "right": 3900, "bottom": 3190, "left": 2260}, {"solidity": 0.996667437944288, "top": 770, "right": 5750, "bottom": 3200, "left": 4125}, {"solidity": 0.9972588812889692, "top": 735, "right": 2025, "bottom": 3165, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722784f.jpg"} -{"rects": [{"solidity": 0.9962848277568735, "top": 780, "right": 3925, "bottom": 3220, "left": 2275}, {"solidity": 0.996487690967847, "top": 785, "right": 2050, "bottom": 3215, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733802f.jpg"} -{"rects": [{"solidity": 0.9962848719857246, "top": 800, "right": 2060, "bottom": 3215, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720900f.jpg"} -{"rects": [{"solidity": 0.9962849775570624, "top": 2325, "right": 3200, "bottom": 3960, "left": 760}, {"solidity": 0.9971605401711376, "top": 450, "right": 3195, "bottom": 2075, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733091f.jpg"} -{"rects": [{"solidity": 0.9962850743463038, "top": 385, "right": 3275, "bottom": 2010, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704094f.jpg"} -{"rects": [{"solidity": 0.9962851144560328, "top": 645, "right": 3305, "bottom": 2580, "left": 595}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724739f.jpg"} -{"rects": [{"solidity": 0.9962852011160965, "top": 400, "right": 3260, "bottom": 1990, "left": 870}, {"solidity": 0.9968775819676211, "top": 2250, "right": 3265, "bottom": 3840, "left": 875}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726790f.jpg"} -{"rects": [{"solidity": 0.9962852823085319, "top": 540, "right": 2800, "bottom": 1940, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728175f.jpg"} -{"rects": [{"solidity": 0.9962853880495347, "top": 485, "right": 2995, "bottom": 1900, "left": 1170}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725318f.jpg"} -{"rects": [{"solidity": 0.9962855207307215, "top": 900, "right": 2025, "bottom": 3295, "left": 415}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728830f.jpg"} -{"rects": [{"solidity": 0.9962855499963649, "top": 360, "right": 3160, "bottom": 1960, "left": 760}, {"solidity": 0.9960574962282607, "top": 4015, "right": 3140, "bottom": 5610, "left": 755}, {"solidity": 0.9965581725806668, "top": 2185, "right": 3165, "bottom": 3765, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730830f.jpg"} -{"rects": [{"solidity": 0.9962855733364883, "top": 725, "right": 2555, "bottom": 3540, "left": 545}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728935f.jpg"} -{"rects": [{"solidity": 0.9962857215856105, "top": 430, "right": 3390, "bottom": 2060, "left": 960}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726440f.jpg"} -{"rects": [{"solidity": 0.9962858062439652, "top": 410, "right": 3205, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/705240f.jpg"} -{"rects": [{"solidity": 0.9962858637872942, "top": 545, "right": 3335, "bottom": 2450, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724581f.jpg"} -{"rects": [{"solidity": 0.9962859885767481, "top": 440, "right": 3240, "bottom": 2055, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725046f.jpg"} -{"rects": [{"solidity": 0.9962861461291876, "top": 455, "right": 3120, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714706f.jpg"} -{"rects": [{"solidity": 0.996286185574966, "top": 500, "right": 5035, "bottom": 3765, "left": 1010}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708943f.jpg"} -{"rects": [{"solidity": 0.9962863267839009, "top": 410, "right": 3105, "bottom": 2030, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728308f.jpg"} -{"rects": [{"solidity": 0.9962866382891693, "top": 795, "right": 3860, "bottom": 3225, "left": 2225}, {"solidity": 0.997581788185308, "top": 790, "right": 2040, "bottom": 3205, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720116f.jpg"} -{"rects": [{"solidity": 0.9962867955197724, "top": 435, "right": 3170, "bottom": 1805, "left": 1350}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/727490f.jpg"} -{"rects": [{"solidity": 0.996286844964563, "top": 580, "right": 2685, "bottom": 1995, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703356f.jpg"} -{"rects": [{"solidity": 0.9962869505982135, "top": 2195, "right": 3225, "bottom": 3825, "left": 795}, {"solidity": 0.997880615487218, "top": 395, "right": 3225, "bottom": 2015, "left": 800}, {"solidity": 0.9963482606188737, "top": 4035, "right": 3225, "bottom": 5660, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705855f.jpg"} -{"rects": [{"solidity": 0.9962875743214971, "top": 825, "right": 3210, "bottom": 2740, "left": 495}, {"solidity": 0.9950890954045528, "top": 3385, "right": 3220, "bottom": 5310, "left": 515}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/717773f.jpg"} -{"rects": [{"solidity": 0.9962877179437689, "top": 755, "right": 2045, "bottom": 3175, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718065f.jpg"} -{"rects": [{"solidity": 0.996287951659447, "top": 390, "right": 3030, "bottom": 2010, "left": 600}, {"solidity": 0.9973766541652902, "top": 4040, "right": 3040, "bottom": 5650, "left": 620}, {"solidity": 0.9966686589392618, "top": 2215, "right": 3030, "bottom": 3820, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713935f.jpg"} -{"rects": [{"solidity": 0.9962881735124591, "top": 595, "right": 5325, "bottom": 3420, "left": 3290}, {"solidity": 0.9968659472087203, "top": 595, "right": 2815, "bottom": 3410, "left": 790}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718294f.jpg"} -{"rects": [{"solidity": 0.9962885075369624, "top": 400, "right": 3050, "bottom": 2030, "left": 630}, {"solidity": 0.9963840821432295, "top": 2270, "right": 3030, "bottom": 3890, "left": 630}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709348f.jpg"} -{"rects": [{"solidity": 0.9962886677441848, "top": 630, "right": 3855, "bottom": 3060, "left": 2225}, {"solidity": 0.9515888956943955, "top": 640, "right": 2005, "bottom": 3010, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725002f.jpg"} -{"rects": [{"solidity": 0.9962887050282258, "top": 605, "right": 3400, "bottom": 2635, "left": 335}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709603f.jpg"} -{"rects": [{"solidity": 0.9962889047596799, "top": 425, "right": 3165, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704849f.jpg"} -{"rects": [{"solidity": 0.9962892931914613, "top": 605, "right": 2675, "bottom": 2000, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702832f.jpg"} -{"rects": [{"solidity": 0.9962893584915478, "top": 430, "right": 3170, "bottom": 2055, "left": 755}, {"solidity": 0.9956942141206273, "top": 2375, "right": 3155, "bottom": 3985, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716704f.jpg"} -{"rects": [{"solidity": 0.9962893642951969, "top": 870, "right": 4845, "bottom": 3505, "left": 1335}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701777f.jpg"} -{"rects": [{"solidity": 0.9962894949870384, "top": 755, "right": 3900, "bottom": 3210, "left": 2230}, {"solidity": 0.9964376169850354, "top": 755, "right": 2040, "bottom": 3190, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721147f.jpg"} -{"rects": [{"solidity": 0.9962896549092921, "top": 400, "right": 3220, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/701019f.jpg"} -{"rects": [{"solidity": 0.9962899810147595, "top": 825, "right": 4010, "bottom": 3240, "left": 2390}, {"solidity": 0.996706997065705, "top": 810, "right": 2065, "bottom": 3220, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710993f.jpg"} -{"rects": [{"solidity": 0.9962901790078673, "top": 725, "right": 2700, "bottom": 2080, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731976f.jpg"} -{"rects": [{"solidity": 0.996290283693643, "top": 650, "right": 3940, "bottom": 3070, "left": 2310}, {"solidity": 0.9967098273786146, "top": 640, "right": 2085, "bottom": 3065, "left": 470}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702911f.jpg"} -{"rects": [{"solidity": 0.9962903008228787, "top": 2265, "right": 3210, "bottom": 3895, "left": 780}, {"solidity": 0.9964272954626653, "top": 410, "right": 3195, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713525f.jpg"} -{"rects": [{"solidity": 0.9962903060176628, "top": 2260, "right": 3110, "bottom": 3905, "left": 685}, {"solidity": 0.9964123183534157, "top": 395, "right": 3115, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710366f.jpg"} -{"rects": [{"solidity": 0.9962903926967106, "top": 385, "right": 3175, "bottom": 2010, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715548f.jpg"} -{"rects": [{"solidity": 0.9962904321317181, "top": 465, "right": 3335, "bottom": 2430, "left": 515}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725780f.jpg"} -{"rects": [{"solidity": 0.9962906236538553, "top": 360, "right": 5105, "bottom": 3595, "left": 1035}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708281f.jpg"} -{"rects": [{"solidity": 0.9962906435347076, "top": 770, "right": 3835, "bottom": 3195, "left": 2215}, {"solidity": 0.9967143340803198, "top": 740, "right": 2005, "bottom": 3165, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718673f.jpg"} -{"rects": [{"solidity": 0.9962907579671023, "top": 460, "right": 2935, "bottom": 2090, "left": 530}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700930f.jpg"} -{"rects": [{"solidity": 0.9962908416516664, "top": 280, "right": 3180, "bottom": 1910, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706175f.jpg"} -{"rects": [{"solidity": 0.996290888365288, "top": 1285, "right": 5020, "bottom": 3425, "left": 955}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727907f.jpg"} -{"rects": [{"solidity": 0.9962913821559173, "top": 790, "right": 2125, "bottom": 3210, "left": 495}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702817f.jpg"} -{"rects": [{"solidity": 0.9962913853453838, "top": 475, "right": 2935, "bottom": 1870, "left": 1150}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728080f.jpg"} -{"rects": [{"solidity": 0.9962914901466865, "top": 690, "right": 5735, "bottom": 3125, "left": 4075}, {"solidity": 0.9964775921412312, "top": 670, "right": 3835, "bottom": 3090, "left": 2205}, {"solidity": 0.9956097859006922, "top": 860, "right": 1940, "bottom": 2805, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712032f.jpg"} -{"rects": [{"solidity": 0.9962918363055986, "top": 725, "right": 5710, "bottom": 3165, "left": 4050}, {"solidity": 0.9962586956098132, "top": 710, "right": 2000, "bottom": 3120, "left": 380}, {"solidity": 0.9844430729015393, "top": 730, "right": 3830, "bottom": 3105, "left": 2335}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722493f.jpg"} -{"rects": [{"solidity": 0.9962920276753923, "top": 1030, "right": 4005, "bottom": 3140, "left": 2380}, {"solidity": 0.9998179433543751, "top": 1020, "right": 2050, "bottom": 3115, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723733f.jpg"} -{"rects": [{"solidity": 0.9962921219842864, "top": 690, "right": 3880, "bottom": 3085, "left": 2270}, {"solidity": 0.997084184326834, "top": 690, "right": 2035, "bottom": 3090, "left": 430}, {"solidity": 0.9962890227321988, "top": 695, "right": 5720, "bottom": 3095, "left": 4115}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733351f.jpg"} -{"rects": [{"solidity": 0.9962923935526675, "top": 2425, "right": 3000, "bottom": 3860, "left": 970}, {"solidity": 0.9949625464894973, "top": 735, "right": 3005, "bottom": 2165, "left": 980}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721445f.jpg"} -{"rects": [{"solidity": 0.9962924223162706, "top": 2180, "right": 3235, "bottom": 3800, "left": 810}, {"solidity": 0.9964332046754635, "top": 370, "right": 3225, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726820f.jpg"} -{"rects": [{"solidity": 0.996292570114522, "top": 795, "right": 2080, "bottom": 3200, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711142f.jpg"} -{"rects": [{"solidity": 0.9962925707716626, "top": 2195, "right": 3170, "bottom": 3835, "left": 725}, {"solidity": 0.9959319384473458, "top": 390, "right": 3185, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710045f.jpg"} -{"rects": [{"solidity": 0.996292618126894, "top": 430, "right": 3225, "bottom": 2055, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706579f.jpg"} -{"rects": [{"solidity": 0.9962926710681201, "top": 2230, "right": 3205, "bottom": 3860, "left": 775}, {"solidity": 0.9967651118918971, "top": 380, "right": 3205, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734676f.jpg"} -{"rects": [{"solidity": 0.9962927440475614, "top": 800, "right": 3950, "bottom": 3220, "left": 2335}, {"solidity": 0.9968164990679235, "top": 790, "right": 2095, "bottom": 3195, "left": 485}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734069f.jpg"} -{"rects": [{"solidity": 0.996293073728104, "top": 415, "right": 3055, "bottom": 2015, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728355f.jpg"} -{"rects": [{"solidity": 0.9962932282114343, "top": 575, "right": 3215, "bottom": 2195, "left": 795}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703681f.jpg"} -{"rects": [{"solidity": 0.9962934915629004, "top": 760, "right": 2010, "bottom": 3195, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714184f.jpg"} -{"rects": [{"solidity": 0.9962937202232258, "top": 480, "right": 3190, "bottom": 2085, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709693f.jpg"} -{"rects": [{"solidity": 0.996293928086299, "top": 780, "right": 3850, "bottom": 3215, "left": 2215}, {"solidity": 0.99866327510577, "top": 795, "right": 2030, "bottom": 3200, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705110f.jpg"} -{"rects": [{"solidity": 0.9962940191544531, "top": 635, "right": 3340, "bottom": 2550, "left": 630}, {"solidity": 0.9970969861107144, "top": 3160, "right": 3320, "bottom": 5000, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717321f.jpg"} -{"rects": [{"solidity": 0.9962940298422103, "top": 640, "right": 1870, "bottom": 2455, "left": 645}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716462f.jpg"} -{"rects": [{"solidity": 0.9962940689216944, "top": 765, "right": 3245, "bottom": 2760, "left": 440}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703583f.jpg"} -{"rects": [{"solidity": 0.9962941002075304, "top": 425, "right": 3185, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723230f.jpg"} -{"rects": [{"solidity": 0.9962942901683093, "top": 860, "right": 2330, "bottom": 3270, "left": 745}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712298f.jpg"} -{"rects": [{"solidity": 0.996294304761041, "top": 810, "right": 3805, "bottom": 3220, "left": 2180}, {"solidity": 0.9966633884783039, "top": 775, "right": 1975, "bottom": 3190, "left": 360}, {"solidity": 0.9957771647329668, "top": 855, "right": 5630, "bottom": 3255, "left": 4015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716580f.jpg"} -{"rects": [{"solidity": 0.9962943305495517, "top": 2210, "right": 3095, "bottom": 3850, "left": 660}, {"solidity": 0.9968757713142545, "top": 370, "right": 3070, "bottom": 1980, "left": 665}, {"solidity": 0.9946257463325908, "top": 4085, "right": 3085, "bottom": 5675, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729019f.jpg"} -{"rects": [{"solidity": 0.9962944037657916, "top": 435, "right": 5060, "bottom": 3705, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718552f.jpg"} -{"rects": [{"solidity": 0.9962945325753743, "top": 700, "right": 2660, "bottom": 2110, "left": 855}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727202f.jpg"} -{"rects": [{"solidity": 0.9962945662797681, "top": 805, "right": 3425, "bottom": 2315, "left": 1295}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517071.jpg"} -{"rects": [{"solidity": 0.9962945890362386, "top": 830, "right": 3825, "bottom": 3345, "left": 2130}, {"solidity": 0.9914198903764817, "top": 805, "right": 1950, "bottom": 3185, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718195f.jpg"} -{"rects": [{"solidity": 0.9962947036247887, "top": 385, "right": 3160, "bottom": 2000, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702915f.jpg"} -{"rects": [{"solidity": 0.9962947545036528, "top": 1400, "right": 2800, "bottom": 3840, "left": 1145}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730891f.jpg"} -{"rects": [{"solidity": 0.9962948289250566, "top": 410, "right": 3170, "bottom": 2060, "left": 745}, {"solidity": 0.9980687974699951, "top": 2300, "right": 3165, "bottom": 3915, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710668f.jpg"} -{"rects": [{"solidity": 0.9962949707583312, "top": 2420, "right": 2510, "bottom": 3905, "left": 415}, {"solidity": 0.9966812368463656, "top": 640, "right": 2510, "bottom": 2100, "left": 480}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716097f.jpg"} -{"rects": [{"solidity": 0.9962951966643862, "top": 800, "right": 2280, "bottom": 3505, "left": 475}], "shape": {"h": 4430, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/708896f.jpg"} -{"rects": [{"solidity": 0.9962954185303387, "top": 460, "right": 4990, "bottom": 3660, "left": 1005}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731793f.jpg"} -{"rects": [{"solidity": 0.9962954514055116, "top": 420, "right": 3180, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731450f.jpg"} -{"rects": [{"solidity": 0.9962958739880439, "top": 835, "right": 2040, "bottom": 3240, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716595f.jpg"} -{"rects": [{"solidity": 0.9962959703313445, "top": 720, "right": 4665, "bottom": 3240, "left": 1375}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732527f.jpg"} -{"rects": [{"solidity": 0.9962963945384253, "top": 800, "right": 2385, "bottom": 3180, "left": 775}, {"solidity": 0.9982753971081273, "top": 800, "right": 4090, "bottom": 3170, "left": 2495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710285f.jpg"} -{"rects": [{"solidity": 0.9962964035536507, "top": 875, "right": 5735, "bottom": 3300, "left": 4110}, {"solidity": 0.9959032838448296, "top": 860, "right": 3895, "bottom": 3285, "left": 2280}, {"solidity": 0.9963795922993475, "top": 840, "right": 2030, "bottom": 3260, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734752f.jpg"} -{"rects": [{"solidity": 0.9962964486612652, "top": 1020, "right": 3410, "bottom": 5045, "left": 520}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723881f.jpg"} -{"rects": [{"solidity": 0.9962965271732718, "top": 590, "right": 4910, "bottom": 3570, "left": 1120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709835f.jpg"} -{"rects": [{"solidity": 0.9962965949965321, "top": 405, "right": 3335, "bottom": 2040, "left": 905}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705799f.jpg"} -{"rects": [{"solidity": 0.9962967046508461, "top": 780, "right": 5725, "bottom": 3195, "left": 4110}, {"solidity": 0.997363613312615, "top": 790, "right": 3885, "bottom": 3195, "left": 2270}, {"solidity": 0.9955148857666136, "top": 800, "right": 2035, "bottom": 3185, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713075f.jpg"} -{"rects": [{"solidity": 0.9962967434181548, "top": 635, "right": 3080, "bottom": 2260, "left": 680}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711872f.jpg"} -{"rects": [{"solidity": 0.9962969486152085, "top": 900, "right": 3155, "bottom": 2315, "left": 1130}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509077.jpg"} -{"rects": [{"solidity": 0.99629705354506, "top": 750, "right": 2010, "bottom": 3160, "left": 395}, {"solidity": 0.9972286737271062, "top": 755, "right": 3830, "bottom": 3155, "left": 2230}, {"solidity": 0.9978647780354644, "top": 760, "right": 5685, "bottom": 3160, "left": 4090}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724519f.jpg"} -{"rects": [{"solidity": 0.9962971256478408, "top": 785, "right": 3985, "bottom": 3200, "left": 2375}, {"solidity": 0.9974010819985148, "top": 800, "right": 2140, "bottom": 3190, "left": 550}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721210f.jpg"} -{"rects": [{"solidity": 0.9962971289100135, "top": 390, "right": 3170, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728346f.jpg"} -{"rects": [{"solidity": 0.9962973332620274, "top": 420, "right": 3405, "bottom": 2085, "left": 960}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705834f.jpg"} -{"rects": [{"solidity": 0.9962975994112312, "top": 775, "right": 3810, "bottom": 3200, "left": 2200}, {"solidity": 0.9965725988810068, "top": 790, "right": 5680, "bottom": 3210, "left": 4065}, {"solidity": 0.9985466856989341, "top": 785, "right": 1970, "bottom": 3200, "left": 360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726452f.jpg"} -{"rects": [{"solidity": 0.9962976887637084, "top": 2135, "right": 3185, "bottom": 3765, "left": 745}, {"solidity": 0.9964775664391279, "top": 335, "right": 3170, "bottom": 1925, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733835f.jpg"} -{"rects": [{"solidity": 0.9962977294332899, "top": 645, "right": 2790, "bottom": 2080, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705826f.jpg"} -{"rects": [{"solidity": 0.9962978989374489, "top": 780, "right": 2080, "bottom": 3210, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720113f.jpg"} -{"rects": [{"solidity": 0.9962979495589562, "top": 665, "right": 2590, "bottom": 2090, "left": 765}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707001f.jpg"} -{"rects": [{"solidity": 0.996298103619445, "top": 450, "right": 5100, "bottom": 3770, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710432f.jpg"} -{"rects": [{"solidity": 0.9962984832034946, "top": 715, "right": 3870, "bottom": 3170, "left": 2200}, {"solidity": 0.996229974759182, "top": 710, "right": 2025, "bottom": 3135, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702153f.jpg"} -{"rects": [{"solidity": 0.9962985200467556, "top": 860, "right": 5660, "bottom": 3300, "left": 4025}, {"solidity": 0.9965725670831905, "top": 820, "right": 2000, "bottom": 3245, "left": 370}, {"solidity": 0.9960468210656228, "top": 850, "right": 3830, "bottom": 3275, "left": 2195}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721563f.jpg"} -{"rects": [{"solidity": 0.9962986309783575, "top": 730, "right": 2050, "bottom": 3150, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725825f.jpg"} -{"rects": [{"solidity": 0.9962987551296296, "top": 1840, "right": 3110, "bottom": 3410, "left": 760}, {"solidity": 0.9954858718125431, "top": 230, "right": 3115, "bottom": 1805, "left": 755}, {"solidity": 0.9972226074895978, "top": 3470, "right": 2730, "bottom": 5810, "left": 1175}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731555f.jpg"} -{"rects": [{"solidity": 0.9962987654888618, "top": 415, "right": 3220, "bottom": 2010, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727472f.jpg"} -{"rects": [{"solidity": 0.996298819908958, "top": 410, "right": 3200, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729065f.jpg"} -{"rects": [{"solidity": 0.9962988220905252, "top": 450, "right": 3310, "bottom": 2070, "left": 880}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726167f.jpg"} -{"rects": [{"solidity": 0.9962989821384239, "top": 815, "right": 2035, "bottom": 3220, "left": 420}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732547f.jpg"} -{"rects": [{"solidity": 0.9962990589855405, "top": 2345, "right": 3245, "bottom": 3980, "left": 805}, {"solidity": 0.9964615271202792, "top": 590, "right": 3220, "bottom": 2210, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734137f.jpg"} -{"rects": [{"solidity": 0.996299111980978, "top": 860, "right": 3845, "bottom": 3275, "left": 2220}, {"solidity": 0.995288101722145, "top": 860, "right": 2025, "bottom": 3275, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710066f.jpg"} -{"rects": [{"solidity": 0.9962993743946811, "top": 4085, "right": 3245, "bottom": 5695, "left": 840}, {"solidity": 0.9962880694999753, "top": 420, "right": 3225, "bottom": 2020, "left": 825}, {"solidity": 0.9953996625540441, "top": 2245, "right": 3245, "bottom": 3845, "left": 855}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719939f.jpg"} -{"rects": [{"solidity": 0.9962995022026007, "top": 790, "right": 3945, "bottom": 3195, "left": 2315}, {"solidity": 0.9966930428196161, "top": 780, "right": 2205, "bottom": 3205, "left": 590}, {"solidity": 0.9967711774202419, "top": 800, "right": 5695, "bottom": 3205, "left": 4075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733184f.jpg"} -{"rects": [{"solidity": 0.9962995176214211, "top": 2235, "right": 3065, "bottom": 3865, "left": 630}, {"solidity": 0.9951345172352724, "top": 365, "right": 3070, "bottom": 1995, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718437f.jpg"} -{"rects": [{"solidity": 0.9962995312739613, "top": 825, "right": 2000, "bottom": 3220, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712059f.jpg"} -{"rects": [{"solidity": 0.9962996180250865, "top": 780, "right": 2065, "bottom": 3195, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729983f.jpg"} -{"rects": [{"solidity": 0.9962997877347903, "top": 420, "right": 3175, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703866f.jpg"} -{"rects": [{"solidity": 0.9962998621887448, "top": 590, "right": 2640, "bottom": 2045, "left": 785}, {"solidity": 0.9952706330947302, "top": 2100, "right": 2645, "bottom": 3530, "left": 820}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705266f.jpg"} -{"rects": [{"solidity": 0.9962999084037877, "top": 400, "right": 3180, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709479f.jpg"} -{"rects": [{"solidity": 0.9962999302933296, "top": 810, "right": 2005, "bottom": 3200, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704449f.jpg"} -{"rects": [{"solidity": 0.9962999406364103, "top": 615, "right": 2515, "bottom": 2100, "left": 420}, {"solidity": 0.9956223960979576, "top": 2460, "right": 2490, "bottom": 3960, "left": 395}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716062f.jpg"} -{"rects": [{"solidity": 0.9962999706427219, "top": 650, "right": 2690, "bottom": 2040, "left": 885}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703249f.jpg"} -{"rects": [{"solidity": 0.9963000401746951, "top": 585, "right": 3295, "bottom": 2215, "left": 885}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703937f.jpg"} -{"rects": [{"solidity": 0.996300223196518, "top": 415, "right": 3340, "bottom": 2060, "left": 910}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727926f.jpg"} -{"rects": [{"solidity": 0.9963003116953517, "top": 600, "right": 5105, "bottom": 3740, "left": 1230}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709142f.jpg"} -{"rects": [{"solidity": 0.9963004130383311, "top": 750, "right": 2025, "bottom": 3155, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713369f.jpg"} -{"rects": [{"solidity": 0.9963004534927976, "top": 780, "right": 2025, "bottom": 3205, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701564f.jpg"} -{"rects": [{"solidity": 0.9963005047168565, "top": 835, "right": 2095, "bottom": 3230, "left": 500}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713302f.jpg"} -{"rects": [{"solidity": 0.9963005750749646, "top": 860, "right": 3890, "bottom": 3290, "left": 2255}, {"solidity": 0.9996623207888187, "top": 865, "right": 2040, "bottom": 3285, "left": 425}, {"solidity": 0.99666996553914, "top": 865, "right": 5690, "bottom": 3275, "left": 4060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710143f.jpg"} -{"rects": [{"solidity": 0.9963006168808526, "top": 925, "right": 2050, "bottom": 3370, "left": 405}, {"solidity": 0.9961342723816662, "top": 965, "right": 5735, "bottom": 3400, "left": 4115}, {"solidity": 0.9973198303526793, "top": 965, "right": 3910, "bottom": 3365, "left": 2270}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730823f.jpg"} -{"rects": [{"solidity": 0.996300907104463, "top": 795, "right": 2000, "bottom": 3210, "left": 390}, {"solidity": 0.9955976928529161, "top": 795, "right": 3885, "bottom": 3210, "left": 2275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724055f.jpg"} -{"rects": [{"solidity": 0.9963011735543592, "top": 765, "right": 5000, "bottom": 3185, "left": 950}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717675f.jpg"} -{"rects": [{"solidity": 0.9963012132700042, "top": 695, "right": 3325, "bottom": 2620, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712310f.jpg"} -{"rects": [{"solidity": 0.9963012303111042, "top": 420, "right": 2975, "bottom": 2025, "left": 965}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700469f.jpg"} -{"rects": [{"solidity": 0.9963012711946894, "top": 605, "right": 2630, "bottom": 2040, "left": 810}, {"solidity": 0.9954483454660824, "top": 2055, "right": 5250, "bottom": 3470, "left": 3450}, {"solidity": 0.9956731610934647, "top": 2060, "right": 2585, "bottom": 3485, "left": 810}, {"solidity": 0.997055075171745, "top": 595, "right": 5240, "bottom": 2015, "left": 3485}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702979f.jpg"} -{"rects": [{"solidity": 0.9963013417706685, "top": 635, "right": 2725, "bottom": 3460, "left": 890}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705404f.jpg"} -{"rects": [{"solidity": 0.9963013632486198, "top": 500, "right": 3150, "bottom": 2125, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727545f.jpg"} -{"rects": [{"solidity": 0.9963013663414697, "top": 780, "right": 1900, "bottom": 3200, "left": 280}, {"solidity": 0.9981996742576085, "top": 800, "right": 3765, "bottom": 3200, "left": 2145}, {"solidity": 0.9994518041805608, "top": 815, "right": 5640, "bottom": 3215, "left": 4025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713494f.jpg"} -{"rects": [{"solidity": 0.9963014813932245, "top": 800, "right": 2630, "bottom": 2200, "left": 815}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726766f.jpg"} -{"rects": [{"solidity": 0.9963016515576508, "top": 630, "right": 2490, "bottom": 3445, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711800f.jpg"} -{"rects": [{"solidity": 0.9963017349214118, "top": 370, "right": 2975, "bottom": 2015, "left": 560}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702654f.jpg"} -{"rects": [{"solidity": 0.9963020974917262, "top": 475, "right": 3050, "bottom": 1950, "left": 1050}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726837f.jpg"} -{"rects": [{"solidity": 0.9963021223153915, "top": 4045, "right": 3145, "bottom": 5695, "left": 695}, {"solidity": 0.9966457462976034, "top": 365, "right": 3145, "bottom": 2005, "left": 715}, {"solidity": 0.9983550792915662, "top": 2190, "right": 3150, "bottom": 3815, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701059f.jpg"} -{"rects": [{"solidity": 0.9963023607685452, "top": 1420, "right": 2445, "bottom": 2925, "left": 425}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508727.jpg"} -{"rects": [{"solidity": 0.9963024108929678, "top": 370, "right": 3200, "bottom": 1985, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700194f.jpg"} -{"rects": [{"solidity": 0.9963024263126387, "top": 455, "right": 3045, "bottom": 1895, "left": 1055}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700774f.jpg"} -{"rects": [{"solidity": 0.9963024841828491, "top": 880, "right": 3435, "bottom": 2890, "left": 655}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700207f.jpg"} -{"rects": [{"solidity": 0.9963024917007892, "top": 760, "right": 5730, "bottom": 3180, "left": 4110}, {"solidity": 0.9967886586724075, "top": 755, "right": 3895, "bottom": 3160, "left": 2275}, {"solidity": 0.9986174545549179, "top": 740, "right": 2045, "bottom": 3150, "left": 440}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731643f.jpg"} -{"rects": [{"solidity": 0.9963033530379273, "top": 760, "right": 3850, "bottom": 3175, "left": 2245}, {"solidity": 0.9980434306055876, "top": 770, "right": 2010, "bottom": 3175, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730409f.jpg"} -{"rects": [{"solidity": 0.996303394035611, "top": 850, "right": 2140, "bottom": 3245, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722080f.jpg"} -{"rects": [{"solidity": 0.996303455422263, "top": 405, "right": 3245, "bottom": 1985, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726117f.jpg"} -{"rects": [{"solidity": 0.9963039559322802, "top": 2130, "right": 3190, "bottom": 3745, "left": 775}, {"solidity": 0.996264507948893, "top": 3970, "right": 3170, "bottom": 5580, "left": 755}, {"solidity": 0.9970272825059487, "top": 300, "right": 3185, "bottom": 1925, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718594f.jpg"} -{"rects": [{"solidity": 0.9963040243271222, "top": 725, "right": 2550, "bottom": 2220, "left": 450}, {"solidity": 0.9986418157123922, "top": 2470, "right": 2535, "bottom": 3945, "left": 450}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716239f.jpg"} -{"rects": [{"solidity": 0.9963041696755296, "top": 465, "right": 3045, "bottom": 2030, "left": 1040}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702706f.jpg"} -{"rects": [{"solidity": 0.9963043408822309, "top": 2260, "right": 3230, "bottom": 3895, "left": 800}, {"solidity": 0.996353059914937, "top": 435, "right": 3230, "bottom": 2060, "left": 805}, {"solidity": 0.9955632740910673, "top": 4055, "right": 3215, "bottom": 5685, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710039f.jpg"} -{"rects": [{"solidity": 0.9963043757218016, "top": 2240, "right": 3120, "bottom": 3865, "left": 700}, {"solidity": 0.996770543203712, "top": 4085, "right": 3100, "bottom": 5705, "left": 700}, {"solidity": 0.9971791577258468, "top": 410, "right": 3145, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/713074f.jpg"} -{"rects": [{"solidity": 0.9963044776502771, "top": 875, "right": 3880, "bottom": 3305, "left": 2245}, {"solidity": 0.9962999038810826, "top": 875, "right": 2020, "bottom": 3295, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712610f.jpg"} -{"rects": [{"solidity": 0.9963045324585232, "top": 390, "right": 3120, "bottom": 2005, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704111f.jpg"} -{"rects": [{"solidity": 0.9963045439711274, "top": 760, "right": 2490, "bottom": 3190, "left": 850}, {"solidity": 0.9983370092491821, "top": 450, "right": 5210, "bottom": 2070, "left": 2790}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706703f.jpg"} -{"rects": [{"solidity": 0.9963046746158, "top": 2175, "right": 3105, "bottom": 4040, "left": 745}, {"solidity": 0.9954328985992995, "top": 4155, "right": 3030, "bottom": 5865, "left": 980}, {"solidity": 0.9977401948081642, "top": 355, "right": 3010, "bottom": 1940, "left": 920}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709474f.jpg"} -{"rects": [{"solidity": 0.9963048559584198, "top": 800, "right": 2025, "bottom": 3190, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721949f.jpg"} -{"rects": [{"solidity": 0.9963049214957316, "top": 720, "right": 2050, "bottom": 3135, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718671f.jpg"} -{"rects": [{"solidity": 0.9963049428176328, "top": 2175, "right": 3130, "bottom": 3805, "left": 695}, {"solidity": 0.9979750083115331, "top": 485, "right": 3105, "bottom": 2060, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727584f.jpg"} -{"rects": [{"solidity": 0.9963049562549144, "top": 1200, "right": 2625, "bottom": 3920, "left": 355}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507579.jpg"} -{"rects": [{"solidity": 0.9963051209218498, "top": 380, "right": 3175, "bottom": 2015, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703012f.jpg"} -{"rects": [{"solidity": 0.9963052098823406, "top": 570, "right": 2250, "bottom": 2965, "left": 630}, {"solidity": 0.9966992920979286, "top": 370, "right": 5295, "bottom": 1995, "left": 2900}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712290f.jpg"} -{"rects": [{"solidity": 0.9963053088889172, "top": 820, "right": 3860, "bottom": 3255, "left": 2230}, {"solidity": 0.9974063981915231, "top": 810, "right": 2045, "bottom": 3235, "left": 420}, {"solidity": 0.9968408418020325, "top": 840, "right": 5660, "bottom": 3265, "left": 4035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721167f.jpg"} -{"rects": [{"solidity": 0.9963053521520847, "top": 795, "right": 3795, "bottom": 3235, "left": 2150}, {"solidity": 0.9957156767283349, "top": 815, "right": 5580, "bottom": 3245, "left": 3950}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733257f.jpg"} -{"rects": [{"solidity": 0.9963054873511294, "top": 275, "right": 3235, "bottom": 1875, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725003f.jpg"} -{"rects": [{"solidity": 0.9963055948125363, "top": 830, "right": 2045, "bottom": 3215, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714756f.jpg"} -{"rects": [{"solidity": 0.9963056613156883, "top": 415, "right": 3225, "bottom": 2035, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721479f.jpg"} -{"rects": [{"solidity": 0.9963058500620098, "top": 480, "right": 3295, "bottom": 2520, "left": 450}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729887f.jpg"} -{"rects": [{"solidity": 0.9963058725803904, "top": 3190, "right": 2265, "bottom": 5545, "left": 420}, {"solidity": 0.9494661636027936, "top": 2955, "right": 4200, "bottom": 5540, "left": 2540}, {"solidity": 0.9750029331629926, "top": 1015, "right": 2890, "bottom": 2535, "left": 1600}], "shape": {"h": 5980, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/465669.jpg"} -{"rects": [{"solidity": 0.9963058843129842, "top": 360, "right": 3255, "bottom": 2000, "left": 835}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704103f.jpg"} -{"rects": [{"solidity": 0.9963061609347357, "top": 795, "right": 3915, "bottom": 3215, "left": 2290}, {"solidity": 0.9962807644033904, "top": 800, "right": 2010, "bottom": 3200, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724207f.jpg"} -{"rects": [{"solidity": 0.9963063166781795, "top": 935, "right": 2175, "bottom": 3365, "left": 540}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707786f.jpg"} -{"rects": [{"solidity": 0.9963063458451997, "top": 480, "right": 3160, "bottom": 2105, "left": 730}, {"solidity": 0.9958641650743167, "top": 2355, "right": 3160, "bottom": 3990, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727555f.jpg"} -{"rects": [{"solidity": 0.9963064211198775, "top": 755, "right": 3915, "bottom": 3170, "left": 2300}, {"solidity": 0.997880141714643, "top": 760, "right": 2055, "bottom": 3170, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718707f.jpg"} -{"rects": [{"solidity": 0.9963066509238199, "top": 425, "right": 3130, "bottom": 2040, "left": 700}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714658f.jpg"} -{"rects": [{"solidity": 0.9963066672316955, "top": 2160, "right": 3155, "bottom": 3790, "left": 780}, {"solidity": 0.9962793275082379, "top": 4070, "right": 3140, "bottom": 5690, "left": 780}, {"solidity": 0.9974473917707354, "top": 290, "right": 3155, "bottom": 1905, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718766f.jpg"} -{"rects": [{"solidity": 0.9963067334270279, "top": 465, "right": 3995, "bottom": 2630, "left": 755}], "shape": {"h": 5175, "w": 8145}, "file": "/usr/local/google/home/danvk/milstein/716319f.jpg"} -{"rects": [{"solidity": 0.9963068679478593, "top": 525, "right": 3335, "bottom": 2540, "left": 265}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713627f.jpg"} -{"rects": [{"solidity": 0.9963069854678425, "top": 3145, "right": 3275, "bottom": 5070, "left": 570}, {"solidity": 0.9970854786721922, "top": 710, "right": 3300, "bottom": 2500, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714724f.jpg"} -{"rects": [{"solidity": 0.9963072592697799, "top": 420, "right": 3090, "bottom": 2040, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734846f.jpg"} -{"rects": [{"solidity": 0.9963072873575702, "top": 765, "right": 2070, "bottom": 3200, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717020f.jpg"} -{"rects": [{"solidity": 0.9963074019740701, "top": 720, "right": 4705, "bottom": 3365, "left": 1390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701501f.jpg"} -{"rects": [{"solidity": 0.9963074402659933, "top": 890, "right": 1980, "bottom": 3305, "left": 360}, {"solidity": 0.9960550800148865, "top": 910, "right": 3855, "bottom": 3325, "left": 2240}, {"solidity": 0.9968551812606764, "top": 920, "right": 5720, "bottom": 3320, "left": 4115}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728881f.jpg"} -{"rects": [{"solidity": 0.9963077663775772, "top": 4205, "right": 3165, "bottom": 5820, "left": 755}, {"solidity": 0.9960565231679264, "top": 2315, "right": 3140, "bottom": 3910, "left": 760}, {"solidity": 0.9953942175186974, "top": 435, "right": 3140, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718332f.jpg"} -{"rects": [{"solidity": 0.9963078919620407, "top": 765, "right": 2075, "bottom": 3180, "left": 460}, {"solidity": 0.9957153931232222, "top": 755, "right": 3960, "bottom": 3170, "left": 2345}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719288f.jpg"} -{"rects": [{"solidity": 0.9963079295098052, "top": 3155, "right": 3300, "bottom": 4805, "left": 875}, {"solidity": 0.9968764104046055, "top": 350, "right": 1890, "bottom": 2755, "left": 270}, {"solidity": 0.996037103872668, "top": 345, "right": 3705, "bottom": 2745, "left": 2075}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720263f.jpg"} -{"rects": [{"solidity": 0.9963079929848631, "top": 395, "right": 3185, "bottom": 2015, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725127f.jpg"} -{"rects": [{"solidity": 0.9963081589686792, "top": 950, "right": 2025, "bottom": 3325, "left": 430}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717850f.jpg"} -{"rects": [{"solidity": 0.9963083216987565, "top": 310, "right": 3145, "bottom": 1925, "left": 740}, {"solidity": 0.9962503868519212, "top": 2125, "right": 3145, "bottom": 3750, "left": 745}, {"solidity": 0.9972001468775409, "top": 4010, "right": 3105, "bottom": 5635, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707075f.jpg"} -{"rects": [{"solidity": 0.9963085044869638, "top": 880, "right": 2010, "bottom": 3295, "left": 410}, {"solidity": 0.9956120130677767, "top": 900, "right": 3875, "bottom": 3295, "left": 2285}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729886f.jpg"} -{"rects": [{"solidity": 0.9963086139823673, "top": 425, "right": 3140, "bottom": 2055, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728462f.jpg"} -{"rects": [{"solidity": 0.9963086902800659, "top": 1090, "right": 3455, "bottom": 5045, "left": 350}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710720f.jpg"} -{"rects": [{"solidity": 0.9963091771467809, "top": 850, "right": 2000, "bottom": 3280, "left": 365}, {"solidity": 0.9960874546435148, "top": 840, "right": 3880, "bottom": 3265, "left": 2245}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720212f.jpg"} -{"rects": [{"solidity": 0.9963092792572071, "top": 780, "right": 2070, "bottom": 3225, "left": 425}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720767f.jpg"} -{"rects": [{"solidity": 0.9963093145869947, "top": 425, "right": 3165, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730319f.jpg"} -{"rects": [{"solidity": 0.9963093218062836, "top": 480, "right": 3580, "bottom": 2135, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704545f.jpg"} -{"rects": [{"solidity": 0.9963093941724113, "top": 1040, "right": 3510, "bottom": 5090, "left": 315}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712555f.jpg"} -{"rects": [{"solidity": 0.996309517199936, "top": 505, "right": 3125, "bottom": 2105, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711820f.jpg"} -{"rects": [{"solidity": 0.9963096741687405, "top": 780, "right": 2045, "bottom": 3135, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713143f.jpg"} -{"rects": [{"solidity": 0.9963101552077571, "top": 765, "right": 1960, "bottom": 3175, "left": 355}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719225f.jpg"} -{"rects": [{"solidity": 0.9963102134712749, "top": 790, "right": 3900, "bottom": 3205, "left": 2280}, {"solidity": 0.9958847070403565, "top": 810, "right": 5780, "bottom": 3220, "left": 4150}, {"solidity": 0.996455317835502, "top": 795, "right": 2030, "bottom": 3205, "left": 415}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731161f.jpg"} -{"rects": [{"solidity": 0.9963102211007046, "top": 2230, "right": 3220, "bottom": 3870, "left": 780}, {"solidity": 0.9976830622194334, "top": 360, "right": 3220, "bottom": 1975, "left": 795}, {"solidity": 0.9937343439929731, "top": 4110, "right": 3170, "bottom": 5735, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732868f.jpg"} -{"rects": [{"solidity": 0.9963103213904263, "top": 2305, "right": 3190, "bottom": 3930, "left": 780}, {"solidity": 0.9880798016333402, "top": 475, "right": 3180, "bottom": 2080, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719979f.jpg"} -{"rects": [{"solidity": 0.9963104045332913, "top": 795, "right": 2020, "bottom": 3235, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705198f.jpg"} -{"rects": [{"solidity": 0.9963105545066689, "top": 375, "right": 3085, "bottom": 2005, "left": 665}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704127f.jpg"} -{"rects": [{"solidity": 0.9963107638888888, "top": 815, "right": 2465, "bottom": 3255, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713412f.jpg"} -{"rects": [{"solidity": 0.996310817485799, "top": 425, "right": 3270, "bottom": 3840, "left": 625}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714940f.jpg"} -{"rects": [{"solidity": 0.9963108619634163, "top": 390, "right": 3100, "bottom": 2035, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729409f.jpg"} -{"rects": [{"solidity": 0.9963110346654243, "top": 920, "right": 5705, "bottom": 3355, "left": 4070}, {"solidity": 0.9989173629918048, "top": 915, "right": 2010, "bottom": 3340, "left": 395}, {"solidity": 0.9971467404401345, "top": 915, "right": 3865, "bottom": 3340, "left": 2245}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730864f.jpg"} -{"rects": [{"solidity": 0.9963110833614967, "top": 415, "right": 5075, "bottom": 3705, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726173f.jpg"} -{"rects": [{"solidity": 0.9963115226495562, "top": 2170, "right": 3170, "bottom": 3810, "left": 750}, {"solidity": 0.9972699021230867, "top": 300, "right": 3175, "bottom": 1925, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715625f.jpg"} -{"rects": [{"solidity": 0.9963115643306574, "top": 470, "right": 3165, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724902f.jpg"} -{"rects": [{"solidity": 0.996311627232754, "top": 400, "right": 3100, "bottom": 2030, "left": 675}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729310f.jpg"} -{"rects": [{"solidity": 0.9963116944049838, "top": 890, "right": 3905, "bottom": 3290, "left": 2290}, {"solidity": 0.9963425150745422, "top": 910, "right": 2035, "bottom": 3250, "left": 420}, {"solidity": 0.9954950826127842, "top": 875, "right": 5745, "bottom": 3230, "left": 4165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713982f.jpg"} -{"rects": [{"solidity": 0.9963117234048684, "top": 4025, "right": 3085, "bottom": 5650, "left": 655}, {"solidity": 0.9959698798119928, "top": 2150, "right": 3070, "bottom": 3755, "left": 660}, {"solidity": 0.9950874396862959, "top": 475, "right": 2905, "bottom": 1900, "left": 1060}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722862f.jpg"} -{"rects": [{"solidity": 0.9963118549223622, "top": 505, "right": 2820, "bottom": 2610, "left": 1310}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517075.jpg"} -{"rects": [{"solidity": 0.9963123547291257, "top": 390, "right": 3175, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717682f.jpg"} -{"rects": [{"solidity": 0.9963123573524617, "top": 2195, "right": 3110, "bottom": 3830, "left": 730}, {"solidity": 0.9964248028889952, "top": 330, "right": 3120, "bottom": 1955, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707720f.jpg"} -{"rects": [{"solidity": 0.996312489102146, "top": 430, "right": 3130, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704458f.jpg"} -{"rects": [{"solidity": 0.9963125526322505, "top": 835, "right": 3940, "bottom": 3260, "left": 2290}, {"solidity": 0.995618930594468, "top": 860, "right": 5770, "bottom": 3285, "left": 4130}, {"solidity": 0.9974374047958531, "top": 840, "right": 2060, "bottom": 3260, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712284f.jpg"} -{"rects": [{"solidity": 0.9963125548726953, "top": 985, "right": 3610, "bottom": 5150, "left": 225}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726029f.jpg"} -{"rects": [{"solidity": 0.99631258534924, "top": 715, "right": 2060, "bottom": 3115, "left": 455}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704914f.jpg"} -{"rects": [{"solidity": 0.9963126424400194, "top": 485, "right": 5080, "bottom": 3655, "left": 1085}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706093f.jpg"} -{"rects": [{"solidity": 0.9963126435283962, "top": 390, "right": 3260, "bottom": 1995, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725987f.jpg"} -{"rects": [{"solidity": 0.9963128380895102, "top": 410, "right": 3290, "bottom": 2135, "left": 1150}, {"solidity": 0.9625592981143625, "top": 2445, "right": 3285, "bottom": 4205, "left": 1150}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708338f.jpg"} -{"rects": [{"solidity": 0.9963128794379319, "top": 860, "right": 3855, "bottom": 3290, "left": 2230}, {"solidity": 0.9969064668800436, "top": 845, "right": 2105, "bottom": 3260, "left": 490}, {"solidity": 0.9952810440122161, "top": 860, "right": 5570, "bottom": 3285, "left": 3960}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733255f.jpg"} -{"rects": [{"solidity": 0.9963128920752784, "top": 410, "right": 3175, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703878f.jpg"} -{"rects": [{"solidity": 0.9963129445985298, "top": 765, "right": 2025, "bottom": 3155, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722584f.jpg"} -{"rects": [{"solidity": 0.9963129812042544, "top": 3970, "right": 3175, "bottom": 5595, "left": 760}, {"solidity": 0.9958272835485095, "top": 2125, "right": 3185, "bottom": 3730, "left": 775}, {"solidity": 0.9952191130403946, "top": 295, "right": 3195, "bottom": 1905, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714892f.jpg"} -{"rects": [{"solidity": 0.9963130100816131, "top": 2240, "right": 3095, "bottom": 3865, "left": 665}, {"solidity": 0.9963376300353507, "top": 4105, "right": 3085, "bottom": 5710, "left": 675}, {"solidity": 0.9972558456716457, "top": 385, "right": 3080, "bottom": 1980, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728321f.jpg"} -{"rects": [{"solidity": 0.9963131458336857, "top": 445, "right": 3160, "bottom": 2015, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725223f.jpg"} -{"rects": [{"solidity": 0.9963132194614948, "top": 735, "right": 3880, "bottom": 3145, "left": 2280}, {"solidity": 0.9956878701628223, "top": 745, "right": 2040, "bottom": 3145, "left": 440}, {"solidity": 0.9945976694023569, "top": 740, "right": 5720, "bottom": 3145, "left": 4125}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731238f.jpg"} -{"rects": [{"solidity": 0.9963132680013158, "top": 265, "right": 3115, "bottom": 1880, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724295f.jpg"} -{"rects": [{"solidity": 0.9963133253417686, "top": 785, "right": 3860, "bottom": 3205, "left": 2240}, {"solidity": 0.997462938686598, "top": 790, "right": 2015, "bottom": 3195, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723401f.jpg"} -{"rects": [{"solidity": 0.996313503853015, "top": 730, "right": 3115, "bottom": 2325, "left": 720}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709575f.jpg"} -{"rects": [{"solidity": 0.9963135582333444, "top": 580, "right": 4995, "bottom": 3645, "left": 995}], "shape": {"h": 3865, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728207f.jpg"} -{"rects": [{"solidity": 0.9963136140251907, "top": 605, "right": 4960, "bottom": 3730, "left": 1245}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712954f.jpg"} -{"rects": [{"solidity": 0.9963141383248231, "top": 400, "right": 3385, "bottom": 2175, "left": 680}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/700836f.jpg"} -{"rects": [{"solidity": 0.9963141596820615, "top": 1030, "right": 3565, "bottom": 5080, "left": 305}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725368f.jpg"} -{"rects": [{"solidity": 0.9963142216464678, "top": 495, "right": 3195, "bottom": 2100, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710674f.jpg"} -{"rects": [{"solidity": 0.9963145824361812, "top": 845, "right": 2010, "bottom": 3235, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717432f.jpg"} -{"rects": [{"solidity": 0.9963146366701812, "top": 750, "right": 2040, "bottom": 3155, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724157f.jpg"} -{"rects": [{"solidity": 0.9963146470975828, "top": 790, "right": 3880, "bottom": 3210, "left": 2260}, {"solidity": 0.9971806995389269, "top": 795, "right": 2105, "bottom": 3205, "left": 505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719795f.jpg"} -{"rects": [{"solidity": 0.9963146495877974, "top": 890, "right": 3095, "bottom": 2520, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730771f.jpg"} -{"rects": [{"solidity": 0.996314855616433, "top": 375, "right": 3095, "bottom": 1990, "left": 680}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713661f.jpg"} -{"rects": [{"solidity": 0.9963149099812126, "top": 840, "right": 3840, "bottom": 3285, "left": 2180}, {"solidity": 0.9972280878590886, "top": 845, "right": 2010, "bottom": 3270, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718560f.jpg"} -{"rects": [{"solidity": 0.9963149766387113, "top": 445, "right": 3095, "bottom": 2055, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733641f.jpg"} -{"rects": [{"solidity": 0.9963150170173463, "top": 445, "right": 3150, "bottom": 2085, "left": 710}, {"solidity": 0.9953984171586193, "top": 2345, "right": 3140, "bottom": 3990, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710810f.jpg"} -{"rects": [{"solidity": 0.9963150584198055, "top": 685, "right": 2550, "bottom": 2165, "left": 460}, {"solidity": 0.9965151346836673, "top": 2430, "right": 2530, "bottom": 3910, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716249f.jpg"} -{"rects": [{"solidity": 0.9963152691650939, "top": 440, "right": 2885, "bottom": 1850, "left": 1090}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727232f.jpg"} -{"rects": [{"solidity": 0.9963153329104208, "top": 455, "right": 3095, "bottom": 3835, "left": 840}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714845f.jpg"} -{"rects": [{"solidity": 0.9963153418129168, "top": 430, "right": 3175, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/703070f.jpg"} -{"rects": [{"solidity": 0.9963155657226147, "top": 790, "right": 2030, "bottom": 3170, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712828f.jpg"} -{"rects": [{"solidity": 0.9963158150772673, "top": 395, "right": 3130, "bottom": 2005, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729826f.jpg"} -{"rects": [{"solidity": 0.9963158274940404, "top": 795, "right": 2070, "bottom": 3200, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724173f.jpg"} -{"rects": [{"solidity": 0.9963158529387499, "top": 935, "right": 5725, "bottom": 3375, "left": 4085}, {"solidity": 0.9958692945447891, "top": 960, "right": 3900, "bottom": 3355, "left": 2285}, {"solidity": 0.9962800315150145, "top": 975, "right": 2045, "bottom": 3365, "left": 450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720600f.jpg"} -{"rects": [{"solidity": 0.9963158876940996, "top": 800, "right": 3840, "bottom": 3225, "left": 2215}, {"solidity": 0.9978555279185682, "top": 795, "right": 5715, "bottom": 3200, "left": 4095}, {"solidity": 0.9977977919625883, "top": 810, "right": 1975, "bottom": 3210, "left": 355}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712374f.jpg"} -{"rects": [{"solidity": 0.9963158988790994, "top": 775, "right": 2025, "bottom": 3215, "left": 410}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700918f.jpg"} -{"rects": [{"solidity": 0.9963161381486488, "top": 475, "right": 5065, "bottom": 3730, "left": 1025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723705f.jpg"} -{"rects": [{"solidity": 0.9963163136064354, "top": 800, "right": 3840, "bottom": 3225, "left": 2210}, {"solidity": 0.9955607870604563, "top": 800, "right": 2030, "bottom": 3215, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714006f.jpg"} -{"rects": [{"solidity": 0.9963163805551098, "top": 935, "right": 3875, "bottom": 3355, "left": 2245}, {"solidity": 0.9961743986392156, "top": 920, "right": 2010, "bottom": 3340, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718571f.jpg"} -{"rects": [{"solidity": 0.9963164255110152, "top": 425, "right": 3205, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702452f.jpg"} -{"rects": [{"solidity": 0.9963165244276776, "top": 890, "right": 3880, "bottom": 3335, "left": 2235}, {"solidity": 0.9973136975899848, "top": 875, "right": 2015, "bottom": 3315, "left": 390}, {"solidity": 0.9961855614067061, "top": 915, "right": 5735, "bottom": 3345, "left": 4080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724036f.jpg"} -{"rects": [{"solidity": 0.9963165611701177, "top": 2275, "right": 3090, "bottom": 3890, "left": 690}, {"solidity": 0.9960269977501874, "top": 4130, "right": 3110, "bottom": 5710, "left": 715}, {"solidity": 0.9972998360374252, "top": 415, "right": 3100, "bottom": 1980, "left": 705}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/730608f.jpg"} -{"rects": [{"solidity": 0.9963167229839075, "top": 310, "right": 3170, "bottom": 1930, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711977f.jpg"} -{"rects": [{"solidity": 0.996316758747698, "top": 2275, "right": 3120, "bottom": 3910, "left": 695}, {"solidity": 0.9955708822279606, "top": 410, "right": 3125, "bottom": 2020, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734255f.jpg"} -{"rects": [{"solidity": 0.9963168526718894, "top": 710, "right": 2390, "bottom": 3535, "left": 370}, {"solidity": 0.9961128907684321, "top": 895, "right": 4130, "bottom": 3335, "left": 2490}, {"solidity": 0.9984319177484279, "top": 905, "right": 5865, "bottom": 3330, "left": 4260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729327f.jpg"} -{"rects": [{"solidity": 0.9963169129033608, "top": 480, "right": 3125, "bottom": 2105, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705671f.jpg"} -{"rects": [{"solidity": 0.9963170386274421, "top": 820, "right": 2100, "bottom": 3240, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722996f.jpg"} -{"rects": [{"solidity": 0.9963171966989742, "top": 2275, "right": 3190, "bottom": 3900, "left": 765}, {"solidity": 0.9529880570748556, "top": 520, "right": 3160, "bottom": 2005, "left": 855}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723447f.jpg"} -{"rects": [{"solidity": 0.9963172419154229, "top": 725, "right": 2740, "bottom": 2145, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704395f.jpg"} -{"rects": [{"solidity": 0.9963172839054827, "top": 3235, "right": 3270, "bottom": 5150, "left": 570}, {"solidity": 0.9968963064989862, "top": 720, "right": 3295, "bottom": 2510, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714717f.jpg"} -{"rects": [{"solidity": 0.996317344325415, "top": 660, "right": 4250, "bottom": 2465, "left": 3040}, {"solidity": 0.9893168200995048, "top": 660, "right": 1560, "bottom": 2445, "left": 360}, {"solidity": 0.9981823182617222, "top": 660, "right": 2890, "bottom": 2440, "left": 1705}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715897f.jpg"} -{"rects": [{"solidity": 0.9963174603174603, "top": 835, "right": 2090, "bottom": 3250, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713956f.jpg"} -{"rects": [{"solidity": 0.9963175331554699, "top": 3335, "right": 3385, "bottom": 5360, "left": 310}, {"solidity": 0.996461280109661, "top": 760, "right": 3365, "bottom": 2780, "left": 355}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710557f.jpg"} -{"rects": [{"solidity": 0.9963177001090691, "top": 415, "right": 3185, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703350f.jpg"} -{"rects": [{"solidity": 0.9963178578999723, "top": 820, "right": 3905, "bottom": 3215, "left": 2290}, {"solidity": 0.997593123209169, "top": 805, "right": 1995, "bottom": 3200, "left": 390}, {"solidity": 0.9949495283143514, "top": 830, "right": 5815, "bottom": 3230, "left": 4200}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731684f.jpg"} -{"rects": [{"solidity": 0.9963180076170919, "top": 620, "right": 3325, "bottom": 2550, "left": 590}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710592f.jpg"} -{"rects": [{"solidity": 0.996318059980618, "top": 430, "right": 3180, "bottom": 2045, "left": 775}, {"solidity": 0.9961925647381715, "top": 2315, "right": 3165, "bottom": 3885, "left": 780}, {"solidity": 0.9938597112714783, "top": 4155, "right": 3155, "bottom": 5735, "left": 775}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/731702f.jpg"} -{"rects": [{"solidity": 0.996318183723277, "top": 850, "right": 2060, "bottom": 3265, "left": 430}, {"solidity": 0.9970007724303762, "top": 855, "right": 3960, "bottom": 3260, "left": 2340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723978f.jpg"} -{"rects": [{"solidity": 0.9963184834735431, "top": 825, "right": 4000, "bottom": 3250, "left": 2370}, {"solidity": 0.9959088556838265, "top": 825, "right": 2160, "bottom": 3240, "left": 530}, {"solidity": 0.9955480136409648, "top": 840, "right": 5820, "bottom": 3245, "left": 4215}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731959f.jpg"} -{"rects": [{"solidity": 0.9963185335813344, "top": 2870, "right": 2700, "bottom": 5295, "left": 1070}, {"solidity": 0.995663696271746, "top": 705, "right": 3105, "bottom": 2330, "left": 675}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731032f.jpg"} -{"rects": [{"solidity": 0.9963187289110678, "top": 840, "right": 3870, "bottom": 3265, "left": 2245}, {"solidity": 0.9974763100348263, "top": 850, "right": 1990, "bottom": 3260, "left": 375}, {"solidity": 0.9963234937166048, "top": 840, "right": 5715, "bottom": 3255, "left": 4100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709565f.jpg"} -{"rects": [{"solidity": 0.99631877296734, "top": 390, "right": 3165, "bottom": 2010, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709121f.jpg"} -{"rects": [{"solidity": 0.9963187765022236, "top": 410, "right": 3115, "bottom": 2025, "left": 695}, {"solidity": 0.9961794062887878, "top": 2250, "right": 3110, "bottom": 3865, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734820f.jpg"} -{"rects": [{"solidity": 0.996318952326948, "top": 685, "right": 3760, "bottom": 3130, "left": 2115}, {"solidity": 0.9980621156529378, "top": 665, "right": 2030, "bottom": 3090, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726830f.jpg"} -{"rects": [{"solidity": 0.9963192285568403, "top": 420, "right": 3135, "bottom": 2040, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703274f.jpg"} -{"rects": [{"solidity": 0.9963192360567045, "top": 645, "right": 2565, "bottom": 2045, "left": 740}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703609f.jpg"} -{"rects": [{"solidity": 0.9963192856365022, "top": 745, "right": 2225, "bottom": 3205, "left": 570}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714048f.jpg"} -{"rects": [{"solidity": 0.9963194769983149, "top": 720, "right": 2410, "bottom": 3160, "left": 765}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707335f.jpg"} -{"rects": [{"solidity": 0.9963194770590321, "top": 2290, "right": 3145, "bottom": 3935, "left": 720}, {"solidity": 0.9964818454202777, "top": 425, "right": 3135, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733648f.jpg"} -{"rects": [{"solidity": 0.9963197755136521, "top": 780, "right": 2890, "bottom": 2245, "left": 545}, {"solidity": 0.9983150924851647, "top": 765, "right": 5560, "bottom": 2220, "left": 3220}, {"solidity": 0.9969308681751228, "top": 2360, "right": 2615, "bottom": 3770, "left": 800}, {"solidity": 0.9932295025048361, "top": 2350, "right": 5340, "bottom": 3760, "left": 3530}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726596f.jpg"} -{"rects": [{"solidity": 0.9963198600766587, "top": 1025, "right": 2800, "bottom": 3425, "left": 1185}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731110f.jpg"} -{"rects": [{"solidity": 0.9963198762287309, "top": 2215, "right": 3220, "bottom": 3825, "left": 795}, {"solidity": 0.9953556104031732, "top": 4065, "right": 3210, "bottom": 5675, "left": 795}, {"solidity": 0.9967618255576765, "top": 395, "right": 3215, "bottom": 1995, "left": 805}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/726922f.jpg"} -{"rects": [{"solidity": 0.9963200628601362, "top": 420, "right": 3175, "bottom": 2015, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721704f.jpg"} -{"rects": [{"solidity": 0.9963201682208813, "top": 2280, "right": 3080, "bottom": 3890, "left": 675}, {"solidity": 0.9959207114961767, "top": 440, "right": 3025, "bottom": 2050, "left": 635}, {"solidity": 0.996455739686797, "top": 4105, "right": 3095, "bottom": 5705, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724497f.jpg"} -{"rects": [{"solidity": 0.9963201789281005, "top": 435, "right": 5025, "bottom": 3420, "left": 1235}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732227f.jpg"} -{"rects": [{"solidity": 0.996320214776575, "top": 825, "right": 1985, "bottom": 3205, "left": 400}, {"solidity": 0.995755333406863, "top": 820, "right": 3795, "bottom": 3195, "left": 2210}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715419f.jpg"} -{"rects": [{"solidity": 0.9963207076521605, "top": 370, "right": 3345, "bottom": 2295, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724711f.jpg"} -{"rects": [{"solidity": 0.9963207402800796, "top": 485, "right": 3145, "bottom": 2095, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711880f.jpg"} -{"rects": [{"solidity": 0.9963208071846277, "top": 1655, "right": 3190, "bottom": 3260, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733153f.jpg"} -{"rects": [{"solidity": 0.9963213692681058, "top": 410, "right": 3125, "bottom": 2040, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705665f.jpg"} -{"rects": [{"solidity": 0.9963214520685785, "top": 375, "right": 3980, "bottom": 2650, "left": 1110}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509217.jpg"} -{"rects": [{"solidity": 0.9963215924131639, "top": 370, "right": 3205, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714742f.jpg"} -{"rects": [{"solidity": 0.9963216093362133, "top": 2240, "right": 3210, "bottom": 3860, "left": 785}, {"solidity": 0.996285910661792, "top": 390, "right": 3220, "bottom": 2010, "left": 800}, {"solidity": 0.9980094897173152, "top": 4070, "right": 3210, "bottom": 5685, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733129f.jpg"} -{"rects": [{"solidity": 0.9963216725907432, "top": 430, "right": 3265, "bottom": 2070, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705560f.jpg"} -{"rects": [{"solidity": 0.9963218059211713, "top": 365, "right": 3185, "bottom": 1970, "left": 790}, {"solidity": 0.995827296625781, "top": 2180, "right": 3175, "bottom": 3785, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730413f.jpg"} -{"rects": [{"solidity": 0.9963218435035803, "top": 815, "right": 2005, "bottom": 3230, "left": 360}, {"solidity": 0.9967125896237491, "top": 830, "right": 3865, "bottom": 3250, "left": 2240}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712560f.jpg"} -{"rects": [{"solidity": 0.9963219344136787, "top": 2285, "right": 3185, "bottom": 3920, "left": 745}, {"solidity": 0.9978137368060623, "top": 455, "right": 3180, "bottom": 2070, "left": 755}, {"solidity": 0.9958553684224054, "top": 4125, "right": 3165, "bottom": 5750, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732119f.jpg"} -{"rects": [{"solidity": 0.9963219854060581, "top": 795, "right": 2160, "bottom": 3205, "left": 545}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710955f.jpg"} -{"rects": [{"solidity": 0.996322064347542, "top": 935, "right": 3900, "bottom": 3335, "left": 2285}, {"solidity": 0.9964792891642167, "top": 925, "right": 2035, "bottom": 3315, "left": 430}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728828f.jpg"} -{"rects": [{"solidity": 0.9963220924346595, "top": 345, "right": 3180, "bottom": 1975, "left": 755}, {"solidity": 0.9969406274306456, "top": 2235, "right": 3155, "bottom": 3845, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719661f.jpg"} -{"rects": [{"solidity": 0.99632216420778, "top": 910, "right": 5730, "bottom": 3330, "left": 4110}, {"solidity": 0.9959718715956607, "top": 885, "right": 3870, "bottom": 3300, "left": 2270}, {"solidity": 0.9962290855122842, "top": 880, "right": 2015, "bottom": 3290, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729210f.jpg"} -{"rects": [{"solidity": 0.9963224223319943, "top": 2235, "right": 3210, "bottom": 3860, "left": 785}, {"solidity": 0.9961181232082398, "top": 340, "right": 3190, "bottom": 1965, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700108f.jpg"} -{"rects": [{"solidity": 0.9963224911869881, "top": 745, "right": 2025, "bottom": 3185, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734589f.jpg"} -{"rects": [{"solidity": 0.99632261554103, "top": 545, "right": 4895, "bottom": 3610, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721277f.jpg"} -{"rects": [{"solidity": 0.9963228291670392, "top": 845, "right": 3135, "bottom": 2355, "left": 985}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508975.jpg"} -{"rects": [{"solidity": 0.9963228296701205, "top": 1015, "right": 2055, "bottom": 3085, "left": 445}, {"solidity": 0.9958594529135204, "top": 1055, "right": 3810, "bottom": 2985, "left": 2335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721191f.jpg"} -{"rects": [{"solidity": 0.9963229970418486, "top": 660, "right": 2715, "bottom": 2025, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728238f.jpg"} -{"rects": [{"solidity": 0.9963230163283661, "top": 485, "right": 2860, "bottom": 3720, "left": 785}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732980f.jpg"} -{"rects": [{"solidity": 0.9963230640710832, "top": 805, "right": 2030, "bottom": 3240, "left": 370}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731697f.jpg"} -{"rects": [{"solidity": 0.9963230703512634, "top": 820, "right": 3835, "bottom": 3215, "left": 2230}, {"solidity": 0.9941083394464931, "top": 805, "right": 2055, "bottom": 3225, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717467f.jpg"} -{"rects": [{"solidity": 0.9963231843295152, "top": 770, "right": 2060, "bottom": 3175, "left": 430}, {"solidity": 0.999752267889681, "top": 765, "right": 5665, "bottom": 3160, "left": 4055}, {"solidity": 0.9948909764716022, "top": 785, "right": 3830, "bottom": 3140, "left": 2270}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722577f.jpg"} -{"rects": [{"solidity": 0.9963233413473835, "top": 210, "right": 3185, "bottom": 1860, "left": 760}, {"solidity": 0.9956885660644093, "top": 1880, "right": 2825, "bottom": 4315, "left": 1145}, {"solidity": 0.9931276653426915, "top": 4355, "right": 3005, "bottom": 5930, "left": 1105}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712121f.jpg"} -{"rects": [{"solidity": 0.9963233875014474, "top": 905, "right": 3900, "bottom": 3330, "left": 2275}, {"solidity": 0.9976774511648426, "top": 915, "right": 2005, "bottom": 3325, "left": 395}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729201f.jpg"} -{"rects": [{"solidity": 0.9963234459750812, "top": 2295, "right": 3255, "bottom": 3910, "left": 845}, {"solidity": 0.9975931433938635, "top": 440, "right": 3220, "bottom": 2045, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723342f.jpg"} -{"rects": [{"solidity": 0.9963235770881693, "top": 2285, "right": 3070, "bottom": 3900, "left": 655}, {"solidity": 0.9950722423572624, "top": 400, "right": 3065, "bottom": 2020, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709341f.jpg"} -{"rects": [{"solidity": 0.9963239543335602, "top": 405, "right": 3150, "bottom": 2030, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706927f.jpg"} -{"rects": [{"solidity": 0.9963240133427079, "top": 755, "right": 3830, "bottom": 3175, "left": 2205}, {"solidity": 0.9970599681469297, "top": 765, "right": 2035, "bottom": 3175, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719728f.jpg"} -{"rects": [{"solidity": 0.9963242190866826, "top": 395, "right": 3590, "bottom": 2245, "left": 865}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711247f.jpg"} -{"rects": [{"solidity": 0.9963243207984084, "top": 460, "right": 3175, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728642f.jpg"} -{"rects": [{"solidity": 0.996324472806357, "top": 590, "right": 5050, "bottom": 3565, "left": 1025}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709744f.jpg"} -{"rects": [{"solidity": 0.9963248744470682, "top": 495, "right": 3085, "bottom": 2095, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729362f.jpg"} -{"rects": [{"solidity": 0.9963250094147286, "top": 820, "right": 2105, "bottom": 3235, "left": 485}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723722f.jpg"} -{"rects": [{"solidity": 0.996325039945218, "top": 810, "right": 5835, "bottom": 3220, "left": 4230}, {"solidity": 0.9967314593700388, "top": 825, "right": 3955, "bottom": 3205, "left": 2370}, {"solidity": 0.9983965704049834, "top": 820, "right": 2090, "bottom": 3195, "left": 510}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731683f.jpg"} -{"rects": [{"solidity": 0.9963252730235034, "top": 4150, "right": 3075, "bottom": 5765, "left": 650}, {"solidity": 0.9968089931320462, "top": 405, "right": 3080, "bottom": 2010, "left": 660}, {"solidity": 0.9961423186660734, "top": 2275, "right": 3075, "bottom": 3875, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730606f.jpg"} -{"rects": [{"solidity": 0.9963253822942119, "top": 860, "right": 5750, "bottom": 3290, "left": 4110}, {"solidity": 0.9961563983625423, "top": 840, "right": 3890, "bottom": 3265, "left": 2260}, {"solidity": 0.9948126190980309, "top": 805, "right": 2040, "bottom": 3230, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723062f.jpg"} -{"rects": [{"solidity": 0.9963258437070438, "top": 715, "right": 2050, "bottom": 3145, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722667f.jpg"} -{"rects": [{"solidity": 0.9963258785942491, "top": 2420, "right": 2545, "bottom": 3900, "left": 460}, {"solidity": 0.9943656315819668, "top": 650, "right": 2555, "bottom": 2130, "left": 470}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716155f.jpg"} -{"rects": [{"solidity": 0.9963260538930994, "top": 2285, "right": 3100, "bottom": 3915, "left": 670}, {"solidity": 0.9966054989626121, "top": 425, "right": 3095, "bottom": 2035, "left": 670}, {"solidity": 0.99768459884782, "top": 4145, "right": 3095, "bottom": 5750, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729758f.jpg"} -{"rects": [{"solidity": 0.9963263734022961, "top": 970, "right": 3165, "bottom": 2585, "left": 750}, {"solidity": 0.9949816814974924, "top": 3290, "right": 3160, "bottom": 4895, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730870f.jpg"} -{"rects": [{"solidity": 0.996326399265917, "top": 4105, "right": 3365, "bottom": 5750, "left": 915}, {"solidity": 0.9957400675977297, "top": 405, "right": 3255, "bottom": 2050, "left": 800}, {"solidity": 0.9957801438922798, "top": 2270, "right": 3310, "bottom": 3895, "left": 870}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733234f.jpg"} -{"rects": [{"solidity": 0.9963264664667286, "top": 400, "right": 3050, "bottom": 2005, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728344f.jpg"} -{"rects": [{"solidity": 0.9963265963207423, "top": 590, "right": 2730, "bottom": 2010, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704806f.jpg"} -{"rects": [{"solidity": 0.9963267782481964, "top": 805, "right": 2030, "bottom": 3205, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703016f.jpg"} -{"rects": [{"solidity": 0.9963271948387761, "top": 810, "right": 3795, "bottom": 3235, "left": 2170}, {"solidity": 0.9966096501093714, "top": 825, "right": 1990, "bottom": 3240, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730435f.jpg"} -{"rects": [{"solidity": 0.9963272571595954, "top": 435, "right": 3130, "bottom": 2055, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701953f.jpg"} -{"rects": [{"solidity": 0.9963273128607436, "top": 555, "right": 2780, "bottom": 2295, "left": 830}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700504f.jpg"} -{"rects": [{"solidity": 0.9963273235985021, "top": 830, "right": 2100, "bottom": 3245, "left": 500}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712434f.jpg"} -{"rects": [{"solidity": 0.9963273582610106, "top": 400, "right": 3325, "bottom": 2010, "left": 900}, {"solidity": 0.9916959093961006, "top": 2250, "right": 3050, "bottom": 3455, "left": 1390}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705446f.jpg"} -{"rects": [{"solidity": 0.9963273632619011, "top": 475, "right": 3055, "bottom": 2095, "left": 650}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706506f.jpg"} -{"rects": [{"solidity": 0.9963274210621433, "top": 400, "right": 3130, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729538f.jpg"} -{"rects": [{"solidity": 0.9963274897995035, "top": 850, "right": 2050, "bottom": 3240, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713854f.jpg"} -{"rects": [{"solidity": 0.9963276610050107, "top": 2280, "right": 3175, "bottom": 3910, "left": 740}, {"solidity": 0.996968121968122, "top": 440, "right": 3180, "bottom": 2060, "left": 750}, {"solidity": 0.9958952610691775, "top": 4130, "right": 3155, "bottom": 5745, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733958f.jpg"} -{"rects": [{"solidity": 0.9963277088735327, "top": 540, "right": 2920, "bottom": 2175, "left": 500}, {"solidity": 0.9993713838535453, "top": 2235, "right": 2930, "bottom": 3855, "left": 510}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706333f.jpg"} -{"rects": [{"solidity": 0.9963277587472081, "top": 2240, "right": 3135, "bottom": 3870, "left": 710}, {"solidity": 0.9960472260980198, "top": 420, "right": 3135, "bottom": 2040, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731830f.jpg"} -{"rects": [{"solidity": 0.9963279155388504, "top": 810, "right": 2005, "bottom": 3240, "left": 390}, {"solidity": 0.997652378612559, "top": 830, "right": 3875, "bottom": 3235, "left": 2245}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710055f.jpg"} -{"rects": [{"solidity": 0.9963279939860059, "top": 740, "right": 2050, "bottom": 3170, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705097f.jpg"} -{"rects": [{"solidity": 0.996328206779934, "top": 870, "right": 3865, "bottom": 3290, "left": 2245}, {"solidity": 0.9967413888781343, "top": 890, "right": 5725, "bottom": 3305, "left": 4105}, {"solidity": 0.9957173656116473, "top": 865, "right": 1990, "bottom": 3275, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728940f.jpg"} -{"rects": [{"solidity": 0.9963282545474706, "top": 2480, "right": 3400, "bottom": 4330, "left": 650}, {"solidity": 0.9966948218876239, "top": 4615, "right": 3375, "bottom": 6440, "left": 645}, {"solidity": 0.996479608200502, "top": 445, "right": 3390, "bottom": 2270, "left": 670}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/708304f.jpg"} -{"rects": [{"solidity": 0.9963282611556349, "top": 450, "right": 3175, "bottom": 2080, "left": 755}, {"solidity": 0.9967296922614566, "top": 2270, "right": 3160, "bottom": 3890, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710043f.jpg"} -{"rects": [{"solidity": 0.996328288938213, "top": 410, "right": 3330, "bottom": 2470, "left": 255}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711868f.jpg"} -{"rects": [{"solidity": 0.996328310760217, "top": 400, "right": 3085, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729282f.jpg"} -{"rects": [{"solidity": 0.9963283305259572, "top": 385, "right": 3105, "bottom": 3100, "left": 615}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722719f.jpg"} -{"rects": [{"solidity": 0.9963283465439021, "top": 1100, "right": 3460, "bottom": 5070, "left": 405}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721091f.jpg"} -{"rects": [{"solidity": 0.99632835288573, "top": 410, "right": 3130, "bottom": 2065, "left": 690}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/702791f.jpg"} -{"rects": [{"solidity": 0.9963286627935362, "top": 590, "right": 3195, "bottom": 2200, "left": 780}, {"solidity": 0.9957043415438988, "top": 2365, "right": 3195, "bottom": 3970, "left": 780}, {"solidity": 0.9947800198919958, "top": 4130, "right": 3180, "bottom": 5720, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/733171f.jpg"} -{"rects": [{"solidity": 0.99632867915598, "top": 790, "right": 2395, "bottom": 3220, "left": 760}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705005f.jpg"} -{"rects": [{"solidity": 0.996328768523903, "top": 885, "right": 3800, "bottom": 3315, "left": 2160}, {"solidity": 0.9959540648503773, "top": 910, "right": 5655, "bottom": 3345, "left": 4025}, {"solidity": 0.9982160728908067, "top": 895, "right": 1975, "bottom": 3295, "left": 360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712389f.jpg"} -{"rects": [{"solidity": 0.99632883127728, "top": 295, "right": 5090, "bottom": 3540, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725946f.jpg"} -{"rects": [{"solidity": 0.9963288524526869, "top": 2135, "right": 3090, "bottom": 3775, "left": 670}, {"solidity": 0.9934104837910822, "top": 440, "right": 2890, "bottom": 1920, "left": 905}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/719309f.jpg"} -{"rects": [{"solidity": 0.996328930407193, "top": 470, "right": 3345, "bottom": 2100, "left": 930}, {"solidity": 0.9963091612585177, "top": 2290, "right": 3340, "bottom": 3905, "left": 935}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/705056f.jpg"} -{"rects": [{"solidity": 0.9963290626936648, "top": 2265, "right": 3185, "bottom": 3905, "left": 735}, {"solidity": 0.9961994116243937, "top": 4115, "right": 3170, "bottom": 5745, "left": 720}, {"solidity": 0.9968646426939144, "top": 435, "right": 3180, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705591f.jpg"} -{"rects": [{"solidity": 0.9963291413359813, "top": 2015, "right": 2725, "bottom": 3355, "left": 935}, {"solidity": 0.9974440013575429, "top": 645, "right": 2700, "bottom": 1990, "left": 930}, {"solidity": 0.9955128885117217, "top": 665, "right": 5215, "bottom": 2015, "left": 3445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726306f.jpg"} -{"rects": [{"solidity": 0.9963291421513971, "top": 590, "right": 3300, "bottom": 2515, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713883f.jpg"} -{"rects": [{"solidity": 0.9963295805647441, "top": 795, "right": 2045, "bottom": 3225, "left": 430}, {"solidity": 0.9969686208677686, "top": 815, "right": 3925, "bottom": 3225, "left": 2300}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717233f.jpg"} -{"rects": [{"solidity": 0.9963296208747684, "top": 4060, "right": 3210, "bottom": 5705, "left": 765}, {"solidity": 0.9963095890497746, "top": 2265, "right": 3205, "bottom": 3905, "left": 770}, {"solidity": 0.9962805627559501, "top": 450, "right": 3195, "bottom": 2080, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700055f.jpg"} -{"rects": [{"solidity": 0.9963296223517984, "top": 885, "right": 3930, "bottom": 3310, "left": 2295}, {"solidity": 0.9965503114798872, "top": 865, "right": 2020, "bottom": 3275, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728484f.jpg"} -{"rects": [{"solidity": 0.9963298201631106, "top": 480, "right": 5130, "bottom": 3720, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721290f.jpg"} -{"rects": [{"solidity": 0.9963298275094395, "top": 860, "right": 4340, "bottom": 3600, "left": 2500}, {"solidity": 0.9967371964657595, "top": 885, "right": 2265, "bottom": 3615, "left": 435}, {"solidity": 0.995612218090696, "top": 840, "right": 6400, "bottom": 3575, "left": 4560}], "shape": {"h": 4410, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711357f.jpg"} -{"rects": [{"solidity": 0.9963298656363153, "top": 755, "right": 3825, "bottom": 3160, "left": 2220}, {"solidity": 0.9725705638010262, "top": 865, "right": 1970, "bottom": 3085, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712134f.jpg"} -{"rects": [{"solidity": 0.9963299160135475, "top": 630, "right": 5105, "bottom": 3040, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726014f.jpg"} -{"rects": [{"solidity": 0.9963300527453873, "top": 850, "right": 3630, "bottom": 2355, "left": 1550}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507939.jpg"} -{"rects": [{"solidity": 0.9963301334340815, "top": 985, "right": 2710, "bottom": 4015, "left": 280}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516859.jpg"} -{"rects": [{"solidity": 0.9963305483468052, "top": 430, "right": 3180, "bottom": 2045, "left": 765}, {"solidity": 0.9999625131204078, "top": 4250, "right": 3850, "bottom": 6010, "left": 3085}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700248f.jpg"} -{"rects": [{"solidity": 0.9963307915168466, "top": 1275, "right": 3340, "bottom": 4690, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721483f.jpg"} -{"rects": [{"solidity": 0.9963308035318784, "top": 730, "right": 3075, "bottom": 2630, "left": 380}, {"solidity": 0.9971873051053394, "top": 3240, "right": 3060, "bottom": 5120, "left": 360}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714900f.jpg"} -{"rects": [{"solidity": 0.996330926351567, "top": 480, "right": 3195, "bottom": 2090, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721471f.jpg"} -{"rects": [{"solidity": 0.9963309305799077, "top": 2285, "right": 3195, "bottom": 3905, "left": 785}, {"solidity": 0.996284187915788, "top": 400, "right": 3185, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724750f.jpg"} -{"rects": [{"solidity": 0.9963311094904969, "top": 750, "right": 2655, "bottom": 3505, "left": 615}, {"solidity": 0.998300461670431, "top": 885, "right": 4830, "bottom": 3310, "left": 3215}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710846f.jpg"} -{"rects": [{"solidity": 0.9963311950133312, "top": 575, "right": 3065, "bottom": 2935, "left": 1570}, {"solidity": 0.9531625048697423, "top": 3555, "right": 1955, "bottom": 5540, "left": 395}], "shape": {"h": 6005, "w": 4610}, "file": "/usr/local/google/home/danvk/milstein/465634.jpg"} -{"rects": [{"solidity": 0.996331213139735, "top": 500, "right": 5055, "bottom": 3740, "left": 1020}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705972f.jpg"} -{"rects": [{"solidity": 0.9963313016599183, "top": 355, "right": 5105, "bottom": 3600, "left": 1040}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708279f.jpg"} -{"rects": [{"solidity": 0.9963313863514757, "top": 2200, "right": 3135, "bottom": 3835, "left": 700}, {"solidity": 0.9961454785470089, "top": 395, "right": 3145, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706733f.jpg"} -{"rects": [{"solidity": 0.9963314694831514, "top": 3040, "right": 2385, "bottom": 4345, "left": 420}, {"solidity": 0.9957886184714587, "top": 380, "right": 2375, "bottom": 1645, "left": 435}, {"solidity": 0.9920503097349755, "top": 1720, "right": 2370, "bottom": 2970, "left": 435}], "shape": {"h": 4655, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/726635f.jpg"} -{"rects": [{"solidity": 0.996331480103314, "top": 595, "right": 2825, "bottom": 2095, "left": 895}, {"solidity": 0.9948164964055997, "top": 2105, "right": 2815, "bottom": 3495, "left": 880}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718981f.jpg"} -{"rects": [{"solidity": 0.9963315247943308, "top": 410, "right": 3035, "bottom": 2045, "left": 605}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728398f.jpg"} -{"rects": [{"solidity": 0.9963315884575019, "top": 805, "right": 2100, "bottom": 3220, "left": 470}, {"solidity": 0.9962669245647969, "top": 805, "right": 3930, "bottom": 3225, "left": 2305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723334f.jpg"} -{"rects": [{"solidity": 0.9963318599159292, "top": 800, "right": 4010, "bottom": 3240, "left": 2375}, {"solidity": 0.9966158078239452, "top": 810, "right": 2240, "bottom": 3245, "left": 620}, {"solidity": 0.9976634615384615, "top": 785, "right": 5770, "bottom": 3220, "left": 4155}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733223f.jpg"} -{"rects": [{"solidity": 0.9963320139757359, "top": 830, "right": 2060, "bottom": 3250, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715208f.jpg"} -{"rects": [{"solidity": 0.9963321715826435, "top": 295, "right": 3190, "bottom": 1905, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707069f.jpg"} -{"rects": [{"solidity": 0.9963321913061975, "top": 2185, "right": 3365, "bottom": 3815, "left": 950}, {"solidity": 0.9969571016069093, "top": 430, "right": 3390, "bottom": 2050, "left": 980}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704745f.jpg"} -{"rects": [{"solidity": 0.996332223348294, "top": 355, "right": 3095, "bottom": 1985, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700963f.jpg"} -{"rects": [{"solidity": 0.9963323748606302, "top": 845, "right": 2085, "bottom": 3245, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712427f.jpg"} -{"rects": [{"solidity": 0.9963323843156275, "top": 420, "right": 3075, "bottom": 1995, "left": 670}, {"solidity": 0.9978020292039944, "top": 2290, "right": 3065, "bottom": 3875, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734729f.jpg"} -{"rects": [{"solidity": 0.9963328787225978, "top": 445, "right": 5665, "bottom": 2075, "left": 3260}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705539f.jpg"} -{"rects": [{"solidity": 0.9963333033875352, "top": 425, "right": 3220, "bottom": 2020, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725967f.jpg"} -{"rects": [{"solidity": 0.9963333698847586, "top": 1030, "right": 3395, "bottom": 4985, "left": 340}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708522f.jpg"} -{"rects": [{"solidity": 0.9963334404868376, "top": 2290, "right": 3305, "bottom": 3930, "left": 875}, {"solidity": 0.996743006807148, "top": 4165, "right": 3270, "bottom": 5790, "left": 855}, {"solidity": 0.9961702252063498, "top": 430, "right": 3300, "bottom": 2040, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730789f.jpg"} -{"rects": [{"solidity": 0.9963334460088715, "top": 2305, "right": 3080, "bottom": 3875, "left": 725}, {"solidity": 0.992618931611084, "top": 4185, "right": 3075, "bottom": 5735, "left": 695}, {"solidity": 0.9944257711825898, "top": 470, "right": 3065, "bottom": 2040, "left": 715}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/719800f.jpg"} -{"rects": [{"solidity": 0.9963335184340479, "top": 685, "right": 3235, "bottom": 2585, "left": 555}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713594f.jpg"} -{"rects": [{"solidity": 0.9963336506547972, "top": 805, "right": 2145, "bottom": 3225, "left": 520}, {"solidity": 0.9951460416815777, "top": 835, "right": 3970, "bottom": 3250, "left": 2340}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722076f.jpg"} -{"rects": [{"solidity": 0.9963337052762763, "top": 475, "right": 3280, "bottom": 2500, "left": 235}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721962f.jpg"} -{"rects": [{"solidity": 0.9963337652839969, "top": 740, "right": 2040, "bottom": 3165, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704731f.jpg"} -{"rects": [{"solidity": 0.9963339899321515, "top": 2320, "right": 3080, "bottom": 3955, "left": 660}, {"solidity": 0.9965518240560981, "top": 435, "right": 3090, "bottom": 2065, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728519f.jpg"} -{"rects": [{"solidity": 0.9963340807537622, "top": 405, "right": 3165, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706885f.jpg"} -{"rects": [{"solidity": 0.9963341775439963, "top": 2245, "right": 3210, "bottom": 3860, "left": 795}, {"solidity": 0.9991203377902885, "top": 420, "right": 3200, "bottom": 2025, "left": 795}, {"solidity": 0.9961448819308886, "top": 4060, "right": 3195, "bottom": 5675, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702611f.jpg"} -{"rects": [{"solidity": 0.996334284895902, "top": 745, "right": 1970, "bottom": 3170, "left": 345}, {"solidity": 0.9969425140487894, "top": 735, "right": 3795, "bottom": 3140, "left": 2190}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714661f.jpg"} -{"rects": [{"solidity": 0.9963345519255692, "top": 780, "right": 2050, "bottom": 3200, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709328f.jpg"} -{"rects": [{"solidity": 0.9963345774715284, "top": 2080, "right": 3220, "bottom": 3720, "left": 800}, {"solidity": 0.9962440771986594, "top": 3925, "right": 3205, "bottom": 5560, "left": 790}, {"solidity": 0.9978494415641362, "top": 275, "right": 3205, "bottom": 1895, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733387f.jpg"} -{"rects": [{"solidity": 0.9963345809980024, "top": 975, "right": 5730, "bottom": 3395, "left": 4095}, {"solidity": 0.9968053602555712, "top": 950, "right": 3895, "bottom": 3360, "left": 2270}, {"solidity": 0.9971671663876017, "top": 940, "right": 2060, "bottom": 3345, "left": 440}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720424f.jpg"} -{"rects": [{"solidity": 0.996334662380249, "top": 805, "right": 2050, "bottom": 3230, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705343f.jpg"} -{"rects": [{"solidity": 0.9963348117610275, "top": 680, "right": 3010, "bottom": 2480, "left": 1795}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509743.jpg"} -{"rects": [{"solidity": 0.9963350684527057, "top": 415, "right": 3115, "bottom": 2045, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700143f.jpg"} -{"rects": [{"solidity": 0.9963351336578548, "top": 2215, "right": 3165, "bottom": 4310, "left": 460}, {"solidity": 0.9964932901704975, "top": 380, "right": 3115, "bottom": 2000, "left": 720}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/707714f.jpg"} -{"rects": [{"solidity": 0.996335372975779, "top": 275, "right": 5070, "bottom": 3530, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727341f.jpg"} -{"rects": [{"solidity": 0.9963356261875286, "top": 440, "right": 3185, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734635f.jpg"} -{"rects": [{"solidity": 0.9963357478435578, "top": 365, "right": 5110, "bottom": 3645, "left": 1040}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717230f.jpg"} -{"rects": [{"solidity": 0.9963358071991746, "top": 2340, "right": 3225, "bottom": 4005, "left": 830}, {"solidity": 0.9972717916852755, "top": 415, "right": 3210, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731321f.jpg"} -{"rects": [{"solidity": 0.9963359137652696, "top": 780, "right": 2085, "bottom": 3215, "left": 455}, {"solidity": 0.9973325782609955, "top": 775, "right": 3930, "bottom": 3195, "left": 2310}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717938f.jpg"} -{"rects": [{"solidity": 0.9963359152102063, "top": 380, "right": 3300, "bottom": 2190, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714731f.jpg"} -{"rects": [{"solidity": 0.9963361095722048, "top": 405, "right": 3340, "bottom": 2390, "left": 575}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706802f.jpg"} -{"rects": [{"solidity": 0.9963366555782599, "top": 440, "right": 3185, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703910f.jpg"} -{"rects": [{"solidity": 0.9963366661730716, "top": 430, "right": 3180, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702016f.jpg"} -{"rects": [{"solidity": 0.9963367343953662, "top": 815, "right": 2025, "bottom": 3240, "left": 420}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706141f.jpg"} -{"rects": [{"solidity": 0.9963367396345659, "top": 2135, "right": 3140, "bottom": 3765, "left": 700}, {"solidity": 0.9955159821151378, "top": 4015, "right": 3130, "bottom": 5665, "left": 685}, {"solidity": 0.9969510524670369, "top": 335, "right": 3135, "bottom": 1945, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731963f.jpg"} -{"rects": [{"solidity": 0.9963367609254499, "top": 660, "right": 3860, "bottom": 3085, "left": 2235}, {"solidity": 0.9962788863169056, "top": 660, "right": 2005, "bottom": 3080, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725020f.jpg"} -{"rects": [{"solidity": 0.9963369362684307, "top": 555, "right": 5320, "bottom": 3640, "left": 3330}, {"solidity": 0.9948704168638555, "top": 2060, "right": 2820, "bottom": 3630, "left": 805}, {"solidity": 0.9978271150478674, "top": 530, "right": 2780, "bottom": 2045, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701053f.jpg"} -{"rects": [{"solidity": 0.9963369505816223, "top": 735, "right": 2255, "bottom": 3195, "left": 610}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717516f.jpg"} -{"rects": [{"solidity": 0.9963370663405063, "top": 370, "right": 3265, "bottom": 2010, "left": 840}, {"solidity": 0.9961734530912622, "top": 4010, "right": 3210, "bottom": 5660, "left": 775}, {"solidity": 0.9956903514269654, "top": 2195, "right": 3250, "bottom": 3825, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705807f.jpg"} -{"rects": [{"solidity": 0.9963370796742048, "top": 440, "right": 4830, "bottom": 3480, "left": 1010}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718711f.jpg"} -{"rects": [{"solidity": 0.996337196237681, "top": 405, "right": 3070, "bottom": 2030, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702129f.jpg"} -{"rects": [{"solidity": 0.9963373332501158, "top": 625, "right": 3175, "bottom": 2240, "left": 775}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715042f.jpg"} -{"rects": [{"solidity": 0.9963373394356144, "top": 890, "right": 3850, "bottom": 3310, "left": 2220}, {"solidity": 0.9959337711349715, "top": 875, "right": 1985, "bottom": 3285, "left": 360}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734581f.jpg"} -{"rects": [{"solidity": 0.9963373559637182, "top": 1505, "right": 3030, "bottom": 4575, "left": 975}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721247f.jpg"} -{"rects": [{"solidity": 0.9963373846999065, "top": 2070, "right": 2670, "bottom": 3510, "left": 840}, {"solidity": 0.9961762422360249, "top": 2075, "right": 5150, "bottom": 3500, "left": 3325}, {"solidity": 0.9972986785427466, "top": 630, "right": 2655, "bottom": 2060, "left": 840}, {"solidity": 0.9956138839525256, "top": 655, "right": 5185, "bottom": 2050, "left": 3330}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702776f.jpg"} -{"rects": [{"solidity": 0.9963374501283322, "top": 760, "right": 2035, "bottom": 3205, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702924f.jpg"} -{"rects": [{"solidity": 0.9963374746409929, "top": 2285, "right": 3260, "bottom": 3910, "left": 815}, {"solidity": 0.9960075467502869, "top": 430, "right": 3245, "bottom": 2030, "left": 835}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732100f.jpg"} -{"rects": [{"solidity": 0.9963375277667624, "top": 2205, "right": 3180, "bottom": 3820, "left": 755}, {"solidity": 0.9967601262254823, "top": 395, "right": 3175, "bottom": 2000, "left": 755}, {"solidity": 0.9976162445635781, "top": 4040, "right": 3180, "bottom": 5645, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734206f.jpg"} -{"rects": [{"solidity": 0.9963376138298048, "top": 810, "right": 2065, "bottom": 3195, "left": 450}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717751f.jpg"} -{"rects": [{"solidity": 0.9963378157275795, "top": 860, "right": 3940, "bottom": 3290, "left": 2305}, {"solidity": 0.997251422509403, "top": 860, "right": 2055, "bottom": 3275, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709373f.jpg"} -{"rects": [{"solidity": 0.9963379603626735, "top": 765, "right": 2025, "bottom": 3195, "left": 400}, {"solidity": 0.9970745930185471, "top": 780, "right": 3880, "bottom": 3200, "left": 2270}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708100f.jpg"} -{"rects": [{"solidity": 0.9963380934897292, "top": 790, "right": 2050, "bottom": 3215, "left": 430}, {"solidity": 0.9948967899162376, "top": 750, "right": 5710, "bottom": 3180, "left": 4070}, {"solidity": 0.995853831306823, "top": 790, "right": 3885, "bottom": 3205, "left": 2270}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723309f.jpg"} -{"rects": [{"solidity": 0.9963381051891491, "top": 2235, "right": 3230, "bottom": 3845, "left": 815}, {"solidity": 0.9967449461005246, "top": 435, "right": 3230, "bottom": 2030, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710531f.jpg"} -{"rects": [{"solidity": 0.9963381857462514, "top": 435, "right": 3245, "bottom": 2060, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723408f.jpg"} -{"rects": [{"solidity": 0.9963382731999975, "top": 835, "right": 2395, "bottom": 3275, "left": 760}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707347f.jpg"} -{"rects": [{"solidity": 0.9963385087104445, "top": 4115, "right": 3125, "bottom": 5740, "left": 685}, {"solidity": 0.9968616098020252, "top": 2285, "right": 3135, "bottom": 3905, "left": 700}, {"solidity": 0.9967154316861212, "top": 425, "right": 3140, "bottom": 2045, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734817f.jpg"} -{"rects": [{"solidity": 0.9963385433987363, "top": 595, "right": 2795, "bottom": 2985, "left": 1205}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708081f.jpg"} -{"rects": [{"solidity": 0.9963385963334576, "top": 850, "right": 3870, "bottom": 3275, "left": 2245}, {"solidity": 0.995621080497584, "top": 860, "right": 2035, "bottom": 3290, "left": 420}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701143f.jpg"} -{"rects": [{"solidity": 0.9963386113560556, "top": 385, "right": 3150, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701284f.jpg"} -{"rects": [{"solidity": 0.9963387998838515, "top": 2275, "right": 3190, "bottom": 3915, "left": 735}, {"solidity": 0.9966952318729345, "top": 430, "right": 3195, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732112f.jpg"} -{"rects": [{"solidity": 0.9963389121338913, "top": 730, "right": 5705, "bottom": 3160, "left": 4065}, {"solidity": 0.9996151490175075, "top": 750, "right": 3840, "bottom": 3170, "left": 2220}, {"solidity": 0.9945815368032029, "top": 745, "right": 2030, "bottom": 3180, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723798f.jpg"} -{"rects": [{"solidity": 0.9963396228085317, "top": 430, "right": 2925, "bottom": 1930, "left": 1025}, {"solidity": 0.9932441816186188, "top": 2180, "right": 2925, "bottom": 3695, "left": 1040}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700971f.jpg"} -{"rects": [{"solidity": 0.9963399102761704, "top": 1285, "right": 3230, "bottom": 4925, "left": 515}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708583f.jpg"} -{"rects": [{"solidity": 0.9963399382019716, "top": 2280, "right": 3165, "bottom": 3990, "left": 760}, {"solidity": 0.9954500950296608, "top": 4190, "right": 3175, "bottom": 5835, "left": 745}, {"solidity": 0.9933013426397169, "top": 355, "right": 3170, "bottom": 1970, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701799f.jpg"} -{"rects": [{"solidity": 0.9963400171971244, "top": 800, "right": 3770, "bottom": 3235, "left": 2135}, {"solidity": 0.996118374827415, "top": 900, "right": 1865, "bottom": 2705, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727727f.jpg"} -{"rects": [{"solidity": 0.9963401658782961, "top": 765, "right": 2010, "bottom": 3195, "left": 385}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724065f.jpg"} -{"rects": [{"solidity": 0.9963403031995202, "top": 905, "right": 3305, "bottom": 4990, "left": 310}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718676f.jpg"} -{"rects": [{"solidity": 0.9963403262624203, "top": 430, "right": 3075, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729170f.jpg"} -{"rects": [{"solidity": 0.9963404499351195, "top": 690, "right": 5280, "bottom": 2100, "left": 3440}, {"solidity": 0.9985502561540647, "top": 690, "right": 2690, "bottom": 2095, "left": 860}, {"solidity": 0.9963169851400923, "top": 2175, "right": 2685, "bottom": 3595, "left": 875}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718100f.jpg"} -{"rects": [{"solidity": 0.9963405269769668, "top": 920, "right": 2050, "bottom": 3350, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729357f.jpg"} -{"rects": [{"solidity": 0.9963405924322878, "top": 620, "right": 3325, "bottom": 2550, "left": 590}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718512f.jpg"} -{"rects": [{"solidity": 0.9963406456557141, "top": 2350, "right": 3125, "bottom": 3990, "left": 690}, {"solidity": 0.9949966956161841, "top": 450, "right": 3110, "bottom": 2050, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701531f.jpg"} -{"rects": [{"solidity": 0.9963407418840357, "top": 2080, "right": 3080, "bottom": 3735, "left": 655}, {"solidity": 0.9964415815481718, "top": 410, "right": 3035, "bottom": 2050, "left": 635}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730935f.jpg"} -{"rects": [{"solidity": 0.9963410480561817, "top": 380, "right": 3250, "bottom": 2000, "left": 830}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/706514f.jpg"} -{"rects": [{"solidity": 0.996341092225622, "top": 495, "right": 3000, "bottom": 2130, "left": 580}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706583f.jpg"} -{"rects": [{"solidity": 0.9963411763501827, "top": 610, "right": 2610, "bottom": 1990, "left": 810}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703814f.jpg"} -{"rects": [{"solidity": 0.9963412490173119, "top": 765, "right": 2025, "bottom": 3155, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720472f.jpg"} -{"rects": [{"solidity": 0.9963413588421925, "top": 2175, "right": 2595, "bottom": 3625, "left": 770}, {"solidity": 0.9975568942436412, "top": 675, "right": 2595, "bottom": 2120, "left": 770}, {"solidity": 0.9950392977442074, "top": 2110, "right": 5185, "bottom": 3470, "left": 3365}, {"solidity": 0.9938433461990267, "top": 680, "right": 5160, "bottom": 2045, "left": 3385}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716578f.jpg"} -{"rects": [{"solidity": 0.9963416302628206, "top": 565, "right": 5000, "bottom": 3780, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702327f.jpg"} -{"rects": [{"solidity": 0.9963416646279365, "top": 1185, "right": 3175, "bottom": 4850, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721281f.jpg"} -{"rects": [{"solidity": 0.9963416789768065, "top": 130, "right": 2775, "bottom": 2560, "left": 1115}, {"solidity": 0.9965044537970291, "top": 2620, "right": 3165, "bottom": 4260, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734108f.jpg"} -{"rects": [{"solidity": 0.9963416891916911, "top": 3035, "right": 2530, "bottom": 4095, "left": 915}, {"solidity": 0.9968734682965229, "top": 1355, "right": 2505, "bottom": 2410, "left": 890}], "shape": {"h": 4645, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509589.jpg"} -{"rects": [{"solidity": 0.9963417045679257, "top": 570, "right": 2460, "bottom": 2045, "left": 370}, {"solidity": 0.9962474830679114, "top": 2475, "right": 2470, "bottom": 3940, "left": 385}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716052f.jpg"} -{"rects": [{"solidity": 0.9963418113964918, "top": 800, "right": 5735, "bottom": 3235, "left": 4105}, {"solidity": 0.9966739535260303, "top": 800, "right": 3850, "bottom": 3220, "left": 2240}, {"solidity": 0.9968686556982995, "top": 805, "right": 2005, "bottom": 3225, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729353f.jpg"} -{"rects": [{"solidity": 0.996341944737695, "top": 2390, "right": 3080, "bottom": 4015, "left": 660}, {"solidity": 0.9964195098077097, "top": 470, "right": 3080, "bottom": 2095, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719217f.jpg"} -{"rects": [{"solidity": 0.9963422221942896, "top": 2730, "right": 3205, "bottom": 4385, "left": 755}, {"solidity": 0.995359570016365, "top": 220, "right": 2700, "bottom": 2675, "left": 1040}, {"solidity": 0.998087289731766, "top": 4415, "right": 3215, "bottom": 6010, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727021f.jpg"} -{"rects": [{"solidity": 0.9963422367261086, "top": 945, "right": 5990, "bottom": 2980, "left": 2755}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725150f.jpg"} -{"rects": [{"solidity": 0.9963423628136897, "top": 405, "right": 3255, "bottom": 2005, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727305f.jpg"} -{"rects": [{"solidity": 0.9963423979187729, "top": 740, "right": 2010, "bottom": 3160, "left": 380}, {"solidity": 0.9984191771946874, "top": 730, "right": 3815, "bottom": 3150, "left": 2210}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705550f.jpg"} -{"rects": [{"solidity": 0.9963424086014413, "top": 540, "right": 3130, "bottom": 2140, "left": 740}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/711593f.jpg"} -{"rects": [{"solidity": 0.996342548991782, "top": 860, "right": 3910, "bottom": 3285, "left": 2295}, {"solidity": 0.9967968608589972, "top": 855, "right": 2075, "bottom": 3270, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709710f.jpg"} -{"rects": [{"solidity": 0.9963426511803564, "top": 765, "right": 2040, "bottom": 3155, "left": 450}, {"solidity": 0.9915998278625475, "top": 790, "right": 5740, "bottom": 3155, "left": 4165}, {"solidity": 0.9592537620662384, "top": 790, "right": 3895, "bottom": 3075, "left": 2315}], "shape": {"h": 3895, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717566f.jpg"} -{"rects": [{"solidity": 0.9963426899515406, "top": 385, "right": 3285, "bottom": 1995, "left": 875}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730523f.jpg"} -{"rects": [{"solidity": 0.9963428026423167, "top": 815, "right": 2095, "bottom": 3200, "left": 520}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723436f.jpg"} -{"rects": [{"solidity": 0.9963428468591224, "top": 770, "right": 2030, "bottom": 3195, "left": 415}, {"solidity": 0.9964720214407536, "top": 775, "right": 3845, "bottom": 3190, "left": 2235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706645f.jpg"} -{"rects": [{"solidity": 0.9963434057470547, "top": 655, "right": 3325, "bottom": 2715, "left": 265}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715644f.jpg"} -{"rects": [{"solidity": 0.9963435085675515, "top": 1060, "right": 5445, "bottom": 2695, "left": 620}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734710f.jpg"} -{"rects": [{"solidity": 0.9963435182796643, "top": 585, "right": 4900, "bottom": 3590, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732874f.jpg"} -{"rects": [{"solidity": 0.9963435278185306, "top": 805, "right": 2020, "bottom": 3230, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714472f.jpg"} -{"rects": [{"solidity": 0.9963436044515165, "top": 655, "right": 2585, "bottom": 2080, "left": 750}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707148f.jpg"} -{"rects": [{"solidity": 0.9963436470868133, "top": 340, "right": 1890, "bottom": 1220, "left": 740}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727141f.jpg"} -{"rects": [{"solidity": 0.9963436478878784, "top": 585, "right": 2770, "bottom": 2005, "left": 965}, {"solidity": 0.9971803583068323, "top": 595, "right": 4920, "bottom": 2005, "left": 3110}, {"solidity": 0.9958780007557827, "top": 2260, "right": 2755, "bottom": 3675, "left": 950}, {"solidity": 0.9959417821087703, "top": 2255, "right": 4925, "bottom": 3650, "left": 3115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725707f.jpg"} -{"rects": [{"solidity": 0.9963437399420663, "top": 795, "right": 2075, "bottom": 3225, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720200f.jpg"} -{"rects": [{"solidity": 0.9963438305762378, "top": 310, "right": 2265, "bottom": 1520, "left": 465}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715862f.jpg"} -{"rects": [{"solidity": 0.9963439119170985, "top": 820, "right": 2010, "bottom": 3240, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705714f.jpg"} -{"rects": [{"solidity": 0.9963441257854291, "top": 465, "right": 3115, "bottom": 2090, "left": 705}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711137f.jpg"} -{"rects": [{"solidity": 0.9963441409626844, "top": 1190, "right": 3570, "bottom": 5275, "left": 305}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/720554f.jpg"} -{"rects": [{"solidity": 0.9963441579288227, "top": 590, "right": 4870, "bottom": 3570, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709928f.jpg"} -{"rects": [{"solidity": 0.996344224033614, "top": 405, "right": 3210, "bottom": 2040, "left": 775}, {"solidity": 0.9982887012464817, "top": 2290, "right": 3170, "bottom": 3905, "left": 750}, {"solidity": 0.9951282174799685, "top": 4120, "right": 3180, "bottom": 5760, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733891f.jpg"} -{"rects": [{"solidity": 0.9963442886366423, "top": 2250, "right": 3215, "bottom": 3865, "left": 795}, {"solidity": 0.9959448290112615, "top": 4070, "right": 3205, "bottom": 5685, "left": 790}, {"solidity": 0.9983159912820164, "top": 445, "right": 3200, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709250f.jpg"} -{"rects": [{"solidity": 0.9963443052026661, "top": 975, "right": 1985, "bottom": 2815, "left": 535}, {"solidity": 0.9925149106682359, "top": 1005, "right": 3460, "bottom": 2785, "left": 2375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732962f.jpg"} -{"rects": [{"solidity": 0.9963444243066717, "top": 400, "right": 3135, "bottom": 1970, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721746f.jpg"} -{"rects": [{"solidity": 0.9963444287180097, "top": 820, "right": 3780, "bottom": 3215, "left": 2180}, {"solidity": 0.9953067693380022, "top": 820, "right": 2020, "bottom": 3210, "left": 430}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717797f.jpg"} -{"rects": [{"solidity": 0.9963444457924412, "top": 400, "right": 3200, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700675f.jpg"} -{"rects": [{"solidity": 0.9963444759717736, "top": 390, "right": 3160, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/700875f.jpg"} -{"rects": [{"solidity": 0.9963446374022384, "top": 415, "right": 3030, "bottom": 2030, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729532f.jpg"} -{"rects": [{"solidity": 0.9963447021046545, "top": 805, "right": 2060, "bottom": 3215, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730367f.jpg"} -{"rects": [{"solidity": 0.9963450647052925, "top": 420, "right": 3175, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719497f.jpg"} -{"rects": [{"solidity": 0.99634507109457, "top": 625, "right": 2865, "bottom": 2050, "left": 1005}, {"solidity": 0.995907831780408, "top": 2210, "right": 2865, "bottom": 3645, "left": 1050}, {"solidity": 0.9956600874832422, "top": 2250, "right": 5100, "bottom": 3675, "left": 3290}, {"solidity": 0.9954494246596908, "top": 635, "right": 5085, "bottom": 2055, "left": 3275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727645f.jpg"} -{"rects": [{"solidity": 0.9963450894051318, "top": 595, "right": 3495, "bottom": 2410, "left": 790}], "shape": {"h": 6895, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711425f.jpg"} -{"rects": [{"solidity": 0.9963450937850827, "top": 340, "right": 3105, "bottom": 1965, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706827f.jpg"} -{"rects": [{"solidity": 0.9963450968122702, "top": 550, "right": 5000, "bottom": 3665, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700712f.jpg"} -{"rects": [{"solidity": 0.996345151661429, "top": 445, "right": 3180, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704156f.jpg"} -{"rects": [{"solidity": 0.996345258126411, "top": 520, "right": 4965, "bottom": 3670, "left": 1070}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709505f.jpg"} -{"rects": [{"solidity": 0.9963453894944349, "top": 2255, "right": 3100, "bottom": 3890, "left": 670}, {"solidity": 0.9958102459414795, "top": 385, "right": 3115, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719563f.jpg"} -{"rects": [{"solidity": 0.9963454498118084, "top": 2255, "right": 3195, "bottom": 3885, "left": 765}, {"solidity": 0.9969932104752667, "top": 4085, "right": 3200, "bottom": 5700, "left": 780}, {"solidity": 0.9964903500875788, "top": 435, "right": 3210, "bottom": 2060, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730876f.jpg"} -{"rects": [{"solidity": 0.9963455127526722, "top": 410, "right": 3160, "bottom": 2005, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719332f.jpg"} -{"rects": [{"solidity": 0.9963455320352526, "top": 470, "right": 5800, "bottom": 2105, "left": 3380}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727775f.jpg"} -{"rects": [{"solidity": 0.9963456042053065, "top": 780, "right": 2040, "bottom": 3200, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713532f.jpg"} -{"rects": [{"solidity": 0.9963456148838803, "top": 430, "right": 4975, "bottom": 3680, "left": 970}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722930f.jpg"} -{"rects": [{"solidity": 0.9963456577815993, "top": 785, "right": 2010, "bottom": 3175, "left": 410}, {"solidity": 0.9957970961146563, "top": 785, "right": 3810, "bottom": 3155, "left": 2220}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712008f.jpg"} -{"rects": [{"solidity": 0.9963459515437125, "top": 405, "right": 3155, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728298f.jpg"} -{"rects": [{"solidity": 0.9963461544855192, "top": 890, "right": 2010, "bottom": 3275, "left": 415}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728953f.jpg"} -{"rects": [{"solidity": 0.9963461862266375, "top": 955, "right": 2365, "bottom": 2450, "left": 360}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507691.jpg"} -{"rects": [{"solidity": 0.9963466874244863, "top": 645, "right": 2560, "bottom": 2090, "left": 730}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704657f.jpg"} -{"rects": [{"solidity": 0.9963468709059761, "top": 880, "right": 3860, "bottom": 3330, "left": 2195}, {"solidity": 0.9965518981910872, "top": 900, "right": 5745, "bottom": 3345, "left": 4095}, {"solidity": 0.9965413865808359, "top": 880, "right": 2000, "bottom": 3305, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731820f.jpg"} -{"rects": [{"solidity": 0.9963471008719466, "top": 635, "right": 3255, "bottom": 2665, "left": 425}, {"solidity": 0.9975517853049252, "top": 3195, "right": 3230, "bottom": 5210, "left": 415}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729419f.jpg"} -{"rects": [{"solidity": 0.9963473594401098, "top": 800, "right": 3145, "bottom": 2710, "left": 465}, {"solidity": 0.9940437829267045, "top": 3295, "right": 3110, "bottom": 5150, "left": 445}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712037f.jpg"} -{"rects": [{"solidity": 0.9963474139734055, "top": 515, "right": 5050, "bottom": 3430, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712812f.jpg"} -{"rects": [{"solidity": 0.9963474830562864, "top": 2265, "right": 3065, "bottom": 3850, "left": 700}, {"solidity": 0.9971455306441642, "top": 390, "right": 3075, "bottom": 1965, "left": 705}, {"solidity": 0.9910515792564422, "top": 4120, "right": 3030, "bottom": 5690, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734703f.jpg"} -{"rects": [{"solidity": 0.9963476605403823, "top": 1005, "right": 3525, "bottom": 5040, "left": 325}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708620f.jpg"} -{"rects": [{"solidity": 0.996347820200379, "top": 810, "right": 2075, "bottom": 3185, "left": 500}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719726f.jpg"} -{"rects": [{"solidity": 0.9963478884615729, "top": 460, "right": 5020, "bottom": 3645, "left": 1040}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718533f.jpg"} -{"rects": [{"solidity": 0.9963480010025095, "top": 430, "right": 3240, "bottom": 2035, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725719f.jpg"} -{"rects": [{"solidity": 0.9963481090689181, "top": 540, "right": 3140, "bottom": 2125, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709614f.jpg"} -{"rects": [{"solidity": 0.9963482486914397, "top": 645, "right": 2615, "bottom": 3705, "left": 470}, {"solidity": 0.996278364781151, "top": 905, "right": 4280, "bottom": 3275, "left": 2690}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716770f.jpg"} -{"rects": [{"solidity": 0.9963483467761727, "top": 2280, "right": 3175, "bottom": 3885, "left": 770}, {"solidity": 0.9970840598555821, "top": 470, "right": 3165, "bottom": 2065, "left": 760}, {"solidity": 0.996221208220692, "top": 4100, "right": 3160, "bottom": 5690, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722884f.jpg"} -{"rects": [{"solidity": 0.996348364057038, "top": 670, "right": 3285, "bottom": 2555, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713585f.jpg"} -{"rects": [{"solidity": 0.9963484827106374, "top": 365, "right": 3340, "bottom": 2270, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724723f.jpg"} -{"rects": [{"solidity": 0.9963485140480779, "top": 2435, "right": 2500, "bottom": 3925, "left": 405}, {"solidity": 0.996191425217663, "top": 640, "right": 2485, "bottom": 2095, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716001f.jpg"} -{"rects": [{"solidity": 0.996348729682063, "top": 2100, "right": 3190, "bottom": 3740, "left": 755}, {"solidity": 0.9965265505208568, "top": 300, "right": 3190, "bottom": 1930, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704445f.jpg"} -{"rects": [{"solidity": 0.996348738180818, "top": 800, "right": 2085, "bottom": 3235, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729018f.jpg"} -{"rects": [{"solidity": 0.9963488183339598, "top": 380, "right": 3345, "bottom": 2310, "left": 620}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/724741f.jpg"} -{"rects": [{"solidity": 0.9963488714112155, "top": 2245, "right": 3275, "bottom": 3875, "left": 845}, {"solidity": 0.9976798143851509, "top": 405, "right": 3285, "bottom": 2020, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729977f.jpg"} -{"rects": [{"solidity": 0.9963488792204157, "top": 415, "right": 3155, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704943f.jpg"} -{"rects": [{"solidity": 0.9963488881841148, "top": 445, "right": 3150, "bottom": 3885, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714268f.jpg"} -{"rects": [{"solidity": 0.9963489934287101, "top": 775, "right": 3215, "bottom": 2620, "left": 590}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714904f.jpg"} -{"rects": [{"solidity": 0.9963491210740054, "top": 605, "right": 1610, "bottom": 2410, "left": 400}, {"solidity": 0.9954341858112989, "top": 610, "right": 2950, "bottom": 2425, "left": 1740}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716503f.jpg"} -{"rects": [{"solidity": 0.9963492130634397, "top": 740, "right": 2015, "bottom": 3155, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725865f.jpg"} -{"rects": [{"solidity": 0.9963494219365953, "top": 435, "right": 3250, "bottom": 2025, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727280f.jpg"} -{"rects": [{"solidity": 0.9963494634866152, "top": 915, "right": 5655, "bottom": 3350, "left": 4020}, {"solidity": 0.9968428800165281, "top": 905, "right": 3830, "bottom": 3325, "left": 2215}, {"solidity": 0.9560570677953732, "top": 940, "right": 2000, "bottom": 3310, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700324f.jpg"} -{"rects": [{"solidity": 0.9963495418401145, "top": 755, "right": 5700, "bottom": 3180, "left": 4085}, {"solidity": 0.9964363280908624, "top": 790, "right": 2020, "bottom": 3200, "left": 400}, {"solidity": 0.9964914667807021, "top": 775, "right": 3850, "bottom": 3180, "left": 2230}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732493f.jpg"} -{"rects": [{"solidity": 0.9963495890016649, "top": 460, "right": 3180, "bottom": 2070, "left": 775}, {"solidity": 0.9969568668960043, "top": 2300, "right": 3180, "bottom": 3890, "left": 785}, {"solidity": 0.9940837418841924, "top": 4135, "right": 3170, "bottom": 5745, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710685f.jpg"} -{"rects": [{"solidity": 0.996349590530818, "top": 415, "right": 3035, "bottom": 2000, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729778f.jpg"} -{"rects": [{"solidity": 0.9963496637848223, "top": 465, "right": 3115, "bottom": 2070, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707548f.jpg"} -{"rects": [{"solidity": 0.9963496721033016, "top": 785, "right": 3575, "bottom": 5275, "left": 210}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712934f.jpg"} -{"rects": [{"solidity": 0.9963497316924264, "top": 410, "right": 3245, "bottom": 2040, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727246f.jpg"} -{"rects": [{"solidity": 0.9963497562227355, "top": 785, "right": 2045, "bottom": 3205, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718558f.jpg"} -{"rects": [{"solidity": 0.996349848896898, "top": 810, "right": 2040, "bottom": 3210, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709478f.jpg"} -{"rects": [{"solidity": 0.9963498639274495, "top": 990, "right": 1850, "bottom": 2935, "left": 230}, {"solidity": 0.9948238369770885, "top": 3335, "right": 1855, "bottom": 5265, "left": 220}, {"solidity": 0.9962290485693647, "top": 3335, "right": 3510, "bottom": 5260, "left": 1900}, {"solidity": 0.9961568653103945, "top": 965, "right": 3485, "bottom": 2915, "left": 1880}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719581f.jpg"} -{"rects": [{"solidity": 0.9963499420625724, "top": 2290, "right": 3115, "bottom": 3920, "left": 695}, {"solidity": 0.9976997614445892, "top": 435, "right": 3095, "bottom": 2035, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732169f.jpg"} -{"rects": [{"solidity": 0.9963500181843797, "top": 785, "right": 2005, "bottom": 3185, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721904f.jpg"} -{"rects": [{"solidity": 0.9963500548600054, "top": 1715, "right": 2565, "bottom": 3195, "left": 230}, {"solidity": 0.9977347550777285, "top": 365, "right": 2390, "bottom": 1565, "left": 600}], "shape": {"h": 4645, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715797f.jpg"} -{"rects": [{"solidity": 0.9963506194649124, "top": 605, "right": 1480, "bottom": 2400, "left": 265}, {"solidity": 0.9951674227439089, "top": 615, "right": 2855, "bottom": 2380, "left": 1635}, {"solidity": 0.9962511545357408, "top": 625, "right": 4220, "bottom": 2395, "left": 3035}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715958f.jpg"} -{"rects": [{"solidity": 0.996350731636175, "top": 415, "right": 3120, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728345f.jpg"} -{"rects": [{"solidity": 0.9963507612726596, "top": 785, "right": 1995, "bottom": 3185, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718221f.jpg"} -{"rects": [{"solidity": 0.9963508359844354, "top": 880, "right": 3905, "bottom": 3295, "left": 2270}, {"solidity": 0.9962071362747159, "top": 895, "right": 2030, "bottom": 3305, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717494f.jpg"} -{"rects": [{"solidity": 0.99635085867001, "top": 820, "right": 3940, "bottom": 3220, "left": 2350}, {"solidity": 0.9944287761801285, "top": 805, "right": 2090, "bottom": 3210, "left": 500}, {"solidity": 0.9954115544488845, "top": 815, "right": 5785, "bottom": 3205, "left": 4210}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717930f.jpg"} -{"rects": [{"solidity": 0.996350879312254, "top": 2315, "right": 3030, "bottom": 3695, "left": 1210}, {"solidity": 0.9934901421413761, "top": 555, "right": 3020, "bottom": 1940, "left": 1235}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727424f.jpg"} -{"rects": [{"solidity": 0.9963510454811493, "top": 945, "right": 2290, "bottom": 3640, "left": 475}], "shape": {"h": 4415, "w": 6850}, "file": "/usr/local/google/home/danvk/milstein/711635f.jpg"} -{"rects": [{"solidity": 0.996351169340027, "top": 680, "right": 2720, "bottom": 2110, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726399f.jpg"} -{"rects": [{"solidity": 0.9963511875790113, "top": 905, "right": 2020, "bottom": 3305, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729458f.jpg"} -{"rects": [{"solidity": 0.99635126161211, "top": 3280, "right": 3160, "bottom": 5220, "left": 455}, {"solidity": 0.9932451783016166, "top": 760, "right": 3180, "bottom": 2655, "left": 480}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/717862f.jpg"} -{"rects": [{"solidity": 0.9963513102985146, "top": 805, "right": 3915, "bottom": 3245, "left": 2275}, {"solidity": 0.9908839371960904, "top": 810, "right": 2060, "bottom": 3205, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723058f.jpg"} -{"rects": [{"solidity": 0.9963513414901122, "top": 645, "right": 2485, "bottom": 2135, "left": 390}, {"solidity": 0.9974083145500557, "top": 2450, "right": 2495, "bottom": 3935, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716043f.jpg"} -{"rects": [{"solidity": 0.996351408652092, "top": 415, "right": 3280, "bottom": 2015, "left": 880}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710052f.jpg"} -{"rects": [{"solidity": 0.9963515532232734, "top": 1120, "right": 2935, "bottom": 2770, "left": 510}, {"solidity": 0.9979398929654169, "top": 1125, "right": 5580, "bottom": 2735, "left": 3175}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707537f.jpg"} -{"rects": [{"solidity": 0.9963516552584285, "top": 2050, "right": 2720, "bottom": 3455, "left": 895}, {"solidity": 0.9954179011920348, "top": 2055, "right": 5310, "bottom": 3455, "left": 3480}, {"solidity": 0.9935210504274136, "top": 610, "right": 5330, "bottom": 2015, "left": 3505}, {"solidity": 0.997122573411586, "top": 620, "right": 2715, "bottom": 2025, "left": 905}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703551f.jpg"} -{"rects": [{"solidity": 0.9963518283584543, "top": 430, "right": 3155, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721907f.jpg"} -{"rects": [{"solidity": 0.9963519718221272, "top": 2215, "right": 2805, "bottom": 3640, "left": 965}, {"solidity": 0.9957531753331899, "top": 2285, "right": 4960, "bottom": 3705, "left": 3135}, {"solidity": 0.9963335712000787, "top": 655, "right": 4925, "bottom": 2075, "left": 3120}, {"solidity": 0.9960759506182602, "top": 640, "right": 2795, "bottom": 2050, "left": 980}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725680f.jpg"} -{"rects": [{"solidity": 0.996351989189154, "top": 455, "right": 3120, "bottom": 2065, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728309f.jpg"} -{"rects": [{"solidity": 0.9963521076891593, "top": 440, "right": 3030, "bottom": 2075, "left": 620}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707696f.jpg"} -{"rects": [{"solidity": 0.9963521393050635, "top": 835, "right": 5755, "bottom": 3270, "left": 4125}, {"solidity": 0.9974586512676451, "top": 830, "right": 3910, "bottom": 3260, "left": 2285}, {"solidity": 0.9984622777510812, "top": 830, "right": 2070, "bottom": 3255, "left": 450}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731661f.jpg"} -{"rects": [{"solidity": 0.9963522332510198, "top": 4130, "right": 3070, "bottom": 5770, "left": 645}, {"solidity": 0.9967764672408888, "top": 2290, "right": 3055, "bottom": 3910, "left": 630}, {"solidity": 0.9963831857450343, "top": 455, "right": 3030, "bottom": 2045, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720604f.jpg"} -{"rects": [{"solidity": 0.9963523143262855, "top": 740, "right": 3900, "bottom": 3150, "left": 2290}, {"solidity": 0.9955155480668997, "top": 745, "right": 2020, "bottom": 3150, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730203f.jpg"} -{"rects": [{"solidity": 0.9963524519987206, "top": 2210, "right": 3185, "bottom": 3835, "left": 775}, {"solidity": 0.9982982482349196, "top": 330, "right": 3195, "bottom": 1945, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719300f.jpg"} -{"rects": [{"solidity": 0.9963525835866262, "top": 840, "right": 3205, "bottom": 2730, "left": 470}, {"solidity": 0.9961106363570296, "top": 3435, "right": 3215, "bottom": 5280, "left": 465}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705776f.jpg"} -{"rects": [{"solidity": 0.9963526162781502, "top": 795, "right": 3880, "bottom": 3240, "left": 2220}, {"solidity": 0.9982531409868793, "top": 780, "right": 2020, "bottom": 3200, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711025f.jpg"} -{"rects": [{"solidity": 0.9963526932718145, "top": 790, "right": 3845, "bottom": 3210, "left": 2220}, {"solidity": 0.9966200838684061, "top": 780, "right": 2070, "bottom": 3195, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719877f.jpg"} -{"rects": [{"solidity": 0.9963527579706581, "top": 925, "right": 3445, "bottom": 2950, "left": 405}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708154f.jpg"} -{"rects": [{"solidity": 0.9963528041398537, "top": 690, "right": 2490, "bottom": 3115, "left": 850}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711017f.jpg"} -{"rects": [{"solidity": 0.9963530803276187, "top": 660, "right": 2055, "bottom": 3100, "left": 415}, {"solidity": 0.9962782197856076, "top": 690, "right": 3905, "bottom": 3105, "left": 2245}, {"solidity": 0.9963850916192296, "top": 740, "right": 5755, "bottom": 3155, "left": 4105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705136f.jpg"} -{"rects": [{"solidity": 0.9963530933699107, "top": 705, "right": 2080, "bottom": 3115, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710995f.jpg"} -{"rects": [{"solidity": 0.996353120732589, "top": 2255, "right": 3165, "bottom": 3880, "left": 740}, {"solidity": 0.9974702896696477, "top": 395, "right": 3175, "bottom": 2005, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707160f.jpg"} -{"rects": [{"solidity": 0.9963531602206049, "top": 780, "right": 2045, "bottom": 3210, "left": 420}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714638f.jpg"} -{"rects": [{"solidity": 0.9963531811210686, "top": 825, "right": 5715, "bottom": 3260, "left": 4080}, {"solidity": 0.9955135494738498, "top": 825, "right": 1985, "bottom": 3240, "left": 390}, {"solidity": 0.9948882717537388, "top": 830, "right": 3835, "bottom": 3230, "left": 2235}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729593f.jpg"} -{"rects": [{"solidity": 0.9963532822065211, "top": 965, "right": 3885, "bottom": 3400, "left": 2245}, {"solidity": 0.9964149045933627, "top": 990, "right": 5660, "bottom": 3400, "left": 4050}, {"solidity": 0.9959243198686765, "top": 985, "right": 2095, "bottom": 3320, "left": 540}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710327f.jpg"} -{"rects": [{"solidity": 0.996353325571788, "top": 540, "right": 3665, "bottom": 2720, "left": 590}], "shape": {"h": 6905, "w": 4405}, "file": "/usr/local/google/home/danvk/milstein/711710f.jpg"} -{"rects": [{"solidity": 0.996353380508588, "top": 270, "right": 3390, "bottom": 2255, "left": 640}, {"solidity": 0.9976639450492483, "top": 2440, "right": 3235, "bottom": 4050, "left": 820}, {"solidity": 0.996394700502853, "top": 4225, "right": 3220, "bottom": 5855, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715679f.jpg"} -{"rects": [{"solidity": 0.9963534182712265, "top": 770, "right": 5680, "bottom": 3200, "left": 4050}, {"solidity": 0.9968655145833534, "top": 770, "right": 3845, "bottom": 3195, "left": 2220}, {"solidity": 0.999983890039856, "top": 770, "right": 2030, "bottom": 3185, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732340f.jpg"} -{"rects": [{"solidity": 0.9963534963534963, "top": 375, "right": 3235, "bottom": 1990, "left": 800}, {"solidity": 0.9966573512633482, "top": 2230, "right": 3235, "bottom": 3850, "left": 800}, {"solidity": 0.9967088997771685, "top": 4115, "right": 3225, "bottom": 5730, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726622f.jpg"} -{"rects": [{"solidity": 0.996353859518963, "top": 2165, "right": 3235, "bottom": 3795, "left": 795}, {"solidity": 0.996818846736124, "top": 315, "right": 3230, "bottom": 1940, "left": 800}, {"solidity": 0.9966910123626107, "top": 4030, "right": 3225, "bottom": 5640, "left": 805}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/709256f.jpg"} -{"rects": [{"solidity": 0.996353919121484, "top": 805, "right": 2060, "bottom": 3190, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713135f.jpg"} -{"rects": [{"solidity": 0.9963541982588264, "top": 385, "right": 3050, "bottom": 2020, "left": 625}, {"solidity": 0.9951973671622372, "top": 2245, "right": 3055, "bottom": 3880, "left": 620}, {"solidity": 0.9964908077940324, "top": 4125, "right": 3045, "bottom": 5745, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710815f.jpg"} -{"rects": [{"solidity": 0.9963542157018703, "top": 390, "right": 3155, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701447f.jpg"} -{"rects": [{"solidity": 0.9963542726006317, "top": 380, "right": 5100, "bottom": 3635, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727293f.jpg"} -{"rects": [{"solidity": 0.9963543506369354, "top": 395, "right": 3215, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723505f.jpg"} -{"rects": [{"solidity": 0.9963543816205805, "top": 420, "right": 3035, "bottom": 2025, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729576f.jpg"} -{"rects": [{"solidity": 0.9963544944497261, "top": 360, "right": 2785, "bottom": 2745, "left": 1205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727639f.jpg"} -{"rects": [{"solidity": 0.9963546343796341, "top": 325, "right": 4170, "bottom": 2755, "left": 1150}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517239.jpg"} -{"rects": [{"solidity": 0.9963547516305098, "top": 485, "right": 3165, "bottom": 2085, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710581f.jpg"} -{"rects": [{"solidity": 0.9963549138113491, "top": 435, "right": 3130, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720730f.jpg"} -{"rects": [{"solidity": 0.9963551978189608, "top": 400, "right": 3195, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727832f.jpg"} -{"rects": [{"solidity": 0.9963552462268875, "top": 2275, "right": 3170, "bottom": 3910, "left": 720}, {"solidity": 0.9966019448511313, "top": 420, "right": 3170, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733685f.jpg"} -{"rects": [{"solidity": 0.9963554168797287, "top": 435, "right": 3175, "bottom": 2055, "left": 775}, {"solidity": 0.9958784148756813, "top": 2255, "right": 3195, "bottom": 3870, "left": 785}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730412f.jpg"} -{"rects": [{"solidity": 0.9963554637672356, "top": 815, "right": 2030, "bottom": 3245, "left": 395}, {"solidity": 0.9971722702950521, "top": 795, "right": 3905, "bottom": 3215, "left": 2280}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704934f.jpg"} -{"rects": [{"solidity": 0.9963556710023843, "top": 2250, "right": 3110, "bottom": 3875, "left": 695}, {"solidity": 0.9969407749604214, "top": 385, "right": 3115, "bottom": 2005, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710760f.jpg"} -{"rects": [{"solidity": 0.996355766122515, "top": 900, "right": 2405, "bottom": 3625, "left": 565}, {"solidity": 0.9955869865531095, "top": 895, "right": 4455, "bottom": 3625, "left": 2630}, {"solidity": 0.9949177877428999, "top": 900, "right": 6540, "bottom": 3610, "left": 4720}], "shape": {"h": 4410, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/711377f.jpg"} -{"rects": [{"solidity": 0.9963560843260972, "top": 715, "right": 3925, "bottom": 3165, "left": 2280}, {"solidity": 0.9977975747787201, "top": 740, "right": 2040, "bottom": 3170, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718050f.jpg"} -{"rects": [{"solidity": 0.9963563231988644, "top": 2170, "right": 2665, "bottom": 3450, "left": 990}, {"solidity": 0.9962294332723949, "top": 655, "right": 2660, "bottom": 1910, "left": 990}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713349f.jpg"} -{"rects": [{"solidity": 0.9963563311208713, "top": 690, "right": 3865, "bottom": 3085, "left": 2260}, {"solidity": 0.9964378559663432, "top": 680, "right": 2020, "bottom": 3070, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731628f.jpg"} -{"rects": [{"solidity": 0.9963563426509446, "top": 2145, "right": 3250, "bottom": 3775, "left": 815}, {"solidity": 0.9957618008274424, "top": 430, "right": 3240, "bottom": 2030, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707068f.jpg"} -{"rects": [{"solidity": 0.996356584196852, "top": 470, "right": 3195, "bottom": 2055, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701957f.jpg"} -{"rects": [{"solidity": 0.9963567843235612, "top": 895, "right": 3905, "bottom": 3315, "left": 2260}, {"solidity": 0.9963494368024415, "top": 870, "right": 2035, "bottom": 3295, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717578f.jpg"} -{"rects": [{"solidity": 0.9963567855269386, "top": 405, "right": 3090, "bottom": 2045, "left": 665}, {"solidity": 0.9988700200167883, "top": 2290, "right": 3095, "bottom": 3900, "left": 675}, {"solidity": 0.9959251229238453, "top": 4115, "right": 3080, "bottom": 5755, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710824f.jpg"} -{"rects": [{"solidity": 0.9963570011088777, "top": 2200, "right": 3205, "bottom": 3835, "left": 770}, {"solidity": 0.9989840394846484, "top": 4080, "right": 3220, "bottom": 5705, "left": 805}, {"solidity": 0.9967267360975673, "top": 320, "right": 3190, "bottom": 1940, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700130f.jpg"} -{"rects": [{"solidity": 0.9963571124882435, "top": 440, "right": 3210, "bottom": 2060, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705561f.jpg"} -{"rects": [{"solidity": 0.9963572271658591, "top": 400, "right": 3070, "bottom": 2040, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700940f.jpg"} -{"rects": [{"solidity": 0.9963572635663767, "top": 400, "right": 3075, "bottom": 2055, "left": 635}, {"solidity": 0.9959462552937137, "top": 2330, "right": 3050, "bottom": 3985, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720145f.jpg"} -{"rects": [{"solidity": 0.9963572795501368, "top": 375, "right": 3230, "bottom": 2010, "left": 785}, {"solidity": 0.9983391740116001, "top": 2225, "right": 3235, "bottom": 3840, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727941f.jpg"} -{"rects": [{"solidity": 0.9963572860663797, "top": 840, "right": 3870, "bottom": 3270, "left": 2230}, {"solidity": 0.9956024036789181, "top": 865, "right": 1980, "bottom": 3300, "left": 340}, {"solidity": 0.9955308740771336, "top": 835, "right": 5760, "bottom": 3245, "left": 4125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707932f.jpg"} -{"rects": [{"solidity": 0.9963573619631901, "top": 2225, "right": 2845, "bottom": 3255, "left": 1045}, {"solidity": 0.9841079253355415, "top": 705, "right": 2840, "bottom": 1755, "left": 1065}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711103f.jpg"} -{"rects": [{"solidity": 0.9963573632136079, "top": 510, "right": 3645, "bottom": 2780, "left": 240}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711412f.jpg"} -{"rects": [{"solidity": 0.9963573911384119, "top": 570, "right": 3365, "bottom": 2480, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713091f.jpg"} -{"rects": [{"solidity": 0.9963574620769193, "top": 805, "right": 3875, "bottom": 3235, "left": 2250}, {"solidity": 0.9963616054133629, "top": 815, "right": 1985, "bottom": 3240, "left": 365}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728585f.jpg"} -{"rects": [{"solidity": 0.9963575705082779, "top": 500, "right": 5085, "bottom": 3735, "left": 1050}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700814f.jpg"} -{"rects": [{"solidity": 0.996357736923442, "top": 370, "right": 3135, "bottom": 2000, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700224f.jpg"} -{"rects": [{"solidity": 0.9963577377420978, "top": 750, "right": 3735, "bottom": 2930, "left": 645}, {"solidity": 0.9970664008876018, "top": 3610, "right": 3735, "bottom": 5775, "left": 645}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710274f.jpg"} -{"rects": [{"solidity": 0.9963578913971776, "top": 625, "right": 2060, "bottom": 3045, "left": 445}, {"solidity": 0.9960281574684302, "top": 625, "right": 3890, "bottom": 3045, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725921f.jpg"} -{"rects": [{"solidity": 0.9963579664582319, "top": 790, "right": 3175, "bottom": 2755, "left": 395}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707115f.jpg"} -{"rects": [{"solidity": 0.9963580181448308, "top": 780, "right": 3320, "bottom": 2700, "left": 590}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711060f.jpg"} -{"rects": [{"solidity": 0.9963580883315193, "top": 890, "right": 3870, "bottom": 3325, "left": 2220}, {"solidity": 0.9966142847075856, "top": 870, "right": 2005, "bottom": 3295, "left": 365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731768f.jpg"} -{"rects": [{"solidity": 0.9963583225853271, "top": 420, "right": 3125, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731934f.jpg"} -{"rects": [{"solidity": 0.9963584918827358, "top": 3665, "right": 3285, "bottom": 5320, "left": 845}, {"solidity": 0.9969439349230401, "top": 1875, "right": 3295, "bottom": 3505, "left": 855}, {"solidity": 0.9961749009368057, "top": 205, "right": 3275, "bottom": 1805, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710318f.jpg"} -{"rects": [{"solidity": 0.9963585251046025, "top": 2125, "right": 3255, "bottom": 3745, "left": 865}, {"solidity": 0.9954361088651748, "top": 285, "right": 3225, "bottom": 1890, "left": 865}, {"solidity": 0.9955647619922655, "top": 3975, "right": 3040, "bottom": 5550, "left": 1120}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709362f.jpg"} -{"rects": [{"solidity": 0.9963586927036627, "top": 820, "right": 3960, "bottom": 3260, "left": 2305}, {"solidity": 0.9969953232109681, "top": 800, "right": 2065, "bottom": 3230, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706907f.jpg"} -{"rects": [{"solidity": 0.9963587606216278, "top": 430, "right": 3185, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732901f.jpg"} -{"rects": [{"solidity": 0.9963588907014682, "top": 760, "right": 2025, "bottom": 3165, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713625f.jpg"} -{"rects": [{"solidity": 0.9963589211282817, "top": 415, "right": 3145, "bottom": 2030, "left": 735}, {"solidity": 0.9917897664035306, "top": 2270, "right": 3155, "bottom": 3905, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701696f.jpg"} -{"rects": [{"solidity": 0.9963589748891255, "top": 455, "right": 3330, "bottom": 2445, "left": 260}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715111f.jpg"} -{"rects": [{"solidity": 0.9963590337219969, "top": 535, "right": 3270, "bottom": 2610, "left": 240}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719197f.jpg"} -{"rects": [{"solidity": 0.9963591795537291, "top": 815, "right": 2140, "bottom": 3215, "left": 535}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721343f.jpg"} -{"rects": [{"solidity": 0.9963592959708744, "top": 480, "right": 5195, "bottom": 2105, "left": 3235}, {"solidity": 0.9976612308973825, "top": 2165, "right": 2895, "bottom": 3775, "left": 940}, {"solidity": 0.996409342962151, "top": 460, "right": 2890, "bottom": 2095, "left": 965}, {"solidity": 0.9960013198683605, "top": 2230, "right": 5160, "bottom": 3765, "left": 3260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719577f.jpg"} -{"rects": [{"solidity": 0.9963595924264315, "top": 580, "right": 2615, "bottom": 2035, "left": 780}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705469f.jpg"} -{"rects": [{"solidity": 0.996359649693547, "top": 520, "right": 3150, "bottom": 2135, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710590f.jpg"} -{"rects": [{"solidity": 0.996359721251153, "top": 840, "right": 2080, "bottom": 3240, "left": 480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709656f.jpg"} -{"rects": [{"solidity": 0.9963597670250897, "top": 2225, "right": 3230, "bottom": 3830, "left": 835}, {"solidity": 0.9967768974394795, "top": 4110, "right": 3235, "bottom": 5705, "left": 850}, {"solidity": 0.9965949033391915, "top": 370, "right": 3210, "bottom": 1960, "left": 820}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733258f.jpg"} -{"rects": [{"solidity": 0.996360024310071, "top": 385, "right": 3190, "bottom": 1985, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724164f.jpg"} -{"rects": [{"solidity": 0.9963600320696059, "top": 1110, "right": 2995, "bottom": 2705, "left": 655}, {"solidity": 0.9969263994529803, "top": 1065, "right": 5585, "bottom": 2665, "left": 3250}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734321f.jpg"} -{"rects": [{"solidity": 0.9963601913015735, "top": 820, "right": 2040, "bottom": 3225, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717520f.jpg"} -{"rects": [{"solidity": 0.9963604975642056, "top": 905, "right": 3220, "bottom": 2840, "left": 450}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702240f.jpg"} -{"rects": [{"solidity": 0.9963605073191637, "top": 400, "right": 3165, "bottom": 1975, "left": 775}, {"solidity": 0.9856404655725106, "top": 2255, "right": 3175, "bottom": 3825, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726285f.jpg"} -{"rects": [{"solidity": 0.9963605091159271, "top": 355, "right": 3835, "bottom": 2780, "left": 815}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716304f.jpg"} -{"rects": [{"solidity": 0.9963605750550447, "top": 2270, "right": 3180, "bottom": 3880, "left": 760}, {"solidity": 0.9955408223978868, "top": 495, "right": 3195, "bottom": 2105, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734727f.jpg"} -{"rects": [{"solidity": 0.9963606581408763, "top": 2270, "right": 3200, "bottom": 3895, "left": 760}, {"solidity": 0.9972644228420693, "top": 465, "right": 3180, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734559f.jpg"} -{"rects": [{"solidity": 0.9963607393244105, "top": 745, "right": 2055, "bottom": 3165, "left": 400}, {"solidity": 0.9978689449504312, "top": 770, "right": 3900, "bottom": 3175, "left": 2275}, {"solidity": 0.9963727849344943, "top": 775, "right": 5760, "bottom": 3185, "left": 4135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702157f.jpg"} -{"rects": [{"solidity": 0.9963607772660901, "top": 3545, "right": 3750, "bottom": 5735, "left": 650}, {"solidity": 0.9972304921492854, "top": 740, "right": 3735, "bottom": 2915, "left": 660}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710271f.jpg"} -{"rects": [{"solidity": 0.9963607860702088, "top": 800, "right": 2080, "bottom": 3200, "left": 470}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713822f.jpg"} -{"rects": [{"solidity": 0.9963608065734362, "top": 2275, "right": 3105, "bottom": 3870, "left": 690}, {"solidity": 0.996530584858294, "top": 425, "right": 3095, "bottom": 2020, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729722f.jpg"} -{"rects": [{"solidity": 0.9963608565637878, "top": 425, "right": 3210, "bottom": 2025, "left": 755}, {"solidity": 0.9802197460763791, "top": 2135, "right": 2940, "bottom": 3770, "left": 930}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715127f.jpg"} -{"rects": [{"solidity": 0.9963609827918206, "top": 2235, "right": 3255, "bottom": 3865, "left": 835}, {"solidity": 0.9961067172019931, "top": 4110, "right": 3225, "bottom": 5745, "left": 800}, {"solidity": 0.996984057202705, "top": 380, "right": 3275, "bottom": 2005, "left": 865}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703726f.jpg"} -{"rects": [{"solidity": 0.9963610245138887, "top": 455, "right": 5650, "bottom": 4095, "left": 1085}], "shape": {"h": 4410, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711029f.jpg"} -{"rects": [{"solidity": 0.9963612524708055, "top": 400, "right": 3205, "bottom": 2000, "left": 820}, {"solidity": 0.9945269794426372, "top": 4135, "right": 3215, "bottom": 5715, "left": 825}, {"solidity": 0.9366063194846778, "top": 2275, "right": 3210, "bottom": 3845, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728006f.jpg"} -{"rects": [{"solidity": 0.996361279170268, "top": 410, "right": 5120, "bottom": 3670, "left": 1090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712686f.jpg"} -{"rects": [{"solidity": 0.9963613611204698, "top": 440, "right": 3180, "bottom": 2060, "left": 760}, {"solidity": 0.9971072678274349, "top": 2290, "right": 3170, "bottom": 3900, "left": 755}, {"solidity": 0.9961995141109729, "top": 4135, "right": 3165, "bottom": 5745, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707107f.jpg"} -{"rects": [{"solidity": 0.9963614800485904, "top": 345, "right": 2310, "bottom": 1555, "left": 500}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715901f.jpg"} -{"rects": [{"solidity": 0.9963622228340973, "top": 2250, "right": 3135, "bottom": 3865, "left": 720}, {"solidity": 0.9958465324544367, "top": 400, "right": 3140, "bottom": 2025, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716695f.jpg"} -{"rects": [{"solidity": 0.9963623959090503, "top": 340, "right": 2855, "bottom": 2775, "left": 1215}, {"solidity": 0.99631678271621, "top": 3170, "right": 3140, "bottom": 4790, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714927f.jpg"} -{"rects": [{"solidity": 0.9963625263907613, "top": 2290, "right": 3185, "bottom": 3915, "left": 750}, {"solidity": 0.9968983187988852, "top": 400, "right": 3165, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734080f.jpg"} -{"rects": [{"solidity": 0.9963626618909582, "top": 750, "right": 2630, "bottom": 3160, "left": 1025}, {"solidity": 0.9963831027998191, "top": 770, "right": 5215, "bottom": 3175, "left": 3610}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730761f.jpg"} -{"rects": [{"solidity": 0.9963627077692693, "top": 440, "right": 3155, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734565f.jpg"} -{"rects": [{"solidity": 0.9963627546071775, "top": 755, "right": 3805, "bottom": 3170, "left": 2165}, {"solidity": 0.9961849453352891, "top": 740, "right": 1975, "bottom": 3125, "left": 375}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718139f.jpg"} -{"rects": [{"solidity": 0.9963628601740586, "top": 455, "right": 5420, "bottom": 3515, "left": 1510}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720537f.jpg"} -{"rects": [{"solidity": 0.9963631481019699, "top": 440, "right": 5080, "bottom": 3700, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702107f.jpg"} -{"rects": [{"solidity": 0.9963632608674607, "top": 2250, "right": 3125, "bottom": 3870, "left": 705}, {"solidity": 0.9964877102623078, "top": 415, "right": 3135, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734194f.jpg"} -{"rects": [{"solidity": 0.9963632765743851, "top": 705, "right": 3325, "bottom": 2625, "left": 595}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724730f.jpg"} -{"rects": [{"solidity": 0.9963633809382413, "top": 390, "right": 3215, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703244f.jpg"} -{"rects": [{"solidity": 0.9963635298177532, "top": 425, "right": 3160, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728653f.jpg"} -{"rects": [{"solidity": 0.9963636953945553, "top": 800, "right": 5695, "bottom": 3210, "left": 4080}, {"solidity": 0.9975679001894889, "top": 765, "right": 2045, "bottom": 3170, "left": 435}, {"solidity": 0.9929070558203865, "top": 785, "right": 3860, "bottom": 3185, "left": 2250}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732434f.jpg"} -{"rects": [{"solidity": 0.9963637414915727, "top": 2300, "right": 3045, "bottom": 3935, "left": 620}, {"solidity": 0.9964953346358952, "top": 4140, "right": 3030, "bottom": 5770, "left": 605}, {"solidity": 0.9970348574015392, "top": 420, "right": 3065, "bottom": 2040, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701817f.jpg"} -{"rects": [{"solidity": 0.9963637433823073, "top": 4050, "right": 3150, "bottom": 5675, "left": 770}, {"solidity": 0.9965472154327315, "top": 2155, "right": 3175, "bottom": 3770, "left": 790}, {"solidity": 0.9952841511287386, "top": 380, "right": 3155, "bottom": 1870, "left": 845}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730793f.jpg"} -{"rects": [{"solidity": 0.9963639014913649, "top": 865, "right": 2785, "bottom": 3610, "left": 830}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703722f.jpg"} -{"rects": [{"solidity": 0.9963642191083824, "top": 390, "right": 2915, "bottom": 1800, "left": 1130}, {"solidity": 0.9954296100243445, "top": 2160, "right": 2920, "bottom": 3240, "left": 1140}], "shape": {"h": 6035, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728090f.jpg"} -{"rects": [{"solidity": 0.996364306058749, "top": 745, "right": 5725, "bottom": 3185, "left": 4075}, {"solidity": 0.9970201650419319, "top": 730, "right": 3865, "bottom": 3160, "left": 2235}, {"solidity": 0.9982558702884273, "top": 740, "right": 2025, "bottom": 3155, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701528f.jpg"} -{"rects": [{"solidity": 0.9963643222290152, "top": 2300, "right": 3230, "bottom": 3920, "left": 840}, {"solidity": 0.998381077907764, "top": 580, "right": 3220, "bottom": 2190, "left": 830}, {"solidity": 0.9957777065522406, "top": 4015, "right": 3200, "bottom": 5645, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733217f.jpg"} -{"rects": [{"solidity": 0.9963644877851219, "top": 515, "right": 2970, "bottom": 2175, "left": 530}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702515f.jpg"} -{"rects": [{"solidity": 0.9963645806284082, "top": 2220, "right": 3270, "bottom": 3850, "left": 850}, {"solidity": 0.9960223753484051, "top": 375, "right": 3275, "bottom": 2000, "left": 865}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726823f.jpg"} -{"rects": [{"solidity": 0.9963647633326912, "top": 445, "right": 3045, "bottom": 2010, "left": 1115}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701881f.jpg"} -{"rects": [{"solidity": 0.9963649591216887, "top": 450, "right": 3520, "bottom": 2275, "left": 795}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711311f.jpg"} -{"rects": [{"solidity": 0.99636496989037, "top": 800, "right": 5735, "bottom": 3225, "left": 4110}, {"solidity": 0.9981844261235883, "top": 810, "right": 3915, "bottom": 3215, "left": 2290}, {"solidity": 0.9978671729963293, "top": 800, "right": 2075, "bottom": 3220, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713473f.jpg"} -{"rects": [{"solidity": 0.9963649749229283, "top": 630, "right": 3320, "bottom": 2550, "left": 590}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712182f.jpg"} -{"rects": [{"solidity": 0.9963651344456592, "top": 750, "right": 3845, "bottom": 3195, "left": 2190}, {"solidity": 0.9958307533539732, "top": 785, "right": 5650, "bottom": 3225, "left": 4005}, {"solidity": 0.9962632858300366, "top": 690, "right": 2045, "bottom": 3140, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731648f.jpg"} -{"rects": [{"solidity": 0.9963652323747907, "top": 470, "right": 3140, "bottom": 2080, "left": 720}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710575f.jpg"} -{"rects": [{"solidity": 0.9963653622772067, "top": 360, "right": 5180, "bottom": 3610, "left": 1155}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732601f.jpg"} -{"rects": [{"solidity": 0.9963653870065774, "top": 2130, "right": 3060, "bottom": 3765, "left": 625}, {"solidity": 0.9983235877230406, "top": 455, "right": 3005, "bottom": 1850, "left": 1205}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726508f.jpg"} -{"rects": [{"solidity": 0.9963654113813416, "top": 390, "right": 3175, "bottom": 1995, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720404f.jpg"} -{"rects": [{"solidity": 0.9963656934098961, "top": 915, "right": 3825, "bottom": 3360, "left": 2185}, {"solidity": 0.9830754847468046, "top": 930, "right": 1945, "bottom": 3350, "left": 320}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714548f.jpg"} -{"rects": [{"solidity": 0.9963657238030942, "top": 965, "right": 2035, "bottom": 2980, "left": 485}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704020f.jpg"} -{"rects": [{"solidity": 0.9963658603318687, "top": 2245, "right": 3185, "bottom": 3865, "left": 770}, {"solidity": 0.9977462050790296, "top": 415, "right": 3175, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731882f.jpg"} -{"rects": [{"solidity": 0.9963658837275926, "top": 605, "right": 3215, "bottom": 2225, "left": 790}, {"solidity": 0.9982831432292695, "top": 4055, "right": 3230, "bottom": 5655, "left": 835}, {"solidity": 0.9971726092400975, "top": 2340, "right": 3220, "bottom": 3935, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733169f.jpg"} -{"rects": [{"solidity": 0.9963659156009067, "top": 365, "right": 3085, "bottom": 1980, "left": 675}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728944f.jpg"} -{"rects": [{"solidity": 0.996366106836459, "top": 830, "right": 3800, "bottom": 3275, "left": 2145}, {"solidity": 0.997342401188555, "top": 830, "right": 1925, "bottom": 3245, "left": 295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704440f.jpg"} -{"rects": [{"solidity": 0.996366292859718, "top": 865, "right": 3940, "bottom": 3310, "left": 2260}, {"solidity": 0.9976201105476316, "top": 850, "right": 2020, "bottom": 3270, "left": 390}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712775f.jpg"} -{"rects": [{"solidity": 0.9963663186927727, "top": 755, "right": 3870, "bottom": 3185, "left": 2255}, {"solidity": 0.9964997559848355, "top": 745, "right": 2030, "bottom": 3175, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702340f.jpg"} -{"rects": [{"solidity": 0.9963664113296825, "top": 495, "right": 5000, "bottom": 3680, "left": 1170}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700389f.jpg"} -{"rects": [{"solidity": 0.9963665474031597, "top": 745, "right": 2015, "bottom": 3145, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721994f.jpg"} -{"rects": [{"solidity": 0.996366741504435, "top": 585, "right": 5045, "bottom": 3615, "left": 1020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718295f.jpg"} -{"rects": [{"solidity": 0.996366919147437, "top": 1005, "right": 3505, "bottom": 5085, "left": 260}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719836f.jpg"} -{"rects": [{"solidity": 0.9963669244804702, "top": 2275, "right": 3210, "bottom": 3890, "left": 795}, {"solidity": 0.9978311148331463, "top": 430, "right": 3205, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733676f.jpg"} -{"rects": [{"solidity": 0.996367008129927, "top": 735, "right": 2050, "bottom": 3185, "left": 385}, {"solidity": 0.9964743691730041, "top": 780, "right": 3905, "bottom": 3225, "left": 2245}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710865f.jpg"} -{"rects": [{"solidity": 0.9963670201297238, "top": 460, "right": 2940, "bottom": 3610, "left": 475}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714580f.jpg"} -{"rects": [{"solidity": 0.9963670358405887, "top": 395, "right": 3215, "bottom": 1975, "left": 810}, {"solidity": 0.9955416016762506, "top": 2270, "right": 3220, "bottom": 3850, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701510f.jpg"} -{"rects": [{"solidity": 0.9963673470735678, "top": 505, "right": 3185, "bottom": 2110, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708963f.jpg"} -{"rects": [{"solidity": 0.9963674138102399, "top": 850, "right": 2015, "bottom": 3280, "left": 385}, {"solidity": 0.9975056733074901, "top": 885, "right": 5705, "bottom": 3295, "left": 4075}, {"solidity": 0.9969280361028285, "top": 865, "right": 3845, "bottom": 3285, "left": 2225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712096f.jpg"} -{"rects": [{"solidity": 0.9963674388674388, "top": 430, "right": 3080, "bottom": 2060, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729306f.jpg"} -{"rects": [{"solidity": 0.996367693903736, "top": 855, "right": 4300, "bottom": 3545, "left": 2505}, {"solidity": 0.9495946571607542, "top": 975, "right": 2215, "bottom": 3455, "left": 445}], "shape": {"h": 4410, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711368f.jpg"} -{"rects": [{"solidity": 0.9963678637836518, "top": 420, "right": 3130, "bottom": 2045, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702069f.jpg"} -{"rects": [{"solidity": 0.9963678758800054, "top": 395, "right": 3180, "bottom": 2015, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729539f.jpg"} -{"rects": [{"solidity": 0.996367902904716, "top": 350, "right": 3100, "bottom": 1975, "left": 675}, {"solidity": 0.9976773024582686, "top": 4055, "right": 3100, "bottom": 5670, "left": 675}, {"solidity": 0.9950839912921987, "top": 2205, "right": 3100, "bottom": 3810, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730634f.jpg"} -{"rects": [{"solidity": 0.9963679384405333, "top": 510, "right": 3130, "bottom": 2105, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713315f.jpg"} -{"rects": [{"solidity": 0.9963680310200125, "top": 405, "right": 3120, "bottom": 2050, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729649f.jpg"} -{"rects": [{"solidity": 0.9963688668691066, "top": 845, "right": 2075, "bottom": 3285, "left": 445}, {"solidity": 0.9963338067360277, "top": 895, "right": 5735, "bottom": 3330, "left": 4120}, {"solidity": 0.9958168172332938, "top": 900, "right": 3880, "bottom": 3315, "left": 2260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730340f.jpg"} -{"rects": [{"solidity": 0.9963689072327044, "top": 2165, "right": 2755, "bottom": 3590, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714081f.jpg"} -{"rects": [{"solidity": 0.9963689330057766, "top": 715, "right": 4740, "bottom": 3355, "left": 1295}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701493f.jpg"} -{"rects": [{"solidity": 0.9963689950679403, "top": 790, "right": 2015, "bottom": 3190, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718710f.jpg"} -{"rects": [{"solidity": 0.9963690890868078, "top": 450, "right": 3605, "bottom": 2245, "left": 895}], "shape": {"h": 6895, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711370f.jpg"} -{"rects": [{"solidity": 0.9963695457869505, "top": 470, "right": 3205, "bottom": 2090, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710302f.jpg"} -{"rects": [{"solidity": 0.9963695951932108, "top": 565, "right": 3305, "bottom": 2600, "left": 470}, {"solidity": 0.9961138773904986, "top": 3230, "right": 3275, "bottom": 5260, "left": 445}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729246f.jpg"} -{"rects": [{"solidity": 0.996369666262944, "top": 900, "right": 5765, "bottom": 3345, "left": 4115}, {"solidity": 0.9960351747816248, "top": 880, "right": 3890, "bottom": 3305, "left": 2290}, {"solidity": 0.99264136960631, "top": 880, "right": 2035, "bottom": 3295, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707561f.jpg"} -{"rects": [{"solidity": 0.9963696797538926, "top": 900, "right": 2060, "bottom": 3445, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721243f.jpg"} -{"rects": [{"solidity": 0.996369690752618, "top": 3355, "right": 3195, "bottom": 4990, "left": 765}, {"solidity": 0.9959194549855849, "top": 980, "right": 3210, "bottom": 2610, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731012f.jpg"} -{"rects": [{"solidity": 0.9963699166839909, "top": 2215, "right": 3285, "bottom": 3845, "left": 860}, {"solidity": 0.999197540413025, "top": 350, "right": 3250, "bottom": 1965, "left": 835}, {"solidity": 0.9975131869092605, "top": 4085, "right": 3245, "bottom": 5700, "left": 835}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733268f.jpg"} -{"rects": [{"solidity": 0.996369946395963, "top": 655, "right": 3305, "bottom": 2570, "left": 625}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/712148f.jpg"} -{"rects": [{"solidity": 0.996369998231366, "top": 430, "right": 5100, "bottom": 3675, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731279f.jpg"} -{"rects": [{"solidity": 0.9963703351251254, "top": 2205, "right": 3070, "bottom": 3825, "left": 640}, {"solidity": 0.997309515293875, "top": 375, "right": 3075, "bottom": 1990, "left": 650}, {"solidity": 0.9955370231618725, "top": 4105, "right": 3050, "bottom": 5710, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729364f.jpg"} -{"rects": [{"solidity": 0.9963706872768109, "top": 490, "right": 5100, "bottom": 3725, "left": 1080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705984f.jpg"} -{"rects": [{"solidity": 0.9963707526959478, "top": 460, "right": 2725, "bottom": 1915, "left": 800}, {"solidity": 0.9948136142625608, "top": 2135, "right": 5435, "bottom": 3580, "left": 3535}, {"solidity": 0.9929816047112845, "top": 2145, "right": 2720, "bottom": 3555, "left": 800}, {"solidity": 0.9956397977932426, "top": 460, "right": 5430, "bottom": 1855, "left": 3525}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734436f.jpg"} -{"rects": [{"solidity": 0.9963708770915631, "top": 775, "right": 3795, "bottom": 3195, "left": 2170}, {"solidity": 0.9961975833961142, "top": 780, "right": 1945, "bottom": 3180, "left": 320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707792f.jpg"} -{"rects": [{"solidity": 0.9963709270572613, "top": 800, "right": 3895, "bottom": 3200, "left": 2285}, {"solidity": 0.9968988759648213, "top": 800, "right": 2040, "bottom": 3195, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718705f.jpg"} -{"rects": [{"solidity": 0.9963709948402416, "top": 1140, "right": 3465, "bottom": 5005, "left": 375}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721387f.jpg"} -{"rects": [{"solidity": 0.9963710533596711, "top": 785, "right": 2060, "bottom": 3210, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721593f.jpg"} -{"rects": [{"solidity": 0.9963711209626346, "top": 370, "right": 3255, "bottom": 2025, "left": 820}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704637f.jpg"} -{"rects": [{"solidity": 0.9963711598582403, "top": 3120, "right": 3460, "bottom": 5185, "left": 620}, {"solidity": 0.998364788444505, "top": 690, "right": 3490, "bottom": 2725, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732037f.jpg"} -{"rects": [{"solidity": 0.9963711784477031, "top": 915, "right": 3885, "bottom": 3345, "left": 2260}, {"solidity": 0.9977022312373225, "top": 940, "right": 2000, "bottom": 3355, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729495f.jpg"} -{"rects": [{"solidity": 0.9963714637146371, "top": 820, "right": 2155, "bottom": 3235, "left": 535}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710873f.jpg"} -{"rects": [{"solidity": 0.9963716999124766, "top": 760, "right": 3925, "bottom": 3160, "left": 2310}, {"solidity": 0.9957685546428268, "top": 780, "right": 5785, "bottom": 3185, "left": 4165}, {"solidity": 0.9968777614138439, "top": 760, "right": 2050, "bottom": 3160, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724780f.jpg"} -{"rects": [{"solidity": 0.9963719630059179, "top": 480, "right": 3200, "bottom": 2075, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711071f.jpg"} -{"rects": [{"solidity": 0.9963720572946878, "top": 1230, "right": 3495, "bottom": 4890, "left": 440}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728172f.jpg"} -{"rects": [{"solidity": 0.9963721121677827, "top": 605, "right": 2705, "bottom": 2040, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705639f.jpg"} -{"rects": [{"solidity": 0.9963722080087389, "top": 755, "right": 3090, "bottom": 1970, "left": 1275}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509513.jpg"} -{"rects": [{"solidity": 0.9963722152464046, "top": 825, "right": 2480, "bottom": 3240, "left": 835}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724280f.jpg"} -{"rects": [{"solidity": 0.996372288395729, "top": 625, "right": 2570, "bottom": 2045, "left": 755}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703552f.jpg"} -{"rects": [{"solidity": 0.9963723369955635, "top": 380, "right": 5040, "bottom": 3690, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726162f.jpg"} -{"rects": [{"solidity": 0.9963723450702416, "top": 755, "right": 3925, "bottom": 3180, "left": 2300}, {"solidity": 0.9968044180702704, "top": 770, "right": 2050, "bottom": 3190, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713456f.jpg"} -{"rects": [{"solidity": 0.9963724701258536, "top": 485, "right": 5445, "bottom": 2325, "left": 2705}, {"solidity": 0.9964939539111074, "top": 840, "right": 2260, "bottom": 3575, "left": 430}], "shape": {"h": 4420, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/703418f.jpg"} -{"rects": [{"solidity": 0.9963725694925116, "top": 690, "right": 4900, "bottom": 3525, "left": 1075}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700837f.jpg"} -{"rects": [{"solidity": 0.9963725905780707, "top": 430, "right": 5110, "bottom": 3710, "left": 1025}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730704f.jpg"} -{"rects": [{"solidity": 0.9963726791090092, "top": 890, "right": 5660, "bottom": 3305, "left": 4025}, {"solidity": 0.9989459467300174, "top": 860, "right": 1965, "bottom": 3275, "left": 350}, {"solidity": 0.9950442373248733, "top": 870, "right": 3790, "bottom": 3275, "left": 2195}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709308f.jpg"} -{"rects": [{"solidity": 0.9963726807768004, "top": 750, "right": 2050, "bottom": 3195, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701614f.jpg"} -{"rects": [{"solidity": 0.9963727016547111, "top": 495, "right": 3175, "bottom": 2105, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727945f.jpg"} -{"rects": [{"solidity": 0.9963728672899022, "top": 660, "right": 2745, "bottom": 2075, "left": 915}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705514f.jpg"} -{"rects": [{"solidity": 0.9963728960532191, "top": 800, "right": 3890, "bottom": 3205, "left": 2260}, {"solidity": 0.9981616506613813, "top": 800, "right": 2040, "bottom": 3195, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709350f.jpg"} -{"rects": [{"solidity": 0.9963731157202765, "top": 490, "right": 2745, "bottom": 2020, "left": 1725}, {"solidity": 0.9952221090616473, "top": 1420, "right": 1680, "bottom": 2305, "left": 540}, {"solidity": 0.9949186476760099, "top": 490, "right": 1685, "bottom": 1370, "left": 545}], "shape": {"h": 2575, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/727159f.jpg"} -{"rects": [{"solidity": 0.9963731267386557, "top": 675, "right": 3305, "bottom": 2570, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713593f.jpg"} -{"rects": [{"solidity": 0.9963732181142698, "top": 400, "right": 3060, "bottom": 2005, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728520f.jpg"} -{"rects": [{"solidity": 0.9963732238360058, "top": 780, "right": 3285, "bottom": 2705, "left": 580}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716684f.jpg"} -{"rects": [{"solidity": 0.9963732545780561, "top": 485, "right": 3950, "bottom": 2580, "left": 2455}, {"solidity": 0.9956476514857947, "top": 480, "right": 2155, "bottom": 2570, "left": 675}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716255f.jpg"} -{"rects": [{"solidity": 0.9963733703975394, "top": 570, "right": 3485, "bottom": 2390, "left": 785}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711307f.jpg"} -{"rects": [{"solidity": 0.99637337926415, "top": 755, "right": 2680, "bottom": 2180, "left": 825}, {"solidity": 0.9950976740027715, "top": 2230, "right": 2645, "bottom": 3640, "left": 840}, {"solidity": 0.9956863065788936, "top": 2155, "right": 5230, "bottom": 3550, "left": 3460}, {"solidity": 0.9920596278954129, "top": 750, "right": 5245, "bottom": 2105, "left": 3440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725482f.jpg"} -{"rects": [{"solidity": 0.9963735175869245, "top": 455, "right": 2730, "bottom": 2820, "left": 1140}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702321f.jpg"} -{"rects": [{"solidity": 0.9963735526788353, "top": 875, "right": 2050, "bottom": 3315, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729588f.jpg"} -{"rects": [{"solidity": 0.9963736295787382, "top": 760, "right": 3820, "bottom": 3175, "left": 2200}, {"solidity": 0.9970253047410031, "top": 765, "right": 1980, "bottom": 3165, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700387f.jpg"} -{"rects": [{"solidity": 0.996373858000734, "top": 805, "right": 3710, "bottom": 3220, "left": 505}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724289f.jpg"} -{"rects": [{"solidity": 0.9963743767960115, "top": 1985, "right": 3350, "bottom": 3625, "left": 930}, {"solidity": 0.9976485382762149, "top": 3910, "right": 3325, "bottom": 5540, "left": 910}, {"solidity": 0.9971269196784318, "top": 430, "right": 3085, "bottom": 1750, "left": 1325}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702650f.jpg"} -{"rects": [{"solidity": 0.9963744768437817, "top": 1005, "right": 3600, "bottom": 5095, "left": 325}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/721292f.jpg"} -{"rects": [{"solidity": 0.996374664598217, "top": 805, "right": 2050, "bottom": 3205, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721916f.jpg"} -{"rects": [{"solidity": 0.9963746654460937, "top": 1320, "right": 3155, "bottom": 4685, "left": 545}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714803f.jpg"} -{"rects": [{"solidity": 0.9963747668468124, "top": 430, "right": 3100, "bottom": 2055, "left": 665}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729658f.jpg"} -{"rects": [{"solidity": 0.9963748533463399, "top": 2270, "right": 3240, "bottom": 3875, "left": 850}, {"solidity": 0.9956323679087739, "top": 410, "right": 3265, "bottom": 2015, "left": 875}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728206f.jpg"} -{"rects": [{"solidity": 0.9963749236064203, "top": 375, "right": 3075, "bottom": 2000, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729599f.jpg"} -{"rects": [{"solidity": 0.9963749682014754, "top": 1105, "right": 1955, "bottom": 3065, "left": 440}, {"solidity": 0.9902256425452549, "top": 1115, "right": 3750, "bottom": 3055, "left": 2240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717627f.jpg"} -{"rects": [{"solidity": 0.9963750126537125, "top": 675, "right": 2715, "bottom": 2110, "left": 890}, {"solidity": 0.9971268387693831, "top": 2155, "right": 2700, "bottom": 3475, "left": 925}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727370f.jpg"} -{"rects": [{"solidity": 0.996375052193681, "top": 375, "right": 3225, "bottom": 2050, "left": 760}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700074f.jpg"} -{"rects": [{"solidity": 0.9963752809640979, "top": 795, "right": 3850, "bottom": 3215, "left": 2215}, {"solidity": 0.9972580211783063, "top": 740, "right": 2015, "bottom": 3160, "left": 400}, {"solidity": 0.9961232282700149, "top": 810, "right": 5680, "bottom": 3235, "left": 4055}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722938f.jpg"} -{"rects": [{"solidity": 0.9963754864261967, "top": 430, "right": 3015, "bottom": 2035, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722840f.jpg"} -{"rects": [{"solidity": 0.9963757111076451, "top": 515, "right": 3800, "bottom": 2590, "left": 2320}, {"solidity": 0.9928974504625157, "top": 500, "right": 2080, "bottom": 2595, "left": 620}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716213f.jpg"} -{"rects": [{"solidity": 0.9963757308675474, "top": 385, "right": 3060, "bottom": 2015, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710582f.jpg"} -{"rects": [{"solidity": 0.9963757576973357, "top": 775, "right": 2005, "bottom": 3160, "left": 425}, {"solidity": 0.9979248443633273, "top": 1095, "right": 3600, "bottom": 2885, "left": 2190}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724778f.jpg"} -{"rects": [{"solidity": 0.9963757830390432, "top": 800, "right": 3875, "bottom": 3250, "left": 2210}, {"solidity": 0.9961241304961627, "top": 800, "right": 2010, "bottom": 3240, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714636f.jpg"} -{"rects": [{"solidity": 0.9963759674872512, "top": 765, "right": 5365, "bottom": 3375, "left": 2190}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733421f.jpg"} -{"rects": [{"solidity": 0.9963760558973824, "top": 340, "right": 3050, "bottom": 1945, "left": 645}, {"solidity": 0.9955945987367487, "top": 4030, "right": 3030, "bottom": 5640, "left": 615}, {"solidity": 0.9953318676255873, "top": 2170, "right": 3030, "bottom": 3740, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729748f.jpg"} -{"rects": [{"solidity": 0.9963764324211187, "top": 750, "right": 1995, "bottom": 3160, "left": 395}, {"solidity": 0.9966539656641829, "top": 770, "right": 3835, "bottom": 3165, "left": 2245}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724676f.jpg"} -{"rects": [{"solidity": 0.9963765598165447, "top": 2100, "right": 3165, "bottom": 3700, "left": 775}, {"solidity": 0.9958939217805696, "top": 3995, "right": 3140, "bottom": 5560, "left": 770}, {"solidity": 0.992237748017314, "top": 455, "right": 2840, "bottom": 1775, "left": 1175}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711745f.jpg"} -{"rects": [{"solidity": 0.9963769038765218, "top": 2580, "right": 2855, "bottom": 5010, "left": 1205}, {"solidity": 0.9966292638850618, "top": 510, "right": 3265, "bottom": 2135, "left": 840}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731010f.jpg"} -{"rects": [{"solidity": 0.9963769665897746, "top": 380, "right": 3210, "bottom": 1980, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718649f.jpg"} -{"rects": [{"solidity": 0.9963769682816547, "top": 340, "right": 3670, "bottom": 2590, "left": 1335}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508927.jpg"} -{"rects": [{"solidity": 0.9963770809161687, "top": 735, "right": 3885, "bottom": 3145, "left": 2250}, {"solidity": 0.9951367265273616, "top": 725, "right": 2020, "bottom": 3130, "left": 405}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717848f.jpg"} -{"rects": [{"solidity": 0.9963771152296536, "top": 410, "right": 3290, "bottom": 2030, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726793f.jpg"} -{"rects": [{"solidity": 0.9963771862921261, "top": 820, "right": 2055, "bottom": 3240, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716647f.jpg"} -{"rects": [{"solidity": 0.9963773726112595, "top": 780, "right": 2040, "bottom": 3210, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729890f.jpg"} -{"rects": [{"solidity": 0.9963774449818387, "top": 385, "right": 3085, "bottom": 2000, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728812f.jpg"} -{"rects": [{"solidity": 0.9963775176092894, "top": 2200, "right": 3210, "bottom": 3820, "left": 765}, {"solidity": 0.996209888250974, "top": 365, "right": 3205, "bottom": 1990, "left": 770}, {"solidity": 0.9945814289920754, "top": 4040, "right": 3180, "bottom": 5685, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727949f.jpg"} -{"rects": [{"solidity": 0.9963775829478668, "top": 2220, "right": 3055, "bottom": 3835, "left": 625}, {"solidity": 0.9950691801138677, "top": 4075, "right": 3040, "bottom": 5710, "left": 600}, {"solidity": 0.9965454665434869, "top": 390, "right": 3045, "bottom": 1980, "left": 645}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/734370f.jpg"} -{"rects": [{"solidity": 0.996377829507144, "top": 650, "right": 3895, "bottom": 3040, "left": 2305}, {"solidity": 0.9984609984609985, "top": 650, "right": 2025, "bottom": 3025, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731613f.jpg"} -{"rects": [{"solidity": 0.9963778932075547, "top": 390, "right": 2675, "bottom": 1775, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721185f.jpg"} -{"rects": [{"solidity": 0.9963778966581447, "top": 740, "right": 5635, "bottom": 3185, "left": 3980}, {"solidity": 0.9970709958930613, "top": 730, "right": 3870, "bottom": 3165, "left": 2230}, {"solidity": 0.9961784410707989, "top": 705, "right": 2045, "bottom": 3130, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704528f.jpg"} -{"rects": [{"solidity": 0.9963780309950799, "top": 425, "right": 3110, "bottom": 2060, "left": 685}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/729143f.jpg"} -{"rects": [{"solidity": 0.9963780526482715, "top": 820, "right": 3915, "bottom": 3255, "left": 2265}, {"solidity": 0.9968375716886155, "top": 790, "right": 2045, "bottom": 3220, "left": 410}, {"solidity": 0.9967320052849602, "top": 835, "right": 5760, "bottom": 3270, "left": 4130}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704654f.jpg"} -{"rects": [{"solidity": 0.9963782088362706, "top": 440, "right": 3180, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709257f.jpg"} -{"rects": [{"solidity": 0.9963782123018698, "top": 665, "right": 2505, "bottom": 2150, "left": 415}, {"solidity": 0.9968410411928228, "top": 2540, "right": 2515, "bottom": 4020, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716040f.jpg"} -{"rects": [{"solidity": 0.9963782826888409, "top": 435, "right": 3065, "bottom": 2045, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729435f.jpg"} -{"rects": [{"solidity": 0.996378370036676, "top": 2265, "right": 3040, "bottom": 3865, "left": 630}, {"solidity": 0.9964054660681279, "top": 4130, "right": 3030, "bottom": 5720, "left": 625}, {"solidity": 0.9973244795093877, "top": 405, "right": 3005, "bottom": 1995, "left": 630}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729712f.jpg"} -{"rects": [{"solidity": 0.9963785256357971, "top": 800, "right": 5860, "bottom": 3210, "left": 4255}, {"solidity": 0.9965535577131378, "top": 815, "right": 3975, "bottom": 3215, "left": 2375}, {"solidity": 0.9955760520464465, "top": 800, "right": 2085, "bottom": 3200, "left": 490}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731674f.jpg"} -{"rects": [{"solidity": 0.9963785301319112, "top": 815, "right": 2025, "bottom": 3240, "left": 390}, {"solidity": 0.9949025329976349, "top": 1105, "right": 3585, "bottom": 2950, "left": 2130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706818f.jpg"} -{"rects": [{"solidity": 0.9963785356382112, "top": 2145, "right": 3175, "bottom": 3780, "left": 745}, {"solidity": 0.9958703659676469, "top": 305, "right": 3180, "bottom": 1920, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714307f.jpg"} -{"rects": [{"solidity": 0.9963786205473342, "top": 365, "right": 3200, "bottom": 1950, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734065f.jpg"} -{"rects": [{"solidity": 0.9963787058925415, "top": 745, "right": 3890, "bottom": 3170, "left": 2265}, {"solidity": 0.9967125559154713, "top": 760, "right": 5710, "bottom": 3180, "left": 4090}, {"solidity": 0.9990533668478085, "top": 750, "right": 2050, "bottom": 3160, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722982f.jpg"} -{"rects": [{"solidity": 0.9963787641793399, "top": 2325, "right": 3130, "bottom": 3930, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720346f.jpg"} -{"rects": [{"solidity": 0.9963788604029447, "top": 645, "right": 3235, "bottom": 2480, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709997f.jpg"} -{"rects": [{"solidity": 0.9963789261887795, "top": 670, "right": 3570, "bottom": 3090, "left": 1945}, {"solidity": 0.9992340060462456, "top": 1160, "right": 1710, "bottom": 2960, "left": 340}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709152f.jpg"} -{"rects": [{"solidity": 0.9963789662873832, "top": 420, "right": 2890, "bottom": 1920, "left": 985}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700867f.jpg"} -{"rects": [{"solidity": 0.9963791039255575, "top": 2375, "right": 2750, "bottom": 3800, "left": 930}, {"solidity": 0.995501947357578, "top": 580, "right": 2760, "bottom": 2000, "left": 940}, {"solidity": 0.9944072903197867, "top": 4235, "right": 2745, "bottom": 5365, "left": 925}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704250f.jpg"} -{"rects": [{"solidity": 0.9963791600545361, "top": 440, "right": 3135, "bottom": 2085, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728568f.jpg"} -{"rects": [{"solidity": 0.9963792020354756, "top": 345, "right": 3145, "bottom": 1985, "left": 700}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/700023f.jpg"} -{"rects": [{"solidity": 0.9963794085398692, "top": 390, "right": 5035, "bottom": 3635, "left": 1030}], "shape": {"h": 3890, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728151f.jpg"} -{"rects": [{"solidity": 0.996379522682036, "top": 1120, "right": 3470, "bottom": 4975, "left": 375}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731736f.jpg"} -{"rects": [{"solidity": 0.996379565227151, "top": 375, "right": 3320, "bottom": 2000, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700266f.jpg"} -{"rects": [{"solidity": 0.9963797158093471, "top": 805, "right": 3960, "bottom": 3200, "left": 2370}, {"solidity": 0.9957104344015193, "top": 810, "right": 5835, "bottom": 3205, "left": 4250}, {"solidity": 0.9969484874025165, "top": 795, "right": 2095, "bottom": 3190, "left": 515}], "shape": {"h": 3910, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731677f.jpg"} -{"rects": [{"solidity": 0.9963798196667504, "top": 600, "right": 2625, "bottom": 3460, "left": 795}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704426f.jpg"} -{"rects": [{"solidity": 0.9963799262612948, "top": 2300, "right": 3305, "bottom": 3940, "left": 865}, {"solidity": 0.9970707184634968, "top": 445, "right": 3290, "bottom": 2060, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728264f.jpg"} -{"rects": [{"solidity": 0.9963802892055283, "top": 1230, "right": 3855, "bottom": 5710, "left": 340}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708825f.jpg"} -{"rects": [{"solidity": 0.9963802927047257, "top": 420, "right": 3210, "bottom": 2050, "left": 770}, {"solidity": 0.9982100238663485, "top": 2215, "right": 3205, "bottom": 3840, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706838f.jpg"} -{"rects": [{"solidity": 0.9963803562888333, "top": 435, "right": 2610, "bottom": 3615, "left": 605}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733044f.jpg"} -{"rects": [{"solidity": 0.9963804134485483, "top": 2260, "right": 3110, "bottom": 3900, "left": 670}, {"solidity": 0.9962103602722642, "top": 405, "right": 3110, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702039f.jpg"} -{"rects": [{"solidity": 0.9963804140727933, "top": 730, "right": 3305, "bottom": 2640, "left": 605}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712428f.jpg"} -{"rects": [{"solidity": 0.9963804636671859, "top": 755, "right": 3875, "bottom": 3155, "left": 2265}, {"solidity": 0.9956762037134166, "top": 750, "right": 2005, "bottom": 3145, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717922f.jpg"} -{"rects": [{"solidity": 0.9963804650215629, "top": 890, "right": 5535, "bottom": 3290, "left": 3935}, {"solidity": 0.9948260965993916, "top": 885, "right": 3890, "bottom": 3285, "left": 2300}, {"solidity": 0.991754285134724, "top": 890, "right": 2215, "bottom": 3250, "left": 635}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709471f.jpg"} -{"rects": [{"solidity": 0.9963805154810432, "top": 385, "right": 3185, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701792f.jpg"} -{"rects": [{"solidity": 0.996380535179785, "top": 445, "right": 3235, "bottom": 2070, "left": 805}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/700919f.jpg"} -{"rects": [{"solidity": 0.9963806706223022, "top": 545, "right": 4950, "bottom": 3535, "left": 1135}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723387f.jpg"} -{"rects": [{"solidity": 0.9963808625180149, "top": 760, "right": 2060, "bottom": 3180, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715022f.jpg"} -{"rects": [{"solidity": 0.9963809283339645, "top": 665, "right": 3860, "bottom": 3075, "left": 2235}, {"solidity": 0.9963533080936481, "top": 680, "right": 5695, "bottom": 3100, "left": 4085}, {"solidity": 0.9974240099252343, "top": 665, "right": 1995, "bottom": 3060, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707311f.jpg"} -{"rects": [{"solidity": 0.9963810636570902, "top": 2140, "right": 2645, "bottom": 3500, "left": 850}, {"solidity": 0.9961317681129441, "top": 715, "right": 2645, "bottom": 2075, "left": 850}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723049f.jpg"} -{"rects": [{"solidity": 0.9963812598886987, "top": 915, "right": 3870, "bottom": 3345, "left": 2245}, {"solidity": 0.9968889778162173, "top": 910, "right": 2010, "bottom": 3330, "left": 395}, {"solidity": 0.9971174369155927, "top": 945, "right": 5715, "bottom": 3360, "left": 4100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729533f.jpg"} -{"rects": [{"solidity": 0.9963813138367384, "top": 840, "right": 2050, "bottom": 3270, "left": 430}, {"solidity": 0.9943369896800156, "top": 865, "right": 3960, "bottom": 3275, "left": 2345}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719461f.jpg"} -{"rects": [{"solidity": 0.9963813362093432, "top": 2110, "right": 2705, "bottom": 3570, "left": 875}, {"solidity": 0.9960831103146346, "top": 605, "right": 5260, "bottom": 2060, "left": 3425}, {"solidity": 0.9973995387861243, "top": 630, "right": 2695, "bottom": 2040, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702549f.jpg"} -{"rects": [{"solidity": 0.9963815513897034, "top": 810, "right": 3785, "bottom": 3230, "left": 2165}, {"solidity": 0.9972311998134142, "top": 815, "right": 1935, "bottom": 3205, "left": 350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730070f.jpg"} -{"rects": [{"solidity": 0.9963816312924929, "top": 470, "right": 5070, "bottom": 3565, "left": 1130}], "shape": {"h": 3915, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708536f.jpg"} -{"rects": [{"solidity": 0.996381764351471, "top": 820, "right": 2060, "bottom": 3230, "left": 425}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707704f.jpg"} -{"rects": [{"solidity": 0.9963818050951673, "top": 330, "right": 3140, "bottom": 1955, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713277f.jpg"} -{"rects": [{"solidity": 0.9963818093327477, "top": 740, "right": 4170, "bottom": 3445, "left": 2170}, {"solidity": 0.9968137889998945, "top": 895, "right": 2000, "bottom": 3325, "left": 370}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722971f.jpg"} -{"rects": [{"solidity": 0.9963821106920175, "top": 905, "right": 5705, "bottom": 3325, "left": 4075}, {"solidity": 0.9962009721136555, "top": 880, "right": 2030, "bottom": 3300, "left": 405}, {"solidity": 0.9964831597457054, "top": 880, "right": 3855, "bottom": 3310, "left": 2240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729146f.jpg"} -{"rects": [{"solidity": 0.996382237955381, "top": 790, "right": 3990, "bottom": 3210, "left": 2375}, {"solidity": 0.9965928891975119, "top": 770, "right": 2105, "bottom": 3190, "left": 490}, {"solidity": 0.998454490798829, "top": 805, "right": 5860, "bottom": 3210, "left": 4260}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731645f.jpg"} -{"rects": [{"solidity": 0.9963824209296422, "top": 1010, "right": 2480, "bottom": 3920, "left": 240}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508753.jpg"} -{"rects": [{"solidity": 0.9963824577025824, "top": 325, "right": 3165, "bottom": 1955, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704334f.jpg"} -{"rects": [{"solidity": 0.9963825406762487, "top": 370, "right": 3065, "bottom": 1985, "left": 650}, {"solidity": 0.9949311096184407, "top": 2225, "right": 3055, "bottom": 3830, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728411f.jpg"} -{"rects": [{"solidity": 0.9963827858034829, "top": 805, "right": 2030, "bottom": 3225, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707065f.jpg"} -{"rects": [{"solidity": 0.9963828460089127, "top": 465, "right": 3205, "bottom": 2080, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734639f.jpg"} -{"rects": [{"solidity": 0.9963828612009784, "top": 765, "right": 4055, "bottom": 3215, "left": 2415}, {"solidity": 0.9972387452655126, "top": 775, "right": 2155, "bottom": 3210, "left": 525}, {"solidity": 0.9966373412792905, "top": 800, "right": 5915, "bottom": 3215, "left": 4290}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718667f.jpg"} -{"rects": [{"solidity": 0.996382950245979, "top": 735, "right": 3860, "bottom": 3140, "left": 2255}, {"solidity": 0.9963410052434701, "top": 755, "right": 5720, "bottom": 3160, "left": 4105}, {"solidity": 0.9939119200791582, "top": 735, "right": 2010, "bottom": 3140, "left": 415}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731261f.jpg"} -{"rects": [{"solidity": 0.9963830390951401, "top": 2145, "right": 3190, "bottom": 3775, "left": 810}, {"solidity": 0.997099007434408, "top": 4045, "right": 3170, "bottom": 5665, "left": 795}, {"solidity": 0.9968738446099403, "top": 295, "right": 3185, "bottom": 1910, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707988f.jpg"} -{"rects": [{"solidity": 0.9963830635515509, "top": 805, "right": 3890, "bottom": 3230, "left": 2255}, {"solidity": 0.9970504697400043, "top": 780, "right": 2005, "bottom": 3205, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716539f.jpg"} -{"rects": [{"solidity": 0.9963831177654268, "top": 760, "right": 3930, "bottom": 3175, "left": 2315}, {"solidity": 0.9949734909947111, "top": 805, "right": 2045, "bottom": 3225, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732113f.jpg"} -{"rects": [{"solidity": 0.9963833400727861, "top": 765, "right": 3815, "bottom": 3175, "left": 2190}, {"solidity": 0.9974186684767533, "top": 775, "right": 2035, "bottom": 3180, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715047f.jpg"} -{"rects": [{"solidity": 0.9963833809430261, "top": 400, "right": 3145, "bottom": 2020, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724129f.jpg"} -{"rects": [{"solidity": 0.9963834500545834, "top": 790, "right": 2090, "bottom": 3225, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701011f.jpg"} -{"rects": [{"solidity": 0.9963834794262301, "top": 795, "right": 2425, "bottom": 3220, "left": 775}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712801f.jpg"} -{"rects": [{"solidity": 0.9963835095793365, "top": 450, "right": 3035, "bottom": 2080, "left": 625}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702314f.jpg"} -{"rects": [{"solidity": 0.9963835434638354, "top": 465, "right": 3170, "bottom": 2055, "left": 785}, {"solidity": 0.9964596823030698, "top": 2345, "right": 3170, "bottom": 3930, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718515f.jpg"} -{"rects": [{"solidity": 0.9963837188734498, "top": 790, "right": 3915, "bottom": 3190, "left": 2305}, {"solidity": 0.998369290857401, "top": 795, "right": 2105, "bottom": 3185, "left": 520}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708949f.jpg"} -{"rects": [{"solidity": 0.9963837248585609, "top": 675, "right": 2825, "bottom": 2115, "left": 975}, {"solidity": 0.9954117727197532, "top": 2120, "right": 2815, "bottom": 3545, "left": 990}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705209f.jpg"} -{"rects": [{"solidity": 0.9963839157412597, "top": 495, "right": 5760, "bottom": 4130, "left": 1155}], "shape": {"h": 4430, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708822f.jpg"} -{"rects": [{"solidity": 0.9963840137447433, "top": 395, "right": 3055, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729470f.jpg"} -{"rects": [{"solidity": 0.9963840829778231, "top": 475, "right": 2740, "bottom": 3685, "left": 715}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733097f.jpg"} -{"rects": [{"solidity": 0.9963842860628647, "top": 390, "right": 3225, "bottom": 2040, "left": 790}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706834f.jpg"} -{"rects": [{"solidity": 0.9963842873705516, "top": 460, "right": 3150, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721099f.jpg"} -{"rects": [{"solidity": 0.9963843292882275, "top": 765, "right": 2065, "bottom": 3180, "left": 430}, {"solidity": 0.9961354595857757, "top": 765, "right": 3925, "bottom": 3190, "left": 2285}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723520f.jpg"} -{"rects": [{"solidity": 0.9963844302147458, "top": 620, "right": 2770, "bottom": 2055, "left": 920}, {"solidity": 0.9954093818668195, "top": 585, "right": 5235, "bottom": 2020, "left": 3390}, {"solidity": 0.9975952520656785, "top": 2125, "right": 2795, "bottom": 3540, "left": 945}, {"solidity": 0.997449608022142, "top": 2070, "right": 5245, "bottom": 3490, "left": 3405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722617f.jpg"} -{"rects": [{"solidity": 0.9963844715136777, "top": 2215, "right": 3345, "bottom": 3840, "left": 915}, {"solidity": 0.9967899506993437, "top": 395, "right": 3335, "bottom": 2005, "left": 915}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705920f.jpg"} -{"rects": [{"solidity": 0.996384562176564, "top": 2245, "right": 3110, "bottom": 3875, "left": 690}, {"solidity": 0.9984587506206914, "top": 390, "right": 3105, "bottom": 2010, "left": 695}, {"solidity": 0.9957480493045346, "top": 4145, "right": 3110, "bottom": 5765, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710611f.jpg"} -{"rects": [{"solidity": 0.996384726022258, "top": 1050, "right": 3315, "bottom": 5105, "left": 330}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709055f.jpg"} -{"rects": [{"solidity": 0.9963848381524789, "top": 755, "right": 5725, "bottom": 3185, "left": 4100}, {"solidity": 0.9961465040282137, "top": 745, "right": 3865, "bottom": 3165, "left": 2255}, {"solidity": 0.9971668170341474, "top": 750, "right": 2030, "bottom": 3160, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722269f.jpg"} -{"rects": [{"solidity": 0.9963849136217282, "top": 2110, "right": 3365, "bottom": 4085, "left": 580}, {"solidity": 0.9960249139974255, "top": 410, "right": 3185, "bottom": 2020, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725157f.jpg"} -{"rects": [{"solidity": 0.9963850064760579, "top": 620, "right": 2700, "bottom": 2055, "left": 880}, {"solidity": 0.9961003771766337, "top": 615, "right": 4970, "bottom": 2015, "left": 3135}, {"solidity": 0.9965498662949617, "top": 2235, "right": 4970, "bottom": 3640, "left": 3150}, {"solidity": 0.9990777606441792, "top": 2250, "right": 2705, "bottom": 3645, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725075f.jpg"} -{"rects": [{"solidity": 0.9963850377995026, "top": 2215, "right": 4960, "bottom": 3640, "left": 3160}, {"solidity": 0.9973871107417122, "top": 645, "right": 2820, "bottom": 2040, "left": 1005}, {"solidity": 0.9936176283607566, "top": 2240, "right": 2825, "bottom": 3655, "left": 1030}, {"solidity": 0.9945195089895636, "top": 655, "right": 4955, "bottom": 2015, "left": 3160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726254f.jpg"} -{"rects": [{"solidity": 0.9963850874928, "top": 470, "right": 3080, "bottom": 2070, "left": 690}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/711143f.jpg"} -{"rects": [{"solidity": 0.9963851589084144, "top": 2285, "right": 3215, "bottom": 3905, "left": 795}, {"solidity": 0.9960725212025766, "top": 435, "right": 3220, "bottom": 2055, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702128f.jpg"} -{"rects": [{"solidity": 0.9963852272671233, "top": 2070, "right": 2630, "bottom": 3480, "left": 815}, {"solidity": 0.9970999445944664, "top": 625, "right": 2625, "bottom": 2030, "left": 830}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725104f.jpg"} -{"rects": [{"solidity": 0.9963852327870579, "top": 450, "right": 3075, "bottom": 2050, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728878f.jpg"} -{"rects": [{"solidity": 0.996385244968438, "top": 350, "right": 3185, "bottom": 2000, "left": 745}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701565f.jpg"} -{"rects": [{"solidity": 0.9963852956555346, "top": 765, "right": 2025, "bottom": 3185, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720291f.jpg"} -{"rects": [{"solidity": 0.9963853342367335, "top": 2210, "right": 3285, "bottom": 3835, "left": 855}, {"solidity": 0.9969706305196139, "top": 440, "right": 3260, "bottom": 2065, "left": 840}, {"solidity": 0.9971007769917662, "top": 3945, "right": 3280, "bottom": 5565, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726327f.jpg"} -{"rects": [{"solidity": 0.9963854082919911, "top": 935, "right": 1945, "bottom": 3350, "left": 345}, {"solidity": 0.9934448365200097, "top": 935, "right": 3780, "bottom": 3335, "left": 2190}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729229f.jpg"} -{"rects": [{"solidity": 0.9963854413430837, "top": 410, "right": 3225, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711117f.jpg"} -{"rects": [{"solidity": 0.9963854784780684, "top": 740, "right": 2070, "bottom": 3140, "left": 480}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711035f.jpg"} -{"rects": [{"solidity": 0.9963857406541977, "top": 780, "right": 2005, "bottom": 3160, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713271f.jpg"} -{"rects": [{"solidity": 0.9963858671806188, "top": 380, "right": 3150, "bottom": 1990, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729337f.jpg"} -{"rects": [{"solidity": 0.9963859037475497, "top": 2240, "right": 3110, "bottom": 3865, "left": 675}, {"solidity": 0.9954407634724322, "top": 4075, "right": 3090, "bottom": 5710, "left": 650}, {"solidity": 0.9971388432568322, "top": 395, "right": 3125, "bottom": 2010, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728930f.jpg"} -{"rects": [{"solidity": 0.9963859960539674, "top": 2240, "right": 3050, "bottom": 3875, "left": 630}, {"solidity": 0.9957004461069817, "top": 4130, "right": 3045, "bottom": 5735, "left": 615}, {"solidity": 0.9959547455584089, "top": 380, "right": 3030, "bottom": 1985, "left": 625}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729370f.jpg"} -{"rects": [{"solidity": 0.996386096755975, "top": 440, "right": 3220, "bottom": 2055, "left": 820}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707687f.jpg"} -{"rects": [{"solidity": 0.9963863885122441, "top": 740, "right": 2040, "bottom": 3145, "left": 425}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731723f.jpg"} -{"rects": [{"solidity": 0.9963865376021912, "top": 2180, "right": 3175, "bottom": 3805, "left": 750}, {"solidity": 0.9991207122230993, "top": 345, "right": 3160, "bottom": 1925, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734445f.jpg"} -{"rects": [{"solidity": 0.9963866131243029, "top": 765, "right": 3295, "bottom": 2690, "left": 575}, {"solidity": 0.9955511488106981, "top": 3315, "right": 3230, "bottom": 5225, "left": 670}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/717864f.jpg"} -{"rects": [{"solidity": 0.9963867041137487, "top": 795, "right": 2020, "bottom": 3205, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723957f.jpg"} -{"rects": [{"solidity": 0.9963868470773342, "top": 1070, "right": 3365, "bottom": 4930, "left": 375}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720998f.jpg"} -{"rects": [{"solidity": 0.9963868487208557, "top": 470, "right": 3055, "bottom": 1890, "left": 1250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726558f.jpg"} -{"rects": [{"solidity": 0.9963869068225282, "top": 560, "right": 3115, "bottom": 2135, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711508f.jpg"} -{"rects": [{"solidity": 0.9963869422138605, "top": 2180, "right": 3175, "bottom": 3795, "left": 760}, {"solidity": 0.9976602653004617, "top": 415, "right": 3185, "bottom": 2015, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722628f.jpg"} -{"rects": [{"solidity": 0.9963869918592566, "top": 415, "right": 3220, "bottom": 2015, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725685f.jpg"} -{"rects": [{"solidity": 0.9963869983233364, "top": 420, "right": 3145, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701660f.jpg"} -{"rects": [{"solidity": 0.9963870279852783, "top": 2245, "right": 3110, "bottom": 3875, "left": 685}, {"solidity": 0.9973373771716313, "top": 410, "right": 3110, "bottom": 2030, "left": 690}, {"solidity": 0.9963913893809389, "top": 4110, "right": 3095, "bottom": 5700, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728423f.jpg"} -{"rects": [{"solidity": 0.9963871062969014, "top": 825, "right": 2050, "bottom": 3205, "left": 465}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717382f.jpg"} -{"rects": [{"solidity": 0.9963871502209131, "top": 465, "right": 3235, "bottom": 2070, "left": 830}], "shape": {"h": 6140, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/721018f.jpg"} -{"rects": [{"solidity": 0.996387221760444, "top": 700, "right": 2275, "bottom": 3110, "left": 660}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724279f.jpg"} -{"rects": [{"solidity": 0.9963872488900297, "top": 775, "right": 2060, "bottom": 3225, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715057f.jpg"} -{"rects": [{"solidity": 0.9963873225743729, "top": 515, "right": 5070, "bottom": 3740, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721118f.jpg"} -{"rects": [{"solidity": 0.9963873714221552, "top": 635, "right": 2760, "bottom": 2060, "left": 945}, {"solidity": 0.9956443611078558, "top": 2110, "right": 2770, "bottom": 3530, "left": 950}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707263f.jpg"} -{"rects": [{"solidity": 0.9963877778632413, "top": 1020, "right": 3615, "bottom": 5085, "left": 325}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/709098f.jpg"} -{"rects": [{"solidity": 0.9963878999516439, "top": 475, "right": 2665, "bottom": 2885, "left": 1055}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725935f.jpg"} -{"rects": [{"solidity": 0.9963879450435811, "top": 1055, "right": 2960, "bottom": 2110, "left": 1335}], "shape": {"h": 3005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1509723.jpg"} -{"rects": [{"solidity": 0.9963879777918893, "top": 640, "right": 3000, "bottom": 2440, "left": 1795}, {"solidity": 0.9983532439323827, "top": 635, "right": 1620, "bottom": 2430, "left": 430}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716350f.jpg"} -{"rects": [{"solidity": 0.9963879953374123, "top": 2125, "right": 2735, "bottom": 3565, "left": 960}, {"solidity": 0.9960545393005269, "top": 730, "right": 2745, "bottom": 2120, "left": 940}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705268f.jpg"} -{"rects": [{"solidity": 0.9963882029750548, "top": 245, "right": 5050, "bottom": 3520, "left": 930}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725870f.jpg"} -{"rects": [{"solidity": 0.9963883549824657, "top": 485, "right": 3150, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724732f.jpg"} -{"rects": [{"solidity": 0.9963885494060667, "top": 785, "right": 1950, "bottom": 3205, "left": 335}, {"solidity": 0.9983538533468401, "top": 805, "right": 3840, "bottom": 3205, "left": 2225}, {"solidity": 0.9969270407434809, "top": 805, "right": 5735, "bottom": 3210, "left": 4120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719930f.jpg"} -{"rects": [{"solidity": 0.9963885738125969, "top": 835, "right": 3895, "bottom": 3240, "left": 2280}, {"solidity": 0.9987562393139954, "top": 840, "right": 2005, "bottom": 3235, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728584f.jpg"} -{"rects": [{"solidity": 0.9963886769698201, "top": 890, "right": 2000, "bottom": 3285, "left": 400}, {"solidity": 0.9978289376848246, "top": 900, "right": 3875, "bottom": 3280, "left": 2295}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728294f.jpg"} -{"rects": [{"solidity": 0.9963887365149022, "top": 635, "right": 2930, "bottom": 2250, "left": 880}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/703426f.jpg"} -{"rects": [{"solidity": 0.9963887756041729, "top": 755, "right": 3965, "bottom": 3150, "left": 2365}, {"solidity": 0.9924139503981436, "top": 765, "right": 2080, "bottom": 3150, "left": 470}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711444f.jpg"} -{"rects": [{"solidity": 0.9963888398622772, "top": 1440, "right": 3235, "bottom": 4820, "left": 575}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708498f.jpg"} -{"rects": [{"solidity": 0.9963889800762608, "top": 845, "right": 3825, "bottom": 3310, "left": 2165}, {"solidity": 0.9956829139038608, "top": 845, "right": 2025, "bottom": 3270, "left": 400}, {"solidity": 0.994256623835251, "top": 1190, "right": 5500, "bottom": 3055, "left": 4055}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706469f.jpg"} -{"rects": [{"solidity": 0.9963889862472789, "top": 420, "right": 3195, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719284f.jpg"} -{"rects": [{"solidity": 0.9963889970616349, "top": 510, "right": 3210, "bottom": 2560, "left": 360}, {"solidity": 0.9952170202155817, "top": 2870, "right": 3090, "bottom": 4825, "left": 355}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702728f.jpg"} -{"rects": [{"solidity": 0.9963890754999741, "top": 395, "right": 3080, "bottom": 2015, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729874f.jpg"} -{"rects": [{"solidity": 0.9963892370117778, "top": 735, "right": 2045, "bottom": 3155, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721744f.jpg"} -{"rects": [{"solidity": 0.9963893829066138, "top": 550, "right": 3125, "bottom": 2130, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721084f.jpg"} -{"rects": [{"solidity": 0.9963894708550963, "top": 2225, "right": 3110, "bottom": 3850, "left": 695}, {"solidity": 0.9942872348114032, "top": 475, "right": 3120, "bottom": 2095, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712437f.jpg"} -{"rects": [{"solidity": 0.9963895394223263, "top": 2075, "right": 5325, "bottom": 3490, "left": 3490}, {"solidity": 0.9962232710364303, "top": 2090, "right": 2655, "bottom": 3495, "left": 850}, {"solidity": 0.9962453634780853, "top": 635, "right": 2665, "bottom": 2020, "left": 850}, {"solidity": 0.9949320714394749, "top": 620, "right": 5320, "bottom": 2025, "left": 3535}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702986f.jpg"} -{"rects": [{"solidity": 0.9963895587092013, "top": 895, "right": 1995, "bottom": 3305, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728688f.jpg"} -{"rects": [{"solidity": 0.996389647313672, "top": 2255, "right": 3190, "bottom": 3865, "left": 760}, {"solidity": 0.996015871678002, "top": 440, "right": 3195, "bottom": 2045, "left": 770}, {"solidity": 0.9941490243498103, "top": 4080, "right": 3180, "bottom": 5690, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733917f.jpg"} -{"rects": [{"solidity": 0.9963897746198331, "top": 505, "right": 5095, "bottom": 3615, "left": 1230}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720350f.jpg"} -{"rects": [{"solidity": 0.9963898679572833, "top": 800, "right": 2135, "bottom": 3205, "left": 525}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710602f.jpg"} -{"rects": [{"solidity": 0.9963900363667937, "top": 430, "right": 3260, "bottom": 2015, "left": 870}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726097f.jpg"} -{"rects": [{"solidity": 0.9963900752491357, "top": 775, "right": 2050, "bottom": 3215, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723791f.jpg"} -{"rects": [{"solidity": 0.9963902906783035, "top": 370, "right": 4590, "bottom": 2815, "left": 1375}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507887.jpg"} -{"rects": [{"solidity": 0.9963903509469366, "top": 845, "right": 2085, "bottom": 3280, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708003f.jpg"} -{"rects": [{"solidity": 0.9963904249921322, "top": 405, "right": 3280, "bottom": 2025, "left": 855}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727723f.jpg"} -{"rects": [{"solidity": 0.9963904462022886, "top": 2095, "right": 2705, "bottom": 3530, "left": 870}, {"solidity": 0.99538363422292, "top": 620, "right": 2705, "bottom": 2015, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706743f.jpg"} -{"rects": [{"solidity": 0.9963906292563334, "top": 770, "right": 3895, "bottom": 3190, "left": 2285}, {"solidity": 0.9973992541881603, "top": 785, "right": 2030, "bottom": 3180, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721158f.jpg"} -{"rects": [{"solidity": 0.9963906959748616, "top": 465, "right": 5135, "bottom": 3735, "left": 1005}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724768f.jpg"} -{"rects": [{"solidity": 0.9963909474807335, "top": 2250, "right": 3125, "bottom": 3880, "left": 710}, {"solidity": 0.9999382619771764, "top": 400, "right": 3125, "bottom": 2015, "left": 730}, {"solidity": 0.9948916504123353, "top": 4090, "right": 3110, "bottom": 5730, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718744f.jpg"} -{"rects": [{"solidity": 0.9963909960395331, "top": 755, "right": 2015, "bottom": 3175, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703718f.jpg"} -{"rects": [{"solidity": 0.9963911664566373, "top": 415, "right": 3070, "bottom": 2030, "left": 660}, {"solidity": 0.9957991479962133, "top": 2285, "right": 3080, "bottom": 3885, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701802f.jpg"} -{"rects": [{"solidity": 0.9963912937939963, "top": 740, "right": 2040, "bottom": 3150, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715746f.jpg"} -{"rects": [{"solidity": 0.9963913510017492, "top": 970, "right": 2055, "bottom": 2045, "left": 440}, {"solidity": 0.9890103299899549, "top": 2695, "right": 2090, "bottom": 3750, "left": 475}], "shape": {"h": 4645, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509689.jpg"} -{"rects": [{"solidity": 0.996391379227092, "top": 2375, "right": 3140, "bottom": 3995, "left": 720}, {"solidity": 0.9956795661688511, "top": 455, "right": 3130, "bottom": 2055, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724919f.jpg"} -{"rects": [{"solidity": 0.9963914345573964, "top": 740, "right": 2025, "bottom": 3160, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708007f.jpg"} -{"rects": [{"solidity": 0.9963914408879005, "top": 485, "right": 3030, "bottom": 1910, "left": 1210}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728225f.jpg"} -{"rects": [{"solidity": 0.9963915876506467, "top": 800, "right": 4375, "bottom": 3525, "left": 2550}, {"solidity": 0.9948059513744252, "top": 830, "right": 2280, "bottom": 3545, "left": 470}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/708893f.jpg"} -{"rects": [{"solidity": 0.9963916753527838, "top": 2220, "right": 3265, "bottom": 3855, "left": 835}, {"solidity": 0.9977141903193392, "top": 375, "right": 3265, "bottom": 2000, "left": 850}, {"solidity": 0.9979193799945332, "top": 4065, "right": 3240, "bottom": 5685, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730527f.jpg"} -{"rects": [{"solidity": 0.996391896543885, "top": 445, "right": 3150, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723326f.jpg"} -{"rects": [{"solidity": 0.9963921109208647, "top": 2280, "right": 3170, "bottom": 3900, "left": 740}, {"solidity": 0.9988320024848257, "top": 455, "right": 3150, "bottom": 2065, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715347f.jpg"} -{"rects": [{"solidity": 0.9963921294383166, "top": 350, "right": 3205, "bottom": 1985, "left": 770}, {"solidity": 0.9963843769215003, "top": 2245, "right": 3200, "bottom": 3875, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701474f.jpg"} -{"rects": [{"solidity": 0.9963921518006971, "top": 885, "right": 2005, "bottom": 3310, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729655f.jpg"} -{"rects": [{"solidity": 0.9963922608498674, "top": 720, "right": 2005, "bottom": 3110, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718391f.jpg"} -{"rects": [{"solidity": 0.996392325024554, "top": 480, "right": 3210, "bottom": 2115, "left": 795}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711813f.jpg"} -{"rects": [{"solidity": 0.9963924052682541, "top": 720, "right": 2065, "bottom": 3140, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722096f.jpg"} -{"rects": [{"solidity": 0.996392461993713, "top": 4135, "right": 3365, "bottom": 5770, "left": 940}, {"solidity": 0.9991525911524121, "top": 2255, "right": 3380, "bottom": 3880, "left": 960}, {"solidity": 0.9976289958346354, "top": 405, "right": 3385, "bottom": 2025, "left": 970}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704755f.jpg"} -{"rects": [{"solidity": 0.996392489376805, "top": 775, "right": 2015, "bottom": 3195, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711972f.jpg"} -{"rects": [{"solidity": 0.9963925230683096, "top": 475, "right": 3025, "bottom": 1830, "left": 1250}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725475f.jpg"} -{"rects": [{"solidity": 0.9963925268208493, "top": 700, "right": 2025, "bottom": 3115, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725668f.jpg"} -{"rects": [{"solidity": 0.9963925292237997, "top": 2550, "right": 3445, "bottom": 4385, "left": 715}, {"solidity": 0.996547541527815, "top": 440, "right": 3450, "bottom": 2275, "left": 735}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711260f.jpg"} -{"rects": [{"solidity": 0.9963925430791829, "top": 2295, "right": 3210, "bottom": 3905, "left": 785}, {"solidity": 0.9980156668138949, "top": 425, "right": 3200, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734564f.jpg"} -{"rects": [{"solidity": 0.9963927998343599, "top": 380, "right": 3090, "bottom": 2000, "left": 675}, {"solidity": 0.9959047995490096, "top": 2245, "right": 3090, "bottom": 3860, "left": 670}, {"solidity": 0.9972200339845962, "top": 4105, "right": 3065, "bottom": 5710, "left": 650}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731330f.jpg"} -{"rects": [{"solidity": 0.996392874218971, "top": 465, "right": 3185, "bottom": 2085, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710583f.jpg"} -{"rects": [{"solidity": 0.9963930364309773, "top": 425, "right": 3055, "bottom": 2040, "left": 630}, {"solidity": 0.9955656704641047, "top": 2320, "right": 3060, "bottom": 3925, "left": 650}, {"solidity": 0.9918597529856078, "top": 4170, "right": 2860, "bottom": 5730, "left": 950}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724156f.jpg"} -{"rects": [{"solidity": 0.9963932711103769, "top": 985, "right": 2700, "bottom": 4155, "left": 250}], "shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508593.jpg"} -{"rects": [{"solidity": 0.9963934231539733, "top": 395, "right": 3240, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700037f.jpg"} -{"rects": [{"solidity": 0.9963936795149687, "top": 845, "right": 3940, "bottom": 3295, "left": 2280}, {"solidity": 0.9973429548141675, "top": 850, "right": 2035, "bottom": 3280, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702468f.jpg"} -{"rects": [{"solidity": 0.9963937718771957, "top": 780, "right": 2035, "bottom": 3210, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723449f.jpg"} -{"rects": [{"solidity": 0.9963938578439132, "top": 450, "right": 3240, "bottom": 2090, "left": 800}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706577f.jpg"} -{"rects": [{"solidity": 0.9963941186499015, "top": 440, "right": 3160, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733677f.jpg"} -{"rects": [{"solidity": 0.9963944856839873, "top": 3925, "right": 2780, "bottom": 5175, "left": 1155}, {"solidity": 0.9976855825782864, "top": 2145, "right": 2820, "bottom": 3385, "left": 1220}, {"solidity": 0.9941296613519568, "top": 470, "right": 2775, "bottom": 1710, "left": 1210}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731169f.jpg"} -{"rects": [{"solidity": 0.9963945988438723, "top": 1880, "right": 2785, "bottom": 4320, "left": 1125}, {"solidity": 0.9967976116464615, "top": 210, "right": 3185, "bottom": 1830, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712186f.jpg"} -{"rects": [{"solidity": 0.9963946290142148, "top": 730, "right": 2000, "bottom": 3130, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718401f.jpg"} -{"rects": [{"solidity": 0.9963946837973813, "top": 725, "right": 2045, "bottom": 3125, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710998f.jpg"} -{"rects": [{"solidity": 0.9963947676580015, "top": 410, "right": 5235, "bottom": 3630, "left": 1160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732716f.jpg"} -{"rects": [{"solidity": 0.9963947709198161, "top": 2300, "right": 3205, "bottom": 3875, "left": 800}, {"solidity": 0.9970742182257415, "top": 435, "right": 3215, "bottom": 2005, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725390f.jpg"} -{"rects": [{"solidity": 0.9963950117252821, "top": 840, "right": 3915, "bottom": 3240, "left": 2320}, {"solidity": 0.9944188892991016, "top": 860, "right": 2040, "bottom": 3250, "left": 435}, {"solidity": 0.9977530790829358, "top": 870, "right": 5765, "bottom": 3255, "left": 4185}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731300f.jpg"} -{"rects": [{"solidity": 0.9963950189422898, "top": 4085, "right": 3055, "bottom": 5645, "left": 670}, {"solidity": 0.9975386731303448, "top": 405, "right": 3070, "bottom": 1960, "left": 690}, {"solidity": 0.9980469616938169, "top": 2230, "right": 3065, "bottom": 3780, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730914f.jpg"} -{"rects": [{"solidity": 0.9963950638574475, "top": 440, "right": 3145, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734226f.jpg"} -{"rects": [{"solidity": 0.9963951043822623, "top": 450, "right": 3155, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721172f.jpg"} -{"rects": [{"solidity": 0.9963951437436432, "top": 420, "right": 3160, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728810f.jpg"} -{"rects": [{"solidity": 0.9963952160072161, "top": 750, "right": 2045, "bottom": 3145, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725226f.jpg"} -{"rects": [{"solidity": 0.9963952667471415, "top": 1075, "right": 3465, "bottom": 4970, "left": 355}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714689f.jpg"} -{"rects": [{"solidity": 0.9963953466037506, "top": 2225, "right": 3080, "bottom": 3855, "left": 645}, {"solidity": 0.9984710820259624, "top": 390, "right": 3085, "bottom": 1995, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734381f.jpg"} -{"rects": [{"solidity": 0.9963954922334173, "top": 425, "right": 3215, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710561f.jpg"} -{"rects": [{"solidity": 0.9963955883330011, "top": 640, "right": 2450, "bottom": 3015, "left": 840}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710301f.jpg"} -{"rects": [{"solidity": 0.9963956270913803, "top": 885, "right": 2290, "bottom": 3280, "left": 700}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709337f.jpg"} -{"rects": [{"solidity": 0.9963957433527642, "top": 825, "right": 2045, "bottom": 3195, "left": 460}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702064f.jpg"} -{"rects": [{"solidity": 0.9963962056407216, "top": 420, "right": 3020, "bottom": 1860, "left": 925}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700098f.jpg"} -{"rects": [{"solidity": 0.9963962221577539, "top": 730, "right": 2020, "bottom": 3150, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725587f.jpg"} -{"rects": [{"solidity": 0.9963963099748989, "top": 420, "right": 3065, "bottom": 2060, "left": 635}, {"solidity": 0.9978019721283649, "top": 2280, "right": 3050, "bottom": 3905, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701280f.jpg"} -{"rects": [{"solidity": 0.9963963210971128, "top": 415, "right": 3170, "bottom": 2040, "left": 745}, {"solidity": 0.9967167462556618, "top": 2300, "right": 3155, "bottom": 3885, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729606f.jpg"} -{"rects": [{"solidity": 0.9963964324681435, "top": 435, "right": 3235, "bottom": 3820, "left": 635}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/714646f.jpg"} -{"rects": [{"solidity": 0.9963964952125326, "top": 790, "right": 2065, "bottom": 3215, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710564f.jpg"} -{"rects": [{"solidity": 0.9963968021619187, "top": 390, "right": 2435, "bottom": 2810, "left": 810}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700204f.jpg"} -{"rects": [{"solidity": 0.9963968814051838, "top": 790, "right": 2045, "bottom": 3195, "left": 430}, {"solidity": 0.9952883491362514, "top": 775, "right": 3840, "bottom": 3185, "left": 2220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713999f.jpg"} -{"rects": [{"solidity": 0.9963970654650194, "top": 475, "right": 3200, "bottom": 2060, "left": 815}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724855f.jpg"} -{"rects": [{"solidity": 0.9963970707769548, "top": 365, "right": 3160, "bottom": 1825, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720651f.jpg"} -{"rects": [{"solidity": 0.9963973680683639, "top": 335, "right": 3100, "bottom": 1975, "left": 670}, {"solidity": 0.9973469177994193, "top": 755, "right": 5100, "bottom": 3180, "left": 3480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704185f.jpg"} -{"rects": [{"solidity": 0.996397527525594, "top": 790, "right": 2035, "bottom": 3220, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705652f.jpg"} -{"rects": [{"solidity": 0.9963977200596729, "top": 400, "right": 3210, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727786f.jpg"} -{"rects": [{"solidity": 0.9963980131389201, "top": 930, "right": 1980, "bottom": 3355, "left": 350}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729624f.jpg"} -{"rects": [{"solidity": 0.9963981839264219, "top": 775, "right": 3860, "bottom": 3230, "left": 2195}, {"solidity": 0.9966499162479062, "top": 765, "right": 2000, "bottom": 3195, "left": 365}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707189f.jpg"} -{"rects": [{"solidity": 0.9963981946190436, "top": 880, "right": 2115, "bottom": 3310, "left": 485}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704455f.jpg"} -{"rects": [{"solidity": 0.9963982705720772, "top": 1260, "right": 3205, "bottom": 4620, "left": 690}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720878f.jpg"} -{"rects": [{"solidity": 0.9963984151727722, "top": 400, "right": 3095, "bottom": 2015, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728646f.jpg"} -{"rects": [{"solidity": 0.9963984628075894, "top": 645, "right": 2435, "bottom": 3450, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705150f.jpg"} -{"rects": [{"solidity": 0.9963985652836923, "top": 455, "right": 5025, "bottom": 3765, "left": 1125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715122f.jpg"} -{"rects": [{"solidity": 0.9963986018479253, "top": 820, "right": 2060, "bottom": 3250, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729994f.jpg"} -{"rects": [{"solidity": 0.9963986351700941, "top": 2120, "right": 2780, "bottom": 3550, "left": 960}, {"solidity": 0.9962100940908605, "top": 620, "right": 2765, "bottom": 2050, "left": 950}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705906f.jpg"} -{"rects": [{"solidity": 0.9963987559338681, "top": 400, "right": 3080, "bottom": 2020, "left": 655}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729479f.jpg"} -{"rects": [{"solidity": 0.9963988856929314, "top": 535, "right": 2980, "bottom": 2160, "left": 570}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704560f.jpg"} -{"rects": [{"solidity": 0.9963989130542712, "top": 785, "right": 1965, "bottom": 3185, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734636f.jpg"} -{"rects": [{"solidity": 0.9963989650644904, "top": 870, "right": 2030, "bottom": 3285, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721656f.jpg"} -{"rects": [{"solidity": 0.9963990815634999, "top": 410, "right": 3245, "bottom": 1990, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727638f.jpg"} -{"rects": [{"solidity": 0.9963991328240027, "top": 2450, "right": 3285, "bottom": 4405, "left": 510}, {"solidity": 0.9963891939794759, "top": 455, "right": 3280, "bottom": 2390, "left": 510}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726207f.jpg"} -{"rects": [{"solidity": 0.9963993349695195, "top": 2120, "right": 3210, "bottom": 3755, "left": 760}, {"solidity": 0.9967825855437688, "top": 295, "right": 3220, "bottom": 1920, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719213f.jpg"} -{"rects": [{"solidity": 0.9963993653118516, "top": 1210, "right": 2905, "bottom": 4900, "left": 1060}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721418f.jpg"} -{"rects": [{"solidity": 0.9963994625475117, "top": 420, "right": 3175, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710541f.jpg"} -{"rects": [{"solidity": 0.9963995586555772, "top": 415, "right": 3140, "bottom": 2030, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722640f.jpg"} -{"rects": [{"solidity": 0.9963996007847502, "top": 760, "right": 3930, "bottom": 3235, "left": 2230}, {"solidity": 0.9971110587905899, "top": 730, "right": 2015, "bottom": 3165, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733874f.jpg"} -{"rects": [{"solidity": 0.9963996458668065, "top": 615, "right": 3130, "bottom": 2220, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720160f.jpg"} -{"rects": [{"solidity": 0.9963997378139439, "top": 390, "right": 3350, "bottom": 2030, "left": 925}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706070f.jpg"} -{"rects": [{"solidity": 0.9964000853888102, "top": 4065, "right": 3000, "bottom": 5680, "left": 580}, {"solidity": 0.9959334385217236, "top": 395, "right": 3020, "bottom": 2000, "left": 605}, {"solidity": 0.9951362280779118, "top": 2230, "right": 3010, "bottom": 3840, "left": 595}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730627f.jpg"} -{"rects": [{"solidity": 0.9964002033424414, "top": 790, "right": 3900, "bottom": 3230, "left": 2260}, {"solidity": 0.9970664211931162, "top": 780, "right": 2020, "bottom": 3215, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716680f.jpg"} -{"rects": [{"solidity": 0.9964002510856894, "top": 880, "right": 2010, "bottom": 3305, "left": 370}, {"solidity": 0.9969542004374116, "top": 895, "right": 3870, "bottom": 3310, "left": 2245}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700251f.jpg"} -{"rects": [{"solidity": 0.9964003831850158, "top": 1230, "right": 5270, "bottom": 3060, "left": 3115}, {"solidity": 0.9979617744551802, "top": 910, "right": 2590, "bottom": 3050, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720736f.jpg"} -{"rects": [{"solidity": 0.9964005162959886, "top": 675, "right": 5615, "bottom": 3115, "left": 3975}, {"solidity": 0.997013338088218, "top": 655, "right": 3830, "bottom": 3090, "left": 2205}, {"solidity": 0.9978005631069201, "top": 670, "right": 2070, "bottom": 3090, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706338f.jpg"} -{"rects": [{"solidity": 0.9964005779533801, "top": 910, "right": 3820, "bottom": 3330, "left": 2185}, {"solidity": 0.9967099209283253, "top": 900, "right": 1980, "bottom": 3325, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723264f.jpg"} -{"rects": [{"solidity": 0.9964006574972225, "top": 820, "right": 1970, "bottom": 3240, "left": 360}, {"solidity": 0.9946503033986499, "top": 830, "right": 3805, "bottom": 3245, "left": 2185}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723907f.jpg"} -{"rects": [{"solidity": 0.9964008248920248, "top": 760, "right": 2035, "bottom": 3175, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732569f.jpg"} -{"rects": [{"solidity": 0.9964008493160221, "top": 330, "right": 3925, "bottom": 2715, "left": 860}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509801.jpg"} -{"rects": [{"solidity": 0.9964009002599888, "top": 2160, "right": 3210, "bottom": 3785, "left": 795}, {"solidity": 0.994493288796769, "top": 330, "right": 3210, "bottom": 1945, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710822f.jpg"} -{"rects": [{"solidity": 0.99640090984999, "top": 610, "right": 1495, "bottom": 2410, "left": 275}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715863f.jpg"} -{"rects": [{"solidity": 0.9964011372770383, "top": 765, "right": 4935, "bottom": 3300, "left": 1115}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723533f.jpg"} -{"rects": [{"solidity": 0.9964012826856713, "top": 2240, "right": 3100, "bottom": 3870, "left": 685}, {"solidity": 0.9957783181645198, "top": 365, "right": 3100, "bottom": 1995, "left": 690}, {"solidity": 0.9962863606981254, "top": 4100, "right": 3100, "bottom": 5725, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719556f.jpg"} -{"rects": [{"solidity": 0.9964013064822119, "top": 840, "right": 3890, "bottom": 3245, "left": 2285}, {"solidity": 0.995262170919669, "top": 845, "right": 2040, "bottom": 3235, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710216f.jpg"} -{"rects": [{"solidity": 0.9964013127605563, "top": 415, "right": 3310, "bottom": 3830, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712473f.jpg"} -{"rects": [{"solidity": 0.9964013424641589, "top": 790, "right": 3895, "bottom": 3205, "left": 2275}, {"solidity": 0.9971364979369769, "top": 780, "right": 2105, "bottom": 3195, "left": 500}, {"solidity": 0.9983180458039155, "top": 795, "right": 5655, "bottom": 3200, "left": 4050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716562f.jpg"} -{"rects": [{"solidity": 0.9964015402571622, "top": 405, "right": 3225, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711116f.jpg"} -{"rects": [{"solidity": 0.9964016758451688, "top": 615, "right": 5035, "bottom": 3555, "left": 970}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730699f.jpg"} -{"rects": [{"solidity": 0.9964017909818195, "top": 415, "right": 3265, "bottom": 3830, "left": 625}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714796f.jpg"} -{"rects": [{"solidity": 0.996402033979315, "top": 500, "right": 3360, "bottom": 2520, "left": 550}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733809f.jpg"} -{"rects": [{"solidity": 0.9964020901749385, "top": 1045, "right": 4940, "bottom": 3055, "left": 3415}, {"solidity": 0.9970871453195439, "top": 1080, "right": 2750, "bottom": 3095, "left": 1230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719412f.jpg"} -{"rects": [{"solidity": 0.9964021471057595, "top": 2255, "right": 3195, "bottom": 3870, "left": 770}, {"solidity": 0.9976643396569175, "top": 435, "right": 3200, "bottom": 2040, "left": 785}, {"solidity": 0.9991616789815374, "top": 4095, "right": 3185, "bottom": 5700, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734543f.jpg"} -{"rects": [{"solidity": 0.996402292643892, "top": 735, "right": 2005, "bottom": 3150, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711908f.jpg"} -{"rects": [{"solidity": 0.9964024069078895, "top": 745, "right": 3840, "bottom": 3180, "left": 2200}, {"solidity": 0.9979846109268858, "top": 740, "right": 2005, "bottom": 3155, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707491f.jpg"} -{"rects": [{"solidity": 0.9964025286040807, "top": 815, "right": 5820, "bottom": 3210, "left": 4240}, {"solidity": 0.9963666712474317, "top": 815, "right": 3940, "bottom": 3205, "left": 2365}, {"solidity": 0.9954556326237742, "top": 820, "right": 2070, "bottom": 3205, "left": 500}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731670f.jpg"} -{"rects": [{"solidity": 0.9964025292460696, "top": 450, "right": 5115, "bottom": 3745, "left": 1055}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708599f.jpg"} -{"rects": [{"solidity": 0.996402549794571, "top": 485, "right": 3190, "bottom": 2110, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710560f.jpg"} -{"rects": [{"solidity": 0.9964026409381731, "top": 3170, "right": 3280, "bottom": 5170, "left": 480}, {"solidity": 0.9960216037263371, "top": 690, "right": 3215, "bottom": 2680, "left": 500}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/705231f.jpg"} -{"rects": [{"solidity": 0.996402714345028, "top": 790, "right": 3905, "bottom": 3195, "left": 2285}, {"solidity": 0.9959160030849634, "top": 780, "right": 2060, "bottom": 3185, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716612f.jpg"} -{"rects": [{"solidity": 0.9964027857644879, "top": 400, "right": 3195, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/704984f.jpg"} -{"rects": [{"solidity": 0.9964029237855464, "top": 835, "right": 2070, "bottom": 3260, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710431f.jpg"} -{"rects": [{"solidity": 0.9964029925059684, "top": 790, "right": 2035, "bottom": 3225, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715198f.jpg"} -{"rects": [{"solidity": 0.9964032618192409, "top": 780, "right": 3250, "bottom": 2695, "left": 535}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714503f.jpg"} -{"rects": [{"solidity": 0.9964033097557721, "top": 825, "right": 1925, "bottom": 3210, "left": 340}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734579f.jpg"} -{"rects": [{"solidity": 0.9964033389324135, "top": 825, "right": 1930, "bottom": 3245, "left": 305}, {"solidity": 0.9962683815868355, "top": 825, "right": 5675, "bottom": 3245, "left": 4035}, {"solidity": 0.997275125652333, "top": 815, "right": 3790, "bottom": 3230, "left": 2165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715080f.jpg"} -{"rects": [{"solidity": 0.9964037163726721, "top": 360, "right": 3205, "bottom": 1995, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700110f.jpg"} -{"rects": [{"solidity": 0.9964037401102853, "top": 430, "right": 3175, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703246f.jpg"} -{"rects": [{"solidity": 0.9964040179274296, "top": 410, "right": 5070, "bottom": 3475, "left": 1155}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728277f.jpg"} -{"rects": [{"solidity": 0.9964041057645981, "top": 780, "right": 3910, "bottom": 3205, "left": 2280}, {"solidity": 0.9957190704451457, "top": 775, "right": 2045, "bottom": 3195, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723963f.jpg"} -{"rects": [{"solidity": 0.9964041415679336, "top": 710, "right": 5655, "bottom": 3160, "left": 4010}, {"solidity": 0.9965738676664302, "top": 695, "right": 3735, "bottom": 3140, "left": 2100}, {"solidity": 0.9937114756481957, "top": 940, "right": 1810, "bottom": 2755, "left": 460}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727936f.jpg"} -{"rects": [{"solidity": 0.996404146032331, "top": 415, "right": 3105, "bottom": 2060, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700501f.jpg"} -{"rects": [{"solidity": 0.9964043986405141, "top": 2280, "right": 3185, "bottom": 3895, "left": 770}, {"solidity": 0.9975946536301228, "top": 4045, "right": 3190, "bottom": 5650, "left": 780}, {"solidity": 0.9965320171450838, "top": 500, "right": 3185, "bottom": 2120, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700039f.jpg"} -{"rects": [{"solidity": 0.9964044283470767, "top": 470, "right": 3280, "bottom": 3910, "left": 625}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714828f.jpg"} -{"rects": [{"solidity": 0.9964044332535869, "top": 3725, "right": 3610, "bottom": 6025, "left": 435}, {"solidity": 0.9971063448852242, "top": 790, "right": 3605, "bottom": 3070, "left": 450}], "shape": {"h": 6860, "w": 4390}, "file": "/usr/local/google/home/danvk/milstein/711394f.jpg"} -{"rects": [{"solidity": 0.99640445185632, "top": 755, "right": 5815, "bottom": 3215, "left": 4065}, {"solidity": 0.997259338440525, "top": 740, "right": 4050, "bottom": 3200, "left": 2320}, {"solidity": 0.9959093789408303, "top": 775, "right": 2105, "bottom": 3150, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731251f.jpg"} -{"rects": [{"solidity": 0.9964045676998369, "top": 3360, "right": 3240, "bottom": 4960, "left": 825}, {"solidity": 0.9957935914322971, "top": 960, "right": 3200, "bottom": 2555, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730961f.jpg"} -{"rects": [{"solidity": 0.9964049448713665, "top": 795, "right": 1990, "bottom": 3190, "left": 405}, {"solidity": 0.9960849400694672, "top": 800, "right": 3845, "bottom": 3190, "left": 2260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722259f.jpg"} -{"rects": [{"solidity": 0.9964049634697901, "top": 430, "right": 3185, "bottom": 2055, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703260f.jpg"} -{"rects": [{"solidity": 0.9964050152499582, "top": 820, "right": 2035, "bottom": 3220, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717535f.jpg"} -{"rects": [{"solidity": 0.996405105683668, "top": 850, "right": 3900, "bottom": 3310, "left": 2240}, {"solidity": 0.9964111733820268, "top": 830, "right": 2035, "bottom": 3280, "left": 385}, {"solidity": 0.9965442792171292, "top": 880, "right": 5740, "bottom": 3315, "left": 4120}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703386f.jpg"} -{"rects": [{"solidity": 0.9964053611655835, "top": 465, "right": 3140, "bottom": 2075, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704388f.jpg"} -{"rects": [{"solidity": 0.9964053840063342, "top": 785, "right": 2075, "bottom": 3215, "left": 430}, {"solidity": 0.9970623674647658, "top": 780, "right": 3940, "bottom": 3215, "left": 2305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719494f.jpg"} -{"rects": [{"solidity": 0.9964054057539299, "top": 825, "right": 3855, "bottom": 3250, "left": 2220}, {"solidity": 0.9983154396311562, "top": 830, "right": 1985, "bottom": 3230, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700728f.jpg"} -{"rects": [{"solidity": 0.9964054990939888, "top": 815, "right": 3765, "bottom": 3220, "left": 2155}, {"solidity": 0.9954897903459802, "top": 835, "right": 5575, "bottom": 3240, "left": 3960}, {"solidity": 0.9962097741684575, "top": 810, "right": 1970, "bottom": 3205, "left": 365}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718807f.jpg"} -{"rects": [{"solidity": 0.9964056251965674, "top": 490, "right": 3890, "bottom": 2580, "left": 2410}, {"solidity": 0.99404072848222, "top": 480, "right": 2160, "bottom": 2575, "left": 680}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716157f.jpg"} -{"rects": [{"solidity": 0.996405643879626, "top": 360, "right": 2430, "bottom": 1595, "left": 620}, {"solidity": 0.9961909467479418, "top": 1730, "right": 2435, "bottom": 2955, "left": 630}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/732399f.jpg"} -{"rects": [{"solidity": 0.9964058341885582, "top": 870, "right": 3465, "bottom": 2780, "left": 1980}, {"solidity": 0.9973433171233219, "top": 870, "right": 1835, "bottom": 2775, "left": 380}, {"solidity": 0.9969939332106615, "top": 3320, "right": 3470, "bottom": 5200, "left": 1995}, {"solidity": 0.996029955788144, "top": 3335, "right": 1845, "bottom": 5195, "left": 415}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731443f.jpg"} -{"rects": [{"solidity": 0.9964058407501077, "top": 775, "right": 5675, "bottom": 3200, "left": 4055}, {"solidity": 0.9974113475177305, "top": 770, "right": 3850, "bottom": 3190, "left": 2235}, {"solidity": 0.9960750726868204, "top": 780, "right": 2035, "bottom": 3205, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729997f.jpg"} -{"rects": [{"solidity": 0.9964058674943669, "top": 845, "right": 2065, "bottom": 3260, "left": 450}, {"solidity": 0.9958536752852233, "top": 865, "right": 3885, "bottom": 3270, "left": 2275}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711769f.jpg"} -{"rects": [{"solidity": 0.9964059136470967, "top": 920, "right": 3905, "bottom": 3365, "left": 2245}, {"solidity": 0.9987600466580381, "top": 920, "right": 2045, "bottom": 3350, "left": 425}, {"solidity": 0.998496458934938, "top": 940, "right": 5695, "bottom": 3355, "left": 4080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718669f.jpg"} -{"rects": [{"solidity": 0.9964059640024405, "top": 2250, "right": 3040, "bottom": 3900, "left": 590}, {"solidity": 0.9972132731958763, "top": 390, "right": 3035, "bottom": 2010, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701058f.jpg"} -{"rects": [{"solidity": 0.9964059786524294, "top": 470, "right": 3280, "bottom": 3910, "left": 630}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714827f.jpg"} -{"rects": [{"solidity": 0.9964060010241307, "top": 2285, "right": 3115, "bottom": 3925, "left": 680}, {"solidity": 0.995919556047698, "top": 400, "right": 3125, "bottom": 2035, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726658f.jpg"} -{"rects": [{"solidity": 0.9964062275845132, "top": 790, "right": 2645, "bottom": 3615, "left": 810}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705523f.jpg"} -{"rects": [{"solidity": 0.9964062338021356, "top": 465, "right": 5065, "bottom": 3690, "left": 1005}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724261f.jpg"} -{"rects": [{"solidity": 0.9964065968597001, "top": 780, "right": 2715, "bottom": 2170, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726101f.jpg"} -{"rects": [{"solidity": 0.9964066667164703, "top": 720, "right": 3290, "bottom": 2610, "left": 600}, {"solidity": 0.9948549022729987, "top": 3270, "right": 3265, "bottom": 5165, "left": 580}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712542f.jpg"} -{"rects": [{"solidity": 0.9964066675299297, "top": 955, "right": 3485, "bottom": 4965, "left": 285}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/715244f.jpg"} -{"rects": [{"solidity": 0.996406785597307, "top": 965, "right": 3865, "bottom": 3390, "left": 2245}, {"solidity": 0.9968619519832985, "top": 965, "right": 2005, "bottom": 3380, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728342f.jpg"} -{"rects": [{"solidity": 0.9964067872528225, "top": 735, "right": 3910, "bottom": 3125, "left": 2300}, {"solidity": 0.9955887038954832, "top": 735, "right": 2040, "bottom": 3130, "left": 450}, {"solidity": 0.9966232578162837, "top": 775, "right": 5750, "bottom": 3130, "left": 4155}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731605f.jpg"} -{"rects": [{"solidity": 0.9964068419988653, "top": 895, "right": 3825, "bottom": 3295, "left": 2215}, {"solidity": 0.9951095538242701, "top": 865, "right": 1965, "bottom": 3275, "left": 360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723962f.jpg"} -{"rects": [{"solidity": 0.9964069469976475, "top": 325, "right": 3180, "bottom": 1945, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720181f.jpg"} -{"rects": [{"solidity": 0.9964071100002659, "top": 435, "right": 3030, "bottom": 2020, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728606f.jpg"} -{"rects": [{"solidity": 0.9964072125689716, "top": 965, "right": 2000, "bottom": 3385, "left": 380}, {"solidity": 0.9949496792946806, "top": 970, "right": 3835, "bottom": 3375, "left": 2240}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728458f.jpg"} -{"rects": [{"solidity": 0.9964073046131362, "top": 660, "right": 3880, "bottom": 3090, "left": 2250}, {"solidity": 0.9980244731386833, "top": 660, "right": 2020, "bottom": 3060, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726342f.jpg"} -{"rects": [{"solidity": 0.9964073049512379, "top": 610, "right": 2910, "bottom": 2410, "left": 1715}, {"solidity": 0.9986024295317845, "top": 615, "right": 4240, "bottom": 2410, "left": 3050}, {"solidity": 0.9968577189279693, "top": 610, "right": 1580, "bottom": 2410, "left": 390}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716519f.jpg"} -{"rects": [{"solidity": 0.9964073329247978, "top": 580, "right": 4905, "bottom": 3610, "left": 1045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719140f.jpg"} -{"rects": [{"solidity": 0.9964073336015689, "top": 800, "right": 5820, "bottom": 3240, "left": 4160}, {"solidity": 0.9965329355221431, "top": 770, "right": 4075, "bottom": 3195, "left": 2430}, {"solidity": 0.9957794196462751, "top": 775, "right": 2315, "bottom": 3210, "left": 670}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729720f.jpg"} -{"rects": [{"solidity": 0.9964073901364141, "top": 845, "right": 3905, "bottom": 3230, "left": 2295}, {"solidity": 0.9966818926139791, "top": 845, "right": 2035, "bottom": 3225, "left": 435}, {"solidity": 0.9969360652313038, "top": 855, "right": 5785, "bottom": 3250, "left": 4200}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731587f.jpg"} -{"rects": [{"solidity": 0.9964075725683137, "top": 785, "right": 3805, "bottom": 3210, "left": 2175}, {"solidity": 0.9979817163458443, "top": 780, "right": 1950, "bottom": 3195, "left": 330}, {"solidity": 0.997479964583286, "top": 815, "right": 5655, "bottom": 3225, "left": 4040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713280f.jpg"} -{"rects": [{"solidity": 0.9964076723016905, "top": 390, "right": 2925, "bottom": 2015, "left": 525}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723555f.jpg"} -{"rects": [{"solidity": 0.9964078067771431, "top": 790, "right": 2030, "bottom": 3215, "left": 405}, {"solidity": 0.9953221265985683, "top": 785, "right": 5660, "bottom": 3210, "left": 4045}, {"solidity": 0.996026920183842, "top": 805, "right": 3820, "bottom": 3195, "left": 2230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706268f.jpg"} -{"rects": [{"solidity": 0.9964079582052497, "top": 470, "right": 2835, "bottom": 1885, "left": 1010}, {"solidity": 0.9946509748709839, "top": 2170, "right": 2820, "bottom": 3590, "left": 1015}, {"solidity": 0.9948303618746688, "top": 490, "right": 4965, "bottom": 1890, "left": 3150}, {"solidity": 0.9948790953403792, "top": 2195, "right": 4970, "bottom": 3590, "left": 3155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726581f.jpg"} -{"rects": [{"solidity": 0.9964079771643135, "top": 655, "right": 3355, "bottom": 2585, "left": 610}, {"solidity": 0.9954608152923567, "top": 3270, "right": 3300, "bottom": 5185, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714617f.jpg"} -{"rects": [{"solidity": 0.9964082019024627, "top": 1280, "right": 3245, "bottom": 4690, "left": 600}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709726f.jpg"} -{"rects": [{"solidity": 0.9964082461097624, "top": 440, "right": 3220, "bottom": 2025, "left": 825}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724724f.jpg"} -{"rects": [{"solidity": 0.996408394774327, "top": 825, "right": 2030, "bottom": 3240, "left": 400}, {"solidity": 0.9955378957384975, "top": 830, "right": 3830, "bottom": 3245, "left": 2205}, {"solidity": 0.9966984402641248, "top": 830, "right": 5655, "bottom": 3245, "left": 4045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717088f.jpg"} -{"rects": [{"solidity": 0.9964084377510948, "top": 450, "right": 3210, "bottom": 2075, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715464f.jpg"} -{"rects": [{"solidity": 0.9964087370875624, "top": 760, "right": 3305, "bottom": 2745, "left": 475}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720492f.jpg"} -{"rects": [{"solidity": 0.9964088659894594, "top": 470, "right": 5085, "bottom": 3715, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725695f.jpg"} -{"rects": [{"solidity": 0.9964092178559344, "top": 2205, "right": 2720, "bottom": 3595, "left": 925}, {"solidity": 0.9963528513838162, "top": 760, "right": 2715, "bottom": 2150, "left": 940}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728248f.jpg"} -{"rects": [{"solidity": 0.9964094457706949, "top": 885, "right": 3865, "bottom": 3310, "left": 2250}, {"solidity": 0.9958304694956497, "top": 870, "right": 2020, "bottom": 3280, "left": 410}, {"solidity": 0.9951715233990389, "top": 880, "right": 5690, "bottom": 3290, "left": 4085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730322f.jpg"} -{"rects": [{"solidity": 0.9964096284620869, "top": 405, "right": 3105, "bottom": 2025, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728432f.jpg"} -{"rects": [{"solidity": 0.996409636073506, "top": 385, "right": 3065, "bottom": 2000, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729476f.jpg"} -{"rects": [{"solidity": 0.9964096835226429, "top": 420, "right": 3120, "bottom": 2040, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728662f.jpg"} -{"rects": [{"solidity": 0.9964097944476292, "top": 735, "right": 1935, "bottom": 3130, "left": 320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719734f.jpg"} -{"rects": [{"solidity": 0.9964099229158482, "top": 375, "right": 5290, "bottom": 3630, "left": 1235}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732458f.jpg"} -{"rects": [{"solidity": 0.9964099374478329, "top": 2225, "right": 3160, "bottom": 3840, "left": 740}, {"solidity": 0.9993726453991301, "top": 435, "right": 3160, "bottom": 2045, "left": 745}, {"solidity": 0.9971054663397394, "top": 4035, "right": 3150, "bottom": 5645, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732046f.jpg"} -{"rects": [{"solidity": 0.9964100482157437, "top": 415, "right": 3330, "bottom": 2395, "left": 505}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723414f.jpg"} -{"rects": [{"solidity": 0.9964101062826861, "top": 150, "right": 3380, "bottom": 1995, "left": 600}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725072f.jpg"} -{"rects": [{"solidity": 0.9964103410661513, "top": 2280, "right": 3065, "bottom": 3890, "left": 650}, {"solidity": 0.9941884518915005, "top": 390, "right": 3070, "bottom": 2020, "left": 650}, {"solidity": 0.9968322223203971, "top": 4150, "right": 3055, "bottom": 5750, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728755f.jpg"} -{"rects": [{"solidity": 0.9964104472345366, "top": 760, "right": 2010, "bottom": 3195, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708029f.jpg"} -{"rects": [{"solidity": 0.9964105010693851, "top": 2245, "right": 3180, "bottom": 3865, "left": 770}, {"solidity": 0.9974149637604097, "top": 450, "right": 3175, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720135f.jpg"} -{"rects": [{"solidity": 0.9964105530383367, "top": 935, "right": 3925, "bottom": 3345, "left": 2300}, {"solidity": 0.9980239323745747, "top": 935, "right": 2040, "bottom": 3340, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719070f.jpg"} -{"rects": [{"solidity": 0.9964105684839452, "top": 795, "right": 1905, "bottom": 3215, "left": 305}, {"solidity": 0.9971600368215916, "top": 820, "right": 3760, "bottom": 3215, "left": 2150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724278f.jpg"} -{"rects": [{"solidity": 0.9964107255964529, "top": 220, "right": 2820, "bottom": 2645, "left": 1190}, {"solidity": 0.9961202995013642, "top": 2685, "right": 3165, "bottom": 4320, "left": 735}, {"solidity": 0.9981283283205084, "top": 4385, "right": 3185, "bottom": 5980, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731557f.jpg"} -{"rects": [{"solidity": 0.9964110164195361, "top": 3220, "right": 3125, "bottom": 5080, "left": 470}, {"solidity": 0.9953664948941846, "top": 735, "right": 3155, "bottom": 2590, "left": 475}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713732f.jpg"} -{"rects": [{"solidity": 0.9964110558965864, "top": 410, "right": 3100, "bottom": 2020, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729420f.jpg"} -{"rects": [{"solidity": 0.9964111724585905, "top": 735, "right": 3460, "bottom": 2775, "left": 410}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710332f.jpg"} -{"rects": [{"solidity": 0.9964112106942123, "top": 2035, "right": 2840, "bottom": 3545, "left": 1080}, {"solidity": 0.9659689431923283, "top": 410, "right": 2840, "bottom": 1815, "left": 970}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721513f.jpg"} -{"rects": [{"solidity": 0.9964112599535234, "top": 400, "right": 3110, "bottom": 2035, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730590f.jpg"} -{"rects": [{"solidity": 0.9964114792192944, "top": 545, "right": 2795, "bottom": 2925, "left": 1215}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707564f.jpg"} -{"rects": [{"solidity": 0.9964116810530145, "top": 755, "right": 2015, "bottom": 3150, "left": 420}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711030f.jpg"} -{"rects": [{"solidity": 0.9964118055401469, "top": 525, "right": 2985, "bottom": 2170, "left": 550}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703262f.jpg"} -{"rects": [{"solidity": 0.9964120400299966, "top": 370, "right": 3165, "bottom": 2000, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707961f.jpg"} -{"rects": [{"solidity": 0.9964121013581366, "top": 2090, "right": 2615, "bottom": 3510, "left": 785}, {"solidity": 0.9983270919025109, "top": 605, "right": 2565, "bottom": 2005, "left": 805}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706955f.jpg"} -{"rects": [{"solidity": 0.9964121826894965, "top": 2255, "right": 3145, "bottom": 3900, "left": 705}, {"solidity": 0.997871433288347, "top": 470, "right": 3140, "bottom": 2090, "left": 715}, {"solidity": 0.9962713073889187, "top": 4105, "right": 3120, "bottom": 5725, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701038f.jpg"} -{"rects": [{"solidity": 0.9964124011334154, "top": 1030, "right": 2640, "bottom": 2635, "left": 265}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734227f.jpg"} -{"rects": [{"solidity": 0.9964124401866327, "top": 2000, "right": 5240, "bottom": 3410, "left": 3435}, {"solidity": 0.9964895109783928, "top": 620, "right": 2650, "bottom": 2000, "left": 815}, {"solidity": 0.9966176178874607, "top": 2030, "right": 2625, "bottom": 3420, "left": 835}, {"solidity": 0.9955511489440401, "top": 570, "right": 5215, "bottom": 1960, "left": 3445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706030f.jpg"} -{"rects": [{"solidity": 0.9964126938229659, "top": 2185, "right": 2910, "bottom": 3705, "left": 1060}, {"solidity": 0.9979489493493042, "top": 605, "right": 2895, "bottom": 1940, "left": 1055}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723437f.jpg"} -{"rects": [{"solidity": 0.9964128803514801, "top": 425, "right": 3170, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705102f.jpg"} -{"rects": [{"solidity": 0.9964129083778231, "top": 410, "right": 3075, "bottom": 2035, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729393f.jpg"} -{"rects": [{"solidity": 0.9964129252300726, "top": 2235, "right": 5030, "bottom": 3650, "left": 3210}, {"solidity": 0.9960080623409232, "top": 605, "right": 5040, "bottom": 2030, "left": 3225}, {"solidity": 0.9944571177997961, "top": 2240, "right": 2840, "bottom": 3660, "left": 1020}, {"solidity": 0.9969442629542142, "top": 615, "right": 2815, "bottom": 2025, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725678f.jpg"} -{"rects": [{"solidity": 0.9964129458276981, "top": 690, "right": 2100, "bottom": 3110, "left": 475}], "shape": {"h": 3915, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724026f.jpg"} -{"rects": [{"solidity": 0.996412962305498, "top": 465, "right": 2165, "bottom": 2555, "left": 685}, {"solidity": 0.9969911293732272, "top": 480, "right": 3895, "bottom": 2555, "left": 2415}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716214f.jpg"} -{"rects": [{"solidity": 0.9964129836552369, "top": 875, "right": 5080, "bottom": 3315, "left": 3460}, {"solidity": 0.9961851161037493, "top": 900, "right": 2535, "bottom": 3320, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722415f.jpg"} -{"rects": [{"solidity": 0.9964130427801648, "top": 385, "right": 3150, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702923f.jpg"} -{"rects": [{"solidity": 0.99641322437219, "top": 615, "right": 2700, "bottom": 2020, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705657f.jpg"} -{"rects": [{"solidity": 0.9964132474126645, "top": 575, "right": 3345, "bottom": 2220, "left": 920}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700475f.jpg"} -{"rects": [{"solidity": 0.9964132956114828, "top": 500, "right": 3130, "bottom": 2080, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710189f.jpg"} -{"rects": [{"solidity": 0.9964133045211723, "top": 935, "right": 2300, "bottom": 3620, "left": 505}], "shape": {"h": 4425, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711677f.jpg"} -{"rects": [{"solidity": 0.9964134223404347, "top": 670, "right": 5070, "bottom": 3565, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734180f.jpg"} -{"rects": [{"solidity": 0.9964134555463232, "top": 395, "right": 3155, "bottom": 2010, "left": 745}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730379f.jpg"} -{"rects": [{"solidity": 0.9964134574013781, "top": 445, "right": 3050, "bottom": 2075, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707244f.jpg"} -{"rects": [{"solidity": 0.9964135319949003, "top": 790, "right": 2025, "bottom": 3205, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712470f.jpg"} -{"rects": [{"solidity": 0.9964136437185261, "top": 765, "right": 2020, "bottom": 3180, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703265f.jpg"} -{"rects": [{"solidity": 0.9964136573386024, "top": 985, "right": 3510, "bottom": 5000, "left": 285}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/724244f.jpg"} -{"rects": [{"solidity": 0.9964137029238417, "top": 435, "right": 3175, "bottom": 2055, "left": 745}, {"solidity": 0.9986594438145445, "top": 4120, "right": 3155, "bottom": 5730, "left": 735}, {"solidity": 0.9982277503140388, "top": 2280, "right": 3160, "bottom": 3885, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734324f.jpg"} -{"rects": [{"solidity": 0.9964139097997365, "top": 725, "right": 3885, "bottom": 3155, "left": 2265}, {"solidity": 0.9965970771091976, "top": 725, "right": 2010, "bottom": 3140, "left": 395}, {"solidity": 0.9968682793079027, "top": 735, "right": 5730, "bottom": 3155, "left": 4120}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727578f.jpg"} -{"rects": [{"solidity": 0.9964139211257367, "top": 2280, "right": 3075, "bottom": 3895, "left": 655}, {"solidity": 0.9948659775667668, "top": 425, "right": 3085, "bottom": 2025, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718504f.jpg"} -{"rects": [{"solidity": 0.9964140352915735, "top": 2160, "right": 3185, "bottom": 3780, "left": 770}, {"solidity": 0.9978294022127581, "top": 360, "right": 3170, "bottom": 1960, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719267f.jpg"} -{"rects": [{"solidity": 0.9964140378992818, "top": 765, "right": 1905, "bottom": 3160, "left": 315}, {"solidity": 0.9971945509291806, "top": 780, "right": 3765, "bottom": 3160, "left": 2170}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709776f.jpg"} -{"rects": [{"solidity": 0.996414102617227, "top": 2205, "right": 3370, "bottom": 3845, "left": 945}, {"solidity": 0.9965600374452588, "top": 3970, "right": 3375, "bottom": 5600, "left": 945}, {"solidity": 0.9958902504897208, "top": 390, "right": 3370, "bottom": 1990, "left": 950}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703753f.jpg"} -{"rects": [{"solidity": 0.9964141122035859, "top": 245, "right": 3255, "bottom": 1885, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719241f.jpg"} -{"rects": [{"solidity": 0.9964142012968958, "top": 905, "right": 2045, "bottom": 3330, "left": 415}, {"solidity": 0.9940112487620756, "top": 1035, "right": 3700, "bottom": 3035, "left": 2340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711439f.jpg"} -{"rects": [{"solidity": 0.9964142449921964, "top": 800, "right": 2020, "bottom": 3210, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714938f.jpg"} -{"rects": [{"solidity": 0.9964142679739185, "top": 435, "right": 2510, "bottom": 2875, "left": 870}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703294f.jpg"} -{"rects": [{"solidity": 0.9964144454820419, "top": 730, "right": 2060, "bottom": 3175, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713195f.jpg"} -{"rects": [{"solidity": 0.9964146323648501, "top": 855, "right": 2040, "bottom": 3285, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702368f.jpg"} -{"rects": [{"solidity": 0.9964146455903053, "top": 405, "right": 3230, "bottom": 2040, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704341f.jpg"} -{"rects": [{"solidity": 0.996414653657471, "top": 835, "right": 2050, "bottom": 3255, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730572f.jpg"} -{"rects": [{"solidity": 0.9964147645355143, "top": 365, "right": 3105, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710294f.jpg"} -{"rects": [{"solidity": 0.9964149879576186, "top": 2240, "right": 3185, "bottom": 3860, "left": 780}, {"solidity": 0.9974996352252982, "top": 445, "right": 3185, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/731883f.jpg"} -{"rects": [{"solidity": 0.9964150242332929, "top": 520, "right": 3940, "bottom": 2615, "left": 2460}, {"solidity": 0.9980109276198662, "top": 495, "right": 2200, "bottom": 2585, "left": 725}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716242f.jpg"} -{"rects": [{"solidity": 0.9964150751025321, "top": 855, "right": 3890, "bottom": 3265, "left": 2280}, {"solidity": 0.9979201025593087, "top": 845, "right": 2000, "bottom": 3235, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734848f.jpg"} -{"rects": [{"solidity": 0.9964151266543309, "top": 410, "right": 4400, "bottom": 2735, "left": 1135}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733463f.jpg"} -{"rects": [{"solidity": 0.9964152571344849, "top": 305, "right": 3080, "bottom": 1915, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704900f.jpg"} -{"rects": [{"solidity": 0.9964152598461602, "top": 2300, "right": 3260, "bottom": 3955, "left": 815}, {"solidity": 0.9962650453303546, "top": 490, "right": 3240, "bottom": 2140, "left": 795}, {"solidity": 0.9958864770338997, "top": 4055, "right": 3270, "bottom": 5680, "left": 840}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731042f.jpg"} -{"rects": [{"solidity": 0.9964153797230965, "top": 1140, "right": 3475, "bottom": 5045, "left": 300}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723716f.jpg"} -{"rects": [{"solidity": 0.9964153995470721, "top": 2300, "right": 3145, "bottom": 3915, "left": 730}, {"solidity": 0.9977318515630077, "top": 470, "right": 3140, "bottom": 2080, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723546f.jpg"} -{"rects": [{"solidity": 0.9964154459340545, "top": 435, "right": 3155, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718750f.jpg"} -{"rects": [{"solidity": 0.9964159271227319, "top": 395, "right": 3185, "bottom": 1970, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711902f.jpg"} -{"rects": [{"solidity": 0.9964160712269553, "top": 2275, "right": 3135, "bottom": 3895, "left": 705}, {"solidity": 0.9958187139230682, "top": 430, "right": 3155, "bottom": 2045, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720334f.jpg"} -{"rects": [{"solidity": 0.9964161302593625, "top": 405, "right": 5800, "bottom": 4125, "left": 1245}], "shape": {"h": 4410, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/702207f.jpg"} -{"rects": [{"solidity": 0.9964162504301194, "top": 485, "right": 5120, "bottom": 3655, "left": 1125}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720852f.jpg"} -{"rects": [{"solidity": 0.996416384500863, "top": 475, "right": 3160, "bottom": 2070, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720834f.jpg"} -{"rects": [{"solidity": 0.996416403056805, "top": 800, "right": 3835, "bottom": 3215, "left": 2205}, {"solidity": 0.9976018637689187, "top": 810, "right": 1980, "bottom": 3215, "left": 375}, {"solidity": 0.9964341673401396, "top": 815, "right": 5655, "bottom": 3210, "left": 4060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708636f.jpg"} -{"rects": [{"solidity": 0.9964165075635188, "top": 440, "right": 3200, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710616f.jpg"} -{"rects": [{"solidity": 0.9964168204407213, "top": 730, "right": 3915, "bottom": 3135, "left": 2305}, {"solidity": 0.993867025670042, "top": 730, "right": 2030, "bottom": 3145, "left": 415}, {"solidity": 0.994513461613826, "top": 735, "right": 5780, "bottom": 3140, "left": 4170}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711758f.jpg"} -{"rects": [{"solidity": 0.9964168216047612, "top": 780, "right": 2050, "bottom": 3200, "left": 430}, {"solidity": 0.9963154995301209, "top": 790, "right": 3885, "bottom": 3210, "left": 2265}, {"solidity": 0.9960576008063847, "top": 805, "right": 5710, "bottom": 3200, "left": 4115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713388f.jpg"} -{"rects": [{"solidity": 0.9964168965164981, "top": 900, "right": 2410, "bottom": 3620, "left": 600}], "shape": {"h": 4405, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711359f.jpg"} -{"rects": [{"solidity": 0.9964169034434494, "top": 425, "right": 5770, "bottom": 2045, "left": 3350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705932f.jpg"} -{"rects": [{"solidity": 0.9964169445117678, "top": 685, "right": 2085, "bottom": 3085, "left": 480}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711039f.jpg"} -{"rects": [{"solidity": 0.9964169738600489, "top": 415, "right": 2575, "bottom": 2835, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717576f.jpg"} -{"rects": [{"solidity": 0.9964169829276402, "top": 850, "right": 3935, "bottom": 3445, "left": 515}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726834f.jpg"} -{"rects": [{"solidity": 0.9964171719372908, "top": 2220, "right": 3200, "bottom": 3835, "left": 765}, {"solidity": 0.9976942685634405, "top": 430, "right": 3180, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723795f.jpg"} -{"rects": [{"solidity": 0.9964172651255881, "top": 850, "right": 3840, "bottom": 3270, "left": 2205}, {"solidity": 0.99689853074738, "top": 865, "right": 1975, "bottom": 3280, "left": 355}, {"solidity": 0.99498528589371, "top": 1085, "right": 5580, "bottom": 2955, "left": 4100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715393f.jpg"} -{"rects": [{"solidity": 0.996417357187896, "top": 810, "right": 3885, "bottom": 3250, "left": 2230}, {"solidity": 0.9970842189803153, "top": 855, "right": 5740, "bottom": 3270, "left": 4120}, {"solidity": 0.9966261263733602, "top": 795, "right": 2020, "bottom": 3215, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733624f.jpg"} -{"rects": [{"solidity": 0.9964173615294378, "top": 420, "right": 3260, "bottom": 2060, "left": 825}, {"solidity": 0.9979780960404381, "top": 2310, "right": 3260, "bottom": 3940, "left": 830}, {"solidity": 0.9984336403869906, "top": 4160, "right": 3220, "bottom": 5780, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706198f.jpg"} -{"rects": [{"solidity": 0.9964174282345738, "top": 2410, "right": 3140, "bottom": 4030, "left": 735}, {"solidity": 0.9812087036009, "top": 895, "right": 3115, "bottom": 2230, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710487f.jpg"} -{"rects": [{"solidity": 0.9964175284519046, "top": 790, "right": 3885, "bottom": 3205, "left": 2275}, {"solidity": 0.996416787302581, "top": 795, "right": 2105, "bottom": 3205, "left": 495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721209f.jpg"} -{"rects": [{"solidity": 0.9964177290694776, "top": 640, "right": 4910, "bottom": 3655, "left": 1155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709883f.jpg"} -{"rects": [{"solidity": 0.9964179858025148, "top": 515, "right": 2960, "bottom": 2015, "left": 1020}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711505f.jpg"} -{"rects": [{"solidity": 0.9964180522251943, "top": 775, "right": 2030, "bottom": 3170, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718400f.jpg"} -{"rects": [{"solidity": 0.9964181806014525, "top": 3825, "right": 3315, "bottom": 5495, "left": 885}, {"solidity": 0.9971682809065341, "top": 1970, "right": 3260, "bottom": 3600, "left": 835}, {"solidity": 0.9972750294482978, "top": 230, "right": 3245, "bottom": 1870, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710064f.jpg"} -{"rects": [{"solidity": 0.996418395893094, "top": 405, "right": 3245, "bottom": 2020, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726518f.jpg"} -{"rects": [{"solidity": 0.9964184204749655, "top": 590, "right": 4975, "bottom": 3830, "left": 885}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725670f.jpg"} -{"rects": [{"solidity": 0.9964185524900762, "top": 845, "right": 2095, "bottom": 3250, "left": 505}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700321f.jpg"} -{"rects": [{"solidity": 0.9964186778216404, "top": 800, "right": 3870, "bottom": 3210, "left": 2265}, {"solidity": 0.9969464334209881, "top": 800, "right": 2035, "bottom": 3190, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733722f.jpg"} -{"rects": [{"solidity": 0.9964187840552458, "top": 935, "right": 3825, "bottom": 3365, "left": 2205}, {"solidity": 0.9971833066759165, "top": 955, "right": 5695, "bottom": 3385, "left": 4075}, {"solidity": 0.9976159298356246, "top": 950, "right": 1985, "bottom": 3355, "left": 355}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721691f.jpg"} -{"rects": [{"solidity": 0.9964188839108835, "top": 625, "right": 2700, "bottom": 1995, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705470f.jpg"} -{"rects": [{"solidity": 0.9964191126144446, "top": 420, "right": 3200, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724507f.jpg"} -{"rects": [{"solidity": 0.9964191158263652, "top": 850, "right": 3855, "bottom": 3285, "left": 2220}, {"solidity": 0.9966190642791259, "top": 870, "right": 5730, "bottom": 3310, "left": 4095}, {"solidity": 0.9987579832472159, "top": 845, "right": 1995, "bottom": 3265, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729692f.jpg"} -{"rects": [{"solidity": 0.9964192910693638, "top": 575, "right": 4910, "bottom": 3495, "left": 1100}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722489f.jpg"} -{"rects": [{"solidity": 0.9964193114207981, "top": 655, "right": 1895, "bottom": 3085, "left": 255}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723770f.jpg"} -{"rects": [{"solidity": 0.9964194571935919, "top": 895, "right": 3890, "bottom": 3320, "left": 2280}, {"solidity": 0.9972384812618166, "top": 900, "right": 5770, "bottom": 3320, "left": 4160}, {"solidity": 0.9958673457599033, "top": 920, "right": 2030, "bottom": 3325, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704785f.jpg"} -{"rects": [{"solidity": 0.9964196124004768, "top": 685, "right": 3060, "bottom": 2315, "left": 995}, {"solidity": 0.9954999584029768, "top": 2380, "right": 3070, "bottom": 4010, "left": 1010}], "shape": {"h": 4425, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/703428f.jpg"} -{"rects": [{"solidity": 0.9964196147312785, "top": 1025, "right": 4335, "bottom": 2655, "left": 1920}, {"solidity": 0.9968509526926471, "top": 640, "right": 1855, "bottom": 3045, "left": 240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713153f.jpg"} -{"rects": [{"solidity": 0.9964196872207902, "top": 335, "right": 2970, "bottom": 1955, "left": 550}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721713f.jpg"} -{"rects": [{"solidity": 0.9964199711029058, "top": 450, "right": 3100, "bottom": 2070, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729636f.jpg"} -{"rects": [{"solidity": 0.9964204370969393, "top": 920, "right": 3875, "bottom": 3345, "left": 2250}, {"solidity": 0.9963540089797023, "top": 915, "right": 2000, "bottom": 3330, "left": 370}, {"solidity": 0.9956286582203453, "top": 925, "right": 5740, "bottom": 3345, "left": 4120}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728551f.jpg"} -{"rects": [{"solidity": 0.9964204706549475, "top": 600, "right": 3590, "bottom": 2435, "left": 870}], "shape": {"h": 4445, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706448f.jpg"} -{"rects": [{"solidity": 0.9964205057994844, "top": 1165, "right": 4995, "bottom": 2800, "left": 2570}, {"solidity": 0.9990266755779925, "top": 780, "right": 1985, "bottom": 3180, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715536f.jpg"} -{"rects": [{"solidity": 0.9964209566955717, "top": 410, "right": 3180, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717843f.jpg"} -{"rects": [{"solidity": 0.9964209852474758, "top": 355, "right": 3120, "bottom": 1980, "left": 705}, {"solidity": 0.9963179357082378, "top": 2130, "right": 3115, "bottom": 3750, "left": 700}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718845f.jpg"} -{"rects": [{"solidity": 0.9964210090589228, "top": 365, "right": 2795, "bottom": 2795, "left": 1145}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715711f.jpg"} -{"rects": [{"solidity": 0.996421126006054, "top": 1035, "right": 1985, "bottom": 3455, "left": 365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716986f.jpg"} -{"rects": [{"solidity": 0.9964211599728502, "top": 750, "right": 1925, "bottom": 3160, "left": 310}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715178f.jpg"} -{"rects": [{"solidity": 0.9964211873749678, "top": 475, "right": 3105, "bottom": 2060, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713111f.jpg"} -{"rects": [{"solidity": 0.9964213154794955, "top": 2205, "right": 3210, "bottom": 3835, "left": 780}, {"solidity": 0.995637707948244, "top": 4055, "right": 3225, "bottom": 5690, "left": 785}, {"solidity": 0.9989777141688816, "top": 390, "right": 3200, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734347f.jpg"} -{"rects": [{"solidity": 0.9964213204737037, "top": 280, "right": 5160, "bottom": 3555, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727340f.jpg"} -{"rects": [{"solidity": 0.9964215502197875, "top": 595, "right": 3330, "bottom": 2505, "left": 640}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/714468f.jpg"} -{"rects": [{"solidity": 0.9964216855658312, "top": 415, "right": 3145, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709739f.jpg"} -{"rects": [{"solidity": 0.9964217743827724, "top": 755, "right": 3945, "bottom": 3170, "left": 2345}, {"solidity": 0.9966026036800174, "top": 750, "right": 2025, "bottom": 3155, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718798f.jpg"} -{"rects": [{"solidity": 0.9964218024423356, "top": 440, "right": 3115, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700332f.jpg"} -{"rects": [{"solidity": 0.9964218319807789, "top": 710, "right": 2680, "bottom": 2095, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730903f.jpg"} -{"rects": [{"solidity": 0.9964218692181636, "top": 810, "right": 1945, "bottom": 3190, "left": 340}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712743f.jpg"} -{"rects": [{"solidity": 0.9964219937073133, "top": 2220, "right": 3090, "bottom": 3860, "left": 670}, {"solidity": 0.9973405874418053, "top": 370, "right": 3100, "bottom": 2000, "left": 685}, {"solidity": 0.9986072919601879, "top": 4105, "right": 3065, "bottom": 5720, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720331f.jpg"} -{"rects": [{"solidity": 0.9964220159934281, "top": 2275, "right": 3130, "bottom": 3895, "left": 700}, {"solidity": 0.9957821642126921, "top": 4130, "right": 3110, "bottom": 5765, "left": 670}, {"solidity": 0.9978600290932601, "top": 435, "right": 3115, "bottom": 2045, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732006f.jpg"} -{"rects": [{"solidity": 0.9964221539207895, "top": 805, "right": 5745, "bottom": 3240, "left": 4115}, {"solidity": 0.9963370666461926, "top": 790, "right": 3905, "bottom": 3225, "left": 2285}, {"solidity": 0.9981033086013348, "top": 785, "right": 2060, "bottom": 3210, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734174f.jpg"} -{"rects": [{"solidity": 0.9964221824686941, "top": 440, "right": 3165, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702004f.jpg"} -{"rects": [{"solidity": 0.9964221918123035, "top": 425, "right": 2830, "bottom": 1795, "left": 1065}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708254f.jpg"} -{"rects": [{"solidity": 0.9964223592662872, "top": 815, "right": 1995, "bottom": 3215, "left": 400}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702771f.jpg"} -{"rects": [{"solidity": 0.996422717652488, "top": 410, "right": 3180, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700907f.jpg"} -{"rects": [{"solidity": 0.9964228062245755, "top": 390, "right": 3145, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700200f.jpg"} -{"rects": [{"solidity": 0.9964228896182795, "top": 850, "right": 2000, "bottom": 3270, "left": 395}, {"solidity": 0.9955923436416316, "top": 845, "right": 3850, "bottom": 3265, "left": 2235}, {"solidity": 0.9955754696110706, "top": 855, "right": 5705, "bottom": 3260, "left": 4110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729294f.jpg"} -{"rects": [{"solidity": 0.9964230521571152, "top": 820, "right": 3880, "bottom": 3245, "left": 2250}, {"solidity": 0.997249534511482, "top": 800, "right": 2055, "bottom": 3210, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712263f.jpg"} -{"rects": [{"solidity": 0.9964230735857, "top": 540, "right": 2970, "bottom": 2165, "left": 545}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703672f.jpg"} -{"rects": [{"solidity": 0.9964231268285222, "top": 730, "right": 2625, "bottom": 2135, "left": 805}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725093f.jpg"} -{"rects": [{"solidity": 0.9964231327690619, "top": 2220, "right": 3090, "bottom": 3850, "left": 665}, {"solidity": 0.9986736671163259, "top": 4100, "right": 3085, "bottom": 5710, "left": 670}, {"solidity": 0.9961304767019755, "top": 365, "right": 3100, "bottom": 1995, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728433f.jpg"} -{"rects": [{"solidity": 0.9964232363399188, "top": 955, "right": 2365, "bottom": 3875, "left": 515}], "shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508565.jpg"} -{"rects": [{"solidity": 0.99642360515839, "top": 645, "right": 5250, "bottom": 2075, "left": 3395}, {"solidity": 0.9978460992329427, "top": 2055, "right": 2680, "bottom": 3485, "left": 840}, {"solidity": 0.9958355149611186, "top": 580, "right": 2665, "bottom": 2010, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702739f.jpg"} -{"rects": [{"solidity": 0.9964236526168079, "top": 725, "right": 5595, "bottom": 3135, "left": 3970}, {"solidity": 0.9951927228763062, "top": 915, "right": 3655, "bottom": 2745, "left": 2200}, {"solidity": 0.9959981076697304, "top": 895, "right": 1930, "bottom": 2715, "left": 485}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705786f.jpg"} -{"rects": [{"solidity": 0.996423661548039, "top": 435, "right": 3170, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733792f.jpg"} -{"rects": [{"solidity": 0.9964237775025452, "top": 455, "right": 3115, "bottom": 2065, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700676f.jpg"} -{"rects": [{"solidity": 0.9964237977649545, "top": 2415, "right": 3175, "bottom": 4045, "left": 760}, {"solidity": 0.9974814434963796, "top": 4200, "right": 3185, "bottom": 5810, "left": 770}, {"solidity": 0.9962833520252471, "top": 640, "right": 3145, "bottom": 2255, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710570f.jpg"} -{"rects": [{"solidity": 0.9964238511590078, "top": 825, "right": 2325, "bottom": 3550, "left": 505}], "shape": {"h": 4415, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/708343f.jpg"} -{"rects": [{"solidity": 0.9964239792963778, "top": 395, "right": 3105, "bottom": 2000, "left": 705}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718829f.jpg"} -{"rects": [{"solidity": 0.9964241258345592, "top": 405, "right": 3130, "bottom": 2015, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729792f.jpg"} -{"rects": [{"solidity": 0.9964241452814911, "top": 485, "right": 5665, "bottom": 2100, "left": 3285}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720657f.jpg"} -{"rects": [{"solidity": 0.9964241835622435, "top": 645, "right": 4835, "bottom": 3665, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709895f.jpg"} -{"rects": [{"solidity": 0.9964242667738047, "top": 445, "right": 2830, "bottom": 1845, "left": 1035}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725216f.jpg"} -{"rects": [{"solidity": 0.9964243022711917, "top": 670, "right": 2600, "bottom": 2050, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705107f.jpg"} -{"rects": [{"solidity": 0.9964243830307975, "top": 410, "right": 3275, "bottom": 2050, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703692f.jpg"} -{"rects": [{"solidity": 0.9964245397097048, "top": 2235, "right": 3425, "bottom": 4270, "left": 325}, {"solidity": 0.9962616642493165, "top": 440, "right": 3160, "bottom": 2070, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723402f.jpg"} -{"rects": [{"solidity": 0.9964248891556035, "top": 785, "right": 2060, "bottom": 3220, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703772f.jpg"} -{"rects": [{"solidity": 0.9964251929300473, "top": 2270, "right": 3140, "bottom": 3860, "left": 750}, {"solidity": 0.9836310552138761, "top": 765, "right": 3130, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712087f.jpg"} -{"rects": [{"solidity": 0.9964252178225549, "top": 580, "right": 3470, "bottom": 2415, "left": 725}], "shape": {"h": 4420, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711218f.jpg"} -{"rects": [{"solidity": 0.9964252433792263, "top": 790, "right": 3790, "bottom": 3215, "left": 2150}, {"solidity": 0.9971750332817386, "top": 805, "right": 5645, "bottom": 3230, "left": 4005}, {"solidity": 0.9975124856551203, "top": 770, "right": 1920, "bottom": 3200, "left": 300}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719864f.jpg"} -{"rects": [{"solidity": 0.996425262334448, "top": 790, "right": 2040, "bottom": 3220, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729351f.jpg"} -{"rects": [{"solidity": 0.996425268022607, "top": 785, "right": 2070, "bottom": 3185, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724020f.jpg"} -{"rects": [{"solidity": 0.9964255103012603, "top": 395, "right": 3220, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702968f.jpg"} -{"rects": [{"solidity": 0.996425530829398, "top": 3915, "right": 3230, "bottom": 5540, "left": 795}, {"solidity": 0.9996925057895394, "top": 315, "right": 3230, "bottom": 1930, "left": 800}, {"solidity": 0.9989345841142594, "top": 2125, "right": 3225, "bottom": 3725, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733207f.jpg"} -{"rects": [{"solidity": 0.9964257974633399, "top": 400, "right": 3270, "bottom": 2420, "left": 445}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728931f.jpg"} -{"rects": [{"solidity": 0.9964258119957842, "top": 745, "right": 3615, "bottom": 2785, "left": 395}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733092f.jpg"} -{"rects": [{"solidity": 0.996426053106919, "top": 4050, "right": 3105, "bottom": 5665, "left": 685}, {"solidity": 0.9980345491929348, "top": 2180, "right": 3110, "bottom": 3790, "left": 695}, {"solidity": 0.9914136322471507, "top": 415, "right": 2875, "bottom": 1940, "left": 905}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730594f.jpg"} -{"rects": [{"solidity": 0.9964262634095903, "top": 2245, "right": 3105, "bottom": 3870, "left": 700}, {"solidity": 0.9966530646695428, "top": 4095, "right": 3095, "bottom": 5710, "left": 690}, {"solidity": 0.9971205840821984, "top": 395, "right": 3125, "bottom": 1995, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710667f.jpg"} -{"rects": [{"solidity": 0.9964262856437397, "top": 410, "right": 3120, "bottom": 2025, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729037f.jpg"} -{"rects": [{"solidity": 0.9964263353079998, "top": 370, "right": 3190, "bottom": 2000, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703906f.jpg"} -{"rects": [{"solidity": 0.9964263512655859, "top": 415, "right": 3200, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727244f.jpg"} -{"rects": [{"solidity": 0.9964264423824581, "top": 745, "right": 3880, "bottom": 3160, "left": 2250}, {"solidity": 0.9956618124203266, "top": 755, "right": 2030, "bottom": 3160, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730373f.jpg"} -{"rects": [{"solidity": 0.9964264731517409, "top": 2275, "right": 3110, "bottom": 3890, "left": 690}, {"solidity": 0.9989455446829496, "top": 410, "right": 3100, "bottom": 2015, "left": 685}, {"solidity": 0.9980556223820932, "top": 4130, "right": 3095, "bottom": 5720, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734218f.jpg"} -{"rects": [{"solidity": 0.9964264846874707, "top": 690, "right": 3895, "bottom": 3100, "left": 2270}, {"solidity": 0.9970692889952772, "top": 685, "right": 2010, "bottom": 3105, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707174f.jpg"} -{"rects": [{"solidity": 0.9964265148122081, "top": 750, "right": 2025, "bottom": 3185, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712633f.jpg"} -{"rects": [{"solidity": 0.9964265582219359, "top": 1625, "right": 1585, "bottom": 2525, "left": 175}, {"solidity": 0.9961213733817735, "top": 525, "right": 3020, "bottom": 1405, "left": 1610}, {"solidity": 0.9943988288460315, "top": 520, "right": 1585, "bottom": 1380, "left": 190}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/715677f.jpg"} -{"rects": [{"solidity": 0.9964266138825566, "top": 420, "right": 2640, "bottom": 3640, "left": 595}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733090f.jpg"} -{"rects": [{"solidity": 0.9964268961848066, "top": 370, "right": 3160, "bottom": 2030, "left": 705}, {"solidity": 0.9978499425800689, "top": 2265, "right": 3190, "bottom": 3890, "left": 760}, {"solidity": 0.9954281801981655, "top": 4125, "right": 3190, "bottom": 5755, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732127f.jpg"} -{"rects": [{"solidity": 0.9964269481758193, "top": 565, "right": 2900, "bottom": 2955, "left": 1295}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727629f.jpg"} -{"rects": [{"solidity": 0.9964270330958417, "top": 470, "right": 3365, "bottom": 2395, "left": 535}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722517f.jpg"} -{"rects": [{"solidity": 0.9964270349973235, "top": 780, "right": 2050, "bottom": 3185, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712005f.jpg"} -{"rects": [{"solidity": 0.996427168965939, "top": 2260, "right": 3160, "bottom": 3880, "left": 740}, {"solidity": 0.9987621356077201, "top": 4110, "right": 3160, "bottom": 5715, "left": 740}, {"solidity": 0.9972663170748297, "top": 415, "right": 3165, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732157f.jpg"} -{"rects": [{"solidity": 0.9964272250094249, "top": 555, "right": 1540, "bottom": 2360, "left": 335}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716384f.jpg"} -{"rects": [{"solidity": 0.9964272502482429, "top": 430, "right": 3170, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715008f.jpg"} -{"rects": [{"solidity": 0.9964272966219944, "top": 295, "right": 3215, "bottom": 1920, "left": 810}, {"solidity": 0.9961118865646972, "top": 2130, "right": 3195, "bottom": 3765, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707076f.jpg"} -{"rects": [{"solidity": 0.9964273150643373, "top": 470, "right": 5730, "bottom": 2095, "left": 3315}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705662f.jpg"} -{"rects": [{"solidity": 0.9964273734707956, "top": 800, "right": 3880, "bottom": 3240, "left": 2220}, {"solidity": 0.9974270407443959, "top": 785, "right": 2020, "bottom": 3205, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711024f.jpg"} -{"rects": [{"solidity": 0.9964274469739319, "top": 810, "right": 2055, "bottom": 3225, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707951f.jpg"} -{"rects": [{"solidity": 0.9964275148880343, "top": 2140, "right": 3190, "bottom": 3770, "left": 775}, {"solidity": 0.9968774648390206, "top": 310, "right": 3180, "bottom": 1925, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733376f.jpg"} -{"rects": [{"solidity": 0.9964275917301744, "top": 765, "right": 3910, "bottom": 3220, "left": 2245}, {"solidity": 0.9954572666126703, "top": 760, "right": 2060, "bottom": 3200, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702740f.jpg"} -{"rects": [{"solidity": 0.9964277654189638, "top": 440, "right": 3230, "bottom": 2055, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702012f.jpg"} -{"rects": [{"solidity": 0.9964279785997932, "top": 420, "right": 3210, "bottom": 2055, "left": 785}, {"solidity": 0.9954852984843502, "top": 2280, "right": 3220, "bottom": 3925, "left": 775}, {"solidity": 0.9949622246918246, "top": 4130, "right": 3190, "bottom": 5785, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718004f.jpg"} -{"rects": [{"solidity": 0.9964280182761558, "top": 755, "right": 1980, "bottom": 3180, "left": 365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725773f.jpg"} -{"rects": [{"solidity": 0.9964283249928534, "top": 845, "right": 2005, "bottom": 3245, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713637f.jpg"} -{"rects": [{"solidity": 0.9964284515175933, "top": 445, "right": 2930, "bottom": 1985, "left": 980}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701877f.jpg"} -{"rects": [{"solidity": 0.996428880547016, "top": 885, "right": 3210, "bottom": 2505, "left": 780}, {"solidity": 0.9957543418588544, "top": 3240, "right": 3200, "bottom": 4870, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731021f.jpg"} -{"rects": [{"solidity": 0.9964292887589546, "top": 360, "right": 3095, "bottom": 2000, "left": 660}, {"solidity": 0.9965007700883507, "top": 2215, "right": 3100, "bottom": 3835, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718740f.jpg"} -{"rects": [{"solidity": 0.9964293113718178, "top": 420, "right": 3290, "bottom": 2035, "left": 875}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/725228f.jpg"} -{"rects": [{"solidity": 0.9964294238696401, "top": 470, "right": 3200, "bottom": 2090, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719516f.jpg"} -{"rects": [{"solidity": 0.9964294749246667, "top": 865, "right": 2000, "bottom": 3295, "left": 375}, {"solidity": 0.9964884611670797, "top": 865, "right": 3845, "bottom": 3280, "left": 2220}, {"solidity": 0.9960516334826668, "top": 875, "right": 5705, "bottom": 3295, "left": 4095}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728544f.jpg"} -{"rects": [{"solidity": 0.9964298043851038, "top": 1320, "right": 3325, "bottom": 4510, "left": 515}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/716568f.jpg"} -{"rects": [{"solidity": 0.9964298179047033, "top": 775, "right": 2075, "bottom": 3210, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704573f.jpg"} -{"rects": [{"solidity": 0.9964299160056602, "top": 425, "right": 3215, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733927f.jpg"} -{"rects": [{"solidity": 0.9964300017521464, "top": 420, "right": 3175, "bottom": 2120, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734836f.jpg"} -{"rects": [{"solidity": 0.9964300606216121, "top": 370, "right": 3280, "bottom": 2005, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704194f.jpg"} -{"rects": [{"solidity": 0.996430078213741, "top": 765, "right": 2055, "bottom": 3180, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721156f.jpg"} -{"rects": [{"solidity": 0.9964301985030914, "top": 415, "right": 3215, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712596f.jpg"} -{"rects": [{"solidity": 0.9964302083131604, "top": 2160, "right": 2705, "bottom": 4580, "left": 1080}, {"solidity": 0.9959911641986419, "top": 445, "right": 3070, "bottom": 2055, "left": 670}, {"solidity": 0.9940629242444148, "top": 4795, "right": 2840, "bottom": 5905, "left": 1010}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732817f.jpg"} -{"rects": [{"solidity": 0.9964302759038787, "top": 440, "right": 3150, "bottom": 2060, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705699f.jpg"} -{"rects": [{"solidity": 0.9964303172193779, "top": 700, "right": 2010, "bottom": 3130, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727210f.jpg"} -{"rects": [{"solidity": 0.9964304124964741, "top": 445, "right": 3035, "bottom": 2055, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728594f.jpg"} -{"rects": [{"solidity": 0.9964305318031684, "top": 385, "right": 2960, "bottom": 2040, "left": 530}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700913f.jpg"} -{"rects": [{"solidity": 0.9964305848622006, "top": 760, "right": 2050, "bottom": 3170, "left": 425}, {"solidity": 0.9986042972102136, "top": 755, "right": 3850, "bottom": 3170, "left": 2240}, {"solidity": 0.9971579625879794, "top": 770, "right": 5630, "bottom": 3185, "left": 4025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709521f.jpg"} -{"rects": [{"solidity": 0.9964305932699412, "top": 2200, "right": 3190, "bottom": 3820, "left": 755}, {"solidity": 0.9990916735673798, "top": 380, "right": 3190, "bottom": 1995, "left": 765}, {"solidity": 0.9969706854066483, "top": 4050, "right": 3200, "bottom": 5665, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705859f.jpg"} -{"rects": [{"solidity": 0.9964306804871762, "top": 425, "right": 3185, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734477f.jpg"} -{"rects": [{"solidity": 0.9964308984057799, "top": 815, "right": 1965, "bottom": 3250, "left": 350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728631f.jpg"} -{"rects": [{"solidity": 0.9964312834669022, "top": 865, "right": 2045, "bottom": 3275, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712590f.jpg"} -{"rects": [{"solidity": 0.9964315003213866, "top": 2235, "right": 3240, "bottom": 3870, "left": 800}, {"solidity": 0.996321682679163, "top": 370, "right": 3235, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727002f.jpg"} -{"rects": [{"solidity": 0.9964316837435302, "top": 415, "right": 3195, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723394f.jpg"} -{"rects": [{"solidity": 0.9964318288881538, "top": 690, "right": 2630, "bottom": 2060, "left": 785}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717713f.jpg"} -{"rects": [{"solidity": 0.996432063679978, "top": 820, "right": 3945, "bottom": 3230, "left": 2345}, {"solidity": 0.9961518710662839, "top": 820, "right": 5815, "bottom": 3220, "left": 4220}, {"solidity": 0.9971749454625862, "top": 830, "right": 2080, "bottom": 3230, "left": 490}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731235f.jpg"} -{"rects": [{"solidity": 0.996432277734448, "top": 855, "right": 2100, "bottom": 3275, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729090f.jpg"} -{"rects": [{"solidity": 0.9964323022018082, "top": 615, "right": 4885, "bottom": 3565, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722653f.jpg"} -{"rects": [{"solidity": 0.9964323327918158, "top": 590, "right": 5055, "bottom": 3515, "left": 1255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709345f.jpg"} -{"rects": [{"solidity": 0.996432390442259, "top": 1385, "right": 3625, "bottom": 5385, "left": 350}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723824f.jpg"} -{"rects": [{"solidity": 0.9964324215828783, "top": 4085, "right": 3160, "bottom": 5705, "left": 750}, {"solidity": 0.9908980344462317, "top": 2305, "right": 2945, "bottom": 3820, "left": 990}, {"solidity": 0.9943693794261321, "top": 545, "right": 2920, "bottom": 2035, "left": 1025}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719156f.jpg"} -{"rects": [{"solidity": 0.9964325694506994, "top": 4145, "right": 3245, "bottom": 5765, "left": 820}, {"solidity": 0.9963379063794638, "top": 2270, "right": 3235, "bottom": 3890, "left": 820}, {"solidity": 0.9970356664701303, "top": 405, "right": 3215, "bottom": 2010, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732114f.jpg"} -{"rects": [{"solidity": 0.9964326588258212, "top": 600, "right": 2670, "bottom": 3420, "left": 835}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706780f.jpg"} -{"rects": [{"solidity": 0.9964327676240209, "top": 770, "right": 2020, "bottom": 3180, "left": 410}, {"solidity": 0.9959662897068357, "top": 755, "right": 5720, "bottom": 3155, "left": 4115}, {"solidity": 0.9972696693740257, "top": 765, "right": 3865, "bottom": 3160, "left": 2260}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719371f.jpg"} -{"rects": [{"solidity": 0.9964328682009658, "top": 430, "right": 3110, "bottom": 2045, "left": 690}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704025f.jpg"} -{"rects": [{"solidity": 0.9964330373495346, "top": 800, "right": 2620, "bottom": 3525, "left": 775}], "shape": {"h": 4420, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/710246f.jpg"} -{"rects": [{"solidity": 0.9964331696151829, "top": 2115, "right": 5650, "bottom": 3755, "left": 3215}, {"solidity": 0.9965254245377574, "top": 2100, "right": 2945, "bottom": 3740, "left": 515}, {"solidity": 0.9981054070978543, "top": 400, "right": 5630, "bottom": 2025, "left": 3205}, {"solidity": 0.996746585192808, "top": 390, "right": 2955, "bottom": 2020, "left": 530}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702970f.jpg"} -{"rects": [{"solidity": 0.9964332245701067, "top": 495, "right": 5060, "bottom": 3745, "left": 980}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700880f.jpg"} -{"rects": [{"solidity": 0.9964332924748239, "top": 2105, "right": 2745, "bottom": 3550, "left": 925}, {"solidity": 0.9978901620297225, "top": 615, "right": 2725, "bottom": 2050, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705936f.jpg"} -{"rects": [{"solidity": 0.9964335790272578, "top": 2280, "right": 3190, "bottom": 3910, "left": 770}, {"solidity": 0.9961047315770851, "top": 425, "right": 3200, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717579f.jpg"} -{"rects": [{"solidity": 0.9964335856181517, "top": 800, "right": 2060, "bottom": 3210, "left": 430}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717820f.jpg"} -{"rects": [{"solidity": 0.9964335901536076, "top": 780, "right": 5670, "bottom": 3200, "left": 4055}, {"solidity": 0.996234698403551, "top": 760, "right": 3865, "bottom": 3180, "left": 2255}, {"solidity": 0.9957272842035755, "top": 750, "right": 2030, "bottom": 3185, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724242f.jpg"} -{"rects": [{"solidity": 0.9964336340206186, "top": 895, "right": 5725, "bottom": 3315, "left": 4105}, {"solidity": 0.9964436010636925, "top": 875, "right": 3875, "bottom": 3285, "left": 2240}, {"solidity": 0.9990317294801132, "top": 870, "right": 2010, "bottom": 3275, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709511f.jpg"} -{"rects": [{"solidity": 0.9964336797940307, "top": 760, "right": 2610, "bottom": 2200, "left": 760}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705247f.jpg"} -{"rects": [{"solidity": 0.9964337386095388, "top": 730, "right": 3870, "bottom": 3170, "left": 2215}, {"solidity": 0.9976173008628357, "top": 735, "right": 2015, "bottom": 3150, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706641f.jpg"} -{"rects": [{"solidity": 0.9964338110083572, "top": 885, "right": 1970, "bottom": 3300, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723815f.jpg"} -{"rects": [{"solidity": 0.9964338936285132, "top": 410, "right": 3205, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711020f.jpg"} -{"rects": [{"solidity": 0.9964339751759469, "top": 705, "right": 2490, "bottom": 3755, "left": 485}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713792f.jpg"} -{"rects": [{"solidity": 0.9964339968933682, "top": 1025, "right": 4645, "bottom": 3090, "left": 1785}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733760f.jpg"} -{"rects": [{"solidity": 0.9964340946562544, "top": 400, "right": 3110, "bottom": 2040, "left": 685}, {"solidity": 0.9970245283201143, "top": 2275, "right": 3100, "bottom": 3905, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704134f.jpg"} -{"rects": [{"solidity": 0.9964341395416774, "top": 660, "right": 2465, "bottom": 3095, "left": 825}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722463f.jpg"} -{"rects": [{"solidity": 0.9964344175945284, "top": 635, "right": 2030, "bottom": 3060, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725496f.jpg"} -{"rects": [{"solidity": 0.9964344410707819, "top": 510, "right": 3330, "bottom": 2380, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713587f.jpg"} -{"rects": [{"solidity": 0.9964344493699019, "top": 650, "right": 3325, "bottom": 2570, "left": 580}, {"solidity": 0.9968124435617277, "top": 3195, "right": 3280, "bottom": 5045, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715311f.jpg"} -{"rects": [{"solidity": 0.9964345047923323, "top": 2245, "right": 3150, "bottom": 3875, "left": 715}, {"solidity": 0.9959194304566765, "top": 395, "right": 3150, "bottom": 2015, "left": 725}, {"solidity": 0.9972777209066513, "top": 4120, "right": 3140, "bottom": 5730, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728724f.jpg"} -{"rects": [{"solidity": 0.9964345637583892, "top": 2280, "right": 3185, "bottom": 3900, "left": 775}, {"solidity": 0.9974939696621392, "top": 500, "right": 3195, "bottom": 2115, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719811f.jpg"} -{"rects": [{"solidity": 0.9964347366793775, "top": 410, "right": 3160, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718083f.jpg"} -{"rects": [{"solidity": 0.9964349198768969, "top": 425, "right": 3300, "bottom": 2010, "left": 900}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727380f.jpg"} -{"rects": [{"solidity": 0.9964350460239301, "top": 3970, "right": 3210, "bottom": 5950, "left": 455}, {"solidity": 0.9961415054754025, "top": 2275, "right": 3195, "bottom": 3925, "left": 750}, {"solidity": 0.9963562607108568, "top": 480, "right": 3180, "bottom": 2085, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704822f.jpg"} -{"rects": [{"solidity": 0.996435371237111, "top": 325, "right": 3180, "bottom": 1935, "left": 760}, {"solidity": 0.9971323964086368, "top": 4050, "right": 3180, "bottom": 5675, "left": 805}, {"solidity": 0.9962703947411582, "top": 2160, "right": 3165, "bottom": 3800, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721549f.jpg"} -{"rects": [{"solidity": 0.9964354181643901, "top": 500, "right": 3065, "bottom": 1900, "left": 1255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728034f.jpg"} -{"rects": [{"solidity": 0.9964356637303325, "top": 830, "right": 3820, "bottom": 3265, "left": 2180}, {"solidity": 0.9977598351238651, "top": 820, "right": 1990, "bottom": 3245, "left": 365}, {"solidity": 0.9977434812571118, "top": 855, "right": 5670, "bottom": 3280, "left": 4050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728660f.jpg"} -{"rects": [{"solidity": 0.9964357383628661, "top": 800, "right": 1920, "bottom": 3215, "left": 330}, {"solidity": 0.9904174526947325, "top": 1065, "right": 3650, "bottom": 3005, "left": 2165}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722459f.jpg"} -{"rects": [{"solidity": 0.9964358011106441, "top": 680, "right": 2360, "bottom": 3105, "left": 730}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707016f.jpg"} -{"rects": [{"solidity": 0.9964359152173881, "top": 1420, "right": 3220, "bottom": 4730, "left": 700}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708196f.jpg"} -{"rects": [{"solidity": 0.9964359840501464, "top": 770, "right": 2025, "bottom": 3185, "left": 395}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716786f.jpg"} -{"rects": [{"solidity": 0.9964361246246524, "top": 880, "right": 2310, "bottom": 2135, "left": 675}, {"solidity": 0.9956019250360066, "top": 2140, "right": 2250, "bottom": 3310, "left": 705}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713416f.jpg"} -{"rects": [{"solidity": 0.996436363171061, "top": 805, "right": 2080, "bottom": 3240, "left": 445}, {"solidity": 0.9961610747709932, "top": 825, "right": 3945, "bottom": 3250, "left": 2310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707589f.jpg"} -{"rects": [{"solidity": 0.9964364255100566, "top": 400, "right": 3130, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700463f.jpg"} -{"rects": [{"solidity": 0.9964365685781412, "top": 1170, "right": 3210, "bottom": 4945, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708246f.jpg"} -{"rects": [{"solidity": 0.9964365712894037, "top": 2300, "right": 3045, "bottom": 3915, "left": 610}, {"solidity": 0.9970296647764534, "top": 430, "right": 3040, "bottom": 2040, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729713f.jpg"} -{"rects": [{"solidity": 0.9964365969010478, "top": 465, "right": 2520, "bottom": 2870, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714983f.jpg"} -{"rects": [{"solidity": 0.9964367529641807, "top": 665, "right": 3335, "bottom": 2600, "left": 600}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721780f.jpg"} -{"rects": [{"solidity": 0.996437034500761, "top": 785, "right": 2015, "bottom": 3155, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727833f.jpg"} -{"rects": [{"solidity": 0.9964370346087201, "top": 1085, "right": 3635, "bottom": 5155, "left": 335}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721262f.jpg"} -{"rects": [{"solidity": 0.9964372500992342, "top": 980, "right": 3545, "bottom": 3030, "left": 310}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/703380f.jpg"} -{"rects": [{"solidity": 0.9964373639441575, "top": 695, "right": 5280, "bottom": 2125, "left": 3485}, {"solidity": 0.9955182239107206, "top": 2145, "right": 2760, "bottom": 3550, "left": 945}, {"solidity": 0.9971322067594434, "top": 690, "right": 2760, "bottom": 2090, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725086f.jpg"} -{"rects": [{"solidity": 0.9964374261226882, "top": 760, "right": 3885, "bottom": 3160, "left": 2285}, {"solidity": 0.9972121072317147, "top": 780, "right": 2010, "bottom": 3175, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721531f.jpg"} -{"rects": [{"solidity": 0.996437650465496, "top": 430, "right": 3190, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712780f.jpg"} -{"rects": [{"solidity": 0.9964376787205302, "top": 810, "right": 5735, "bottom": 3240, "left": 4115}, {"solidity": 0.9958420902415609, "top": 810, "right": 3875, "bottom": 3220, "left": 2265}, {"solidity": 0.9956546683791554, "top": 805, "right": 2040, "bottom": 3210, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734001f.jpg"} -{"rects": [{"solidity": 0.9964376994689657, "top": 390, "right": 3195, "bottom": 1980, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727224f.jpg"} -{"rects": [{"solidity": 0.9964379030285869, "top": 350, "right": 3205, "bottom": 1980, "left": 790}, {"solidity": 0.9965519908224952, "top": 2250, "right": 3220, "bottom": 3880, "left": 810}, {"solidity": 0.9969460369578004, "top": 4160, "right": 3220, "bottom": 5780, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714699f.jpg"} -{"rects": [{"solidity": 0.9964379235345333, "top": 725, "right": 3925, "bottom": 3115, "left": 2320}, {"solidity": 0.9921453720080571, "top": 715, "right": 2080, "bottom": 3100, "left": 460}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711610f.jpg"} -{"rects": [{"solidity": 0.9964379242755141, "top": 440, "right": 3110, "bottom": 2080, "left": 680}, {"solidity": 0.9969941647659651, "top": 2305, "right": 3095, "bottom": 3935, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719089f.jpg"} -{"rects": [{"solidity": 0.9964379839565262, "top": 630, "right": 5235, "bottom": 2075, "left": 3410}, {"solidity": 0.996151511940428, "top": 2120, "right": 2730, "bottom": 3550, "left": 895}, {"solidity": 0.9987909162709517, "top": 640, "right": 2720, "bottom": 2055, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704076f.jpg"} -{"rects": [{"solidity": 0.9964382441123145, "top": 830, "right": 2055, "bottom": 3245, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712614f.jpg"} -{"rects": [{"solidity": 0.9964383695069885, "top": 690, "right": 3935, "bottom": 3110, "left": 2330}, {"solidity": 0.9965447645671811, "top": 700, "right": 5745, "bottom": 3115, "left": 4145}, {"solidity": 0.9945898829350007, "top": 2060, "right": 2160, "bottom": 3490, "left": 345}, {"solidity": 0.9964083231915462, "top": 490, "right": 2150, "bottom": 1900, "left": 340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725042f.jpg"} -{"rects": [{"solidity": 0.9964384068195752, "top": 465, "right": 3135, "bottom": 2090, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729099f.jpg"} -{"rects": [{"solidity": 0.9964385136429723, "top": 695, "right": 2645, "bottom": 3495, "left": 635}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714582f.jpg"} -{"rects": [{"solidity": 0.9964385882662588, "top": 1125, "right": 3420, "bottom": 5015, "left": 280}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708975f.jpg"} -{"rects": [{"solidity": 0.9964386094445099, "top": 690, "right": 2490, "bottom": 3725, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713739f.jpg"} -{"rects": [{"solidity": 0.9964386725135577, "top": 650, "right": 5365, "bottom": 3070, "left": 3750}, {"solidity": 0.9942713636903163, "top": 820, "right": 1740, "bottom": 2640, "left": 625}, {"solidity": 0.9953588574862395, "top": 860, "right": 3300, "bottom": 2660, "left": 2195}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704479f.jpg"} -{"rects": [{"solidity": 0.9964387169178481, "top": 355, "right": 3065, "bottom": 2005, "left": 630}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715579f.jpg"} -{"rects": [{"solidity": 0.9964389822174085, "top": 405, "right": 3165, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701668f.jpg"} -{"rects": [{"solidity": 0.9964390418305327, "top": 610, "right": 3310, "bottom": 2530, "left": 555}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716685f.jpg"} -{"rects": [{"solidity": 0.9964391117131937, "top": 870, "right": 4030, "bottom": 3280, "left": 2390}, {"solidity": 0.9960557206682839, "top": 860, "right": 2110, "bottom": 3265, "left": 485}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723037f.jpg"} -{"rects": [{"solidity": 0.9964392706080001, "top": 805, "right": 1930, "bottom": 3055, "left": 405}, {"solidity": 0.9928975219618739, "top": 845, "right": 3600, "bottom": 3040, "left": 2140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709790f.jpg"} -{"rects": [{"solidity": 0.9964392888993041, "top": 430, "right": 3155, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734298f.jpg"} -{"rects": [{"solidity": 0.9964393244321964, "top": 2145, "right": 3230, "bottom": 3735, "left": 835}, {"solidity": 0.9959984679272669, "top": 310, "right": 3245, "bottom": 1885, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724618f.jpg"} -{"rects": [{"solidity": 0.9964396083994614, "top": 2145, "right": 3415, "bottom": 4105, "left": 370}, {"solidity": 0.9949806678852973, "top": 400, "right": 3165, "bottom": 1980, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724180f.jpg"} -{"rects": [{"solidity": 0.996439683099721, "top": 2215, "right": 3155, "bottom": 3835, "left": 715}, {"solidity": 0.9966622313434519, "top": 450, "right": 3155, "bottom": 2065, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724864f.jpg"} -{"rects": [{"solidity": 0.9964397002189233, "top": 415, "right": 2990, "bottom": 2050, "left": 560}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702048f.jpg"} -{"rects": [{"solidity": 0.9964397354479945, "top": 395, "right": 3045, "bottom": 2000, "left": 660}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/701226f.jpg"} -{"rects": [{"solidity": 0.9964397394136808, "top": 2245, "right": 3170, "bottom": 3855, "left": 755}, {"solidity": 0.9965242275062965, "top": 400, "right": 3155, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/732106f.jpg"} -{"rects": [{"solidity": 0.9964397965780013, "top": 720, "right": 3915, "bottom": 3155, "left": 2270}, {"solidity": 0.9970852219468663, "top": 705, "right": 2065, "bottom": 3125, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710446f.jpg"} -{"rects": [{"solidity": 0.9964398911477509, "top": 855, "right": 3785, "bottom": 3290, "left": 2155}, {"solidity": 0.9975766201544424, "top": 840, "right": 1945, "bottom": 3255, "left": 315}, {"solidity": 0.9985083890927171, "top": 890, "right": 5635, "bottom": 3280, "left": 4015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713801f.jpg"} -{"rects": [{"solidity": 0.9964400417908138, "top": 365, "right": 3110, "bottom": 1980, "left": 680}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728986f.jpg"} -{"rects": [{"solidity": 0.99644008640075, "top": 535, "right": 2485, "bottom": 2985, "left": 840}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700471f.jpg"} -{"rects": [{"solidity": 0.9964401636691628, "top": 365, "right": 3255, "bottom": 1990, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701858f.jpg"} -{"rects": [{"solidity": 0.9964402012542499, "top": 805, "right": 2015, "bottom": 3210, "left": 405}, {"solidity": 0.995738328794987, "top": 805, "right": 3875, "bottom": 3210, "left": 2265}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718325f.jpg"} -{"rects": [{"solidity": 0.9964402532801757, "top": 3185, "right": 3080, "bottom": 5095, "left": 405}, {"solidity": 0.9963611870076398, "top": 650, "right": 3090, "bottom": 2520, "left": 425}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713731f.jpg"} -{"rects": [{"solidity": 0.9964403570818159, "top": 2295, "right": 3160, "bottom": 3895, "left": 760}, {"solidity": 0.991911835043657, "top": 460, "right": 3145, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/700811f.jpg"} -{"rects": [{"solidity": 0.9964403713663472, "top": 675, "right": 1955, "bottom": 3085, "left": 330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720018f.jpg"} -{"rects": [{"solidity": 0.9964404802366277, "top": 830, "right": 3335, "bottom": 2765, "left": 465}, {"solidity": 0.9956872209484735, "top": 3170, "right": 3240, "bottom": 5095, "left": 490}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727802f.jpg"} -{"rects": [{"solidity": 0.996440486553129, "top": 2290, "right": 3140, "bottom": 3910, "left": 730}, {"solidity": 0.9957341067089688, "top": 385, "right": 3145, "bottom": 2005, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728651f.jpg"} -{"rects": [{"solidity": 0.9964405335235943, "top": 485, "right": 2985, "bottom": 2595, "left": 1475}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508111.jpg"} -{"rects": [{"solidity": 0.9964406501395502, "top": 895, "right": 3830, "bottom": 3290, "left": 2220}, {"solidity": 0.9949450600048017, "top": 900, "right": 5455, "bottom": 3305, "left": 3860}, {"solidity": 0.9967962153422361, "top": 890, "right": 2190, "bottom": 3280, "left": 600}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708697f.jpg"} -{"rects": [{"solidity": 0.9964406774235882, "top": 805, "right": 3805, "bottom": 3230, "left": 2160}, {"solidity": 0.996314576732738, "top": 850, "right": 5680, "bottom": 3220, "left": 4045}, {"solidity": 0.9946253694639124, "top": 810, "right": 1910, "bottom": 3200, "left": 335}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710365f.jpg"} -{"rects": [{"solidity": 0.996440694619205, "top": 410, "right": 3015, "bottom": 2060, "left": 575}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706932f.jpg"} -{"rects": [{"solidity": 0.9964408835546475, "top": 2270, "right": 3250, "bottom": 3900, "left": 825}, {"solidity": 0.9965274875086009, "top": 415, "right": 3270, "bottom": 2050, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702662f.jpg"} -{"rects": [{"solidity": 0.9964409408223256, "top": 2010, "right": 3065, "bottom": 3565, "left": 1110}, {"solidity": 0.9958938480315425, "top": 480, "right": 5275, "bottom": 1925, "left": 3350}, {"solidity": 0.9942578063611417, "top": 530, "right": 2875, "bottom": 1810, "left": 1240}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706750f.jpg"} -{"rects": [{"solidity": 0.9964410647361364, "top": 2225, "right": 3155, "bottom": 3850, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701598f.jpg"} -{"rects": [{"solidity": 0.996441327401129, "top": 845, "right": 2075, "bottom": 3260, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714674f.jpg"} -{"rects": [{"solidity": 0.9964413505318475, "top": 405, "right": 3200, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700732f.jpg"} -{"rects": [{"solidity": 0.9964413641437448, "top": 785, "right": 2100, "bottom": 3175, "left": 515}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709786f.jpg"} -{"rects": [{"solidity": 0.9964413733255189, "top": 820, "right": 5590, "bottom": 3230, "left": 3970}, {"solidity": 0.9982575118437277, "top": 825, "right": 3820, "bottom": 3235, "left": 2210}, {"solidity": 0.9962223082292152, "top": 825, "right": 2065, "bottom": 3220, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732487f.jpg"} -{"rects": [{"solidity": 0.9964414312128977, "top": 715, "right": 5820, "bottom": 3135, "left": 4210}, {"solidity": 0.9945059257515109, "top": 1160, "right": 4160, "bottom": 2575, "left": 2335}, {"solidity": 0.9982338220588162, "top": 480, "right": 2230, "bottom": 1890, "left": 435}, {"solidity": 0.9955475032264469, "top": 2105, "right": 2240, "bottom": 3525, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727746f.jpg"} -{"rects": [{"solidity": 0.9964414436453186, "top": 510, "right": 5655, "bottom": 2130, "left": 3265}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707092f.jpg"} -{"rects": [{"solidity": 0.9964415597892483, "top": 520, "right": 5090, "bottom": 3775, "left": 1000}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700598f.jpg"} -{"rects": [{"solidity": 0.9964415777595405, "top": 800, "right": 2020, "bottom": 3230, "left": 380}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704907f.jpg"} -{"rects": [{"solidity": 0.9964417039546021, "top": 680, "right": 2495, "bottom": 3730, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715500f.jpg"} -{"rects": [{"solidity": 0.996441726247757, "top": 460, "right": 3530, "bottom": 2285, "left": 820}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/706403f.jpg"} -{"rects": [{"solidity": 0.9964417317338441, "top": 805, "right": 2025, "bottom": 3220, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706890f.jpg"} -{"rects": [{"solidity": 0.9964419374243491, "top": 750, "right": 4720, "bottom": 3335, "left": 1390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719834f.jpg"} -{"rects": [{"solidity": 0.9964419949662586, "top": 610, "right": 2890, "bottom": 3465, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705871f.jpg"} -{"rects": [{"solidity": 0.996442060320762, "top": 800, "right": 2040, "bottom": 3230, "left": 425}, {"solidity": 0.995972096552932, "top": 810, "right": 3855, "bottom": 3220, "left": 2240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723079f.jpg"} -{"rects": [{"solidity": 0.9964424383302318, "top": 2270, "right": 3240, "bottom": 3900, "left": 825}, {"solidity": 0.9976604647833246, "top": 425, "right": 3250, "bottom": 2035, "left": 845}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706148f.jpg"} -{"rects": [{"solidity": 0.9964425107172564, "top": 370, "right": 3015, "bottom": 2020, "left": 600}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702256f.jpg"} -{"rects": [{"solidity": 0.9964425787182504, "top": 2235, "right": 3280, "bottom": 3880, "left": 835}, {"solidity": 0.9962826246036263, "top": 390, "right": 3255, "bottom": 2000, "left": 840}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703916f.jpg"} -{"rects": [{"solidity": 0.9964426694525811, "top": 425, "right": 3095, "bottom": 2015, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729669f.jpg"} -{"rects": [{"solidity": 0.9964431233718523, "top": 560, "right": 4890, "bottom": 3540, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713903f.jpg"} -{"rects": [{"solidity": 0.9964434415027175, "top": 625, "right": 2465, "bottom": 3060, "left": 825}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711839f.jpg"} -{"rects": [{"solidity": 0.9964435347171139, "top": 390, "right": 3045, "bottom": 2025, "left": 625}, {"solidity": 0.9960640243512514, "top": 2270, "right": 3045, "bottom": 3905, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729368f.jpg"} -{"rects": [{"solidity": 0.9964435696816751, "top": 645, "right": 5180, "bottom": 2075, "left": 3365}, {"solidity": 0.9962807134001699, "top": 645, "right": 2620, "bottom": 2075, "left": 805}, {"solidity": 0.9953562113731228, "top": 2105, "right": 2590, "bottom": 3535, "left": 765}, {"solidity": 0.9969793051367329, "top": 2155, "right": 5185, "bottom": 3500, "left": 3370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731986f.jpg"} -{"rects": [{"solidity": 0.996443665437826, "top": 825, "right": 3925, "bottom": 3265, "left": 2280}, {"solidity": 0.9955504728223264, "top": 800, "right": 2055, "bottom": 3230, "left": 430}, {"solidity": 0.9958432456760754, "top": 855, "right": 5785, "bottom": 3280, "left": 4150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724034f.jpg"} -{"rects": [{"solidity": 0.9964437174360838, "top": 705, "right": 5290, "bottom": 1845, "left": 3460}, {"solidity": 0.9950243611656864, "top": 700, "right": 2665, "bottom": 1845, "left": 840}, {"solidity": 0.9936705779249233, "top": 2220, "right": 2665, "bottom": 3360, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731762f.jpg"} -{"rects": [{"solidity": 0.9964437343366469, "top": 4105, "right": 3225, "bottom": 5725, "left": 800}, {"solidity": 0.9950095386889871, "top": 2245, "right": 3235, "bottom": 3865, "left": 815}, {"solidity": 0.993689789942878, "top": 405, "right": 3220, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734497f.jpg"} -{"rects": [{"solidity": 0.9964437480252001, "top": 415, "right": 3195, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706716f.jpg"} -{"rects": [{"solidity": 0.9964438351226796, "top": 2280, "right": 3220, "bottom": 3905, "left": 795}, {"solidity": 0.996316981823896, "top": 430, "right": 3195, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712598f.jpg"} -{"rects": [{"solidity": 0.9964438502277034, "top": 495, "right": 5805, "bottom": 3610, "left": 360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717089f.jpg"} -{"rects": [{"solidity": 0.9964438594881562, "top": 895, "right": 5745, "bottom": 3340, "left": 4090}, {"solidity": 0.9971258014592085, "top": 890, "right": 3865, "bottom": 3310, "left": 2235}, {"solidity": 0.9992152810294996, "top": 890, "right": 1990, "bottom": 3300, "left": 375}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701078f.jpg"} -{"rects": [{"solidity": 0.9964439526162349, "top": 770, "right": 3860, "bottom": 3185, "left": 2235}, {"solidity": 0.9957562636553821, "top": 765, "right": 2005, "bottom": 3160, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724607f.jpg"} -{"rects": [{"solidity": 0.9964440730830684, "top": 520, "right": 3155, "bottom": 2155, "left": 725}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704435f.jpg"} -{"rects": [{"solidity": 0.9964441494405462, "top": 360, "right": 2915, "bottom": 1885, "left": 990}, {"solidity": 0.9920110742740101, "top": 2215, "right": 2910, "bottom": 3720, "left": 980}, {"solidity": 0.9938452533318191, "top": 4045, "right": 2905, "bottom": 5555, "left": 990}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700072f.jpg"} -{"rects": [{"solidity": 0.9964442182662792, "top": 2250, "right": 3125, "bottom": 3855, "left": 715}, {"solidity": 0.996143321277106, "top": 385, "right": 3135, "bottom": 1980, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724789f.jpg"} -{"rects": [{"solidity": 0.9964443580900568, "top": 2330, "right": 3185, "bottom": 3940, "left": 765}, {"solidity": 0.9972615007235608, "top": 540, "right": 3185, "bottom": 2145, "left": 765}, {"solidity": 0.9961722270560888, "top": 4115, "right": 3175, "bottom": 5720, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731119f.jpg"} -{"rects": [{"solidity": 0.9964445121680222, "top": 1810, "right": 3210, "bottom": 3450, "left": 780}, {"solidity": 0.9979160274112714, "top": 155, "right": 3215, "bottom": 1780, "left": 790}, {"solidity": 0.9961747166989435, "top": 3480, "right": 1990, "bottom": 5905, "left": 355}, {"solidity": 0.9968937422383668, "top": 3485, "right": 3670, "bottom": 5900, "left": 2040}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705014f.jpg"} -{"rects": [{"solidity": 0.99644456339362, "top": 570, "right": 2670, "bottom": 3600, "left": 640}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712354f.jpg"} -{"rects": [{"solidity": 0.9964446326770579, "top": 1320, "right": 3440, "bottom": 4860, "left": 255}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707758f.jpg"} -{"rects": [{"solidity": 0.9964447003998977, "top": 465, "right": 5050, "bottom": 3660, "left": 1025}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708289f.jpg"} -{"rects": [{"solidity": 0.99644471322172, "top": 730, "right": 2020, "bottom": 3155, "left": 385}, {"solidity": 0.9984463875300129, "top": 725, "right": 3830, "bottom": 3145, "left": 2210}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719465f.jpg"} -{"rects": [{"solidity": 0.9964447860866223, "top": 780, "right": 2605, "bottom": 2200, "left": 755}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704908f.jpg"} -{"rects": [{"solidity": 0.996444933230603, "top": 410, "right": 3230, "bottom": 2050, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707201f.jpg"} -{"rects": [{"solidity": 0.9964449442914193, "top": 830, "right": 3885, "bottom": 3270, "left": 2245}, {"solidity": 0.9971185620374555, "top": 860, "right": 5750, "bottom": 3290, "left": 4130}, {"solidity": 0.9968289666029462, "top": 825, "right": 2035, "bottom": 3255, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733706f.jpg"} -{"rects": [{"solidity": 0.9964449505013125, "top": 930, "right": 3940, "bottom": 3370, "left": 2295}, {"solidity": 0.9973246279107951, "top": 935, "right": 2025, "bottom": 3355, "left": 410}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728967f.jpg"} -{"rects": [{"solidity": 0.9964451168368986, "top": 485, "right": 5100, "bottom": 3705, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726260f.jpg"} -{"rects": [{"solidity": 0.9964451228063309, "top": 790, "right": 3935, "bottom": 3200, "left": 2330}, {"solidity": 0.9862250612074803, "top": 785, "right": 2150, "bottom": 3180, "left": 510}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710724f.jpg"} -{"rects": [{"solidity": 0.9964451666962902, "top": 765, "right": 3840, "bottom": 3210, "left": 2180}, {"solidity": 0.9964445808634042, "top": 755, "right": 1995, "bottom": 3185, "left": 350}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712647f.jpg"} -{"rects": [{"solidity": 0.9964452741011409, "top": 625, "right": 2650, "bottom": 2050, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731972f.jpg"} -{"rects": [{"solidity": 0.9964454402520799, "top": 410, "right": 3125, "bottom": 2040, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719709f.jpg"} -{"rects": [{"solidity": 0.9964455163757627, "top": 395, "right": 3905, "bottom": 2800, "left": 920}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716297f.jpg"} -{"rects": [{"solidity": 0.9964455354187218, "top": 615, "right": 4975, "bottom": 3625, "left": 1175}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709947f.jpg"} -{"rects": [{"solidity": 0.9964458033387517, "top": 865, "right": 1980, "bottom": 3285, "left": 355}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718105f.jpg"} -{"rects": [{"solidity": 0.9964458065990812, "top": 800, "right": 2055, "bottom": 3230, "left": 430}, {"solidity": 0.9969922921441765, "top": 810, "right": 3975, "bottom": 3235, "left": 2365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703787f.jpg"} -{"rects": [{"solidity": 0.9964459297275434, "top": 470, "right": 3100, "bottom": 2065, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713841f.jpg"} -{"rects": [{"solidity": 0.9964459366712959, "top": 350, "right": 2485, "bottom": 2770, "left": 855}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713668f.jpg"} -{"rects": [{"solidity": 0.996446219344163, "top": 620, "right": 3165, "bottom": 2230, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709224f.jpg"} -{"rects": [{"solidity": 0.9964463724550288, "top": 525, "right": 3440, "bottom": 2920, "left": 240}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/716693f.jpg"} -{"rects": [{"solidity": 0.9964463770781469, "top": 730, "right": 3880, "bottom": 3130, "left": 2280}, {"solidity": 0.9961712872815155, "top": 735, "right": 2035, "bottom": 3140, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718258f.jpg"} -{"rects": [{"solidity": 0.9964463856511514, "top": 410, "right": 3190, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715667f.jpg"} -{"rects": [{"solidity": 0.9964465678278736, "top": 415, "right": 3190, "bottom": 2005, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724679f.jpg"} -{"rects": [{"solidity": 0.9964470089329375, "top": 1045, "right": 3475, "bottom": 5045, "left": 450}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717173f.jpg"} -{"rects": [{"solidity": 0.9964471912644797, "top": 635, "right": 2845, "bottom": 2420, "left": 1655}, {"solidity": 0.9881332808928001, "top": 630, "right": 1445, "bottom": 2390, "left": 280}, {"solidity": 0.9777956208887928, "top": 805, "right": 4185, "bottom": 2270, "left": 3050}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715968f.jpg"} -{"rects": [{"solidity": 0.9964471930032736, "top": 1605, "right": 2160, "bottom": 2815, "left": 660}, {"solidity": 0.9959163339624892, "top": 1610, "right": 3835, "bottom": 2825, "left": 2345}, {"solidity": 0.994487685179326, "top": 330, "right": 2155, "bottom": 1535, "left": 655}, {"solidity": 0.9965878487937623, "top": 340, "right": 3840, "bottom": 1545, "left": 2350}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716286f.jpg"} -{"rects": [{"solidity": 0.9964473351816144, "top": 900, "right": 3940, "bottom": 3335, "left": 2305}, {"solidity": 0.9965955617162733, "top": 895, "right": 2030, "bottom": 3325, "left": 405}, {"solidity": 0.9962164378343303, "top": 925, "right": 5770, "bottom": 3350, "left": 4150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734274f.jpg"} -{"rects": [{"solidity": 0.9964473730870781, "top": 2245, "right": 3085, "bottom": 3880, "left": 665}, {"solidity": 0.9963275620512588, "top": 375, "right": 3105, "bottom": 2010, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707643f.jpg"} -{"rects": [{"solidity": 0.9964474828609434, "top": 365, "right": 3200, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726273f.jpg"} -{"rects": [{"solidity": 0.9964476986778789, "top": 380, "right": 3090, "bottom": 2010, "left": 665}, {"solidity": 0.998553421465672, "top": 2220, "right": 3085, "bottom": 3830, "left": 670}, {"solidity": 0.9950903442341922, "top": 4040, "right": 3080, "bottom": 5650, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730774f.jpg"} -{"rects": [{"solidity": 0.9964477336991878, "top": 2310, "right": 3250, "bottom": 3935, "left": 830}, {"solidity": 0.9963365414467557, "top": 455, "right": 3250, "bottom": 2065, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726819f.jpg"} -{"rects": [{"solidity": 0.9964478666603293, "top": 740, "right": 3900, "bottom": 3180, "left": 2250}, {"solidity": 0.9962657151155554, "top": 785, "right": 5760, "bottom": 3215, "left": 4115}, {"solidity": 0.9971121650447247, "top": 730, "right": 2035, "bottom": 3155, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711076f.jpg"} -{"rects": [{"solidity": 0.9964481520988487, "top": 300, "right": 3310, "bottom": 2935, "left": 340}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720800f.jpg"} -{"rects": [{"solidity": 0.9964487989063212, "top": 750, "right": 3970, "bottom": 3155, "left": 2355}, {"solidity": 0.9966244082776532, "top": 750, "right": 2075, "bottom": 3140, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721299f.jpg"} -{"rects": [{"solidity": 0.9964488092184383, "top": 605, "right": 5735, "bottom": 2215, "left": 3360}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702262f.jpg"} -{"rects": [{"solidity": 0.9964489655609733, "top": 800, "right": 2115, "bottom": 3180, "left": 525}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709725f.jpg"} -{"rects": [{"solidity": 0.9964491474087154, "top": 390, "right": 3325, "bottom": 2015, "left": 900}, {"solidity": 0.9968344782402813, "top": 4085, "right": 3280, "bottom": 5710, "left": 885}, {"solidity": 0.9947996367210341, "top": 2285, "right": 3080, "bottom": 3865, "left": 1135}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706701f.jpg"} -{"rects": [{"solidity": 0.9964492100076828, "top": 2035, "right": 3120, "bottom": 3630, "left": 745}, {"solidity": 0.9968116252021978, "top": 3930, "right": 3095, "bottom": 5515, "left": 715}, {"solidity": 0.9953701557873053, "top": 375, "right": 2890, "bottom": 1750, "left": 1105}], "shape": {"h": 6045, "w": 3875}, "file": "/usr/local/google/home/danvk/milstein/728160f.jpg"} -{"rects": [{"solidity": 0.9964492952970756, "top": 865, "right": 3875, "bottom": 3285, "left": 2240}, {"solidity": 0.9973190957628081, "top": 865, "right": 2030, "bottom": 3265, "left": 405}, {"solidity": 0.9963253299256958, "top": 870, "right": 5715, "bottom": 3275, "left": 4090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712283f.jpg"} -{"rects": [{"solidity": 0.9964493467204044, "top": 425, "right": 3675, "bottom": 2260, "left": 955}], "shape": {"h": 6860, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706432f.jpg"} -{"rects": [{"solidity": 0.9964494797925596, "top": 795, "right": 2525, "bottom": 3215, "left": 890}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721728f.jpg"} -{"rects": [{"solidity": 0.9964497003738163, "top": 770, "right": 3905, "bottom": 3210, "left": 2260}, {"solidity": 0.9963624795550143, "top": 810, "right": 5740, "bottom": 3230, "left": 4100}, {"solidity": 0.9976372199027204, "top": 785, "right": 2045, "bottom": 3210, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713332f.jpg"} -{"rects": [{"solidity": 0.9964500712283443, "top": 1070, "right": 3560, "bottom": 5125, "left": 310}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721286f.jpg"} -{"rects": [{"solidity": 0.9964500957349748, "top": 415, "right": 3150, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702562f.jpg"} -{"rects": [{"solidity": 0.996450245826078, "top": 880, "right": 3875, "bottom": 3310, "left": 2225}, {"solidity": 0.9960393030466651, "top": 850, "right": 2010, "bottom": 3270, "left": 375}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722899f.jpg"} -{"rects": [{"solidity": 0.9964502776904537, "top": 425, "right": 3180, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707553f.jpg"} -{"rects": [{"solidity": 0.9964503075324475, "top": 2125, "right": 3145, "bottom": 3750, "left": 735}, {"solidity": 0.997774999676128, "top": 315, "right": 3170, "bottom": 1935, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719885f.jpg"} -{"rects": [{"solidity": 0.9964504988488104, "top": 710, "right": 4180, "bottom": 3560, "left": 2125}, {"solidity": 0.9952089021688734, "top": 930, "right": 1955, "bottom": 3350, "left": 335}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723431f.jpg"} -{"rects": [{"solidity": 0.9964505035218929, "top": 765, "right": 2060, "bottom": 3175, "left": 450}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717258f.jpg"} -{"rects": [{"solidity": 0.996450549008567, "top": 800, "right": 2025, "bottom": 3170, "left": 440}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713682f.jpg"} -{"rects": [{"solidity": 0.9964505944611269, "top": 2280, "right": 3110, "bottom": 3910, "left": 690}, {"solidity": 0.998832652656294, "top": 425, "right": 3105, "bottom": 2010, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734798f.jpg"} -{"rects": [{"solidity": 0.9964508175447703, "top": 810, "right": 2055, "bottom": 3225, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722548f.jpg"} -{"rects": [{"solidity": 0.9964510867169246, "top": 410, "right": 3125, "bottom": 2055, "left": 690}, {"solidity": 0.9922814552398342, "top": 2335, "right": 3125, "bottom": 3970, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710360f.jpg"} -{"rects": [{"solidity": 0.9964511955371096, "top": 405, "right": 3150, "bottom": 1980, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712705f.jpg"} -{"rects": [{"solidity": 0.9964512231954092, "top": 770, "right": 2020, "bottom": 3215, "left": 355}, {"solidity": 0.9979905231295859, "top": 785, "right": 3900, "bottom": 3215, "left": 2265}, {"solidity": 0.9976990556540913, "top": 810, "right": 5790, "bottom": 3245, "left": 4170}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701935f.jpg"} -{"rects": [{"solidity": 0.996451263375884, "top": 2195, "right": 3230, "bottom": 3830, "left": 810}, {"solidity": 0.9954900366133165, "top": 4080, "right": 3220, "bottom": 5720, "left": 790}, {"solidity": 0.9968754534461911, "top": 325, "right": 3240, "bottom": 1950, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730860f.jpg"} -{"rects": [{"solidity": 0.996451295944747, "top": 2045, "right": 3105, "bottom": 3695, "left": 670}, {"solidity": 0.9966875927698922, "top": 375, "right": 3060, "bottom": 2005, "left": 640}, {"solidity": 0.9967025506740375, "top": 385, "right": 5725, "bottom": 2010, "left": 3310}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702372f.jpg"} -{"rects": [{"solidity": 0.9964513499256702, "top": 2230, "right": 3145, "bottom": 3865, "left": 715}, {"solidity": 0.999275973252843, "top": 4090, "right": 3130, "bottom": 5705, "left": 710}, {"solidity": 0.9957595490579636, "top": 360, "right": 3145, "bottom": 1980, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730655f.jpg"} -{"rects": [{"solidity": 0.9964519601571311, "top": 370, "right": 3375, "bottom": 2190, "left": 660}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/714484f.jpg"} -{"rects": [{"solidity": 0.9964519609565152, "top": 630, "right": 2870, "bottom": 2000, "left": 1030}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703768f.jpg"} -{"rects": [{"solidity": 0.9964520356222755, "top": 1450, "right": 5915, "bottom": 3450, "left": 4480}, {"solidity": 0.9956221239413419, "top": 430, "right": 4425, "bottom": 1875, "left": 2425}, {"solidity": 0.996723780157133, "top": 2235, "right": 2460, "bottom": 3660, "left": 470}, {"solidity": 0.9951870242532711, "top": 440, "right": 2255, "bottom": 1865, "left": 265}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732891f.jpg"} -{"rects": [{"solidity": 0.9964521357377133, "top": 720, "right": 1980, "bottom": 3165, "left": 350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725803f.jpg"} -{"rects": [{"solidity": 0.9964522371430247, "top": 830, "right": 2170, "bottom": 3240, "left": 555}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709701f.jpg"} -{"rects": [{"solidity": 0.9964522722274686, "top": 425, "right": 3115, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719430f.jpg"} -{"rects": [{"solidity": 0.9964524632594536, "top": 550, "right": 2545, "bottom": 3285, "left": 695}], "shape": {"h": 4430, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/710281f.jpg"} -{"rects": [{"solidity": 0.9964524876323028, "top": 840, "right": 1995, "bottom": 3250, "left": 380}, {"solidity": 0.9956523949102861, "top": 875, "right": 5600, "bottom": 3245, "left": 4025}, {"solidity": 0.9938048686204897, "top": 870, "right": 3795, "bottom": 3215, "left": 2205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716902f.jpg"} -{"rects": [{"solidity": 0.9964525003179363, "top": 765, "right": 2030, "bottom": 3155, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717486f.jpg"} -{"rects": [{"solidity": 0.99645258438427, "top": 385, "right": 3300, "bottom": 1995, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727787f.jpg"} -{"rects": [{"solidity": 0.9964525961740592, "top": 750, "right": 3840, "bottom": 3145, "left": 2240}, {"solidity": 0.9933838182542846, "top": 755, "right": 1995, "bottom": 3145, "left": 405}, {"solidity": 0.9972774344412895, "top": 750, "right": 5685, "bottom": 3140, "left": 4105}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716743f.jpg"} -{"rects": [{"solidity": 0.9964526122542645, "top": 800, "right": 3870, "bottom": 3230, "left": 2230}, {"solidity": 0.9966097119701269, "top": 805, "right": 2030, "bottom": 3230, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729348f.jpg"} -{"rects": [{"solidity": 0.9964526404890057, "top": 2285, "right": 3230, "bottom": 3905, "left": 815}, {"solidity": 0.9958634442996486, "top": 430, "right": 3195, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718514f.jpg"} -{"rects": [{"solidity": 0.996452652993334, "top": 505, "right": 2960, "bottom": 2145, "left": 540}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704571f.jpg"} -{"rects": [{"solidity": 0.9964529472930643, "top": 445, "right": 3175, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705824f.jpg"} -{"rects": [{"solidity": 0.9964531304701135, "top": 495, "right": 3575, "bottom": 2315, "left": 860}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711380f.jpg"} -{"rects": [{"solidity": 0.996453655044552, "top": 415, "right": 3270, "bottom": 2015, "left": 880}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727381f.jpg"} -{"rects": [{"solidity": 0.9964536552728807, "top": 415, "right": 3220, "bottom": 2000, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732191f.jpg"} -{"rects": [{"solidity": 0.9964537276527906, "top": 730, "right": 3850, "bottom": 3135, "left": 2240}, {"solidity": 0.9971979453779177, "top": 730, "right": 2040, "bottom": 3125, "left": 435}, {"solidity": 0.9957447225735604, "top": 735, "right": 5680, "bottom": 3145, "left": 4075}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731260f.jpg"} -{"rects": [{"solidity": 0.9964537417283862, "top": 2125, "right": 5080, "bottom": 3610, "left": 3185}, {"solidity": 0.9969487751577153, "top": 475, "right": 5090, "bottom": 1935, "left": 3205}, {"solidity": 0.9956447269596439, "top": 2120, "right": 2585, "bottom": 3585, "left": 700}, {"solidity": 0.9972111460883759, "top": 460, "right": 2605, "bottom": 1910, "left": 735}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731407f.jpg"} -{"rects": [{"solidity": 0.9964539793895116, "top": 655, "right": 2540, "bottom": 3695, "left": 480}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714990f.jpg"} -{"rects": [{"solidity": 0.9964540720200196, "top": 450, "right": 3205, "bottom": 2070, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713095f.jpg"} -{"rects": [{"solidity": 0.9964541161348907, "top": 845, "right": 3925, "bottom": 3270, "left": 2300}, {"solidity": 0.9973974310125479, "top": 840, "right": 2095, "bottom": 3260, "left": 480}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718573f.jpg"} -{"rects": [{"solidity": 0.9964542181694941, "top": 760, "right": 3885, "bottom": 3190, "left": 2245}, {"solidity": 0.9895335376451416, "top": 750, "right": 2020, "bottom": 3205, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724071f.jpg"} -{"rects": [{"solidity": 0.9964544110528175, "top": 2205, "right": 3205, "bottom": 3810, "left": 800}, {"solidity": 0.9986459973117131, "top": 4025, "right": 3200, "bottom": 5620, "left": 800}, {"solidity": 0.9966591544455387, "top": 395, "right": 3195, "bottom": 1985, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730177f.jpg"} -{"rects": [{"solidity": 0.9964544165242373, "top": 435, "right": 2215, "bottom": 2700, "left": 685}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716342f.jpg"} -{"rects": [{"solidity": 0.9964544719376092, "top": 515, "right": 3180, "bottom": 3665, "left": 700}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713327f.jpg"} -{"rects": [{"solidity": 0.9964545486601977, "top": 840, "right": 3805, "bottom": 3260, "left": 2170}, {"solidity": 0.9979132062837844, "top": 850, "right": 1975, "bottom": 3255, "left": 365}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716901f.jpg"} -{"rects": [{"solidity": 0.996454615559374, "top": 2285, "right": 3235, "bottom": 3920, "left": 800}, {"solidity": 0.9973180472799184, "top": 445, "right": 3225, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701830f.jpg"} -{"rects": [{"solidity": 0.9964546584816225, "top": 435, "right": 3130, "bottom": 2050, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712130f.jpg"} -{"rects": [{"solidity": 0.9964548015550787, "top": 900, "right": 3300, "bottom": 2875, "left": 470}, {"solidity": 0.9938661165161312, "top": 3620, "right": 2945, "bottom": 4965, "left": 1200}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723980f.jpg"} -{"rects": [{"solidity": 0.9964550266282164, "top": 750, "right": 2000, "bottom": 3155, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718849f.jpg"} -{"rects": [{"solidity": 0.996455089033445, "top": 395, "right": 3200, "bottom": 2000, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718833f.jpg"} -{"rects": [{"solidity": 0.9964551068018835, "top": 2185, "right": 5230, "bottom": 3610, "left": 3380}, {"solidity": 0.9964821808561625, "top": 2180, "right": 2755, "bottom": 3625, "left": 930}, {"solidity": 0.996341194410611, "top": 720, "right": 5235, "bottom": 2140, "left": 3380}, {"solidity": 0.993541155119035, "top": 720, "right": 2755, "bottom": 2145, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727349f.jpg"} -{"rects": [{"solidity": 0.9964551963744287, "top": 745, "right": 2110, "bottom": 3165, "left": 485}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715292f.jpg"} -{"rects": [{"solidity": 0.9964552226814328, "top": 780, "right": 3860, "bottom": 3205, "left": 2240}, {"solidity": 0.9965512986211689, "top": 800, "right": 5715, "bottom": 3220, "left": 4105}, {"solidity": 0.9967273690528483, "top": 795, "right": 1960, "bottom": 3180, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729034f.jpg"} -{"rects": [{"solidity": 0.9964553280444577, "top": 775, "right": 2025, "bottom": 3185, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721880f.jpg"} -{"rects": [{"solidity": 0.9964553457654965, "top": 885, "right": 1965, "bottom": 3295, "left": 345}, {"solidity": 0.9969270549102154, "top": 890, "right": 3820, "bottom": 3300, "left": 2210}, {"solidity": 0.9969912276702855, "top": 890, "right": 5680, "bottom": 3300, "left": 4075}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700760f.jpg"} -{"rects": [{"solidity": 0.9964555416305151, "top": 2275, "right": 3160, "bottom": 3905, "left": 735}, {"solidity": 0.9953051794471905, "top": 4130, "right": 3155, "bottom": 5755, "left": 725}, {"solidity": 0.9976270298754999, "top": 415, "right": 3150, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724399f.jpg"} -{"rects": [{"solidity": 0.9964555435679381, "top": 2165, "right": 3175, "bottom": 3805, "left": 740}, {"solidity": 0.9961982997420957, "top": 4010, "right": 3155, "bottom": 5650, "left": 725}, {"solidity": 0.9969826390107138, "top": 310, "right": 3175, "bottom": 1945, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705832f.jpg"} -{"rects": [{"solidity": 0.9964557255149168, "top": 415, "right": 3170, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719679f.jpg"} -{"rects": [{"solidity": 0.9964557677243717, "top": 390, "right": 3235, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727235f.jpg"} -{"rects": [{"solidity": 0.9964560722335866, "top": 345, "right": 3170, "bottom": 1960, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719589f.jpg"} -{"rects": [{"solidity": 0.9964561620584083, "top": 750, "right": 3890, "bottom": 3195, "left": 2240}, {"solidity": 0.995779514707945, "top": 780, "right": 5730, "bottom": 3225, "left": 4095}, {"solidity": 0.996334629074108, "top": 755, "right": 2030, "bottom": 3180, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733970f.jpg"} -{"rects": [{"solidity": 0.9964562441935082, "top": 2210, "right": 3225, "bottom": 3840, "left": 795}, {"solidity": 0.9950057539612577, "top": 480, "right": 3245, "bottom": 2125, "left": 795}, {"solidity": 0.9984880575892094, "top": 3945, "right": 3195, "bottom": 5555, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733188f.jpg"} -{"rects": [{"solidity": 0.9964564663058822, "top": 2495, "right": 3200, "bottom": 4125, "left": 785}, {"solidity": 0.9991392163295535, "top": 765, "right": 3205, "bottom": 2375, "left": 800}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/723096f.jpg"} -{"rects": [{"solidity": 0.9964566376648891, "top": 840, "right": 3865, "bottom": 3270, "left": 2225}, {"solidity": 0.9965886626787502, "top": 850, "right": 5720, "bottom": 3280, "left": 4095}, {"solidity": 0.9994664165831258, "top": 840, "right": 2010, "bottom": 3255, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720406f.jpg"} -{"rects": [{"solidity": 0.9964567820220768, "top": 310, "right": 3950, "bottom": 2785, "left": 775}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508715.jpg"} -{"rects": [{"solidity": 0.9964568683846847, "top": 745, "right": 3875, "bottom": 3170, "left": 2250}, {"solidity": 0.9989379634230705, "top": 750, "right": 2035, "bottom": 3165, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702864f.jpg"} -{"rects": [{"solidity": 0.9964569119220255, "top": 925, "right": 3515, "bottom": 5020, "left": 280}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712564f.jpg"} -{"rects": [{"solidity": 0.9964569123384378, "top": 455, "right": 3135, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700458f.jpg"} -{"rects": [{"solidity": 0.9964574368172257, "top": 3790, "right": 3275, "bottom": 5790, "left": 455}, {"solidity": 0.996532930678055, "top": 270, "right": 3045, "bottom": 1890, "left": 625}, {"solidity": 0.9961237408667069, "top": 2000, "right": 3030, "bottom": 3620, "left": 625}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728718f.jpg"} -{"rects": [{"solidity": 0.996457550364537, "top": 2100, "right": 3290, "bottom": 3690, "left": 895}, {"solidity": 0.9944840689565987, "top": 450, "right": 3095, "bottom": 1875, "left": 1285}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726551f.jpg"} -{"rects": [{"solidity": 0.9964575784485944, "top": 780, "right": 5665, "bottom": 3195, "left": 4045}, {"solidity": 0.9950187585776047, "top": 775, "right": 2070, "bottom": 3165, "left": 480}, {"solidity": 0.9857359812235229, "top": 1225, "right": 3650, "bottom": 2735, "left": 2495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721026f.jpg"} -{"rects": [{"solidity": 0.9964577150103912, "top": 470, "right": 3150, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704711f.jpg"} -{"rects": [{"solidity": 0.996457772668007, "top": 2230, "right": 3125, "bottom": 3860, "left": 710}, {"solidity": 0.99630106972548, "top": 385, "right": 3135, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721697f.jpg"} -{"rects": [{"solidity": 0.9964579798198061, "top": 495, "right": 5010, "bottom": 3525, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712579f.jpg"} -{"rects": [{"solidity": 0.9964580263191913, "top": 2295, "right": 3075, "bottom": 3915, "left": 665}, {"solidity": 0.9983486464740845, "top": 440, "right": 3070, "bottom": 2055, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720425f.jpg"} -{"rects": [{"solidity": 0.9964580479165971, "top": 420, "right": 3195, "bottom": 2005, "left": 820}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718309f.jpg"} -{"rects": [{"solidity": 0.9964582834643362, "top": 3285, "right": 3270, "bottom": 5200, "left": 570}, {"solidity": 0.9976198900003216, "top": 710, "right": 3295, "bottom": 2600, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714718f.jpg"} -{"rects": [{"solidity": 0.9964583779498867, "top": 750, "right": 3870, "bottom": 3180, "left": 2235}, {"solidity": 0.9972888870218796, "top": 750, "right": 2025, "bottom": 3165, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721164f.jpg"} -{"rects": [{"solidity": 0.9964583798712507, "top": 865, "right": 1825, "bottom": 3140, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712546f.jpg"} -{"rects": [{"solidity": 0.996458452301744, "top": 465, "right": 2935, "bottom": 1665, "left": 925}, {"solidity": 0.9952578060686169, "top": 2005, "right": 2780, "bottom": 3305, "left": 1105}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734345f.jpg"} -{"rects": [{"solidity": 0.9964585834333733, "top": 415, "right": 3135, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702833f.jpg"} -{"rects": [{"solidity": 0.9964587173765402, "top": 875, "right": 2045, "bottom": 3270, "left": 420}, {"solidity": 0.9966262585701261, "top": 885, "right": 3920, "bottom": 3285, "left": 2315}, {"solidity": 0.9965560499507287, "top": 915, "right": 5750, "bottom": 3295, "left": 4175}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731569f.jpg"} -{"rects": [{"solidity": 0.9964587226912419, "top": 380, "right": 3145, "bottom": 2000, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701959f.jpg"} -{"rects": [{"solidity": 0.9964587298608691, "top": 2105, "right": 3250, "bottom": 3855, "left": 560}, {"solidity": 0.9912416308460952, "top": 3920, "right": 3245, "bottom": 5650, "left": 575}, {"solidity": 0.9919678827687346, "top": 330, "right": 3250, "bottom": 2045, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722925f.jpg"} -{"rects": [{"solidity": 0.9964588938473683, "top": 375, "right": 3115, "bottom": 2005, "left": 700}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722704f.jpg"} -{"rects": [{"solidity": 0.9964589122667725, "top": 790, "right": 5655, "bottom": 3225, "left": 4015}, {"solidity": 0.9976095312768928, "top": 775, "right": 3850, "bottom": 3200, "left": 2220}, {"solidity": 0.9986746210796222, "top": 770, "right": 2025, "bottom": 3190, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733372f.jpg"} -{"rects": [{"solidity": 0.9964591770707081, "top": 400, "right": 3155, "bottom": 2005, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728509f.jpg"} -{"rects": [{"solidity": 0.9964592708043637, "top": 500, "right": 5055, "bottom": 3720, "left": 1060}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709171f.jpg"} -{"rects": [{"solidity": 0.9964593338816682, "top": 530, "right": 4910, "bottom": 3545, "left": 1070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727785f.jpg"} -{"rects": [{"solidity": 0.9964594213902076, "top": 440, "right": 3425, "bottom": 2265, "left": 720}], "shape": {"h": 6850, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711618f.jpg"} -{"rects": [{"solidity": 0.9964595657198229, "top": 360, "right": 4050, "bottom": 2815, "left": 860}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508925.jpg"} -{"rects": [{"solidity": 0.9964596303872028, "top": 1080, "right": 1870, "bottom": 2975, "left": 380}, {"solidity": 0.9987573125650504, "top": 1085, "right": 3650, "bottom": 2980, "left": 2170}, {"solidity": 0.998188380680374, "top": 1105, "right": 5400, "bottom": 2990, "left": 3955}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731404f.jpg"} -{"rects": [{"solidity": 0.9964596533776338, "top": 2285, "right": 3150, "bottom": 3900, "left": 730}, {"solidity": 0.9958023483365949, "top": 4135, "right": 3135, "bottom": 5745, "left": 715}, {"solidity": 0.9969780120944928, "top": 415, "right": 3165, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731775f.jpg"} -{"rects": [{"solidity": 0.9964596809525037, "top": 785, "right": 5820, "bottom": 3215, "left": 4205}, {"solidity": 0.99642528754174, "top": 760, "right": 2005, "bottom": 3180, "left": 390}, {"solidity": 0.9969396390545354, "top": 775, "right": 3910, "bottom": 3185, "left": 2315}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730127f.jpg"} -{"rects": [{"solidity": 0.9964598218908564, "top": 405, "right": 3230, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/717734f.jpg"} -{"rects": [{"solidity": 0.9964598253687547, "top": 390, "right": 3180, "bottom": 2000, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734217f.jpg"} -{"rects": [{"solidity": 0.9964599190283401, "top": 435, "right": 3220, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704650f.jpg"} -{"rects": [{"solidity": 0.9964601487948256, "top": 2345, "right": 3295, "bottom": 3990, "left": 870}, {"solidity": 0.9973061363075809, "top": 445, "right": 3295, "bottom": 2080, "left": 875}, {"solidity": 0.9975688262996365, "top": 4225, "right": 3240, "bottom": 5850, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704757f.jpg"} -{"rects": [{"solidity": 0.9964601589876868, "top": 2120, "right": 5080, "bottom": 3490, "left": 3250}, {"solidity": 0.9980181330609118, "top": 2120, "right": 2870, "bottom": 3480, "left": 1055}, {"solidity": 0.9958843944838601, "top": 605, "right": 5075, "bottom": 1970, "left": 3260}, {"solidity": 0.9960291163884993, "top": 600, "right": 2870, "bottom": 1950, "left": 1045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707058f.jpg"} -{"rects": [{"solidity": 0.9964603426078595, "top": 390, "right": 3170, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702714f.jpg"} -{"rects": [{"solidity": 0.996460512086565, "top": 835, "right": 3830, "bottom": 3260, "left": 2195}, {"solidity": 0.9987942057394518, "top": 825, "right": 2005, "bottom": 3240, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724072f.jpg"} -{"rects": [{"solidity": 0.9964605795040327, "top": 435, "right": 3075, "bottom": 2065, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729904f.jpg"} -{"rects": [{"solidity": 0.9964605931002499, "top": 775, "right": 3870, "bottom": 3195, "left": 2255}, {"solidity": 0.9967814861278183, "top": 780, "right": 5715, "bottom": 3205, "left": 4100}, {"solidity": 0.9949424726860577, "top": 790, "right": 2015, "bottom": 3190, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732134f.jpg"} -{"rects": [{"solidity": 0.9964606151007326, "top": 2245, "right": 3325, "bottom": 3870, "left": 910}, {"solidity": 0.9968622781469741, "top": 405, "right": 3340, "bottom": 2035, "left": 930}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702953f.jpg"} -{"rects": [{"solidity": 0.996460655398852, "top": 715, "right": 5660, "bottom": 3155, "left": 4020}, {"solidity": 0.9962375540548832, "top": 730, "right": 3790, "bottom": 3150, "left": 2165}, {"solidity": 0.9933497967993467, "top": 720, "right": 1920, "bottom": 3135, "left": 305}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730713f.jpg"} -{"rects": [{"solidity": 0.996460665452996, "top": 2045, "right": 2610, "bottom": 3465, "left": 775}, {"solidity": 0.9976106596826917, "top": 600, "right": 2615, "bottom": 2020, "left": 800}, {"solidity": 0.9962722392036993, "top": 2045, "right": 5205, "bottom": 3455, "left": 3375}, {"solidity": 0.9964558611566332, "top": 585, "right": 5195, "bottom": 1990, "left": 3375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704009f.jpg"} -{"rects": [{"solidity": 0.9964609315608884, "top": 960, "right": 2535, "bottom": 3670, "left": 725}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708882f.jpg"} -{"rects": [{"solidity": 0.9964612053029103, "top": 2425, "right": 2535, "bottom": 3915, "left": 450}, {"solidity": 0.9966128913924236, "top": 695, "right": 2550, "bottom": 2180, "left": 455}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716264f.jpg"} -{"rects": [{"solidity": 0.9964612094108497, "top": 635, "right": 2700, "bottom": 2060, "left": 870}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703126f.jpg"} -{"rects": [{"solidity": 0.9964614090553122, "top": 770, "right": 2050, "bottom": 3190, "left": 430}, {"solidity": 0.9968276428701844, "top": 770, "right": 3840, "bottom": 3185, "left": 2240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711185f.jpg"} -{"rects": [{"solidity": 0.9964616148017562, "top": 550, "right": 4960, "bottom": 3555, "left": 965}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708700f.jpg"} -{"rects": [{"solidity": 0.9964616431846496, "top": 2175, "right": 3265, "bottom": 3810, "left": 845}, {"solidity": 0.9981694060775719, "top": 4060, "right": 3275, "bottom": 5675, "left": 870}, {"solidity": 0.9956144780870523, "top": 315, "right": 3240, "bottom": 1935, "left": 830}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700403f.jpg"} -{"rects": [{"solidity": 0.9964618363133747, "top": 2265, "right": 3180, "bottom": 3880, "left": 750}, {"solidity": 0.9957624103151343, "top": 440, "right": 3175, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723341f.jpg"} -{"rects": [{"solidity": 0.9964618858821869, "top": 2270, "right": 3100, "bottom": 3900, "left": 675}, {"solidity": 0.9970551676113992, "top": 415, "right": 3085, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729553f.jpg"} -{"rects": [{"solidity": 0.9964619193356595, "top": 370, "right": 3260, "bottom": 1980, "left": 850}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733236f.jpg"} -{"rects": [{"solidity": 0.9964619774539033, "top": 915, "right": 5730, "bottom": 3355, "left": 4080}, {"solidity": 0.9974402181603015, "top": 905, "right": 2050, "bottom": 3330, "left": 435}, {"solidity": 0.999902520178323, "top": 910, "right": 3870, "bottom": 3320, "left": 2265}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718725f.jpg"} -{"rects": [{"solidity": 0.9964620019655545, "top": 800, "right": 2080, "bottom": 3220, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714821f.jpg"} -{"rects": [{"solidity": 0.9964622175373872, "top": 795, "right": 3885, "bottom": 3190, "left": 2290}, {"solidity": 0.996526619892695, "top": 800, "right": 2020, "bottom": 3190, "left": 425}, {"solidity": 0.995277794358556, "top": 795, "right": 5725, "bottom": 3185, "left": 4135}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718856f.jpg"} -{"rects": [{"solidity": 0.996462270596089, "top": 415, "right": 3410, "bottom": 5645, "left": 320}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721195f.jpg"} -{"rects": [{"solidity": 0.9964623169584882, "top": 835, "right": 2050, "bottom": 3260, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708142f.jpg"} -{"rects": [{"solidity": 0.9964624047697913, "top": 710, "right": 3675, "bottom": 2885, "left": 585}, {"solidity": 0.9962696833025636, "top": 3555, "right": 3670, "bottom": 5720, "left": 595}], "shape": {"h": 6870, "w": 4405}, "file": "/usr/local/google/home/danvk/milstein/710269f.jpg"} -{"rects": [{"solidity": 0.9964626382182462, "top": 795, "right": 2055, "bottom": 3225, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702503f.jpg"} -{"rects": [{"solidity": 0.9964627686819445, "top": 510, "right": 5345, "bottom": 2370, "left": 4215}, {"solidity": 0.9988902836144008, "top": 2435, "right": 3785, "bottom": 3555, "left": 1930}, {"solidity": 0.99632290581308, "top": 590, "right": 2490, "bottom": 1715, "left": 635}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700125f.jpg"} -{"rects": [{"solidity": 0.9964628228421609, "top": 720, "right": 2805, "bottom": 3510, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713318f.jpg"} -{"rects": [{"solidity": 0.9964628523921094, "top": 565, "right": 4970, "bottom": 3595, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708521f.jpg"} -{"rects": [{"solidity": 0.9964628666310583, "top": 485, "right": 3215, "bottom": 3930, "left": 690}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715219f.jpg"} -{"rects": [{"solidity": 0.9964628700154132, "top": 790, "right": 2020, "bottom": 3195, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722975f.jpg"} -{"rects": [{"solidity": 0.9964629193932986, "top": 325, "right": 2595, "bottom": 2760, "left": 955}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720842f.jpg"} -{"rects": [{"solidity": 0.9964633297167749, "top": 360, "right": 2955, "bottom": 1980, "left": 540}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707909f.jpg"} -{"rects": [{"solidity": 0.9964634489410441, "top": 2240, "right": 3245, "bottom": 3815, "left": 855}, {"solidity": 0.9969736701053031, "top": 375, "right": 3140, "bottom": 1960, "left": 1210}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727735f.jpg"} -{"rects": [{"solidity": 0.9964634551513352, "top": 600, "right": 4930, "bottom": 3620, "left": 1160}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709875f.jpg"} -{"rects": [{"solidity": 0.9964634695467259, "top": 750, "right": 3880, "bottom": 3150, "left": 2285}, {"solidity": 0.9956349662522785, "top": 755, "right": 2060, "bottom": 3160, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724845f.jpg"} -{"rects": [{"solidity": 0.9964635118947378, "top": 1900, "right": 2675, "bottom": 4335, "left": 1025}, {"solidity": 0.9954615977627322, "top": 215, "right": 3105, "bottom": 1855, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718072f.jpg"} -{"rects": [{"solidity": 0.9964635606463462, "top": 2200, "right": 3145, "bottom": 3810, "left": 740}, {"solidity": 0.995951832433005, "top": 420, "right": 3145, "bottom": 2015, "left": 750}, {"solidity": 0.9949163139176156, "top": 3995, "right": 2920, "bottom": 5365, "left": 1095}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721587f.jpg"} -{"rects": [{"solidity": 0.9964635966908687, "top": 880, "right": 3970, "bottom": 3310, "left": 2320}, {"solidity": 0.9991548114455305, "top": 895, "right": 2060, "bottom": 3300, "left": 440}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717590f.jpg"} -{"rects": [{"solidity": 0.9964636680188562, "top": 385, "right": 3120, "bottom": 2040, "left": 690}, {"solidity": 0.9978679066895634, "top": 2250, "right": 3115, "bottom": 3875, "left": 705}, {"solidity": 0.9965118503078065, "top": 4090, "right": 3105, "bottom": 5720, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719523f.jpg"} -{"rects": [{"solidity": 0.9964638160540821, "top": 2170, "right": 3095, "bottom": 3800, "left": 685}, {"solidity": 0.9954590038870926, "top": 360, "right": 3090, "bottom": 1960, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720155f.jpg"} -{"rects": [{"solidity": 0.9964638736776705, "top": 805, "right": 2035, "bottom": 3195, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720002f.jpg"} -{"rects": [{"solidity": 0.9964638955330015, "top": 520, "right": 3015, "bottom": 2155, "left": 600}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704556f.jpg"} -{"rects": [{"solidity": 0.9964639524939705, "top": 2200, "right": 3210, "bottom": 3825, "left": 780}, {"solidity": 0.9961785278829494, "top": 390, "right": 3195, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706475f.jpg"} -{"rects": [{"solidity": 0.9964642012575343, "top": 705, "right": 2065, "bottom": 3120, "left": 460}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712452f.jpg"} -{"rects": [{"solidity": 0.9964642225754031, "top": 445, "right": 3000, "bottom": 1875, "left": 1020}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707488f.jpg"} -{"rects": [{"solidity": 0.9964646051706376, "top": 775, "right": 2075, "bottom": 3190, "left": 480}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729360f.jpg"} -{"rects": [{"solidity": 0.9964649052420589, "top": 760, "right": 3855, "bottom": 3180, "left": 2235}, {"solidity": 0.996713703887424, "top": 765, "right": 5665, "bottom": 3175, "left": 4060}, {"solidity": 0.9962001661811506, "top": 775, "right": 2035, "bottom": 3185, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714032f.jpg"} -{"rects": [{"solidity": 0.9964649898028552, "top": 650, "right": 2725, "bottom": 1995, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725494f.jpg"} -{"rects": [{"solidity": 0.9964650257089039, "top": 890, "right": 2025, "bottom": 3315, "left": 375}, {"solidity": 0.9961267163125823, "top": 905, "right": 3870, "bottom": 3315, "left": 2240}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714762f.jpg"} -{"rects": [{"solidity": 0.9964650840408942, "top": 665, "right": 2740, "bottom": 2075, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727326f.jpg"} -{"rects": [{"solidity": 0.9964651078707036, "top": 810, "right": 2005, "bottom": 3230, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722236f.jpg"} -{"rects": [{"solidity": 0.9964653195967221, "top": 795, "right": 3850, "bottom": 3210, "left": 2240}, {"solidity": 0.9974238921756847, "top": 795, "right": 1985, "bottom": 3215, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728065f.jpg"} -{"rects": [{"solidity": 0.9964654286971975, "top": 770, "right": 3885, "bottom": 3170, "left": 2275}, {"solidity": 0.9956934184839656, "top": 770, "right": 2080, "bottom": 3170, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722093f.jpg"} -{"rects": [{"solidity": 0.9964656213082689, "top": 410, "right": 3135, "bottom": 2025, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729215f.jpg"} -{"rects": [{"solidity": 0.9964657763359327, "top": 435, "right": 5260, "bottom": 3655, "left": 1215}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712931f.jpg"} -{"rects": [{"solidity": 0.9964658727778691, "top": 845, "right": 5700, "bottom": 3250, "left": 4065}, {"solidity": 0.9963542846051823, "top": 855, "right": 3815, "bottom": 3250, "left": 2180}, {"solidity": 0.9999025125758777, "top": 860, "right": 1945, "bottom": 3240, "left": 320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707903f.jpg"} -{"rects": [{"solidity": 0.9964658827851124, "top": 800, "right": 3860, "bottom": 3240, "left": 2210}, {"solidity": 0.9976863835362542, "top": 780, "right": 2000, "bottom": 3205, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714622f.jpg"} -{"rects": [{"solidity": 0.9964660694697185, "top": 790, "right": 3800, "bottom": 3215, "left": 2165}, {"solidity": 0.9968728563285207, "top": 780, "right": 1975, "bottom": 3190, "left": 340}, {"solidity": 0.9950786359522549, "top": 935, "right": 5760, "bottom": 3080, "left": 4025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716551f.jpg"} -{"rects": [{"solidity": 0.9964660862418779, "top": 485, "right": 2115, "bottom": 1860, "left": 325}, {"solidity": 0.995894883661954, "top": 2075, "right": 2105, "bottom": 3425, "left": 335}, {"solidity": 0.9929383134519697, "top": 1145, "right": 4040, "bottom": 2470, "left": 2285}], "shape": {"h": 3880, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728130f.jpg"} -{"rects": [{"solidity": 0.9964661005498332, "top": 650, "right": 2650, "bottom": 2000, "left": 845}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731978f.jpg"} -{"rects": [{"solidity": 0.9964661516169651, "top": 785, "right": 5705, "bottom": 3235, "left": 4050}, {"solidity": 0.9968929845002295, "top": 795, "right": 3825, "bottom": 3215, "left": 2205}, {"solidity": 0.9977418201380679, "top": 785, "right": 1965, "bottom": 3210, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725805f.jpg"} -{"rects": [{"solidity": 0.9964666974765403, "top": 555, "right": 3160, "bottom": 2155, "left": 750}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718521f.jpg"} -{"rects": [{"solidity": 0.9964667587229998, "top": 840, "right": 3995, "bottom": 3215, "left": 2375}, {"solidity": 0.9980435997764114, "top": 870, "right": 2105, "bottom": 3215, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723685f.jpg"} -{"rects": [{"solidity": 0.9964668667369616, "top": 470, "right": 3160, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725243f.jpg"} -{"rects": [{"solidity": 0.9964668769716089, "top": 705, "right": 3830, "bottom": 3120, "left": 2195}, {"solidity": 0.9971062721551038, "top": 710, "right": 1985, "bottom": 3105, "left": 385}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721925f.jpg"} -{"rects": [{"solidity": 0.9964670212492612, "top": 2190, "right": 3185, "bottom": 3825, "left": 775}, {"solidity": 0.9938114474997851, "top": 290, "right": 3155, "bottom": 1900, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724571f.jpg"} -{"rects": [{"solidity": 0.9964670833198407, "top": 460, "right": 3185, "bottom": 2070, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733853f.jpg"} -{"rects": [{"solidity": 0.9964671265009951, "top": 2200, "right": 3195, "bottom": 3835, "left": 750}, {"solidity": 0.9966323302678495, "top": 315, "right": 3210, "bottom": 1945, "left": 785}, {"solidity": 0.9965636289103533, "top": 4105, "right": 3165, "bottom": 5735, "left": 740}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/715197f.jpg"} -{"rects": [{"solidity": 0.9964672798054502, "top": 720, "right": 5240, "bottom": 2120, "left": 3435}, {"solidity": 0.9980269899616104, "top": 720, "right": 2625, "bottom": 2095, "left": 825}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728014f.jpg"} -{"rects": [{"solidity": 0.9964673262867517, "top": 380, "right": 2285, "bottom": 1620, "left": 825}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716391f.jpg"} -{"rects": [{"solidity": 0.9964676772231665, "top": 865, "right": 2925, "bottom": 2075, "left": 1115}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509677.jpg"} -{"rects": [{"solidity": 0.99646780790172, "top": 860, "right": 2315, "bottom": 3575, "left": 475}], "shape": {"h": 4420, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711316f.jpg"} -{"rects": [{"solidity": 0.9964678330881783, "top": 830, "right": 3870, "bottom": 3260, "left": 2260}, {"solidity": 0.9972546574524135, "top": 835, "right": 2025, "bottom": 3245, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734373f.jpg"} -{"rects": [{"solidity": 0.9964680545585068, "top": 590, "right": 5000, "bottom": 2030, "left": 3165}, {"solidity": 0.994687534870633, "top": 2215, "right": 2750, "bottom": 3660, "left": 940}, {"solidity": 0.9953949960598897, "top": 2220, "right": 4990, "bottom": 3645, "left": 3190}, {"solidity": 0.9951834608693904, "top": 600, "right": 2720, "bottom": 2020, "left": 945}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726764f.jpg"} -{"rects": [{"solidity": 0.9964681480029725, "top": 485, "right": 2160, "bottom": 2570, "left": 680}, {"solidity": 0.9957837514787571, "top": 490, "right": 3945, "bottom": 2585, "left": 2460}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716170f.jpg"} -{"rects": [{"solidity": 0.9964681489117447, "top": 795, "right": 3030, "bottom": 2590, "left": 1825}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507623.jpg"} -{"rects": [{"solidity": 0.9964681732786372, "top": 905, "right": 3935, "bottom": 3320, "left": 2305}, {"solidity": 0.995105665759108, "top": 900, "right": 2035, "bottom": 3320, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724751f.jpg"} -{"rects": [{"solidity": 0.9964683120252701, "top": 850, "right": 3920, "bottom": 3290, "left": 2280}, {"solidity": 0.9960401974162447, "top": 830, "right": 2065, "bottom": 3270, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707528f.jpg"} -{"rects": [{"solidity": 0.9964685455312386, "top": 405, "right": 3185, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714918f.jpg"} -{"rects": [{"solidity": 0.996468637270577, "top": 420, "right": 3200, "bottom": 2015, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718021f.jpg"} -{"rects": [{"solidity": 0.9964693541929315, "top": 415, "right": 3175, "bottom": 2020, "left": 790}, {"solidity": 0.9964880950405131, "top": 2290, "right": 3175, "bottom": 3885, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734622f.jpg"} -{"rects": [{"solidity": 0.9964693925717562, "top": 860, "right": 3380, "bottom": 2775, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713691f.jpg"} -{"rects": [{"solidity": 0.996469610964973, "top": 410, "right": 3105, "bottom": 2000, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729315f.jpg"} -{"rects": [{"solidity": 0.9964696231179038, "top": 900, "right": 2045, "bottom": 3330, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729235f.jpg"} -{"rects": [{"solidity": 0.9964696430914788, "top": 750, "right": 3925, "bottom": 3180, "left": 2285}, {"solidity": 0.9969945038678869, "top": 775, "right": 2060, "bottom": 3190, "left": 430}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715013f.jpg"} -{"rects": [{"solidity": 0.9964698152863536, "top": 2230, "right": 3200, "bottom": 3860, "left": 795}, {"solidity": 0.9964338488818836, "top": 440, "right": 3175, "bottom": 2055, "left": 775}, {"solidity": 0.998061085725819, "top": 4045, "right": 3220, "bottom": 5645, "left": 835}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724221f.jpg"} -{"rects": [{"solidity": 0.9964699335148859, "top": 2285, "right": 3205, "bottom": 3885, "left": 805}, {"solidity": 0.9969813935075218, "top": 445, "right": 3200, "bottom": 2040, "left": 800}, {"solidity": 0.9973742791653181, "top": 4120, "right": 3210, "bottom": 5715, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717845f.jpg"} -{"rects": [{"solidity": 0.9964700624593841, "top": 660, "right": 2635, "bottom": 3500, "left": 575}, {"solidity": 0.991013493865044, "top": 645, "right": 5330, "bottom": 3495, "left": 3255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709562f.jpg"} -{"rects": [{"solidity": 0.996470123031322, "top": 2185, "right": 3175, "bottom": 3805, "left": 750}, {"solidity": 0.9967549713645538, "top": 385, "right": 3170, "bottom": 2005, "left": 750}, {"solidity": 0.9978790920571188, "top": 4020, "right": 3165, "bottom": 5630, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707051f.jpg"} -{"rects": [{"solidity": 0.9964702110676384, "top": 580, "right": 3490, "bottom": 2980, "left": 285}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718106f.jpg"} -{"rects": [{"solidity": 0.9964702252391238, "top": 360, "right": 3785, "bottom": 2745, "left": 785}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715887f.jpg"} -{"rects": [{"solidity": 0.9964703426243755, "top": 655, "right": 2660, "bottom": 2100, "left": 855}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734391f.jpg"} -{"rects": [{"solidity": 0.9964704461081852, "top": 2250, "right": 3120, "bottom": 3855, "left": 710}, {"solidity": 0.9956776833697635, "top": 405, "right": 3115, "bottom": 2000, "left": 705}, {"solidity": 0.9811916745747253, "top": 4120, "right": 3105, "bottom": 5695, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729894f.jpg"} -{"rects": [{"solidity": 0.9964704699336328, "top": 415, "right": 3170, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723839f.jpg"} -{"rects": [{"solidity": 0.996470936454088, "top": 445, "right": 3215, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/716671f.jpg"} -{"rects": [{"solidity": 0.9964710366212293, "top": 425, "right": 3290, "bottom": 2365, "left": 505}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707288f.jpg"} -{"rects": [{"solidity": 0.9964710987758528, "top": 680, "right": 2835, "bottom": 2130, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705338f.jpg"} -{"rects": [{"solidity": 0.9964713846861288, "top": 770, "right": 3920, "bottom": 3200, "left": 2290}, {"solidity": 0.9963506023782883, "top": 780, "right": 2055, "bottom": 3200, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720670f.jpg"} -{"rects": [{"solidity": 0.9964714308173354, "top": 2125, "right": 3135, "bottom": 3960, "left": 770}, {"solidity": 0.9939177871135914, "top": 3990, "right": 3090, "bottom": 5820, "left": 765}, {"solidity": 0.9970823259685184, "top": 305, "right": 3105, "bottom": 2120, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731114f.jpg"} -{"rects": [{"solidity": 0.996471543225232, "top": 2265, "right": 3215, "bottom": 3870, "left": 815}, {"solidity": 0.9968621763707378, "top": 470, "right": 3205, "bottom": 2065, "left": 810}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/732070f.jpg"} -{"rects": [{"solidity": 0.9964715503617342, "top": 1210, "right": 3955, "bottom": 5795, "left": 325}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711407f.jpg"} -{"rects": [{"solidity": 0.9964716316614823, "top": 430, "right": 3245, "bottom": 2050, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702786f.jpg"} -{"rects": [{"solidity": 0.9964717192757571, "top": 835, "right": 3900, "bottom": 3260, "left": 2280}, {"solidity": 0.9968384853118608, "top": 845, "right": 2050, "bottom": 3265, "left": 435}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733912f.jpg"} -{"rects": [{"solidity": 0.9964717544706327, "top": 415, "right": 3200, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/722506f.jpg"} -{"rects": [{"solidity": 0.9964717628665081, "top": 2210, "right": 3080, "bottom": 3840, "left": 650}, {"solidity": 0.9951934375774668, "top": 355, "right": 3120, "bottom": 2000, "left": 680}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/728491f.jpg"} -{"rects": [{"solidity": 0.9964720460674976, "top": 695, "right": 2585, "bottom": 2125, "left": 770}, {"solidity": 0.9980958239955472, "top": 2180, "right": 2590, "bottom": 3605, "left": 780}, {"solidity": 0.9947384076734399, "top": 680, "right": 5220, "bottom": 2125, "left": 3410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705224f.jpg"} -{"rects": [{"solidity": 0.9964720839416414, "top": 765, "right": 2065, "bottom": 3185, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723085f.jpg"} -{"rects": [{"solidity": 0.9964722819886159, "top": 415, "right": 3215, "bottom": 2060, "left": 780}, {"solidity": 0.9981159341345953, "top": 2265, "right": 3225, "bottom": 3885, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706685f.jpg"} -{"rects": [{"solidity": 0.9964723695625034, "top": 780, "right": 3875, "bottom": 3210, "left": 2250}, {"solidity": 0.9999517683336603, "top": 780, "right": 2070, "bottom": 3200, "left": 455}, {"solidity": 0.9975116841257051, "top": 800, "right": 5650, "bottom": 3225, "left": 4035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713747f.jpg"} -{"rects": [{"solidity": 0.9964724474629842, "top": 730, "right": 2100, "bottom": 3195, "left": 420}, {"solidity": 0.9959682732914578, "top": 780, "right": 3940, "bottom": 3235, "left": 2255}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720792f.jpg"} -{"rects": [{"solidity": 0.9964725442617057, "top": 690, "right": 2370, "bottom": 3115, "left": 740}, {"solidity": 0.9986641989217028, "top": 445, "right": 5245, "bottom": 2060, "left": 2825}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705179f.jpg"} -{"rects": [{"solidity": 0.9964728062120145, "top": 750, "right": 3935, "bottom": 3165, "left": 2320}, {"solidity": 0.9962906553175606, "top": 780, "right": 2040, "bottom": 3165, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713347f.jpg"} -{"rects": [{"solidity": 0.9964729006544373, "top": 770, "right": 5780, "bottom": 3195, "left": 4155}, {"solidity": 0.9965965972393909, "top": 750, "right": 3855, "bottom": 3180, "left": 2220}, {"solidity": 0.9999121777002917, "top": 765, "right": 1955, "bottom": 3180, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733544f.jpg"} -{"rects": [{"solidity": 0.9964729609914682, "top": 430, "right": 3105, "bottom": 2040, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728287f.jpg"} -{"rects": [{"solidity": 0.9964730038526499, "top": 600, "right": 2090, "bottom": 1810, "left": 170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715661f.jpg"} -{"rects": [{"solidity": 0.9964730657321523, "top": 395, "right": 3095, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729550f.jpg"} -{"rects": [{"solidity": 0.9964732673008913, "top": 760, "right": 2030, "bottom": 3165, "left": 425}, {"solidity": 0.9962677185409163, "top": 750, "right": 3880, "bottom": 3155, "left": 2270}, {"solidity": 0.9969645247327105, "top": 760, "right": 5735, "bottom": 3165, "left": 4140}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731259f.jpg"} -{"rects": [{"solidity": 0.9964733015151029, "top": 875, "right": 1995, "bottom": 3300, "left": 360}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714319f.jpg"} -{"rects": [{"solidity": 0.9964733415654355, "top": 465, "right": 3185, "bottom": 2085, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710617f.jpg"} -{"rects": [{"solidity": 0.9964734088060325, "top": 660, "right": 2730, "bottom": 2065, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727900f.jpg"} -{"rects": [{"solidity": 0.9964734901527512, "top": 775, "right": 2050, "bottom": 3200, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720693f.jpg"} -{"rects": [{"solidity": 0.99647356587492, "top": 2235, "right": 3195, "bottom": 3895, "left": 730}, {"solidity": 0.9973910137775036, "top": 4110, "right": 3155, "bottom": 5735, "left": 735}, {"solidity": 0.9972653922342293, "top": 405, "right": 3175, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734152f.jpg"} -{"rects": [{"solidity": 0.9964737697409287, "top": 375, "right": 3145, "bottom": 2030, "left": 695}, {"solidity": 0.9968804780125535, "top": 2115, "right": 3150, "bottom": 3770, "left": 705}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701129f.jpg"} -{"rects": [{"solidity": 0.9964739791833467, "top": 940, "right": 2065, "bottom": 3360, "left": 420}, {"solidity": 0.996470474471377, "top": 940, "right": 3895, "bottom": 3350, "left": 2265}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709330f.jpg"} -{"rects": [{"solidity": 0.9964741350309241, "top": 775, "right": 3810, "bottom": 3195, "left": 2175}, {"solidity": 0.996754050918382, "top": 760, "right": 1985, "bottom": 3175, "left": 370}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730454f.jpg"} -{"rects": [{"solidity": 0.9964742496148558, "top": 920, "right": 2590, "bottom": 3800, "left": 460}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509355.jpg"} -{"rects": [{"solidity": 0.9964744494979499, "top": 415, "right": 3095, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728476f.jpg"} -{"rects": [{"solidity": 0.9964744912486123, "top": 770, "right": 3855, "bottom": 3205, "left": 2220}, {"solidity": 0.9958803754299372, "top": 795, "right": 5660, "bottom": 3220, "left": 4050}, {"solidity": 0.9999119072089268, "top": 780, "right": 2030, "bottom": 3180, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732396f.jpg"} -{"rects": [{"solidity": 0.9964746341289958, "top": 2040, "right": 2665, "bottom": 3425, "left": 875}, {"solidity": 0.9958911066311691, "top": 620, "right": 5155, "bottom": 1995, "left": 3365}, {"solidity": 0.995983356677927, "top": 610, "right": 2675, "bottom": 1990, "left": 890}], "shape": {"h": 3860, "w": 6040}, "file": "/usr/local/google/home/danvk/milstein/728122f.jpg"} -{"rects": [{"solidity": 0.9964746359678445, "top": 390, "right": 3315, "bottom": 1990, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724985f.jpg"} -{"rects": [{"solidity": 0.9964752315327402, "top": 2515, "right": 3535, "bottom": 4315, "left": 845}, {"solidity": 0.9983398398465084, "top": 420, "right": 3525, "bottom": 2190, "left": 860}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711272f.jpg"} -{"rects": [{"solidity": 0.996475231574708, "top": 2260, "right": 3125, "bottom": 3875, "left": 700}, {"solidity": 0.9957530997860439, "top": 365, "right": 3135, "bottom": 1990, "left": 705}, {"solidity": 0.9957587273588026, "top": 4115, "right": 3110, "bottom": 5720, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728734f.jpg"} -{"rects": [{"solidity": 0.9964754359795485, "top": 845, "right": 2020, "bottom": 3265, "left": 400}, {"solidity": 0.9961023110964354, "top": 860, "right": 3865, "bottom": 3280, "left": 2250}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721698f.jpg"} -{"rects": [{"solidity": 0.9964755525657656, "top": 870, "right": 2030, "bottom": 3295, "left": 410}, {"solidity": 0.9965296962999584, "top": 865, "right": 3890, "bottom": 3280, "left": 2275}, {"solidity": 0.9973572167438964, "top": 865, "right": 5740, "bottom": 3285, "left": 4130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729132f.jpg"} -{"rects": [{"solidity": 0.9964756068880818, "top": 385, "right": 3150, "bottom": 1990, "left": 745}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718311f.jpg"} -{"rects": [{"solidity": 0.996475646052818, "top": 875, "right": 3405, "bottom": 2685, "left": 1925}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705774f.jpg"} -{"rects": [{"solidity": 0.9964756674204822, "top": 830, "right": 2075, "bottom": 3235, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722986f.jpg"} -{"rects": [{"solidity": 0.9964757737869029, "top": 750, "right": 2010, "bottom": 3170, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723376f.jpg"} -{"rects": [{"solidity": 0.9964760344993687, "top": 630, "right": 2685, "bottom": 2010, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706061f.jpg"} -{"rects": [{"solidity": 0.9964760825566087, "top": 450, "right": 3150, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729136f.jpg"} -{"rects": [{"solidity": 0.9964763050151872, "top": 410, "right": 3035, "bottom": 2025, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729494f.jpg"} -{"rects": [{"solidity": 0.9964763348710306, "top": 740, "right": 2020, "bottom": 3155, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732426f.jpg"} -{"rects": [{"solidity": 0.9964765616823704, "top": 880, "right": 3790, "bottom": 3315, "left": 2145}, {"solidity": 0.9953248089015638, "top": 870, "right": 1910, "bottom": 3255, "left": 320}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710384f.jpg"} -{"rects": [{"solidity": 0.9964767382790095, "top": 290, "right": 2100, "bottom": 1305, "left": 580}], "shape": {"h": 3945, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727144f.jpg"} -{"rects": [{"solidity": 0.9964767704395046, "top": 440, "right": 3375, "bottom": 2465, "left": 575}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717204f.jpg"} -{"rects": [{"solidity": 0.9964769778723267, "top": 735, "right": 3910, "bottom": 3140, "left": 2280}, {"solidity": 0.9973830648299479, "top": 755, "right": 5765, "bottom": 3160, "left": 4150}, {"solidity": 0.9967573568076031, "top": 730, "right": 2030, "bottom": 3135, "left": 415}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731706f.jpg"} -{"rects": [{"solidity": 0.9964770476757854, "top": 380, "right": 3245, "bottom": 1995, "left": 820}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/700969f.jpg"} -{"rects": [{"solidity": 0.9964771134542725, "top": 3175, "right": 3280, "bottom": 5200, "left": 450}, {"solidity": 0.9964961878791252, "top": 685, "right": 3290, "bottom": 2710, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729196f.jpg"} -{"rects": [{"solidity": 0.9964771156504377, "top": 755, "right": 3855, "bottom": 3175, "left": 2225}, {"solidity": 0.9967532153797095, "top": 750, "right": 2010, "bottom": 3165, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718567f.jpg"} -{"rects": [{"solidity": 0.9964772110558412, "top": 790, "right": 1975, "bottom": 3210, "left": 345}, {"solidity": 0.9961783726102775, "top": 790, "right": 3835, "bottom": 3200, "left": 2195}, {"solidity": 0.9979077542046403, "top": 795, "right": 5700, "bottom": 3205, "left": 4080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710399f.jpg"} -{"rects": [{"solidity": 0.9964772590179757, "top": 645, "right": 2805, "bottom": 2080, "left": 985}, {"solidity": 0.9969553038606747, "top": 2145, "right": 2800, "bottom": 3565, "left": 980}, {"solidity": 0.9944767713994315, "top": 2140, "right": 5180, "bottom": 3555, "left": 3365}, {"solidity": 0.9986025879474454, "top": 665, "right": 5185, "bottom": 2060, "left": 3370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705845f.jpg"} -{"rects": [{"solidity": 0.9964773350835476, "top": 3110, "right": 3325, "bottom": 5205, "left": 470}, {"solidity": 0.9950684238291088, "top": 865, "right": 3285, "bottom": 2765, "left": 490}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720498f.jpg"} -{"rects": [{"solidity": 0.9964773714556512, "top": 810, "right": 3920, "bottom": 3255, "left": 2265}, {"solidity": 0.9962025760042307, "top": 830, "right": 5780, "bottom": 3270, "left": 4125}, {"solidity": 0.9951890282296149, "top": 820, "right": 2035, "bottom": 3225, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720427f.jpg"} -{"rects": [{"solidity": 0.9964774250364112, "top": 670, "right": 2770, "bottom": 2090, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726022f.jpg"} -{"rects": [{"solidity": 0.996477563445611, "top": 1120, "right": 3345, "bottom": 2075, "left": 1600}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507825.jpg"} -{"rects": [{"solidity": 0.9964776772276517, "top": 805, "right": 4825, "bottom": 3295, "left": 1165}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717378f.jpg"} -{"rects": [{"solidity": 0.9964776912092592, "top": 655, "right": 2730, "bottom": 2050, "left": 915}, {"solidity": 0.9960243452452573, "top": 2100, "right": 5295, "bottom": 3510, "left": 3500}, {"solidity": 0.9967021255203201, "top": 2125, "right": 2720, "bottom": 3520, "left": 920}, {"solidity": 0.9963655533533726, "top": 655, "right": 5295, "bottom": 2035, "left": 3490}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703880f.jpg"} -{"rects": [{"solidity": 0.9964777405550483, "top": 790, "right": 3895, "bottom": 3210, "left": 2290}, {"solidity": 0.9932357926959727, "top": 795, "right": 2045, "bottom": 3205, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734593f.jpg"} -{"rects": [{"solidity": 0.9964777612353938, "top": 705, "right": 3895, "bottom": 3135, "left": 2275}, {"solidity": 0.9975813885869296, "top": 720, "right": 2015, "bottom": 3115, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727476f.jpg"} -{"rects": [{"solidity": 0.9964778210809402, "top": 755, "right": 3890, "bottom": 3190, "left": 2250}, {"solidity": 0.9969642743017831, "top": 765, "right": 5715, "bottom": 3190, "left": 4080}, {"solidity": 0.9972974278857769, "top": 750, "right": 2025, "bottom": 3170, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731637f.jpg"} -{"rects": [{"solidity": 0.9964778455171238, "top": 410, "right": 3340, "bottom": 2010, "left": 930}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725937f.jpg"} -{"rects": [{"solidity": 0.9964780139692255, "top": 790, "right": 3950, "bottom": 3185, "left": 2350}, {"solidity": 0.9866641147802074, "top": 765, "right": 2085, "bottom": 3160, "left": 500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733673f.jpg"} -{"rects": [{"solidity": 0.9964780176636239, "top": 345, "right": 3610, "bottom": 2160, "left": 890}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711285f.jpg"} -{"rects": [{"solidity": 0.9964780403807217, "top": 775, "right": 3140, "bottom": 2695, "left": 325}, {"solidity": 0.9947841951365806, "top": 3365, "right": 3115, "bottom": 5215, "left": 360}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728089f.jpg"} -{"rects": [{"solidity": 0.9964780974598237, "top": 790, "right": 2065, "bottom": 3205, "left": 450}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732354f.jpg"} -{"rects": [{"solidity": 0.9964781868094993, "top": 600, "right": 3290, "bottom": 2230, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701330f.jpg"} -{"rects": [{"solidity": 0.9964782337985784, "top": 715, "right": 3875, "bottom": 3130, "left": 2265}, {"solidity": 0.9965381967447359, "top": 725, "right": 2025, "bottom": 3140, "left": 415}, {"solidity": 0.9992542101303666, "top": 730, "right": 5745, "bottom": 3135, "left": 4140}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718137f.jpg"} -{"rects": [{"solidity": 0.9964783594213614, "top": 440, "right": 3040, "bottom": 2080, "left": 625}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707123f.jpg"} -{"rects": [{"solidity": 0.9964784988675136, "top": 2240, "right": 3160, "bottom": 3860, "left": 735}, {"solidity": 0.994689547742575, "top": 4070, "right": 3155, "bottom": 5695, "left": 720}, {"solidity": 0.9968197616119265, "top": 420, "right": 3160, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734518f.jpg"} -{"rects": [{"solidity": 0.9964785623902616, "top": 805, "right": 2035, "bottom": 3220, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729266f.jpg"} -{"rects": [{"solidity": 0.9964786506340958, "top": 2265, "right": 3120, "bottom": 3915, "left": 675}, {"solidity": 0.9960060619965166, "top": 405, "right": 3075, "bottom": 2025, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724432f.jpg"} -{"rects": [{"solidity": 0.996478702140962, "top": 785, "right": 2030, "bottom": 3200, "left": 420}, {"solidity": 0.9985886546041078, "top": 775, "right": 3885, "bottom": 3185, "left": 2280}, {"solidity": 0.9954442731737904, "top": 805, "right": 5745, "bottom": 3220, "left": 4125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733790f.jpg"} -{"rects": [{"solidity": 0.9964787032746371, "top": 515, "right": 3385, "bottom": 2435, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724630f.jpg"} -{"rects": [{"solidity": 0.9964788012940575, "top": 855, "right": 2070, "bottom": 3220, "left": 495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712971f.jpg"} -{"rects": [{"solidity": 0.9964788171374854, "top": 380, "right": 4310, "bottom": 2815, "left": 2665}, {"solidity": 0.9971085878778186, "top": 360, "right": 2310, "bottom": 2785, "left": 680}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707783f.jpg"} -{"rects": [{"solidity": 0.9964788194497487, "top": 540, "right": 4910, "bottom": 3570, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732181f.jpg"} -{"rects": [{"solidity": 0.996478821722061, "top": 660, "right": 3335, "bottom": 2580, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714480f.jpg"} -{"rects": [{"solidity": 0.9964788843990176, "top": 760, "right": 2060, "bottom": 3205, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706814f.jpg"} -{"rects": [{"solidity": 0.9964789527869847, "top": 360, "right": 3145, "bottom": 1990, "left": 720}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701900f.jpg"} -{"rects": [{"solidity": 0.9964789578099406, "top": 860, "right": 3205, "bottom": 2745, "left": 1810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702320f.jpg"} -{"rects": [{"solidity": 0.9964789642340294, "top": 770, "right": 2015, "bottom": 3195, "left": 385}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733939f.jpg"} -{"rects": [{"solidity": 0.9964789750476271, "top": 865, "right": 5770, "bottom": 3295, "left": 4155}, {"solidity": 0.9981596339931745, "top": 860, "right": 3895, "bottom": 3280, "left": 2285}, {"solidity": 0.9985419764966611, "top": 860, "right": 2015, "bottom": 3280, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729523f.jpg"} -{"rects": [{"solidity": 0.9964792746635193, "top": 775, "right": 2060, "bottom": 3155, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714256f.jpg"} -{"rects": [{"solidity": 0.9964792888263878, "top": 810, "right": 2685, "bottom": 3550, "left": 825}], "shape": {"h": 4430, "w": 6900}, "file": "/usr/local/google/home/danvk/milstein/710259f.jpg"} -{"rects": [{"solidity": 0.9964793473328313, "top": 380, "right": 2830, "bottom": 1800, "left": 1050}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721231f.jpg"} -{"rects": [{"solidity": 0.9964793483342799, "top": 835, "right": 3925, "bottom": 3295, "left": 2290}, {"solidity": 0.9961577828015343, "top": 850, "right": 2055, "bottom": 3280, "left": 415}, {"solidity": 0.9925577445272603, "top": 835, "right": 5420, "bottom": 1900, "left": 4335}, {"solidity": 0.9939330951607664, "top": 2090, "right": 5350, "bottom": 3085, "left": 4365}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721169f.jpg"} -{"rects": [{"solidity": 0.9964793907190469, "top": 450, "right": 3175, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720284f.jpg"} -{"rects": [{"solidity": 0.9964794044048485, "top": 2110, "right": 3335, "bottom": 4130, "left": 505}, {"solidity": 0.9959702750824336, "top": 360, "right": 3105, "bottom": 1970, "left": 690}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/728906f.jpg"} -{"rects": [{"solidity": 0.9964795130371582, "top": 425, "right": 3210, "bottom": 2060, "left": 805}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711145f.jpg"} -{"rects": [{"solidity": 0.9964795746639282, "top": 360, "right": 3860, "bottom": 2795, "left": 835}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716294f.jpg"} -{"rects": [{"solidity": 0.9964796048376031, "top": 3585, "right": 3520, "bottom": 5610, "left": 335}, {"solidity": 0.9970429736078485, "top": 1045, "right": 3570, "bottom": 3055, "left": 380}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/725142f.jpg"} -{"rects": [{"solidity": 0.9964796261956664, "top": 435, "right": 2690, "bottom": 2860, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700495f.jpg"} -{"rects": [{"solidity": 0.996479883683113, "top": 820, "right": 3810, "bottom": 3245, "left": 2175}, {"solidity": 0.9957540549095338, "top": 840, "right": 5680, "bottom": 3265, "left": 4045}, {"solidity": 0.9977643560736063, "top": 820, "right": 1945, "bottom": 3235, "left": 320}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720222f.jpg"} -{"rects": [{"solidity": 0.9964801670953642, "top": 715, "right": 2085, "bottom": 3130, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712441f.jpg"} -{"rects": [{"solidity": 0.9964802292776858, "top": 350, "right": 3340, "bottom": 2355, "left": 525}, {"solidity": 0.998625738505009, "top": 2525, "right": 3160, "bottom": 4145, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715465f.jpg"} -{"rects": [{"solidity": 0.996480303675369, "top": 425, "right": 3175, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715671f.jpg"} -{"rects": [{"solidity": 0.9964804951310813, "top": 2300, "right": 3190, "bottom": 3910, "left": 775}, {"solidity": 0.9952392875733874, "top": 455, "right": 3195, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710493f.jpg"} -{"rects": [{"solidity": 0.99648055184947, "top": 4155, "right": 3230, "bottom": 5790, "left": 815}, {"solidity": 0.9965809491645358, "top": 2260, "right": 3255, "bottom": 3885, "left": 825}, {"solidity": 0.9983050736966994, "top": 380, "right": 3255, "bottom": 1980, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704776f.jpg"} -{"rects": [{"solidity": 0.9964807016650044, "top": 430, "right": 4815, "bottom": 3650, "left": 2775}, {"solidity": 0.9963395410256763, "top": 460, "right": 2460, "bottom": 3665, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733062f.jpg"} -{"rects": [{"solidity": 0.99648070907195, "top": 825, "right": 6325, "bottom": 3520, "left": 4495}, {"solidity": 0.9987141053150314, "top": 825, "right": 2130, "bottom": 3510, "left": 305}, {"solidity": 0.9975173501902591, "top": 830, "right": 4210, "bottom": 3510, "left": 2390}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/710273f.jpg"} -{"rects": [{"solidity": 0.9964807500883024, "top": 795, "right": 2050, "bottom": 3220, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714798f.jpg"} -{"rects": [{"solidity": 0.9964807574378665, "top": 420, "right": 3175, "bottom": 3125, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720305f.jpg"} -{"rects": [{"solidity": 0.9964808655239291, "top": 430, "right": 3175, "bottom": 2035, "left": 760}, {"solidity": 0.9950235595602216, "top": 2265, "right": 3160, "bottom": 3860, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729547f.jpg"} -{"rects": [{"solidity": 0.9964808817131532, "top": 400, "right": 3185, "bottom": 2025, "left": 760}, {"solidity": 0.9946804084114842, "top": 2220, "right": 2830, "bottom": 3465, "left": 1200}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733381f.jpg"} -{"rects": [{"solidity": 0.996480962742233, "top": 3975, "right": 3230, "bottom": 5620, "left": 785}, {"solidity": 0.9988305929694609, "top": 2290, "right": 3210, "bottom": 3910, "left": 785}, {"solidity": 0.996111814400496, "top": 555, "right": 3195, "bottom": 2165, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733152f.jpg"} -{"rects": [{"solidity": 0.9964811706924368, "top": 880, "right": 2000, "bottom": 3285, "left": 385}, {"solidity": 0.9976473202323924, "top": 880, "right": 3840, "bottom": 3305, "left": 2245}, {"solidity": 0.9985703697603557, "top": 885, "right": 5680, "bottom": 3295, "left": 4095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729403f.jpg"} -{"rects": [{"solidity": 0.9964813194730342, "top": 385, "right": 3290, "bottom": 2015, "left": 870}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705915f.jpg"} -{"rects": [{"solidity": 0.9964814045262484, "top": 1040, "right": 3435, "bottom": 5035, "left": 320}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708541f.jpg"} -{"rects": [{"solidity": 0.9964815116468481, "top": 945, "right": 3255, "bottom": 5000, "left": 375}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708292f.jpg"} -{"rects": [{"solidity": 0.9964815435640889, "top": 715, "right": 3860, "bottom": 3115, "left": 2245}, {"solidity": 0.9971387087153032, "top": 715, "right": 5730, "bottom": 3110, "left": 4125}, {"solidity": 0.9967967862839439, "top": 725, "right": 2010, "bottom": 3120, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733352f.jpg"} -{"rects": [{"solidity": 0.9964818399912528, "top": 395, "right": 3090, "bottom": 2010, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700220f.jpg"} -{"rects": [{"solidity": 0.9964819237613561, "top": 590, "right": 1555, "bottom": 2390, "left": 355}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716471f.jpg"} -{"rects": [{"solidity": 0.9964819338260952, "top": 665, "right": 2495, "bottom": 3100, "left": 855}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704504f.jpg"} -{"rects": [{"solidity": 0.9964822032206657, "top": 690, "right": 2405, "bottom": 3090, "left": 795}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700284f.jpg"} -{"rects": [{"solidity": 0.9964822234160297, "top": 2260, "right": 3115, "bottom": 3870, "left": 690}, {"solidity": 0.9959184607887706, "top": 405, "right": 3105, "bottom": 2005, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729431f.jpg"} -{"rects": [{"solidity": 0.9964822919258598, "top": 690, "right": 4960, "bottom": 2125, "left": 3150}, {"solidity": 0.9967859353720441, "top": 690, "right": 2800, "bottom": 2090, "left": 980}, {"solidity": 0.995650429260028, "top": 2300, "right": 2800, "bottom": 3710, "left": 990}, {"solidity": 0.9958230811969204, "top": 2295, "right": 4970, "bottom": 3700, "left": 3150}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725315f.jpg"} -{"rects": [{"solidity": 0.9964828163212769, "top": 2065, "right": 3200, "bottom": 3690, "left": 790}, {"solidity": 0.9960033058278128, "top": 245, "right": 3185, "bottom": 1870, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719097f.jpg"} -{"rects": [{"solidity": 0.9964830350604468, "top": 400, "right": 3370, "bottom": 2030, "left": 950}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700275f.jpg"} -{"rects": [{"solidity": 0.9964831391004341, "top": 805, "right": 4010, "bottom": 3235, "left": 2365}, {"solidity": 0.9961123041438003, "top": 795, "right": 2085, "bottom": 3225, "left": 430}, {"solidity": 0.99613092935077, "top": 820, "right": 5825, "bottom": 3240, "left": 4205}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707976f.jpg"} -{"rects": [{"solidity": 0.9964832812514932, "top": 2180, "right": 2835, "bottom": 3620, "left": 1000}, {"solidity": 0.9964690849858081, "top": 610, "right": 2830, "bottom": 2020, "left": 995}, {"solidity": 0.9965973238809113, "top": 2170, "right": 5035, "bottom": 3580, "left": 3205}, {"solidity": 0.9953309475896389, "top": 600, "right": 5030, "bottom": 2000, "left": 3205}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727762f.jpg"} -{"rects": [{"solidity": 0.9964832964552394, "top": 995, "right": 5640, "bottom": 3435, "left": 4010}, {"solidity": 0.9946942745341334, "top": 980, "right": 3780, "bottom": 3410, "left": 2170}, {"solidity": 0.9930900460448031, "top": 975, "right": 1925, "bottom": 3405, "left": 280}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734165f.jpg"} -{"rects": [{"solidity": 0.9964836898366226, "top": 1195, "right": 3095, "bottom": 4630, "left": 410}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714849f.jpg"} -{"rects": [{"solidity": 0.9964837044269587, "top": 765, "right": 3850, "bottom": 3190, "left": 2220}, {"solidity": 0.9986872301840767, "top": 760, "right": 2010, "bottom": 3180, "left": 390}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732421f.jpg"} -{"rects": [{"solidity": 0.9964837074216285, "top": 470, "right": 3075, "bottom": 2110, "left": 635}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702542f.jpg"} -{"rects": [{"solidity": 0.9964837413510075, "top": 395, "right": 3165, "bottom": 2010, "left": 745}, {"solidity": 0.9980902208263368, "top": 2265, "right": 3165, "bottom": 3870, "left": 750}, {"solidity": 0.9964808430364925, "top": 4100, "right": 3160, "bottom": 5710, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730650f.jpg"} -{"rects": [{"solidity": 0.9964839049944678, "top": 795, "right": 2070, "bottom": 3215, "left": 450}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718232f.jpg"} -{"rects": [{"solidity": 0.9964841691813958, "top": 630, "right": 2715, "bottom": 2065, "left": 870}, {"solidity": 0.995812801961397, "top": 2085, "right": 2730, "bottom": 3525, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705302f.jpg"} -{"rects": [{"solidity": 0.9964841755585572, "top": 340, "right": 2985, "bottom": 1965, "left": 575}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702705f.jpg"} -{"rects": [{"solidity": 0.9964841836603161, "top": 830, "right": 2045, "bottom": 3250, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729039f.jpg"} -{"rects": [{"solidity": 0.9964841948870331, "top": 875, "right": 3895, "bottom": 3305, "left": 2245}, {"solidity": 0.9964328836840943, "top": 880, "right": 2010, "bottom": 3300, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709578f.jpg"} -{"rects": [{"solidity": 0.9964843255456113, "top": 445, "right": 3160, "bottom": 2065, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729265f.jpg"} -{"rects": [{"solidity": 0.9964843844060777, "top": 2285, "right": 2930, "bottom": 3865, "left": 935}, {"solidity": 0.9973713826039969, "top": 4180, "right": 2915, "bottom": 5725, "left": 905}, {"solidity": 0.9960744709620716, "top": 490, "right": 2935, "bottom": 2015, "left": 970}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718096f.jpg"} -{"rects": [{"solidity": 0.9964844239534071, "top": 825, "right": 2015, "bottom": 3220, "left": 420}, {"solidity": 0.9971201493550128, "top": 825, "right": 3840, "bottom": 3225, "left": 2255}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700330f.jpg"} -{"rects": [{"solidity": 0.9964846055558798, "top": 835, "right": 5650, "bottom": 3245, "left": 4030}, {"solidity": 0.9968403236135981, "top": 815, "right": 3785, "bottom": 3210, "left": 2170}, {"solidity": 0.9971977965692835, "top": 810, "right": 1955, "bottom": 3200, "left": 360}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719277f.jpg"} -{"rects": [{"solidity": 0.9964846076630555, "top": 575, "right": 2665, "bottom": 3645, "left": 685}, {"solidity": 0.9960979337007915, "top": 900, "right": 4465, "bottom": 3305, "left": 2850}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715722f.jpg"} -{"rects": [{"solidity": 0.9964846879547424, "top": 840, "right": 1930, "bottom": 3245, "left": 325}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722800f.jpg"} -{"rects": [{"solidity": 0.9964847909476953, "top": 1870, "right": 3190, "bottom": 3500, "left": 775}, {"solidity": 0.9967062987193315, "top": 3545, "right": 2795, "bottom": 5950, "left": 1170}, {"solidity": 0.9980273646561956, "top": 215, "right": 3190, "bottom": 1830, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710339f.jpg"} -{"rects": [{"solidity": 0.9964849310381557, "top": 650, "right": 2285, "bottom": 3070, "left": 655}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703379f.jpg"} -{"rects": [{"solidity": 0.9964849377340974, "top": 2255, "right": 3020, "bottom": 3890, "left": 595}, {"solidity": 0.9956502213382947, "top": 395, "right": 3055, "bottom": 2035, "left": 630}, {"solidity": 0.9954034992715223, "top": 4110, "right": 2990, "bottom": 5745, "left": 555}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731328f.jpg"} -{"rects": [{"solidity": 0.9964850812054565, "top": 470, "right": 3150, "bottom": 1920, "left": 820}, {"solidity": 0.9829832664144638, "top": 2125, "right": 3070, "bottom": 3370, "left": 875}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726577f.jpg"} -{"rects": [{"solidity": 0.9964851292694916, "top": 785, "right": 2130, "bottom": 3205, "left": 500}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718588f.jpg"} -{"rects": [{"solidity": 0.9964852284601501, "top": 840, "right": 3785, "bottom": 3280, "left": 2140}, {"solidity": 0.9964702424972469, "top": 830, "right": 1895, "bottom": 3255, "left": 285}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715191f.jpg"} -{"rects": [{"solidity": 0.9964853188840888, "top": 790, "right": 2020, "bottom": 3225, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724067f.jpg"} -{"rects": [{"solidity": 0.9964854475562878, "top": 675, "right": 2770, "bottom": 2085, "left": 975}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705633f.jpg"} -{"rects": [{"solidity": 0.996485506672788, "top": 4075, "right": 3320, "bottom": 5720, "left": 880}, {"solidity": 0.9961876451816335, "top": 2210, "right": 3340, "bottom": 3855, "left": 910}, {"solidity": 0.9971420451976671, "top": 395, "right": 3345, "bottom": 2020, "left": 935}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704756f.jpg"} -{"rects": [{"solidity": 0.9964855322430096, "top": 695, "right": 2515, "bottom": 2185, "left": 420}, {"solidity": 0.994357809904095, "top": 2410, "right": 2520, "bottom": 3895, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716227f.jpg"} -{"rects": [{"solidity": 0.9964855340355864, "top": 795, "right": 3220, "bottom": 2715, "left": 480}, {"solidity": 0.9962045110161163, "top": 3280, "right": 3190, "bottom": 5230, "left": 480}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715027f.jpg"} -{"rects": [{"solidity": 0.9964856414728028, "top": 715, "right": 3315, "bottom": 2630, "left": 585}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711066f.jpg"} -{"rects": [{"solidity": 0.9964856570272337, "top": 650, "right": 2730, "bottom": 2085, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706829f.jpg"} -{"rects": [{"solidity": 0.9964859437751004, "top": 495, "right": 3110, "bottom": 2095, "left": 710}, {"solidity": 0.9953224013432427, "top": 2315, "right": 3110, "bottom": 3915, "left": 715}, {"solidity": 0.9951326519046, "top": 4165, "right": 3090, "bottom": 5760, "left": 705}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731295f.jpg"} -{"rects": [{"solidity": 0.9964860898397159, "top": 430, "right": 3060, "bottom": 2055, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729138f.jpg"} -{"rects": [{"solidity": 0.9964861479917871, "top": 395, "right": 3125, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706877f.jpg"} -{"rects": [{"solidity": 0.9964862179886473, "top": 945, "right": 5715, "bottom": 3380, "left": 4075}, {"solidity": 0.9964324178782983, "top": 915, "right": 2015, "bottom": 3340, "left": 390}, {"solidity": 0.9960303972809184, "top": 925, "right": 3860, "bottom": 3345, "left": 2225}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701074f.jpg"} -{"rects": [{"solidity": 0.9964862445006989, "top": 840, "right": 3845, "bottom": 3255, "left": 2225}, {"solidity": 0.9964464618626895, "top": 835, "right": 5680, "bottom": 3245, "left": 4065}, {"solidity": 0.9959640512038204, "top": 835, "right": 2000, "bottom": 3235, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731541f.jpg"} -{"rects": [{"solidity": 0.9964864434446788, "top": 800, "right": 2030, "bottom": 3190, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732543f.jpg"} -{"rects": [{"solidity": 0.996486580966885, "top": 595, "right": 4940, "bottom": 3635, "left": 1175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709918f.jpg"} -{"rects": [{"solidity": 0.9964866023088976, "top": 810, "right": 2080, "bottom": 3220, "left": 480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711846f.jpg"} -{"rects": [{"solidity": 0.9964866319066348, "top": 790, "right": 2045, "bottom": 3220, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708105f.jpg"} -{"rects": [{"solidity": 0.9964866556794808, "top": 2215, "right": 3185, "bottom": 3855, "left": 755}, {"solidity": 0.9971445804779138, "top": 390, "right": 3190, "bottom": 2015, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720512f.jpg"} -{"rects": [{"solidity": 0.9964867934791304, "top": 785, "right": 3795, "bottom": 3200, "left": 2160}, {"solidity": 0.9965130312815996, "top": 805, "right": 5660, "bottom": 3200, "left": 4045}, {"solidity": 0.9971494960073308, "top": 790, "right": 1915, "bottom": 3195, "left": 315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712467f.jpg"} -{"rects": [{"solidity": 0.9964869686177783, "top": 420, "right": 3030, "bottom": 2050, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728692f.jpg"} -{"rects": [{"solidity": 0.9964871840657111, "top": 775, "right": 2025, "bottom": 3200, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713713f.jpg"} -{"rects": [{"solidity": 0.9964872295266449, "top": 455, "right": 5085, "bottom": 3705, "left": 975}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734541f.jpg"} -{"rects": [{"solidity": 0.9964873064026825, "top": 2200, "right": 3205, "bottom": 3830, "left": 780}, {"solidity": 0.9961580417209158, "top": 4095, "right": 3190, "bottom": 5725, "left": 760}, {"solidity": 0.9956419172992743, "top": 325, "right": 3235, "bottom": 1955, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730861f.jpg"} -{"rects": [{"solidity": 0.9964873209011575, "top": 1415, "right": 3405, "bottom": 5075, "left": 530}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733397f.jpg"} -{"rects": [{"solidity": 0.9964873623672222, "top": 540, "right": 5130, "bottom": 3765, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727367f.jpg"} -{"rects": [{"solidity": 0.9964874416467869, "top": 1995, "right": 3365, "bottom": 3905, "left": 605}, {"solidity": 0.9982377344702371, "top": 4110, "right": 3195, "bottom": 5725, "left": 785}, {"solidity": 0.9971614935210118, "top": 370, "right": 1990, "bottom": 1795, "left": 165}, {"solidity": 0.9953090154059111, "top": 370, "right": 3820, "bottom": 1760, "left": 2030}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703149f.jpg"} -{"rects": [{"solidity": 0.9964875893754395, "top": 2320, "right": 3245, "bottom": 3945, "left": 825}, {"solidity": 0.997385183573106, "top": 450, "right": 3240, "bottom": 2060, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734181f.jpg"} -{"rects": [{"solidity": 0.9964876165969765, "top": 890, "right": 5705, "bottom": 3315, "left": 4085}, {"solidity": 0.9971158736392138, "top": 890, "right": 3875, "bottom": 3305, "left": 2255}, {"solidity": 0.9943286861894955, "top": 905, "right": 2050, "bottom": 3325, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711768f.jpg"} -{"rects": [{"solidity": 0.9964877652317785, "top": 270, "right": 3290, "bottom": 2280, "left": 480}, {"solidity": 0.9947831768068599, "top": 4215, "right": 3090, "bottom": 5830, "left": 670}, {"solidity": 0.9959013144857652, "top": 2435, "right": 3090, "bottom": 4025, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729252f.jpg"} -{"rects": [{"solidity": 0.9964878571203578, "top": 1635, "right": 2400, "bottom": 2705, "left": 900}, {"solidity": 0.9961444470129784, "top": 390, "right": 2385, "bottom": 1460, "left": 950}, {"solidity": 0.9973956021190328, "top": 1625, "right": 3615, "bottom": 2690, "left": 2810}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517183.jpg"} -{"rects": [{"solidity": 0.9964881114778446, "top": 555, "right": 5240, "bottom": 3580, "left": 3210}, {"solidity": 0.9991041098958527, "top": 550, "right": 2700, "bottom": 3570, "left": 695}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715694f.jpg"} -{"rects": [{"solidity": 0.9964881219691071, "top": 445, "right": 3190, "bottom": 2065, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719506f.jpg"} -{"rects": [{"solidity": 0.9964881538550657, "top": 645, "right": 2700, "bottom": 3525, "left": 885}, {"solidity": 0.997286605344271, "top": 635, "right": 5145, "bottom": 2075, "left": 3340}, {"solidity": 0.995370209210847, "top": 2085, "right": 5125, "bottom": 3510, "left": 3340}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704351f.jpg"} -{"rects": [{"solidity": 0.9964881791651637, "top": 2320, "right": 3310, "bottom": 3930, "left": 895}, {"solidity": 0.996610068788867, "top": 440, "right": 3310, "bottom": 2045, "left": 910}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733260f.jpg"} -{"rects": [{"solidity": 0.9964884251711771, "top": 415, "right": 3195, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704198f.jpg"} -{"rects": [{"solidity": 0.9964885731225167, "top": 830, "right": 3995, "bottom": 3230, "left": 2390}, {"solidity": 0.995459622362186, "top": 840, "right": 2110, "bottom": 3235, "left": 515}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716904f.jpg"} -{"rects": [{"solidity": 0.9964886541471049, "top": 795, "right": 2040, "bottom": 3205, "left": 430}, {"solidity": 0.9988323887489504, "top": 790, "right": 3890, "bottom": 3195, "left": 2295}, {"solidity": 0.9960520044049244, "top": 785, "right": 5725, "bottom": 3195, "left": 4135}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724555f.jpg"} -{"rects": [{"solidity": 0.9964887361655764, "top": 2715, "right": 2405, "bottom": 4135, "left": 380}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509393.jpg"} -{"rects": [{"solidity": 0.9964887435158689, "top": 2195, "right": 3220, "bottom": 3810, "left": 810}, {"solidity": 0.9958718448751298, "top": 4005, "right": 3225, "bottom": 5620, "left": 820}, {"solidity": 0.9973690125203274, "top": 405, "right": 3195, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723731f.jpg"} -{"rects": [{"solidity": 0.9964888519444507, "top": 420, "right": 3130, "bottom": 2045, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728529f.jpg"} -{"rects": [{"solidity": 0.9964888736824972, "top": 455, "right": 3180, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734783f.jpg"} -{"rects": [{"solidity": 0.9964889809999485, "top": 400, "right": 3090, "bottom": 2020, "left": 670}, {"solidity": 0.9942152642382359, "top": 2245, "right": 3090, "bottom": 3875, "left": 660}, {"solidity": 0.995547990470572, "top": 4105, "right": 3070, "bottom": 5730, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724326f.jpg"} -{"rects": [{"solidity": 0.996488995406947, "top": 785, "right": 3860, "bottom": 3200, "left": 2245}, {"solidity": 0.9972118718625472, "top": 785, "right": 5705, "bottom": 3205, "left": 4095}, {"solidity": 0.9969243773977502, "top": 785, "right": 2035, "bottom": 3195, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722536f.jpg"} -{"rects": [{"solidity": 0.9964890568004169, "top": 425, "right": 3070, "bottom": 2030, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729727f.jpg"} -{"rects": [{"solidity": 0.996489188185327, "top": 4125, "right": 3170, "bottom": 5740, "left": 755}, {"solidity": 0.9969689315483709, "top": 430, "right": 3170, "bottom": 2045, "left": 760}, {"solidity": 0.9961131180632222, "top": 2280, "right": 3170, "bottom": 3885, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720433f.jpg"} -{"rects": [{"solidity": 0.9964892355523792, "top": 630, "right": 5085, "bottom": 3450, "left": 1165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716995f.jpg"} -{"rects": [{"solidity": 0.9964895040697186, "top": 425, "right": 3165, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/705041f.jpg"} -{"rects": [{"solidity": 0.9964895123760706, "top": 355, "right": 2700, "bottom": 3415, "left": 200}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508351.jpg"} -{"rects": [{"solidity": 0.9964895844287449, "top": 1025, "right": 5765, "bottom": 3090, "left": 2520}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702507f.jpg"} -{"rects": [{"solidity": 0.9964896354445592, "top": 800, "right": 2095, "bottom": 3205, "left": 490}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718989f.jpg"} -{"rects": [{"solidity": 0.9964896926644479, "top": 390, "right": 3250, "bottom": 2020, "left": 815}, {"solidity": 0.9989534831301481, "top": 2240, "right": 3245, "bottom": 3860, "left": 835}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726455f.jpg"} -{"rects": [{"solidity": 0.9964896961399299, "top": 445, "right": 5030, "bottom": 3685, "left": 1035}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708203f.jpg"} -{"rects": [{"solidity": 0.996489983930047, "top": 395, "right": 3255, "bottom": 2000, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725899f.jpg"} -{"rects": [{"solidity": 0.9964900808723832, "top": 730, "right": 2080, "bottom": 3160, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717532f.jpg"} -{"rects": [{"solidity": 0.9964901906551327, "top": 930, "right": 5720, "bottom": 3370, "left": 4090}, {"solidity": 0.9964886407528354, "top": 925, "right": 3880, "bottom": 3355, "left": 2245}, {"solidity": 0.9919673735725938, "top": 910, "right": 2015, "bottom": 3330, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701550f.jpg"} -{"rects": [{"solidity": 0.996490611545744, "top": 500, "right": 5055, "bottom": 3750, "left": 1005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710638f.jpg"} -{"rects": [{"solidity": 0.9964906907596698, "top": 785, "right": 3805, "bottom": 3220, "left": 2175}, {"solidity": 0.9977605351515425, "top": 790, "right": 1955, "bottom": 3210, "left": 340}, {"solidity": 0.9951202791368489, "top": 790, "right": 5655, "bottom": 3200, "left": 4020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732407f.jpg"} -{"rects": [{"solidity": 0.9964907691972362, "top": 415, "right": 3180, "bottom": 2105, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723504f.jpg"} -{"rects": [{"solidity": 0.9964907701593595, "top": 400, "right": 5195, "bottom": 3615, "left": 1120}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732714f.jpg"} -{"rects": [{"solidity": 0.9964908168985536, "top": 815, "right": 2080, "bottom": 3250, "left": 435}, {"solidity": 0.9943350013252392, "top": 835, "right": 3970, "bottom": 3255, "left": 2310}, {"solidity": 0.9971936870832367, "top": 855, "right": 5780, "bottom": 3280, "left": 4160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728314f.jpg"} -{"rects": [{"solidity": 0.9964909758615732, "top": 795, "right": 2030, "bottom": 3200, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723225f.jpg"} -{"rects": [{"solidity": 0.9964910592574774, "top": 825, "right": 4400, "bottom": 3250, "left": 2775}, {"solidity": 0.9964531200313104, "top": 1160, "right": 5835, "bottom": 2990, "left": 4425}, {"solidity": 0.9975837269715181, "top": 590, "right": 2645, "bottom": 1935, "left": 835}, {"solidity": 0.9986222802172792, "top": 1985, "right": 2550, "bottom": 3255, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707106f.jpg"} -{"rects": [{"solidity": 0.9964913335939771, "top": 805, "right": 2155, "bottom": 3190, "left": 570}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708617f.jpg"} -{"rects": [{"solidity": 0.9964914986312989, "top": 355, "right": 2995, "bottom": 1985, "left": 575}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702405f.jpg"} -{"rects": [{"solidity": 0.9964916802242232, "top": 1975, "right": 5615, "bottom": 3610, "left": 3215}, {"solidity": 0.9955645741445432, "top": 450, "right": 2520, "bottom": 1865, "left": 720}, {"solidity": 0.9953703473482682, "top": 2200, "right": 2525, "bottom": 3605, "left": 715}, {"solidity": 0.9952255670882425, "top": 435, "right": 5355, "bottom": 1845, "left": 3550}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720187f.jpg"} -{"rects": [{"solidity": 0.9964917156285277, "top": 1230, "right": 3345, "bottom": 4905, "left": 530}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732352f.jpg"} -{"rects": [{"solidity": 0.9964917771952476, "top": 435, "right": 3020, "bottom": 2045, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729366f.jpg"} -{"rects": [{"solidity": 0.9964918560945051, "top": 435, "right": 3175, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718737f.jpg"} -{"rects": [{"solidity": 0.996491868824728, "top": 775, "right": 2065, "bottom": 3205, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715124f.jpg"} -{"rects": [{"solidity": 0.996492274824734, "top": 2055, "right": 2525, "bottom": 3485, "left": 690}, {"solidity": 0.9972477197116383, "top": 2045, "right": 5195, "bottom": 3475, "left": 3365}, {"solidity": 0.992464440827804, "top": 610, "right": 2500, "bottom": 2045, "left": 660}, {"solidity": 0.9966799895261574, "top": 595, "right": 5205, "bottom": 2005, "left": 3395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702748f.jpg"} -{"rects": [{"solidity": 0.9964923130441504, "top": 390, "right": 3125, "bottom": 2030, "left": 710}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709363f.jpg"} -{"rects": [{"solidity": 0.9964923805584617, "top": 615, "right": 2505, "bottom": 2100, "left": 405}, {"solidity": 0.9957696207665788, "top": 2475, "right": 2490, "bottom": 3965, "left": 385}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716022f.jpg"} -{"rects": [{"solidity": 0.9964924269828287, "top": 320, "right": 5180, "bottom": 3540, "left": 1085}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725499f.jpg"} -{"rects": [{"solidity": 0.9964925135393438, "top": 395, "right": 3085, "bottom": 2025, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729491f.jpg"} -{"rects": [{"solidity": 0.996492576441968, "top": 2240, "right": 3200, "bottom": 3850, "left": 795}, {"solidity": 0.9966795756861424, "top": 415, "right": 3180, "bottom": 1990, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724656f.jpg"} -{"rects": [{"solidity": 0.9964927006205222, "top": 545, "right": 3135, "bottom": 2140, "left": 750}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723676f.jpg"} -{"rects": [{"solidity": 0.9964927266138635, "top": 2225, "right": 3240, "bottom": 3840, "left": 825}, {"solidity": 0.9964040228167513, "top": 420, "right": 3230, "bottom": 2035, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715117f.jpg"} -{"rects": [{"solidity": 0.9964927577725433, "top": 425, "right": 3145, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728635f.jpg"} -{"rects": [{"solidity": 0.9964927932558192, "top": 400, "right": 3210, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711798f.jpg"} -{"rects": [{"solidity": 0.9964928336266936, "top": 820, "right": 4775, "bottom": 3370, "left": 1400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701883f.jpg"} -{"rects": [{"solidity": 0.9964929546661668, "top": 815, "right": 2225, "bottom": 3510, "left": 430}], "shape": {"h": 4410, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711679f.jpg"} -{"rects": [{"solidity": 0.9964930369708771, "top": 805, "right": 2045, "bottom": 3215, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714908f.jpg"} -{"rects": [{"solidity": 0.9964931398286195, "top": 420, "right": 2620, "bottom": 2810, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706887f.jpg"} -{"rects": [{"solidity": 0.996493256137609, "top": 770, "right": 2035, "bottom": 3190, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714992f.jpg"} -{"rects": [{"solidity": 0.9964932986824336, "top": 1105, "right": 3405, "bottom": 4910, "left": 490}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724472f.jpg"} -{"rects": [{"solidity": 0.9964933615151252, "top": 825, "right": 1970, "bottom": 3240, "left": 345}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718704f.jpg"} -{"rects": [{"solidity": 0.9964934003376009, "top": 660, "right": 2745, "bottom": 2100, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726208f.jpg"} -{"rects": [{"solidity": 0.9964936768181466, "top": 445, "right": 3190, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710168f.jpg"} -{"rects": [{"solidity": 0.996494083562558, "top": 2385, "right": 3250, "bottom": 3995, "left": 845}, {"solidity": 0.9907370291685039, "top": 475, "right": 3220, "bottom": 2075, "left": 845}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711432f.jpg"} -{"rects": [{"solidity": 0.9964942540129392, "top": 845, "right": 2040, "bottom": 3240, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709420f.jpg"} -{"rects": [{"solidity": 0.9964942575547773, "top": 455, "right": 3185, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723313f.jpg"} -{"rects": [{"solidity": 0.9964943176946264, "top": 765, "right": 3795, "bottom": 3155, "left": 2190}, {"solidity": 0.995750170752068, "top": 765, "right": 1980, "bottom": 3160, "left": 380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730306f.jpg"} -{"rects": [{"solidity": 0.9964943313273474, "top": 2225, "right": 3080, "bottom": 3850, "left": 650}, {"solidity": 0.9991405479736392, "top": 405, "right": 3080, "bottom": 2010, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721693f.jpg"} -{"rects": [{"solidity": 0.9964944328176284, "top": 770, "right": 2015, "bottom": 3170, "left": 415}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721535f.jpg"} -{"rects": [{"solidity": 0.9964944922647061, "top": 495, "right": 2975, "bottom": 2130, "left": 560}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707328f.jpg"} -{"rects": [{"solidity": 0.996494596858211, "top": 485, "right": 2190, "bottom": 2580, "left": 715}, {"solidity": 0.9982031173253872, "top": 505, "right": 3900, "bottom": 2595, "left": 2425}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716246f.jpg"} -{"rects": [{"solidity": 0.9964946250272951, "top": 765, "right": 3820, "bottom": 2820, "left": 610}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733052f.jpg"} -{"rects": [{"solidity": 0.9964946509283648, "top": 755, "right": 2425, "bottom": 3160, "left": 805}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719863f.jpg"} -{"rects": [{"solidity": 0.9964947128585616, "top": 2220, "right": 3210, "bottom": 3850, "left": 825}, {"solidity": 0.995730425430288, "top": 340, "right": 3220, "bottom": 1970, "left": 830}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720180f.jpg"} -{"rects": [{"solidity": 0.9964947791164659, "top": 775, "right": 3915, "bottom": 3200, "left": 2295}, {"solidity": 0.9962672554453395, "top": 780, "right": 2045, "bottom": 3190, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730557f.jpg"} -{"rects": [{"solidity": 0.9964951763392705, "top": 700, "right": 2525, "bottom": 3450, "left": 490}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713810f.jpg"} -{"rects": [{"solidity": 0.996495210657132, "top": 400, "right": 3105, "bottom": 2025, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729158f.jpg"} -{"rects": [{"solidity": 0.9964952590531051, "top": 370, "right": 3015, "bottom": 1995, "left": 605}, {"solidity": 0.9953326989428984, "top": 2240, "right": 3005, "bottom": 3860, "left": 605}, {"solidity": 0.9957682069483311, "top": 4110, "right": 3005, "bottom": 5730, "left": 600}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733547f.jpg"} -{"rects": [{"solidity": 0.9964954301922471, "top": 840, "right": 5810, "bottom": 3295, "left": 4150}, {"solidity": 0.9977729770943864, "top": 790, "right": 3925, "bottom": 3225, "left": 2295}, {"solidity": 0.9987277597703574, "top": 805, "right": 2050, "bottom": 3235, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702044f.jpg"} -{"rects": [{"solidity": 0.9964954316018145, "top": 2225, "right": 3165, "bottom": 3860, "left": 730}, {"solidity": 0.9975798179253751, "top": 400, "right": 3165, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715615f.jpg"} -{"rects": [{"solidity": 0.9964954911701401, "top": 405, "right": 3195, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718827f.jpg"} -{"rects": [{"solidity": 0.9964955642570575, "top": 1120, "right": 3490, "bottom": 5005, "left": 390}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721258f.jpg"} -{"rects": [{"solidity": 0.9964956788581166, "top": 430, "right": 3175, "bottom": 2045, "left": 740}, {"solidity": 0.992855741932165, "top": 2275, "right": 3175, "bottom": 3895, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702143f.jpg"} -{"rects": [{"solidity": 0.996495857426793, "top": 680, "right": 2715, "bottom": 3805, "left": 335}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507779.jpg"} -{"rects": [{"solidity": 0.9964958627288355, "top": 575, "right": 4885, "bottom": 3515, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709813f.jpg"} -{"rects": [{"solidity": 0.9964959579677368, "top": 610, "right": 2490, "bottom": 2095, "left": 390}, {"solidity": 0.9990036749693753, "top": 2490, "right": 2475, "bottom": 3965, "left": 385}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716041f.jpg"} -{"rects": [{"solidity": 0.9964959793891486, "top": 505, "right": 2875, "bottom": 2055, "left": 1025}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722046f.jpg"} -{"rects": [{"solidity": 0.9964960742424036, "top": 1040, "right": 3510, "bottom": 5100, "left": 260}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/719081f.jpg"} -{"rects": [{"solidity": 0.9964961641872482, "top": 345, "right": 3240, "bottom": 1945, "left": 835}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700446f.jpg"} -{"rects": [{"solidity": 0.996496331464845, "top": 785, "right": 3390, "bottom": 2845, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707966f.jpg"} -{"rects": [{"solidity": 0.9964963381082164, "top": 460, "right": 3120, "bottom": 2080, "left": 705}, {"solidity": 0.9907549287839275, "top": 2390, "right": 2945, "bottom": 3955, "left": 1025}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724101f.jpg"} -{"rects": [{"solidity": 0.9964963993512582, "top": 425, "right": 3080, "bottom": 2020, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729711f.jpg"} -{"rects": [{"solidity": 0.9964964529406266, "top": 860, "right": 2030, "bottom": 3275, "left": 400}, {"solidity": 0.9969324260044848, "top": 865, "right": 3835, "bottom": 3275, "left": 2220}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712721f.jpg"} -{"rects": [{"solidity": 0.9964964900675012, "top": 730, "right": 3910, "bottom": 3155, "left": 2275}, {"solidity": 0.9960592625053166, "top": 755, "right": 5765, "bottom": 3175, "left": 4140}, {"solidity": 0.9976192860442354, "top": 715, "right": 2020, "bottom": 3125, "left": 400}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731157f.jpg"} -{"rects": [{"solidity": 0.9964965238194634, "top": 700, "right": 3940, "bottom": 3140, "left": 2325}, {"solidity": 0.9962985174724163, "top": 715, "right": 2055, "bottom": 3135, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733251f.jpg"} -{"rects": [{"solidity": 0.9964965366036599, "top": 410, "right": 3175, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705128f.jpg"} -{"rects": [{"solidity": 0.9964965861250484, "top": 815, "right": 2050, "bottom": 3225, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720452f.jpg"} -{"rects": [{"solidity": 0.9964966346612326, "top": 545, "right": 2890, "bottom": 1945, "left": 1090}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703169f.jpg"} -{"rects": [{"solidity": 0.9964966888058714, "top": 805, "right": 3810, "bottom": 3220, "left": 2190}, {"solidity": 0.9963867414742612, "top": 795, "right": 2000, "bottom": 3215, "left": 385}, {"solidity": 0.9957409787957877, "top": 815, "right": 5630, "bottom": 3230, "left": 4015}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720114f.jpg"} -{"rects": [{"solidity": 0.9964967210454472, "top": 2270, "right": 3170, "bottom": 3910, "left": 740}, {"solidity": 0.9975563117809108, "top": 4135, "right": 3135, "bottom": 5750, "left": 725}, {"solidity": 0.9965901893281787, "top": 445, "right": 3175, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729770f.jpg"} -{"rects": [{"solidity": 0.9964968541401606, "top": 620, "right": 2930, "bottom": 2420, "left": 1720}, {"solidity": 0.9950251069369537, "top": 610, "right": 1600, "bottom": 2415, "left": 395}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716509f.jpg"} -{"rects": [{"solidity": 0.99649685668181, "top": 790, "right": 3870, "bottom": 3230, "left": 2230}, {"solidity": 0.9937471971298609, "top": 785, "right": 2020, "bottom": 3215, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700340f.jpg"} -{"rects": [{"solidity": 0.9964968752788455, "top": 710, "right": 2075, "bottom": 3105, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718452f.jpg"} -{"rects": [{"solidity": 0.9964969277491348, "top": 590, "right": 2265, "bottom": 3365, "left": 330}, {"solidity": 0.9985409290163563, "top": 770, "right": 4080, "bottom": 3195, "left": 2455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722435f.jpg"} -{"rects": [{"solidity": 0.9964975421630896, "top": 815, "right": 2005, "bottom": 3240, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705403f.jpg"} -{"rects": [{"solidity": 0.9964978014691208, "top": 405, "right": 3190, "bottom": 2025, "left": 765}, {"solidity": 0.9963433711380524, "top": 2330, "right": 2830, "bottom": 3740, "left": 995}, {"solidity": 0.9976379380473295, "top": 4025, "right": 2835, "bottom": 5430, "left": 1005}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706783f.jpg"} -{"rects": [{"solidity": 0.9964978156479041, "top": 780, "right": 3860, "bottom": 3180, "left": 2260}, {"solidity": 0.9952226476054137, "top": 780, "right": 5695, "bottom": 3180, "left": 4095}, {"solidity": 0.9967699150081825, "top": 785, "right": 2025, "bottom": 3180, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722883f.jpg"} -{"rects": [{"solidity": 0.9964981575719831, "top": 860, "right": 4760, "bottom": 3425, "left": 1170}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713405f.jpg"} -{"rects": [{"solidity": 0.9964982029833657, "top": 865, "right": 3905, "bottom": 3295, "left": 2265}, {"solidity": 0.9968398163164046, "top": 880, "right": 2015, "bottom": 3275, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718870f.jpg"} -{"rects": [{"solidity": 0.9964982524965539, "top": 850, "right": 2030, "bottom": 3220, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717549f.jpg"} -{"rects": [{"solidity": 0.9964982991277992, "top": 2280, "right": 3280, "bottom": 3910, "left": 875}, {"solidity": 0.9981151351735822, "top": 405, "right": 3245, "bottom": 2025, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707906f.jpg"} -{"rects": [{"solidity": 0.9964983208894396, "top": 775, "right": 2030, "bottom": 3180, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712353f.jpg"} -{"rects": [{"solidity": 0.9964984781371409, "top": 540, "right": 3355, "bottom": 2570, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720720f.jpg"} -{"rects": [{"solidity": 0.9964985926034395, "top": 795, "right": 2005, "bottom": 3205, "left": 380}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715562f.jpg"} -{"rects": [{"solidity": 0.9964987031041829, "top": 410, "right": 3175, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706998f.jpg"} -{"rects": [{"solidity": 0.9964987243037162, "top": 830, "right": 2060, "bottom": 3240, "left": 430}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711124f.jpg"} -{"rects": [{"solidity": 0.9964987782908598, "top": 460, "right": 5065, "bottom": 3675, "left": 1075}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709100f.jpg"} -{"rects": [{"solidity": 0.9964987906686432, "top": 675, "right": 2840, "bottom": 2095, "left": 1015}, {"solidity": 0.9973773077965935, "top": 2305, "right": 2800, "bottom": 3725, "left": 1000}, {"solidity": 0.9947313428422163, "top": 2305, "right": 5105, "bottom": 3720, "left": 3290}, {"solidity": 0.9951942011356442, "top": 660, "right": 5090, "bottom": 2070, "left": 3280}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725317f.jpg"} -{"rects": [{"solidity": 0.9964988249699467, "top": 725, "right": 3990, "bottom": 3155, "left": 2355}, {"solidity": 0.9984443071565072, "top": 710, "right": 2055, "bottom": 3130, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703642f.jpg"} -{"rects": [{"solidity": 0.9964989026035479, "top": 710, "right": 2405, "bottom": 3315, "left": 470}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704598f.jpg"} -{"rects": [{"solidity": 0.9964989467664855, "top": 370, "right": 2380, "bottom": 1575, "left": 580}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/710771f.jpg"} -{"rects": [{"solidity": 0.9964989918900291, "top": 4085, "right": 3055, "bottom": 5715, "left": 640}, {"solidity": 0.998498023204734, "top": 2245, "right": 3050, "bottom": 3865, "left": 645}, {"solidity": 0.9971945360094144, "top": 410, "right": 3050, "bottom": 2015, "left": 635}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723973f.jpg"} -{"rects": [{"solidity": 0.9964989994861795, "top": 870, "right": 3865, "bottom": 3295, "left": 2230}, {"solidity": 0.9964752883562085, "top": 855, "right": 2010, "bottom": 3280, "left": 385}, {"solidity": 0.9963279027670029, "top": 885, "right": 5690, "bottom": 3305, "left": 4070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718753f.jpg"} -{"rects": [{"solidity": 0.9964990482693318, "top": 460, "right": 3165, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713612f.jpg"} -{"rects": [{"solidity": 0.9964990784388383, "top": 835, "right": 2060, "bottom": 3210, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714698f.jpg"} -{"rects": [{"solidity": 0.9964992293901174, "top": 815, "right": 3940, "bottom": 3270, "left": 2270}, {"solidity": 0.9967651396222825, "top": 780, "right": 2070, "bottom": 3220, "left": 420}, {"solidity": 0.9961973806999612, "top": 850, "right": 5790, "bottom": 3285, "left": 4150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705607f.jpg"} -{"rects": [{"solidity": 0.9964992588085891, "top": 665, "right": 2615, "bottom": 2100, "left": 795}, {"solidity": 0.9961490359562272, "top": 2125, "right": 2580, "bottom": 3480, "left": 790}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725453f.jpg"} -{"rects": [{"solidity": 0.9964993976236171, "top": 410, "right": 3050, "bottom": 2020, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730390f.jpg"} -{"rects": [{"solidity": 0.9964994679733512, "top": 470, "right": 3130, "bottom": 2040, "left": 765}, {"solidity": 1.0, "top": 5040, "right": 3830, "bottom": 6010, "left": 2765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710172f.jpg"} -{"rects": [{"solidity": 0.9964995006303519, "top": 810, "right": 3925, "bottom": 3215, "left": 2325}, {"solidity": 0.99434231456731, "top": 805, "right": 2110, "bottom": 3215, "left": 515}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732378f.jpg"} -{"rects": [{"solidity": 0.9964995413750968, "top": 430, "right": 3170, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711065f.jpg"} -{"rects": [{"solidity": 0.9964995866027617, "top": 830, "right": 2090, "bottom": 3255, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710403f.jpg"} -{"rects": [{"solidity": 0.9964999623827733, "top": 805, "right": 2040, "bottom": 3210, "left": 430}, {"solidity": 0.9968703408143025, "top": 825, "right": 3900, "bottom": 3225, "left": 2300}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723470f.jpg"} -{"rects": [{"solidity": 0.9964999936053477, "top": 425, "right": 2930, "bottom": 1985, "left": 1035}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724124f.jpg"} -{"rects": [{"solidity": 0.9965001745065343, "top": 445, "right": 3175, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719007f.jpg"} -{"rects": [{"solidity": 0.9965001879528692, "top": 845, "right": 2040, "bottom": 3260, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715286f.jpg"} -{"rects": [{"solidity": 0.996500266249222, "top": 790, "right": 3895, "bottom": 3215, "left": 2275}, {"solidity": 0.9965325575959066, "top": 795, "right": 5640, "bottom": 3215, "left": 4035}, {"solidity": 0.9945157315370081, "top": 800, "right": 2115, "bottom": 3210, "left": 515}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723557f.jpg"} -{"rects": [{"solidity": 0.9965004036136716, "top": 580, "right": 3375, "bottom": 2500, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713067f.jpg"} -{"rects": [{"solidity": 0.9965004487431962, "top": 880, "right": 3930, "bottom": 3295, "left": 2315}, {"solidity": 0.9970220834989542, "top": 875, "right": 2025, "bottom": 3290, "left": 420}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728816f.jpg"} -{"rects": [{"solidity": 0.9965005685929909, "top": 1045, "right": 3140, "bottom": 5095, "left": 705}], "shape": {"h": 6140, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/715074f.jpg"} -{"rects": [{"solidity": 0.996500888560273, "top": 435, "right": 3115, "bottom": 2055, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724394f.jpg"} -{"rects": [{"solidity": 0.9965010292046995, "top": 415, "right": 3080, "bottom": 2020, "left": 665}, {"solidity": 0.9974711054035365, "top": 2185, "right": 3070, "bottom": 3775, "left": 665}, {"solidity": 0.9977013996068964, "top": 3990, "right": 3055, "bottom": 5585, "left": 665}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729662f.jpg"} -{"rects": [{"solidity": 0.9965011308499739, "top": 730, "right": 3855, "bottom": 3150, "left": 2240}, {"solidity": 0.9966584769757764, "top": 730, "right": 5735, "bottom": 3145, "left": 4120}, {"solidity": 0.9955188922727507, "top": 735, "right": 2010, "bottom": 3155, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726496f.jpg"} -{"rects": [{"solidity": 0.9965012231234711, "top": 2210, "right": 3065, "bottom": 3830, "left": 640}, {"solidity": 0.9963084468946953, "top": 375, "right": 3055, "bottom": 1985, "left": 640}, {"solidity": 0.9960040445680285, "top": 4045, "right": 3060, "bottom": 5660, "left": 640}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/730368f.jpg"} -{"rects": [{"solidity": 0.9965012580106146, "top": 420, "right": 3195, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701018f.jpg"} -{"rects": [{"solidity": 0.996501376877487, "top": 375, "right": 3160, "bottom": 1995, "left": 730}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700901f.jpg"} -{"rects": [{"solidity": 0.9965014087020381, "top": 325, "right": 4265, "bottom": 2755, "left": 1235}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517227.jpg"} -{"rects": [{"solidity": 0.9965014087961812, "top": 485, "right": 3190, "bottom": 2105, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720032f.jpg"} -{"rects": [{"solidity": 0.9965015338424384, "top": 920, "right": 2095, "bottom": 3325, "left": 485}, {"solidity": 0.9969569983914099, "top": 940, "right": 3860, "bottom": 3305, "left": 2290}, {"solidity": 0.995838928051919, "top": 950, "right": 5645, "bottom": 3285, "left": 4100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713653f.jpg"} -{"rects": [{"solidity": 0.9965015627939446, "top": 965, "right": 3265, "bottom": 5000, "left": 515}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708553f.jpg"} -{"rects": [{"solidity": 0.9965015757365484, "top": 725, "right": 2010, "bottom": 3140, "left": 380}, {"solidity": 0.9971676488270337, "top": 720, "right": 3870, "bottom": 3135, "left": 2245}, {"solidity": 0.9965216830149716, "top": 710, "right": 5710, "bottom": 3125, "left": 4080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712378f.jpg"} -{"rects": [{"solidity": 0.9965016671521535, "top": 275, "right": 3055, "bottom": 2005, "left": 455}, {"solidity": 0.9972478633965832, "top": 2235, "right": 3010, "bottom": 3935, "left": 450}, {"solidity": 0.996212392123206, "top": 4110, "right": 2975, "bottom": 5805, "left": 445}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700176f.jpg"} -{"rects": [{"solidity": 0.996501699358163, "top": 855, "right": 3875, "bottom": 3285, "left": 2255}, {"solidity": 0.9958042769306127, "top": 855, "right": 2060, "bottom": 3275, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717285f.jpg"} -{"rects": [{"solidity": 0.996501820969906, "top": 765, "right": 3920, "bottom": 3205, "left": 2285}, {"solidity": 0.9980927916560441, "top": 765, "right": 2045, "bottom": 3190, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718604f.jpg"} -{"rects": [{"solidity": 0.9965018578166396, "top": 495, "right": 5100, "bottom": 3715, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717122f.jpg"} -{"rects": [{"solidity": 0.9965019391967972, "top": 605, "right": 2720, "bottom": 1975, "left": 875}, {"solidity": 0.9948498585842377, "top": 2035, "right": 2695, "bottom": 3430, "left": 890}, {"solidity": 0.9946761850025712, "top": 2095, "right": 5160, "bottom": 3490, "left": 3365}, {"solidity": 0.9962657562224695, "top": 630, "right": 5155, "bottom": 2015, "left": 3355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706948f.jpg"} -{"rects": [{"solidity": 0.9965019633184202, "top": 545, "right": 3145, "bottom": 2140, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711506f.jpg"} -{"rects": [{"solidity": 0.9965021035960319, "top": 915, "right": 2020, "bottom": 3335, "left": 405}, {"solidity": 0.9935615100669781, "top": 1005, "right": 3690, "bottom": 3220, "left": 2280}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730436f.jpg"} -{"rects": [{"solidity": 0.9965024043936308, "top": 450, "right": 2985, "bottom": 2080, "left": 585}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707678f.jpg"} -{"rects": [{"solidity": 0.996502512819857, "top": 845, "right": 3885, "bottom": 3270, "left": 2245}, {"solidity": 0.9968278913689661, "top": 830, "right": 2030, "bottom": 3240, "left": 400}, {"solidity": 0.997111664036506, "top": 865, "right": 5720, "bottom": 3270, "left": 4090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720235f.jpg"} -{"rects": [{"solidity": 0.9965025782275886, "top": 2235, "right": 3230, "bottom": 3855, "left": 800}, {"solidity": 0.9966814159292036, "top": 4110, "right": 3235, "bottom": 5720, "left": 805}, {"solidity": 0.9974497681607419, "top": 360, "right": 3240, "bottom": 1970, "left": 810}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/718179f.jpg"} -{"rects": [{"solidity": 0.9965026637826693, "top": 410, "right": 3340, "bottom": 2020, "left": 935}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/726964f.jpg"} -{"rects": [{"solidity": 0.9965027791693504, "top": 595, "right": 2875, "bottom": 2045, "left": 1050}, {"solidity": 0.9949469550015566, "top": 2210, "right": 2900, "bottom": 3660, "left": 1075}, {"solidity": 0.9943332612499263, "top": 610, "right": 5065, "bottom": 2035, "left": 3255}, {"solidity": 0.998560525408226, "top": 2240, "right": 5075, "bottom": 3645, "left": 3280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725858f.jpg"} -{"rects": [{"solidity": 0.9965030729083104, "top": 2270, "right": 3230, "bottom": 3875, "left": 830}, {"solidity": 0.9967677404732107, "top": 4100, "right": 3225, "bottom": 5700, "left": 825}, {"solidity": 0.9948260985108219, "top": 445, "right": 3225, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716670f.jpg"} -{"rects": [{"solidity": 0.9965031181479056, "top": 795, "right": 3235, "bottom": 2575, "left": 1985}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507703.jpg"} -{"rects": [{"solidity": 0.9965032810122969, "top": 780, "right": 3830, "bottom": 3195, "left": 2215}, {"solidity": 0.9954926181795549, "top": 785, "right": 5645, "bottom": 3180, "left": 4035}, {"solidity": 0.9929842333142717, "top": 800, "right": 2020, "bottom": 3195, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719702f.jpg"} -{"rects": [{"solidity": 0.9965033942422992, "top": 735, "right": 2115, "bottom": 3150, "left": 505}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721020f.jpg"} -{"rects": [{"solidity": 0.9965034180610796, "top": 885, "right": 3915, "bottom": 3310, "left": 2290}, {"solidity": 0.9960645913101381, "top": 910, "right": 2020, "bottom": 3295, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710190f.jpg"} -{"rects": [{"solidity": 0.9965034851835185, "top": 920, "right": 5260, "bottom": 3335, "left": 3630}, {"solidity": 0.996287285495727, "top": 870, "right": 2575, "bottom": 3285, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731030f.jpg"} -{"rects": [{"solidity": 0.9965035159956338, "top": 465, "right": 4925, "bottom": 3495, "left": 1165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725912f.jpg"} -{"rects": [{"solidity": 0.996503517826977, "top": 630, "right": 3410, "bottom": 2665, "left": 340}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707657f.jpg"} -{"rects": [{"solidity": 0.9965035181926643, "top": 870, "right": 3415, "bottom": 2865, "left": 365}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708127f.jpg"} -{"rects": [{"solidity": 0.9965037225656609, "top": 640, "right": 2650, "bottom": 2050, "left": 850}, {"solidity": 0.9972336993076663, "top": 2120, "right": 2650, "bottom": 3515, "left": 860}, {"solidity": 0.9940508134132692, "top": 2105, "right": 5190, "bottom": 3505, "left": 3420}, {"solidity": 0.9939518300972119, "top": 645, "right": 5210, "bottom": 2030, "left": 3425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704240f.jpg"} -{"rects": [{"solidity": 0.9965038452161965, "top": 395, "right": 2965, "bottom": 1580, "left": 1035}, {"solidity": 0.9946655817002328, "top": 1720, "right": 2615, "bottom": 3615, "left": 1390}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701944f.jpg"} -{"rects": [{"solidity": 0.9965040309336352, "top": 215, "right": 3215, "bottom": 1815, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723491f.jpg"} -{"rects": [{"solidity": 0.9965042094185741, "top": 815, "right": 2150, "bottom": 3215, "left": 555}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710202f.jpg"} -{"rects": [{"solidity": 0.9965044418694476, "top": 355, "right": 3135, "bottom": 1985, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704366f.jpg"} -{"rects": [{"solidity": 0.9965045355782254, "top": 695, "right": 3950, "bottom": 3465, "left": 2065}, {"solidity": 0.9960921516321294, "top": 795, "right": 2035, "bottom": 3240, "left": 365}, {"solidity": 0.9937603525864975, "top": 730, "right": 5795, "bottom": 2155, "left": 3955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704910f.jpg"} -{"rects": [{"solidity": 0.9965046270847749, "top": 675, "right": 3830, "bottom": 3105, "left": 2215}, {"solidity": 0.9989138187124171, "top": 680, "right": 2010, "bottom": 3090, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725939f.jpg"} -{"rects": [{"solidity": 0.9965046902180098, "top": 780, "right": 2020, "bottom": 3185, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722007f.jpg"} -{"rects": [{"solidity": 0.9965047837445831, "top": 595, "right": 3305, "bottom": 2630, "left": 470}, {"solidity": 0.9964341123232359, "top": 3115, "right": 3260, "bottom": 5140, "left": 435}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729248f.jpg"} -{"rects": [{"solidity": 0.9965048023058729, "top": 790, "right": 2080, "bottom": 3220, "left": 445}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715052f.jpg"} -{"rects": [{"solidity": 0.9965049270379732, "top": 420, "right": 3260, "bottom": 2060, "left": 825}, {"solidity": 0.9982455805793398, "top": 2310, "right": 3260, "bottom": 3940, "left": 830}, {"solidity": 0.9989562057434457, "top": 4160, "right": 3220, "bottom": 5780, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706200f.jpg"} -{"rects": [{"solidity": 0.9965050707245419, "top": 435, "right": 3130, "bottom": 2050, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712131f.jpg"} -{"rects": [{"solidity": 0.9965051280648515, "top": 870, "right": 2020, "bottom": 3280, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723175f.jpg"} -{"rects": [{"solidity": 0.9965051303308606, "top": 650, "right": 3315, "bottom": 2725, "left": 480}, {"solidity": 0.9967753763858332, "top": 3265, "right": 3310, "bottom": 5325, "left": 475}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733813f.jpg"} -{"rects": [{"solidity": 0.9965052868006052, "top": 810, "right": 2505, "bottom": 3830, "left": 300}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/712977f.jpg"} -{"rects": [{"solidity": 0.9965054543946245, "top": 910, "right": 2375, "bottom": 3600, "left": 570}], "shape": {"h": 4400, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711298f.jpg"} -{"rects": [{"solidity": 0.9965054936591877, "top": 430, "right": 3215, "bottom": 2055, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709571f.jpg"} -{"rects": [{"solidity": 0.9965055008404287, "top": 500, "right": 3025, "bottom": 2120, "left": 610}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707177f.jpg"} -{"rects": [{"solidity": 0.9965055310235141, "top": 2225, "right": 3170, "bottom": 3845, "left": 750}, {"solidity": 0.9954513148542999, "top": 380, "right": 3160, "bottom": 2000, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723563f.jpg"} -{"rects": [{"solidity": 0.9965056790759034, "top": 425, "right": 3175, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722621f.jpg"} -{"rects": [{"solidity": 0.9965057407036846, "top": 395, "right": 3080, "bottom": 3655, "left": 980}, {"solidity": 0.9971269286020604, "top": 400, "right": 5610, "bottom": 3630, "left": 3575}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726068f.jpg"} -{"rects": [{"solidity": 0.9965058076108579, "top": 435, "right": 3135, "bottom": 2070, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701903f.jpg"} -{"rects": [{"solidity": 0.9965058477180225, "top": 490, "right": 3125, "bottom": 2110, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701268f.jpg"} -{"rects": [{"solidity": 0.9965060275850087, "top": 445, "right": 3185, "bottom": 2060, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721610f.jpg"} -{"rects": [{"solidity": 0.9965060593321026, "top": 1005, "right": 3545, "bottom": 5075, "left": 130}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/714639f.jpg"} -{"rects": [{"solidity": 0.9965060618695316, "top": 790, "right": 5705, "bottom": 3210, "left": 4080}, {"solidity": 0.9951780670937521, "top": 770, "right": 3875, "bottom": 3175, "left": 2275}, {"solidity": 0.9961459276949683, "top": 775, "right": 2050, "bottom": 3170, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733999f.jpg"} -{"rects": [{"solidity": 0.9965061429710624, "top": 370, "right": 3825, "bottom": 2825, "left": 790}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716362f.jpg"} -{"rects": [{"solidity": 0.9965063733777295, "top": 2230, "right": 3065, "bottom": 3860, "left": 645}, {"solidity": 0.996005733704843, "top": 410, "right": 3050, "bottom": 2025, "left": 620}, {"solidity": 0.9965476854973753, "top": 4085, "right": 3055, "bottom": 5720, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710113f.jpg"} -{"rects": [{"solidity": 0.9965063797676929, "top": 465, "right": 5705, "bottom": 4170, "left": 1150}], "shape": {"h": 4415, "w": 6850}, "file": "/usr/local/google/home/danvk/milstein/711692f.jpg"} -{"rects": [{"solidity": 0.9965064686676928, "top": 765, "right": 3860, "bottom": 3180, "left": 2235}, {"solidity": 0.9963008271220759, "top": 775, "right": 5705, "bottom": 3190, "left": 4090}, {"solidity": 0.9977598390741539, "top": 775, "right": 2000, "bottom": 3175, "left": 395}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718821f.jpg"} -{"rects": [{"solidity": 0.996506509895657, "top": 1060, "right": 3400, "bottom": 5065, "left": 335}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708526f.jpg"} -{"rects": [{"solidity": 0.9965065165667535, "top": 420, "right": 3175, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703111f.jpg"} -{"rects": [{"solidity": 0.996506634190116, "top": 2255, "right": 3200, "bottom": 3880, "left": 775}, {"solidity": 0.9977397200730245, "top": 400, "right": 3215, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719356f.jpg"} -{"rects": [{"solidity": 0.9965068181368377, "top": 645, "right": 2725, "bottom": 2060, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726736f.jpg"} -{"rects": [{"solidity": 0.996507036715435, "top": 2230, "right": 3200, "bottom": 3850, "left": 800}, {"solidity": 0.997350538395086, "top": 405, "right": 3175, "bottom": 1975, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724648f.jpg"} -{"rects": [{"solidity": 0.9965071144828561, "top": 670, "right": 2740, "bottom": 2065, "left": 945}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726382f.jpg"} -{"rects": [{"solidity": 0.9965073023312396, "top": 735, "right": 2045, "bottom": 3160, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723255f.jpg"} -{"rects": [{"solidity": 0.9965073078858087, "top": 780, "right": 2075, "bottom": 3210, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714419f.jpg"} -{"rects": [{"solidity": 0.996507604409753, "top": 740, "right": 2005, "bottom": 3165, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723337f.jpg"} -{"rects": [{"solidity": 0.9965076413790389, "top": 625, "right": 2715, "bottom": 2040, "left": 905}, {"solidity": 0.9961849579753133, "top": 640, "right": 4965, "bottom": 2040, "left": 3140}, {"solidity": 0.9944950758478278, "top": 2260, "right": 2715, "bottom": 3665, "left": 900}, {"solidity": 0.9980879831256924, "top": 2245, "right": 4955, "bottom": 3610, "left": 3130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725521f.jpg"} -{"rects": [{"solidity": 0.996507810786839, "top": 715, "right": 2070, "bottom": 3115, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710374f.jpg"} -{"rects": [{"solidity": 0.9965078153798398, "top": 790, "right": 3775, "bottom": 3210, "left": 2155}, {"solidity": 0.9960040025162399, "top": 775, "right": 1915, "bottom": 3190, "left": 310}, {"solidity": 0.995349352592076, "top": 830, "right": 5640, "bottom": 3235, "left": 4025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724671f.jpg"} -{"rects": [{"solidity": 0.9965078573210276, "top": 2295, "right": 3025, "bottom": 3935, "left": 600}, {"solidity": 0.997968312118857, "top": 420, "right": 3030, "bottom": 2040, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701445f.jpg"} -{"rects": [{"solidity": 0.9965079041695051, "top": 385, "right": 3140, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/701490f.jpg"} -{"rects": [{"solidity": 0.9965079905588884, "top": 410, "right": 3185, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711950f.jpg"} -{"rects": [{"solidity": 0.9965082897076499, "top": 2110, "right": 2725, "bottom": 3530, "left": 930}, {"solidity": 0.9975195563665568, "top": 675, "right": 2705, "bottom": 2070, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727920f.jpg"} -{"rects": [{"solidity": 0.9965082919997289, "top": 825, "right": 2100, "bottom": 3245, "left": 480}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723955f.jpg"} -{"rects": [{"solidity": 0.9965083889778333, "top": 410, "right": 3210, "bottom": 2015, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724524f.jpg"} -{"rects": [{"solidity": 0.9965084584329463, "top": 610, "right": 2380, "bottom": 3370, "left": 455}, {"solidity": 0.9964163539249224, "top": 740, "right": 4165, "bottom": 3160, "left": 2565}, {"solidity": 0.9951268757166359, "top": 1100, "right": 5685, "bottom": 2745, "left": 4445}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704488f.jpg"} -{"rects": [{"solidity": 0.9965085868570442, "top": 425, "right": 3185, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704328f.jpg"} -{"rects": [{"solidity": 0.9965086420174376, "top": 3365, "right": 3615, "bottom": 5270, "left": 490}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/730690f.jpg"} -{"rects": [{"solidity": 0.996508647263052, "top": 440, "right": 3155, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721928f.jpg"} -{"rects": [{"solidity": 0.9965087570403518, "top": 385, "right": 3090, "bottom": 2020, "left": 675}, {"solidity": 0.9948987004600855, "top": 2245, "right": 3085, "bottom": 3865, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721688f.jpg"} -{"rects": [{"solidity": 0.9965088106545377, "top": 345, "right": 4025, "bottom": 2665, "left": 1075}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715982f.jpg"} -{"rects": [{"solidity": 0.9965088380512708, "top": 490, "right": 2960, "bottom": 1930, "left": 1125}, {"solidity": 0.9953258739176818, "top": 2305, "right": 2940, "bottom": 3720, "left": 1145}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725464f.jpg"} -{"rects": [{"solidity": 0.9965088499350594, "top": 515, "right": 4820, "bottom": 3165, "left": 820}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708732f.jpg"} -{"rects": [{"solidity": 0.9965088854496137, "top": 770, "right": 2035, "bottom": 3200, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703956f.jpg"} -{"rects": [{"solidity": 0.9965089327444939, "top": 2230, "right": 3195, "bottom": 3870, "left": 770}, {"solidity": 0.9961410525040104, "top": 4040, "right": 3190, "bottom": 5685, "left": 760}, {"solidity": 0.9968114186463111, "top": 425, "right": 3190, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703354f.jpg"} -{"rects": [{"solidity": 0.9965089384572345, "top": 955, "right": 5905, "bottom": 2975, "left": 2695}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724972f.jpg"} -{"rects": [{"solidity": 0.9965089593651946, "top": 750, "right": 2000, "bottom": 3165, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704132f.jpg"} -{"rects": [{"solidity": 0.9965090367340239, "top": 760, "right": 2055, "bottom": 3215, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701477f.jpg"} -{"rects": [{"solidity": 0.9965090526895309, "top": 900, "right": 2005, "bottom": 2855, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700467f.jpg"} -{"rects": [{"solidity": 0.9965093818533614, "top": 410, "right": 3155, "bottom": 2020, "left": 750}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/700828f.jpg"} -{"rects": [{"solidity": 0.9965095930204657, "top": 800, "right": 3885, "bottom": 3230, "left": 2260}, {"solidity": 0.9975468052201927, "top": 790, "right": 2030, "bottom": 3210, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709983f.jpg"} -{"rects": [{"solidity": 0.9965096100324154, "top": 435, "right": 3035, "bottom": 2030, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729160f.jpg"} -{"rects": [{"solidity": 0.9965096207142291, "top": 895, "right": 3870, "bottom": 3340, "left": 2240}, {"solidity": 0.9971559763191498, "top": 910, "right": 1995, "bottom": 3335, "left": 380}, {"solidity": 0.9970812182741117, "top": 910, "right": 5725, "bottom": 3330, "left": 4125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728600f.jpg"} -{"rects": [{"solidity": 0.9965097200815393, "top": 760, "right": 2655, "bottom": 2165, "left": 845}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727351f.jpg"} -{"rects": [{"solidity": 0.9965097835230958, "top": 790, "right": 2025, "bottom": 3215, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728633f.jpg"} -{"rects": [{"solidity": 0.9965100524615849, "top": 805, "right": 3895, "bottom": 3230, "left": 2260}, {"solidity": 0.9965280022758719, "top": 795, "right": 2025, "bottom": 3215, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707619f.jpg"} -{"rects": [{"solidity": 0.9965100757490472, "top": 385, "right": 3180, "bottom": 2010, "left": 755}, {"solidity": 0.9960318103043359, "top": 2215, "right": 3175, "bottom": 3835, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701796f.jpg"} -{"rects": [{"solidity": 0.9965101608010524, "top": 480, "right": 3040, "bottom": 1965, "left": 1140}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711789f.jpg"} -{"rects": [{"solidity": 0.9965101649161086, "top": 445, "right": 5005, "bottom": 3655, "left": 1065}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723762f.jpg"} -{"rects": [{"solidity": 0.9965101951587901, "top": 615, "right": 2485, "bottom": 2120, "left": 375}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509535.jpg"} -{"rects": [{"solidity": 0.996510239100131, "top": 870, "right": 3800, "bottom": 3300, "left": 2190}, {"solidity": 0.993874000441072, "top": 980, "right": 1845, "bottom": 3190, "left": 445}, {"solidity": 0.981096841404531, "top": 1090, "right": 5590, "bottom": 3040, "left": 4080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713895f.jpg"} -{"rects": [{"solidity": 0.9965102511372842, "top": 2145, "right": 2740, "bottom": 3590, "left": 915}, {"solidity": 0.9959465429108191, "top": 650, "right": 2725, "bottom": 2085, "left": 905}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705155f.jpg"} -{"rects": [{"solidity": 0.9965103085738986, "top": 780, "right": 3900, "bottom": 3215, "left": 2265}, {"solidity": 0.9962496023035862, "top": 795, "right": 2025, "bottom": 3220, "left": 405}, {"solidity": 0.995541064731884, "top": 760, "right": 5750, "bottom": 3185, "left": 4135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729996f.jpg"} -{"rects": [{"solidity": 0.9965103465164687, "top": 4100, "right": 3025, "bottom": 5680, "left": 670}, {"solidity": 0.995274801326874, "top": 2280, "right": 3030, "bottom": 3845, "left": 655}, {"solidity": 0.9942668105305514, "top": 495, "right": 2985, "bottom": 2035, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707556f.jpg"} -{"rects": [{"solidity": 0.9965105006003094, "top": 790, "right": 3910, "bottom": 3210, "left": 2280}, {"solidity": 0.9954615827810519, "top": 825, "right": 2060, "bottom": 3245, "left": 420}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712765f.jpg"} -{"rects": [{"solidity": 0.9965105494263161, "top": 785, "right": 2025, "bottom": 3205, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732480f.jpg"} -{"rects": [{"solidity": 0.9965106173223852, "top": 2290, "right": 3215, "bottom": 3900, "left": 790}, {"solidity": 0.997200466478485, "top": 445, "right": 3190, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733929f.jpg"} -{"rects": [{"solidity": 0.9965107027483009, "top": 2215, "right": 3150, "bottom": 3845, "left": 720}, {"solidity": 0.9949950660122414, "top": 4105, "right": 3145, "bottom": 5730, "left": 730}, {"solidity": 0.9921091454971336, "top": 390, "right": 3145, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733542f.jpg"} -{"rects": [{"solidity": 0.9965108741086335, "top": 630, "right": 3325, "bottom": 2495, "left": 615}, {"solidity": 0.9954746480003209, "top": 3135, "right": 3305, "bottom": 5030, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711083f.jpg"} -{"rects": [{"solidity": 0.996511012525073, "top": 645, "right": 2705, "bottom": 3520, "left": 675}, {"solidity": 0.997146154974955, "top": 655, "right": 5345, "bottom": 3515, "left": 3335}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723696f.jpg"} -{"rects": [{"solidity": 0.9965110365826183, "top": 4175, "right": 3110, "bottom": 5790, "left": 680}, {"solidity": 0.9961522489553324, "top": 2260, "right": 3130, "bottom": 3875, "left": 720}, {"solidity": 0.9950949382487762, "top": 385, "right": 3150, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734376f.jpg"} -{"rects": [{"solidity": 0.9965111208024422, "top": 425, "right": 1620, "bottom": 1295, "left": 185}], "shape": {"h": 3040, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715808f.jpg"} -{"rects": [{"solidity": 0.996511161107533, "top": 4140, "right": 3300, "bottom": 5845, "left": 730}, {"solidity": 0.9962934061646508, "top": 440, "right": 3295, "bottom": 2125, "left": 725}, {"solidity": 0.9979182103666067, "top": 2280, "right": 3285, "bottom": 3970, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731210f.jpg"} -{"rects": [{"solidity": 0.9965111678595835, "top": 395, "right": 3195, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/730232f.jpg"} -{"rects": [{"solidity": 0.9965112477112216, "top": 410, "right": 3170, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724177f.jpg"} -{"rects": [{"solidity": 0.9965115566241988, "top": 300, "right": 5005, "bottom": 3525, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725746f.jpg"} -{"rects": [{"solidity": 0.9965116110058673, "top": 600, "right": 5055, "bottom": 2015, "left": 3215}, {"solidity": 0.996632800314855, "top": 605, "right": 2880, "bottom": 2045, "left": 1075}, {"solidity": 0.996489705574055, "top": 2210, "right": 2885, "bottom": 3650, "left": 1085}, {"solidity": 0.9950372085903203, "top": 2225, "right": 5060, "bottom": 3625, "left": 3230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726415f.jpg"} -{"rects": [{"solidity": 0.996511746876239, "top": 2220, "right": 3075, "bottom": 3845, "left": 640}, {"solidity": 0.9976850881633206, "top": 415, "right": 3060, "bottom": 2030, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730400f.jpg"} -{"rects": [{"solidity": 0.9965117562644884, "top": 2285, "right": 3205, "bottom": 3940, "left": 765}, {"solidity": 0.9961892201216787, "top": 4135, "right": 3220, "bottom": 5775, "left": 785}, {"solidity": 0.997365873426841, "top": 435, "right": 3200, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718086f.jpg"} -{"rects": [{"solidity": 0.9965118202184122, "top": 415, "right": 2490, "bottom": 3010, "left": 555}], "shape": {"h": 4640, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/718422f.jpg"} -{"rects": [{"solidity": 0.9965119461206996, "top": 435, "right": 3220, "bottom": 2370, "left": 410}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728015f.jpg"} -{"rects": [{"solidity": 0.9965120752021154, "top": 430, "right": 3285, "bottom": 2045, "left": 860}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/700920f.jpg"} -{"rects": [{"solidity": 0.9965125598178749, "top": 485, "right": 5095, "bottom": 3745, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730896f.jpg"} -{"rects": [{"solidity": 0.9965127135839209, "top": 805, "right": 2030, "bottom": 3195, "left": 430}, {"solidity": 0.9916769756949498, "top": 1310, "right": 3445, "bottom": 2555, "left": 2315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717298f.jpg"} -{"rects": [{"solidity": 0.9965127338053471, "top": 815, "right": 2050, "bottom": 3250, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720310f.jpg"} -{"rects": [{"solidity": 0.9965128138710356, "top": 4130, "right": 3155, "bottom": 5745, "left": 745}, {"solidity": 0.9971019201403555, "top": 2265, "right": 3165, "bottom": 3875, "left": 755}, {"solidity": 0.9978173762908428, "top": 410, "right": 3155, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728373f.jpg"} -{"rects": [{"solidity": 0.996512823099867, "top": 880, "right": 3810, "bottom": 3335, "left": 2165}, {"solidity": 0.9959875490901744, "top": 905, "right": 5660, "bottom": 3355, "left": 4010}, {"solidity": 0.9973876747766192, "top": 875, "right": 1955, "bottom": 3315, "left": 325}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705346f.jpg"} -{"rects": [{"solidity": 0.9965128741867147, "top": 690, "right": 2670, "bottom": 2105, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706239f.jpg"} -{"rects": [{"solidity": 0.9965129417265159, "top": 410, "right": 3000, "bottom": 2040, "left": 600}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702042f.jpg"} -{"rects": [{"solidity": 0.9965130343845678, "top": 305, "right": 3170, "bottom": 1945, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708004f.jpg"} -{"rects": [{"solidity": 0.9965131156987931, "top": 460, "right": 3180, "bottom": 2070, "left": 775}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724171f.jpg"} -{"rects": [{"solidity": 0.9965131345269719, "top": 2110, "right": 2710, "bottom": 3520, "left": 925}, {"solidity": 0.9992802025499957, "top": 670, "right": 2710, "bottom": 2075, "left": 930}, {"solidity": 0.9954334333083396, "top": 675, "right": 5225, "bottom": 2040, "left": 3445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731351f.jpg"} -{"rects": [{"solidity": 0.9965133103553742, "top": 355, "right": 3310, "bottom": 2280, "left": 510}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707471f.jpg"} -{"rects": [{"solidity": 0.9965133631534258, "top": 450, "right": 5045, "bottom": 3655, "left": 1045}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712331f.jpg"} -{"rects": [{"solidity": 0.9965133702166897, "top": 820, "right": 5710, "bottom": 3255, "left": 4075}, {"solidity": 0.9962765293283345, "top": 790, "right": 3865, "bottom": 3225, "left": 2230}, {"solidity": 0.9967398090873396, "top": 780, "right": 2035, "bottom": 3205, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729998f.jpg"} -{"rects": [{"solidity": 0.9965134339131387, "top": 835, "right": 3900, "bottom": 3255, "left": 2275}, {"solidity": 0.9966288750935074, "top": 840, "right": 2020, "bottom": 3255, "left": 410}, {"solidity": 0.9946292525194693, "top": 835, "right": 5745, "bottom": 3250, "left": 4135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733692f.jpg"} -{"rects": [{"solidity": 0.9965134382328057, "top": 445, "right": 5075, "bottom": 3665, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708958f.jpg"} -{"rects": [{"solidity": 0.9965134627426424, "top": 660, "right": 2765, "bottom": 2050, "left": 950}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702906f.jpg"} -{"rects": [{"solidity": 0.9965134849405043, "top": 2225, "right": 3290, "bottom": 3850, "left": 870}, {"solidity": 0.9976265542527188, "top": 370, "right": 3295, "bottom": 1990, "left": 880}, {"solidity": 0.9978361209314061, "top": 4080, "right": 3270, "bottom": 5690, "left": 850}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705416f.jpg"} -{"rects": [{"solidity": 0.9965135245869957, "top": 1020, "right": 3470, "bottom": 5060, "left": 245}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700417f.jpg"} -{"rects": [{"solidity": 0.9965135778247642, "top": 385, "right": 3215, "bottom": 1990, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728044f.jpg"} -{"rects": [{"solidity": 0.9965140060506662, "top": 420, "right": 3135, "bottom": 2020, "left": 725}, {"solidity": 0.9973795283150967, "top": 2285, "right": 3110, "bottom": 3870, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729918f.jpg"} -{"rects": [{"solidity": 0.9965140282772679, "top": 470, "right": 3135, "bottom": 2075, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731868f.jpg"} -{"rects": [{"solidity": 0.9965140577202708, "top": 440, "right": 3170, "bottom": 2065, "left": 745}, {"solidity": 0.9926071852228436, "top": 2250, "right": 2940, "bottom": 3765, "left": 970}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719400f.jpg"} -{"rects": [{"solidity": 0.9965143299767621, "top": 760, "right": 3885, "bottom": 3185, "left": 2260}, {"solidity": 0.997410505855421, "top": 770, "right": 2035, "bottom": 3190, "left": 420}, {"solidity": 0.9969594912172084, "top": 775, "right": 5700, "bottom": 3195, "left": 4095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731647f.jpg"} -{"rects": [{"solidity": 0.9965143463021268, "top": 440, "right": 3110, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729098f.jpg"} -{"rects": [{"solidity": 0.9965144312229506, "top": 785, "right": 3755, "bottom": 3205, "left": 2140}, {"solidity": 0.9980069029215887, "top": 790, "right": 1920, "bottom": 3190, "left": 300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733701f.jpg"} -{"rects": [{"solidity": 0.996514497870942, "top": 775, "right": 5545, "bottom": 3180, "left": 2550}, {"solidity": 0.9967704668382082, "top": 760, "right": 2025, "bottom": 3160, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715739f.jpg"} -{"rects": [{"solidity": 0.9965145692306692, "top": 825, "right": 3930, "bottom": 3230, "left": 2310}, {"solidity": 0.9972643669876258, "top": 825, "right": 2045, "bottom": 3225, "left": 435}, {"solidity": 0.9971429888023593, "top": 830, "right": 5795, "bottom": 3225, "left": 4195}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733366f.jpg"} -{"rects": [{"solidity": 0.9965145722052314, "top": 570, "right": 3445, "bottom": 2625, "left": 415}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723697f.jpg"} -{"rects": [{"solidity": 0.9965146792174976, "top": 940, "right": 5480, "bottom": 2570, "left": 705}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709272f.jpg"} -{"rects": [{"solidity": 0.9965151951070494, "top": 810, "right": 3865, "bottom": 3230, "left": 2255}, {"solidity": 0.9968611381985691, "top": 810, "right": 5700, "bottom": 3220, "left": 4110}, {"solidity": 0.9962958394041336, "top": 815, "right": 2015, "bottom": 3205, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734774f.jpg"} -{"rects": [{"solidity": 0.9965152008790255, "top": 880, "right": 3875, "bottom": 3310, "left": 2225}, {"solidity": 0.9988791489306562, "top": 890, "right": 2010, "bottom": 3295, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721206f.jpg"} -{"rects": [{"solidity": 0.9965152815345812, "top": 770, "right": 2015, "bottom": 3175, "left": 410}, {"solidity": 0.9960653524965846, "top": 765, "right": 3830, "bottom": 3180, "left": 2240}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721988f.jpg"} -{"rects": [{"solidity": 0.9965153964244231, "top": 520, "right": 3945, "bottom": 2610, "left": 2455}, {"solidity": 0.9975060923762912, "top": 505, "right": 2110, "bottom": 2600, "left": 630}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716101f.jpg"} -{"rects": [{"solidity": 0.9965156904492642, "top": 800, "right": 2055, "bottom": 3240, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713150f.jpg"} -{"rects": [{"solidity": 0.9965157691206419, "top": 385, "right": 3075, "bottom": 2010, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729117f.jpg"} -{"rects": [{"solidity": 0.9965158000891609, "top": 3215, "right": 3440, "bottom": 5305, "left": 595}, {"solidity": 0.9941055657354256, "top": 785, "right": 3520, "bottom": 2865, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733570f.jpg"} -{"rects": [{"solidity": 0.9965158909774056, "top": 825, "right": 2210, "bottom": 3195, "left": 630}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709791f.jpg"} -{"rects": [{"solidity": 0.9965161089413382, "top": 745, "right": 3855, "bottom": 3160, "left": 2245}, {"solidity": 0.9961289220132235, "top": 755, "right": 2040, "bottom": 3165, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704838f.jpg"} -{"rects": [{"solidity": 0.996516143709072, "top": 850, "right": 2110, "bottom": 3265, "left": 500}, {"solidity": 0.996110594402638, "top": 850, "right": 3965, "bottom": 3265, "left": 2355}, {"solidity": 0.9955256615512775, "top": 860, "right": 5765, "bottom": 3280, "left": 4155}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731622f.jpg"} -{"rects": [{"solidity": 0.9965162947891996, "top": 935, "right": 3170, "bottom": 2840, "left": 400}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703134f.jpg"} -{"rects": [{"solidity": 0.9965163232260795, "top": 495, "right": 3125, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713130f.jpg"} -{"rects": [{"solidity": 0.9965166937045371, "top": 1090, "right": 3185, "bottom": 2705, "left": 790}, {"solidity": 0.9958928746607371, "top": 3400, "right": 3205, "bottom": 5005, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733161f.jpg"} -{"rects": [{"solidity": 0.9965167666424687, "top": 810, "right": 2095, "bottom": 3240, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712612f.jpg"} -{"rects": [{"solidity": 0.9965168076296631, "top": 755, "right": 2035, "bottom": 3160, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730480f.jpg"} -{"rects": [{"solidity": 0.9965168771053415, "top": 405, "right": 3130, "bottom": 2005, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729797f.jpg"} -{"rects": [{"solidity": 0.9965169020386746, "top": 385, "right": 3070, "bottom": 2000, "left": 640}, {"solidity": 0.9984198682144187, "top": 2235, "right": 3075, "bottom": 3845, "left": 660}, {"solidity": 0.9946560498036785, "top": 4100, "right": 3090, "bottom": 5740, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729486f.jpg"} -{"rects": [{"solidity": 0.9965169407782094, "top": 570, "right": 4725, "bottom": 3465, "left": 1165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723883f.jpg"} -{"rects": [{"solidity": 0.9965170190374721, "top": 380, "right": 3210, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726901f.jpg"} -{"rects": [{"solidity": 0.9965170969854532, "top": 760, "right": 2005, "bottom": 3150, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723513f.jpg"} -{"rects": [{"solidity": 0.9965172466971676, "top": 760, "right": 3915, "bottom": 3190, "left": 2295}, {"solidity": 0.9968341190384419, "top": 765, "right": 2085, "bottom": 3165, "left": 490}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721215f.jpg"} -{"rects": [{"solidity": 0.9965172556363547, "top": 515, "right": 3330, "bottom": 2465, "left": 645}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714572f.jpg"} -{"rects": [{"solidity": 0.9965172746964062, "top": 2035, "right": 3250, "bottom": 3685, "left": 810}, {"solidity": 0.9648701630774476, "top": 325, "right": 3220, "bottom": 1875, "left": 845}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733617f.jpg"} -{"rects": [{"solidity": 0.9965174145234348, "top": 775, "right": 2030, "bottom": 3205, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720330f.jpg"} -{"rects": [{"solidity": 0.9965175935414853, "top": 860, "right": 2035, "bottom": 3285, "left": 415}, {"solidity": 0.9969841865626581, "top": 880, "right": 3900, "bottom": 3285, "left": 2295}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729728f.jpg"} -{"rects": [{"solidity": 0.9965176562652842, "top": 795, "right": 2040, "bottom": 3200, "left": 420}, {"solidity": 0.9961932831870552, "top": 805, "right": 3915, "bottom": 3205, "left": 2300}, {"solidity": 0.9956039616991873, "top": 820, "right": 5725, "bottom": 3210, "left": 4125}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724781f.jpg"} -{"rects": [{"solidity": 0.9965177035879796, "top": 320, "right": 3180, "bottom": 1925, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724823f.jpg"} -{"rects": [{"solidity": 0.9965178160097857, "top": 735, "right": 3175, "bottom": 2375, "left": 735}, {"solidity": 0.9968871743946223, "top": 2540, "right": 3160, "bottom": 4170, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731324f.jpg"} -{"rects": [{"solidity": 0.9965178404150166, "top": 535, "right": 2970, "bottom": 2155, "left": 550}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711517f.jpg"} -{"rects": [{"solidity": 0.996517851663065, "top": 400, "right": 3300, "bottom": 2020, "left": 885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725024f.jpg"} -{"rects": [{"solidity": 0.9965179813866796, "top": 440, "right": 3300, "bottom": 2070, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725344f.jpg"} -{"rects": [{"solidity": 0.9965180384950189, "top": 420, "right": 3335, "bottom": 2035, "left": 910}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726446f.jpg"} -{"rects": [{"solidity": 0.9965182713514336, "top": 1045, "right": 3375, "bottom": 4675, "left": 455}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710717f.jpg"} -{"rects": [{"solidity": 0.9965182725972521, "top": 410, "right": 3220, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/700842f.jpg"} -{"rects": [{"solidity": 0.9965182856197253, "top": 785, "right": 2045, "bottom": 3175, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712557f.jpg"} -{"rects": [{"solidity": 0.9965182887097245, "top": 785, "right": 2060, "bottom": 3185, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718575f.jpg"} -{"rects": [{"solidity": 0.9965183248912655, "top": 480, "right": 1940, "bottom": 2770, "left": 405}, {"solidity": 0.993481323846662, "top": 650, "right": 3250, "bottom": 2445, "left": 2035}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716363f.jpg"} -{"rects": [{"solidity": 0.9965184323952799, "top": 785, "right": 2005, "bottom": 3205, "left": 370}, {"solidity": 0.9954039795675167, "top": 815, "right": 3845, "bottom": 3235, "left": 2200}, {"solidity": 0.9961384546643489, "top": 865, "right": 5650, "bottom": 3270, "left": 4020}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716908f.jpg"} -{"rects": [{"solidity": 0.9965184635580161, "top": 855, "right": 3915, "bottom": 3305, "left": 2265}, {"solidity": 0.9967993732504037, "top": 825, "right": 2020, "bottom": 3260, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734054f.jpg"} -{"rects": [{"solidity": 0.9965185611360279, "top": 460, "right": 3230, "bottom": 2065, "left": 825}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710082f.jpg"} -{"rects": [{"solidity": 0.9965185745801195, "top": 420, "right": 3155, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729028f.jpg"} -{"rects": [{"solidity": 0.9965185992862482, "top": 2255, "right": 3180, "bottom": 3865, "left": 755}, {"solidity": 0.996469627407405, "top": 430, "right": 3175, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720428f.jpg"} -{"rects": [{"solidity": 0.9965186047190087, "top": 595, "right": 2885, "bottom": 2215, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702383f.jpg"} -{"rects": [{"solidity": 0.9965186581718892, "top": 405, "right": 3145, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715009f.jpg"} -{"rects": [{"solidity": 0.9965186699583397, "top": 380, "right": 3120, "bottom": 2000, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734818f.jpg"} -{"rects": [{"solidity": 0.9965188341241406, "top": 620, "right": 2720, "bottom": 2050, "left": 900}, {"solidity": 0.9969928784046, "top": 2110, "right": 2705, "bottom": 3505, "left": 925}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706714f.jpg"} -{"rects": [{"solidity": 0.9965188417689257, "top": 305, "right": 2495, "bottom": 1775, "left": 420}, {"solidity": 0.9982657631790514, "top": 1905, "right": 2335, "bottom": 3125, "left": 535}], "shape": {"h": 4645, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715773f.jpg"} -{"rects": [{"solidity": 0.9965188917677353, "top": 845, "right": 4070, "bottom": 3280, "left": 2425}, {"solidity": 0.9968235762644365, "top": 810, "right": 2095, "bottom": 3245, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701657f.jpg"} -{"rects": [{"solidity": 0.9965190129122966, "top": 410, "right": 3230, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727765f.jpg"} -{"rects": [{"solidity": 0.9965190906124225, "top": 2345, "right": 3245, "bottom": 3975, "left": 820}, {"solidity": 0.9992215746066057, "top": 445, "right": 3245, "bottom": 2060, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725354f.jpg"} -{"rects": [{"solidity": 0.9965192083818394, "top": 880, "right": 2985, "bottom": 2085, "left": 1185}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509575.jpg"} -{"rects": [{"solidity": 0.9965192209959055, "top": 765, "right": 3860, "bottom": 3195, "left": 2230}, {"solidity": 0.9957325655585016, "top": 780, "right": 2040, "bottom": 3205, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709651f.jpg"} -{"rects": [{"solidity": 0.9965192862595914, "top": 955, "right": 2100, "bottom": 3360, "left": 465}, {"solidity": 0.9945133024092915, "top": 950, "right": 3910, "bottom": 3375, "left": 2285}, {"solidity": 0.9965859416281799, "top": 955, "right": 5685, "bottom": 3325, "left": 4120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722854f.jpg"} -{"rects": [{"solidity": 0.9965194713202505, "top": 365, "right": 2585, "bottom": 2785, "left": 955}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700277f.jpg"} -{"rects": [{"solidity": 0.9965195504602415, "top": 870, "right": 3940, "bottom": 3305, "left": 2280}, {"solidity": 0.996564116741045, "top": 880, "right": 2035, "bottom": 3280, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716628f.jpg"} -{"rects": [{"solidity": 0.9965196424103182, "top": 2265, "right": 3225, "bottom": 3875, "left": 810}, {"solidity": 0.9961708797851782, "top": 400, "right": 3225, "bottom": 2005, "left": 810}, {"solidity": 0.9968970597057706, "top": 4165, "right": 3215, "bottom": 5745, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714077f.jpg"} -{"rects": [{"solidity": 0.9965196552529145, "top": 530, "right": 3320, "bottom": 2440, "left": 555}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721914f.jpg"} -{"rects": [{"solidity": 0.9965199179829319, "top": 890, "right": 5690, "bottom": 3355, "left": 4025}, {"solidity": 0.9957182272642902, "top": 885, "right": 3860, "bottom": 3345, "left": 2185}, {"solidity": 0.9959566676838572, "top": 830, "right": 2020, "bottom": 3265, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720439f.jpg"} -{"rects": [{"solidity": 0.9965199234383156, "top": 870, "right": 1965, "bottom": 3290, "left": 335}, {"solidity": 0.9974535994635064, "top": 885, "right": 3765, "bottom": 3290, "left": 2150}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713755f.jpg"} -{"rects": [{"solidity": 0.9965200699903372, "top": 460, "right": 3270, "bottom": 2070, "left": 870}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722397f.jpg"} -{"rects": [{"solidity": 0.9965202608053384, "top": 790, "right": 5710, "bottom": 3235, "left": 4075}, {"solidity": 0.994965317713075, "top": 785, "right": 3865, "bottom": 3210, "left": 2250}, {"solidity": 0.99830385025991, "top": 790, "right": 2020, "bottom": 3185, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723235f.jpg"} -{"rects": [{"solidity": 0.9965203185098473, "top": 430, "right": 3245, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715607f.jpg"} -{"rects": [{"solidity": 0.9965204467606029, "top": 375, "right": 3335, "bottom": 2020, "left": 915}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703853f.jpg"} -{"rects": [{"solidity": 0.9965209064794127, "top": 4065, "right": 3270, "bottom": 5700, "left": 835}, {"solidity": 0.9953604008613656, "top": 2215, "right": 3270, "bottom": 3860, "left": 830}, {"solidity": 0.9943247047224942, "top": 365, "right": 3245, "bottom": 1970, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733114f.jpg"} -{"rects": [{"solidity": 0.9965210489206385, "top": 560, "right": 2450, "bottom": 3605, "left": 485}, {"solidity": 0.9968201313167994, "top": 865, "right": 5025, "bottom": 3265, "left": 3420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714779f.jpg"} -{"rects": [{"solidity": 0.9965211051886054, "top": 385, "right": 3305, "bottom": 2015, "left": 880}, {"solidity": 0.9966356332840279, "top": 2230, "right": 3285, "bottom": 3860, "left": 870}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704763f.jpg"} -{"rects": [{"solidity": 0.9965212024751109, "top": 755, "right": 3865, "bottom": 3170, "left": 2260}, {"solidity": 0.9959557175434152, "top": 760, "right": 2030, "bottom": 3180, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733263f.jpg"} -{"rects": [{"solidity": 0.9965213264161658, "top": 445, "right": 5220, "bottom": 3725, "left": 1145}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/733396f.jpg"} -{"rects": [{"solidity": 0.9965213476807213, "top": 515, "right": 5060, "bottom": 3740, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701379f.jpg"} -{"rects": [{"solidity": 0.9965215851867394, "top": 485, "right": 3170, "bottom": 2085, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700154f.jpg"} -{"rects": [{"solidity": 0.9965216754540129, "top": 710, "right": 3780, "bottom": 2790, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721748f.jpg"} -{"rects": [{"solidity": 0.9965217169722375, "top": 905, "right": 3745, "bottom": 3345, "left": 2115}, {"solidity": 0.9958229592206724, "top": 925, "right": 1855, "bottom": 2750, "left": 425}, {"solidity": 0.9966598773966866, "top": 945, "right": 5485, "bottom": 2750, "left": 4075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727938f.jpg"} -{"rects": [{"solidity": 0.9965217556130525, "top": 570, "right": 3355, "bottom": 2215, "left": 910}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711518f.jpg"} -{"rects": [{"solidity": 0.9965218836813048, "top": 530, "right": 5505, "bottom": 2165, "left": 3085}, {"solidity": 0.9958686321475075, "top": 2180, "right": 5465, "bottom": 3810, "left": 3045}, {"solidity": 0.9980764878931885, "top": 555, "right": 2745, "bottom": 2140, "left": 360}, {"solidity": 0.9952598715315139, "top": 2335, "right": 2630, "bottom": 3705, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734262f.jpg"} -{"rects": [{"solidity": 0.9965219711216237, "top": 815, "right": 2045, "bottom": 3230, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721645f.jpg"} -{"rects": [{"solidity": 0.9965222670771066, "top": 795, "right": 3280, "bottom": 2160, "left": 1545}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508779.jpg"} -{"rects": [{"solidity": 0.9965225427023118, "top": 360, "right": 4970, "bottom": 3615, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726054f.jpg"} -{"rects": [{"solidity": 0.9965227004669608, "top": 745, "right": 3890, "bottom": 3170, "left": 2270}, {"solidity": 0.9974726716504034, "top": 750, "right": 2070, "bottom": 3175, "left": 460}, {"solidity": 0.9952211476383126, "top": 755, "right": 5715, "bottom": 3180, "left": 4100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720544f.jpg"} -{"rects": [{"solidity": 0.9965227623143715, "top": 505, "right": 3920, "bottom": 2595, "left": 2430}, {"solidity": 0.9960742939863091, "top": 485, "right": 2195, "bottom": 2580, "left": 715}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716269f.jpg"} -{"rects": [{"solidity": 0.9965229440784198, "top": 750, "right": 2005, "bottom": 3185, "left": 360}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724250f.jpg"} -{"rects": [{"solidity": 0.9965230042311235, "top": 475, "right": 3175, "bottom": 2065, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724906f.jpg"} -{"rects": [{"solidity": 0.9965231197952108, "top": 795, "right": 2045, "bottom": 3205, "left": 425}, {"solidity": 0.9947945241699332, "top": 775, "right": 3890, "bottom": 3175, "left": 2280}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721625f.jpg"} -{"rects": [{"solidity": 0.9965234837521378, "top": 630, "right": 2680, "bottom": 3030, "left": 1085}, {"solidity": 0.995158719617479, "top": 670, "right": 5055, "bottom": 3065, "left": 3465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708632f.jpg"} -{"rects": [{"solidity": 0.9965236194278111, "top": 830, "right": 2045, "bottom": 3220, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724826f.jpg"} -{"rects": [{"solidity": 0.996523750591254, "top": 435, "right": 3255, "bottom": 2050, "left": 835}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726422f.jpg"} -{"rects": [{"solidity": 0.9965240831382564, "top": 450, "right": 3320, "bottom": 2070, "left": 900}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725952f.jpg"} -{"rects": [{"solidity": 0.9965241866549547, "top": 2085, "right": 2740, "bottom": 3525, "left": 880}, {"solidity": 0.9965814826324975, "top": 590, "right": 5220, "bottom": 2020, "left": 3370}, {"solidity": 0.997594361997696, "top": 605, "right": 2710, "bottom": 2030, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705081f.jpg"} -{"rects": [{"solidity": 0.9965241968120521, "top": 825, "right": 2010, "bottom": 3240, "left": 390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730271f.jpg"} -{"rects": [{"solidity": 0.9965242221346987, "top": 3145, "right": 2785, "bottom": 5545, "left": 1180}, {"solidity": 0.9960886614053776, "top": 625, "right": 2800, "bottom": 3015, "left": 1200}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707850f.jpg"} -{"rects": [{"solidity": 0.9965242236104069, "top": 735, "right": 3895, "bottom": 3165, "left": 2270}, {"solidity": 0.9966280488604904, "top": 745, "right": 2030, "bottom": 3150, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725206f.jpg"} -{"rects": [{"solidity": 0.9965243331528898, "top": 560, "right": 5270, "bottom": 3480, "left": 3395}, {"solidity": 0.936049920795372, "top": 490, "right": 2795, "bottom": 3510, "left": 755}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703328f.jpg"} -{"rects": [{"solidity": 0.9965244189304197, "top": 325, "right": 3295, "bottom": 2190, "left": 745}, {"solidity": 0.9629758305043825, "top": 3010, "right": 3360, "bottom": 4635, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706079f.jpg"} -{"rects": [{"solidity": 0.9965244896095219, "top": 670, "right": 2765, "bottom": 2115, "left": 940}, {"solidity": 0.9970634832537817, "top": 2130, "right": 2780, "bottom": 3505, "left": 960}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707228f.jpg"} -{"rects": [{"solidity": 0.9965245352303124, "top": 590, "right": 4860, "bottom": 3605, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723384f.jpg"} -{"rects": [{"solidity": 0.9965245682374171, "top": 535, "right": 5030, "bottom": 3760, "left": 970}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708243f.jpg"} -{"rects": [{"solidity": 0.9965248832092687, "top": 2265, "right": 3150, "bottom": 3875, "left": 750}, {"solidity": 0.9943750040879331, "top": 450, "right": 3155, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718633f.jpg"} -{"rects": [{"solidity": 0.9965249830720683, "top": 385, "right": 2560, "bottom": 2810, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715539f.jpg"} -{"rects": [{"solidity": 0.9965249992826833, "top": 2255, "right": 3230, "bottom": 3885, "left": 795}, {"solidity": 0.9980584201233399, "top": 415, "right": 3195, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719200f.jpg"} -{"rects": [{"solidity": 0.9965250107776922, "top": 840, "right": 3900, "bottom": 3245, "left": 2290}, {"solidity": 0.9969745798941103, "top": 840, "right": 2025, "bottom": 3235, "left": 425}, {"solidity": 0.9948450382257709, "top": 825, "right": 5795, "bottom": 3225, "left": 4185}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733368f.jpg"} -{"rects": [{"solidity": 0.9965253180584093, "top": 2315, "right": 3220, "bottom": 3940, "left": 790}, {"solidity": 0.9970787544607773, "top": 435, "right": 3230, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727733f.jpg"} -{"rects": [{"solidity": 0.9965253514407021, "top": 425, "right": 3160, "bottom": 2355, "left": 450}, {"solidity": 0.9959110483859275, "top": 2620, "right": 3170, "bottom": 4540, "left": 445}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714475f.jpg"} -{"rects": [{"solidity": 0.9965254207297259, "top": 385, "right": 3005, "bottom": 2020, "left": 585}, {"solidity": 0.9986241110012983, "top": 2240, "right": 2995, "bottom": 3860, "left": 590}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700795f.jpg"} -{"rects": [{"solidity": 0.9965255428639134, "top": 815, "right": 3900, "bottom": 3250, "left": 2250}, {"solidity": 0.9973302442890652, "top": 785, "right": 2025, "bottom": 3200, "left": 390}, {"solidity": 0.9964685923622445, "top": 860, "right": 5735, "bottom": 3280, "left": 4090}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716790f.jpg"} -{"rects": [{"solidity": 0.9965256124721603, "top": 895, "right": 3880, "bottom": 3340, "left": 2235}, {"solidity": 0.997466104296957, "top": 895, "right": 2005, "bottom": 3315, "left": 395}, {"solidity": 0.9968886163589349, "top": 945, "right": 5715, "bottom": 3345, "left": 4095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724015f.jpg"} -{"rects": [{"solidity": 0.9965258126883079, "top": 765, "right": 2055, "bottom": 3165, "left": 445}, {"solidity": 0.9972322724258164, "top": 775, "right": 3855, "bottom": 3170, "left": 2250}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714893f.jpg"} -{"rects": [{"solidity": 0.9965258258925653, "top": 815, "right": 2045, "bottom": 3225, "left": 445}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712786f.jpg"} -{"rects": [{"solidity": 0.9965258284181951, "top": 840, "right": 3805, "bottom": 3255, "left": 2220}, {"solidity": 0.9918556092801888, "top": 815, "right": 1980, "bottom": 3220, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729600f.jpg"} -{"rects": [{"solidity": 0.9965260493118047, "top": 645, "right": 5270, "bottom": 3550, "left": 1190}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723206f.jpg"} -{"rects": [{"solidity": 0.9965261982548281, "top": 785, "right": 2050, "bottom": 3215, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711596f.jpg"} -{"rects": [{"solidity": 0.9965265530542379, "top": 395, "right": 5110, "bottom": 3690, "left": 1045}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712777f.jpg"} -{"rects": [{"solidity": 0.996526577337775, "top": 785, "right": 3900, "bottom": 3205, "left": 2290}, {"solidity": 0.9979960506582778, "top": 790, "right": 2045, "bottom": 3205, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734696f.jpg"} -{"rects": [{"solidity": 0.9965271513620783, "top": 900, "right": 5560, "bottom": 3310, "left": 3925}, {"solidity": 0.9970146167465784, "top": 875, "right": 3720, "bottom": 3270, "left": 2080}, {"solidity": 0.9973379877917975, "top": 875, "right": 1885, "bottom": 3255, "left": 255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721295f.jpg"} -{"rects": [{"solidity": 0.9965271648248658, "top": 295, "right": 3175, "bottom": 1920, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703057f.jpg"} -{"rects": [{"solidity": 0.9965272968001521, "top": 2275, "right": 3030, "bottom": 3890, "left": 600}, {"solidity": 0.9949728238692934, "top": 395, "right": 3030, "bottom": 2010, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734838f.jpg"} -{"rects": [{"solidity": 0.9965273204470473, "top": 795, "right": 2020, "bottom": 3210, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728512f.jpg"} -{"rects": [{"solidity": 0.9965273305761865, "top": 710, "right": 2765, "bottom": 2135, "left": 910}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727360f.jpg"} -{"rects": [{"solidity": 0.9965274117026884, "top": 395, "right": 3190, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712206f.jpg"} -{"rects": [{"solidity": 0.9965274800651633, "top": 485, "right": 3165, "bottom": 2080, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710727f.jpg"} -{"rects": [{"solidity": 0.9965277637587361, "top": 465, "right": 3035, "bottom": 2035, "left": 1040}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706326f.jpg"} -{"rects": [{"solidity": 0.9965278339573309, "top": 430, "right": 3290, "bottom": 2050, "left": 870}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706485f.jpg"} -{"rects": [{"solidity": 0.9965278457632539, "top": 440, "right": 3215, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712204f.jpg"} -{"rects": [{"solidity": 0.9965278851804881, "top": 510, "right": 3570, "bottom": 2315, "left": 860}], "shape": {"h": 6895, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711337f.jpg"} -{"rects": [{"solidity": 0.9965279407833786, "top": 320, "right": 5110, "bottom": 3535, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727338f.jpg"} -{"rects": [{"solidity": 0.9965280414150129, "top": 450, "right": 3255, "bottom": 2415, "left": 450}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704226f.jpg"} -{"rects": [{"solidity": 0.9965280925662903, "top": 835, "right": 2015, "bottom": 3215, "left": 430}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714448f.jpg"} -{"rects": [{"solidity": 0.9965281123337123, "top": 360, "right": 3105, "bottom": 1985, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700499f.jpg"} -{"rects": [{"solidity": 0.9965281565859136, "top": 315, "right": 2940, "bottom": 1955, "left": 515}, {"solidity": 0.9966423126717182, "top": 295, "right": 5545, "bottom": 1925, "left": 3135}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707954f.jpg"} -{"rects": [{"solidity": 0.9965281628094058, "top": 570, "right": 3405, "bottom": 2670, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719275f.jpg"} -{"rects": [{"solidity": 0.9965282505105514, "top": 390, "right": 3225, "bottom": 2000, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726258f.jpg"} -{"rects": [{"solidity": 0.9965283392459368, "top": 395, "right": 3045, "bottom": 2000, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729066f.jpg"} -{"rects": [{"solidity": 0.9965285806138965, "top": 2245, "right": 3165, "bottom": 3885, "left": 725}, {"solidity": 0.9967127185113036, "top": 425, "right": 3145, "bottom": 2050, "left": 725}, {"solidity": 0.9959627659403082, "top": 4115, "right": 3135, "bottom": 5735, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734116f.jpg"} -{"rects": [{"solidity": 0.9965286781102526, "top": 685, "right": 3885, "bottom": 3100, "left": 2265}, {"solidity": 0.9985645838931894, "top": 690, "right": 2025, "bottom": 3090, "left": 425}, {"solidity": 0.9959492018708161, "top": 710, "right": 5710, "bottom": 3110, "left": 4105}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718247f.jpg"} -{"rects": [{"solidity": 0.9965287094177623, "top": 560, "right": 2995, "bottom": 2150, "left": 615}, {"solidity": 0.9985248541770987, "top": 2400, "right": 2995, "bottom": 3980, "left": 640}], "shape": {"h": 6140, "w": 3885}, "file": "/usr/local/google/home/danvk/milstein/700988f.jpg"} -{"rects": [{"solidity": 0.9965288348268058, "top": 465, "right": 3160, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732473f.jpg"} -{"rects": [{"solidity": 0.9965288493766199, "top": 770, "right": 5720, "bottom": 3160, "left": 4125}, {"solidity": 0.9960792413211477, "top": 765, "right": 3835, "bottom": 3135, "left": 2280}, {"solidity": 0.99557317224887, "top": 745, "right": 2010, "bottom": 3100, "left": 455}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731602f.jpg"} -{"rects": [{"solidity": 0.9965288535764362, "top": 555, "right": 3010, "bottom": 1910, "left": 1235}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727469f.jpg"} -{"rects": [{"solidity": 0.996528908397046, "top": 2195, "right": 3180, "bottom": 3800, "left": 770}, {"solidity": 0.9989192588080407, "top": 355, "right": 3180, "bottom": 1955, "left": 780}, {"solidity": 0.9970176600659739, "top": 4020, "right": 3155, "bottom": 5615, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730809f.jpg"} -{"rects": [{"solidity": 0.9965289167288073, "top": 1035, "right": 3490, "bottom": 4955, "left": 435}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721390f.jpg"} -{"rects": [{"solidity": 0.9965291995086498, "top": 2150, "right": 3135, "bottom": 3780, "left": 705}, {"solidity": 0.9934820649299838, "top": 410, "right": 2930, "bottom": 1955, "left": 1035}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724141f.jpg"} -{"rects": [{"solidity": 0.9965292053505694, "top": 435, "right": 3165, "bottom": 2065, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705582f.jpg"} -{"rects": [{"solidity": 0.9965293145555453, "top": 780, "right": 2005, "bottom": 3220, "left": 365}, {"solidity": 0.9960563631328837, "top": 810, "right": 3860, "bottom": 3255, "left": 2225}, {"solidity": 0.996181137753183, "top": 810, "right": 5710, "bottom": 3250, "left": 4080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734765f.jpg"} -{"rects": [{"solidity": 0.9965295633977288, "top": 390, "right": 3180, "bottom": 2010, "left": 765}, {"solidity": 0.9994137571651902, "top": 2270, "right": 3190, "bottom": 3875, "left": 785}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/724429f.jpg"} -{"rects": [{"solidity": 0.996529919802591, "top": 2175, "right": 2735, "bottom": 3610, "left": 910}, {"solidity": 0.995427559478016, "top": 680, "right": 2740, "bottom": 2125, "left": 925}, {"solidity": 0.9970525761945592, "top": 700, "right": 5225, "bottom": 2130, "left": 3415}, {"solidity": 0.9932190021307012, "top": 2190, "right": 5180, "bottom": 3525, "left": 3450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719742f.jpg"} -{"rects": [{"solidity": 0.9965299403861554, "top": 2035, "right": 2795, "bottom": 3690, "left": 365}, {"solidity": 0.995858796462722, "top": 570, "right": 2675, "bottom": 2025, "left": 830}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703394f.jpg"} -{"rects": [{"solidity": 0.9965300732360937, "top": 485, "right": 2510, "bottom": 2905, "left": 885}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700848f.jpg"} -{"rects": [{"solidity": 0.9965303038782248, "top": 745, "right": 2070, "bottom": 3145, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710543f.jpg"} -{"rects": [{"solidity": 0.9965303771017908, "top": 435, "right": 3200, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720591f.jpg"} -{"rects": [{"solidity": 0.9965303967415899, "top": 540, "right": 2640, "bottom": 1755, "left": 985}, {"solidity": 0.9914547874203264, "top": 2105, "right": 2635, "bottom": 3320, "left": 1000}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704496f.jpg"} -{"rects": [{"solidity": 0.9965303977144478, "top": 4050, "right": 3035, "bottom": 5680, "left": 605}, {"solidity": 0.9961514619278851, "top": 2205, "right": 3060, "bottom": 3825, "left": 640}, {"solidity": 0.9994192101907522, "top": 380, "right": 3060, "bottom": 1985, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729940f.jpg"} -{"rects": [{"solidity": 0.9965305412450972, "top": 630, "right": 2775, "bottom": 2060, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706709f.jpg"} -{"rects": [{"solidity": 0.9965305448113666, "top": 430, "right": 3225, "bottom": 2040, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726747f.jpg"} -{"rects": [{"solidity": 0.9965307011177239, "top": 2085, "right": 5215, "bottom": 3520, "left": 3395}, {"solidity": 0.9953976364132766, "top": 660, "right": 2690, "bottom": 2080, "left": 865}, {"solidity": 0.9946447935155961, "top": 665, "right": 5250, "bottom": 1810, "left": 3415}, {"solidity": 0.9959164257296068, "top": 2390, "right": 2690, "bottom": 3515, "left": 870}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707191f.jpg"} -{"rects": [{"solidity": 0.9965309470163591, "top": 430, "right": 3060, "bottom": 2065, "left": 630}, {"solidity": 0.9974116472673522, "top": 4185, "right": 3060, "bottom": 5815, "left": 645}, {"solidity": 0.9990272342310816, "top": 2320, "right": 3060, "bottom": 3945, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724412f.jpg"} -{"rects": [{"solidity": 0.9965311663590775, "top": 470, "right": 2995, "bottom": 2090, "left": 575}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703014f.jpg"} -{"rects": [{"solidity": 0.9965312678610142, "top": 780, "right": 2025, "bottom": 3180, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724051f.jpg"} -{"rects": [{"solidity": 0.9965313643725212, "top": 370, "right": 3045, "bottom": 2025, "left": 625}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702277f.jpg"} -{"rects": [{"solidity": 0.9965315304829586, "top": 445, "right": 3200, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703289f.jpg"} -{"rects": [{"solidity": 0.9965317417596826, "top": 485, "right": 4940, "bottom": 3675, "left": 935}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720840f.jpg"} -{"rects": [{"solidity": 0.9965317690519698, "top": 935, "right": 3625, "bottom": 5020, "left": 340}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/721646f.jpg"} -{"rects": [{"solidity": 0.9965317967035474, "top": 870, "right": 3395, "bottom": 2870, "left": 345}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708042f.jpg"} -{"rects": [{"solidity": 0.9965318665010565, "top": 370, "right": 3215, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701452f.jpg"} -{"rects": [{"solidity": 0.9965320693191679, "top": 850, "right": 2070, "bottom": 3250, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712367f.jpg"} -{"rects": [{"solidity": 0.9965320790855933, "top": 465, "right": 3130, "bottom": 2065, "left": 715}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700317f.jpg"} -{"rects": [{"solidity": 0.9965321157635785, "top": 380, "right": 3090, "bottom": 1995, "left": 665}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729856f.jpg"} -{"rects": [{"solidity": 0.9965321563682219, "top": 385, "right": 3220, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703927f.jpg"} -{"rects": [{"solidity": 0.9965321868493822, "top": 940, "right": 3880, "bottom": 3355, "left": 2250}, {"solidity": 0.9977415988446291, "top": 965, "right": 5740, "bottom": 3360, "left": 4110}, {"solidity": 0.998209102698697, "top": 935, "right": 2010, "bottom": 3340, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726684f.jpg"} -{"rects": [{"solidity": 0.9965322650819075, "top": 785, "right": 2065, "bottom": 3200, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700064f.jpg"} -{"rects": [{"solidity": 0.9965322948610478, "top": 2220, "right": 3375, "bottom": 4160, "left": 295}, {"solidity": 0.9974378539807001, "top": 450, "right": 3160, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717781f.jpg"} -{"rects": [{"solidity": 0.9965324027084521, "top": 335, "right": 3135, "bottom": 2085, "left": 540}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723847f.jpg"} -{"rects": [{"solidity": 0.9965324436618631, "top": 810, "right": 2240, "bottom": 3510, "left": 430}], "shape": {"h": 4410, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711684f.jpg"} -{"rects": [{"solidity": 0.9965324765886447, "top": 2255, "right": 3255, "bottom": 3890, "left": 825}, {"solidity": 0.9978203017743394, "top": 415, "right": 3230, "bottom": 2030, "left": 830}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727820f.jpg"} -{"rects": [{"solidity": 0.9965326712590388, "top": 415, "right": 3260, "bottom": 2015, "left": 865}], "shape": {"h": 6075, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/728165f.jpg"} -{"rects": [{"solidity": 0.9965328099511929, "top": 805, "right": 2045, "bottom": 3215, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710492f.jpg"} -{"rects": [{"solidity": 0.9965332422484765, "top": 780, "right": 5705, "bottom": 3210, "left": 4075}, {"solidity": 0.9951640759930915, "top": 780, "right": 1970, "bottom": 3210, "left": 330}, {"solidity": 0.9957652507949345, "top": 815, "right": 3765, "bottom": 3125, "left": 2240}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730516f.jpg"} -{"rects": [{"solidity": 0.9965332492908919, "top": 325, "right": 2415, "bottom": 2745, "left": 790}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700210f.jpg"} -{"rects": [{"solidity": 0.9965332934424633, "top": 695, "right": 3325, "bottom": 2610, "left": 540}, {"solidity": 0.9931717770051929, "top": 3260, "right": 3290, "bottom": 5175, "left": 575}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715390f.jpg"} -{"rects": [{"solidity": 0.9965333367351494, "top": 800, "right": 5670, "bottom": 3235, "left": 4020}, {"solidity": 0.9966525193860293, "top": 795, "right": 3810, "bottom": 3220, "left": 2170}, {"solidity": 0.9975562103851386, "top": 785, "right": 1960, "bottom": 3205, "left": 345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700717f.jpg"} -{"rects": [{"solidity": 0.9965334792921, "top": 490, "right": 2815, "bottom": 1985, "left": 905}, {"solidity": 0.9965457217135752, "top": 480, "right": 5250, "bottom": 1950, "left": 3350}, {"solidity": 0.9957080563168901, "top": 2115, "right": 2825, "bottom": 3595, "left": 930}, {"solidity": 0.9975413927753337, "top": 2080, "right": 5235, "bottom": 3525, "left": 3365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731444f.jpg"} -{"rects": [{"solidity": 0.9965334851955874, "top": 650, "right": 2505, "bottom": 3490, "left": 450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709238f.jpg"} -{"rects": [{"solidity": 0.996533557838879, "top": 740, "right": 2015, "bottom": 3175, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722978f.jpg"} -{"rects": [{"solidity": 0.9965335848935932, "top": 755, "right": 3875, "bottom": 3195, "left": 2255}, {"solidity": 0.9968395916470343, "top": 735, "right": 2035, "bottom": 3170, "left": 410}, {"solidity": 0.9973838921120969, "top": 755, "right": 5720, "bottom": 3185, "left": 4105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731141f.jpg"} -{"rects": [{"solidity": 0.996533823330999, "top": 625, "right": 3290, "bottom": 2255, "left": 870}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722391f.jpg"} -{"rects": [{"solidity": 0.9965338343935973, "top": 755, "right": 2010, "bottom": 3185, "left": 375}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703833f.jpg"} -{"rects": [{"solidity": 0.9965338562841791, "top": 325, "right": 2430, "bottom": 2755, "left": 790}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711021f.jpg"} -{"rects": [{"solidity": 0.9965339486474545, "top": 740, "right": 2565, "bottom": 2160, "left": 755}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726357f.jpg"} -{"rects": [{"solidity": 0.9965340655936452, "top": 420, "right": 5130, "bottom": 3675, "left": 1060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708474f.jpg"} -{"rects": [{"solidity": 0.9965341281784157, "top": 1030, "right": 3555, "bottom": 5045, "left": 310}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722041f.jpg"} -{"rects": [{"solidity": 0.9965342205384543, "top": 895, "right": 3835, "bottom": 3310, "left": 2210}, {"solidity": 0.9975761233548789, "top": 900, "right": 2015, "bottom": 3310, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700762f.jpg"} -{"rects": [{"solidity": 0.9965342301039731, "top": 2270, "right": 3145, "bottom": 3890, "left": 720}, {"solidity": 0.9990705629871073, "top": 415, "right": 3140, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729519f.jpg"} -{"rects": [{"solidity": 0.9965342711438182, "top": 4075, "right": 3230, "bottom": 5705, "left": 790}, {"solidity": 0.9975987056671826, "top": 440, "right": 3220, "bottom": 2060, "left": 790}, {"solidity": 0.9983427734343696, "top": 2260, "right": 3225, "bottom": 3875, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733789f.jpg"} -{"rects": [{"solidity": 0.9965342713087405, "top": 960, "right": 3900, "bottom": 3360, "left": 2255}, {"solidity": 0.9964119627313404, "top": 965, "right": 2100, "bottom": 3350, "left": 465}, {"solidity": 0.9953801063072312, "top": 985, "right": 5645, "bottom": 3370, "left": 4040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721975f.jpg"} -{"rects": [{"solidity": 0.9965342729948812, "top": 690, "right": 2745, "bottom": 2110, "left": 905}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703720f.jpg"} -{"rects": [{"solidity": 0.9965342825028101, "top": 635, "right": 2665, "bottom": 2035, "left": 835}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704827f.jpg"} -{"rects": [{"solidity": 0.9965347279825519, "top": 450, "right": 3180, "bottom": 2075, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729814f.jpg"} -{"rects": [{"solidity": 0.9965347637686606, "top": 800, "right": 2025, "bottom": 3190, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719452f.jpg"} -{"rects": [{"solidity": 0.9965349492745151, "top": 795, "right": 2085, "bottom": 3205, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709151f.jpg"} -{"rects": [{"solidity": 0.9965349919785393, "top": 725, "right": 3880, "bottom": 3120, "left": 2280}, {"solidity": 0.9951078690652639, "top": 930, "right": 2025, "bottom": 2765, "left": 600}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704916f.jpg"} -{"rects": [{"solidity": 0.9965351053700959, "top": 815, "right": 1990, "bottom": 3220, "left": 390}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712713f.jpg"} -{"rects": [{"solidity": 0.996535337488476, "top": 1170, "right": 3425, "bottom": 4840, "left": 445}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721653f.jpg"} -{"rects": [{"solidity": 0.9965354068694856, "top": 2070, "right": 2825, "bottom": 3485, "left": 1000}, {"solidity": 0.9965788191342484, "top": 475, "right": 2800, "bottom": 1870, "left": 1015}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703009f.jpg"} -{"rects": [{"solidity": 0.9965356407617088, "top": 775, "right": 2030, "bottom": 3195, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721145f.jpg"} -{"rects": [{"solidity": 0.996536164070435, "top": 385, "right": 3270, "bottom": 2440, "left": 435}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706938f.jpg"} -{"rects": [{"solidity": 0.996536201237627, "top": 2225, "right": 3110, "bottom": 3845, "left": 695}, {"solidity": 0.9961529956554541, "top": 390, "right": 3100, "bottom": 2005, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726608f.jpg"} -{"rects": [{"solidity": 0.9965362566761122, "top": 2315, "right": 3085, "bottom": 3920, "left": 680}, {"solidity": 0.9963121098872926, "top": 470, "right": 3085, "bottom": 2075, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/734778f.jpg"} -{"rects": [{"solidity": 0.9965362591598926, "top": 735, "right": 2755, "bottom": 2150, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728242f.jpg"} -{"rects": [{"solidity": 0.9965366272783441, "top": 3415, "right": 3180, "bottom": 5340, "left": 470}, {"solidity": 0.9954556899507074, "top": 810, "right": 3200, "bottom": 2740, "left": 500}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717776f.jpg"} -{"rects": [{"solidity": 0.9965366475917204, "top": 815, "right": 3980, "bottom": 3225, "left": 2360}, {"solidity": 0.9968365267019975, "top": 820, "right": 2065, "bottom": 3225, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721778f.jpg"} -{"rects": [{"solidity": 0.996536726543679, "top": 2235, "right": 3150, "bottom": 3855, "left": 730}, {"solidity": 0.995562538622349, "top": 465, "right": 3150, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712083f.jpg"} -{"rects": [{"solidity": 0.9965367532374169, "top": 445, "right": 3170, "bottom": 2140, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734718f.jpg"} -{"rects": [{"solidity": 0.9965368784904577, "top": 770, "right": 2025, "bottom": 3170, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703025f.jpg"} -{"rects": [{"solidity": 0.9965369683430257, "top": 2500, "right": 2900, "bottom": 4925, "left": 1260}, {"solidity": 0.9967186937090445, "top": 500, "right": 3280, "bottom": 2120, "left": 880}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707566f.jpg"} -{"rects": [{"solidity": 0.9965371727266144, "top": 405, "right": 3235, "bottom": 2005, "left": 840}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710757f.jpg"} -{"rects": [{"solidity": 0.9965374332201871, "top": 595, "right": 5100, "bottom": 2030, "left": 3295}, {"solidity": 0.9941365668990955, "top": 605, "right": 2880, "bottom": 2050, "left": 1065}, {"solidity": 0.9942897964975461, "top": 2250, "right": 2865, "bottom": 3675, "left": 1055}, {"solidity": 0.995076874212151, "top": 2270, "right": 5130, "bottom": 3665, "left": 3305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725562f.jpg"} -{"rects": [{"solidity": 0.9965374407338693, "top": 790, "right": 3810, "bottom": 3205, "left": 2190}, {"solidity": 0.9977256091184775, "top": 800, "right": 1945, "bottom": 3195, "left": 335}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733895f.jpg"} -{"rects": [{"solidity": 0.9965375984278108, "top": 835, "right": 2075, "bottom": 3220, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711912f.jpg"} -{"rects": [{"solidity": 0.9965377050021981, "top": 2295, "right": 3080, "bottom": 3920, "left": 665}, {"solidity": 0.9977906389538592, "top": 460, "right": 3075, "bottom": 2045, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709240f.jpg"} -{"rects": [{"solidity": 0.9965377305625139, "top": 455, "right": 4965, "bottom": 3515, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731127f.jpg"} -{"rects": [{"solidity": 0.9965380409609443, "top": 2080, "right": 2755, "bottom": 3515, "left": 910}, {"solidity": 0.9965173239534584, "top": 660, "right": 5220, "bottom": 2065, "left": 3410}, {"solidity": 0.993300272749814, "top": 645, "right": 2720, "bottom": 2065, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726187f.jpg"} -{"rects": [{"solidity": 0.9965381240296622, "top": 415, "right": 3185, "bottom": 2040, "left": 765}, {"solidity": 0.9957296070781436, "top": 4050, "right": 3155, "bottom": 5665, "left": 750}, {"solidity": 0.9969293857781035, "top": 2245, "right": 3170, "bottom": 3830, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713784f.jpg"} -{"rects": [{"solidity": 0.9965381259044063, "top": 1100, "right": 3405, "bottom": 5010, "left": 480}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722745f.jpg"} -{"rects": [{"solidity": 0.9965383399953202, "top": 365, "right": 3350, "bottom": 2295, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724647f.jpg"} -{"rects": [{"solidity": 0.9965383818825548, "top": 2335, "right": 3180, "bottom": 3940, "left": 785}, {"solidity": 0.99535544397463, "top": 650, "right": 3175, "bottom": 2245, "left": 785}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707855f.jpg"} -{"rects": [{"solidity": 0.9965384842966187, "top": 935, "right": 3145, "bottom": 2535, "left": 750}, {"solidity": 0.9953179738150898, "top": 3235, "right": 3180, "bottom": 4830, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730883f.jpg"} -{"rects": [{"solidity": 0.9965385047238664, "top": 395, "right": 3060, "bottom": 2030, "left": 630}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728371f.jpg"} -{"rects": [{"solidity": 0.9965385702175756, "top": 810, "right": 3955, "bottom": 3225, "left": 2320}, {"solidity": 0.9962982038241164, "top": 810, "right": 2050, "bottom": 3225, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707734f.jpg"} -{"rects": [{"solidity": 0.9965386268337728, "top": 570, "right": 4300, "bottom": 2375, "left": 3095}, {"solidity": 0.9955401012926147, "top": 580, "right": 1545, "bottom": 2380, "left": 325}, {"solidity": 0.995439123096958, "top": 575, "right": 2920, "bottom": 2365, "left": 1710}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716390f.jpg"} -{"rects": [{"solidity": 0.9965386446856374, "top": 805, "right": 2040, "bottom": 3200, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724498f.jpg"} -{"rects": [{"solidity": 0.9965386629090744, "top": 725, "right": 3820, "bottom": 3140, "left": 2205}, {"solidity": 0.9961606741462422, "top": 725, "right": 1965, "bottom": 3125, "left": 365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707861f.jpg"} -{"rects": [{"solidity": 0.9965389058882105, "top": 685, "right": 2700, "bottom": 2120, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704990f.jpg"} -{"rects": [{"solidity": 0.9965389102960065, "top": 780, "right": 2025, "bottom": 3185, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724205f.jpg"} -{"rects": [{"solidity": 0.9965391752459956, "top": 2450, "right": 3185, "bottom": 4075, "left": 1140}, {"solidity": 0.9977368548025779, "top": 760, "right": 3195, "bottom": 2355, "left": 1130}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/706440f.jpg"} -{"rects": [{"solidity": 0.996539200443273, "top": 470, "right": 3120, "bottom": 4180, "left": 875}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714864f.jpg"} -{"rects": [{"solidity": 0.9965392712388004, "top": 435, "right": 3165, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726284f.jpg"} -{"rects": [{"solidity": 0.9965394291862246, "top": 4015, "right": 3185, "bottom": 5625, "left": 795}, {"solidity": 0.9955317276990046, "top": 540, "right": 3195, "bottom": 2135, "left": 780}, {"solidity": 0.9971433200308151, "top": 2270, "right": 3195, "bottom": 3865, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733138f.jpg"} -{"rects": [{"solidity": 0.9965395146024878, "top": 1245, "right": 3855, "bottom": 5580, "left": 420}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708322f.jpg"} -{"rects": [{"solidity": 0.9965395182578439, "top": 505, "right": 3055, "bottom": 2150, "left": 620}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707362f.jpg"} -{"rects": [{"solidity": 0.9965395248129604, "top": 550, "right": 3140, "bottom": 2170, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722088f.jpg"} -{"rects": [{"solidity": 0.9965395248129604, "top": 680, "right": 3875, "bottom": 3105, "left": 2260}, {"solidity": 0.997624718419405, "top": 685, "right": 5715, "bottom": 3110, "left": 4105}, {"solidity": 0.9959339082317349, "top": 690, "right": 2035, "bottom": 3120, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725309f.jpg"} -{"rects": [{"solidity": 0.9965395491508635, "top": 420, "right": 3160, "bottom": 2050, "left": 730}, {"solidity": 0.9956162308571135, "top": 2285, "right": 3160, "bottom": 3905, "left": 725}, {"solidity": 0.9955934764081507, "top": 4115, "right": 3140, "bottom": 5740, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733935f.jpg"} -{"rects": [{"solidity": 0.9965395999934586, "top": 425, "right": 3200, "bottom": 2030, "left": 795}, {"solidity": 0.9959286577077389, "top": 2305, "right": 3195, "bottom": 3905, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717787f.jpg"} -{"rects": [{"solidity": 0.9965396791100722, "top": 840, "right": 3920, "bottom": 3235, "left": 2310}, {"solidity": 0.9957273994964081, "top": 830, "right": 2025, "bottom": 3225, "left": 420}, {"solidity": 0.9954822731579209, "top": 850, "right": 5825, "bottom": 3235, "left": 4235}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733371f.jpg"} -{"rects": [{"solidity": 0.9965398475111436, "top": 2245, "right": 3350, "bottom": 3880, "left": 920}, {"solidity": 0.9961102335461918, "top": 390, "right": 3360, "bottom": 2025, "left": 925}, {"solidity": 0.9955657585502627, "top": 4100, "right": 3325, "bottom": 5735, "left": 900}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725168f.jpg"} -{"rects": [{"solidity": 0.9965400490132852, "top": 760, "right": 3840, "bottom": 3175, "left": 2215}, {"solidity": 0.9964490152323664, "top": 775, "right": 5690, "bottom": 3190, "left": 4065}, {"solidity": 0.996683676833208, "top": 775, "right": 1995, "bottom": 3165, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714704f.jpg"} -{"rects": [{"solidity": 0.9965400579428374, "top": 765, "right": 3830, "bottom": 3210, "left": 2205}, {"solidity": 0.9954339221001386, "top": 785, "right": 5695, "bottom": 3225, "left": 4075}, {"solidity": 0.9957624110041763, "top": 795, "right": 2010, "bottom": 3220, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722822f.jpg"} -{"rects": [{"solidity": 0.9965400835687954, "top": 415, "right": 3170, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715741f.jpg"} -{"rects": [{"solidity": 0.9965400993612491, "top": 800, "right": 2055, "bottom": 3200, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718034f.jpg"} -{"rects": [{"solidity": 0.9965401906841674, "top": 455, "right": 3215, "bottom": 2050, "left": 815}, {"solidity": 0.9950870630383815, "top": 2280, "right": 3200, "bottom": 3890, "left": 800}, {"solidity": 0.9945213627201533, "top": 4110, "right": 3205, "bottom": 5710, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710315f.jpg"} -{"rects": [{"solidity": 0.9965402657464244, "top": 2080, "right": 2155, "bottom": 3590, "left": 255}, {"solidity": 0.9951861808717111, "top": 405, "right": 5755, "bottom": 1890, "left": 3865}, {"solidity": 0.9963993719205154, "top": 970, "right": 3745, "bottom": 2860, "left": 2255}, {"solidity": 0.996874928820354, "top": 430, "right": 2135, "bottom": 1900, "left": 245}, {"solidity": 0.9956573542062481, "top": 2095, "right": 5755, "bottom": 3560, "left": 3875}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731446f.jpg"} -{"rects": [{"solidity": 0.9965403491833615, "top": 405, "right": 3055, "bottom": 1985, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729861f.jpg"} -{"rects": [{"solidity": 0.9965405837201287, "top": 820, "right": 2060, "bottom": 3255, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724434f.jpg"} -{"rects": [{"solidity": 0.9965405889104314, "top": 750, "right": 3845, "bottom": 3160, "left": 2230}, {"solidity": 0.9960948505756164, "top": 745, "right": 2000, "bottom": 3155, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730187f.jpg"} -{"rects": [{"solidity": 0.9965407766577625, "top": 535, "right": 2965, "bottom": 2160, "left": 565}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702192f.jpg"} -{"rects": [{"solidity": 0.996540963866966, "top": 750, "right": 2050, "bottom": 3180, "left": 425}, {"solidity": 0.9978035599027658, "top": 745, "right": 3855, "bottom": 3165, "left": 2235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707117f.jpg"} -{"rects": [{"solidity": 0.9965410210804315, "top": 870, "right": 3910, "bottom": 3300, "left": 2265}, {"solidity": 0.9955046463644542, "top": 850, "right": 2035, "bottom": 3285, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723833f.jpg"} -{"rects": [{"solidity": 0.9965410599859942, "top": 625, "right": 2565, "bottom": 3685, "left": 520}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719624f.jpg"} -{"rects": [{"solidity": 0.9965411965216229, "top": 825, "right": 3230, "bottom": 2735, "left": 455}, {"solidity": 0.9957374878780995, "top": 3330, "right": 3190, "bottom": 5265, "left": 485}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715367f.jpg"} -{"rects": [{"solidity": 0.9965412115770913, "top": 4090, "right": 3090, "bottom": 5705, "left": 670}, {"solidity": 0.9975661895573914, "top": 2230, "right": 3095, "bottom": 3830, "left": 675}, {"solidity": 0.9961220008133388, "top": 385, "right": 3105, "bottom": 1990, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729686f.jpg"} -{"rects": [{"solidity": 0.9965412883700822, "top": 630, "right": 2700, "bottom": 3655, "left": 330}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508525.jpg"} -{"rects": [{"solidity": 0.9965413738557685, "top": 620, "right": 3660, "bottom": 3035, "left": 2050}, {"solidity": 0.9974535202484117, "top": 615, "right": 5575, "bottom": 3030, "left": 3970}, {"solidity": 0.9931329437985663, "top": 870, "right": 1785, "bottom": 2690, "left": 400}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706599f.jpg"} -{"rects": [{"solidity": 0.9965413872916709, "top": 460, "right": 3225, "bottom": 2045, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726118f.jpg"} -{"rects": [{"solidity": 0.9965413979831997, "top": 765, "right": 2605, "bottom": 2200, "left": 765}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705190f.jpg"} -{"rects": [{"solidity": 0.9965415003926471, "top": 375, "right": 3150, "bottom": 2000, "left": 730}, {"solidity": 0.9960868624764851, "top": 2215, "right": 3160, "bottom": 3815, "left": 755}, {"solidity": 0.9974802692549974, "top": 4075, "right": 3145, "bottom": 5665, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700891f.jpg"} -{"rects": [{"solidity": 0.9965415951492835, "top": 2295, "right": 3180, "bottom": 3920, "left": 755}, {"solidity": 0.9942075247803434, "top": 460, "right": 3175, "bottom": 2090, "left": 750}, {"solidity": 0.9950322273314992, "top": 4120, "right": 3180, "bottom": 5730, "left": 760}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731170f.jpg"} -{"rects": [{"solidity": 0.9965417961188737, "top": 425, "right": 3190, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/733827f.jpg"} -{"rects": [{"solidity": 0.9965418253925172, "top": 975, "right": 2640, "bottom": 3405, "left": 1005}, {"solidity": 0.9971048450514356, "top": 985, "right": 5090, "bottom": 3405, "left": 3470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721458f.jpg"} -{"rects": [{"solidity": 0.9965418305496969, "top": 490, "right": 3000, "bottom": 2135, "left": 560}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725319f.jpg"} -{"rects": [{"solidity": 0.9965418523293234, "top": 1315, "right": 3310, "bottom": 4735, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713183f.jpg"} -{"rects": [{"solidity": 0.9965419750530511, "top": 545, "right": 3120, "bottom": 2160, "left": 700}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722634f.jpg"} -{"rects": [{"solidity": 0.9965422364057238, "top": 2310, "right": 3040, "bottom": 3935, "left": 615}, {"solidity": 0.9976683529566892, "top": 4150, "right": 3020, "bottom": 5770, "left": 600}, {"solidity": 0.9948620039162152, "top": 400, "right": 3050, "bottom": 2035, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731477f.jpg"} -{"rects": [{"solidity": 0.9965422787997851, "top": 435, "right": 3120, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728528f.jpg"} -{"rects": [{"solidity": 0.9965423822059026, "top": 845, "right": 2610, "bottom": 3275, "left": 980}, {"solidity": 0.9994512523784476, "top": 860, "right": 5110, "bottom": 3280, "left": 3510}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719802f.jpg"} -{"rects": [{"solidity": 0.9965425712046495, "top": 860, "right": 3880, "bottom": 3280, "left": 2255}, {"solidity": 0.9988225704193461, "top": 835, "right": 2035, "bottom": 3250, "left": 425}, {"solidity": 0.9962872012662598, "top": 845, "right": 5735, "bottom": 3260, "left": 4125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710369f.jpg"} -{"rects": [{"solidity": 0.9965427005138197, "top": 340, "right": 2985, "bottom": 2000, "left": 560}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704941f.jpg"} -{"rects": [{"solidity": 0.9965427775363616, "top": 2285, "right": 3090, "bottom": 3925, "left": 660}, {"solidity": 0.9963610271129106, "top": 445, "right": 3110, "bottom": 2075, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723208f.jpg"} -{"rects": [{"solidity": 0.9965429103453096, "top": 635, "right": 3175, "bottom": 2510, "left": 480}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721279f.jpg"} -{"rects": [{"solidity": 0.9965429105614403, "top": 330, "right": 3085, "bottom": 1970, "left": 670}, {"solidity": 0.9969257965348275, "top": 2065, "right": 3100, "bottom": 3690, "left": 685}, {"solidity": 0.9962581974159398, "top": 325, "right": 5610, "bottom": 1940, "left": 3200}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702296f.jpg"} -{"rects": [{"solidity": 0.9965429531391589, "top": 590, "right": 5330, "bottom": 3415, "left": 3490}, {"solidity": 0.9949554262531362, "top": 620, "right": 2800, "bottom": 3460, "left": 960}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702790f.jpg"} -{"rects": [{"solidity": 0.9965432367466737, "top": 805, "right": 3800, "bottom": 3225, "left": 2170}, {"solidity": 0.999961092395833, "top": 820, "right": 5680, "bottom": 3235, "left": 4075}, {"solidity": 0.9979197092136436, "top": 815, "right": 1915, "bottom": 3215, "left": 300}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720373f.jpg"} -{"rects": [{"solidity": 0.9965432562720299, "top": 835, "right": 2150, "bottom": 3250, "left": 525}, {"solidity": 0.9968602723697468, "top": 840, "right": 3990, "bottom": 3255, "left": 2370}, {"solidity": 0.9966192866923127, "top": 865, "right": 5820, "bottom": 3280, "left": 4210}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731633f.jpg"} -{"rects": [{"solidity": 0.9965432715371927, "top": 910, "right": 5290, "bottom": 3315, "left": 3690}, {"solidity": 0.9957885387742355, "top": 1105, "right": 3480, "bottom": 2920, "left": 2040}, {"solidity": 0.9945726183662594, "top": 1115, "right": 1855, "bottom": 2930, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703659f.jpg"} -{"rects": [{"solidity": 0.9965433019365725, "top": 895, "right": 3925, "bottom": 3340, "left": 2285}, {"solidity": 0.9965306790274464, "top": 910, "right": 2055, "bottom": 3345, "left": 420}, {"solidity": 0.9968007518554995, "top": 920, "right": 5775, "bottom": 3330, "left": 4150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724408f.jpg"} -{"rects": [{"solidity": 0.9965433344919035, "top": 665, "right": 2750, "bottom": 2110, "left": 915}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707292f.jpg"} -{"rects": [{"solidity": 0.996543414711227, "top": 460, "right": 3145, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718622f.jpg"} -{"rects": [{"solidity": 0.9965436274933771, "top": 400, "right": 3210, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706735f.jpg"} -{"rects": [{"solidity": 0.9965436747959091, "top": 415, "right": 3080, "bottom": 2040, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700632f.jpg"} -{"rects": [{"solidity": 0.9965438690390716, "top": 740, "right": 3955, "bottom": 3150, "left": 2340}, {"solidity": 0.9966015182063859, "top": 750, "right": 2110, "bottom": 3145, "left": 490}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724013f.jpg"} -{"rects": [{"solidity": 0.9965439122655717, "top": 485, "right": 3165, "bottom": 2100, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726857f.jpg"} -{"rects": [{"solidity": 0.9965439344900194, "top": 470, "right": 5085, "bottom": 3690, "left": 1005}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723922f.jpg"} -{"rects": [{"solidity": 0.996543947142721, "top": 405, "right": 3145, "bottom": 2055, "left": 710}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706810f.jpg"} -{"rects": [{"solidity": 0.9965441599193209, "top": 410, "right": 3155, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707260f.jpg"} -{"rects": [{"solidity": 0.9965443125949188, "top": 810, "right": 2055, "bottom": 3235, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722518f.jpg"} -{"rects": [{"solidity": 0.9965444552463639, "top": 410, "right": 3220, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727506f.jpg"} -{"rects": [{"solidity": 0.996544648218856, "top": 445, "right": 3185, "bottom": 2060, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705627f.jpg"} -{"rects": [{"solidity": 0.9965447225737354, "top": 850, "right": 2040, "bottom": 3275, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718672f.jpg"} -{"rects": [{"solidity": 0.996545422350516, "top": 900, "right": 1960, "bottom": 3290, "left": 375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719242f.jpg"} -{"rects": [{"solidity": 0.996545489821042, "top": 1020, "right": 2615, "bottom": 4035, "left": 180}], "shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508957.jpg"} -{"rects": [{"solidity": 0.9965457516659654, "top": 725, "right": 2830, "bottom": 2140, "left": 1005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704712f.jpg"} -{"rects": [{"solidity": 0.996546106432516, "top": 765, "right": 3880, "bottom": 3185, "left": 2240}, {"solidity": 0.9968778915900429, "top": 755, "right": 2030, "bottom": 3160, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716776f.jpg"} -{"rects": [{"solidity": 0.9965462447303916, "top": 665, "right": 2700, "bottom": 2070, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706729f.jpg"} -{"rects": [{"solidity": 0.9965462836472784, "top": 410, "right": 3130, "bottom": 2040, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701806f.jpg"} -{"rects": [{"solidity": 0.996546296890187, "top": 660, "right": 2665, "bottom": 2070, "left": 850}, {"solidity": 0.9951400914924073, "top": 2125, "right": 2655, "bottom": 3515, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703876f.jpg"} -{"rects": [{"solidity": 0.9965463479466585, "top": 390, "right": 3125, "bottom": 2025, "left": 715}, {"solidity": 0.9955156950672646, "top": 2245, "right": 3120, "bottom": 3855, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710766f.jpg"} -{"rects": [{"solidity": 0.9965463533554547, "top": 2200, "right": 3125, "bottom": 3835, "left": 725}, {"solidity": 0.9969181807849059, "top": 335, "right": 3145, "bottom": 1960, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704772f.jpg"} -{"rects": [{"solidity": 0.9965463583733091, "top": 515, "right": 3035, "bottom": 2140, "left": 615}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706604f.jpg"} -{"rects": [{"solidity": 0.9965463779045868, "top": 830, "right": 2035, "bottom": 3245, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706642f.jpg"} -{"rects": [{"solidity": 0.9965463901253275, "top": 720, "right": 3905, "bottom": 3170, "left": 2250}, {"solidity": 0.9973587538670838, "top": 725, "right": 2005, "bottom": 3155, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713383f.jpg"} -{"rects": [{"solidity": 0.9965465076932264, "top": 485, "right": 5180, "bottom": 1890, "left": 3370}, {"solidity": 0.9956044177110784, "top": 490, "right": 2770, "bottom": 1880, "left": 950}, {"solidity": 0.9967368490933138, "top": 2125, "right": 5160, "bottom": 3530, "left": 3400}, {"solidity": 0.9720749327701728, "top": 2145, "right": 2745, "bottom": 3535, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733451f.jpg"} -{"rects": [{"solidity": 0.9965465253374921, "top": 435, "right": 5105, "bottom": 3680, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700786f.jpg"} -{"rects": [{"solidity": 0.9965466839606802, "top": 3935, "right": 3150, "bottom": 5530, "left": 745}, {"solidity": 0.9974359824864004, "top": 2085, "right": 3135, "bottom": 3675, "left": 740}, {"solidity": 0.9975827619455753, "top": 265, "right": 3125, "bottom": 1845, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730159f.jpg"} -{"rects": [{"solidity": 0.9965468804302895, "top": 395, "right": 5065, "bottom": 3655, "left": 1045}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722254f.jpg"} -{"rects": [{"solidity": 0.9965469752250504, "top": 1055, "right": 3475, "bottom": 5135, "left": 250}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722240f.jpg"} -{"rects": [{"solidity": 0.9965470444304796, "top": 445, "right": 3130, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718364f.jpg"} -{"rects": [{"solidity": 0.9965470760345995, "top": 765, "right": 5760, "bottom": 3195, "left": 4135}, {"solidity": 0.9972570162722134, "top": 775, "right": 3915, "bottom": 3185, "left": 2310}, {"solidity": 0.9801130524152107, "top": 780, "right": 2065, "bottom": 3170, "left": 1215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734075f.jpg"} -{"rects": [{"solidity": 0.9965471754114039, "top": 2900, "right": 2125, "bottom": 5525, "left": 665}, {"solidity": 0.99622169931581, "top": 1065, "right": 4080, "bottom": 3155, "left": 2630}, {"solidity": 0.9949187193584883, "top": 1075, "right": 2290, "bottom": 2500, "left": 500}, {"solidity": 0.9703605049385371, "top": 3370, "right": 4250, "bottom": 4255, "left": 2480}], "shape": {"h": 5995, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/465664.jpg"} -{"rects": [{"solidity": 0.9965472242742174, "top": 375, "right": 3275, "bottom": 1980, "left": 860}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/732505f.jpg"} -{"rects": [{"solidity": 0.9965475764767076, "top": 770, "right": 1975, "bottom": 3190, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734281f.jpg"} -{"rects": [{"solidity": 0.996547610966184, "top": 385, "right": 3295, "bottom": 2005, "left": 875}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727797f.jpg"} -{"rects": [{"solidity": 0.9965476999294587, "top": 2290, "right": 3150, "bottom": 3900, "left": 740}, {"solidity": 0.9961269749808477, "top": 455, "right": 3140, "bottom": 2055, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716669f.jpg"} -{"rects": [{"solidity": 0.996547726641267, "top": 420, "right": 3150, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700904f.jpg"} -{"rects": [{"solidity": 0.9965480870649152, "top": 425, "right": 3235, "bottom": 2015, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711760f.jpg"} -{"rects": [{"solidity": 0.9965482717520858, "top": 2255, "right": 3255, "bottom": 3895, "left": 825}, {"solidity": 0.9958278950592144, "top": 380, "right": 3270, "bottom": 2010, "left": 845}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703010f.jpg"} -{"rects": [{"solidity": 0.9965484069939501, "top": 2220, "right": 3055, "bottom": 3845, "left": 630}, {"solidity": 0.9960136582796093, "top": 395, "right": 3045, "bottom": 2015, "left": 625}, {"solidity": 0.9932864944231216, "top": 4060, "right": 3050, "bottom": 5695, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731293f.jpg"} -{"rects": [{"solidity": 0.9965485797209448, "top": 320, "right": 3170, "bottom": 1925, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724615f.jpg"} -{"rects": [{"solidity": 0.9965488746918121, "top": 495, "right": 5040, "bottom": 3735, "left": 1015}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709140f.jpg"} -{"rects": [{"solidity": 0.9965490257709849, "top": 415, "right": 3185, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717983f.jpg"} -{"rects": [{"solidity": 0.9965491504322628, "top": 1120, "right": 3620, "bottom": 5045, "left": 395}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704676f.jpg"} -{"rects": [{"solidity": 0.9965491630747476, "top": 2225, "right": 3195, "bottom": 3835, "left": 775}, {"solidity": 0.9976255320536864, "top": 4060, "right": 3205, "bottom": 5660, "left": 790}, {"solidity": 0.9966173016701462, "top": 420, "right": 3175, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703095f.jpg"} -{"rects": [{"solidity": 0.9965491838238145, "top": 875, "right": 2025, "bottom": 3290, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700764f.jpg"} -{"rects": [{"solidity": 0.996549211454692, "top": 2205, "right": 3260, "bottom": 3840, "left": 845}, {"solidity": 0.9969230075991413, "top": 430, "right": 3255, "bottom": 2060, "left": 845}, {"solidity": 0.9968533119457722, "top": 3940, "right": 3275, "bottom": 5560, "left": 870}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733186f.jpg"} -{"rects": [{"solidity": 0.9965492645499585, "top": 2290, "right": 3295, "bottom": 3910, "left": 865}, {"solidity": 0.9712769762091586, "top": 825, "right": 3185, "bottom": 1960, "left": 985}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727537f.jpg"} -{"rects": [{"solidity": 0.9965493043886925, "top": 2315, "right": 3090, "bottom": 3935, "left": 675}, {"solidity": 0.9971476823710655, "top": 475, "right": 3115, "bottom": 2090, "left": 695}, {"solidity": 0.9941171912332588, "top": 4155, "right": 3085, "bottom": 5780, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729857f.jpg"} -{"rects": [{"solidity": 0.9965496535047146, "top": 860, "right": 2090, "bottom": 3270, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715651f.jpg"} -{"rects": [{"solidity": 0.9965496615312792, "top": 575, "right": 2330, "bottom": 3330, "left": 445}, {"solidity": 0.9996818915120216, "top": 780, "right": 4100, "bottom": 3185, "left": 2490}, {"solidity": 0.9957337679457373, "top": 975, "right": 5710, "bottom": 2820, "left": 4280}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704829f.jpg"} -{"rects": [{"solidity": 0.996549733854935, "top": 700, "right": 2375, "bottom": 3125, "left": 750}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707330f.jpg"} -{"rects": [{"solidity": 0.9965497487175481, "top": 800, "right": 3865, "bottom": 3210, "left": 2250}, {"solidity": 0.9972275083666907, "top": 825, "right": 2010, "bottom": 3225, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732516f.jpg"} -{"rects": [{"solidity": 0.996549816619076, "top": 495, "right": 3020, "bottom": 2125, "left": 585}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703212f.jpg"} -{"rects": [{"solidity": 0.9965498786245389, "top": 880, "right": 3930, "bottom": 3310, "left": 2285}, {"solidity": 0.9964942108139375, "top": 860, "right": 2050, "bottom": 3295, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719562f.jpg"} -{"rects": [{"solidity": 0.9965499686136113, "top": 445, "right": 2880, "bottom": 1860, "left": 1075}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709652f.jpg"} -{"rects": [{"solidity": 0.9965499861804348, "top": 420, "right": 3335, "bottom": 2035, "left": 935}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725126f.jpg"} -{"rects": [{"solidity": 0.9965501713749818, "top": 2215, "right": 3180, "bottom": 3675, "left": 835}, {"solidity": 0.9963413720790892, "top": 445, "right": 3190, "bottom": 1890, "left": 855}, {"solidity": 0.9947808388456786, "top": 4030, "right": 2870, "bottom": 5470, "left": 1040}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/704737f.jpg"} -{"rects": [{"solidity": 0.9965502520175172, "top": 770, "right": 2640, "bottom": 3780, "left": 210}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508019.jpg"} -{"rects": [{"solidity": 0.9965503562770881, "top": 4060, "right": 3140, "bottom": 5755, "left": 595}, {"solidity": 0.9968351880678211, "top": 2225, "right": 3090, "bottom": 3845, "left": 675}, {"solidity": 0.9950822998219064, "top": 375, "right": 3100, "bottom": 1995, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718371f.jpg"} -{"rects": [{"solidity": 0.9965505488564511, "top": 355, "right": 2410, "bottom": 1545, "left": 605}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716478f.jpg"} -{"rects": [{"solidity": 0.9965506746474586, "top": 2080, "right": 5260, "bottom": 3500, "left": 3420}, {"solidity": 0.9959763337066292, "top": 2090, "right": 2645, "bottom": 3505, "left": 840}, {"solidity": 0.9968833571270584, "top": 620, "right": 2635, "bottom": 2025, "left": 850}, {"solidity": 0.9975397937094104, "top": 630, "right": 5220, "bottom": 2025, "left": 3445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705277f.jpg"} -{"rects": [{"solidity": 0.9965506824065682, "top": 845, "right": 3165, "bottom": 2350, "left": 965}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507811.jpg"} -{"rects": [{"solidity": 0.9965507172903718, "top": 815, "right": 3910, "bottom": 3235, "left": 2285}, {"solidity": 0.9968013966912334, "top": 800, "right": 2075, "bottom": 3225, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733978f.jpg"} -{"rects": [{"solidity": 0.9965508471882252, "top": 515, "right": 3435, "bottom": 2165, "left": 1005}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712103f.jpg"} -{"rects": [{"solidity": 0.9965509815401802, "top": 475, "right": 3135, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/701144f.jpg"} -{"rects": [{"solidity": 0.996551000306793, "top": 390, "right": 3150, "bottom": 2010, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728691f.jpg"} -{"rects": [{"solidity": 0.9965510265031455, "top": 400, "right": 3190, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707008f.jpg"} -{"rects": [{"solidity": 0.9965510690703281, "top": 545, "right": 3150, "bottom": 2150, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709622f.jpg"} -{"rects": [{"solidity": 0.9965511922512568, "top": 500, "right": 2450, "bottom": 2610, "left": 925}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509311.jpg"} -{"rects": [{"solidity": 0.9965513144501209, "top": 425, "right": 3095, "bottom": 2050, "left": 670}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728998f.jpg"} -{"rects": [{"solidity": 0.9965513188499034, "top": 780, "right": 4650, "bottom": 3270, "left": 1370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722201f.jpg"} -{"rects": [{"solidity": 0.9965513691579164, "top": 380, "right": 3090, "bottom": 2005, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728784f.jpg"} -{"rects": [{"solidity": 0.9965513867002305, "top": 4080, "right": 3175, "bottom": 5655, "left": 800}, {"solidity": 0.9927673404031563, "top": 2255, "right": 3165, "bottom": 3835, "left": 800}, {"solidity": 0.997095595898298, "top": 435, "right": 3165, "bottom": 2000, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717436f.jpg"} -{"rects": [{"solidity": 0.9965514515523408, "top": 2080, "right": 3320, "bottom": 3680, "left": 915}, {"solidity": 0.9935127660722078, "top": 405, "right": 3080, "bottom": 1835, "left": 1265}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727923f.jpg"} -{"rects": [{"solidity": 0.9965515337881499, "top": 795, "right": 3805, "bottom": 3200, "left": 2195}, {"solidity": 0.9973941732004022, "top": 805, "right": 2070, "bottom": 3200, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707412f.jpg"} -{"rects": [{"solidity": 0.9965515471523799, "top": 910, "right": 5745, "bottom": 3330, "left": 4125}, {"solidity": 0.9992576957585381, "top": 905, "right": 3875, "bottom": 3310, "left": 2255}, {"solidity": 0.9975609598302376, "top": 905, "right": 2035, "bottom": 3315, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731667f.jpg"} -{"rects": [{"solidity": 0.9965520956793449, "top": 805, "right": 2000, "bottom": 3210, "left": 390}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718310f.jpg"} -{"rects": [{"solidity": 0.996552107310104, "top": 2120, "right": 3135, "bottom": 3760, "left": 695}, {"solidity": 0.9982448569477901, "top": 3885, "right": 3105, "bottom": 5500, "left": 685}, {"solidity": 0.9619898797397647, "top": 910, "right": 2985, "bottom": 1870, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734144f.jpg"} -{"rects": [{"solidity": 0.9965523119128559, "top": 820, "right": 3770, "bottom": 3245, "left": 2145}, {"solidity": 0.9993826031281442, "top": 830, "right": 1935, "bottom": 3235, "left": 335}, {"solidity": 0.9611511842073235, "top": 900, "right": 5420, "bottom": 3105, "left": 4005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732303f.jpg"} -{"rects": [{"solidity": 0.9965524129887036, "top": 410, "right": 3230, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725425f.jpg"} -{"rects": [{"solidity": 0.9965524860442295, "top": 895, "right": 3855, "bottom": 3305, "left": 2245}, {"solidity": 0.995211513532104, "top": 890, "right": 2195, "bottom": 3290, "left": 610}, {"solidity": 0.9958408355535476, "top": 895, "right": 5510, "bottom": 3295, "left": 3925}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708655f.jpg"} -{"rects": [{"solidity": 0.9965526292203885, "top": 800, "right": 2045, "bottom": 3225, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707842f.jpg"} -{"rects": [{"solidity": 0.9965527341549693, "top": 2315, "right": 3310, "bottom": 3945, "left": 895}, {"solidity": 0.9982804874107114, "top": 430, "right": 3335, "bottom": 2045, "left": 920}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704777f.jpg"} -{"rects": [{"solidity": 0.9965530930180769, "top": 790, "right": 2060, "bottom": 3210, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721919f.jpg"} -{"rects": [{"solidity": 0.9965531584225138, "top": 415, "right": 3205, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700671f.jpg"} -{"rects": [{"solidity": 0.996553225665986, "top": 420, "right": 5070, "bottom": 3635, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721421f.jpg"} -{"rects": [{"solidity": 0.9965534765900915, "top": 430, "right": 5010, "bottom": 3625, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720863f.jpg"} -{"rects": [{"solidity": 0.9965535584000837, "top": 400, "right": 4990, "bottom": 3640, "left": 985}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710406f.jpg"} -{"rects": [{"solidity": 0.9965535926186037, "top": 1110, "right": 3860, "bottom": 5680, "left": 220}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706425f.jpg"} -{"rects": [{"solidity": 0.996553704767375, "top": 875, "right": 3305, "bottom": 2790, "left": 1930}, {"solidity": 0.997152832415421, "top": 895, "right": 1865, "bottom": 2785, "left": 505}, {"solidity": 0.9964992823528823, "top": 3490, "right": 3300, "bottom": 5340, "left": 1935}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722783f.jpg"} -{"rects": [{"solidity": 0.996553725022521, "top": 380, "right": 3215, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727921f.jpg"} -{"rects": [{"solidity": 0.9965537358969373, "top": 415, "right": 3230, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705173f.jpg"} -{"rects": [{"solidity": 0.9965540033240713, "top": 735, "right": 2025, "bottom": 3170, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706906f.jpg"} -{"rects": [{"solidity": 0.9965542041487423, "top": 525, "right": 4985, "bottom": 3660, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730292f.jpg"} -{"rects": [{"solidity": 0.9965545143692413, "top": 420, "right": 3185, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715320f.jpg"} -{"rects": [{"solidity": 0.9965546277905265, "top": 750, "right": 5675, "bottom": 3185, "left": 4060}, {"solidity": 0.9974916415021668, "top": 760, "right": 3870, "bottom": 3170, "left": 2255}, {"solidity": 0.9955579709201672, "top": 765, "right": 2070, "bottom": 3170, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710120f.jpg"} -{"rects": [{"solidity": 0.996554747170202, "top": 790, "right": 3895, "bottom": 3210, "left": 2280}, {"solidity": 0.995713512163963, "top": 800, "right": 2045, "bottom": 3215, "left": 430}, {"solidity": 0.9965983965724301, "top": 815, "right": 5735, "bottom": 3225, "left": 4125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716891f.jpg"} -{"rects": [{"solidity": 0.9965549470757541, "top": 435, "right": 3205, "bottom": 2030, "left": 840}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724915f.jpg"} -{"rects": [{"solidity": 0.9965549901273016, "top": 400, "right": 3035, "bottom": 2040, "left": 615}, {"solidity": 0.9974886877828054, "top": 2265, "right": 3035, "bottom": 3885, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730659f.jpg"} -{"rects": [{"solidity": 0.9965550449524622, "top": 415, "right": 3240, "bottom": 2035, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704623f.jpg"} -{"rects": [{"solidity": 0.9965551377722929, "top": 685, "right": 2325, "bottom": 3505, "left": 315}, {"solidity": 0.9968617167915782, "top": 885, "right": 4145, "bottom": 3315, "left": 2525}, {"solidity": 0.9897269434956171, "top": 1250, "right": 5800, "bottom": 2965, "left": 4340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729254f.jpg"} -{"rects": [{"solidity": 0.9965553780600632, "top": 2215, "right": 3230, "bottom": 3845, "left": 810}, {"solidity": 0.9970282700286238, "top": 365, "right": 3215, "bottom": 1990, "left": 795}, {"solidity": 0.9969428723455716, "top": 4050, "right": 3235, "bottom": 5675, "left": 820}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/730532f.jpg"} -{"rects": [{"solidity": 0.9965554331542809, "top": 855, "right": 2110, "bottom": 3265, "left": 495}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721100f.jpg"} -{"rects": [{"solidity": 0.9965554862842892, "top": 3310, "right": 3260, "bottom": 5330, "left": 435}, {"solidity": 0.998808315015454, "top": 785, "right": 3255, "bottom": 2785, "left": 440}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729251f.jpg"} -{"rects": [{"solidity": 0.9965556058859673, "top": 3950, "right": 2895, "bottom": 5440, "left": 1010}, {"solidity": 0.9914979047927025, "top": 2125, "right": 2900, "bottom": 3610, "left": 1010}, {"solidity": 0.9930182817919141, "top": 380, "right": 2910, "bottom": 1870, "left": 1015}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701590f.jpg"} -{"rects": [{"solidity": 0.9965556307948744, "top": 130, "right": 2780, "bottom": 2525, "left": 1165}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713685f.jpg"} -{"rects": [{"solidity": 0.9965556720148351, "top": 2290, "right": 3360, "bottom": 3915, "left": 945}, {"solidity": 0.9978142995250304, "top": 4100, "right": 3350, "bottom": 5720, "left": 945}, {"solidity": 0.9967138769763776, "top": 445, "right": 3360, "bottom": 2070, "left": 960}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721726f.jpg"} -{"rects": [{"solidity": 0.9965557218439747, "top": 665, "right": 2250, "bottom": 2185, "left": 275}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710927f.jpg"} -{"rects": [{"solidity": 0.9965557236996411, "top": 450, "right": 3165, "bottom": 2075, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701425f.jpg"} -{"rects": [{"solidity": 0.9965558930802914, "top": 785, "right": 1985, "bottom": 3150, "left": 410}, {"solidity": 0.9991389549704079, "top": 785, "right": 3830, "bottom": 3145, "left": 2265}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717435f.jpg"} -{"rects": [{"solidity": 0.9965561856698701, "top": 745, "right": 3905, "bottom": 3170, "left": 2285}, {"solidity": 0.9948644931639835, "top": 750, "right": 2050, "bottom": 3175, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733322f.jpg"} -{"rects": [{"solidity": 0.99655643168177, "top": 510, "right": 3400, "bottom": 2440, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711560f.jpg"} -{"rects": [{"solidity": 0.9965565645306874, "top": 390, "right": 3200, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718176f.jpg"} -{"rects": [{"solidity": 0.9965567198654806, "top": 1480, "right": 3370, "bottom": 5255, "left": 440}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704677f.jpg"} -{"rects": [{"solidity": 0.996556973766459, "top": 590, "right": 2640, "bottom": 1985, "left": 835}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705170f.jpg"} -{"rects": [{"solidity": 0.9965570297129597, "top": 875, "right": 3930, "bottom": 3330, "left": 2260}, {"solidity": 0.9992738691626883, "top": 865, "right": 2050, "bottom": 3295, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719710f.jpg"} -{"rects": [{"solidity": 0.9965573728531573, "top": 445, "right": 3170, "bottom": 2075, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706128f.jpg"} -{"rects": [{"solidity": 0.9965575909182371, "top": 365, "right": 4990, "bottom": 3630, "left": 920}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717265f.jpg"} -{"rects": [{"solidity": 0.9965576423282498, "top": 675, "right": 2985, "bottom": 2090, "left": 1170}, {"solidity": 0.9971231639305632, "top": 3875, "right": 2975, "bottom": 5290, "left": 1160}, {"solidity": 0.9963436928702011, "top": 2430, "right": 2980, "bottom": 3530, "left": 1180}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727411f.jpg"} -{"rects": [{"solidity": 0.9965578956643508, "top": 375, "right": 5125, "bottom": 3640, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725857f.jpg"} -{"rects": [{"solidity": 0.9965579225150113, "top": 900, "right": 3850, "bottom": 3325, "left": 2205}, {"solidity": 0.9968752098918637, "top": 890, "right": 1995, "bottom": 3310, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707585f.jpg"} -{"rects": [{"solidity": 0.9965580280748012, "top": 370, "right": 3095, "bottom": 1980, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701520f.jpg"} -{"rects": [{"solidity": 0.9965581313330873, "top": 750, "right": 1985, "bottom": 3160, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718689f.jpg"} -{"rects": [{"solidity": 0.9965581346975124, "top": 415, "right": 3180, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710527f.jpg"} -{"rects": [{"solidity": 0.9965583099215842, "top": 420, "right": 3100, "bottom": 2030, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729747f.jpg"} -{"rects": [{"solidity": 0.9965583333600876, "top": 2290, "right": 3185, "bottom": 3910, "left": 755}, {"solidity": 0.9970929203112475, "top": 430, "right": 3185, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729181f.jpg"} -{"rects": [{"solidity": 0.9965583826399902, "top": 1055, "right": 3505, "bottom": 5110, "left": 250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722660f.jpg"} -{"rects": [{"solidity": 0.9965585696395739, "top": 2080, "right": 3070, "bottom": 3730, "left": 640}, {"solidity": 0.9973087101673085, "top": 400, "right": 3045, "bottom": 2035, "left": 625}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702401f.jpg"} -{"rects": [{"solidity": 0.9965588301015468, "top": 1165, "right": 3555, "bottom": 5140, "left": 350}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/717027f.jpg"} -{"rects": [{"solidity": 0.9965589863028538, "top": 845, "right": 3875, "bottom": 3285, "left": 2245}, {"solidity": 0.9962644379633318, "top": 850, "right": 5740, "bottom": 3285, "left": 4125}, {"solidity": 0.9969438578958397, "top": 835, "right": 2015, "bottom": 3255, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733784f.jpg"} -{"rects": [{"solidity": 0.9965592510550229, "top": 420, "right": 3135, "bottom": 2040, "left": 715}, {"solidity": 0.9961235042486135, "top": 2110, "right": 3110, "bottom": 3750, "left": 690}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726336f.jpg"} -{"rects": [{"solidity": 0.9965592641568898, "top": 415, "right": 3235, "bottom": 2025, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726106f.jpg"} -{"rects": [{"solidity": 0.996559345123201, "top": 2440, "right": 2490, "bottom": 3920, "left": 420}, {"solidity": 0.9952910001561227, "top": 760, "right": 2515, "bottom": 2200, "left": 415}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716260f.jpg"} -{"rects": [{"solidity": 0.9965595595447577, "top": 605, "right": 2670, "bottom": 2010, "left": 845}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707142f.jpg"} -{"rects": [{"solidity": 0.9965595966642357, "top": 545, "right": 3055, "bottom": 2190, "left": 620}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705354f.jpg"} -{"rects": [{"solidity": 0.9965597185519042, "top": 600, "right": 5155, "bottom": 3600, "left": 1275}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717662f.jpg"} -{"rects": [{"solidity": 0.9965598037502347, "top": 2180, "right": 3120, "bottom": 3810, "left": 725}, {"solidity": 0.9979997382207738, "top": 315, "right": 3095, "bottom": 1930, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710240f.jpg"} -{"rects": [{"solidity": 0.9965598297385725, "top": 520, "right": 3100, "bottom": 2155, "left": 665}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704092f.jpg"} -{"rects": [{"solidity": 0.9965599077531438, "top": 770, "right": 2015, "bottom": 3205, "left": 375}, {"solidity": 0.9958645148486963, "top": 775, "right": 3885, "bottom": 3210, "left": 2240}, {"solidity": 0.9959520528188199, "top": 820, "right": 5745, "bottom": 3255, "left": 4090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705242f.jpg"} -{"rects": [{"solidity": 0.9965599699748002, "top": 450, "right": 3265, "bottom": 2410, "left": 230}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711944f.jpg"} -{"rects": [{"solidity": 0.9965600252353362, "top": 685, "right": 3825, "bottom": 3070, "left": 2235}, {"solidity": 0.9959468945315136, "top": 695, "right": 2015, "bottom": 3060, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718322f.jpg"} -{"rects": [{"solidity": 0.9965601030985306, "top": 410, "right": 3200, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724662f.jpg"} -{"rects": [{"solidity": 0.9965601823424837, "top": 2240, "right": 3075, "bottom": 3860, "left": 650}, {"solidity": 0.9953398083214954, "top": 360, "right": 3095, "bottom": 2000, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701063f.jpg"} -{"rects": [{"solidity": 0.9965602330893413, "top": 520, "right": 5105, "bottom": 3740, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718209f.jpg"} -{"rects": [{"solidity": 0.9965602543991201, "top": 520, "right": 2740, "bottom": 3550, "left": 690}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721644f.jpg"} -{"rects": [{"solidity": 0.9965603593596227, "top": 635, "right": 2710, "bottom": 2060, "left": 880}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705438f.jpg"} -{"rects": [{"solidity": 0.996560418997708, "top": 915, "right": 3910, "bottom": 3340, "left": 2260}, {"solidity": 0.9987732160786175, "top": 905, "right": 2015, "bottom": 3310, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719757f.jpg"} -{"rects": [{"solidity": 0.9965607214441753, "top": 470, "right": 3125, "bottom": 2090, "left": 700}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700666f.jpg"} -{"rects": [{"solidity": 0.9965609027222104, "top": 455, "right": 3180, "bottom": 2060, "left": 770}, {"solidity": 0.9953478343254033, "top": 2330, "right": 3175, "bottom": 3945, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709619f.jpg"} -{"rects": [{"solidity": 0.9965609293383736, "top": 630, "right": 3650, "bottom": 2430, "left": 1105}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508791.jpg"} -{"rects": [{"solidity": 0.996560958786556, "top": 780, "right": 3870, "bottom": 3190, "left": 2245}, {"solidity": 0.9953078537984198, "top": 805, "right": 5705, "bottom": 3205, "left": 4105}, {"solidity": 0.9978524839602193, "top": 780, "right": 2025, "bottom": 3165, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712607f.jpg"} -{"rects": [{"solidity": 0.9965609600707311, "top": 625, "right": 3200, "bottom": 2240, "left": 790}, {"solidity": 0.9967791983346098, "top": 4075, "right": 3215, "bottom": 5670, "left": 800}, {"solidity": 0.9981918440199562, "top": 2355, "right": 3210, "bottom": 3930, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733158f.jpg"} -{"rects": [{"solidity": 0.9965610130278484, "top": 830, "right": 5895, "bottom": 2905, "left": 2630}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703699f.jpg"} -{"rects": [{"solidity": 0.9965610919692552, "top": 770, "right": 2005, "bottom": 3175, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706630f.jpg"} -{"rects": [{"solidity": 0.9965611216232797, "top": 755, "right": 5690, "bottom": 3160, "left": 4055}, {"solidity": 0.9959412384393157, "top": 725, "right": 2260, "bottom": 3140, "left": 625}, {"solidity": 0.999384971835615, "top": 735, "right": 3960, "bottom": 3135, "left": 2350}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730501f.jpg"} -{"rects": [{"solidity": 0.9965612442400841, "top": 570, "right": 2605, "bottom": 1995, "left": 800}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705074f.jpg"} -{"rects": [{"solidity": 0.996561274612299, "top": 820, "right": 2060, "bottom": 3245, "left": 440}, {"solidity": 0.9970999371383023, "top": 835, "right": 3895, "bottom": 3245, "left": 2285}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723323f.jpg"} -{"rects": [{"solidity": 0.9965613851208353, "top": 495, "right": 2195, "bottom": 2590, "left": 695}, {"solidity": 0.9957638970525642, "top": 495, "right": 3930, "bottom": 2585, "left": 2430}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716142f.jpg"} -{"rects": [{"solidity": 0.9965618072640761, "top": 685, "right": 3650, "bottom": 2735, "left": 410}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733083f.jpg"} -{"rects": [{"solidity": 0.9965618529397602, "top": 430, "right": 3190, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705583f.jpg"} -{"rects": [{"solidity": 0.9965619635775309, "top": 2225, "right": 4970, "bottom": 3650, "left": 3175}, {"solidity": 0.995464718175216, "top": 2225, "right": 2835, "bottom": 3655, "left": 1040}, {"solidity": 0.9956467724504328, "top": 630, "right": 4985, "bottom": 2005, "left": 3160}, {"solidity": 0.9962495755431781, "top": 610, "right": 2860, "bottom": 1985, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727806f.jpg"} -{"rects": [{"solidity": 0.9965619782142006, "top": 420, "right": 3260, "bottom": 2060, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702655f.jpg"} -{"rects": [{"solidity": 0.996562011649382, "top": 920, "right": 3900, "bottom": 3350, "left": 2245}, {"solidity": 0.9975074983559754, "top": 915, "right": 2030, "bottom": 3330, "left": 400}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712215f.jpg"} -{"rects": [{"solidity": 0.9965620126564333, "top": 2240, "right": 3130, "bottom": 3855, "left": 705}, {"solidity": 0.9989341868530156, "top": 405, "right": 3115, "bottom": 2010, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731997f.jpg"} -{"rects": [{"solidity": 0.9965620708618621, "top": 4100, "right": 3115, "bottom": 5720, "left": 695}, {"solidity": 0.9982824458229276, "top": 2255, "right": 3145, "bottom": 3865, "left": 720}, {"solidity": 0.9963289947742543, "top": 400, "right": 3160, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733841f.jpg"} -{"rects": [{"solidity": 0.9965626633799451, "top": 425, "right": 3310, "bottom": 2360, "left": 525}, {"solidity": 0.995909170197158, "top": 2490, "right": 3300, "bottom": 4430, "left": 520}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707156f.jpg"} -{"rects": [{"solidity": 0.9965627611945134, "top": 2215, "right": 3180, "bottom": 3830, "left": 765}, {"solidity": 0.9973726798010837, "top": 370, "right": 3180, "bottom": 1970, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734623f.jpg"} -{"rects": [{"solidity": 0.9965629824605806, "top": 710, "right": 2635, "bottom": 2105, "left": 845}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702847f.jpg"} -{"rects": [{"solidity": 0.9965630135914225, "top": 760, "right": 2055, "bottom": 3170, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703339f.jpg"} -{"rects": [{"solidity": 0.9965631631819165, "top": 415, "right": 3215, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720471f.jpg"} -{"rects": [{"solidity": 0.9965632186878214, "top": 780, "right": 2050, "bottom": 3200, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720405f.jpg"} -{"rects": [{"solidity": 0.9965635491631358, "top": 1130, "right": 3445, "bottom": 5015, "left": 285}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708659f.jpg"} -{"rects": [{"solidity": 0.9965638766519824, "top": 640, "right": 2640, "bottom": 2075, "left": 835}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720122f.jpg"} -{"rects": [{"solidity": 0.9965641382047304, "top": 1040, "right": 3495, "bottom": 5035, "left": 275}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716987f.jpg"} -{"rects": [{"solidity": 0.9965642094599211, "top": 710, "right": 3225, "bottom": 3435, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723482f.jpg"} -{"rects": [{"solidity": 0.9965643066630808, "top": 685, "right": 2930, "bottom": 4150, "left": 600}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711164f.jpg"} -{"rects": [{"solidity": 0.9965643957635089, "top": 800, "right": 3830, "bottom": 3215, "left": 2210}, {"solidity": 0.9968278680548799, "top": 790, "right": 2025, "bottom": 3195, "left": 410}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706464f.jpg"} -{"rects": [{"solidity": 0.9965644974322775, "top": 405, "right": 3135, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703142f.jpg"} -{"rects": [{"solidity": 0.9965645970272313, "top": 775, "right": 2030, "bottom": 3180, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724233f.jpg"} -{"rects": [{"solidity": 0.9965647992206329, "top": 785, "right": 2045, "bottom": 3220, "left": 415}, {"solidity": 0.9962136904475167, "top": 780, "right": 3890, "bottom": 3205, "left": 2265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714014f.jpg"} -{"rects": [{"solidity": 0.996564935064935, "top": 410, "right": 3185, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702893f.jpg"} -{"rects": [{"solidity": 0.9965650674823144, "top": 2185, "right": 3115, "bottom": 3810, "left": 725}, {"solidity": 0.9977425677883045, "top": 320, "right": 3125, "bottom": 1940, "left": 745}, {"solidity": 0.9970908208345769, "top": 4080, "right": 3095, "bottom": 5690, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707965f.jpg"} -{"rects": [{"solidity": 0.9965651623058949, "top": 495, "right": 5315, "bottom": 3425, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717288f.jpg"} -{"rects": [{"solidity": 0.9965653306068981, "top": 375, "right": 3285, "bottom": 2015, "left": 860}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700278f.jpg"} -{"rects": [{"solidity": 0.9965654006289869, "top": 770, "right": 3890, "bottom": 3210, "left": 2255}, {"solidity": 0.9963291937999891, "top": 755, "right": 2040, "bottom": 3190, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707727f.jpg"} -{"rects": [{"solidity": 0.9965657308066305, "top": 830, "right": 5800, "bottom": 3245, "left": 4190}, {"solidity": 0.997190160678529, "top": 825, "right": 3955, "bottom": 3230, "left": 2345}, {"solidity": 0.9988449859958642, "top": 840, "right": 2130, "bottom": 3235, "left": 525}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731642f.jpg"} -{"rects": [{"solidity": 0.9965658679367606, "top": 2260, "right": 3125, "bottom": 3890, "left": 700}, {"solidity": 0.9975762524585808, "top": 420, "right": 3125, "bottom": 2030, "left": 710}, {"solidity": 0.9973301112778438, "top": 4125, "right": 3090, "bottom": 5740, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726632f.jpg"} -{"rects": [{"solidity": 0.996565882038048, "top": 870, "right": 4325, "bottom": 3615, "left": 2490}, {"solidity": 0.9953623144355879, "top": 895, "right": 6405, "bottom": 3630, "left": 4580}, {"solidity": 0.9960159665655653, "top": 855, "right": 2275, "bottom": 3565, "left": 425}], "shape": {"h": 4420, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/703421f.jpg"} -{"rects": [{"solidity": 0.9965658959518703, "top": 4110, "right": 3180, "bottom": 5715, "left": 775}, {"solidity": 0.9971083690284382, "top": 2250, "right": 3165, "bottom": 3855, "left": 765}, {"solidity": 0.9962077781731441, "top": 405, "right": 3160, "bottom": 2005, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713128f.jpg"} -{"rects": [{"solidity": 0.9965659621438208, "top": 810, "right": 3955, "bottom": 3265, "left": 2295}, {"solidity": 0.9972259036927315, "top": 810, "right": 2060, "bottom": 3220, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731827f.jpg"} -{"rects": [{"solidity": 0.9965661094871867, "top": 2275, "right": 3190, "bottom": 3910, "left": 750}, {"solidity": 0.9982765107058911, "top": 425, "right": 3185, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706968f.jpg"} -{"rects": [{"solidity": 0.9965662035310712, "top": 860, "right": 4035, "bottom": 3265, "left": 2410}, {"solidity": 0.9967928409190606, "top": 855, "right": 2110, "bottom": 3265, "left": 500}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710631f.jpg"} -{"rects": [{"solidity": 0.996566622473061, "top": 380, "right": 3360, "bottom": 2270, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711446f.jpg"} -{"rects": [{"solidity": 0.9965667012734417, "top": 455, "right": 3205, "bottom": 2050, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709613f.jpg"} -{"rects": [{"solidity": 0.9965667762028545, "top": 845, "right": 2025, "bottom": 3250, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721010f.jpg"} -{"rects": [{"solidity": 0.9965667928995137, "top": 440, "right": 3245, "bottom": 2470, "left": 400}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704169f.jpg"} -{"rects": [{"solidity": 0.9965667935134858, "top": 435, "right": 3175, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734530f.jpg"} -{"rects": [{"solidity": 0.996566890944105, "top": 810, "right": 2735, "bottom": 2250, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705729f.jpg"} -{"rects": [{"solidity": 0.9965669622529638, "top": 470, "right": 3250, "bottom": 2070, "left": 845}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/721482f.jpg"} -{"rects": [{"solidity": 0.9965671265921773, "top": 450, "right": 3200, "bottom": 2030, "left": 795}, {"solidity": 0.9979682704361734, "top": 4170, "right": 3200, "bottom": 5745, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725613f.jpg"} -{"rects": [{"solidity": 0.9965672001511213, "top": 410, "right": 3130, "bottom": 2015, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729811f.jpg"} -{"rects": [{"solidity": 0.9965674584903803, "top": 815, "right": 3875, "bottom": 3245, "left": 2225}, {"solidity": 0.9973483688160515, "top": 810, "right": 2035, "bottom": 3235, "left": 400}, {"solidity": 0.9978059098878826, "top": 830, "right": 5695, "bottom": 3250, "left": 4075}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732428f.jpg"} -{"rects": [{"solidity": 0.9965675112757497, "top": 410, "right": 5080, "bottom": 3655, "left": 1065}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723181f.jpg"} -{"rects": [{"solidity": 0.9965676930453392, "top": 1670, "right": 2340, "bottom": 2890, "left": 565}, {"solidity": 0.9967237711211266, "top": 300, "right": 2355, "bottom": 1500, "left": 560}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715899f.jpg"} -{"rects": [{"solidity": 0.9965677407919172, "top": 480, "right": 3955, "bottom": 2580, "left": 2455}, {"solidity": 0.9963556171735967, "top": 470, "right": 2160, "bottom": 2570, "left": 670}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716100f.jpg"} -{"rects": [{"solidity": 0.9965680788702371, "top": 480, "right": 5110, "bottom": 3715, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725231f.jpg"} -{"rects": [{"solidity": 0.9965681564136254, "top": 830, "right": 2110, "bottom": 3235, "left": 500}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713306f.jpg"} -{"rects": [{"solidity": 0.9965682130314341, "top": 675, "right": 2035, "bottom": 3060, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726946f.jpg"} -{"rects": [{"solidity": 0.996568271788801, "top": 960, "right": 6565, "bottom": 3685, "left": 4750}, {"solidity": 0.995909022863013, "top": 970, "right": 4420, "bottom": 3665, "left": 2605}, {"solidity": 0.9967220884902968, "top": 970, "right": 2250, "bottom": 3640, "left": 465}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711264f.jpg"} -{"rects": [{"solidity": 0.9965684603760401, "top": 1260, "right": 3275, "bottom": 4990, "left": 490}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722464f.jpg"} -{"rects": [{"solidity": 0.9965687346139589, "top": 2230, "right": 3275, "bottom": 3875, "left": 840}, {"solidity": 0.9966888155192669, "top": 415, "right": 3290, "bottom": 2055, "left": 860}, {"solidity": 0.9965454386515878, "top": 4085, "right": 3230, "bottom": 5720, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702261f.jpg"} -{"rects": [{"solidity": 0.9965687550294513, "top": 415, "right": 4805, "bottom": 3590, "left": 835}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731779f.jpg"} -{"rects": [{"solidity": 0.9965687565858798, "top": 480, "right": 5670, "bottom": 2100, "left": 3285}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705520f.jpg"} -{"rects": [{"solidity": 0.996568767300738, "top": 375, "right": 3310, "bottom": 2225, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713736f.jpg"} -{"rects": [{"solidity": 0.9965687924597588, "top": 470, "right": 3110, "bottom": 1885, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705601f.jpg"} -{"rects": [{"solidity": 0.9965688015881308, "top": 685, "right": 2485, "bottom": 3745, "left": 500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715452f.jpg"} -{"rects": [{"solidity": 0.9965688242072689, "top": 2255, "right": 3195, "bottom": 3870, "left": 775}, {"solidity": 0.9982136651369145, "top": 440, "right": 3180, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701968f.jpg"} -{"rects": [{"solidity": 0.9965688880297685, "top": 595, "right": 4945, "bottom": 3700, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733326f.jpg"} -{"rects": [{"solidity": 0.9965689292493971, "top": 875, "right": 2050, "bottom": 3305, "left": 410}, {"solidity": 0.996352749773297, "top": 1065, "right": 4110, "bottom": 3065, "left": 2205}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711954f.jpg"} -{"rects": [{"solidity": 0.996569097346618, "top": 395, "right": 3255, "bottom": 2015, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725289f.jpg"} -{"rects": [{"solidity": 0.996569101156388, "top": 805, "right": 3985, "bottom": 3215, "left": 2370}, {"solidity": 0.9963810253977948, "top": 800, "right": 2110, "bottom": 3210, "left": 500}, {"solidity": 0.9972052338941388, "top": 795, "right": 5825, "bottom": 3205, "left": 4225}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731644f.jpg"} -{"rects": [{"solidity": 0.9965691834503336, "top": 590, "right": 3260, "bottom": 2455, "left": 600}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714730f.jpg"} -{"rects": [{"solidity": 0.9965693690915574, "top": 765, "right": 3930, "bottom": 3180, "left": 2285}, {"solidity": 0.9978207511122912, "top": 755, "right": 2050, "bottom": 3155, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713468f.jpg"} -{"rects": [{"solidity": 0.9965694385737636, "top": 1305, "right": 3230, "bottom": 4720, "left": 670}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721481f.jpg"} -{"rects": [{"solidity": 0.9965694712200496, "top": 335, "right": 4075, "bottom": 2770, "left": 1065}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517229.jpg"} -{"rects": [{"solidity": 0.9965695565846171, "top": 740, "right": 2025, "bottom": 3160, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703661f.jpg"} -{"rects": [{"solidity": 0.9965697814076387, "top": 2120, "right": 2710, "bottom": 3560, "left": 880}, {"solidity": 0.9965384930168069, "top": 635, "right": 2730, "bottom": 2070, "left": 900}, {"solidity": 0.9951425074144495, "top": 645, "right": 5165, "bottom": 2080, "left": 3335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702605f.jpg"} -{"rects": [{"solidity": 0.9965698091916291, "top": 820, "right": 1980, "bottom": 3255, "left": 335}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731848f.jpg"} -{"rects": [{"solidity": 0.996569815078002, "top": 1400, "right": 3380, "bottom": 4815, "left": 250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720161f.jpg"} -{"rects": [{"solidity": 0.9965698335370029, "top": 2285, "right": 3080, "bottom": 3885, "left": 675}, {"solidity": 0.9990941849317333, "top": 430, "right": 3080, "bottom": 2015, "left": 680}, {"solidity": 0.9963070473570758, "top": 4120, "right": 3080, "bottom": 5710, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728732f.jpg"} -{"rects": [{"solidity": 0.9965698890993718, "top": 635, "right": 2385, "bottom": 3370, "left": 420}, {"solidity": 0.9937455798088072, "top": 2095, "right": 4240, "bottom": 3540, "left": 2395}, {"solidity": 0.9942241791809451, "top": 655, "right": 4255, "bottom": 2085, "left": 2415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707419f.jpg"} -{"rects": [{"solidity": 0.9965699012066829, "top": 755, "right": 3895, "bottom": 3170, "left": 2275}, {"solidity": 0.9968838628378665, "top": 750, "right": 2055, "bottom": 3155, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733336f.jpg"} -{"rects": [{"solidity": 0.9965699647348459, "top": 2405, "right": 3120, "bottom": 3990, "left": 730}, {"solidity": 0.9959765286345972, "top": 550, "right": 3135, "bottom": 2135, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724880f.jpg"} -{"rects": [{"solidity": 0.9965699924120953, "top": 415, "right": 3175, "bottom": 1980, "left": 830}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707637f.jpg"} -{"rects": [{"solidity": 0.9965701926707065, "top": 320, "right": 1910, "bottom": 2745, "left": 270}, {"solidity": 0.9962924694584574, "top": 3020, "right": 2840, "bottom": 5445, "left": 1195}, {"solidity": 0.9963347035175231, "top": 330, "right": 3690, "bottom": 2740, "left": 2060}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710282f.jpg"} -{"rects": [{"solidity": 0.996570201577, "top": 2310, "right": 3235, "bottom": 3935, "left": 815}, {"solidity": 0.9958152172140371, "top": 470, "right": 3230, "bottom": 2080, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723327f.jpg"} -{"rects": [{"solidity": 0.9965702763876214, "top": 1735, "right": 3220, "bottom": 3330, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730881f.jpg"} -{"rects": [{"solidity": 0.9965703120830365, "top": 715, "right": 2410, "bottom": 3480, "left": 450}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706465f.jpg"} -{"rects": [{"solidity": 0.9965703504007809, "top": 775, "right": 2005, "bottom": 3180, "left": 400}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708950f.jpg"} -{"rects": [{"solidity": 0.9965703893673766, "top": 855, "right": 4815, "bottom": 3470, "left": 1340}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700846f.jpg"} -{"rects": [{"solidity": 0.996570403405507, "top": 2205, "right": 3120, "bottom": 3850, "left": 690}, {"solidity": 0.9949313203495024, "top": 4045, "right": 3115, "bottom": 5695, "left": 665}, {"solidity": 0.9957002259312422, "top": 360, "right": 3115, "bottom": 1975, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728674f.jpg"} -{"rects": [{"solidity": 0.9965704925307872, "top": 540, "right": 3145, "bottom": 2150, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709694f.jpg"} -{"rects": [{"solidity": 0.9965705698377122, "top": 405, "right": 3160, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729660f.jpg"} -{"rects": [{"solidity": 0.9965706135943729, "top": 415, "right": 3160, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711078f.jpg"} -{"rects": [{"solidity": 0.9965708591414447, "top": 425, "right": 3160, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730376f.jpg"} -{"rects": [{"solidity": 0.9965709373202247, "top": 880, "right": 3780, "bottom": 3290, "left": 2150}, {"solidity": 0.9971016197599605, "top": 860, "right": 1950, "bottom": 3260, "left": 340}, {"solidity": 0.9955376248431196, "top": 775, "right": 5715, "bottom": 2205, "left": 3865}, {"solidity": 0.9965441931498924, "top": 2240, "right": 5670, "bottom": 3600, "left": 3885}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719748f.jpg"} -{"rects": [{"solidity": 0.9965709803819889, "top": 790, "right": 2020, "bottom": 3215, "left": 410}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702826f.jpg"} -{"rects": [{"solidity": 0.9965710747245285, "top": 1135, "right": 3505, "bottom": 5175, "left": 275}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720951f.jpg"} -{"rects": [{"solidity": 0.9965711191005957, "top": 780, "right": 2025, "bottom": 3185, "left": 420}, {"solidity": 0.9981374253336296, "top": 785, "right": 3845, "bottom": 3180, "left": 2235}, {"solidity": 0.9957417744022797, "top": 785, "right": 5665, "bottom": 3185, "left": 4050}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721633f.jpg"} -{"rects": [{"solidity": 0.9965711941857708, "top": 415, "right": 3325, "bottom": 2045, "left": 895}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/700942f.jpg"} -{"rects": [{"solidity": 0.9965712007007956, "top": 740, "right": 2005, "bottom": 3145, "left": 390}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722417f.jpg"} -{"rects": [{"solidity": 0.9965712075027845, "top": 475, "right": 3155, "bottom": 2140, "left": 695}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723124f.jpg"} -{"rects": [{"solidity": 0.996571541248048, "top": 430, "right": 3150, "bottom": 2065, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705942f.jpg"} -{"rects": [{"solidity": 0.9965716129552696, "top": 435, "right": 3190, "bottom": 2010, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707283f.jpg"} -{"rects": [{"solidity": 0.9965716183394, "top": 410, "right": 3175, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/704063f.jpg"} -{"rects": [{"solidity": 0.9965719066277561, "top": 930, "right": 1995, "bottom": 3345, "left": 390}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728910f.jpg"} -{"rects": [{"solidity": 0.9965720668382773, "top": 560, "right": 3165, "bottom": 2195, "left": 750}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706190f.jpg"} -{"rects": [{"solidity": 0.9965720919116392, "top": 290, "right": 3810, "bottom": 2770, "left": 770}], "shape": {"h": 3005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508239.jpg"} -{"rects": [{"solidity": 0.996572132933892, "top": 500, "right": 3020, "bottom": 2140, "left": 590}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702642f.jpg"} -{"rects": [{"solidity": 0.99657223542641, "top": 385, "right": 3200, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726112f.jpg"} -{"rects": [{"solidity": 0.99657226530001, "top": 750, "right": 2005, "bottom": 3145, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718063f.jpg"} -{"rects": [{"solidity": 0.9965723031807483, "top": 2250, "right": 3095, "bottom": 3880, "left": 675}, {"solidity": 0.9955229005902515, "top": 380, "right": 3095, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709248f.jpg"} -{"rects": [{"solidity": 0.9965724748881656, "top": 615, "right": 3185, "bottom": 2230, "left": 785}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704091f.jpg"} -{"rects": [{"solidity": 0.9965725741261681, "top": 605, "right": 2420, "bottom": 3375, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717232f.jpg"} -{"rects": [{"solidity": 0.9965727559484898, "top": 890, "right": 2075, "bottom": 3330, "left": 430}, {"solidity": 0.9973880416753893, "top": 920, "right": 3965, "bottom": 3335, "left": 2340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701872f.jpg"} -{"rects": [{"solidity": 0.9965729015124147, "top": 725, "right": 5235, "bottom": 2155, "left": 3430}, {"solidity": 0.9957204481574016, "top": 720, "right": 2685, "bottom": 2150, "left": 875}, {"solidity": 0.9944061478633439, "top": 2200, "right": 2685, "bottom": 3620, "left": 860}, {"solidity": 0.9958897071416338, "top": 2210, "right": 5245, "bottom": 3630, "left": 3430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726303f.jpg"} -{"rects": [{"solidity": 0.9965730414739137, "top": 2185, "right": 3185, "bottom": 3820, "left": 780}, {"solidity": 0.9974769481844146, "top": 315, "right": 3180, "bottom": 1935, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710742f.jpg"} -{"rects": [{"solidity": 0.9965731905604032, "top": 760, "right": 1995, "bottom": 3165, "left": 370}, {"solidity": 0.9955254808003626, "top": 780, "right": 5630, "bottom": 3200, "left": 4000}, {"solidity": 0.9965120810600155, "top": 765, "right": 3805, "bottom": 3175, "left": 2180}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722911f.jpg"} -{"rects": [{"solidity": 0.9965732420829236, "top": 465, "right": 3175, "bottom": 2090, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712207f.jpg"} -{"rects": [{"solidity": 0.996573384805574, "top": 450, "right": 4840, "bottom": 3665, "left": 1185}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733317f.jpg"} -{"rects": [{"solidity": 0.9965734093912489, "top": 855, "right": 2025, "bottom": 3250, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722204f.jpg"} -{"rects": [{"solidity": 0.9965735434009948, "top": 2030, "right": 2640, "bottom": 3490, "left": 805}, {"solidity": 0.9964118792599805, "top": 595, "right": 2630, "bottom": 2020, "left": 810}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705072f.jpg"} -{"rects": [{"solidity": 0.9965737378470189, "top": 760, "right": 5750, "bottom": 3170, "left": 4135}, {"solidity": 0.997212743062297, "top": 760, "right": 3900, "bottom": 3160, "left": 2305}, {"solidity": 0.9968003068475452, "top": 775, "right": 2040, "bottom": 3145, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718361f.jpg"} -{"rects": [{"solidity": 0.9965737404387129, "top": 2265, "right": 3080, "bottom": 3900, "left": 640}, {"solidity": 0.9972547048569138, "top": 4145, "right": 3070, "bottom": 5780, "left": 640}, {"solidity": 0.9964324750545707, "top": 395, "right": 3060, "bottom": 2020, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710812f.jpg"} -{"rects": [{"solidity": 0.9965738192085297, "top": 385, "right": 3135, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/707952f.jpg"} -{"rects": [{"solidity": 0.9965739054626043, "top": 2495, "right": 2495, "bottom": 3980, "left": 405}, {"solidity": 0.9955252973940476, "top": 730, "right": 2510, "bottom": 2220, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716118f.jpg"} -{"rects": [{"solidity": 0.9965739215253329, "top": 770, "right": 2655, "bottom": 3505, "left": 750}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703689f.jpg"} -{"rects": [{"solidity": 0.9965739454802254, "top": 1165, "right": 3860, "bottom": 5650, "left": 295}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/711352f.jpg"} -{"rects": [{"solidity": 0.9965739528795812, "top": 745, "right": 2080, "bottom": 3145, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713141f.jpg"} -{"rects": [{"solidity": 0.9965740477425182, "top": 810, "right": 3865, "bottom": 3185, "left": 2280}, {"solidity": 0.9983815836304907, "top": 805, "right": 2045, "bottom": 3185, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720919f.jpg"} -{"rects": [{"solidity": 0.9965740714306107, "top": 2420, "right": 2890, "bottom": 3870, "left": 1060}, {"solidity": 0.9972412344759778, "top": 480, "right": 2905, "bottom": 1925, "left": 1075}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703557f.jpg"} -{"rects": [{"solidity": 0.9965741452842061, "top": 410, "right": 3225, "bottom": 2000, "left": 840}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726008f.jpg"} -{"rects": [{"solidity": 0.9965741637334044, "top": 635, "right": 5260, "bottom": 3435, "left": 3295}, {"solidity": 0.9971787789126011, "top": 630, "right": 2805, "bottom": 2045, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706089f.jpg"} -{"rects": [{"solidity": 0.9965742286593959, "top": 700, "right": 1245, "bottom": 1910, "left": 280}], "shape": {"h": 2545, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718647f.jpg"} -{"rects": [{"solidity": 0.9965743420877925, "top": 390, "right": 3170, "bottom": 1980, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729054f.jpg"} -{"rects": [{"solidity": 0.9965743456552404, "top": 1810, "right": 2900, "bottom": 3260, "left": 955}, {"solidity": 0.9931765862713835, "top": 3560, "right": 2900, "bottom": 5010, "left": 980}, {"solidity": 0.9945474768479339, "top": 295, "right": 2740, "bottom": 1555, "left": 1080}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730086f.jpg"} -{"rects": [{"solidity": 0.9965744273273128, "top": 420, "right": 3050, "bottom": 2045, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700914f.jpg"} -{"rects": [{"solidity": 0.9965744628937602, "top": 855, "right": 3820, "bottom": 3270, "left": 2190}, {"solidity": 0.9919038036037904, "top": 1045, "right": 5725, "bottom": 3165, "left": 4055}, {"solidity": 0.997593892685999, "top": 940, "right": 1870, "bottom": 3215, "left": 495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708955f.jpg"} -{"rects": [{"solidity": 0.9965746036391725, "top": 440, "right": 5600, "bottom": 4125, "left": 1055}], "shape": {"h": 4415, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/706442f.jpg"} -{"rects": [{"solidity": 0.9965748960410882, "top": 435, "right": 3130, "bottom": 2050, "left": 730}, {"solidity": 0.9973506649439463, "top": 2330, "right": 3135, "bottom": 3940, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709714f.jpg"} -{"rects": [{"solidity": 0.9965749665889766, "top": 780, "right": 3865, "bottom": 3195, "left": 2245}, {"solidity": 0.9978058849652133, "top": 785, "right": 1975, "bottom": 3195, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730089f.jpg"} -{"rects": [{"solidity": 0.9965750079764548, "top": 880, "right": 1920, "bottom": 3275, "left": 300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721568f.jpg"} -{"rects": [{"solidity": 0.9965751402421021, "top": 860, "right": 3925, "bottom": 3260, "left": 2325}, {"solidity": 0.9954865185554237, "top": 845, "right": 2090, "bottom": 3245, "left": 485}, {"solidity": 0.9961860317544254, "top": 860, "right": 5775, "bottom": 3255, "left": 4180}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731298f.jpg"} -{"rects": [{"solidity": 0.996575227478763, "top": 635, "right": 2675, "bottom": 2075, "left": 850}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732009f.jpg"} -{"rects": [{"solidity": 0.9965752545288808, "top": 490, "right": 3210, "bottom": 2110, "left": 785}, {"solidity": 0.9963523056670579, "top": 2255, "right": 3205, "bottom": 3875, "left": 795}, {"solidity": 0.9954432544824863, "top": 4025, "right": 3190, "bottom": 5635, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717956f.jpg"} -{"rects": [{"solidity": 0.9965756268966619, "top": 2240, "right": 3140, "bottom": 3880, "left": 705}, {"solidity": 0.9977606514468518, "top": 380, "right": 3125, "bottom": 1995, "left": 710}, {"solidity": 0.9963636833786391, "top": 4115, "right": 3140, "bottom": 5730, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729089f.jpg"} -{"rects": [{"solidity": 0.9965756378353687, "top": 395, "right": 3100, "bottom": 2025, "left": 670}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/728872f.jpg"} -{"rects": [{"solidity": 0.9965756762552064, "top": 315, "right": 3190, "bottom": 1935, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711182f.jpg"} -{"rects": [{"solidity": 0.9965756982458944, "top": 675, "right": 2580, "bottom": 3715, "left": 480}, {"solidity": 0.9962522529395497, "top": 1005, "right": 4395, "bottom": 3440, "left": 2730}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715155f.jpg"} -{"rects": [{"solidity": 0.99657572723054, "top": 675, "right": 2635, "bottom": 2095, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706858f.jpg"} -{"rects": [{"solidity": 0.9965759477801208, "top": 860, "right": 3385, "bottom": 2895, "left": 345}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708151f.jpg"} -{"rects": [{"solidity": 0.9965759763094577, "top": 905, "right": 3105, "bottom": 2330, "left": 1080}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508375.jpg"} -{"rects": [{"solidity": 0.9965761787509412, "top": 815, "right": 2670, "bottom": 2210, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726717f.jpg"} -{"rects": [{"solidity": 0.9965763405596354, "top": 880, "right": 5735, "bottom": 3305, "left": 4110}, {"solidity": 0.9968053472782968, "top": 885, "right": 3865, "bottom": 3295, "left": 2220}, {"solidity": 0.9967240072457252, "top": 875, "right": 2015, "bottom": 3285, "left": 375}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714039f.jpg"} -{"rects": [{"solidity": 0.996576690139268, "top": 785, "right": 3935, "bottom": 3220, "left": 2300}, {"solidity": 0.9977197888143869, "top": 785, "right": 2060, "bottom": 3205, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719907f.jpg"} -{"rects": [{"solidity": 0.996576840666622, "top": 400, "right": 3150, "bottom": 2030, "left": 720}, {"solidity": 0.9956663055254604, "top": 4110, "right": 3130, "bottom": 5750, "left": 695}, {"solidity": 0.9982329306908984, "top": 2280, "right": 3135, "bottom": 3890, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729908f.jpg"} -{"rects": [{"solidity": 0.9965770176711889, "top": 900, "right": 3540, "bottom": 4870, "left": 740}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/731801f.jpg"} -{"rects": [{"solidity": 0.9965770614542145, "top": 2075, "right": 3325, "bottom": 3695, "left": 905}, {"solidity": 0.9921702110768192, "top": 475, "right": 3075, "bottom": 1885, "left": 1260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724980f.jpg"} -{"rects": [{"solidity": 0.9965771863702793, "top": 390, "right": 3065, "bottom": 2025, "left": 640}, {"solidity": 0.996062966902013, "top": 2065, "right": 3085, "bottom": 3705, "left": 655}, {"solidity": 0.997262255281781, "top": 395, "right": 5700, "bottom": 2025, "left": 3295}, {"solidity": 0.9970964727640739, "top": 2045, "right": 5715, "bottom": 3665, "left": 3310}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731536f.jpg"} -{"rects": [{"solidity": 0.9965771990774156, "top": 2285, "right": 3225, "bottom": 3915, "left": 800}, {"solidity": 0.9959104806792717, "top": 4165, "right": 3220, "bottom": 5795, "left": 795}, {"solidity": 0.9966856380871397, "top": 405, "right": 3225, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704053f.jpg"} -{"rects": [{"solidity": 0.9965772293924164, "top": 4140, "right": 3035, "bottom": 5735, "left": 655}, {"solidity": 0.997047886494248, "top": 2290, "right": 3020, "bottom": 3895, "left": 665}, {"solidity": 0.9952598326917278, "top": 500, "right": 3025, "bottom": 2050, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731859f.jpg"} -{"rects": [{"solidity": 0.996577403706945, "top": 410, "right": 3280, "bottom": 2015, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725132f.jpg"} -{"rects": [{"solidity": 0.9965774367554158, "top": 510, "right": 3260, "bottom": 3850, "left": 650}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714335f.jpg"} -{"rects": [{"solidity": 0.9965775418625312, "top": 415, "right": 3280, "bottom": 2445, "left": 245}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711527f.jpg"} -{"rects": [{"solidity": 0.9965780951003703, "top": 275, "right": 3965, "bottom": 2755, "left": 905}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509883.jpg"} -{"rects": [{"solidity": 0.9965781191146522, "top": 405, "right": 3110, "bottom": 2035, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729630f.jpg"} -{"rects": [{"solidity": 0.9965782145257834, "top": 420, "right": 3180, "bottom": 2050, "left": 750}, {"solidity": 0.9970629429441086, "top": 2220, "right": 3195, "bottom": 3840, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710663f.jpg"} -{"rects": [{"solidity": 0.9965782230232916, "top": 495, "right": 3170, "bottom": 3930, "left": 515}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714385f.jpg"} -{"rects": [{"solidity": 0.9965783416514467, "top": 640, "right": 2785, "bottom": 3050, "left": 1180}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708064f.jpg"} -{"rects": [{"solidity": 0.9965784576887354, "top": 2290, "right": 3215, "bottom": 3925, "left": 780}, {"solidity": 0.996056981734736, "top": 435, "right": 3225, "bottom": 2070, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725361f.jpg"} -{"rects": [{"solidity": 0.9965785520791876, "top": 350, "right": 3010, "bottom": 1990, "left": 590}, {"solidity": 0.9988184580227999, "top": 350, "right": 5665, "bottom": 1965, "left": 3265}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707923f.jpg"} -{"rects": [{"solidity": 0.9965787196361368, "top": 445, "right": 3025, "bottom": 2020, "left": 1035}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722068f.jpg"} -{"rects": [{"solidity": 0.9965787505284724, "top": 435, "right": 3160, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700225f.jpg"} -{"rects": [{"solidity": 0.9965790461701993, "top": 365, "right": 5000, "bottom": 3585, "left": 985}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726056f.jpg"} -{"rects": [{"solidity": 0.9965790751285258, "top": 400, "right": 3205, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720333f.jpg"} -{"rects": [{"solidity": 0.9965790846102267, "top": 690, "right": 2535, "bottom": 1815, "left": 720}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707416f.jpg"} -{"rects": [{"solidity": 0.996579086127294, "top": 410, "right": 3270, "bottom": 2040, "left": 845}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726150f.jpg"} -{"rects": [{"solidity": 0.9965791868156585, "top": 960, "right": 3425, "bottom": 2965, "left": 335}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719328f.jpg"} -{"rects": [{"solidity": 0.9965792769555889, "top": 2260, "right": 3115, "bottom": 3885, "left": 710}, {"solidity": 0.9973362958920485, "top": 415, "right": 3115, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720251f.jpg"} -{"rects": [{"solidity": 0.9965794462443651, "top": 880, "right": 3860, "bottom": 3330, "left": 2195}, {"solidity": 0.996800890632048, "top": 935, "right": 5715, "bottom": 3355, "left": 4080}, {"solidity": 0.9961268046298644, "top": 865, "right": 2015, "bottom": 3290, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701068f.jpg"} -{"rects": [{"solidity": 0.9965795368731002, "top": 2075, "right": 3090, "bottom": 3730, "left": 655}, {"solidity": 0.99721517855432, "top": 395, "right": 3060, "bottom": 2030, "left": 635}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702456f.jpg"} -{"rects": [{"solidity": 0.996579552475525, "top": 310, "right": 3170, "bottom": 1950, "left": 735}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705345f.jpg"} -{"rects": [{"solidity": 0.9965795533299054, "top": 785, "right": 2050, "bottom": 3215, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712613f.jpg"} -{"rects": [{"solidity": 0.9965795846216021, "top": 460, "right": 3115, "bottom": 2060, "left": 715}, {"solidity": 0.9944387607880171, "top": 4030, "right": 3845, "bottom": 6010, "left": 2865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728291f.jpg"} -{"rects": [{"solidity": 0.9965799364045473, "top": 470, "right": 3360, "bottom": 2420, "left": 550}, {"solidity": 0.9948380000613681, "top": 2500, "right": 3345, "bottom": 4440, "left": 525}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707474f.jpg"} -{"rects": [{"solidity": 0.9965803854838182, "top": 2215, "right": 3180, "bottom": 3820, "left": 775}, {"solidity": 0.9979834415930146, "top": 435, "right": 3165, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722870f.jpg"} -{"rects": [{"solidity": 0.9965803895548765, "top": 445, "right": 3235, "bottom": 2080, "left": 810}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704633f.jpg"} -{"rects": [{"solidity": 0.9965804084298695, "top": 875, "right": 5740, "bottom": 3300, "left": 4095}, {"solidity": 0.9971964867772444, "top": 845, "right": 3885, "bottom": 3260, "left": 2255}, {"solidity": 0.9970453148284641, "top": 825, "right": 2050, "bottom": 3240, "left": 420}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732418f.jpg"} -{"rects": [{"solidity": 0.9965806235333556, "top": 470, "right": 3960, "bottom": 2745, "left": 1060}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507937.jpg"} -{"rects": [{"solidity": 0.9965807794808742, "top": 895, "right": 3855, "bottom": 3340, "left": 2220}, {"solidity": 0.9966590435793589, "top": 910, "right": 5705, "bottom": 3345, "left": 4070}, {"solidity": 0.9986622655741298, "top": 900, "right": 2000, "bottom": 3325, "left": 390}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731478f.jpg"} -{"rects": [{"solidity": 0.9965807895614077, "top": 635, "right": 2815, "bottom": 2060, "left": 950}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702648f.jpg"} -{"rects": [{"solidity": 0.9965808373445949, "top": 295, "right": 3950, "bottom": 2790, "left": 920}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509777.jpg"} -{"rects": [{"solidity": 0.9965808999559759, "top": 780, "right": 3900, "bottom": 3200, "left": 2265}, {"solidity": 0.9968896702277689, "top": 770, "right": 2055, "bottom": 3190, "left": 425}, {"solidity": 0.9957134010243972, "top": 790, "right": 5785, "bottom": 3215, "left": 4150}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721820f.jpg"} -{"rects": [{"solidity": 0.9965811693357188, "top": 435, "right": 3105, "bottom": 1825, "left": 830}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732564f.jpg"} -{"rects": [{"solidity": 0.9965812517134057, "top": 445, "right": 3200, "bottom": 2070, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711002f.jpg"} -{"rects": [{"solidity": 0.9965814963978304, "top": 755, "right": 1995, "bottom": 3155, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723396f.jpg"} -{"rects": [{"solidity": 0.9965815018431827, "top": 415, "right": 3240, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725863f.jpg"} -{"rects": [{"solidity": 0.9965815561808093, "top": 375, "right": 3210, "bottom": 1970, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730378f.jpg"} -{"rects": [{"solidity": 0.9965816885876262, "top": 805, "right": 3760, "bottom": 3220, "left": 2140}, {"solidity": 0.9961781036238083, "top": 800, "right": 1940, "bottom": 3225, "left": 335}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730069f.jpg"} -{"rects": [{"solidity": 0.9965817864623023, "top": 475, "right": 5055, "bottom": 3755, "left": 1045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717803f.jpg"} -{"rects": [{"solidity": 0.9965817987305687, "top": 435, "right": 3080, "bottom": 2045, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729096f.jpg"} -{"rects": [{"solidity": 0.9965819745148922, "top": 610, "right": 2745, "bottom": 2040, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705083f.jpg"} -{"rects": [{"solidity": 0.996582022551971, "top": 3315, "right": 3280, "bottom": 5325, "left": 460}, {"solidity": 0.9958842512477534, "top": 675, "right": 3310, "bottom": 2690, "left": 485}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729113f.jpg"} -{"rects": [{"solidity": 0.996582094376212, "top": 1115, "right": 3060, "bottom": 2060, "left": 1405}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509487.jpg"} -{"rects": [{"solidity": 0.9965822354814334, "top": 480, "right": 3320, "bottom": 2465, "left": 565}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702688f.jpg"} -{"rects": [{"solidity": 0.9965824468085106, "top": 500, "right": 3180, "bottom": 2085, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707755f.jpg"} -{"rects": [{"solidity": 0.9965825008655954, "top": 455, "right": 3075, "bottom": 2085, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701421f.jpg"} -{"rects": [{"solidity": 0.9965826596925028, "top": 940, "right": 2030, "bottom": 3395, "left": 405}, {"solidity": 0.9989882054591505, "top": 970, "right": 5745, "bottom": 3385, "left": 4140}, {"solidity": 0.9980979537611587, "top": 975, "right": 3885, "bottom": 3380, "left": 2270}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710637f.jpg"} -{"rects": [{"solidity": 0.9965827312086416, "top": 1120, "right": 3540, "bottom": 5170, "left": 320}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708440f.jpg"} -{"rects": [{"solidity": 0.9965828469077305, "top": 3995, "right": 3130, "bottom": 5625, "left": 685}, {"solidity": 0.9982158672707565, "top": 315, "right": 3145, "bottom": 1940, "left": 720}, {"solidity": 0.997730461994828, "top": 2150, "right": 3140, "bottom": 3775, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702426f.jpg"} -{"rects": [{"solidity": 0.9965828510478598, "top": 390, "right": 3190, "bottom": 1995, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703258f.jpg"} -{"rects": [{"solidity": 0.9965831435079726, "top": 2285, "right": 3090, "bottom": 3920, "left": 675}, {"solidity": 0.997331287750353, "top": 420, "right": 3095, "bottom": 2045, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710753f.jpg"} -{"rects": [{"solidity": 0.9965831471793235, "top": 415, "right": 3225, "bottom": 2035, "left": 810}, {"solidity": 0.9968673066652772, "top": 2275, "right": 3225, "bottom": 3890, "left": 815}, {"solidity": 0.9960225541492885, "top": 4110, "right": 3235, "bottom": 5715, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715341f.jpg"} -{"rects": [{"solidity": 0.9965832498736028, "top": 440, "right": 3170, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705735f.jpg"} -{"rects": [{"solidity": 0.9965833969334013, "top": 1245, "right": 3470, "bottom": 4895, "left": 370}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717335f.jpg"} -{"rects": [{"solidity": 0.9965834521651041, "top": 410, "right": 3110, "bottom": 2030, "left": 700}, {"solidity": 0.9961425786002329, "top": 2240, "right": 3110, "bottom": 3860, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719570f.jpg"} -{"rects": [{"solidity": 0.9965834683954619, "top": 785, "right": 2000, "bottom": 3195, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703633f.jpg"} -{"rects": [{"solidity": 0.9965835380562079, "top": 725, "right": 4140, "bottom": 3160, "left": 2505}, {"solidity": 0.9983537600820254, "top": 720, "right": 2380, "bottom": 3145, "left": 750}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709439f.jpg"} -{"rects": [{"solidity": 0.9965836537500846, "top": 445, "right": 3165, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720809f.jpg"} -{"rects": [{"solidity": 0.9965837312448151, "top": 890, "right": 2025, "bottom": 3290, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700327f.jpg"} -{"rects": [{"solidity": 0.9965837564639539, "top": 405, "right": 3240, "bottom": 1980, "left": 845}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725324f.jpg"} -{"rects": [{"solidity": 0.9965839097886857, "top": 2095, "right": 2665, "bottom": 3540, "left": 815}, {"solidity": 0.9960532736301272, "top": 630, "right": 5245, "bottom": 2065, "left": 3405}, {"solidity": 0.9963678025205249, "top": 640, "right": 2635, "bottom": 2040, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705214f.jpg"} -{"rects": [{"solidity": 0.9965839471054538, "top": 3975, "right": 3170, "bottom": 5605, "left": 735}, {"solidity": 0.9961877011645481, "top": 420, "right": 3105, "bottom": 2040, "left": 665}, {"solidity": 0.995480658254769, "top": 2175, "right": 3125, "bottom": 3795, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734154f.jpg"} -{"rects": [{"solidity": 0.9965840854338212, "top": 2235, "right": 3205, "bottom": 3840, "left": 800}, {"solidity": 0.9949227343899684, "top": 415, "right": 3195, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730448f.jpg"} -{"rects": [{"solidity": 0.9965842110348826, "top": 655, "right": 2755, "bottom": 2090, "left": 935}, {"solidity": 0.9962298890885976, "top": 590, "right": 5250, "bottom": 2015, "left": 3430}, {"solidity": 0.9973045212841103, "top": 2145, "right": 2710, "bottom": 3450, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719746f.jpg"} -{"rects": [{"solidity": 0.9965843588710488, "top": 400, "right": 5110, "bottom": 3650, "left": 1020}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721383f.jpg"} -{"rects": [{"solidity": 0.9965843941928317, "top": 2240, "right": 3095, "bottom": 3875, "left": 665}, {"solidity": 0.9960207916833267, "top": 400, "right": 3150, "bottom": 2025, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702170f.jpg"} -{"rects": [{"solidity": 0.9965844216303629, "top": 650, "right": 2715, "bottom": 2085, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730494f.jpg"} -{"rects": [{"solidity": 0.996584456064998, "top": 380, "right": 3220, "bottom": 2005, "left": 785}, {"solidity": 0.9967306906416019, "top": 2270, "right": 3220, "bottom": 3885, "left": 795}, {"solidity": 0.9958747085391902, "top": 4145, "right": 3215, "bottom": 5750, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733235f.jpg"} -{"rects": [{"solidity": 0.9965844702605172, "top": 845, "right": 5580, "bottom": 3285, "left": 3920}, {"solidity": 0.9982356425815335, "top": 830, "right": 3810, "bottom": 3250, "left": 2185}, {"solidity": 0.9996634304207119, "top": 800, "right": 2065, "bottom": 3220, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720397f.jpg"} -{"rects": [{"solidity": 0.9965849245581726, "top": 780, "right": 4310, "bottom": 3195, "left": 2690}, {"solidity": 0.9971679190685888, "top": 800, "right": 2340, "bottom": 3205, "left": 725}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707129f.jpg"} -{"rects": [{"solidity": 0.9965849316177066, "top": 790, "right": 3840, "bottom": 3205, "left": 2210}, {"solidity": 0.9989531536247056, "top": 785, "right": 2035, "bottom": 3180, "left": 430}, {"solidity": 0.9949898563100662, "top": 1055, "right": 5425, "bottom": 2865, "left": 3990}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716739f.jpg"} -{"rects": [{"solidity": 0.9965851357119703, "top": 435, "right": 3185, "bottom": 2055, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705048f.jpg"} -{"rects": [{"solidity": 0.9965852190153132, "top": 395, "right": 3255, "bottom": 2010, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719235f.jpg"} -{"rects": [{"solidity": 0.9965852842163533, "top": 780, "right": 3865, "bottom": 3200, "left": 2240}, {"solidity": 0.9990208602164482, "top": 775, "right": 2030, "bottom": 3185, "left": 420}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732415f.jpg"} -{"rects": [{"solidity": 0.9965852880165949, "top": 805, "right": 5695, "bottom": 3245, "left": 4065}, {"solidity": 0.9980672992846749, "top": 795, "right": 1925, "bottom": 3205, "left": 305}, {"solidity": 0.9962892455765682, "top": 805, "right": 3805, "bottom": 3210, "left": 2170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716586f.jpg"} -{"rects": [{"solidity": 0.9965852947006616, "top": 805, "right": 3435, "bottom": 3045, "left": 385}, {"solidity": 0.9962625599855905, "top": 3210, "right": 3170, "bottom": 4855, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726641f.jpg"} -{"rects": [{"solidity": 0.9965853979679168, "top": 640, "right": 4915, "bottom": 3670, "left": 1130}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709941f.jpg"} -{"rects": [{"solidity": 0.9965854740109594, "top": 690, "right": 5670, "bottom": 3120, "left": 4020}, {"solidity": 0.9959824157908527, "top": 680, "right": 3745, "bottom": 3095, "left": 2130}, {"solidity": 0.9949970149842855, "top": 915, "right": 1835, "bottom": 2735, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704790f.jpg"} -{"rects": [{"solidity": 0.9965855495350603, "top": 365, "right": 2975, "bottom": 2010, "left": 540}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707898f.jpg"} -{"rects": [{"solidity": 0.996585699270713, "top": 415, "right": 3275, "bottom": 2030, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725302f.jpg"} -{"rects": [{"solidity": 0.9965857526020141, "top": 475, "right": 3120, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723766f.jpg"} -{"rects": [{"solidity": 0.9965858067812263, "top": 845, "right": 3325, "bottom": 2680, "left": 1925}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702803f.jpg"} -{"rects": [{"solidity": 0.996585827952887, "top": 740, "right": 2085, "bottom": 3155, "left": 465}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707467f.jpg"} -{"rects": [{"solidity": 0.9965859241511013, "top": 845, "right": 3805, "bottom": 3235, "left": 2175}, {"solidity": 0.9961694597008188, "top": 850, "right": 1950, "bottom": 3225, "left": 325}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720196f.jpg"} -{"rects": [{"solidity": 0.9965860251212185, "top": 775, "right": 2055, "bottom": 3205, "left": 430}, {"solidity": 0.9952487074789234, "top": 790, "right": 3990, "bottom": 2155, "left": 2130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723308f.jpg"} -{"rects": [{"solidity": 0.9965860624645377, "top": 395, "right": 3225, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/704621f.jpg"} -{"rects": [{"solidity": 0.9965860652312282, "top": 820, "right": 3890, "bottom": 3245, "left": 2255}, {"solidity": 0.9997739616768169, "top": 815, "right": 2025, "bottom": 3225, "left": 410}, {"solidity": 0.9971677898402957, "top": 845, "right": 5745, "bottom": 3265, "left": 4135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709398f.jpg"} -{"rects": [{"solidity": 0.9965861507961203, "top": 450, "right": 3155, "bottom": 2390, "left": 965}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726365f.jpg"} -{"rects": [{"solidity": 0.9965863425301393, "top": 1100, "right": 3545, "bottom": 5205, "left": 280}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710891f.jpg"} -{"rects": [{"solidity": 0.9965864689869022, "top": 810, "right": 2045, "bottom": 3220, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713132f.jpg"} -{"rects": [{"solidity": 0.9965867108965214, "top": 3400, "right": 3200, "bottom": 5355, "left": 425}, {"solidity": 0.9960571383706437, "top": 815, "right": 3180, "bottom": 2700, "left": 440}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703571f.jpg"} -{"rects": [{"solidity": 0.9965868671083287, "top": 740, "right": 2030, "bottom": 3170, "left": 405}, {"solidity": 0.9980494315119472, "top": 735, "right": 5710, "bottom": 3165, "left": 4095}, {"solidity": 0.9998873370007823, "top": 740, "right": 3865, "bottom": 3165, "left": 2255}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731658f.jpg"} -{"rects": [{"solidity": 0.9965869421337451, "top": 425, "right": 3170, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702366f.jpg"} -{"rects": [{"solidity": 0.9965870525095859, "top": 365, "right": 3175, "bottom": 1990, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701399f.jpg"} -{"rects": [{"solidity": 0.9965874748760067, "top": 2115, "right": 2675, "bottom": 3555, "left": 850}, {"solidity": 0.9946300918409383, "top": 640, "right": 5305, "bottom": 2070, "left": 3480}, {"solidity": 0.9961078593226275, "top": 635, "right": 2665, "bottom": 2035, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702414f.jpg"} -{"rects": [{"solidity": 0.9965875133152968, "top": 710, "right": 3355, "bottom": 2660, "left": 605}, {"solidity": 0.991749129887946, "top": 3315, "right": 3295, "bottom": 5205, "left": 600}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714017f.jpg"} -{"rects": [{"solidity": 0.9965876495994197, "top": 825, "right": 5845, "bottom": 3215, "left": 4245}, {"solidity": 0.9942629893332627, "top": 810, "right": 3960, "bottom": 3200, "left": 2365}, {"solidity": 0.996634406081511, "top": 810, "right": 2075, "bottom": 3200, "left": 495}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731673f.jpg"} -{"rects": [{"solidity": 0.9965879866009011, "top": 680, "right": 3290, "bottom": 2700, "left": 465}, {"solidity": 0.9963831823543814, "top": 3305, "right": 3265, "bottom": 5335, "left": 435}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731363f.jpg"} -{"rects": [{"solidity": 0.9965881182828579, "top": 395, "right": 3065, "bottom": 2035, "left": 650}, {"solidity": 0.9997660134542263, "top": 2255, "right": 3060, "bottom": 3870, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707833f.jpg"} -{"rects": [{"solidity": 0.9965881230836198, "top": 835, "right": 3865, "bottom": 3265, "left": 2240}, {"solidity": 0.995779972929356, "top": 845, "right": 2025, "bottom": 3250, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731575f.jpg"} -{"rects": [{"solidity": 0.9965881295527007, "top": 610, "right": 4935, "bottom": 3635, "left": 1210}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718208f.jpg"} -{"rects": [{"solidity": 0.9965882564194649, "top": 410, "right": 3215, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701714f.jpg"} -{"rects": [{"solidity": 0.9965883546203471, "top": 880, "right": 3915, "bottom": 3315, "left": 2270}, {"solidity": 0.9962624690665102, "top": 900, "right": 5770, "bottom": 3335, "left": 4125}, {"solidity": 0.9963570127504554, "top": 870, "right": 2050, "bottom": 3290, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730637f.jpg"} -{"rects": [{"solidity": 0.9965883850486748, "top": 490, "right": 3540, "bottom": 2300, "left": 835}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711261f.jpg"} -{"rects": [{"solidity": 0.9965884644702295, "top": 1020, "right": 2610, "bottom": 4020, "left": 130}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508311.jpg"} -{"rects": [{"solidity": 0.9965886138948752, "top": 825, "right": 5730, "bottom": 3250, "left": 4110}, {"solidity": 0.9963699841247305, "top": 820, "right": 3880, "bottom": 3240, "left": 2265}, {"solidity": 0.9975443960189944, "top": 810, "right": 2025, "bottom": 3220, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734213f.jpg"} -{"rects": [{"solidity": 0.9965886237670769, "top": 370, "right": 3285, "bottom": 2190, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724828f.jpg"} -{"rects": [{"solidity": 0.9965886441589433, "top": 1035, "right": 3560, "bottom": 5020, "left": 480}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731789f.jpg"} -{"rects": [{"solidity": 0.9965887969908204, "top": 2235, "right": 3215, "bottom": 3880, "left": 765}, {"solidity": 0.9963927005234121, "top": 405, "right": 3240, "bottom": 2040, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707360f.jpg"} -{"rects": [{"solidity": 0.9965888312393401, "top": 695, "right": 2660, "bottom": 2045, "left": 835}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727330f.jpg"} -{"rects": [{"solidity": 0.9965889597318763, "top": 470, "right": 2935, "bottom": 1885, "left": 1130}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726226f.jpg"} -{"rects": [{"solidity": 0.996588980338213, "top": 440, "right": 3090, "bottom": 2035, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700421f.jpg"} -{"rects": [{"solidity": 0.9965890713060525, "top": 765, "right": 3875, "bottom": 3175, "left": 2270}, {"solidity": 0.9963428145620692, "top": 765, "right": 2040, "bottom": 3170, "left": 430}, {"solidity": 0.9972482808066324, "top": 780, "right": 5790, "bottom": 2185, "left": 4010}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722000f.jpg"} -{"rects": [{"solidity": 0.996589142851694, "top": 440, "right": 5030, "bottom": 3725, "left": 980}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724850f.jpg"} -{"rects": [{"solidity": 0.9965891774470707, "top": 430, "right": 3160, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734596f.jpg"} -{"rects": [{"solidity": 0.996589223608838, "top": 830, "right": 2075, "bottom": 3260, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723299f.jpg"} -{"rects": [{"solidity": 0.9965893587994543, "top": 810, "right": 2065, "bottom": 3215, "left": 475}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722594f.jpg"} -{"rects": [{"solidity": 0.996589448790427, "top": 2245, "right": 5085, "bottom": 3675, "left": 3280}, {"solidity": 0.9938681404126948, "top": 2270, "right": 2870, "bottom": 3690, "left": 1060}, {"solidity": 0.9952159974670017, "top": 650, "right": 2865, "bottom": 2050, "left": 1045}, {"solidity": 0.9962696615765169, "top": 640, "right": 5075, "bottom": 2035, "left": 3260}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727766f.jpg"} -{"rects": [{"solidity": 0.9965895011411803, "top": 815, "right": 2155, "bottom": 3215, "left": 535}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708293f.jpg"} -{"rects": [{"solidity": 0.996589583078143, "top": 725, "right": 2030, "bottom": 3155, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728047f.jpg"} -{"rects": [{"solidity": 0.9965896945141806, "top": 675, "right": 2710, "bottom": 2095, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726380f.jpg"} -{"rects": [{"solidity": 0.9965899898548847, "top": 425, "right": 2885, "bottom": 1915, "left": 990}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701857f.jpg"} -{"rects": [{"solidity": 0.9965902285416224, "top": 2110, "right": 2815, "bottom": 3540, "left": 990}, {"solidity": 0.9977556219469857, "top": 475, "right": 2800, "bottom": 1900, "left": 990}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726569f.jpg"} -{"rects": [{"solidity": 0.9965902479140053, "top": 890, "right": 3925, "bottom": 3300, "left": 2310}, {"solidity": 0.9959422785867126, "top": 885, "right": 2040, "bottom": 3285, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729948f.jpg"} -{"rects": [{"solidity": 0.9965902917585403, "top": 300, "right": 3215, "bottom": 1930, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727226f.jpg"} -{"rects": [{"solidity": 0.9965903949324543, "top": 2295, "right": 3075, "bottom": 3910, "left": 655}, {"solidity": 0.9974337040205303, "top": 435, "right": 3065, "bottom": 2050, "left": 650}, {"solidity": 0.9970394800911528, "top": 4155, "right": 3060, "bottom": 5760, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730592f.jpg"} -{"rects": [{"solidity": 0.9965904365904366, "top": 400, "right": 3080, "bottom": 2115, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700263f.jpg"} -{"rects": [{"solidity": 0.9965905445430061, "top": 810, "right": 3235, "bottom": 2690, "left": 535}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712332f.jpg"} -{"rects": [{"solidity": 0.9965906153050672, "top": 370, "right": 3120, "bottom": 1990, "left": 705}, {"solidity": 0.9950149192135233, "top": 2230, "right": 3105, "bottom": 3840, "left": 685}, {"solidity": 0.9972844085309313, "top": 4115, "right": 3080, "bottom": 5705, "left": 690}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728901f.jpg"} -{"rects": [{"solidity": 0.9965906641240362, "top": 780, "right": 2055, "bottom": 3175, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714363f.jpg"} -{"rects": [{"solidity": 0.9965908105973785, "top": 755, "right": 2055, "bottom": 3185, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715182f.jpg"} -{"rects": [{"solidity": 0.99659089088608, "top": 805, "right": 3500, "bottom": 3220, "left": 1865}, {"solidity": 0.9957408292057426, "top": 1020, "right": 1595, "bottom": 2960, "left": 305}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732854f.jpg"} -{"rects": [{"solidity": 0.9965909717514491, "top": 470, "right": 3275, "bottom": 2075, "left": 855}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/700964f.jpg"} -{"rects": [{"solidity": 0.996591077515933, "top": 895, "right": 2075, "bottom": 3315, "left": 450}, {"solidity": 0.9965986394557823, "top": 905, "right": 3950, "bottom": 3320, "left": 2330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728657f.jpg"} -{"rects": [{"solidity": 0.9965911568266048, "top": 2090, "right": 3195, "bottom": 3695, "left": 805}, {"solidity": 0.9972855158848819, "top": 445, "right": 3175, "bottom": 2040, "left": 795}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704897f.jpg"} -{"rects": [{"solidity": 0.9965912602461301, "top": 910, "right": 5740, "bottom": 3345, "left": 4100}, {"solidity": 0.9964494502891025, "top": 890, "right": 2040, "bottom": 3325, "left": 410}, {"solidity": 0.9965652490434972, "top": 905, "right": 3895, "bottom": 3330, "left": 2270}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734816f.jpg"} -{"rects": [{"solidity": 0.9965912916161461, "top": 835, "right": 2090, "bottom": 3240, "left": 480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712262f.jpg"} -{"rects": [{"solidity": 0.9965914425915327, "top": 850, "right": 3905, "bottom": 3270, "left": 2270}, {"solidity": 0.9966533405039751, "top": 875, "right": 2040, "bottom": 3285, "left": 415}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732523f.jpg"} -{"rects": [{"solidity": 0.9965915132794896, "top": 770, "right": 5610, "bottom": 3210, "left": 3960}, {"solidity": 0.993538174956688, "top": 910, "right": 3610, "bottom": 2765, "left": 2190}, {"solidity": 0.9963338124465854, "top": 915, "right": 1835, "bottom": 2765, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703629f.jpg"} -{"rects": [{"solidity": 0.9965915275112422, "top": 2085, "right": 3020, "bottom": 3730, "left": 580}, {"solidity": 0.9966239415881208, "top": 390, "right": 2975, "bottom": 2025, "left": 545}, {"solidity": 0.9963045156310305, "top": 395, "right": 5530, "bottom": 2020, "left": 3115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731537f.jpg"} -{"rects": [{"solidity": 0.9965917275439861, "top": 945, "right": 3855, "bottom": 3370, "left": 2230}, {"solidity": 0.996431247992577, "top": 940, "right": 1985, "bottom": 3355, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709424f.jpg"} -{"rects": [{"solidity": 0.9965918003104818, "top": 435, "right": 3205, "bottom": 2055, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707809f.jpg"} -{"rects": [{"solidity": 0.9965918905670067, "top": 2260, "right": 3200, "bottom": 3840, "left": 805}, {"solidity": 0.995094784120448, "top": 425, "right": 3215, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710494f.jpg"} -{"rects": [{"solidity": 0.9965919924939088, "top": 475, "right": 4845, "bottom": 3635, "left": 905}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714154f.jpg"} -{"rects": [{"solidity": 0.9965922072557587, "top": 490, "right": 3150, "bottom": 2120, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713241f.jpg"} -{"rects": [{"solidity": 0.9965923893393297, "top": 660, "right": 2740, "bottom": 2070, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727439f.jpg"} -{"rects": [{"solidity": 0.9965923958027394, "top": 735, "right": 2015, "bottom": 3125, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726190f.jpg"} -{"rects": [{"solidity": 0.996592421428258, "top": 690, "right": 2670, "bottom": 2120, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728256f.jpg"} -{"rects": [{"solidity": 0.9965925325302135, "top": 425, "right": 3150, "bottom": 2050, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728531f.jpg"} -{"rects": [{"solidity": 0.9965925583850113, "top": 855, "right": 3890, "bottom": 3250, "left": 2295}, {"solidity": 0.9970581481641713, "top": 860, "right": 2005, "bottom": 3250, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731807f.jpg"} -{"rects": [{"solidity": 0.9965926930383723, "top": 1080, "right": 3500, "bottom": 5110, "left": 245}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714871f.jpg"} -{"rects": [{"solidity": 0.9965927681665357, "top": 805, "right": 3835, "bottom": 3230, "left": 2215}, {"solidity": 0.9985435545020636, "top": 800, "right": 1975, "bottom": 3220, "left": 365}, {"solidity": 0.9966239114858018, "top": 800, "right": 5700, "bottom": 3225, "left": 4085}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704627f.jpg"} -{"rects": [{"solidity": 0.9965928340228023, "top": 2305, "right": 3290, "bottom": 3920, "left": 860}, {"solidity": 0.9981802314306032, "top": 430, "right": 3280, "bottom": 2050, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727009f.jpg"} -{"rects": [{"solidity": 0.9965928667542422, "top": 820, "right": 3935, "bottom": 3240, "left": 2305}, {"solidity": 0.9980600410776537, "top": 830, "right": 2070, "bottom": 3225, "left": 455}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704787f.jpg"} -{"rects": [{"solidity": 0.9965928776440356, "top": 825, "right": 2060, "bottom": 3265, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700884f.jpg"} -{"rects": [{"solidity": 0.9965929645888989, "top": 1110, "right": 2680, "bottom": 2700, "left": 300}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722866f.jpg"} -{"rects": [{"solidity": 0.9965931690445309, "top": 835, "right": 5970, "bottom": 2890, "left": 2735}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724960f.jpg"} -{"rects": [{"solidity": 0.9965932022945037, "top": 4045, "right": 3175, "bottom": 5685, "left": 740}, {"solidity": 0.9925908352061966, "top": 345, "right": 3195, "bottom": 1985, "left": 760}, {"solidity": 0.9963915200721696, "top": 2165, "right": 3190, "bottom": 3785, "left": 760}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701990f.jpg"} -{"rects": [{"solidity": 0.9965932795577399, "top": 440, "right": 3190, "bottom": 2060, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704665f.jpg"} -{"rects": [{"solidity": 0.9965932958505394, "top": 460, "right": 3110, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714216f.jpg"} -{"rects": [{"solidity": 0.9965934849195086, "top": 545, "right": 3050, "bottom": 2180, "left": 620}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707807f.jpg"} -{"rects": [{"solidity": 0.9965935056834158, "top": 305, "right": 2955, "bottom": 1935, "left": 550}, {"solidity": 0.9969404801989173, "top": 2065, "right": 2980, "bottom": 3685, "left": 575}, {"solidity": 0.9972296016414285, "top": 300, "right": 5555, "bottom": 1915, "left": 3150}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701575f.jpg"} -{"rects": [{"solidity": 0.9965936951865957, "top": 645, "right": 2685, "bottom": 2075, "left": 865}, {"solidity": 0.9959058241849512, "top": 645, "right": 5310, "bottom": 2065, "left": 3490}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704318f.jpg"} -{"rects": [{"solidity": 0.996593853409543, "top": 2080, "right": 5285, "bottom": 3510, "left": 3465}, {"solidity": 0.9952172005265467, "top": 2110, "right": 2705, "bottom": 3540, "left": 885}, {"solidity": 0.9974552950575517, "top": 635, "right": 2685, "bottom": 2055, "left": 885}, {"solidity": 0.9958119112084614, "top": 625, "right": 5275, "bottom": 2005, "left": 3465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731969f.jpg"} -{"rects": [{"solidity": 0.9965938805638913, "top": 810, "right": 2050, "bottom": 3230, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728806f.jpg"} -{"rects": [{"solidity": 0.9965939350068509, "top": 800, "right": 2070, "bottom": 3220, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712580f.jpg"} -{"rects": [{"solidity": 0.9965940319402675, "top": 725, "right": 2035, "bottom": 3140, "left": 415}, {"solidity": 0.9968488112311099, "top": 740, "right": 3865, "bottom": 3140, "left": 2240}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718782f.jpg"} -{"rects": [{"solidity": 0.9965942269354939, "top": 2350, "right": 3040, "bottom": 3955, "left": 640}, {"solidity": 0.991406358886498, "top": 530, "right": 3000, "bottom": 2110, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726847f.jpg"} -{"rects": [{"solidity": 0.9965942830529196, "top": 700, "right": 3150, "bottom": 2330, "left": 740}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714988f.jpg"} -{"rects": [{"solidity": 0.996594414052385, "top": 2185, "right": 3285, "bottom": 3790, "left": 880}, {"solidity": 0.9964427113780092, "top": 375, "right": 3290, "bottom": 1955, "left": 890}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725063f.jpg"} -{"rects": [{"solidity": 0.996594563709085, "top": 2280, "right": 3165, "bottom": 3895, "left": 760}, {"solidity": 0.9967329587388434, "top": 435, "right": 3145, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724761f.jpg"} -{"rects": [{"solidity": 0.996594587728844, "top": 1475, "right": 3400, "bottom": 5205, "left": 450}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712955f.jpg"} -{"rects": [{"solidity": 0.9965947944484908, "top": 1185, "right": 3330, "bottom": 4715, "left": 500}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726523f.jpg"} -{"rects": [{"solidity": 0.9965948131707763, "top": 850, "right": 2030, "bottom": 3220, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717383f.jpg"} -{"rects": [{"solidity": 0.9965948343539017, "top": 745, "right": 2030, "bottom": 3155, "left": 430}, {"solidity": 0.9943094654306581, "top": 740, "right": 3920, "bottom": 3145, "left": 2310}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722686f.jpg"} -{"rects": [{"solidity": 0.996595114259191, "top": 595, "right": 3340, "bottom": 2240, "left": 910}, {"solidity": 0.9977730372668799, "top": 2440, "right": 3335, "bottom": 4060, "left": 930}, {"solidity": 0.9955456425540481, "top": 4265, "right": 3335, "bottom": 5890, "left": 930}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710287f.jpg"} -{"rects": [{"solidity": 0.9965953133578722, "top": 810, "right": 3890, "bottom": 3220, "left": 2275}, {"solidity": 0.9960531761991207, "top": 815, "right": 5745, "bottom": 3225, "left": 4125}, {"solidity": 0.9968189515944473, "top": 805, "right": 2020, "bottom": 3200, "left": 405}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731722f.jpg"} -{"rects": [{"solidity": 0.996595663812791, "top": 425, "right": 3155, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713548f.jpg"} -{"rects": [{"solidity": 0.9965956762838544, "top": 385, "right": 3250, "bottom": 2010, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704653f.jpg"} -{"rects": [{"solidity": 0.9965957608664644, "top": 580, "right": 3360, "bottom": 2230, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701288f.jpg"} -{"rects": [{"solidity": 0.9965963152534069, "top": 400, "right": 3210, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/705442f.jpg"} -{"rects": [{"solidity": 0.9965964898421351, "top": 755, "right": 1970, "bottom": 3150, "left": 375}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721526f.jpg"} -{"rects": [{"solidity": 0.9965965179035868, "top": 505, "right": 3345, "bottom": 2420, "left": 555}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717883f.jpg"} -{"rects": [{"solidity": 0.9965965306149087, "top": 390, "right": 2930, "bottom": 2010, "left": 535}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700238f.jpg"} -{"rects": [{"solidity": 0.9965967717352497, "top": 475, "right": 3390, "bottom": 2465, "left": 335}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714705f.jpg"} -{"rects": [{"solidity": 0.9965969890056567, "top": 2350, "right": 3095, "bottom": 4005, "left": 670}, {"solidity": 0.9971661660119644, "top": 485, "right": 3080, "bottom": 2115, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707913f.jpg"} -{"rects": [{"solidity": 0.9965971690018144, "top": 730, "right": 3815, "bottom": 3130, "left": 2215}, {"solidity": 0.9959431513468407, "top": 735, "right": 2015, "bottom": 3130, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719919f.jpg"} -{"rects": [{"solidity": 0.9965971913325284, "top": 385, "right": 3315, "bottom": 2020, "left": 875}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726110f.jpg"} -{"rects": [{"solidity": 0.9965972358890038, "top": 925, "right": 5725, "bottom": 3365, "left": 4085}, {"solidity": 0.9962889856454126, "top": 915, "right": 3850, "bottom": 3345, "left": 2225}, {"solidity": 0.9966604548655926, "top": 905, "right": 1960, "bottom": 3305, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734824f.jpg"} -{"rects": [{"solidity": 0.9965975225711221, "top": 425, "right": 3170, "bottom": 2150, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722775f.jpg"} -{"rects": [{"solidity": 0.9965975923396122, "top": 2275, "right": 3170, "bottom": 3900, "left": 735}, {"solidity": 0.9970253616889765, "top": 440, "right": 3170, "bottom": 2060, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713606f.jpg"} -{"rects": [{"solidity": 0.9965977106029987, "top": 395, "right": 3020, "bottom": 2035, "left": 605}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702043f.jpg"} -{"rects": [{"solidity": 0.9965977644289518, "top": 4110, "right": 3105, "bottom": 5730, "left": 670}, {"solidity": 0.9956417309107813, "top": 395, "right": 3095, "bottom": 2015, "left": 680}, {"solidity": 0.9951881960737488, "top": 2305, "right": 3095, "bottom": 3920, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728603f.jpg"} -{"rects": [{"solidity": 0.9965978752768239, "top": 450, "right": 3100, "bottom": 2095, "left": 685}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719991f.jpg"} -{"rects": [{"solidity": 0.9965979175911456, "top": 785, "right": 3800, "bottom": 3220, "left": 2180}, {"solidity": 0.9969183359013868, "top": 780, "right": 5615, "bottom": 3200, "left": 4000}, {"solidity": 0.9950287182340332, "top": 810, "right": 1990, "bottom": 3215, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713684f.jpg"} -{"rects": [{"solidity": 0.9965983170977721, "top": 740, "right": 2090, "bottom": 3110, "left": 515}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723804f.jpg"} -{"rects": [{"solidity": 0.9965983254387024, "top": 730, "right": 3445, "bottom": 2675, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705330f.jpg"} -{"rects": [{"solidity": 0.9965984231245819, "top": 1155, "right": 3365, "bottom": 4960, "left": 350}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722179f.jpg"} -{"rects": [{"solidity": 0.9965984938807537, "top": 530, "right": 2600, "bottom": 3600, "left": 590}, {"solidity": 0.9958792546938828, "top": 805, "right": 4870, "bottom": 3210, "left": 3255}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723366f.jpg"} -{"rects": [{"solidity": 0.9965986503495832, "top": 415, "right": 3105, "bottom": 2040, "left": 675}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728964f.jpg"} -{"rects": [{"solidity": 0.9965987601932317, "top": 905, "right": 2050, "bottom": 3325, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728796f.jpg"} -{"rects": [{"solidity": 0.9965987809365351, "top": 2210, "right": 3130, "bottom": 3850, "left": 705}, {"solidity": 0.9962319554487907, "top": 365, "right": 3120, "bottom": 2015, "left": 690}, {"solidity": 0.9976913290840873, "top": 4090, "right": 3135, "bottom": 5705, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709265f.jpg"} -{"rects": [{"solidity": 0.9965988182207239, "top": 650, "right": 5940, "bottom": 2290, "left": 3885}, {"solidity": 0.9975132157511407, "top": 700, "right": 3055, "bottom": 2320, "left": 990}, {"solidity": 0.9963962267703489, "top": 2350, "right": 3060, "bottom": 3975, "left": 995}], "shape": {"h": 4435, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/703417f.jpg"} -{"rects": [{"solidity": 0.9965989006418255, "top": 2295, "right": 3105, "bottom": 3925, "left": 675}, {"solidity": 0.9987621971803816, "top": 425, "right": 3100, "bottom": 2045, "left": 685}, {"solidity": 0.9985145264362286, "top": 4145, "right": 3095, "bottom": 5755, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724582f.jpg"} -{"rects": [{"solidity": 0.9965990848080145, "top": 860, "right": 3945, "bottom": 3235, "left": 2365}, {"solidity": 0.9980314165724439, "top": 860, "right": 2265, "bottom": 3235, "left": 690}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709178f.jpg"} -{"rects": [{"solidity": 0.996599105451908, "top": 1225, "right": 2705, "bottom": 4395, "left": 240}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508535.jpg"} -{"rects": [{"solidity": 0.9965991237859335, "top": 745, "right": 1980, "bottom": 3130, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716949f.jpg"} -{"rects": [{"solidity": 0.9965992194613447, "top": 4115, "right": 3075, "bottom": 5735, "left": 650}, {"solidity": 0.9959090792048615, "top": 385, "right": 3095, "bottom": 2020, "left": 665}, {"solidity": 0.9970780761455307, "top": 2245, "right": 3070, "bottom": 3860, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700740f.jpg"} -{"rects": [{"solidity": 0.9965993101954962, "top": 875, "right": 5860, "bottom": 2950, "left": 2625}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703751f.jpg"} -{"rects": [{"solidity": 0.9965993808440738, "top": 430, "right": 3095, "bottom": 3835, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714465f.jpg"} -{"rects": [{"solidity": 0.9965995823813207, "top": 570, "right": 5020, "bottom": 3485, "left": 1155}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715725f.jpg"} -{"rects": [{"solidity": 0.9965996076602283, "top": 330, "right": 4210, "bottom": 2760, "left": 1185}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517243.jpg"} -{"rects": [{"solidity": 0.996599928081576, "top": 800, "right": 2035, "bottom": 3225, "left": 415}, {"solidity": 0.9967377512704414, "top": 815, "right": 3855, "bottom": 3230, "left": 2235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706637f.jpg"} -{"rects": [{"solidity": 0.996600370694043, "top": 390, "right": 3160, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715298f.jpg"} -{"rects": [{"solidity": 0.9966003885270255, "top": 585, "right": 5360, "bottom": 2020, "left": 3510}, {"solidity": 0.9998368537729965, "top": 2095, "right": 2730, "bottom": 3520, "left": 890}, {"solidity": 0.9981974899088198, "top": 590, "right": 2730, "bottom": 2015, "left": 885}, {"solidity": 0.9951500586336195, "top": 2070, "right": 5355, "bottom": 3510, "left": 3530}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703889f.jpg"} -{"rects": [{"solidity": 0.9966004426714027, "top": 450, "right": 2985, "bottom": 2055, "left": 610}, {"solidity": 0.9958454604420643, "top": 2260, "right": 3000, "bottom": 3850, "left": 610}, {"solidity": 0.9951114450288004, "top": 4055, "right": 2985, "bottom": 5665, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720602f.jpg"} -{"rects": [{"solidity": 0.9966005152180135, "top": 515, "right": 5095, "bottom": 3715, "left": 980}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725673f.jpg"} -{"rects": [{"solidity": 0.9966006231653837, "top": 4090, "right": 3190, "bottom": 5705, "left": 750}, {"solidity": 0.9954300146304125, "top": 590, "right": 3195, "bottom": 2205, "left": 770}, {"solidity": 0.996487884828638, "top": 2345, "right": 3195, "bottom": 3950, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733166f.jpg"} -{"rects": [{"solidity": 0.9966006484126729, "top": 400, "right": 3185, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713208f.jpg"} -{"rects": [{"solidity": 0.9966011147619611, "top": 1170, "right": 3885, "bottom": 5710, "left": 215}], "shape": {"h": 6925, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708326f.jpg"} -{"rects": [{"solidity": 0.9966013149011202, "top": 375, "right": 3020, "bottom": 1985, "left": 625}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714897f.jpg"} -{"rects": [{"solidity": 0.9966015837901959, "top": 4035, "right": 3130, "bottom": 5660, "left": 710}, {"solidity": 0.9983283774009484, "top": 320, "right": 3145, "bottom": 1940, "left": 730}, {"solidity": 0.9976444605618664, "top": 2160, "right": 3125, "bottom": 3785, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720381f.jpg"} -{"rects": [{"solidity": 0.9966016005365215, "top": 800, "right": 2025, "bottom": 3220, "left": 410}, {"solidity": 0.9951342525985678, "top": 790, "right": 3845, "bottom": 3205, "left": 2230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704902f.jpg"} -{"rects": [{"solidity": 0.9966016629067815, "top": 505, "right": 3045, "bottom": 2125, "left": 615}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705792f.jpg"} -{"rects": [{"solidity": 0.9966016662797597, "top": 2240, "right": 3090, "bottom": 3875, "left": 675}, {"solidity": 0.9958648206313493, "top": 390, "right": 3105, "bottom": 2030, "left": 690}, {"solidity": 0.9957238356448611, "top": 4080, "right": 3070, "bottom": 5710, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723163f.jpg"} -{"rects": [{"solidity": 0.9966019396665671, "top": 1415, "right": 3255, "bottom": 4820, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700199f.jpg"} -{"rects": [{"solidity": 0.9966024419644594, "top": 525, "right": 3345, "bottom": 2445, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707754f.jpg"} -{"rects": [{"solidity": 0.9966024696442245, "top": 2330, "right": 3125, "bottom": 3955, "left": 700}, {"solidity": 0.9966096336726925, "top": 455, "right": 3140, "bottom": 2070, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730618f.jpg"} -{"rects": [{"solidity": 0.996602545851235, "top": 390, "right": 3170, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706456f.jpg"} -{"rects": [{"solidity": 0.9966025468677437, "top": 640, "right": 2310, "bottom": 3355, "left": 410}, {"solidity": 0.9961643113910956, "top": 735, "right": 4160, "bottom": 3160, "left": 2540}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703869f.jpg"} -{"rects": [{"solidity": 0.9966025866889928, "top": 425, "right": 3165, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721685f.jpg"} -{"rects": [{"solidity": 0.9966025897422305, "top": 655, "right": 2655, "bottom": 2090, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725389f.jpg"} -{"rects": [{"solidity": 0.9966026276044627, "top": 740, "right": 2035, "bottom": 3155, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720969f.jpg"} -{"rects": [{"solidity": 0.9966026621026958, "top": 395, "right": 3250, "bottom": 2020, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725582f.jpg"} -{"rects": [{"solidity": 0.9966026800723652, "top": 390, "right": 3220, "bottom": 2010, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724513f.jpg"} -{"rects": [{"solidity": 0.9966026957008601, "top": 880, "right": 3875, "bottom": 3320, "left": 2235}, {"solidity": 0.9963016904740705, "top": 890, "right": 5740, "bottom": 3330, "left": 4090}, {"solidity": 0.9981886389375064, "top": 890, "right": 2020, "bottom": 3310, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718784f.jpg"} -{"rects": [{"solidity": 0.9966027281025417, "top": 395, "right": 3145, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707444f.jpg"} -{"rects": [{"solidity": 0.9966028715708157, "top": 550, "right": 3335, "bottom": 2195, "left": 895}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703794f.jpg"} -{"rects": [{"solidity": 0.9966028896210768, "top": 835, "right": 2140, "bottom": 3255, "left": 495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707997f.jpg"} -{"rects": [{"solidity": 0.9966029765641348, "top": 885, "right": 5665, "bottom": 3285, "left": 4050}, {"solidity": 0.9979086435074379, "top": 895, "right": 3855, "bottom": 3285, "left": 2250}, {"solidity": 0.9965211191830241, "top": 895, "right": 2070, "bottom": 3290, "left": 465}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720217f.jpg"} -{"rects": [{"solidity": 0.9966032761948959, "top": 475, "right": 5640, "bottom": 2115, "left": 3230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705509f.jpg"} -{"rects": [{"solidity": 0.9966033901585407, "top": 785, "right": 2065, "bottom": 3200, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708097f.jpg"} -{"rects": [{"solidity": 0.9966034368613453, "top": 445, "right": 3125, "bottom": 2075, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727826f.jpg"} -{"rects": [{"solidity": 0.9966036512354299, "top": 4085, "right": 3230, "bottom": 5705, "left": 805}, {"solidity": 0.996407509464088, "top": 2245, "right": 3245, "bottom": 3870, "left": 815}, {"solidity": 0.9964468333209511, "top": 425, "right": 3265, "bottom": 2050, "left": 840}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/724949f.jpg"} -{"rects": [{"solidity": 0.9966037143193687, "top": 755, "right": 3870, "bottom": 3160, "left": 2270}, {"solidity": 0.9948135523985228, "top": 780, "right": 1990, "bottom": 3165, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717564f.jpg"} -{"rects": [{"solidity": 0.9966039010114329, "top": 660, "right": 1880, "bottom": 3075, "left": 255}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724772f.jpg"} -{"rects": [{"solidity": 0.9966039219224251, "top": 415, "right": 3125, "bottom": 2040, "left": 705}, {"solidity": 0.9952576739311165, "top": 2240, "right": 3100, "bottom": 3870, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711817f.jpg"} -{"rects": [{"solidity": 0.9966039665924347, "top": 820, "right": 5765, "bottom": 3260, "left": 4130}, {"solidity": 0.997617072522348, "top": 800, "right": 3970, "bottom": 3230, "left": 2350}, {"solidity": 0.9967823252677381, "top": 805, "right": 2220, "bottom": 3240, "left": 605}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733233f.jpg"} -{"rects": [{"solidity": 0.9966040082269096, "top": 345, "right": 3580, "bottom": 2210, "left": 2445}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715672f.jpg"} -{"rects": [{"solidity": 0.9966040240211075, "top": 350, "right": 2985, "bottom": 1965, "left": 570}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709517f.jpg"} -{"rects": [{"solidity": 0.9966041937882069, "top": 645, "right": 2020, "bottom": 3055, "left": 410}, {"solidity": 0.9968507527791364, "top": 660, "right": 3850, "bottom": 3055, "left": 2250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726991f.jpg"} -{"rects": [{"solidity": 0.9966043275674986, "top": 2240, "right": 3100, "bottom": 3875, "left": 670}, {"solidity": 0.999259179484167, "top": 405, "right": 3090, "bottom": 2010, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709268f.jpg"} -{"rects": [{"solidity": 0.9966044252843713, "top": 790, "right": 5660, "bottom": 3200, "left": 4035}, {"solidity": 0.9943128880043013, "top": 760, "right": 3825, "bottom": 3140, "left": 2220}, {"solidity": 0.9700632056839994, "top": 750, "right": 2000, "bottom": 3135, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720115f.jpg"} -{"rects": [{"solidity": 0.9966045061099796, "top": 830, "right": 3745, "bottom": 3265, "left": 2110}, {"solidity": 0.9969357723862393, "top": 845, "right": 5595, "bottom": 3270, "left": 3955}, {"solidity": 0.9973872634718223, "top": 815, "right": 1915, "bottom": 3235, "left": 295}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723581f.jpg"} -{"rects": [{"solidity": 0.9966046002190581, "top": 405, "right": 3230, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706803f.jpg"} -{"rects": [{"solidity": 0.9966046846433645, "top": 4095, "right": 3280, "bottom": 5725, "left": 840}, {"solidity": 0.9945047939616483, "top": 2240, "right": 3300, "bottom": 3875, "left": 850}, {"solidity": 0.9950539294672403, "top": 410, "right": 3335, "bottom": 2055, "left": 905}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704047f.jpg"} -{"rects": [{"solidity": 0.9966046882196128, "top": 975, "right": 3800, "bottom": 3345, "left": 2215}, {"solidity": 0.995873341517144, "top": 980, "right": 1990, "bottom": 3350, "left": 395}, {"solidity": 0.9975295672506693, "top": 990, "right": 5620, "bottom": 3355, "left": 4050}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729121f.jpg"} -{"rects": [{"solidity": 0.9966047590489517, "top": 750, "right": 3890, "bottom": 3180, "left": 2245}, {"solidity": 0.9989064799879425, "top": 755, "right": 2040, "bottom": 3175, "left": 420}, {"solidity": 0.9971553778734528, "top": 760, "right": 5740, "bottom": 3190, "left": 4115}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734748f.jpg"} -{"rects": [{"solidity": 0.9966048539080146, "top": 1015, "right": 1870, "bottom": 2860, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703157f.jpg"} -{"rects": [{"solidity": 0.996604876922781, "top": 625, "right": 1975, "bottom": 3045, "left": 340}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732471f.jpg"} -{"rects": [{"solidity": 0.9966050801631876, "top": 765, "right": 3935, "bottom": 3190, "left": 2300}, {"solidity": 0.9949738654167709, "top": 765, "right": 2045, "bottom": 3165, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720086f.jpg"} -{"rects": [{"solidity": 0.9966051900315112, "top": 395, "right": 3180, "bottom": 1965, "left": 810}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722390f.jpg"} -{"rects": [{"solidity": 0.9966052735930262, "top": 505, "right": 3010, "bottom": 2135, "left": 590}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707812f.jpg"} -{"rects": [{"solidity": 0.9966053268080171, "top": 585, "right": 2705, "bottom": 3660, "left": 675}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713427f.jpg"} -{"rects": [{"solidity": 0.9966054215988561, "top": 615, "right": 3210, "bottom": 2240, "left": 795}, {"solidity": 0.9975981617324436, "top": 4105, "right": 3185, "bottom": 5715, "left": 775}, {"solidity": 0.9957121300893906, "top": 2360, "right": 3185, "bottom": 3970, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733135f.jpg"} -{"rects": [{"solidity": 0.9966054432132047, "top": 435, "right": 3180, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708130f.jpg"} -{"rects": [{"solidity": 0.9966055834688248, "top": 2530, "right": 2530, "bottom": 4010, "left": 440}, {"solidity": 0.9969838581311349, "top": 700, "right": 2525, "bottom": 2180, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716038f.jpg"} -{"rects": [{"solidity": 0.9966057873554435, "top": 800, "right": 2020, "bottom": 3240, "left": 375}, {"solidity": 0.9959660405825268, "top": 840, "right": 5710, "bottom": 3280, "left": 4065}, {"solidity": 0.9964426485138211, "top": 820, "right": 3860, "bottom": 3255, "left": 2230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726614f.jpg"} -{"rects": [{"solidity": 0.9966058439909617, "top": 2250, "right": 3220, "bottom": 3870, "left": 795}, {"solidity": 0.994945171548444, "top": 385, "right": 3215, "bottom": 1995, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723316f.jpg"} -{"rects": [{"solidity": 0.9966058820704119, "top": 900, "right": 2005, "bottom": 3330, "left": 380}, {"solidity": 0.9968339812925825, "top": 920, "right": 3860, "bottom": 3345, "left": 2235}, {"solidity": 0.9977128690967297, "top": 940, "right": 5700, "bottom": 3360, "left": 4100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729483f.jpg"} -{"rects": [{"solidity": 0.9966060900189534, "top": 740, "right": 2425, "bottom": 3145, "left": 815}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715043f.jpg"} -{"rects": [{"solidity": 0.9966061691218361, "top": 2425, "right": 2520, "bottom": 3910, "left": 435}, {"solidity": 0.995703981546648, "top": 660, "right": 2535, "bottom": 2150, "left": 445}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716193f.jpg"} -{"rects": [{"solidity": 0.9966064182958317, "top": 2195, "right": 2655, "bottom": 3610, "left": 840}, {"solidity": 0.9957588954322759, "top": 730, "right": 2655, "bottom": 2140, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726131f.jpg"} -{"rects": [{"solidity": 0.9966065282396849, "top": 2265, "right": 3145, "bottom": 3880, "left": 725}, {"solidity": 0.9962431318236828, "top": 395, "right": 3145, "bottom": 2010, "left": 725}, {"solidity": 0.9968797436329904, "top": 4125, "right": 3130, "bottom": 5735, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733621f.jpg"} -{"rects": [{"solidity": 0.9966068018785158, "top": 815, "right": 3850, "bottom": 3230, "left": 2220}, {"solidity": 0.9970810344995157, "top": 820, "right": 1990, "bottom": 3230, "left": 370}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721908f.jpg"} -{"rects": [{"solidity": 0.9966068241604373, "top": 780, "right": 2115, "bottom": 3210, "left": 495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701567f.jpg"} -{"rects": [{"solidity": 0.9966068483532274, "top": 785, "right": 2025, "bottom": 3185, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719417f.jpg"} -{"rects": [{"solidity": 0.9966069184469872, "top": 685, "right": 2600, "bottom": 3545, "left": 585}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723476f.jpg"} -{"rects": [{"solidity": 0.9966070987400149, "top": 425, "right": 3060, "bottom": 2015, "left": 655}, {"solidity": 0.9950242822974432, "top": 2260, "right": 3055, "bottom": 3875, "left": 635}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/728846f.jpg"} -{"rects": [{"solidity": 0.9966071842526987, "top": 130, "right": 3835, "bottom": 2890, "left": 205}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509985.jpg"} -{"rects": [{"solidity": 0.9966072369378622, "top": 690, "right": 2505, "bottom": 3710, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711450f.jpg"} -{"rects": [{"solidity": 0.9966073134102771, "top": 425, "right": 3200, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732878f.jpg"} -{"rects": [{"solidity": 0.9966073723901916, "top": 440, "right": 3145, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720936f.jpg"} -{"rects": [{"solidity": 0.9966074761640519, "top": 710, "right": 2060, "bottom": 3170, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703730f.jpg"} -{"rects": [{"solidity": 0.9966075628731681, "top": 915, "right": 2020, "bottom": 3325, "left": 395}, {"solidity": 0.9953911650978401, "top": 895, "right": 3915, "bottom": 3310, "left": 2270}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710071f.jpg"} -{"rects": [{"solidity": 0.9966076247671899, "top": 760, "right": 3880, "bottom": 3200, "left": 2245}, {"solidity": 0.9971267016505574, "top": 770, "right": 5750, "bottom": 3205, "left": 4120}, {"solidity": 0.994226915821971, "top": 765, "right": 2020, "bottom": 3175, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731657f.jpg"} -{"rects": [{"solidity": 0.9966076315231995, "top": 970, "right": 3505, "bottom": 5020, "left": 300}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709166f.jpg"} -{"rects": [{"solidity": 0.9966077693088342, "top": 1095, "right": 3480, "bottom": 5130, "left": 275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717073f.jpg"} -{"rects": [{"solidity": 0.9966078166852406, "top": 805, "right": 2050, "bottom": 3225, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700380f.jpg"} -{"rects": [{"solidity": 0.9966079315211948, "top": 790, "right": 2030, "bottom": 3215, "left": 430}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712784f.jpg"} -{"rects": [{"solidity": 0.9966080066535254, "top": 635, "right": 2570, "bottom": 3680, "left": 540}, {"solidity": 0.9973143186662952, "top": 960, "right": 4415, "bottom": 3370, "left": 2800}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716686f.jpg"} -{"rects": [{"solidity": 0.9966083260125949, "top": 745, "right": 5745, "bottom": 3160, "left": 4115}, {"solidity": 0.9943828364985221, "top": 2025, "right": 2255, "bottom": 3460, "left": 425}, {"solidity": 0.9953834676794295, "top": 1035, "right": 3890, "bottom": 2865, "left": 2460}, {"solidity": 0.9961369113943934, "top": 440, "right": 2235, "bottom": 1860, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702667f.jpg"} -{"rects": [{"solidity": 0.9966083484850411, "top": 925, "right": 3830, "bottom": 3360, "left": 2200}, {"solidity": 0.995284518041421, "top": 940, "right": 1965, "bottom": 3350, "left": 340}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731366f.jpg"} -{"rects": [{"solidity": 0.9966086275978783, "top": 420, "right": 3240, "bottom": 2000, "left": 845}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725030f.jpg"} -{"rects": [{"solidity": 0.9966086278586278, "top": 820, "right": 3910, "bottom": 3230, "left": 2300}, {"solidity": 0.9958805760633919, "top": 825, "right": 2025, "bottom": 3220, "left": 420}, {"solidity": 0.9963929142274714, "top": 820, "right": 5790, "bottom": 3215, "left": 4200}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718239f.jpg"} -{"rects": [{"solidity": 0.9966089258940249, "top": 805, "right": 2060, "bottom": 3240, "left": 420}, {"solidity": 0.9972869884608716, "top": 800, "right": 3855, "bottom": 3220, "left": 2230}, {"solidity": 0.9970896128508258, "top": 800, "right": 5685, "bottom": 3220, "left": 4070}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705065f.jpg"} -{"rects": [{"solidity": 0.996609105618479, "top": 345, "right": 3275, "bottom": 3820, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715283f.jpg"} -{"rects": [{"solidity": 0.9966092080397462, "top": 2055, "right": 3070, "bottom": 3700, "left": 645}, {"solidity": 0.9966635714514425, "top": 360, "right": 3050, "bottom": 2000, "left": 630}, {"solidity": 0.9975832490155767, "top": 350, "right": 5550, "bottom": 1970, "left": 3135}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702404f.jpg"} -{"rects": [{"solidity": 0.9966093311726768, "top": 415, "right": 3245, "bottom": 2025, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700844f.jpg"} -{"rects": [{"solidity": 0.9966094844620083, "top": 2280, "right": 3095, "bottom": 3915, "left": 675}, {"solidity": 0.9974408004017461, "top": 420, "right": 3095, "bottom": 2040, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720171f.jpg"} -{"rects": [{"solidity": 0.9966095059368222, "top": 1210, "right": 3510, "bottom": 5005, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722345f.jpg"} -{"rects": [{"solidity": 0.9966095089633671, "top": 705, "right": 2035, "bottom": 3105, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711734f.jpg"} -{"rects": [{"solidity": 0.9966097867810716, "top": 760, "right": 3840, "bottom": 3180, "left": 2215}, {"solidity": 0.9975535484873098, "top": 765, "right": 2005, "bottom": 3175, "left": 390}, {"solidity": 0.996372857314036, "top": 750, "right": 5675, "bottom": 3170, "left": 4055}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724355f.jpg"} -{"rects": [{"solidity": 0.9966098764957839, "top": 710, "right": 3350, "bottom": 2645, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713911f.jpg"} -{"rects": [{"solidity": 0.9966100208951298, "top": 650, "right": 2710, "bottom": 2065, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703313f.jpg"} -{"rects": [{"solidity": 0.9966100298760918, "top": 2255, "right": 3230, "bottom": 3885, "left": 770}, {"solidity": 0.9966922663853557, "top": 4090, "right": 3245, "bottom": 5715, "left": 795}, {"solidity": 0.9960161282549678, "top": 435, "right": 3200, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734689f.jpg"} -{"rects": [{"solidity": 0.9966102871787427, "top": 540, "right": 3210, "bottom": 2185, "left": 770}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721173f.jpg"} -{"rects": [{"solidity": 0.9966103232831255, "top": 375, "right": 3170, "bottom": 1995, "left": 760}, {"solidity": 0.9952627362071801, "top": 2240, "right": 3120, "bottom": 3795, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717764f.jpg"} -{"rects": [{"solidity": 0.9966103904569454, "top": 2070, "right": 3280, "bottom": 3730, "left": 820}, {"solidity": 0.9962436150777376, "top": 325, "right": 3265, "bottom": 1980, "left": 795}, {"solidity": 0.9969336326024898, "top": 325, "right": 5785, "bottom": 1980, "left": 3325}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700001f.jpg"} -{"rects": [{"solidity": 0.9966107567525002, "top": 645, "right": 3870, "bottom": 3095, "left": 2220}, {"solidity": 0.9968427140649345, "top": 620, "right": 2070, "bottom": 3060, "left": 425}, {"solidity": 0.9930773132814131, "top": 885, "right": 5180, "bottom": 2380, "left": 4025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730519f.jpg"} -{"rects": [{"solidity": 0.9966109050989603, "top": 2130, "right": 3175, "bottom": 3765, "left": 750}, {"solidity": 0.9960128457236254, "top": 295, "right": 3200, "bottom": 1930, "left": 775}, {"solidity": 0.9960800012810453, "top": 3980, "right": 3170, "bottom": 5615, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731099f.jpg"} -{"rects": [{"solidity": 0.9966110196522276, "top": 440, "right": 3125, "bottom": 2065, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700872f.jpg"} -{"rects": [{"solidity": 0.9966110796945497, "top": 530, "right": 3890, "bottom": 2625, "left": 2405}, {"solidity": 0.9964001531156593, "top": 505, "right": 2130, "bottom": 2590, "left": 640}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716133f.jpg"} -{"rects": [{"solidity": 0.9966111003208069, "top": 550, "right": 3170, "bottom": 2140, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710229f.jpg"} -{"rects": [{"solidity": 0.9966112128139116, "top": 800, "right": 2045, "bottom": 3225, "left": 410}, {"solidity": 0.9854607534950526, "top": 995, "right": 3840, "bottom": 2955, "left": 2330}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733672f.jpg"} -{"rects": [{"solidity": 0.9966112157621424, "top": 800, "right": 4020, "bottom": 3230, "left": 2385}, {"solidity": 0.9977625475498773, "top": 830, "right": 2080, "bottom": 3250, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710845f.jpg"} -{"rects": [{"solidity": 0.9966112727829683, "top": 2195, "right": 3170, "bottom": 3825, "left": 735}, {"solidity": 0.9986782147820186, "top": 365, "right": 3170, "bottom": 1970, "left": 745}, {"solidity": 0.9953482079003151, "top": 4040, "right": 3150, "bottom": 5670, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734460f.jpg"} -{"rects": [{"solidity": 0.996611383715511, "top": 610, "right": 3405, "bottom": 2645, "left": 365}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712063f.jpg"} -{"rects": [{"solidity": 0.9966114266697502, "top": 635, "right": 4695, "bottom": 3310, "left": 1350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703318f.jpg"} -{"rects": [{"solidity": 0.996611545194066, "top": 2280, "right": 2720, "bottom": 3710, "left": 915}, {"solidity": 0.9931355628002576, "top": 800, "right": 2715, "bottom": 2225, "left": 910}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730490f.jpg"} -{"rects": [{"solidity": 0.996611614828788, "top": 775, "right": 2065, "bottom": 3195, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703272f.jpg"} -{"rects": [{"solidity": 0.9966116357868935, "top": 375, "right": 3080, "bottom": 1975, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728689f.jpg"} -{"rects": [{"solidity": 0.996611673325833, "top": 405, "right": 5035, "bottom": 3710, "left": 970}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718935f.jpg"} -{"rects": [{"solidity": 0.9966117534406125, "top": 675, "right": 2385, "bottom": 3455, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702946f.jpg"} -{"rects": [{"solidity": 0.9966117571059432, "top": 460, "right": 3125, "bottom": 2075, "left": 705}, {"solidity": 0.997491738920768, "top": 2315, "right": 3120, "bottom": 3930, "left": 705}, {"solidity": 0.9955618611080796, "top": 4150, "right": 3125, "bottom": 5745, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728609f.jpg"} -{"rects": [{"solidity": 0.9966118167498911, "top": 845, "right": 2065, "bottom": 3225, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714149f.jpg"} -{"rects": [{"solidity": 0.9966119119743695, "top": 350, "right": 3110, "bottom": 1975, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703996f.jpg"} -{"rects": [{"solidity": 0.9966119514454499, "top": 875, "right": 2145, "bottom": 3300, "left": 525}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726949f.jpg"} -{"rects": [{"solidity": 0.9966120015341879, "top": 435, "right": 5115, "bottom": 3695, "left": 1090}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715229f.jpg"} -{"rects": [{"solidity": 0.9966121957497828, "top": 1170, "right": 2735, "bottom": 4175, "left": 305}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715977f.jpg"} -{"rects": [{"solidity": 0.9966123031395514, "top": 425, "right": 3100, "bottom": 2025, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728879f.jpg"} -{"rects": [{"solidity": 0.996612651977545, "top": 530, "right": 3360, "bottom": 2435, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708282f.jpg"} -{"rects": [{"solidity": 0.9966127941527382, "top": 550, "right": 5075, "bottom": 3745, "left": 1095}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710050f.jpg"} -{"rects": [{"solidity": 0.9966128011392855, "top": 520, "right": 5810, "bottom": 1935, "left": 4005}, {"solidity": 0.9972769756002682, "top": 2120, "right": 3900, "bottom": 3500, "left": 2115}, {"solidity": 0.9429751544655468, "top": 1115, "right": 1870, "bottom": 3045, "left": 465}, {"solidity": 0.9953128541112966, "top": 530, "right": 3885, "bottom": 1930, "left": 2125}, {"solidity": 0.9954533947125047, "top": 2110, "right": 5800, "bottom": 3485, "left": 4015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725625f.jpg"} -{"rects": [{"solidity": 0.9966128183456392, "top": 410, "right": 3095, "bottom": 2040, "left": 665}, {"solidity": 0.998515285519554, "top": 2295, "right": 3100, "bottom": 3920, "left": 680}, {"solidity": 0.9976457674911527, "top": 4095, "right": 2845, "bottom": 5750, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710794f.jpg"} -{"rects": [{"solidity": 0.9966130261790882, "top": 785, "right": 2050, "bottom": 3210, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703731f.jpg"} -{"rects": [{"solidity": 0.9966130780346821, "top": 405, "right": 3085, "bottom": 2025, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728337f.jpg"} -{"rects": [{"solidity": 0.9966133398966281, "top": 2090, "right": 2745, "bottom": 3525, "left": 960}, {"solidity": 0.9961224227695287, "top": 655, "right": 2740, "bottom": 2080, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725509f.jpg"} -{"rects": [{"solidity": 0.9966133821949833, "top": 2115, "right": 3110, "bottom": 3760, "left": 665}, {"solidity": 0.9977215197974969, "top": 460, "right": 5645, "bottom": 2085, "left": 3220}, {"solidity": 0.9975281648146604, "top": 465, "right": 3070, "bottom": 2095, "left": 655}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702437f.jpg"} -{"rects": [{"solidity": 0.996613415131474, "top": 395, "right": 3330, "bottom": 2280, "left": 690}, {"solidity": 0.9894286176062168, "top": 2480, "right": 3260, "bottom": 4090, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701609f.jpg"} -{"rects": [{"solidity": 0.9966136972883802, "top": 430, "right": 3145, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702222f.jpg"} -{"rects": [{"solidity": 0.9966137492530329, "top": 360, "right": 3250, "bottom": 2010, "left": 815}, {"solidity": 0.9963954897735077, "top": 2115, "right": 3290, "bottom": 3760, "left": 850}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705797f.jpg"} -{"rects": [{"solidity": 0.9966137761651891, "top": 2185, "right": 3145, "bottom": 3825, "left": 720}, {"solidity": 0.9968359570417823, "top": 325, "right": 3150, "bottom": 1950, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704035f.jpg"} -{"rects": [{"solidity": 0.9966138060622415, "top": 570, "right": 3135, "bottom": 2175, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710759f.jpg"} -{"rects": [{"solidity": 0.9966139811450208, "top": 360, "right": 3310, "bottom": 2000, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707818f.jpg"} -{"rects": [{"solidity": 0.9966140183694572, "top": 680, "right": 2560, "bottom": 2170, "left": 465}, {"solidity": 0.9944589094144983, "top": 2470, "right": 2545, "bottom": 3945, "left": 450}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716119f.jpg"} -{"rects": [{"solidity": 0.9966142589165052, "top": 1080, "right": 3555, "bottom": 5090, "left": 290}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711835f.jpg"} -{"rects": [{"solidity": 0.9966144798537709, "top": 425, "right": 3330, "bottom": 2425, "left": 515}, {"solidity": 0.9938569083302441, "top": 2500, "right": 2790, "bottom": 3955, "left": 950}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704323f.jpg"} -{"rects": [{"solidity": 0.9966147309704873, "top": 770, "right": 2035, "bottom": 3185, "left": 425}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722481f.jpg"} -{"rects": [{"solidity": 0.9966149425652696, "top": 405, "right": 3210, "bottom": 2045, "left": 775}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703240f.jpg"} -{"rects": [{"solidity": 0.9966149442260944, "top": 690, "right": 3840, "bottom": 3105, "left": 2225}, {"solidity": 0.9997605748826653, "top": 690, "right": 1990, "bottom": 3085, "left": 390}, {"solidity": 0.9977050704520455, "top": 715, "right": 5670, "bottom": 3115, "left": 4065}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731635f.jpg"} -{"rects": [{"solidity": 0.9966150311866321, "top": 770, "right": 2070, "bottom": 3200, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703951f.jpg"} -{"rects": [{"solidity": 0.9966151906914544, "top": 405, "right": 3205, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722005f.jpg"} -{"rects": [{"solidity": 0.9966151914133783, "top": 775, "right": 2150, "bottom": 3180, "left": 540}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711608f.jpg"} -{"rects": [{"solidity": 0.9966153064080744, "top": 805, "right": 3870, "bottom": 3225, "left": 2255}, {"solidity": 0.9958120085890957, "top": 795, "right": 2000, "bottom": 3220, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730549f.jpg"} -{"rects": [{"solidity": 0.9966153346969547, "top": 480, "right": 2985, "bottom": 2120, "left": 550}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702380f.jpg"} -{"rects": [{"solidity": 0.9966154400401975, "top": 2265, "right": 3180, "bottom": 3910, "left": 735}, {"solidity": 0.996608180346791, "top": 370, "right": 3200, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701471f.jpg"} -{"rects": [{"solidity": 0.9966154713981693, "top": 1045, "right": 3490, "bottom": 5050, "left": 430}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713326f.jpg"} -{"rects": [{"solidity": 0.9966155606629234, "top": 2310, "right": 3100, "bottom": 3935, "left": 690}, {"solidity": 0.9975201929458231, "top": 445, "right": 3115, "bottom": 2065, "left": 710}, {"solidity": 0.9967329947981981, "top": 4155, "right": 3070, "bottom": 5770, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710669f.jpg"} -{"rects": [{"solidity": 0.9966156171177404, "top": 525, "right": 3285, "bottom": 2480, "left": 260}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715472f.jpg"} -{"rects": [{"solidity": 0.996616092793386, "top": 460, "right": 3190, "bottom": 2065, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718562f.jpg"} -{"rects": [{"solidity": 0.9966161303195372, "top": 815, "right": 3760, "bottom": 3225, "left": 2145}, {"solidity": 0.995529766439211, "top": 815, "right": 1980, "bottom": 3230, "left": 365}, {"solidity": 0.9957073151652048, "top": 825, "right": 5545, "bottom": 3230, "left": 3930}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714532f.jpg"} -{"rects": [{"solidity": 0.9966161583596621, "top": 845, "right": 2315, "bottom": 3540, "left": 505}], "shape": {"h": 4420, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711430f.jpg"} -{"rects": [{"solidity": 0.9966161799854515, "top": 770, "right": 2045, "bottom": 3190, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700373f.jpg"} -{"rects": [{"solidity": 0.9966162735475701, "top": 430, "right": 3040, "bottom": 1840, "left": 1230}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726541f.jpg"} -{"rects": [{"solidity": 0.9966165462221876, "top": 515, "right": 3065, "bottom": 2135, "left": 645}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702823f.jpg"} -{"rects": [{"solidity": 0.9966167590103858, "top": 395, "right": 3135, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728524f.jpg"} -{"rects": [{"solidity": 0.9966167863623585, "top": 450, "right": 3180, "bottom": 2095, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718747f.jpg"} -{"rects": [{"solidity": 0.9966170087020318, "top": 440, "right": 3595, "bottom": 2260, "left": 880}], "shape": {"h": 6875, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/710255f.jpg"} -{"rects": [{"solidity": 0.9966170176776784, "top": 2300, "right": 3170, "bottom": 3915, "left": 725}, {"solidity": 0.9962918167863901, "top": 430, "right": 3180, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723585f.jpg"} -{"rects": [{"solidity": 0.9966170914060616, "top": 860, "right": 3865, "bottom": 3275, "left": 2245}, {"solidity": 0.9986775694437708, "top": 875, "right": 2005, "bottom": 3285, "left": 390}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710774f.jpg"} -{"rects": [{"solidity": 0.996617106314948, "top": 2245, "right": 3295, "bottom": 3870, "left": 855}, {"solidity": 0.9967930900409058, "top": 395, "right": 3285, "bottom": 2010, "left": 855}, {"solidity": 0.9973332038772109, "top": 4095, "right": 3285, "bottom": 5700, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725308f.jpg"} -{"rects": [{"solidity": 0.9966171091483589, "top": 760, "right": 3880, "bottom": 3170, "left": 2255}, {"solidity": 0.9993317316625538, "top": 765, "right": 2025, "bottom": 3160, "left": 415}, {"solidity": 0.997584895329168, "top": 775, "right": 5700, "bottom": 3180, "left": 4090}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707490f.jpg"} -{"rects": [{"solidity": 0.9966173726874445, "top": 440, "right": 3165, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722558f.jpg"} -{"rects": [{"solidity": 0.996617407774316, "top": 930, "right": 2270, "bottom": 3640, "left": 430}], "shape": {"h": 4430, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711215f.jpg"} -{"rects": [{"solidity": 0.9966174300718716, "top": 780, "right": 3890, "bottom": 3225, "left": 2245}, {"solidity": 0.9964392646727407, "top": 795, "right": 2015, "bottom": 3215, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733709f.jpg"} -{"rects": [{"solidity": 0.9966174327004517, "top": 645, "right": 2345, "bottom": 3445, "left": 635}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713521f.jpg"} -{"rects": [{"solidity": 0.9966177722480518, "top": 845, "right": 2370, "bottom": 3240, "left": 750}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720388f.jpg"} -{"rects": [{"solidity": 0.9966177826296108, "top": 440, "right": 3200, "bottom": 3795, "left": 685}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723455f.jpg"} -{"rects": [{"solidity": 0.9966178055962284, "top": 2225, "right": 2955, "bottom": 3840, "left": 530}, {"solidity": 0.9961480173809764, "top": 340, "right": 2970, "bottom": 1950, "left": 550}, {"solidity": 0.9963626043100692, "top": 4145, "right": 2960, "bottom": 5745, "left": 540}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722828f.jpg"} -{"rects": [{"solidity": 0.9966178457232271, "top": 800, "right": 2050, "bottom": 3220, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721952f.jpg"} -{"rects": [{"solidity": 0.99661792436275, "top": 445, "right": 3155, "bottom": 2075, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701104f.jpg"} -{"rects": [{"solidity": 0.9966179684065626, "top": 2260, "right": 3200, "bottom": 3880, "left": 770}, {"solidity": 0.9973570926082495, "top": 440, "right": 3195, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713745f.jpg"} -{"rects": [{"solidity": 0.9966180043271823, "top": 820, "right": 2825, "bottom": 2435, "left": 1765}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509509.jpg"} -{"rects": [{"solidity": 0.9966185811297149, "top": 1070, "right": 3390, "bottom": 5185, "left": 430}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725172f.jpg"} -{"rects": [{"solidity": 0.9966186124764952, "top": 375, "right": 3135, "bottom": 1975, "left": 745}, {"solidity": 0.9958194257350843, "top": 2250, "right": 3140, "bottom": 3840, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729544f.jpg"} -{"rects": [{"solidity": 0.9966190241815368, "top": 420, "right": 3180, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706317f.jpg"} -{"rects": [{"solidity": 0.9966190413644479, "top": 2280, "right": 2685, "bottom": 3695, "left": 855}, {"solidity": 0.9956814851001465, "top": 685, "right": 2685, "bottom": 2095, "left": 850}, {"solidity": 0.9953995780883241, "top": 2285, "right": 4935, "bottom": 3700, "left": 3135}, {"solidity": 0.996071580103327, "top": 700, "right": 4940, "bottom": 2090, "left": 3120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725078f.jpg"} -{"rects": [{"solidity": 0.9966191252239577, "top": 810, "right": 2015, "bottom": 3190, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712175f.jpg"} -{"rects": [{"solidity": 0.9966191400298311, "top": 2235, "right": 3190, "bottom": 3855, "left": 760}, {"solidity": 0.9962001531521676, "top": 4080, "right": 3190, "bottom": 5700, "left": 760}, {"solidity": 0.9971958696353662, "top": 415, "right": 3180, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725495f.jpg"} -{"rects": [{"solidity": 0.9966191640522604, "top": 3900, "right": 3325, "bottom": 5530, "left": 905}, {"solidity": 0.9991996194174257, "top": 410, "right": 3350, "bottom": 2030, "left": 935}, {"solidity": 0.9962359087247977, "top": 2135, "right": 3330, "bottom": 3770, "left": 910}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702488f.jpg"} -{"rects": [{"solidity": 0.9966192368499766, "top": 855, "right": 2830, "bottom": 3875, "left": 335}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508359.jpg"} -{"rects": [{"solidity": 0.9966193065009822, "top": 685, "right": 3315, "bottom": 2550, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714729f.jpg"} -{"rects": [{"solidity": 0.9966193554119189, "top": 3335, "right": 3345, "bottom": 5365, "left": 510}, {"solidity": 0.9965797482748241, "top": 710, "right": 3330, "bottom": 2720, "left": 510}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728753f.jpg"} -{"rects": [{"solidity": 0.9966194910669411, "top": 820, "right": 3785, "bottom": 3240, "left": 2150}, {"solidity": 0.9984155711994641, "top": 815, "right": 1925, "bottom": 3220, "left": 300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707888f.jpg"} -{"rects": [{"solidity": 0.9966195392557208, "top": 340, "right": 3520, "bottom": 1975, "left": 1110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707178f.jpg"} -{"rects": [{"solidity": 0.9966195436868284, "top": 610, "right": 2795, "bottom": 2025, "left": 955}, {"solidity": 0.997271924118715, "top": 2220, "right": 4980, "bottom": 3630, "left": 3140}, {"solidity": 0.9933891711112628, "top": 595, "right": 4945, "bottom": 2040, "left": 3115}, {"solidity": 0.9935354513084661, "top": 2245, "right": 2785, "bottom": 3650, "left": 960}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727661f.jpg"} -{"rects": [{"solidity": 0.9966197254638036, "top": 500, "right": 3555, "bottom": 2325, "left": 825}], "shape": {"h": 6850, "w": 4420}, "file": "/usr/local/google/home/danvk/milstein/701642f.jpg"} -{"rects": [{"solidity": 0.9966198712096913, "top": 495, "right": 2920, "bottom": 1920, "left": 1125}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726887f.jpg"} -{"rects": [{"solidity": 0.9966199937543363, "top": 840, "right": 4600, "bottom": 3440, "left": 1160}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709096f.jpg"} -{"rects": [{"solidity": 0.9966200554414979, "top": 465, "right": 3225, "bottom": 2455, "left": 540}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706039f.jpg"} -{"rects": [{"solidity": 0.9966200792919787, "top": 1310, "right": 1900, "bottom": 2335, "left": 360}, {"solidity": 0.9972452233136028, "top": 2380, "right": 1890, "bottom": 3405, "left": 355}, {"solidity": 0.9920084377915703, "top": 230, "right": 1905, "bottom": 1250, "left": 375}], "shape": {"h": 3950, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727119f.jpg"} -{"rects": [{"solidity": 0.9966201889095933, "top": 400, "right": 3225, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725164f.jpg"} -{"rects": [{"solidity": 0.9966203663316112, "top": 3960, "right": 3200, "bottom": 5580, "left": 790}, {"solidity": 0.997137113769737, "top": 435, "right": 3185, "bottom": 2045, "left": 765}, {"solidity": 0.996318723130256, "top": 2200, "right": 3195, "bottom": 3805, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706252f.jpg"} -{"rects": [{"solidity": 0.9966204730761474, "top": 1025, "right": 3515, "bottom": 5085, "left": 290}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721764f.jpg"} -{"rects": [{"solidity": 0.9966205430993619, "top": 800, "right": 2040, "bottom": 3230, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729374f.jpg"} -{"rects": [{"solidity": 0.9966206479361248, "top": 760, "right": 5630, "bottom": 3200, "left": 3980}, {"solidity": 0.9963254076798345, "top": 750, "right": 3775, "bottom": 3180, "left": 2135}, {"solidity": 0.9996966929958431, "top": 765, "right": 1925, "bottom": 3180, "left": 295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727295f.jpg"} -{"rects": [{"solidity": 0.9966208172012146, "top": 795, "right": 3870, "bottom": 3205, "left": 2265}, {"solidity": 0.9942476053830723, "top": 805, "right": 2050, "bottom": 3210, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721736f.jpg"} -{"rects": [{"solidity": 0.9966209959614404, "top": 4045, "right": 3205, "bottom": 5660, "left": 795}, {"solidity": 0.9965478682598916, "top": 495, "right": 3215, "bottom": 2105, "left": 805}, {"solidity": 0.9942451665027632, "top": 2270, "right": 3180, "bottom": 3865, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731620f.jpg"} -{"rects": [{"solidity": 0.9966210940744555, "top": 445, "right": 3170, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714588f.jpg"} -{"rects": [{"solidity": 0.9966210999353533, "top": 530, "right": 3550, "bottom": 2330, "left": 860}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711545f.jpg"} -{"rects": [{"solidity": 0.9966211470355556, "top": 1060, "right": 3400, "bottom": 2115, "left": 1775}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509561.jpg"} -{"rects": [{"solidity": 0.9966212321133473, "top": 485, "right": 3170, "bottom": 2110, "left": 750}, {"solidity": 0.9976832554622826, "top": 2335, "right": 3160, "bottom": 3950, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715297f.jpg"} -{"rects": [{"solidity": 0.9966212767198673, "top": 655, "right": 2760, "bottom": 2070, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725653f.jpg"} -{"rects": [{"solidity": 0.9966214555595243, "top": 405, "right": 3035, "bottom": 2010, "left": 630}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728604f.jpg"} -{"rects": [{"solidity": 0.996621577382901, "top": 415, "right": 3245, "bottom": 2020, "left": 840}, {"solidity": 0.9973634750780919, "top": 2265, "right": 3250, "bottom": 3860, "left": 850}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711151f.jpg"} -{"rects": [{"solidity": 0.9966216328332155, "top": 725, "right": 2045, "bottom": 3125, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722339f.jpg"} -{"rects": [{"solidity": 0.9966216438050337, "top": 4100, "right": 3145, "bottom": 5700, "left": 745}, {"solidity": 0.9940963507102777, "top": 440, "right": 3165, "bottom": 2040, "left": 760}, {"solidity": 0.9968197211088055, "top": 2290, "right": 3135, "bottom": 3855, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718030f.jpg"} -{"rects": [{"solidity": 0.9966216675041762, "top": 1065, "right": 3310, "bottom": 4855, "left": 355}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719372f.jpg"} -{"rects": [{"solidity": 0.9966216895574012, "top": 840, "right": 2035, "bottom": 3210, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719144f.jpg"} -{"rects": [{"solidity": 0.9966219109516695, "top": 2135, "right": 3235, "bottom": 3770, "left": 795}, {"solidity": 0.9964589797415532, "top": 365, "right": 3225, "bottom": 2005, "left": 775}, {"solidity": 0.9956051626412973, "top": 3875, "right": 3245, "bottom": 5485, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733112f.jpg"} -{"rects": [{"solidity": 0.996621992572259, "top": 830, "right": 2440, "bottom": 3250, "left": 815}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731718f.jpg"} -{"rects": [{"solidity": 0.9966220710825272, "top": 455, "right": 3175, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719043f.jpg"} -{"rects": [{"solidity": 0.9966220755042896, "top": 590, "right": 3145, "bottom": 2230, "left": 730}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720906f.jpg"} -{"rects": [{"solidity": 0.996622139333492, "top": 965, "right": 3195, "bottom": 2570, "left": 790}, {"solidity": 0.996675768341179, "top": 3315, "right": 3230, "bottom": 4920, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731008f.jpg"} -{"rects": [{"solidity": 0.9966224215159963, "top": 620, "right": 5230, "bottom": 2045, "left": 3400}, {"solidity": 0.9970398583078843, "top": 2115, "right": 2725, "bottom": 3515, "left": 895}, {"solidity": 0.9934937312775991, "top": 625, "right": 2720, "bottom": 2025, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704248f.jpg"} -{"rects": [{"solidity": 0.9966224223749703, "top": 570, "right": 1975, "bottom": 2815, "left": 450}], "shape": {"h": 3040, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715796f.jpg"} -{"rects": [{"solidity": 0.9966225528557805, "top": 880, "right": 3875, "bottom": 3320, "left": 2225}, {"solidity": 0.9963476688128491, "top": 910, "right": 5730, "bottom": 3355, "left": 4080}, {"solidity": 0.9969790549946398, "top": 880, "right": 1995, "bottom": 3305, "left": 370}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710704f.jpg"} -{"rects": [{"solidity": 0.9966225736234027, "top": 1415, "right": 3310, "bottom": 4885, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722218f.jpg"} -{"rects": [{"solidity": 0.9966227063055008, "top": 2405, "right": 2515, "bottom": 3890, "left": 425}, {"solidity": 0.9924875063078902, "top": 675, "right": 2530, "bottom": 2160, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716194f.jpg"} -{"rects": [{"solidity": 0.9966227705765613, "top": 595, "right": 3945, "bottom": 2675, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731268f.jpg"} -{"rects": [{"solidity": 0.9966228986578826, "top": 970, "right": 3785, "bottom": 2995, "left": 2275}, {"solidity": 0.9960508588750421, "top": 960, "right": 1950, "bottom": 2970, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717515f.jpg"} -{"rects": [{"solidity": 0.9966229073058411, "top": 780, "right": 3885, "bottom": 3215, "left": 2240}, {"solidity": 0.9965531588043269, "top": 800, "right": 5710, "bottom": 3235, "left": 4060}, {"solidity": 0.9959764139062369, "top": 770, "right": 2050, "bottom": 3190, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731823f.jpg"} -{"rects": [{"solidity": 0.9966229442451596, "top": 870, "right": 3945, "bottom": 3295, "left": 2305}, {"solidity": 0.9992714391182147, "top": 880, "right": 2120, "bottom": 3285, "left": 505}, {"solidity": 0.9965167264984054, "top": 875, "right": 5715, "bottom": 3295, "left": 4105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716792f.jpg"} -{"rects": [{"solidity": 0.9966229798182842, "top": 2285, "right": 3195, "bottom": 3910, "left": 775}, {"solidity": 0.9967164140666246, "top": 415, "right": 3195, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731872f.jpg"} -{"rects": [{"solidity": 0.9966234552580547, "top": 1960, "right": 2465, "bottom": 5010, "left": 945}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709065f.jpg"} -{"rects": [{"solidity": 0.9966235284972167, "top": 750, "right": 3925, "bottom": 3120, "left": 2345}, {"solidity": 0.9920933010721119, "top": 750, "right": 2065, "bottom": 3150, "left": 495}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731610f.jpg"} -{"rects": [{"solidity": 0.9966237663761759, "top": 410, "right": 3195, "bottom": 2045, "left": 785}, {"solidity": 0.9968457805087223, "top": 2250, "right": 3200, "bottom": 3870, "left": 775}, {"solidity": 0.9951759859806134, "top": 4040, "right": 3195, "bottom": 5665, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713460f.jpg"} -{"rects": [{"solidity": 0.9966239887890949, "top": 850, "right": 3890, "bottom": 3280, "left": 2250}, {"solidity": 0.9968208817869991, "top": 850, "right": 2015, "bottom": 3265, "left": 390}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724061f.jpg"} -{"rects": [{"solidity": 0.9966240313455139, "top": 4085, "right": 3180, "bottom": 5700, "left": 755}, {"solidity": 0.9963337424898249, "top": 2270, "right": 3185, "bottom": 3885, "left": 765}, {"solidity": 0.996245282284736, "top": 445, "right": 3185, "bottom": 2060, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734736f.jpg"} -{"rects": [{"solidity": 0.9966241358422353, "top": 430, "right": 5130, "bottom": 3695, "left": 1100}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708483f.jpg"} -{"rects": [{"solidity": 0.9966241669549921, "top": 850, "right": 2020, "bottom": 3265, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718832f.jpg"} -{"rects": [{"solidity": 0.9966244781701886, "top": 785, "right": 2035, "bottom": 3180, "left": 450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716982f.jpg"} -{"rects": [{"solidity": 0.9966246754495625, "top": 840, "right": 3825, "bottom": 3265, "left": 2195}, {"solidity": 0.997013253686765, "top": 835, "right": 1995, "bottom": 3250, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701759f.jpg"} -{"rects": [{"solidity": 0.9966248572054972, "top": 575, "right": 4875, "bottom": 3605, "left": 1270}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705765f.jpg"} -{"rects": [{"solidity": 0.996624873369594, "top": 4650, "right": 3565, "bottom": 6490, "left": 825}, {"solidity": 0.9957009312530349, "top": 2560, "right": 3570, "bottom": 4390, "left": 845}, {"solidity": 0.9956136869355471, "top": 450, "right": 3560, "bottom": 2265, "left": 850}], "shape": {"h": 6910, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711401f.jpg"} -{"rects": [{"solidity": 0.9966250151954292, "top": 2290, "right": 3120, "bottom": 3920, "left": 695}, {"solidity": 0.996812679387905, "top": 445, "right": 3105, "bottom": 2070, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700783f.jpg"} -{"rects": [{"solidity": 0.9966251073375625, "top": 805, "right": 2130, "bottom": 3200, "left": 535}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711576f.jpg"} -{"rects": [{"solidity": 0.9966251653212934, "top": 720, "right": 2090, "bottom": 3125, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712549f.jpg"} -{"rects": [{"solidity": 0.9966252099093451, "top": 400, "right": 3200, "bottom": 2010, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719985f.jpg"} -{"rects": [{"solidity": 0.9966252710747964, "top": 700, "right": 2535, "bottom": 2195, "left": 450}, {"solidity": 0.9990680792623111, "top": 2485, "right": 2540, "bottom": 3965, "left": 460}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716231f.jpg"} -{"rects": [{"solidity": 0.9966252717105382, "top": 2240, "right": 3345, "bottom": 4035, "left": 600}, {"solidity": 0.9972644649832276, "top": 395, "right": 3160, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709573f.jpg"} -{"rects": [{"solidity": 0.9966253388294545, "top": 825, "right": 2025, "bottom": 3250, "left": 390}, {"solidity": 0.997204854967035, "top": 840, "right": 3875, "bottom": 3250, "left": 2280}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729061f.jpg"} -{"rects": [{"solidity": 0.9966253463334196, "top": 2125, "right": 5275, "bottom": 3555, "left": 3435}, {"solidity": 0.9979417931405928, "top": 2130, "right": 2680, "bottom": 3570, "left": 860}, {"solidity": 0.9971326302825033, "top": 625, "right": 5270, "bottom": 2060, "left": 3440}, {"solidity": 0.9984590932878491, "top": 635, "right": 2685, "bottom": 2060, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707187f.jpg"} -{"rects": [{"solidity": 0.9966254108513523, "top": 850, "right": 1940, "bottom": 3265, "left": 335}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719947f.jpg"} -{"rects": [{"solidity": 0.9966254363799312, "top": 4075, "right": 3255, "bottom": 5690, "left": 840}, {"solidity": 0.996838661255893, "top": 385, "right": 3210, "bottom": 1990, "left": 795}, {"solidity": 0.9968055234382742, "top": 2250, "right": 3220, "bottom": 3845, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733851f.jpg"} -{"rects": [{"solidity": 0.9966254897969569, "top": 415, "right": 3125, "bottom": 2060, "left": 695}, {"solidity": 0.9967788997181138, "top": 2085, "right": 3150, "bottom": 3720, "left": 720}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706722f.jpg"} -{"rects": [{"solidity": 0.9966256751062317, "top": 490, "right": 3190, "bottom": 2105, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701403f.jpg"} -{"rects": [{"solidity": 0.9966256802799242, "top": 435, "right": 3205, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716926f.jpg"} -{"rects": [{"solidity": 0.996625722760821, "top": 420, "right": 3120, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714603f.jpg"} -{"rects": [{"solidity": 0.9966257254690242, "top": 415, "right": 3300, "bottom": 2305, "left": 635}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707151f.jpg"} -{"rects": [{"solidity": 0.9966258621358972, "top": 1170, "right": 4090, "bottom": 3575, "left": 2470}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723218f.jpg"} -{"rects": [{"solidity": 0.9966260073777972, "top": 645, "right": 3890, "bottom": 3070, "left": 2270}, {"solidity": 0.997825860881095, "top": 650, "right": 2035, "bottom": 3070, "left": 435}, {"solidity": 0.9973728543608975, "top": 650, "right": 5715, "bottom": 3060, "left": 4120}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725951f.jpg"} -{"rects": [{"solidity": 0.9966260180984108, "top": 815, "right": 2260, "bottom": 3555, "left": 415}], "shape": {"h": 4430, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711324f.jpg"} -{"rects": [{"solidity": 0.9966260553005124, "top": 470, "right": 3040, "bottom": 1850, "left": 1210}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727816f.jpg"} -{"rects": [{"solidity": 0.9966263186038598, "top": 440, "right": 3165, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702000f.jpg"} -{"rects": [{"solidity": 0.9966263857120687, "top": 670, "right": 3115, "bottom": 2255, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709392f.jpg"} -{"rects": [{"solidity": 0.9966264341264341, "top": 2020, "right": 2710, "bottom": 3465, "left": 890}, {"solidity": 0.9954538207713528, "top": 675, "right": 5265, "bottom": 2120, "left": 3445}, {"solidity": 0.9956992185365321, "top": 680, "right": 2680, "bottom": 1990, "left": 910}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727373f.jpg"} -{"rects": [{"solidity": 0.9966265980763191, "top": 2265, "right": 3120, "bottom": 3890, "left": 715}, {"solidity": 0.9959695899057729, "top": 440, "right": 3135, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724705f.jpg"} -{"rects": [{"solidity": 0.9966267044644695, "top": 615, "right": 2030, "bottom": 3060, "left": 385}, {"solidity": 0.9983276684698486, "top": 630, "right": 3855, "bottom": 3065, "left": 2235}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727565f.jpg"} -{"rects": [{"solidity": 0.9966268355092172, "top": 665, "right": 2655, "bottom": 2075, "left": 875}, {"solidity": 0.9974090579334646, "top": 2290, "right": 2695, "bottom": 3410, "left": 840}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704429f.jpg"} -{"rects": [{"solidity": 0.9966268935828007, "top": 750, "right": 2040, "bottom": 3190, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706805f.jpg"} -{"rects": [{"solidity": 0.9966269139830632, "top": 415, "right": 3195, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/705706f.jpg"} -{"rects": [{"solidity": 0.9966270403329003, "top": 510, "right": 5065, "bottom": 3745, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717135f.jpg"} -{"rects": [{"solidity": 0.9966270704795064, "top": 425, "right": 3140, "bottom": 2060, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704481f.jpg"} -{"rects": [{"solidity": 0.996627156210851, "top": 420, "right": 3195, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734602f.jpg"} -{"rects": [{"solidity": 0.9966273842160287, "top": 300, "right": 3175, "bottom": 1935, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707167f.jpg"} -{"rects": [{"solidity": 0.9966274802870474, "top": 2235, "right": 3115, "bottom": 3875, "left": 690}, {"solidity": 0.9984739007873505, "top": 380, "right": 3110, "bottom": 1995, "left": 705}, {"solidity": 0.9954672956157975, "top": 4095, "right": 3090, "bottom": 5745, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709507f.jpg"} -{"rects": [{"solidity": 0.9966275405754038, "top": 2305, "right": 3085, "bottom": 3935, "left": 655}, {"solidity": 0.9960807469940497, "top": 420, "right": 3080, "bottom": 2050, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701533f.jpg"} -{"rects": [{"solidity": 0.9966279314367307, "top": 2235, "right": 3180, "bottom": 3870, "left": 750}, {"solidity": 0.9974216045775349, "top": 360, "right": 3165, "bottom": 1985, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720507f.jpg"} -{"rects": [{"solidity": 0.9966279397448379, "top": 385, "right": 3250, "bottom": 2035, "left": 830}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712268f.jpg"} -{"rects": [{"solidity": 0.9966279529520681, "top": 835, "right": 2035, "bottom": 3250, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703175f.jpg"} -{"rects": [{"solidity": 0.9966281434197318, "top": 435, "right": 3115, "bottom": 2055, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726272f.jpg"} -{"rects": [{"solidity": 0.996628283385715, "top": 440, "right": 3185, "bottom": 2015, "left": 805}, {"solidity": 0.9963813486292885, "top": 2295, "right": 3180, "bottom": 3870, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711913f.jpg"} -{"rects": [{"solidity": 0.9966285905832603, "top": 4075, "right": 3040, "bottom": 5695, "left": 620}, {"solidity": 0.9958853593840978, "top": 2205, "right": 3045, "bottom": 3835, "left": 625}, {"solidity": 0.9966714449634476, "top": 365, "right": 3045, "bottom": 1975, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728352f.jpg"} -{"rects": [{"solidity": 0.9966286199113131, "top": 460, "right": 3100, "bottom": 2085, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701549f.jpg"} -{"rects": [{"solidity": 0.9966289687635109, "top": 430, "right": 3285, "bottom": 2045, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726795f.jpg"} -{"rects": [{"solidity": 0.9966291012333107, "top": 750, "right": 2075, "bottom": 3170, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703615f.jpg"} -{"rects": [{"solidity": 0.9966291132465017, "top": 820, "right": 3885, "bottom": 3260, "left": 2255}, {"solidity": 0.9996979900272451, "top": 825, "right": 1930, "bottom": 3240, "left": 310}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722455f.jpg"} -{"rects": [{"solidity": 0.9966292659809504, "top": 840, "right": 1975, "bottom": 3225, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713509f.jpg"} -{"rects": [{"solidity": 0.996629346054868, "top": 2250, "right": 3195, "bottom": 3885, "left": 765}, {"solidity": 0.9958313467262864, "top": 425, "right": 3190, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706717f.jpg"} -{"rects": [{"solidity": 0.9966293965266034, "top": 485, "right": 3335, "bottom": 2435, "left": 505}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727238f.jpg"} -{"rects": [{"solidity": 0.9966294664393915, "top": 835, "right": 2080, "bottom": 3260, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714544f.jpg"} -{"rects": [{"solidity": 0.9966296115435804, "top": 495, "right": 3000, "bottom": 3640, "left": 485}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714427f.jpg"} -{"rects": [{"solidity": 0.9966296886277427, "top": 2140, "right": 3125, "bottom": 3780, "left": 700}, {"solidity": 0.9976098588541982, "top": 305, "right": 3135, "bottom": 1935, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705375f.jpg"} -{"rects": [{"solidity": 0.9966298630345845, "top": 785, "right": 3890, "bottom": 3225, "left": 2230}, {"solidity": 0.996487464378342, "top": 770, "right": 2005, "bottom": 3195, "left": 365}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722878f.jpg"} -{"rects": [{"solidity": 0.9966298929402145, "top": 440, "right": 3350, "bottom": 2420, "left": 530}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703023f.jpg"} -{"rects": [{"solidity": 0.9966299349127662, "top": 800, "right": 5725, "bottom": 3220, "left": 4130}, {"solidity": 0.9969824118673997, "top": 800, "right": 3825, "bottom": 3190, "left": 2245}, {"solidity": 0.9999122679740988, "top": 800, "right": 1950, "bottom": 3180, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730111f.jpg"} -{"rects": [{"solidity": 0.9966301300685628, "top": 760, "right": 3935, "bottom": 3170, "left": 2320}, {"solidity": 0.9959541074604695, "top": 755, "right": 2050, "bottom": 3170, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710095f.jpg"} -{"rects": [{"solidity": 0.9966302780102035, "top": 965, "right": 3885, "bottom": 3375, "left": 2275}, {"solidity": 0.995820979533599, "top": 960, "right": 2020, "bottom": 3365, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729731f.jpg"} -{"rects": [{"solidity": 0.996630370147765, "top": 720, "right": 2055, "bottom": 3155, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714813f.jpg"} -{"rects": [{"solidity": 0.9966305345724548, "top": 430, "right": 3195, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720266f.jpg"} -{"rects": [{"solidity": 0.9966306363348559, "top": 400, "right": 3235, "bottom": 2015, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725832f.jpg"} -{"rects": [{"solidity": 0.9966308451931455, "top": 410, "right": 3205, "bottom": 2125, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701616f.jpg"} -{"rects": [{"solidity": 0.9966309756617034, "top": 740, "right": 2490, "bottom": 3160, "left": 865}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707329f.jpg"} -{"rects": [{"solidity": 0.9966310619239155, "top": 265, "right": 2100, "bottom": 1305, "left": 555}], "shape": {"h": 2555, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/727218f.jpg"} -{"rects": [{"solidity": 0.9966311094328936, "top": 330, "right": 2410, "bottom": 1525, "left": 620}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716429f.jpg"} -{"rects": [{"solidity": 0.9966313375779768, "top": 885, "right": 3835, "bottom": 3315, "left": 2210}, {"solidity": 0.9959497838258115, "top": 890, "right": 1965, "bottom": 3305, "left": 350}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728898f.jpg"} -{"rects": [{"solidity": 0.9966315403166615, "top": 955, "right": 3075, "bottom": 3000, "left": 235}, {"solidity": 0.9968099494965594, "top": 970, "right": 5920, "bottom": 2930, "left": 3095}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718267f.jpg"} -{"rects": [{"solidity": 0.9966316116766477, "top": 2235, "right": 3065, "bottom": 3850, "left": 645}, {"solidity": 0.9975386641629502, "top": 380, "right": 3045, "bottom": 1985, "left": 635}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/730466f.jpg"} -{"rects": [{"solidity": 0.9966317655890042, "top": 415, "right": 3200, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734042f.jpg"} -{"rects": [{"solidity": 0.9966319774148117, "top": 2270, "right": 3210, "bottom": 3900, "left": 780}, {"solidity": 0.9549391759535136, "top": 380, "right": 3175, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701386f.jpg"} -{"rects": [{"solidity": 0.9966322146092208, "top": 890, "right": 2280, "bottom": 3590, "left": 470}], "shape": {"h": 4420, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711540f.jpg"} -{"rects": [{"solidity": 0.996632275454824, "top": 570, "right": 3135, "bottom": 2165, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710568f.jpg"} -{"rects": [{"solidity": 0.9966323116759059, "top": 485, "right": 4970, "bottom": 3470, "left": 1165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712901f.jpg"} -{"rects": [{"solidity": 0.9966325173954252, "top": 950, "right": 3795, "bottom": 3375, "left": 2185}, {"solidity": 0.996262622982758, "top": 960, "right": 5660, "bottom": 3385, "left": 4055}, {"solidity": 0.9964415594572401, "top": 960, "right": 1965, "bottom": 3380, "left": 365}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728912f.jpg"} -{"rects": [{"solidity": 0.9966328159272707, "top": 795, "right": 2335, "bottom": 3610, "left": 405}, {"solidity": 0.9972117461614806, "top": 850, "right": 4490, "bottom": 3650, "left": 2560}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704257f.jpg"} -{"rects": [{"solidity": 0.996632888991558, "top": 1125, "right": 3345, "bottom": 5035, "left": 225}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717181f.jpg"} -{"rects": [{"solidity": 0.9966329429545288, "top": 830, "right": 2060, "bottom": 3255, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701489f.jpg"} -{"rects": [{"solidity": 0.9966331157346368, "top": 435, "right": 3170, "bottom": 2055, "left": 740}, {"solidity": 0.9955212747487349, "top": 2255, "right": 3155, "bottom": 3890, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707130f.jpg"} -{"rects": [{"solidity": 0.9966331507171716, "top": 830, "right": 2175, "bottom": 3235, "left": 570}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722062f.jpg"} -{"rects": [{"solidity": 0.9966332811043862, "top": 360, "right": 3365, "bottom": 2185, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707802f.jpg"} -{"rects": [{"solidity": 0.9966332975391374, "top": 740, "right": 4750, "bottom": 3365, "left": 1315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701499f.jpg"} -{"rects": [{"solidity": 0.9966334975082707, "top": 2175, "right": 3125, "bottom": 3810, "left": 730}, {"solidity": 0.9973565745393634, "top": 320, "right": 3135, "bottom": 1940, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711044f.jpg"} -{"rects": [{"solidity": 0.9966335243506228, "top": 430, "right": 3190, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730442f.jpg"} -{"rects": [{"solidity": 0.9966336005739855, "top": 795, "right": 3830, "bottom": 3215, "left": 2195}, {"solidity": 0.9964059230906467, "top": 790, "right": 2000, "bottom": 3210, "left": 380}, {"solidity": 0.9982719699542522, "top": 805, "right": 5640, "bottom": 3205, "left": 4045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722905f.jpg"} -{"rects": [{"solidity": 0.9966336521424118, "top": 700, "right": 3335, "bottom": 2580, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712335f.jpg"} -{"rects": [{"solidity": 0.996633700293225, "top": 440, "right": 3145, "bottom": 2060, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703282f.jpg"} -{"rects": [{"solidity": 0.9966338030904277, "top": 415, "right": 3285, "bottom": 2030, "left": 875}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724998f.jpg"} -{"rects": [{"solidity": 0.9966338230653249, "top": 435, "right": 3240, "bottom": 2075, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705066f.jpg"} -{"rects": [{"solidity": 0.996634045799049, "top": 2275, "right": 3160, "bottom": 3890, "left": 750}, {"solidity": 0.997230669516742, "top": 430, "right": 3170, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710529f.jpg"} -{"rects": [{"solidity": 0.9966341666547005, "top": 1230, "right": 3610, "bottom": 5255, "left": 325}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724198f.jpg"} -{"rects": [{"solidity": 0.9966343799403785, "top": 420, "right": 3190, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/720203f.jpg"} -{"rects": [{"solidity": 0.9966345656000828, "top": 760, "right": 2045, "bottom": 3175, "left": 430}, {"solidity": 0.9978943080617451, "top": 775, "right": 3890, "bottom": 3170, "left": 2290}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721753f.jpg"} -{"rects": [{"solidity": 0.9966345747000735, "top": 440, "right": 3170, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723040f.jpg"} -{"rects": [{"solidity": 0.9966347007052668, "top": 835, "right": 2215, "bottom": 3240, "left": 610}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720345f.jpg"} -{"rects": [{"solidity": 0.9966347038894684, "top": 450, "right": 5740, "bottom": 2070, "left": 3320}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701674f.jpg"} -{"rects": [{"solidity": 0.9966347127743689, "top": 760, "right": 3910, "bottom": 3165, "left": 2300}, {"solidity": 0.998777702935813, "top": 755, "right": 2075, "bottom": 3155, "left": 480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712387f.jpg"} -{"rects": [{"solidity": 0.9966347355951517, "top": 385, "right": 2215, "bottom": 2475, "left": 740}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715994f.jpg"} -{"rects": [{"solidity": 0.9966347816810575, "top": 2290, "right": 3075, "bottom": 3915, "left": 660}, {"solidity": 0.99655234308589, "top": 420, "right": 3075, "bottom": 1995, "left": 705}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700209f.jpg"} -{"rects": [{"solidity": 0.9966348597643758, "top": 410, "right": 3175, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705650f.jpg"} -{"rects": [{"solidity": 0.9966349122200205, "top": 825, "right": 2025, "bottom": 3240, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723083f.jpg"} -{"rects": [{"solidity": 0.9966349318477371, "top": 420, "right": 3200, "bottom": 2050, "left": 785}, {"solidity": 0.9975505599871082, "top": 2290, "right": 3190, "bottom": 3905, "left": 770}, {"solidity": 0.9971592928933846, "top": 4130, "right": 3185, "bottom": 5745, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726928f.jpg"} -{"rects": [{"solidity": 0.9966351986654535, "top": 595, "right": 2740, "bottom": 2035, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706710f.jpg"} -{"rects": [{"solidity": 0.9966353018345169, "top": 555, "right": 4940, "bottom": 3595, "left": 1185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709905f.jpg"} -{"rects": [{"solidity": 0.9966353730578464, "top": 785, "right": 3895, "bottom": 3205, "left": 2280}, {"solidity": 0.9968701802388988, "top": 770, "right": 2100, "bottom": 3190, "left": 485}, {"solidity": 0.9967779891929738, "top": 795, "right": 5690, "bottom": 3205, "left": 4075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723544f.jpg"} -{"rects": [{"solidity": 0.9966354908397893, "top": 2285, "right": 3180, "bottom": 3895, "left": 780}, {"solidity": 0.9979501966438148, "top": 430, "right": 3180, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724356f.jpg"} -{"rects": [{"solidity": 0.9966355463002634, "top": 420, "right": 3250, "bottom": 2010, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725880f.jpg"} -{"rects": [{"solidity": 0.996635657586116, "top": 465, "right": 3240, "bottom": 2110, "left": 810}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706749f.jpg"} -{"rects": [{"solidity": 0.9966357124989151, "top": 660, "right": 2650, "bottom": 2015, "left": 825}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703707f.jpg"} -{"rects": [{"solidity": 0.9966357182968072, "top": 875, "right": 2275, "bottom": 3610, "left": 440}], "shape": {"h": 4410, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711166f.jpg"} -{"rects": [{"solidity": 0.9966357859855255, "top": 440, "right": 3000, "bottom": 1985, "left": 1055}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702177f.jpg"} -{"rects": [{"solidity": 0.9966358393095707, "top": 435, "right": 3135, "bottom": 2045, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729879f.jpg"} -{"rects": [{"solidity": 0.9966359278958452, "top": 745, "right": 2065, "bottom": 3140, "left": 455}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703347f.jpg"} -{"rects": [{"solidity": 0.9966359305396478, "top": 850, "right": 5315, "bottom": 3475, "left": 815}], "shape": {"h": 4675, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718479f.jpg"} -{"rects": [{"solidity": 0.9966359761850538, "top": 835, "right": 1980, "bottom": 3250, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718846f.jpg"} -{"rects": [{"solidity": 0.9966360258165461, "top": 395, "right": 2960, "bottom": 2015, "left": 565}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702040f.jpg"} -{"rects": [{"solidity": 0.9966360361089747, "top": 715, "right": 3285, "bottom": 2780, "left": 235}, {"solidity": 0.9974382864573201, "top": 3180, "right": 3270, "bottom": 5195, "left": 220}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720108f.jpg"} -{"rects": [{"solidity": 0.9966361519256457, "top": 130, "right": 3445, "bottom": 2295, "left": 130}], "shape": {"h": 2425, "w": 3575}, "file": "/usr/local/google/home/danvk/milstein/1558233.jpg"} -{"rects": [{"solidity": 0.9966363736044014, "top": 775, "right": 2020, "bottom": 3195, "left": 405}, {"solidity": 0.9949948495387189, "top": 770, "right": 3885, "bottom": 3195, "left": 2265}, {"solidity": 0.9949758314506384, "top": 785, "right": 5715, "bottom": 3195, "left": 4115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723434f.jpg"} -{"rects": [{"solidity": 0.9966364334315199, "top": 675, "right": 5335, "bottom": 3515, "left": 3295}, {"solidity": 0.9978418612109631, "top": 680, "right": 2600, "bottom": 3500, "left": 595}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734852f.jpg"} -{"rects": [{"solidity": 0.996636546679411, "top": 405, "right": 3100, "bottom": 2005, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728489f.jpg"} -{"rects": [{"solidity": 0.9966367493791674, "top": 260, "right": 3170, "bottom": 1865, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719434f.jpg"} -{"rects": [{"solidity": 0.9966367963887122, "top": 840, "right": 3800, "bottom": 3270, "left": 2165}, {"solidity": 0.9953032155891096, "top": 855, "right": 5605, "bottom": 3290, "left": 3960}, {"solidity": 0.9969936611781878, "top": 835, "right": 1985, "bottom": 3255, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732167f.jpg"} -{"rects": [{"solidity": 0.9966368212392535, "top": 690, "right": 3925, "bottom": 3125, "left": 2290}, {"solidity": 0.9965085219628407, "top": 700, "right": 2050, "bottom": 3100, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726473f.jpg"} -{"rects": [{"solidity": 0.996636868808891, "top": 2260, "right": 3170, "bottom": 3890, "left": 750}, {"solidity": 0.9977567863695597, "top": 4125, "right": 3145, "bottom": 5735, "left": 730}, {"solidity": 0.9963782133602962, "top": 405, "right": 3180, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731875f.jpg"} -{"rects": [{"solidity": 0.996636911740615, "top": 955, "right": 3900, "bottom": 3380, "left": 2280}, {"solidity": 0.9970503372651448, "top": 955, "right": 5670, "bottom": 3385, "left": 4055}, {"solidity": 0.9959762134849619, "top": 945, "right": 2120, "bottom": 3370, "left": 540}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722966f.jpg"} -{"rects": [{"solidity": 0.9966370097946361, "top": 435, "right": 5080, "bottom": 3670, "left": 1080}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707603f.jpg"} -{"rects": [{"solidity": 0.9966371922011341, "top": 485, "right": 2985, "bottom": 2105, "left": 575}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702191f.jpg"} -{"rects": [{"solidity": 0.9966375607933637, "top": 830, "right": 2015, "bottom": 3220, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716909f.jpg"} -{"rects": [{"solidity": 0.9966375988098938, "top": 570, "right": 5040, "bottom": 3660, "left": 1080}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708514f.jpg"} -{"rects": [{"solidity": 0.9966376563002525, "top": 2235, "right": 3190, "bottom": 3850, "left": 785}, {"solidity": 0.9933209454630508, "top": 415, "right": 3190, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700866f.jpg"} -{"rects": [{"solidity": 0.9966376736336492, "top": 685, "right": 3840, "bottom": 3100, "left": 2235}, {"solidity": 0.9956720732561343, "top": 700, "right": 2000, "bottom": 3090, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702999f.jpg"} -{"rects": [{"solidity": 0.996637737801023, "top": 740, "right": 3910, "bottom": 3175, "left": 2285}, {"solidity": 0.9958087060571594, "top": 755, "right": 2070, "bottom": 3160, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733901f.jpg"} -{"rects": [{"solidity": 0.9966377514769325, "top": 575, "right": 4865, "bottom": 3575, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713771f.jpg"} -{"rects": [{"solidity": 0.9966377878232323, "top": 435, "right": 3190, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713423f.jpg"} -{"rects": [{"solidity": 0.996637798629306, "top": 2270, "right": 3220, "bottom": 3890, "left": 800}, {"solidity": 0.9968439074815868, "top": 435, "right": 3215, "bottom": 2050, "left": 795}, {"solidity": 0.994939621214814, "top": 4105, "right": 3225, "bottom": 5730, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723320f.jpg"} -{"rects": [{"solidity": 0.9966378404064535, "top": 810, "right": 3860, "bottom": 3215, "left": 2250}, {"solidity": 0.996168860524744, "top": 820, "right": 2025, "bottom": 3220, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712233f.jpg"} -{"rects": [{"solidity": 0.9966379068578122, "top": 1130, "right": 2880, "bottom": 2730, "left": 495}, {"solidity": 0.994368607004887, "top": 1130, "right": 5525, "bottom": 2725, "left": 3165}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713928f.jpg"} -{"rects": [{"solidity": 0.9966381010980089, "top": 840, "right": 3855, "bottom": 3280, "left": 2215}, {"solidity": 0.9985468458570735, "top": 850, "right": 2025, "bottom": 3275, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707074f.jpg"} -{"rects": [{"solidity": 0.9966381097007727, "top": 4275, "right": 3210, "bottom": 5910, "left": 780}, {"solidity": 0.9968328108004351, "top": 2515, "right": 3180, "bottom": 4150, "left": 765}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/719099f.jpg"} -{"rects": [{"solidity": 0.9966381650724381, "top": 375, "right": 3140, "bottom": 2010, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700036f.jpg"} -{"rects": [{"solidity": 0.9966381962675663, "top": 835, "right": 3100, "bottom": 2335, "left": 970}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509303.jpg"} -{"rects": [{"solidity": 0.9966382315757212, "top": 435, "right": 3270, "bottom": 2060, "left": 840}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/727467f.jpg"} -{"rects": [{"solidity": 0.9966382359329463, "top": 445, "right": 3190, "bottom": 2065, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707506f.jpg"} -{"rects": [{"solidity": 0.9966384591833192, "top": 410, "right": 3300, "bottom": 2060, "left": 860}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710857f.jpg"} -{"rects": [{"solidity": 0.9966384797437514, "top": 825, "right": 2030, "bottom": 3260, "left": 385}, {"solidity": 0.9980145303183136, "top": 830, "right": 3900, "bottom": 3250, "left": 2270}, {"solidity": 0.9950737174955332, "top": 835, "right": 5785, "bottom": 3250, "left": 4160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720202f.jpg"} -{"rects": [{"solidity": 0.9966385108762494, "top": 4130, "right": 3230, "bottom": 5770, "left": 800}, {"solidity": 0.996491385040135, "top": 2280, "right": 3225, "bottom": 3905, "left": 790}, {"solidity": 0.996385577099635, "top": 430, "right": 3205, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732093f.jpg"} -{"rects": [{"solidity": 0.9966387151561334, "top": 855, "right": 2075, "bottom": 3275, "left": 455}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714417f.jpg"} -{"rects": [{"solidity": 0.9966387295014262, "top": 1295, "right": 3295, "bottom": 5275, "left": 420}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718457f.jpg"} -{"rects": [{"solidity": 0.9966388014191012, "top": 435, "right": 3240, "bottom": 2060, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705651f.jpg"} -{"rects": [{"solidity": 0.9966388597970871, "top": 1050, "right": 3555, "bottom": 5090, "left": 290}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717023f.jpg"} -{"rects": [{"solidity": 0.9966389406463023, "top": 780, "right": 2025, "bottom": 3185, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724505f.jpg"} -{"rects": [{"solidity": 0.9966390585526527, "top": 790, "right": 2010, "bottom": 3225, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701962f.jpg"} -{"rects": [{"solidity": 0.9966392013841988, "top": 810, "right": 4010, "bottom": 3230, "left": 2380}, {"solidity": 0.996944602346132, "top": 800, "right": 2170, "bottom": 3225, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707569f.jpg"} -{"rects": [{"solidity": 0.9966393059295932, "top": 765, "right": 3840, "bottom": 3185, "left": 2220}, {"solidity": 0.9977244739519194, "top": 780, "right": 1995, "bottom": 3165, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724554f.jpg"} -{"rects": [{"solidity": 0.9966394732147201, "top": 435, "right": 3125, "bottom": 2040, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728563f.jpg"} -{"rects": [{"solidity": 0.9966397227531936, "top": 2250, "right": 3140, "bottom": 3875, "left": 705}, {"solidity": 0.9958946463622718, "top": 395, "right": 3145, "bottom": 2020, "left": 705}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/701044f.jpg"} -{"rects": [{"solidity": 0.9966398316441497, "top": 685, "right": 5155, "bottom": 2080, "left": 3315}, {"solidity": 0.9962040473599746, "top": 670, "right": 2950, "bottom": 2055, "left": 1115}, {"solidity": 0.9978563235949653, "top": 2260, "right": 2930, "bottom": 3650, "left": 1120}, {"solidity": 0.9950562976714153, "top": 2265, "right": 5140, "bottom": 3665, "left": 3340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727400f.jpg"} -{"rects": [{"solidity": 0.9966398888958365, "top": 425, "right": 3185, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730399f.jpg"} -{"rects": [{"solidity": 0.9966400738865269, "top": 875, "right": 2010, "bottom": 3305, "left": 375}, {"solidity": 0.9991807134833438, "top": 885, "right": 3860, "bottom": 3310, "left": 2240}, {"solidity": 0.9976947249124253, "top": 895, "right": 5730, "bottom": 3310, "left": 4110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724243f.jpg"} -{"rects": [{"solidity": 0.9966401619944927, "top": 795, "right": 2100, "bottom": 3220, "left": 485}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701340f.jpg"} -{"rects": [{"solidity": 0.9966402170837727, "top": 420, "right": 2920, "bottom": 2055, "left": 500}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703369f.jpg"} -{"rects": [{"solidity": 0.9966403149175231, "top": 955, "right": 3925, "bottom": 3355, "left": 2315}, {"solidity": 0.9944984285911121, "top": 960, "right": 2055, "bottom": 3365, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731374f.jpg"} -{"rects": [{"solidity": 0.9966403344394353, "top": 785, "right": 3875, "bottom": 3215, "left": 2245}, {"solidity": 0.9978632133784792, "top": 790, "right": 2035, "bottom": 3205, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714011f.jpg"} -{"rects": [{"solidity": 0.9966404024999838, "top": 395, "right": 2995, "bottom": 2010, "left": 580}, {"solidity": 0.9960951644630607, "top": 2275, "right": 3000, "bottom": 3880, "left": 590}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728962f.jpg"} -{"rects": [{"solidity": 0.9966404125853842, "top": 420, "right": 3210, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733740f.jpg"} -{"rects": [{"solidity": 0.9966404885558012, "top": 765, "right": 5290, "bottom": 3565, "left": 3310}, {"solidity": 0.9749747809680372, "top": 745, "right": 2845, "bottom": 3520, "left": 865}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704253f.jpg"} -{"rects": [{"solidity": 0.9966405518317143, "top": 865, "right": 2080, "bottom": 3295, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729619f.jpg"} -{"rects": [{"solidity": 0.9966405959896026, "top": 320, "right": 2405, "bottom": 1530, "left": 605}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716498f.jpg"} -{"rects": [{"solidity": 0.9966405971679801, "top": 440, "right": 3250, "bottom": 2015, "left": 845}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726543f.jpg"} -{"rects": [{"solidity": 0.9966406166630403, "top": 630, "right": 4795, "bottom": 3280, "left": 1345}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722693f.jpg"} -{"rects": [{"solidity": 0.9966406302241384, "top": 770, "right": 3925, "bottom": 3200, "left": 2285}, {"solidity": 0.9984888311172725, "top": 795, "right": 2045, "bottom": 3220, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706538f.jpg"} -{"rects": [{"solidity": 0.9966406655926382, "top": 415, "right": 3090, "bottom": 2015, "left": 680}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715742f.jpg"} -{"rects": [{"solidity": 0.9966406745705829, "top": 805, "right": 2110, "bottom": 3225, "left": 485}, {"solidity": 0.9954480671826693, "top": 990, "right": 3690, "bottom": 3005, "left": 2255}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710965f.jpg"} -{"rects": [{"solidity": 0.9966407124814458, "top": 420, "right": 3050, "bottom": 2030, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729396f.jpg"} -{"rects": [{"solidity": 0.9966409225560728, "top": 770, "right": 2035, "bottom": 3160, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716719f.jpg"} -{"rects": [{"solidity": 0.9966409909238733, "top": 400, "right": 3220, "bottom": 2010, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726995f.jpg"} -{"rects": [{"solidity": 0.9966410514686769, "top": 475, "right": 2160, "bottom": 2565, "left": 675}, {"solidity": 0.9951112445432564, "top": 485, "right": 3910, "bottom": 2580, "left": 2415}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716182f.jpg"} -{"rects": [{"solidity": 0.9966412344451286, "top": 510, "right": 3175, "bottom": 2100, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733653f.jpg"} -{"rects": [{"solidity": 0.9966412998105513, "top": 785, "right": 2050, "bottom": 3200, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715232f.jpg"} -{"rects": [{"solidity": 0.9966413401213617, "top": 300, "right": 3160, "bottom": 1930, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715695f.jpg"} -{"rects": [{"solidity": 0.9966416307616208, "top": 775, "right": 1995, "bottom": 3185, "left": 380}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715529f.jpg"} -{"rects": [{"solidity": 0.9966416639350058, "top": 800, "right": 1975, "bottom": 3225, "left": 360}, {"solidity": 0.9962457227709988, "top": 805, "right": 3840, "bottom": 3225, "left": 2220}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730128f.jpg"} -{"rects": [{"solidity": 0.9966417861499914, "top": 800, "right": 3870, "bottom": 3210, "left": 2275}, {"solidity": 0.9959500150060518, "top": 800, "right": 5620, "bottom": 3205, "left": 4030}, {"solidity": 0.9962699623035128, "top": 815, "right": 2120, "bottom": 3200, "left": 515}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733183f.jpg"} -{"rects": [{"solidity": 0.9966418506566125, "top": 820, "right": 2045, "bottom": 3250, "left": 405}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711604f.jpg"} -{"rects": [{"solidity": 0.9966421300323909, "top": 470, "right": 3180, "bottom": 2085, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706149f.jpg"} -{"rects": [{"solidity": 0.9966422349284316, "top": 2255, "right": 3120, "bottom": 3890, "left": 705}, {"solidity": 0.9994054172370196, "top": 390, "right": 3110, "bottom": 1990, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700218f.jpg"} -{"rects": [{"solidity": 0.9966422426975778, "top": 525, "right": 2925, "bottom": 3420, "left": 900}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705206f.jpg"} -{"rects": [{"solidity": 0.9966422924333486, "top": 875, "right": 2045, "bottom": 3300, "left": 415}, {"solidity": 0.9960994542459536, "top": 900, "right": 5765, "bottom": 3330, "left": 4150}, {"solidity": 0.9978594504601521, "top": 885, "right": 3890, "bottom": 3290, "left": 2305}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729502f.jpg"} -{"rects": [{"solidity": 0.996642315035423, "top": 2310, "right": 3165, "bottom": 3950, "left": 730}, {"solidity": 0.9964745161953891, "top": 400, "right": 3165, "bottom": 2040, "left": 735}, {"solidity": 0.9955806112577098, "top": 4165, "right": 3150, "bottom": 5790, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732211f.jpg"} -{"rects": [{"solidity": 0.9966424374475381, "top": 520, "right": 3295, "bottom": 2600, "left": 245}, {"solidity": 0.9952184258237555, "top": 3365, "right": 3175, "bottom": 4990, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715745f.jpg"} -{"rects": [{"solidity": 0.9966426221865368, "top": 425, "right": 3170, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733911f.jpg"} -{"rects": [{"solidity": 0.9966426313402016, "top": 615, "right": 4895, "bottom": 3770, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703197f.jpg"} -{"rects": [{"solidity": 0.9966427702276759, "top": 2100, "right": 2735, "bottom": 3510, "left": 905}, {"solidity": 0.9943783910837757, "top": 645, "right": 2750, "bottom": 2065, "left": 905}, {"solidity": 0.9943336913783419, "top": 2070, "right": 5245, "bottom": 3495, "left": 3440}, {"solidity": 0.9943317348461931, "top": 635, "right": 5265, "bottom": 2040, "left": 3445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719633f.jpg"} -{"rects": [{"solidity": 0.9966429033098272, "top": 840, "right": 2050, "bottom": 3265, "left": 430}, {"solidity": 0.9949397551179694, "top": 865, "right": 3960, "bottom": 3270, "left": 2345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719462f.jpg"} -{"rects": [{"solidity": 0.9966430557265711, "top": 465, "right": 3250, "bottom": 2085, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716763f.jpg"} -{"rects": [{"solidity": 0.9966431451935797, "top": 900, "right": 2175, "bottom": 3325, "left": 545}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707773f.jpg"} -{"rects": [{"solidity": 0.996643156918683, "top": 2295, "right": 3190, "bottom": 3905, "left": 770}, {"solidity": 0.995610419919255, "top": 4130, "right": 3190, "bottom": 5740, "left": 770}, {"solidity": 0.9962649426610338, "top": 430, "right": 3195, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733860f.jpg"} -{"rects": [{"solidity": 0.9966433724001047, "top": 855, "right": 2045, "bottom": 3245, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728571f.jpg"} -{"rects": [{"solidity": 0.996643396830165, "top": 750, "right": 3960, "bottom": 3165, "left": 2355}, {"solidity": 0.9960403853935703, "top": 765, "right": 2110, "bottom": 3145, "left": 515}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718511f.jpg"} -{"rects": [{"solidity": 0.9966434478503681, "top": 895, "right": 3860, "bottom": 3320, "left": 2230}, {"solidity": 0.9954608180110652, "top": 890, "right": 2010, "bottom": 3320, "left": 375}, {"solidity": 0.9970272183257191, "top": 925, "right": 5725, "bottom": 3340, "left": 4095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709557f.jpg"} -{"rects": [{"solidity": 0.99664350411621, "top": 830, "right": 3945, "bottom": 3215, "left": 2325}, {"solidity": 0.9952812649105777, "top": 800, "right": 2040, "bottom": 3190, "left": 425}, {"solidity": 0.9948496290408055, "top": 830, "right": 5820, "bottom": 3215, "left": 4220}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731712f.jpg"} -{"rects": [{"solidity": 0.9966436280958616, "top": 645, "right": 3365, "bottom": 4550, "left": 240}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726427f.jpg"} -{"rects": [{"solidity": 0.996643853011049, "top": 415, "right": 3220, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726276f.jpg"} -{"rects": [{"solidity": 0.9966439650669566, "top": 3385, "right": 3160, "bottom": 5270, "left": 500}, {"solidity": 0.9886843801475328, "top": 860, "right": 3155, "bottom": 2685, "left": 545}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715348f.jpg"} -{"rects": [{"solidity": 0.9966441670425098, "top": 1080, "right": 3460, "bottom": 2030, "left": 1720}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507823.jpg"} -{"rects": [{"solidity": 0.9966442457671736, "top": 470, "right": 2750, "bottom": 1890, "left": 945}, {"solidity": 0.9943098051095628, "top": 2210, "right": 5015, "bottom": 3615, "left": 3220}, {"solidity": 0.9949281701464915, "top": 480, "right": 5035, "bottom": 1890, "left": 3255}, {"solidity": 0.993645215849193, "top": 2190, "right": 2725, "bottom": 3540, "left": 1000}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727811f.jpg"} -{"rects": [{"solidity": 0.9966442876779243, "top": 445, "right": 3270, "bottom": 2440, "left": 475}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703584f.jpg"} -{"rects": [{"solidity": 0.9966443950498222, "top": 370, "right": 2930, "bottom": 1955, "left": 525}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722838f.jpg"} -{"rects": [{"solidity": 0.9966446062844927, "top": 355, "right": 3170, "bottom": 1985, "left": 735}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700213f.jpg"} -{"rects": [{"solidity": 0.9966446358365987, "top": 435, "right": 2935, "bottom": 2055, "left": 550}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704751f.jpg"} -{"rects": [{"solidity": 0.99664466101499, "top": 375, "right": 3225, "bottom": 1980, "left": 845}, {"solidity": 0.9974964804632507, "top": 2230, "right": 3220, "bottom": 3820, "left": 835}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728201f.jpg"} -{"rects": [{"solidity": 0.9966448382859645, "top": 2155, "right": 2645, "bottom": 3585, "left": 785}, {"solidity": 0.9989185991251807, "top": 2180, "right": 5260, "bottom": 3610, "left": 3445}, {"solidity": 0.9971398099670351, "top": 700, "right": 5265, "bottom": 2130, "left": 3445}, {"solidity": 0.9949712499749565, "top": 700, "right": 2620, "bottom": 2105, "left": 820}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726185f.jpg"} -{"rects": [{"solidity": 0.9966450188166422, "top": 770, "right": 3835, "bottom": 3180, "left": 2230}, {"solidity": 0.9953591579719062, "top": 790, "right": 2000, "bottom": 3190, "left": 390}, {"solidity": 0.9971198800607587, "top": 790, "right": 5665, "bottom": 3180, "left": 4060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719368f.jpg"} -{"rects": [{"solidity": 0.9966452577608627, "top": 920, "right": 3970, "bottom": 3345, "left": 2355}, {"solidity": 0.997554750561856, "top": 920, "right": 2060, "bottom": 3340, "left": 455}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729790f.jpg"} -{"rects": [{"solidity": 0.9966453826360431, "top": 750, "right": 3945, "bottom": 3190, "left": 2320}, {"solidity": 0.9990823274230085, "top": 795, "right": 2060, "bottom": 3215, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705781f.jpg"} -{"rects": [{"solidity": 0.9966454351067994, "top": 870, "right": 2010, "bottom": 3290, "left": 390}, {"solidity": 0.9961117327234605, "top": 885, "right": 3850, "bottom": 3295, "left": 2255}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729529f.jpg"} -{"rects": [{"solidity": 0.9966454512383178, "top": 395, "right": 3100, "bottom": 2015, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721690f.jpg"} -{"rects": [{"solidity": 0.996645586372953, "top": 465, "right": 5065, "bottom": 3665, "left": 1060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720789f.jpg"} -{"rects": [{"solidity": 0.996645684537877, "top": 850, "right": 2055, "bottom": 3255, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729057f.jpg"} -{"rects": [{"solidity": 0.9966457265080602, "top": 460, "right": 2960, "bottom": 2085, "left": 535}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703941f.jpg"} -{"rects": [{"solidity": 0.9966458189914021, "top": 720, "right": 2770, "bottom": 2130, "left": 935}, {"solidity": 0.9958530660319486, "top": 2190, "right": 2760, "bottom": 3620, "left": 955}, {"solidity": 0.9955090937122338, "top": 725, "right": 5210, "bottom": 2120, "left": 3390}, {"solidity": 0.99501053166221, "top": 2170, "right": 5205, "bottom": 3565, "left": 3385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725236f.jpg"} -{"rects": [{"solidity": 0.9966458792454009, "top": 850, "right": 3925, "bottom": 3315, "left": 2260}, {"solidity": 0.997047172754575, "top": 880, "right": 5765, "bottom": 3330, "left": 4120}, {"solidity": 0.9962802666233547, "top": 835, "right": 2050, "bottom": 3270, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701048f.jpg"} -{"rects": [{"solidity": 0.9966458799632567, "top": 775, "right": 2020, "bottom": 3190, "left": 395}, {"solidity": 0.9973959271645741, "top": 805, "right": 3855, "bottom": 3205, "left": 2250}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723771f.jpg"} -{"rects": [{"solidity": 0.9966460112625417, "top": 505, "right": 3015, "bottom": 2145, "left": 580}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703261f.jpg"} -{"rects": [{"solidity": 0.9966460673990631, "top": 1210, "right": 3225, "bottom": 4590, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701309f.jpg"} -{"rects": [{"solidity": 0.9966460740755019, "top": 800, "right": 3895, "bottom": 3230, "left": 2265}, {"solidity": 0.9966771299435757, "top": 795, "right": 2075, "bottom": 3220, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718728f.jpg"} -{"rects": [{"solidity": 0.9966461113043183, "top": 895, "right": 4620, "bottom": 3265, "left": 1475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730786f.jpg"} -{"rects": [{"solidity": 0.9966461410074854, "top": 430, "right": 3195, "bottom": 2070, "left": 755}, {"solidity": 0.9968818478316261, "top": 2275, "right": 3190, "bottom": 3910, "left": 765}, {"solidity": 0.9957964211909072, "top": 4080, "right": 3195, "bottom": 5710, "left": 770}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/705044f.jpg"} -{"rects": [{"solidity": 0.9966463825175856, "top": 430, "right": 3210, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720783f.jpg"} -{"rects": [{"solidity": 0.9966464434147041, "top": 730, "right": 2055, "bottom": 3165, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702419f.jpg"} -{"rects": [{"solidity": 0.9966464980877904, "top": 615, "right": 2745, "bottom": 2050, "left": 890}, {"solidity": 0.9985694903256253, "top": 2115, "right": 2720, "bottom": 3530, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704308f.jpg"} -{"rects": [{"solidity": 0.9966465696398917, "top": 385, "right": 3275, "bottom": 2010, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704764f.jpg"} -{"rects": [{"solidity": 0.9966467790414036, "top": 2310, "right": 3155, "bottom": 3935, "left": 740}, {"solidity": 0.9954562101162523, "top": 4110, "right": 3135, "bottom": 5730, "left": 720}, {"solidity": 0.998796259548745, "top": 440, "right": 3165, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731885f.jpg"} -{"rects": [{"solidity": 0.9966469421709293, "top": 805, "right": 3910, "bottom": 3235, "left": 2275}, {"solidity": 0.9956736415330413, "top": 800, "right": 2030, "bottom": 3230, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728486f.jpg"} -{"rects": [{"solidity": 0.9966469650363164, "top": 835, "right": 2040, "bottom": 3265, "left": 425}, {"solidity": 0.9921556509026944, "top": 850, "right": 4115, "bottom": 2115, "left": 3260}, {"solidity": 0.9927879414380845, "top": 965, "right": 5650, "bottom": 1830, "left": 4420}, {"solidity": 0.9955393497417199, "top": 2215, "right": 4090, "bottom": 3455, "left": 3245}, {"solidity": 0.996170719012566, "top": 2215, "right": 3070, "bottom": 3440, "left": 2235}, {"solidity": 0.9947100484186157, "top": 850, "right": 3070, "bottom": 2090, "left": 2245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712960f.jpg"} -{"rects": [{"solidity": 0.996647087952901, "top": 405, "right": 3145, "bottom": 1970, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712712f.jpg"} -{"rects": [{"solidity": 0.9966471461831293, "top": 400, "right": 3185, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718660f.jpg"} -{"rects": [{"solidity": 0.9966471965936167, "top": 575, "right": 2460, "bottom": 2655, "left": 970}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517039.jpg"} -{"rects": [{"solidity": 0.9966474047953051, "top": 405, "right": 3070, "bottom": 2030, "left": 660}, {"solidity": 0.9959584929798603, "top": 2270, "right": 3085, "bottom": 3920, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707956f.jpg"} -{"rects": [{"solidity": 0.9966474423589756, "top": 830, "right": 3920, "bottom": 3255, "left": 2270}, {"solidity": 0.9960428462028946, "top": 845, "right": 5775, "bottom": 3270, "left": 4130}, {"solidity": 0.9966011316649936, "top": 830, "right": 2040, "bottom": 3240, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730249f.jpg"} -{"rects": [{"solidity": 0.9966474776789254, "top": 1920, "right": 3215, "bottom": 3565, "left": 780}, {"solidity": 0.9992694885462822, "top": 240, "right": 3210, "bottom": 1865, "left": 785}, {"solidity": 0.9961949657451233, "top": 3585, "right": 2820, "bottom": 6010, "left": 1165}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702266f.jpg"} -{"rects": [{"solidity": 0.9966476657579275, "top": 765, "right": 3905, "bottom": 3170, "left": 2295}, {"solidity": 0.9967661437335381, "top": 770, "right": 2030, "bottom": 3170, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724372f.jpg"} -{"rects": [{"solidity": 0.9966477035945844, "top": 935, "right": 3485, "bottom": 4980, "left": 280}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715665f.jpg"} -{"rects": [{"solidity": 0.9966477697602628, "top": 400, "right": 3245, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726105f.jpg"} -{"rects": [{"solidity": 0.996647846426843, "top": 2045, "right": 3500, "bottom": 3675, "left": 1090}, {"solidity": 0.9968604263279416, "top": 380, "right": 3470, "bottom": 2000, "left": 1080}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704527f.jpg"} -{"rects": [{"solidity": 0.9966482054232899, "top": 2235, "right": 2745, "bottom": 3670, "left": 905}, {"solidity": 0.9954483563509045, "top": 720, "right": 5035, "bottom": 2150, "left": 3180}, {"solidity": 0.9956185285019445, "top": 2300, "right": 5040, "bottom": 3670, "left": 3185}, {"solidity": 0.9951698200665796, "top": 750, "right": 2735, "bottom": 2045, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734854f.jpg"} -{"rects": [{"solidity": 0.9966482541788655, "top": 965, "right": 3555, "bottom": 5000, "left": 310}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720743f.jpg"} -{"rects": [{"solidity": 0.9966483992305201, "top": 690, "right": 2035, "bottom": 3085, "left": 435}, {"solidity": 0.9948932234572379, "top": 695, "right": 3850, "bottom": 3075, "left": 2260}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711147f.jpg"} -{"rects": [{"solidity": 0.9966485107916057, "top": 480, "right": 5010, "bottom": 3755, "left": 950}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724862f.jpg"} -{"rects": [{"solidity": 0.996648537219388, "top": 390, "right": 3095, "bottom": 2005, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728420f.jpg"} -{"rects": [{"solidity": 0.9966490596350628, "top": 535, "right": 3510, "bottom": 2610, "left": 905}], "shape": {"h": 2975, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/705578f.jpg"} -{"rects": [{"solidity": 0.9966492030888432, "top": 400, "right": 3245, "bottom": 2015, "left": 835}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710123f.jpg"} -{"rects": [{"solidity": 0.9966492444628441, "top": 420, "right": 3150, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715463f.jpg"} -{"rects": [{"solidity": 0.996649275285161, "top": 730, "right": 2080, "bottom": 3115, "left": 490}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714094f.jpg"} -{"rects": [{"solidity": 0.9966493468654397, "top": 420, "right": 3085, "bottom": 2045, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700122f.jpg"} -{"rects": [{"solidity": 0.9966493768988723, "top": 2075, "right": 3035, "bottom": 3715, "left": 610}, {"solidity": 0.9971769043892416, "top": 375, "right": 5600, "bottom": 2005, "left": 3180}, {"solidity": 0.9971740913518224, "top": 395, "right": 3010, "bottom": 2030, "left": 600}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701557f.jpg"} -{"rects": [{"solidity": 0.9966493845448453, "top": 795, "right": 2040, "bottom": 3225, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723972f.jpg"} -{"rects": [{"solidity": 0.9966495226427847, "top": 4135, "right": 3320, "bottom": 5945, "left": 680}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719594f.jpg"} -{"rects": [{"solidity": 0.9966495520162597, "top": 485, "right": 5740, "bottom": 4185, "left": 1090}], "shape": {"h": 4430, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708851f.jpg"} -{"rects": [{"solidity": 0.9966495691620098, "top": 400, "right": 3095, "bottom": 2025, "left": 655}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728952f.jpg"} -{"rects": [{"solidity": 0.9966496781660541, "top": 3210, "right": 1870, "bottom": 5030, "left": 495}, {"solidity": 0.9971442824564262, "top": 820, "right": 3430, "bottom": 2640, "left": 2065}, {"solidity": 0.9965163944939537, "top": 3225, "right": 3410, "bottom": 5040, "left": 2050}, {"solidity": 0.9950373863910458, "top": 845, "right": 1890, "bottom": 2670, "left": 540}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707057f.jpg"} -{"rects": [{"solidity": 0.9966496870814098, "top": 420, "right": 3205, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704647f.jpg"} -{"rects": [{"solidity": 0.9966497936743778, "top": 480, "right": 3250, "bottom": 2115, "left": 820}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713837f.jpg"} -{"rects": [{"solidity": 0.9966500903259473, "top": 565, "right": 3240, "bottom": 2595, "left": 410}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712125f.jpg"} -{"rects": [{"solidity": 0.9966504581357037, "top": 585, "right": 4950, "bottom": 1995, "left": 3155}, {"solidity": 0.9947365273042647, "top": 2200, "right": 2830, "bottom": 3595, "left": 1005}, {"solidity": 0.9957285695510196, "top": 2200, "right": 4945, "bottom": 3595, "left": 3150}, {"solidity": 0.9943330808978461, "top": 585, "right": 2805, "bottom": 1995, "left": 1035}], "shape": {"h": 3855, "w": 6035}, "file": "/usr/local/google/home/danvk/milstein/728091f.jpg"} -{"rects": [{"solidity": 0.9966505615043092, "top": 810, "right": 3925, "bottom": 3215, "left": 2320}, {"solidity": 0.9964229527200463, "top": 825, "right": 2060, "bottom": 3215, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713069f.jpg"} -{"rects": [{"solidity": 0.9966506017784879, "top": 840, "right": 2055, "bottom": 3235, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712351f.jpg"} -{"rects": [{"solidity": 0.99665064990274, "top": 560, "right": 3015, "bottom": 2190, "left": 600}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704539f.jpg"} -{"rects": [{"solidity": 0.9966506841900832, "top": 795, "right": 2005, "bottom": 3235, "left": 365}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703855f.jpg"} -{"rects": [{"solidity": 0.996651065477444, "top": 495, "right": 3210, "bottom": 2065, "left": 850}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722354f.jpg"} -{"rects": [{"solidity": 0.9966514275910929, "top": 400, "right": 3195, "bottom": 2040, "left": 760}, {"solidity": 0.9964769240122747, "top": 2280, "right": 3200, "bottom": 3905, "left": 765}, {"solidity": 0.9960726065114952, "top": 4145, "right": 3200, "bottom": 5750, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733933f.jpg"} -{"rects": [{"solidity": 0.9966516736774272, "top": 4065, "right": 3065, "bottom": 5675, "left": 645}, {"solidity": 0.9968937085323182, "top": 2205, "right": 3065, "bottom": 3805, "left": 655}, {"solidity": 0.9947446616561526, "top": 385, "right": 3040, "bottom": 1965, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729257f.jpg"} -{"rects": [{"solidity": 0.9966516744949276, "top": 765, "right": 2025, "bottom": 3165, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712603f.jpg"} -{"rects": [{"solidity": 0.9966519278527763, "top": 485, "right": 5085, "bottom": 3655, "left": 1100}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720837f.jpg"} -{"rects": [{"solidity": 0.9966520087947232, "top": 140, "right": 1740, "bottom": 2075, "left": 555}, {"solidity": 0.9995722156945506, "top": 2075, "right": 3235, "bottom": 4020, "left": 2100}, {"solidity": 0.9955204716747563, "top": 2105, "right": 1725, "bottom": 4020, "left": 560}, {"solidity": 0.995200498161268, "top": 150, "right": 3245, "bottom": 2025, "left": 2095}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716667f.jpg"} -{"rects": [{"solidity": 0.9966521991822529, "top": 795, "right": 2100, "bottom": 3155, "left": 525}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721016f.jpg"} -{"rects": [{"solidity": 0.9966522056947106, "top": 420, "right": 2910, "bottom": 1895, "left": 930}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715227f.jpg"} -{"rects": [{"solidity": 0.9966523194643712, "top": 790, "right": 2015, "bottom": 3195, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713079f.jpg"} -{"rects": [{"solidity": 0.9966525734651804, "top": 910, "right": 3435, "bottom": 4820, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731403f.jpg"} -{"rects": [{"solidity": 0.9966526042476241, "top": 620, "right": 2825, "bottom": 3490, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717178f.jpg"} -{"rects": [{"solidity": 0.9966526179024139, "top": 445, "right": 3180, "bottom": 2075, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705623f.jpg"} -{"rects": [{"solidity": 0.9966526609751277, "top": 3925, "right": 3215, "bottom": 5560, "left": 790}, {"solidity": 0.9964573299757759, "top": 455, "right": 3205, "bottom": 2090, "left": 775}, {"solidity": 0.9979201905208189, "top": 2195, "right": 3200, "bottom": 3815, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733194f.jpg"} -{"rects": [{"solidity": 0.9966527113369914, "top": 795, "right": 2010, "bottom": 3185, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724847f.jpg"} -{"rects": [{"solidity": 0.9966527714856545, "top": 725, "right": 2030, "bottom": 3130, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719691f.jpg"} -{"rects": [{"solidity": 0.9966529631026745, "top": 750, "right": 2025, "bottom": 3180, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715373f.jpg"} -{"rects": [{"solidity": 0.9966529788488245, "top": 850, "right": 4355, "bottom": 3595, "left": 2500}, {"solidity": 0.9967302740377717, "top": 830, "right": 6530, "bottom": 3570, "left": 4700}, {"solidity": 0.9968583557886815, "top": 855, "right": 2165, "bottom": 3590, "left": 335}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/708365f.jpg"} -{"rects": [{"solidity": 0.9966533503220512, "top": 2090, "right": 3260, "bottom": 3730, "left": 835}, {"solidity": 0.9968593125704334, "top": 405, "right": 3235, "bottom": 2040, "left": 810}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705534f.jpg"} -{"rects": [{"solidity": 0.9966533559042275, "top": 910, "right": 2025, "bottom": 3330, "left": 415}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729675f.jpg"} -{"rects": [{"solidity": 0.9966535586864241, "top": 755, "right": 3865, "bottom": 3155, "left": 2250}, {"solidity": 0.9954612237213258, "top": 760, "right": 2020, "bottom": 3135, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718076f.jpg"} -{"rects": [{"solidity": 0.9966535761495913, "top": 475, "right": 3060, "bottom": 2105, "left": 645}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706546f.jpg"} -{"rects": [{"solidity": 0.9966537595574487, "top": 325, "right": 5060, "bottom": 3580, "left": 975}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706730f.jpg"} -{"rects": [{"solidity": 0.9966537633015339, "top": 870, "right": 3865, "bottom": 3295, "left": 2260}, {"solidity": 0.9965447167709873, "top": 865, "right": 2025, "bottom": 3280, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730447f.jpg"} -{"rects": [{"solidity": 0.9966537917319974, "top": 605, "right": 3295, "bottom": 2245, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701408f.jpg"} -{"rects": [{"solidity": 0.9966538099687365, "top": 320, "right": 3130, "bottom": 1950, "left": 735}, {"solidity": 0.9968598556828518, "top": 2190, "right": 3115, "bottom": 3820, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718765f.jpg"} -{"rects": [{"solidity": 0.9966539949495056, "top": 645, "right": 5815, "bottom": 3675, "left": 3825}, {"solidity": 0.9983100514203772, "top": 765, "right": 3710, "bottom": 3170, "left": 2115}, {"solidity": 0.9957857804714781, "top": 770, "right": 2015, "bottom": 3170, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721804f.jpg"} -{"rects": [{"solidity": 0.9966540953486123, "top": 475, "right": 3395, "bottom": 2100, "left": 975}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700287f.jpg"} -{"rects": [{"solidity": 0.9966541048850068, "top": 445, "right": 3235, "bottom": 2080, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702299f.jpg"} -{"rects": [{"solidity": 0.9966543021310641, "top": 490, "right": 3145, "bottom": 2080, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710653f.jpg"} -{"rects": [{"solidity": 0.9966543770571276, "top": 395, "right": 3290, "bottom": 2030, "left": 860}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704626f.jpg"} -{"rects": [{"solidity": 0.9966543808642359, "top": 2245, "right": 3100, "bottom": 3855, "left": 695}, {"solidity": 0.9964496051398741, "top": 605, "right": 3090, "bottom": 2185, "left": 700}, {"solidity": 0.9893721544451438, "top": 3905, "right": 3100, "bottom": 5505, "left": 705}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717906f.jpg"} -{"rects": [{"solidity": 0.996654407928231, "top": 2055, "right": 3110, "bottom": 3710, "left": 670}, {"solidity": 0.9978695895855094, "top": 395, "right": 3060, "bottom": 2030, "left": 635}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707119f.jpg"} -{"rects": [{"solidity": 0.996654743035151, "top": 300, "right": 3420, "bottom": 2750, "left": 400}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508341.jpg"} -{"rects": [{"solidity": 0.996654829910967, "top": 435, "right": 3165, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701746f.jpg"} -{"rects": [{"solidity": 0.9966548565828653, "top": 685, "right": 3915, "bottom": 3145, "left": 2260}, {"solidity": 0.9965696926763736, "top": 720, "right": 5765, "bottom": 3155, "left": 4130}, {"solidity": 0.9965406378600823, "top": 705, "right": 2025, "bottom": 3130, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734162f.jpg"} -{"rects": [{"solidity": 0.9966549284481818, "top": 2175, "right": 3060, "bottom": 3805, "left": 635}, {"solidity": 0.9983836731514478, "top": 360, "right": 3050, "bottom": 1965, "left": 635}, {"solidity": 0.9958962697222468, "top": 4040, "right": 3020, "bottom": 5665, "left": 615}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709329f.jpg"} -{"rects": [{"solidity": 0.9966549504490505, "top": 2220, "right": 3215, "bottom": 3850, "left": 795}, {"solidity": 0.996319840483678, "top": 4070, "right": 3210, "bottom": 5705, "left": 790}, {"solidity": 0.9983618557465649, "top": 370, "right": 3200, "bottom": 1990, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730533f.jpg"} -{"rects": [{"solidity": 0.996654980416325, "top": 785, "right": 3475, "bottom": 2845, "left": 255}, {"solidity": 0.9977687587385428, "top": 470, "right": 5675, "bottom": 3675, "left": 3645}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733104f.jpg"} -{"rects": [{"solidity": 0.9966549897746554, "top": 855, "right": 2040, "bottom": 3275, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729647f.jpg"} -{"rects": [{"solidity": 0.9966550972637017, "top": 775, "right": 3810, "bottom": 3190, "left": 2185}, {"solidity": 0.9972091901108825, "top": 785, "right": 1960, "bottom": 3190, "left": 350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718818f.jpg"} -{"rects": [{"solidity": 0.9966555136710116, "top": 400, "right": 3210, "bottom": 3800, "left": 545}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722709f.jpg"} -{"rects": [{"solidity": 0.9966555511325446, "top": 320, "right": 3150, "bottom": 1940, "left": 765}, {"solidity": 0.9974871990929083, "top": 2185, "right": 3145, "bottom": 3810, "left": 770}, {"solidity": 0.9971422009318197, "top": 4060, "right": 3125, "bottom": 5675, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720248f.jpg"} -{"rects": [{"solidity": 0.9966560754368883, "top": 420, "right": 3175, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729473f.jpg"} -{"rects": [{"solidity": 0.9966561400827394, "top": 485, "right": 3270, "bottom": 2510, "left": 260}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713430f.jpg"} -{"rects": [{"solidity": 0.9966561534500515, "top": 375, "right": 2995, "bottom": 2020, "left": 580}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710047f.jpg"} -{"rects": [{"solidity": 0.9966563309145542, "top": 810, "right": 2015, "bottom": 3240, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718703f.jpg"} -{"rects": [{"solidity": 0.9966563321493789, "top": 590, "right": 3520, "bottom": 2435, "left": 780}], "shape": {"h": 4415, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/702215f.jpg"} -{"rects": [{"solidity": 0.9966563922862334, "top": 475, "right": 5060, "bottom": 3775, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718026f.jpg"} -{"rects": [{"solidity": 0.9966564268391269, "top": 2230, "right": 3175, "bottom": 3845, "left": 760}, {"solidity": 0.9971288633676744, "top": 390, "right": 3180, "bottom": 2000, "left": 770}, {"solidity": 0.9951947502810711, "top": 4060, "right": 3160, "bottom": 5675, "left": 755}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730348f.jpg"} -{"rects": [{"solidity": 0.9966564627814892, "top": 850, "right": 3850, "bottom": 3260, "left": 2215}, {"solidity": 0.9972655606085582, "top": 855, "right": 2010, "bottom": 3260, "left": 385}, {"solidity": 0.9990254677754677, "top": 865, "right": 5680, "bottom": 3270, "left": 4070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710402f.jpg"} -{"rects": [{"solidity": 0.9966566908492455, "top": 360, "right": 3785, "bottom": 2800, "left": 795}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509327.jpg"} -{"rects": [{"solidity": 0.9966567039688607, "top": 2600, "right": 3330, "bottom": 4565, "left": 520}, {"solidity": 0.995153228291856, "top": 405, "right": 3305, "bottom": 2350, "left": 575}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705758f.jpg"} -{"rects": [{"solidity": 0.9966567571987954, "top": 650, "right": 5290, "bottom": 2095, "left": 3475}, {"solidity": 0.9963110170845416, "top": 665, "right": 2680, "bottom": 2105, "left": 870}, {"solidity": 0.9955456343139054, "top": 2170, "right": 2695, "bottom": 3530, "left": 870}, {"solidity": 0.9961855834615959, "top": 2160, "right": 5290, "bottom": 3510, "left": 3470}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723424f.jpg"} -{"rects": [{"solidity": 0.9966569651618583, "top": 325, "right": 2970, "bottom": 1940, "left": 910}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711041f.jpg"} -{"rects": [{"solidity": 0.9966569658566629, "top": 780, "right": 4135, "bottom": 3220, "left": 2155}, {"solidity": 0.9951472116538285, "top": 1045, "right": 1940, "bottom": 2930, "left": 435}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721533f.jpg"} -{"rects": [{"solidity": 0.9966569823997095, "top": 805, "right": 2005, "bottom": 3215, "left": 385}, {"solidity": 0.9962779236779821, "top": 810, "right": 3800, "bottom": 3220, "left": 2180}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712588f.jpg"} -{"rects": [{"solidity": 0.996657621821742, "top": 780, "right": 3850, "bottom": 3205, "left": 2240}, {"solidity": 0.997733221618181, "top": 790, "right": 2010, "bottom": 3210, "left": 405}, {"solidity": 0.9960848979591836, "top": 795, "right": 5705, "bottom": 3185, "left": 4080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733543f.jpg"} -{"rects": [{"solidity": 0.9966577243351915, "top": 320, "right": 3220, "bottom": 1975, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700124f.jpg"} -{"rects": [{"solidity": 0.9966577731419795, "top": 720, "right": 2070, "bottom": 3150, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706598f.jpg"} -{"rects": [{"solidity": 0.9966578228839318, "top": 790, "right": 3895, "bottom": 3210, "left": 2275}, {"solidity": 0.9988519242465143, "top": 800, "right": 2045, "bottom": 3210, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733776f.jpg"} -{"rects": [{"solidity": 0.996657906577892, "top": 775, "right": 2035, "bottom": 3180, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719208f.jpg"} -{"rects": [{"solidity": 0.9966579090328586, "top": 805, "right": 5745, "bottom": 3235, "left": 4105}, {"solidity": 0.9921626425621011, "top": 800, "right": 3905, "bottom": 3220, "left": 2250}, {"solidity": 0.997498420477032, "top": 800, "right": 2030, "bottom": 3220, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705554f.jpg"} -{"rects": [{"solidity": 0.9966580356448927, "top": 485, "right": 3910, "bottom": 2575, "left": 2435}, {"solidity": 0.9959987209025836, "top": 470, "right": 2155, "bottom": 2555, "left": 680}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716151f.jpg"} -{"rects": [{"solidity": 0.9966580877470502, "top": 295, "right": 3450, "bottom": 2820, "left": 365}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509959.jpg"} -{"rects": [{"solidity": 0.9966581436633899, "top": 435, "right": 3090, "bottom": 2045, "left": 710}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719865f.jpg"} -{"rects": [{"solidity": 0.9966581482209553, "top": 2230, "right": 3185, "bottom": 3865, "left": 735}, {"solidity": 0.9961275081009465, "top": 405, "right": 3195, "bottom": 2040, "left": 750}, {"solidity": 0.9953440512825429, "top": 4045, "right": 3175, "bottom": 5680, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732132f.jpg"} -{"rects": [{"solidity": 0.996658152608905, "top": 690, "right": 2285, "bottom": 3120, "left": 645}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706653f.jpg"} -{"rects": [{"solidity": 0.9966582819183817, "top": 565, "right": 3315, "bottom": 2580, "left": 220}, {"solidity": 0.9963495367218451, "top": 2615, "right": 2975, "bottom": 4230, "left": 560}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719515f.jpg"} -{"rects": [{"solidity": 0.9966582883395041, "top": 435, "right": 5075, "bottom": 3695, "left": 1040}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709159f.jpg"} -{"rects": [{"solidity": 0.9966584143322317, "top": 365, "right": 3865, "bottom": 2775, "left": 865}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716305f.jpg"} -{"rects": [{"solidity": 0.9966585227412946, "top": 705, "right": 2725, "bottom": 2120, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728239f.jpg"} -{"rects": [{"solidity": 0.996658546850489, "top": 4045, "right": 3060, "bottom": 5670, "left": 630}, {"solidity": 0.9963880057432952, "top": 320, "right": 3085, "bottom": 1940, "left": 655}, {"solidity": 0.9974000451045459, "top": 2180, "right": 3075, "bottom": 3790, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707718f.jpg"} -{"rects": [{"solidity": 0.9966586285333977, "top": 515, "right": 2790, "bottom": 1985, "left": 900}, {"solidity": 0.9961241777483318, "top": 2170, "right": 2775, "bottom": 3615, "left": 920}, {"solidity": 0.9942605063157833, "top": 605, "right": 5050, "bottom": 1780, "left": 3195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728173f.jpg"} -{"rects": [{"solidity": 0.996658741682756, "top": 855, "right": 5735, "bottom": 3275, "left": 4090}, {"solidity": 0.9926082365364308, "top": 840, "right": 2005, "bottom": 3255, "left": 385}, {"solidity": 0.9959741095276159, "top": 845, "right": 3860, "bottom": 3255, "left": 2250}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701138f.jpg"} -{"rects": [{"solidity": 0.9966588244967214, "top": 3510, "right": 3720, "bottom": 5700, "left": 630}, {"solidity": 0.9955042243326082, "top": 680, "right": 3725, "bottom": 2875, "left": 650}], "shape": {"h": 6865, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710270f.jpg"} -{"rects": [{"solidity": 0.9966590631552268, "top": 760, "right": 5770, "bottom": 3160, "left": 4160}, {"solidity": 0.996299519668352, "top": 730, "right": 3930, "bottom": 3125, "left": 2325}, {"solidity": 0.9990737923355479, "top": 725, "right": 2035, "bottom": 3105, "left": 455}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731690f.jpg"} -{"rects": [{"solidity": 0.9966591250798592, "top": 445, "right": 3480, "bottom": 2375, "left": 755}, {"solidity": 0.995044345444885, "top": 2590, "right": 3105, "bottom": 3950, "left": 1285}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/704933f.jpg"} -{"rects": [{"solidity": 0.9966591342865309, "top": 615, "right": 4995, "bottom": 3670, "left": 1130}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701145f.jpg"} -{"rects": [{"solidity": 0.9966592176974647, "top": 810, "right": 1990, "bottom": 3235, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719175f.jpg"} -{"rects": [{"solidity": 0.9966593487474937, "top": 3850, "right": 3210, "bottom": 5490, "left": 770}, {"solidity": 0.9951695507100179, "top": 2090, "right": 3200, "bottom": 3715, "left": 785}, {"solidity": 0.9960847603552524, "top": 330, "right": 3210, "bottom": 1925, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731558f.jpg"} -{"rects": [{"solidity": 0.9966593817296339, "top": 880, "right": 5745, "bottom": 3310, "left": 4110}, {"solidity": 0.9964722114624316, "top": 850, "right": 1995, "bottom": 3285, "left": 370}, {"solidity": 0.9961615604954727, "top": 865, "right": 3870, "bottom": 3290, "left": 2240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719532f.jpg"} -{"rects": [{"solidity": 0.9966595030483252, "top": 710, "right": 2020, "bottom": 3125, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704144f.jpg"} -{"rects": [{"solidity": 0.9966595363396394, "top": 2295, "right": 3315, "bottom": 3895, "left": 940}, {"solidity": 0.9948498114633011, "top": 435, "right": 3325, "bottom": 2020, "left": 960}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727847f.jpg"} -{"rects": [{"solidity": 0.9966596692496638, "top": 1090, "right": 3560, "bottom": 5120, "left": 290}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722198f.jpg"} -{"rects": [{"solidity": 0.9966597531955841, "top": 380, "right": 2675, "bottom": 3575, "left": 165}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508731.jpg"} -{"rects": [{"solidity": 0.9966598514139963, "top": 2415, "right": 3535, "bottom": 4255, "left": 820}, {"solidity": 0.9963525604416524, "top": 4520, "right": 3530, "bottom": 6360, "left": 825}, {"solidity": 0.997237911025145, "top": 305, "right": 3525, "bottom": 2130, "left": 845}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710256f.jpg"} -{"rects": [{"solidity": 0.9966598642151424, "top": 595, "right": 3140, "bottom": 3930, "left": 850}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715260f.jpg"} -{"rects": [{"solidity": 0.9966599127739636, "top": 745, "right": 3895, "bottom": 3155, "left": 2280}, {"solidity": 0.9965431195891018, "top": 775, "right": 1990, "bottom": 3150, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707580f.jpg"} -{"rects": [{"solidity": 0.9966599154319014, "top": 450, "right": 2915, "bottom": 2070, "left": 500}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705654f.jpg"} -{"rects": [{"solidity": 0.9966599795426162, "top": 440, "right": 5140, "bottom": 3690, "left": 1125}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708499f.jpg"} -{"rects": [{"solidity": 0.9966601216601216, "top": 770, "right": 3915, "bottom": 3195, "left": 2290}, {"solidity": 0.9963027970564081, "top": 775, "right": 2070, "bottom": 3195, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734172f.jpg"} -{"rects": [{"solidity": 0.9966602634123068, "top": 2290, "right": 3085, "bottom": 3950, "left": 630}, {"solidity": 0.9989582301416615, "top": 430, "right": 3065, "bottom": 2050, "left": 635}, {"solidity": 0.9962276003756374, "top": 4135, "right": 3075, "bottom": 5765, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729082f.jpg"} -{"rects": [{"solidity": 0.9966606327153434, "top": 845, "right": 2035, "bottom": 3255, "left": 425}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712792f.jpg"} -{"rects": [{"solidity": 0.9966607770987664, "top": 2390, "right": 3200, "bottom": 3995, "left": 780}, {"solidity": 0.9957655848643292, "top": 435, "right": 3195, "bottom": 2060, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715650f.jpg"} -{"rects": [{"solidity": 0.9966608766596924, "top": 390, "right": 3115, "bottom": 1990, "left": 720}, {"solidity": 0.9941391073004333, "top": 2270, "right": 3110, "bottom": 3880, "left": 720}, {"solidity": 0.9947659356797518, "top": 4165, "right": 3105, "bottom": 5780, "left": 715}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718380f.jpg"} -{"rects": [{"solidity": 0.9966609793822653, "top": 2215, "right": 3090, "bottom": 3845, "left": 665}, {"solidity": 0.9958953194484436, "top": 4070, "right": 3085, "bottom": 5705, "left": 650}, {"solidity": 0.996710139050584, "top": 390, "right": 3085, "bottom": 1990, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723276f.jpg"} -{"rects": [{"solidity": 0.9966613446410219, "top": 460, "right": 3195, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/712783f.jpg"} -{"rects": [{"solidity": 0.9966613610776816, "top": 2450, "right": 3155, "bottom": 4065, "left": 735}, {"solidity": 0.9971261672851994, "top": 640, "right": 3145, "bottom": 2215, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710702f.jpg"} -{"rects": [{"solidity": 0.9966613953737704, "top": 650, "right": 5355, "bottom": 3585, "left": 1295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716885f.jpg"} -{"rects": [{"solidity": 0.9966617151942635, "top": 515, "right": 3055, "bottom": 2165, "left": 615}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702711f.jpg"} -{"rects": [{"solidity": 0.9966619063759516, "top": 455, "right": 3050, "bottom": 3705, "left": 635}, {"solidity": 0.9972013270702624, "top": 820, "right": 4990, "bottom": 3225, "left": 3395}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720634f.jpg"} -{"rects": [{"solidity": 0.996661908852474, "top": 825, "right": 2150, "bottom": 3230, "left": 545}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711098f.jpg"} -{"rects": [{"solidity": 0.9966619149827414, "top": 805, "right": 1965, "bottom": 3215, "left": 350}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715554f.jpg"} -{"rects": [{"solidity": 0.9966621586625615, "top": 850, "right": 2460, "bottom": 3280, "left": 825}, {"solidity": 0.9955460926502512, "top": 1250, "right": 5480, "bottom": 2885, "left": 3060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717744f.jpg"} -{"rects": [{"solidity": 0.9966622431334701, "top": 415, "right": 3055, "bottom": 1995, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729508f.jpg"} -{"rects": [{"solidity": 0.9966623628147192, "top": 410, "right": 3210, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704509f.jpg"} -{"rects": [{"solidity": 0.9966626435811617, "top": 860, "right": 3925, "bottom": 3285, "left": 2290}, {"solidity": 0.9968444294128533, "top": 850, "right": 2070, "bottom": 3280, "left": 435}, {"solidity": 0.9964879238114895, "top": 865, "right": 5750, "bottom": 3290, "left": 4135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718581f.jpg"} -{"rects": [{"solidity": 0.9966628662200074, "top": 800, "right": 2045, "bottom": 3235, "left": 415}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701771f.jpg"} -{"rects": [{"solidity": 0.9966629161765458, "top": 670, "right": 4295, "bottom": 2300, "left": 1875}, {"solidity": 0.9979922854698924, "top": 670, "right": 1820, "bottom": 3080, "left": 200}, {"solidity": 0.9995387921588125, "top": 675, "right": 5945, "bottom": 3070, "left": 4340}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710345f.jpg"} -{"rects": [{"solidity": 0.9966629732584285, "top": 810, "right": 2015, "bottom": 3230, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706134f.jpg"} -{"rects": [{"solidity": 0.9966630025125628, "top": 780, "right": 2065, "bottom": 3180, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712569f.jpg"} -{"rects": [{"solidity": 0.9966631688059071, "top": 2295, "right": 3215, "bottom": 3925, "left": 785}, {"solidity": 0.996345421056222, "top": 455, "right": 3195, "bottom": 2070, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710548f.jpg"} -{"rects": [{"solidity": 0.9966633529857577, "top": 785, "right": 2015, "bottom": 3185, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716623f.jpg"} -{"rects": [{"solidity": 0.9966634446481845, "top": 1050, "right": 4235, "bottom": 2680, "left": 1810}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719796f.jpg"} -{"rects": [{"solidity": 0.9966634513512231, "top": 695, "right": 3925, "bottom": 3135, "left": 2280}, {"solidity": 0.9969198916210827, "top": 685, "right": 2050, "bottom": 3105, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734177f.jpg"} -{"rects": [{"solidity": 0.9966634626350174, "top": 350, "right": 3050, "bottom": 1965, "left": 645}, {"solidity": 0.9957577592634194, "top": 2195, "right": 3060, "bottom": 3810, "left": 645}, {"solidity": 0.9976492051763259, "top": 4050, "right": 3060, "bottom": 5650, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729740f.jpg"} -{"rects": [{"solidity": 0.9966635712390555, "top": 800, "right": 2380, "bottom": 3175, "left": 770}, {"solidity": 0.9980764534485008, "top": 520, "right": 5135, "bottom": 2115, "left": 2775}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714960f.jpg"} -{"rects": [{"solidity": 0.9966640851150271, "top": 2275, "right": 3240, "bottom": 3915, "left": 810}, {"solidity": 0.996508254383938, "top": 400, "right": 3230, "bottom": 2035, "left": 810}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706183f.jpg"} -{"rects": [{"solidity": 0.9966641022285074, "top": 765, "right": 3885, "bottom": 3205, "left": 2265}, {"solidity": 0.999804414461787, "top": 765, "right": 2055, "bottom": 3185, "left": 435}, {"solidity": 0.9953659393318316, "top": 780, "right": 5715, "bottom": 3205, "left": 4100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718999f.jpg"} -{"rects": [{"solidity": 0.9966641326744954, "top": 660, "right": 2585, "bottom": 2050, "left": 765}, {"solidity": 0.9958881246206757, "top": 2095, "right": 2560, "bottom": 3485, "left": 765}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705744f.jpg"} -{"rects": [{"solidity": 0.9966645053693721, "top": 400, "right": 3220, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/705058f.jpg"} -{"rects": [{"solidity": 0.9966647760407097, "top": 1160, "right": 3900, "bottom": 5580, "left": 340}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711290f.jpg"} -{"rects": [{"solidity": 0.9966648784555027, "top": 815, "right": 3885, "bottom": 3230, "left": 2265}, {"solidity": 0.9979970441817051, "top": 820, "right": 2025, "bottom": 3240, "left": 420}, {"solidity": 0.9971590816641989, "top": 820, "right": 5730, "bottom": 3225, "left": 4120}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720702f.jpg"} -{"rects": [{"solidity": 0.9966649522386225, "top": 480, "right": 3040, "bottom": 2100, "left": 625}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706548f.jpg"} -{"rects": [{"solidity": 0.996664981282016, "top": 2095, "right": 2045, "bottom": 3485, "left": 265}, {"solidity": 0.9966750429026722, "top": 490, "right": 2025, "bottom": 1880, "left": 250}, {"solidity": 0.9946946219280458, "top": 1220, "right": 5815, "bottom": 2325, "left": 4015}, {"solidity": 0.9966680603351237, "top": 2205, "right": 3950, "bottom": 3295, "left": 2145}, {"solidity": 0.9987862040468474, "top": 580, "right": 3910, "bottom": 1665, "left": 2110}], "shape": {"h": 3880, "w": 6075}, "file": "/usr/local/google/home/danvk/milstein/728163f.jpg"} -{"rects": [{"solidity": 0.9966650450420225, "top": 375, "right": 3070, "bottom": 1950, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729022f.jpg"} -{"rects": [{"solidity": 0.9966654921682309, "top": 400, "right": 3210, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703991f.jpg"} -{"rects": [{"solidity": 0.9966655081739313, "top": 410, "right": 3090, "bottom": 2005, "left": 680}, {"solidity": 0.9967600815735806, "top": 2225, "right": 3080, "bottom": 3825, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710911f.jpg"} -{"rects": [{"solidity": 0.9966655213195917, "top": 395, "right": 4955, "bottom": 3735, "left": 900}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727308f.jpg"} -{"rects": [{"solidity": 0.9966656132498339, "top": 455, "right": 3285, "bottom": 2080, "left": 870}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706876f.jpg"} -{"rects": [{"solidity": 0.9966656389163485, "top": 815, "right": 2085, "bottom": 3245, "left": 440}, {"solidity": 0.9963480834614428, "top": 795, "right": 4010, "bottom": 3230, "left": 2380}, {"solidity": 0.9942954971251373, "top": 815, "right": 5855, "bottom": 3230, "left": 4225}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707973f.jpg"} -{"rects": [{"solidity": 0.9966657072355123, "top": 805, "right": 2035, "bottom": 3215, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728340f.jpg"} -{"rects": [{"solidity": 0.9966658050330311, "top": 465, "right": 3170, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720281f.jpg"} -{"rects": [{"solidity": 0.9966658766406385, "top": 2280, "right": 3220, "bottom": 3900, "left": 790}, {"solidity": 0.9972426618967516, "top": 435, "right": 3210, "bottom": 2050, "left": 790}, {"solidity": 0.9959896100458283, "top": 4135, "right": 3205, "bottom": 5720, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734576f.jpg"} -{"rects": [{"solidity": 0.9966661460839965, "top": 545, "right": 3135, "bottom": 2185, "left": 705}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701677f.jpg"} -{"rects": [{"solidity": 0.9966663410345333, "top": 700, "right": 3975, "bottom": 1830, "left": 2145}, {"solidity": 0.9947646540757412, "top": 2220, "right": 5075, "bottom": 3355, "left": 3245}, {"solidity": 0.9944400609207846, "top": 2230, "right": 2880, "bottom": 3365, "left": 1060}, {"solidity": 0.999555807812847, "top": 700, "right": 5890, "bottom": 1825, "left": 4075}, {"solidity": 0.9974951902655973, "top": 710, "right": 2050, "bottom": 1820, "left": 230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725854f.jpg"} -{"rects": [{"solidity": 0.9966663471472239, "top": 890, "right": 3265, "bottom": 4645, "left": 430}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721508f.jpg"} -{"rects": [{"solidity": 0.9966663681146439, "top": 660, "right": 2625, "bottom": 3635, "left": 245}], "shape": {"h": 4660, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/1517012.jpg"} -{"rects": [{"solidity": 0.9966664932159072, "top": 4100, "right": 3085, "bottom": 5705, "left": 670}, {"solidity": 0.9961137958620869, "top": 2230, "right": 3095, "bottom": 3835, "left": 680}, {"solidity": 0.9955707771729305, "top": 410, "right": 3085, "bottom": 1985, "left": 690}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/729293f.jpg"} -{"rects": [{"solidity": 0.9966665814402413, "top": 820, "right": 2035, "bottom": 3250, "left": 415}, {"solidity": 0.9964444958803087, "top": 830, "right": 3915, "bottom": 3240, "left": 2285}, {"solidity": 0.9966013461984814, "top": 845, "right": 5720, "bottom": 3235, "left": 4120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733658f.jpg"} -{"rects": [{"solidity": 0.9966668956336006, "top": 440, "right": 3190, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734239f.jpg"} -{"rects": [{"solidity": 0.9966669332267093, "top": 2250, "right": 3125, "bottom": 3875, "left": 700}, {"solidity": 0.9956602139615442, "top": 385, "right": 3130, "bottom": 1990, "left": 715}, {"solidity": 0.998383989060849, "top": 4125, "right": 3100, "bottom": 5730, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729793f.jpg"} -{"rects": [{"solidity": 0.9966672170500298, "top": 765, "right": 4375, "bottom": 3495, "left": 2555}, {"solidity": 0.9980873674197871, "top": 760, "right": 6255, "bottom": 3480, "left": 4445}, {"solidity": 0.9938231303620431, "top": 785, "right": 2490, "bottom": 3515, "left": 660}], "shape": {"h": 4435, "w": 6935}, "file": "/usr/local/google/home/danvk/milstein/708883f.jpg"} -{"rects": [{"solidity": 0.9966672868057916, "top": 420, "right": 3205, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/700155f.jpg"} -{"rects": [{"solidity": 0.9966673487882597, "top": 765, "right": 1905, "bottom": 3155, "left": 285}, {"solidity": 0.9987658790232344, "top": 765, "right": 3735, "bottom": 3145, "left": 2130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704374f.jpg"} -{"rects": [{"solidity": 0.9966674007669188, "top": 2275, "right": 3130, "bottom": 3885, "left": 710}, {"solidity": 0.9956581460015411, "top": 415, "right": 3135, "bottom": 2000, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729703f.jpg"} -{"rects": [{"solidity": 0.9966674058148466, "top": 750, "right": 5655, "bottom": 3175, "left": 4030}, {"solidity": 0.9972411119546432, "top": 745, "right": 3820, "bottom": 3160, "left": 2205}, {"solidity": 0.9970252449560261, "top": 760, "right": 2015, "bottom": 3165, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713085f.jpg"} -{"rects": [{"solidity": 0.9966675958947345, "top": 755, "right": 2065, "bottom": 3185, "left": 435}, {"solidity": 0.9959498838239259, "top": 730, "right": 3925, "bottom": 3170, "left": 2280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713464f.jpg"} -{"rects": [{"solidity": 0.9966677173864097, "top": 495, "right": 3130, "bottom": 1880, "left": 1310}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725749f.jpg"} -{"rects": [{"solidity": 0.9966678476019035, "top": 475, "right": 2945, "bottom": 2120, "left": 520}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705030f.jpg"} -{"rects": [{"solidity": 0.9966681067776861, "top": 415, "right": 3080, "bottom": 2015, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729238f.jpg"} -{"rects": [{"solidity": 0.996668140373809, "top": 400, "right": 3010, "bottom": 2035, "left": 590}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/701444f.jpg"} -{"rects": [{"solidity": 0.9966684356388938, "top": 710, "right": 2685, "bottom": 2130, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726384f.jpg"} -{"rects": [{"solidity": 0.996668468334141, "top": 535, "right": 2895, "bottom": 2000, "left": 1025}, {"solidity": 0.9958883028648476, "top": 2320, "right": 2865, "bottom": 3755, "left": 1010}, {"solidity": 0.9957131835278233, "top": 4130, "right": 2845, "bottom": 5550, "left": 1000}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723554f.jpg"} -{"rects": [{"solidity": 0.9966684817104801, "top": 590, "right": 3260, "bottom": 2225, "left": 850}, {"solidity": 0.9978919571547555, "top": 2610, "right": 2840, "bottom": 5010, "left": 1215}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710410f.jpg"} -{"rects": [{"solidity": 0.9966685537872537, "top": 690, "right": 4990, "bottom": 3350, "left": 1130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700992f.jpg"} -{"rects": [{"solidity": 0.9966686043911819, "top": 680, "right": 2090, "bottom": 3105, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707463f.jpg"} -{"rects": [{"solidity": 0.9966686072837829, "top": 765, "right": 3885, "bottom": 3180, "left": 2275}, {"solidity": 0.9974257380688485, "top": 770, "right": 2010, "bottom": 3185, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734081f.jpg"} -{"rects": [{"solidity": 0.9966686146521525, "top": 800, "right": 1900, "bottom": 3205, "left": 310}, {"solidity": 0.9948475626034492, "top": 1025, "right": 3655, "bottom": 2930, "left": 2170}, {"solidity": 0.9962311894537638, "top": 1130, "right": 5310, "bottom": 2850, "left": 3940}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724565f.jpg"} -{"rects": [{"solidity": 0.9966688506723926, "top": 345, "right": 3200, "bottom": 1980, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707168f.jpg"} -{"rects": [{"solidity": 0.9966688852453693, "top": 870, "right": 2085, "bottom": 3275, "left": 470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716596f.jpg"} -{"rects": [{"solidity": 0.9966691772283399, "top": 415, "right": 3175, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719669f.jpg"} -{"rects": [{"solidity": 0.9966691870101122, "top": 1010, "right": 3615, "bottom": 5105, "left": 335}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/720283f.jpg"} -{"rects": [{"solidity": 0.9966692059323196, "top": 575, "right": 3280, "bottom": 2210, "left": 845}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703085f.jpg"} -{"rects": [{"solidity": 0.9966692300581582, "top": 885, "right": 3450, "bottom": 4880, "left": 245}], "shape": {"h": 6075, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/720322f.jpg"} -{"rects": [{"solidity": 0.9966695277866183, "top": 2040, "right": 3035, "bottom": 3675, "left": 620}, {"solidity": 0.9976199573859037, "top": 305, "right": 3015, "bottom": 1925, "left": 610}, {"solidity": 0.9982112419554495, "top": 310, "right": 5600, "bottom": 1925, "left": 3195}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721125f.jpg"} -{"rects": [{"solidity": 0.9966696903356914, "top": 825, "right": 3770, "bottom": 3245, "left": 2125}, {"solidity": 0.9972557309646639, "top": 805, "right": 1905, "bottom": 3205, "left": 275}, {"solidity": 0.9965106805633547, "top": 860, "right": 5630, "bottom": 3250, "left": 3990}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705804f.jpg"} -{"rects": [{"solidity": 0.9966697466697466, "top": 430, "right": 3130, "bottom": 2055, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700989f.jpg"} -{"rects": [{"solidity": 0.9966697907507786, "top": 2295, "right": 3150, "bottom": 3915, "left": 730}, {"solidity": 0.9945857185801976, "top": 4140, "right": 3140, "bottom": 5770, "left": 710}, {"solidity": 0.9951626257423936, "top": 440, "right": 3160, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734235f.jpg"} -{"rects": [{"solidity": 0.9966698952701499, "top": 835, "right": 3850, "bottom": 3245, "left": 2235}, {"solidity": 0.9970730725923426, "top": 840, "right": 5665, "bottom": 3250, "left": 4055}, {"solidity": 0.9945226917057903, "top": 830, "right": 2045, "bottom": 3245, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719611f.jpg"} -{"rects": [{"solidity": 0.9966700647771468, "top": 710, "right": 3855, "bottom": 3145, "left": 2215}, {"solidity": 0.996608063136789, "top": 725, "right": 5680, "bottom": 3155, "left": 4045}, {"solidity": 0.9980343281314155, "top": 730, "right": 2000, "bottom": 3140, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731726f.jpg"} -{"rects": [{"solidity": 0.9966701017647817, "top": 835, "right": 2030, "bottom": 3255, "left": 395}, {"solidity": 0.995197140985478, "top": 880, "right": 5715, "bottom": 3295, "left": 4080}, {"solidity": 0.9971781534460338, "top": 865, "right": 3870, "bottom": 3270, "left": 2250}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719938f.jpg"} -{"rects": [{"solidity": 0.9966704776957633, "top": 855, "right": 1980, "bottom": 3265, "left": 355}, {"solidity": 0.996758693704699, "top": 880, "right": 3765, "bottom": 3290, "left": 2150}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719367f.jpg"} -{"rects": [{"solidity": 0.9966705250839524, "top": 900, "right": 5720, "bottom": 3335, "left": 4080}, {"solidity": 0.996299176957356, "top": 860, "right": 3895, "bottom": 3295, "left": 2240}, {"solidity": 0.9965931115077478, "top": 835, "right": 2040, "bottom": 3260, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724084f.jpg"} -{"rects": [{"solidity": 0.9966705378104922, "top": 440, "right": 2735, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721078f.jpg"} -{"rects": [{"solidity": 0.9966705671672669, "top": 345, "right": 3010, "bottom": 1980, "left": 600}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704991f.jpg"} -{"rects": [{"solidity": 0.9966705982015521, "top": 1070, "right": 3410, "bottom": 5080, "left": 295}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724043f.jpg"} -{"rects": [{"solidity": 0.9966706316527892, "top": 1015, "right": 3300, "bottom": 4615, "left": 435}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731323f.jpg"} -{"rects": [{"solidity": 0.9966706348687223, "top": 400, "right": 3230, "bottom": 2005, "left": 830}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730383f.jpg"} -{"rects": [{"solidity": 0.9966706362926254, "top": 775, "right": 2050, "bottom": 3190, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715690f.jpg"} -{"rects": [{"solidity": 0.9966707379535873, "top": 810, "right": 2085, "bottom": 3210, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712270f.jpg"} -{"rects": [{"solidity": 0.99667082947788, "top": 440, "right": 3270, "bottom": 2055, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725906f.jpg"} -{"rects": [{"solidity": 0.9966708613813262, "top": 460, "right": 3180, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714311f.jpg"} -{"rects": [{"solidity": 0.9966709231674798, "top": 440, "right": 3245, "bottom": 2070, "left": 835}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702639f.jpg"} -{"rects": [{"solidity": 0.9966709558217032, "top": 740, "right": 2075, "bottom": 3130, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721408f.jpg"} -{"rects": [{"solidity": 0.9966711183331908, "top": 805, "right": 3850, "bottom": 3200, "left": 2250}, {"solidity": 0.9961273231005683, "top": 810, "right": 2055, "bottom": 3185, "left": 470}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717825f.jpg"} -{"rects": [{"solidity": 0.9966712587703841, "top": 2285, "right": 3045, "bottom": 3905, "left": 610}, {"solidity": 0.9972665411157774, "top": 435, "right": 3050, "bottom": 2055, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707476f.jpg"} -{"rects": [{"solidity": 0.9966713429409514, "top": 455, "right": 3605, "bottom": 2265, "left": 880}], "shape": {"h": 6875, "w": 4440}, "file": "/usr/local/google/home/danvk/milstein/703411f.jpg"} -{"rects": [{"solidity": 0.996671464846593, "top": 405, "right": 3140, "bottom": 2025, "left": 715}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/729010f.jpg"} -{"rects": [{"solidity": 0.9966715053873362, "top": 700, "right": 2545, "bottom": 2185, "left": 460}, {"solidity": 0.9944920140337103, "top": 2440, "right": 2530, "bottom": 3920, "left": 445}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716179f.jpg"} -{"rects": [{"solidity": 0.9966716334152524, "top": 445, "right": 3215, "bottom": 2060, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721140f.jpg"} -{"rects": [{"solidity": 0.9966717295953973, "top": 395, "right": 3215, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700062f.jpg"} -{"rects": [{"solidity": 0.9966720090810295, "top": 450, "right": 3165, "bottom": 2065, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701480f.jpg"} -{"rects": [{"solidity": 0.996672100844651, "top": 2295, "right": 3165, "bottom": 3910, "left": 735}, {"solidity": 0.9985895765154741, "top": 440, "right": 3150, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734695f.jpg"} -{"rects": [{"solidity": 0.9966728597593918, "top": 730, "right": 3910, "bottom": 3120, "left": 2310}, {"solidity": 0.9920052655548279, "top": 745, "right": 2085, "bottom": 3130, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714004f.jpg"} -{"rects": [{"solidity": 0.9966728939881043, "top": 815, "right": 2055, "bottom": 3215, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717463f.jpg"} -{"rects": [{"solidity": 0.9966729553952927, "top": 640, "right": 2630, "bottom": 2055, "left": 790}, {"solidity": 0.9950765485368195, "top": 635, "right": 4885, "bottom": 2035, "left": 3060}, {"solidity": 0.9952799560461515, "top": 2245, "right": 2620, "bottom": 3655, "left": 815}, {"solidity": 0.9956082961091308, "top": 2225, "right": 4875, "bottom": 3630, "left": 3085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726362f.jpg"} -{"rects": [{"solidity": 0.9966730015039194, "top": 2140, "right": 2635, "bottom": 3570, "left": 815}, {"solidity": 0.9963415934177755, "top": 650, "right": 2640, "bottom": 2075, "left": 815}, {"solidity": 0.995448877502996, "top": 640, "right": 5285, "bottom": 2075, "left": 3465}, {"solidity": 0.9952011955767542, "top": 2135, "right": 5270, "bottom": 3570, "left": 3450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720081f.jpg"} -{"rects": [{"solidity": 0.9966731047645192, "top": 445, "right": 3205, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700655f.jpg"} -{"rects": [{"solidity": 0.996673177576558, "top": 510, "right": 3125, "bottom": 2115, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711976f.jpg"} -{"rects": [{"solidity": 0.9966734004817998, "top": 615, "right": 3200, "bottom": 2535, "left": 410}, {"solidity": 0.9968146916956857, "top": 2685, "right": 3180, "bottom": 4600, "left": 415}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702774f.jpg"} -{"rects": [{"solidity": 0.9966736824462616, "top": 435, "right": 3095, "bottom": 2045, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729373f.jpg"} -{"rects": [{"solidity": 0.9966738721387275, "top": 450, "right": 3260, "bottom": 2000, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726245f.jpg"} -{"rects": [{"solidity": 0.9966741542897375, "top": 735, "right": 2025, "bottom": 3125, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725179f.jpg"} -{"rects": [{"solidity": 0.9966743945748348, "top": 555, "right": 2420, "bottom": 1575, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704706f.jpg"} -{"rects": [{"solidity": 0.9966746012931385, "top": 400, "right": 3285, "bottom": 2010, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725806f.jpg"} -{"rects": [{"solidity": 0.9966746198404598, "top": 445, "right": 3160, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/708948f.jpg"} -{"rects": [{"solidity": 0.9966749572824373, "top": 430, "right": 3195, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713754f.jpg"} -{"rects": [{"solidity": 0.9966749743610721, "top": 360, "right": 5275, "bottom": 3570, "left": 1240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731424f.jpg"} -{"rects": [{"solidity": 0.9966750492585295, "top": 405, "right": 3170, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720879f.jpg"} -{"rects": [{"solidity": 0.9966751930341007, "top": 2130, "right": 2725, "bottom": 3560, "left": 865}, {"solidity": 0.9957870790740361, "top": 640, "right": 2695, "bottom": 2060, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705530f.jpg"} -{"rects": [{"solidity": 0.9966754538735086, "top": 390, "right": 3235, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727966f.jpg"} -{"rects": [{"solidity": 0.9966756964959481, "top": 335, "right": 3305, "bottom": 2310, "left": 515}, {"solidity": 0.9960873964216647, "top": 2420, "right": 3060, "bottom": 4050, "left": 635}, {"solidity": 0.9958261521661909, "top": 4195, "right": 3040, "bottom": 5805, "left": 630}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/712770f.jpg"} -{"rects": [{"solidity": 0.9966757175974994, "top": 935, "right": 2025, "bottom": 3330, "left": 460}, {"solidity": 0.9945398580227934, "top": 935, "right": 3880, "bottom": 3295, "left": 2295}, {"solidity": 0.9959943790426462, "top": 940, "right": 5665, "bottom": 3310, "left": 4115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707864f.jpg"} -{"rects": [{"solidity": 0.9966757913026374, "top": 1120, "right": 3400, "bottom": 4960, "left": 400}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720997f.jpg"} -{"rects": [{"solidity": 0.996675847658847, "top": 370, "right": 3355, "bottom": 2290, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714102f.jpg"} -{"rects": [{"solidity": 0.9966759083897925, "top": 630, "right": 2710, "bottom": 2050, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702962f.jpg"} -{"rects": [{"solidity": 0.9966759883055802, "top": 1940, "right": 3260, "bottom": 3590, "left": 825}, {"solidity": 0.9956979352019589, "top": 230, "right": 3235, "bottom": 1855, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710649f.jpg"} -{"rects": [{"solidity": 0.9966760100614619, "top": 415, "right": 3090, "bottom": 2050, "left": 670}, {"solidity": 0.9984796032182267, "top": 2295, "right": 3100, "bottom": 3920, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707964f.jpg"} -{"rects": [{"solidity": 0.9966760585325318, "top": 825, "right": 2050, "bottom": 3235, "left": 435}, {"solidity": 0.9969270948377792, "top": 830, "right": 3965, "bottom": 3235, "left": 2350}, {"solidity": 0.9958680104031209, "top": 830, "right": 5855, "bottom": 3245, "left": 4240}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711718f.jpg"} -{"rects": [{"solidity": 0.9966761759437405, "top": 755, "right": 2035, "bottom": 3140, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714473f.jpg"} -{"rects": [{"solidity": 0.9966762982711004, "top": 760, "right": 3835, "bottom": 3185, "left": 2200}, {"solidity": 0.9964999578308172, "top": 770, "right": 1970, "bottom": 3155, "left": 335}, {"solidity": 0.9968818281136198, "top": 795, "right": 5710, "bottom": 3180, "left": 4080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714816f.jpg"} -{"rects": [{"solidity": 0.9966764399142053, "top": 785, "right": 3705, "bottom": 2810, "left": 510}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733009f.jpg"} -{"rects": [{"solidity": 0.9966767915401058, "top": 2130, "right": 3455, "bottom": 4130, "left": 655}, {"solidity": 0.9946434308268262, "top": 375, "right": 3325, "bottom": 1970, "left": 915}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727301f.jpg"} -{"rects": [{"solidity": 0.9966768359119634, "top": 405, "right": 3115, "bottom": 2025, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729816f.jpg"} -{"rects": [{"solidity": 0.9966768422272886, "top": 900, "right": 4515, "bottom": 3615, "left": 2685}, {"solidity": 0.9986591250071879, "top": 920, "right": 2295, "bottom": 3610, "left": 505}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711269f.jpg"} -{"rects": [{"solidity": 0.9966768658487811, "top": 435, "right": 3255, "bottom": 2040, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725163f.jpg"} -{"rects": [{"solidity": 0.9966768766542456, "top": 755, "right": 3790, "bottom": 3150, "left": 2165}, {"solidity": 0.9973977817155608, "top": 775, "right": 5640, "bottom": 3165, "left": 4035}, {"solidity": 0.9959594701761055, "top": 755, "right": 1925, "bottom": 3160, "left": 320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709914f.jpg"} -{"rects": [{"solidity": 0.9966772000383032, "top": 780, "right": 3890, "bottom": 3215, "left": 2260}, {"solidity": 0.9970370037462802, "top": 775, "right": 2065, "bottom": 3205, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711447f.jpg"} -{"rects": [{"solidity": 0.9966773554198424, "top": 430, "right": 3145, "bottom": 2055, "left": 725}, {"solidity": 0.9968183202545344, "top": 2215, "right": 3160, "bottom": 3825, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719609f.jpg"} -{"rects": [{"solidity": 0.9966776035506721, "top": 840, "right": 3880, "bottom": 3275, "left": 2245}, {"solidity": 0.9963801307987887, "top": 810, "right": 2030, "bottom": 3245, "left": 395}, {"solidity": 0.9963702593779064, "top": 875, "right": 5745, "bottom": 3305, "left": 4135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723620f.jpg"} -{"rects": [{"solidity": 0.9966777408637874, "top": 410, "right": 3210, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725851f.jpg"} -{"rects": [{"solidity": 0.9966777514970923, "top": 400, "right": 3235, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725581f.jpg"} -{"rects": [{"solidity": 0.9966778685819913, "top": 405, "right": 3240, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702687f.jpg"} -{"rects": [{"solidity": 0.9966781009704281, "top": 440, "right": 3090, "bottom": 2075, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701551f.jpg"} -{"rects": [{"solidity": 0.9966781732230179, "top": 2255, "right": 3175, "bottom": 3865, "left": 770}, {"solidity": 0.9936529185034736, "top": 405, "right": 3155, "bottom": 2005, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732143f.jpg"} -{"rects": [{"solidity": 0.9966781930292803, "top": 905, "right": 3480, "bottom": 2835, "left": 645}, {"solidity": 0.9968565312485458, "top": 3225, "right": 3450, "bottom": 5130, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727509f.jpg"} -{"rects": [{"solidity": 0.9966782935952452, "top": 455, "right": 2400, "bottom": 1680, "left": 590}], "shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715842f.jpg"} -{"rects": [{"solidity": 0.9966782974583015, "top": 2310, "right": 3185, "bottom": 3925, "left": 765}, {"solidity": 0.9964740329588551, "top": 455, "right": 3150, "bottom": 2065, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733880f.jpg"} -{"rects": [{"solidity": 0.9966784595773855, "top": 430, "right": 3200, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708078f.jpg"} -{"rects": [{"solidity": 0.9966785159933506, "top": 845, "right": 3815, "bottom": 3260, "left": 2190}, {"solidity": 0.99713740147619, "top": 840, "right": 1995, "bottom": 3240, "left": 375}, {"solidity": 0.9962262181617736, "top": 870, "right": 5645, "bottom": 3275, "left": 4020}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713411f.jpg"} -{"rects": [{"solidity": 0.9966785498607134, "top": 740, "right": 2025, "bottom": 3165, "left": 425}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713246f.jpg"} -{"rects": [{"solidity": 0.9966785753236324, "top": 830, "right": 3960, "bottom": 3230, "left": 2365}, {"solidity": 0.9958708994358881, "top": 830, "right": 2140, "bottom": 3225, "left": 545}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707760f.jpg"} -{"rects": [{"solidity": 0.9966786244834678, "top": 2235, "right": 3040, "bottom": 3850, "left": 625}, {"solidity": 0.996368184254552, "top": 400, "right": 3050, "bottom": 2015, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724865f.jpg"} -{"rects": [{"solidity": 0.9966786291855393, "top": 720, "right": 3915, "bottom": 3125, "left": 2290}, {"solidity": 0.9968831270028344, "top": 715, "right": 2035, "bottom": 3115, "left": 420}, {"solidity": 0.9953339298787928, "top": 725, "right": 5770, "bottom": 3125, "left": 4155}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731704f.jpg"} -{"rects": [{"solidity": 0.9966786333553129, "top": 685, "right": 2515, "bottom": 2170, "left": 430}, {"solidity": 0.9972580684706478, "top": 2450, "right": 2515, "bottom": 3930, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716120f.jpg"} -{"rects": [{"solidity": 0.996678656843698, "top": 935, "right": 3800, "bottom": 3345, "left": 2165}, {"solidity": 0.9985910282598556, "top": 950, "right": 5675, "bottom": 3365, "left": 4055}, {"solidity": 0.9985779616372833, "top": 935, "right": 1985, "bottom": 3345, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723226f.jpg"} -{"rects": [{"solidity": 0.9966786665983397, "top": 435, "right": 3200, "bottom": 2065, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706129f.jpg"} -{"rects": [{"solidity": 0.9966787556727823, "top": 590, "right": 2925, "bottom": 2020, "left": 1105}, {"solidity": 0.996916114304023, "top": 585, "right": 5285, "bottom": 1990, "left": 3490}, {"solidity": 0.9957952078557082, "top": 2025, "right": 2890, "bottom": 3420, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704580f.jpg"} -{"rects": [{"solidity": 0.9966787675332448, "top": 4140, "right": 3160, "bottom": 5745, "left": 745}, {"solidity": 0.9959937761035133, "top": 410, "right": 3150, "bottom": 2015, "left": 755}, {"solidity": 0.9976280209788366, "top": 2280, "right": 3155, "bottom": 3875, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729186f.jpg"} -{"rects": [{"solidity": 0.9966788495663251, "top": 995, "right": 3845, "bottom": 3420, "left": 2225}, {"solidity": 0.9965601821539904, "top": 1000, "right": 2020, "bottom": 3400, "left": 405}, {"solidity": 0.9953383647300411, "top": 1040, "right": 5655, "bottom": 3420, "left": 4040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733759f.jpg"} -{"rects": [{"solidity": 0.9966789816889751, "top": 820, "right": 2125, "bottom": 3190, "left": 540}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710417f.jpg"} -{"rects": [{"solidity": 0.9966790507857276, "top": 675, "right": 2525, "bottom": 2160, "left": 435}, {"solidity": 0.995931800707053, "top": 2505, "right": 2520, "bottom": 3990, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716030f.jpg"} -{"rects": [{"solidity": 0.9966791052343386, "top": 2170, "right": 2660, "bottom": 3550, "left": 855}, {"solidity": 0.9958075016683392, "top": 740, "right": 2645, "bottom": 2125, "left": 855}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706483f.jpg"} -{"rects": [{"solidity": 0.9966796875, "top": 870, "right": 5825, "bottom": 3280, "left": 4210}, {"solidity": 0.9976487308713777, "top": 805, "right": 2035, "bottom": 3210, "left": 435}, {"solidity": 0.9956725142364447, "top": 845, "right": 3905, "bottom": 3250, "left": 2300}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718229f.jpg"} -{"rects": [{"solidity": 0.9966797049762882, "top": 885, "right": 3890, "bottom": 3320, "left": 2245}, {"solidity": 0.9963981316511773, "top": 875, "right": 2025, "bottom": 3305, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729288f.jpg"} -{"rects": [{"solidity": 0.9966798439397463, "top": 310, "right": 3235, "bottom": 1935, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707902f.jpg"} -{"rects": [{"solidity": 0.9966798723274576, "top": 420, "right": 3090, "bottom": 2045, "left": 660}, {"solidity": 0.9966749979118344, "top": 2290, "right": 3080, "bottom": 3915, "left": 650}, {"solidity": 0.9954100139863754, "top": 4145, "right": 3070, "bottom": 5775, "left": 645}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726621f.jpg"} -{"rects": [{"solidity": 0.9966799361774139, "top": 845, "right": 2710, "bottom": 2670, "left": 1420}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507631.jpg"} -{"rects": [{"solidity": 0.9966801043395779, "top": 2320, "right": 3115, "bottom": 3980, "left": 680}, {"solidity": 0.9957637436393719, "top": 395, "right": 3120, "bottom": 2060, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710750f.jpg"} -{"rects": [{"solidity": 0.9966801624587805, "top": 810, "right": 3865, "bottom": 3255, "left": 2225}, {"solidity": 0.9965738894648696, "top": 800, "right": 2050, "bottom": 3235, "left": 420}, {"solidity": 0.9969644280924889, "top": 840, "right": 5695, "bottom": 3270, "left": 4070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713037f.jpg"} -{"rects": [{"solidity": 0.9966804034568878, "top": 575, "right": 4855, "bottom": 3575, "left": 1165}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732879f.jpg"} -{"rects": [{"solidity": 0.9966805508473154, "top": 455, "right": 3330, "bottom": 2025, "left": 940}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727678f.jpg"} -{"rects": [{"solidity": 0.996680589936327, "top": 700, "right": 2635, "bottom": 3490, "left": 640}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708294f.jpg"} -{"rects": [{"solidity": 0.9966806272652812, "top": 410, "right": 3145, "bottom": 2005, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724593f.jpg"} -{"rects": [{"solidity": 0.9966806630969349, "top": 2205, "right": 3155, "bottom": 3830, "left": 730}, {"solidity": 0.9970335018695458, "top": 340, "right": 3155, "bottom": 1945, "left": 745}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733739f.jpg"} -{"rects": [{"solidity": 0.9966806728223502, "top": 415, "right": 3115, "bottom": 2010, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728389f.jpg"} -{"rects": [{"solidity": 0.9966806822689409, "top": 730, "right": 3885, "bottom": 3160, "left": 2240}, {"solidity": 0.9985677474631867, "top": 735, "right": 1975, "bottom": 3155, "left": 350}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714380f.jpg"} -{"rects": [{"solidity": 0.9966807352936286, "top": 415, "right": 3190, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711054f.jpg"} -{"rects": [{"solidity": 0.9966808089189877, "top": 2165, "right": 3175, "bottom": 3760, "left": 815}, {"solidity": 0.9965214398742185, "top": 4015, "right": 3165, "bottom": 5585, "left": 785}, {"solidity": 0.9956836170667918, "top": 325, "right": 3175, "bottom": 1890, "left": 840}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/730710f.jpg"} -{"rects": [{"solidity": 0.9966808962187733, "top": 665, "right": 3415, "bottom": 2720, "left": 380}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711165f.jpg"} -{"rects": [{"solidity": 0.9966809532038008, "top": 1055, "right": 3560, "bottom": 5105, "left": 265}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714389f.jpg"} -{"rects": [{"solidity": 0.9966810066118236, "top": 1115, "right": 3595, "bottom": 5230, "left": 310}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732275f.jpg"} -{"rects": [{"solidity": 0.9966810126462414, "top": 1050, "right": 3560, "bottom": 5115, "left": 295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709057f.jpg"} -{"rects": [{"solidity": 0.9966812444570938, "top": 825, "right": 4390, "bottom": 3545, "left": 2565}, {"solidity": 0.9958651172738291, "top": 825, "right": 2270, "bottom": 3555, "left": 455}], "shape": {"h": 4410, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711672f.jpg"} -{"rects": [{"solidity": 0.9966812553820749, "top": 375, "right": 3085, "bottom": 1985, "left": 660}, {"solidity": 0.9961237366650268, "top": 2230, "right": 3075, "bottom": 3825, "left": 675}, {"solidity": 0.9962808493844337, "top": 4100, "right": 3055, "bottom": 5690, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716705f.jpg"} -{"rects": [{"solidity": 0.9966813906117685, "top": 255, "right": 3260, "bottom": 1865, "left": 860}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/726751f.jpg"} -{"rects": [{"solidity": 0.9966815751658581, "top": 450, "right": 3480, "bottom": 2295, "left": 755}], "shape": {"h": 4430, "w": 6900}, "file": "/usr/local/google/home/danvk/milstein/710247f.jpg"} -{"rects": [{"solidity": 0.9966816418215234, "top": 485, "right": 3265, "bottom": 2115, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707507f.jpg"} -{"rects": [{"solidity": 0.9966818854092985, "top": 440, "right": 3160, "bottom": 2070, "left": 735}, {"solidity": 0.9980389745713898, "top": 2300, "right": 3155, "bottom": 3915, "left": 745}, {"solidity": 0.9972148451020415, "top": 4145, "right": 3185, "bottom": 5760, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719986f.jpg"} -{"rects": [{"solidity": 0.9966819765756421, "top": 495, "right": 5170, "bottom": 3695, "left": 1160}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720841f.jpg"} -{"rects": [{"solidity": 0.9966819958458588, "top": 335, "right": 3120, "bottom": 1930, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/719396f.jpg"} -{"rects": [{"solidity": 0.9966821423222699, "top": 645, "right": 1545, "bottom": 2450, "left": 330}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716314f.jpg"} -{"rects": [{"solidity": 0.9966825716890602, "top": 590, "right": 3210, "bottom": 2185, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727674f.jpg"} -{"rects": [{"solidity": 0.9966827231856134, "top": 530, "right": 2400, "bottom": 2960, "left": 780}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721460f.jpg"} -{"rects": [{"solidity": 0.996682736225854, "top": 835, "right": 2055, "bottom": 3225, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712272f.jpg"} -{"rects": [{"solidity": 0.9966827773385605, "top": 660, "right": 2545, "bottom": 3710, "left": 510}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715558f.jpg"} -{"rects": [{"solidity": 0.9966829116448284, "top": 430, "right": 3210, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725115f.jpg"} -{"rects": [{"solidity": 0.9966829710731755, "top": 430, "right": 3205, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700208f.jpg"} -{"rects": [{"solidity": 0.996683106641493, "top": 400, "right": 2980, "bottom": 2035, "left": 555}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704609f.jpg"} -{"rects": [{"solidity": 0.9966831305992696, "top": 460, "right": 3220, "bottom": 2055, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725174f.jpg"} -{"rects": [{"solidity": 0.9966831579223643, "top": 820, "right": 2085, "bottom": 3205, "left": 475}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703851f.jpg"} -{"rects": [{"solidity": 0.9966831958190161, "top": 565, "right": 5180, "bottom": 3360, "left": 815}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723672f.jpg"} -{"rects": [{"solidity": 0.9966833365245131, "top": 755, "right": 3830, "bottom": 3175, "left": 2210}, {"solidity": 0.9969109335412201, "top": 740, "right": 2020, "bottom": 3150, "left": 410}, {"solidity": 0.9957962052230933, "top": 785, "right": 5665, "bottom": 3210, "left": 4040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730433f.jpg"} -{"rects": [{"solidity": 0.9966834932173935, "top": 2260, "right": 3225, "bottom": 3900, "left": 795}, {"solidity": 0.9964069884558766, "top": 415, "right": 3220, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720539f.jpg"} -{"rects": [{"solidity": 0.9966835007220423, "top": 545, "right": 2640, "bottom": 2110, "left": 645}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717756f.jpg"} -{"rects": [{"solidity": 0.9966835172908395, "top": 925, "right": 2515, "bottom": 4075, "left": 220}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508903.jpg"} -{"rects": [{"solidity": 0.9966835921526707, "top": 430, "right": 3090, "bottom": 2050, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729299f.jpg"} -{"rects": [{"solidity": 0.996683734724737, "top": 775, "right": 5685, "bottom": 3180, "left": 4070}, {"solidity": 0.9912820420829821, "top": 1065, "right": 1965, "bottom": 2925, "left": 435}, {"solidity": 0.9610029375119364, "top": 1075, "right": 3785, "bottom": 2925, "left": 2285}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709637f.jpg"} -{"rects": [{"solidity": 0.9966837638482383, "top": 430, "right": 2980, "bottom": 2060, "left": 555}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704555f.jpg"} -{"rects": [{"solidity": 0.9966837649933579, "top": 325, "right": 3050, "bottom": 1955, "left": 640}, {"solidity": 0.997702792715221, "top": 325, "right": 5605, "bottom": 1940, "left": 3205}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707591f.jpg"} -{"rects": [{"solidity": 0.9966839415793861, "top": 475, "right": 3390, "bottom": 2450, "left": 545}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703716f.jpg"} -{"rects": [{"solidity": 0.9966839971237214, "top": 465, "right": 5730, "bottom": 4135, "left": 1175}], "shape": {"h": 4415, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708375f.jpg"} -{"rects": [{"solidity": 0.9966840497942493, "top": 480, "right": 3145, "bottom": 2095, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723335f.jpg"} -{"rects": [{"solidity": 0.9966840544999561, "top": 780, "right": 2005, "bottom": 3200, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724774f.jpg"} -{"rects": [{"solidity": 0.9966840668394478, "top": 2435, "right": 2520, "bottom": 3915, "left": 425}, {"solidity": 0.9971004061067329, "top": 630, "right": 2500, "bottom": 2120, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716024f.jpg"} -{"rects": [{"solidity": 0.9966840680951646, "top": 845, "right": 2085, "bottom": 2910, "left": 460}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701424f.jpg"} -{"rects": [{"solidity": 0.9966841578966226, "top": 430, "right": 3190, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734629f.jpg"} -{"rects": [{"solidity": 0.9966842411987187, "top": 450, "right": 5005, "bottom": 3680, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732908f.jpg"} -{"rects": [{"solidity": 0.9966842488920618, "top": 3260, "right": 3295, "bottom": 5340, "left": 450}, {"solidity": 0.997290562412907, "top": 765, "right": 3290, "bottom": 2835, "left": 450}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701498f.jpg"} -{"rects": [{"solidity": 0.9966844847418634, "top": 385, "right": 3225, "bottom": 2020, "left": 810}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727222f.jpg"} -{"rects": [{"solidity": 0.9966845383625925, "top": 1140, "right": 3465, "bottom": 5040, "left": 410}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723046f.jpg"} -{"rects": [{"solidity": 0.9966845708542451, "top": 795, "right": 2020, "bottom": 3200, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703871f.jpg"} -{"rects": [{"solidity": 0.9966847244298829, "top": 830, "right": 2050, "bottom": 3245, "left": 435}, {"solidity": 0.9898754530251115, "top": 695, "right": 5905, "bottom": 2250, "left": 4000}, {"solidity": 0.9954617881650375, "top": 2350, "right": 5845, "bottom": 3820, "left": 3965}, {"solidity": 0.9959997686613201, "top": 1165, "right": 3690, "bottom": 2990, "left": 2240}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722490f.jpg"} -{"rects": [{"solidity": 0.996684820246774, "top": 760, "right": 5115, "bottom": 2935, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730975f.jpg"} -{"rects": [{"solidity": 0.9966849072455212, "top": 825, "right": 3720, "bottom": 2910, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733073f.jpg"} -{"rects": [{"solidity": 0.9966850368204566, "top": 445, "right": 3135, "bottom": 2070, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709243f.jpg"} -{"rects": [{"solidity": 0.9966851007930458, "top": 750, "right": 1985, "bottom": 3170, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704821f.jpg"} -{"rects": [{"solidity": 0.9966854721584455, "top": 545, "right": 3345, "bottom": 2470, "left": 615}, {"solidity": 0.9977503688518603, "top": 3150, "right": 3320, "bottom": 5090, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714569f.jpg"} -{"rects": [{"solidity": 0.996685493962864, "top": 460, "right": 3100, "bottom": 2040, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704161f.jpg"} -{"rects": [{"solidity": 0.9966854941329726, "top": 2135, "right": 3075, "bottom": 3535, "left": 1285}, {"solidity": 0.993436799853017, "top": 425, "right": 3090, "bottom": 1835, "left": 1310}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728032f.jpg"} -{"rects": [{"solidity": 0.996685531834571, "top": 830, "right": 3920, "bottom": 3255, "left": 2290}, {"solidity": 0.9978463353849031, "top": 830, "right": 2040, "bottom": 3245, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719296f.jpg"} -{"rects": [{"solidity": 0.9966856025701324, "top": 730, "right": 5365, "bottom": 3350, "left": 2105}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733420f.jpg"} -{"rects": [{"solidity": 0.9966856241332367, "top": 2275, "right": 3140, "bottom": 3910, "left": 710}, {"solidity": 0.9965278552731006, "top": 4140, "right": 3140, "bottom": 5780, "left": 710}, {"solidity": 0.9940828989495409, "top": 425, "right": 3130, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706572f.jpg"} -{"rects": [{"solidity": 0.9966856637326991, "top": 810, "right": 2040, "bottom": 3240, "left": 410}, {"solidity": 0.9963141370678269, "top": 825, "right": 3905, "bottom": 3250, "left": 2270}, {"solidity": 0.995655464485274, "top": 840, "right": 5760, "bottom": 3265, "left": 4135}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701140f.jpg"} -{"rects": [{"solidity": 0.9966857858842395, "top": 380, "right": 3160, "bottom": 1995, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705885f.jpg"} -{"rects": [{"solidity": 0.9966858451919998, "top": 385, "right": 3250, "bottom": 1985, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726433f.jpg"} -{"rects": [{"solidity": 0.9966859085516109, "top": 650, "right": 2090, "bottom": 1815, "left": 165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715713f.jpg"} -{"rects": [{"solidity": 0.9966859490032094, "top": 1195, "right": 2720, "bottom": 4375, "left": 250}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508859.jpg"} -{"rects": [{"solidity": 0.9966860545944216, "top": 820, "right": 3830, "bottom": 3240, "left": 2215}, {"solidity": 0.9967476985833196, "top": 810, "right": 2005, "bottom": 3220, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719304f.jpg"} -{"rects": [{"solidity": 0.9966861667793302, "top": 1125, "right": 1905, "bottom": 2925, "left": 525}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715226f.jpg"} -{"rects": [{"solidity": 0.9966863663885013, "top": 825, "right": 2030, "bottom": 3215, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714814f.jpg"} -{"rects": [{"solidity": 0.9966863870076585, "top": 410, "right": 3175, "bottom": 1865, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702681f.jpg"} -{"rects": [{"solidity": 0.9966865147712547, "top": 405, "right": 3115, "bottom": 2005, "left": 710}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/730231f.jpg"} -{"rects": [{"solidity": 0.9966865191752969, "top": 650, "right": 2035, "bottom": 3050, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725022f.jpg"} -{"rects": [{"solidity": 0.9966866066127416, "top": 810, "right": 1975, "bottom": 3245, "left": 330}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717994f.jpg"} -{"rects": [{"solidity": 0.9966867469879518, "top": 875, "right": 3400, "bottom": 2930, "left": 350}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708129f.jpg"} -{"rects": [{"solidity": 0.9966868743831947, "top": 635, "right": 2995, "bottom": 2425, "left": 1790}, {"solidity": 0.994772976877764, "top": 640, "right": 1635, "bottom": 2435, "left": 430}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716402f.jpg"} -{"rects": [{"solidity": 0.9966869860570635, "top": 695, "right": 2205, "bottom": 3120, "left": 570}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708169f.jpg"} -{"rects": [{"solidity": 0.9966871855208973, "top": 1470, "right": 3595, "bottom": 5355, "left": 645}], "shape": {"h": 6905, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708352f.jpg"} -{"rects": [{"solidity": 0.996687219642093, "top": 800, "right": 3895, "bottom": 3240, "left": 2260}, {"solidity": 0.9967836275859444, "top": 805, "right": 2050, "bottom": 3240, "left": 405}, {"solidity": 0.9962764824697827, "top": 815, "right": 5720, "bottom": 3230, "left": 4100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709504f.jpg"} -{"rects": [{"solidity": 0.9966872215267846, "top": 840, "right": 2020, "bottom": 3235, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733529f.jpg"} -{"rects": [{"solidity": 0.9966872277181605, "top": 470, "right": 5030, "bottom": 3745, "left": 985}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716816f.jpg"} -{"rects": [{"solidity": 0.99668726080873, "top": 860, "right": 3875, "bottom": 3280, "left": 2230}, {"solidity": 0.9976582835799231, "top": 855, "right": 2025, "bottom": 3260, "left": 400}, {"solidity": 0.9981939135857115, "top": 890, "right": 5710, "bottom": 3295, "left": 4090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730250f.jpg"} -{"rects": [{"solidity": 0.9966873013217333, "top": 420, "right": 3035, "bottom": 2085, "left": 995}, {"solidity": 0.9957067383872836, "top": 2285, "right": 3040, "bottom": 3915, "left": 1010}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717115f.jpg"} -{"rects": [{"solidity": 0.9966873193970791, "top": 415, "right": 3155, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720590f.jpg"} -{"rects": [{"solidity": 0.9966873656839581, "top": 950, "right": 2520, "bottom": 3990, "left": 415}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/706544f.jpg"} -{"rects": [{"solidity": 0.9966874235832693, "top": 880, "right": 2500, "bottom": 2320, "left": 645}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705252f.jpg"} -{"rects": [{"solidity": 0.9966874618566488, "top": 570, "right": 4965, "bottom": 3575, "left": 1250}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732835f.jpg"} -{"rects": [{"solidity": 0.9966875230033124, "top": 470, "right": 1710, "bottom": 1350, "left": 575}], "shape": {"h": 2540, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727164f.jpg"} -{"rects": [{"solidity": 0.9966875376040516, "top": 805, "right": 3685, "bottom": 3165, "left": 2065}, {"solidity": 0.9977587883470315, "top": 810, "right": 5540, "bottom": 3150, "left": 3925}, {"solidity": 0.9983653482379311, "top": 845, "right": 1855, "bottom": 3105, "left": 295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715432f.jpg"} -{"rects": [{"solidity": 0.9966876631509407, "top": 2575, "right": 3570, "bottom": 4530, "left": 760}, {"solidity": 0.9974374720084217, "top": 445, "right": 3555, "bottom": 2375, "left": 730}], "shape": {"h": 6890, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/708884f.jpg"} -{"rects": [{"solidity": 0.9966879756082874, "top": 2250, "right": 3280, "bottom": 3890, "left": 845}, {"solidity": 0.9968411682857152, "top": 405, "right": 3280, "bottom": 2025, "left": 850}, {"solidity": 0.999073816201092, "top": 4135, "right": 3240, "bottom": 5750, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704854f.jpg"} -{"rects": [{"solidity": 0.9966879920304809, "top": 385, "right": 3000, "bottom": 2015, "left": 590}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703058f.jpg"} -{"rects": [{"solidity": 0.996688132474701, "top": 775, "right": 2020, "bottom": 3175, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733299f.jpg"} -{"rects": [{"solidity": 0.9966881371892726, "top": 370, "right": 3185, "bottom": 2000, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706267f.jpg"} -{"rects": [{"solidity": 0.9966882360800932, "top": 785, "right": 3960, "bottom": 3215, "left": 2325}, {"solidity": 0.9970375969968922, "top": 785, "right": 2070, "bottom": 3205, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710519f.jpg"} -{"rects": [{"solidity": 0.996688382646124, "top": 305, "right": 3540, "bottom": 2575, "left": 880}], "shape": {"h": 2750, "w": 4290}, "file": "/usr/local/google/home/danvk/milstein/708395f.jpg"} -{"rects": [{"solidity": 0.9966884476305272, "top": 805, "right": 2035, "bottom": 3235, "left": 385}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706290f.jpg"} -{"rects": [{"solidity": 0.9966884811397668, "top": 775, "right": 3860, "bottom": 3225, "left": 2195}, {"solidity": 0.9966159744891695, "top": 790, "right": 5680, "bottom": 3250, "left": 4030}, {"solidity": 0.9965417153599919, "top": 755, "right": 2050, "bottom": 3195, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703799f.jpg"} -{"rects": [{"solidity": 0.9966885887481315, "top": 775, "right": 2680, "bottom": 3905, "left": 235}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507791.jpg"} -{"rects": [{"solidity": 0.9966886578471671, "top": 735, "right": 3250, "bottom": 2775, "left": 570}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701496f.jpg"} -{"rects": [{"solidity": 0.9966886781587131, "top": 385, "right": 3210, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706053f.jpg"} -{"rects": [{"solidity": 0.996688752763541, "top": 720, "right": 2075, "bottom": 3100, "left": 485}, {"solidity": 0.9686200861884109, "top": 730, "right": 3925, "bottom": 3105, "left": 2345}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721432f.jpg"} -{"rects": [{"solidity": 0.9966887633265042, "top": 795, "right": 2060, "bottom": 3210, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724574f.jpg"} -{"rects": [{"solidity": 0.9966888136610877, "top": 230, "right": 4935, "bottom": 3405, "left": 920}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725297f.jpg"} -{"rects": [{"solidity": 0.996688869582006, "top": 2265, "right": 3130, "bottom": 3880, "left": 705}, {"solidity": 0.9969147069940847, "top": 410, "right": 3105, "bottom": 2020, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734121f.jpg"} -{"rects": [{"solidity": 0.9966890169106134, "top": 905, "right": 3900, "bottom": 3300, "left": 2310}, {"solidity": 0.9973185322562828, "top": 900, "right": 2020, "bottom": 3275, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730782f.jpg"} -{"rects": [{"solidity": 0.9966892289582107, "top": 820, "right": 2075, "bottom": 3250, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718890f.jpg"} -{"rects": [{"solidity": 0.9966892632485721, "top": 500, "right": 3005, "bottom": 2135, "left": 590}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703902f.jpg"} -{"rects": [{"solidity": 0.996689296198037, "top": 505, "right": 5125, "bottom": 3605, "left": 1090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730158f.jpg"} -{"rects": [{"solidity": 0.996689318696637, "top": 790, "right": 2015, "bottom": 3190, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713045f.jpg"} -{"rects": [{"solidity": 0.9966894703641582, "top": 405, "right": 2905, "bottom": 1805, "left": 1055}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733511f.jpg"} -{"rects": [{"solidity": 0.9966895706778083, "top": 475, "right": 5120, "bottom": 3745, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724863f.jpg"} -{"rects": [{"solidity": 0.9966895824381861, "top": 410, "right": 3330, "bottom": 2015, "left": 915}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725110f.jpg"} -{"rects": [{"solidity": 0.9966896887255466, "top": 870, "right": 1985, "bottom": 3275, "left": 390}, {"solidity": 0.9967921666886457, "top": 865, "right": 5725, "bottom": 3270, "left": 4135}, {"solidity": 0.9951912734686043, "top": 870, "right": 3850, "bottom": 3265, "left": 2255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734133f.jpg"} -{"rects": [{"solidity": 0.9966898293011607, "top": 885, "right": 5135, "bottom": 3105, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733726f.jpg"} -{"rects": [{"solidity": 0.9966898887648666, "top": 390, "right": 3200, "bottom": 2015, "left": 770}, {"solidity": 0.9952835186427835, "top": 2265, "right": 3215, "bottom": 3895, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719033f.jpg"} -{"rects": [{"solidity": 0.9966899454702, "top": 690, "right": 3865, "bottom": 3130, "left": 2225}, {"solidity": 0.9969640123612633, "top": 710, "right": 5715, "bottom": 3140, "left": 4080}, {"solidity": 0.9972757277264331, "top": 690, "right": 2005, "bottom": 3110, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703640f.jpg"} -{"rects": [{"solidity": 0.9966904942577843, "top": 4120, "right": 3225, "bottom": 5760, "left": 790}, {"solidity": 0.9966664429380048, "top": 2260, "right": 3190, "bottom": 3890, "left": 760}, {"solidity": 0.997285860488096, "top": 420, "right": 3180, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707731f.jpg"} -{"rects": [{"solidity": 0.9966905236835406, "top": 715, "right": 2000, "bottom": 3150, "left": 385}, {"solidity": 0.9969713425001131, "top": 695, "right": 3885, "bottom": 3120, "left": 2275}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704924f.jpg"} -{"rects": [{"solidity": 0.9966905717266256, "top": 2095, "right": 3140, "bottom": 3725, "left": 775}, {"solidity": 0.9998811477168806, "top": 275, "right": 3140, "bottom": 1895, "left": 790}, {"solidity": 0.9978163991397736, "top": 3955, "right": 3130, "bottom": 5565, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705022f.jpg"} -{"rects": [{"solidity": 0.9966905733796207, "top": 820, "right": 3905, "bottom": 3250, "left": 2265}, {"solidity": 0.9964621468962797, "top": 820, "right": 5660, "bottom": 3250, "left": 4035}, {"solidity": 0.997245063804451, "top": 815, "right": 2075, "bottom": 3235, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704689f.jpg"} -{"rects": [{"solidity": 0.9966906465520028, "top": 820, "right": 2045, "bottom": 3240, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730429f.jpg"} -{"rects": [{"solidity": 0.9966906723211872, "top": 855, "right": 2810, "bottom": 3255, "left": 1190}, {"solidity": 0.9974253582607445, "top": 3670, "right": 3165, "bottom": 5285, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733210f.jpg"} -{"rects": [{"solidity": 0.9966906762509936, "top": 445, "right": 5070, "bottom": 3685, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726209f.jpg"} -{"rects": [{"solidity": 0.9966907143605321, "top": 910, "right": 1980, "bottom": 3315, "left": 380}, {"solidity": 0.9959857151423489, "top": 915, "right": 3805, "bottom": 3320, "left": 2230}, {"solidity": 0.9965225350418899, "top": 940, "right": 5675, "bottom": 3335, "left": 4095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729302f.jpg"} -{"rects": [{"solidity": 0.9966908580086102, "top": 535, "right": 3140, "bottom": 2155, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722633f.jpg"} -{"rects": [{"solidity": 0.9966909364181789, "top": 4100, "right": 3355, "bottom": 5970, "left": 610}, {"solidity": 0.974744520607543, "top": 2095, "right": 3365, "bottom": 4010, "left": 600}, {"solidity": 0.9881021928657905, "top": 165, "right": 3355, "bottom": 2025, "left": 600}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726308f.jpg"} -{"rects": [{"solidity": 0.996690995665074, "top": 745, "right": 3840, "bottom": 3160, "left": 2235}, {"solidity": 0.9966586579489806, "top": 755, "right": 2000, "bottom": 3155, "left": 395}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730449f.jpg"} -{"rects": [{"solidity": 0.9966910840303737, "top": 830, "right": 2065, "bottom": 3210, "left": 480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712619f.jpg"} -{"rects": [{"solidity": 0.9966911002900953, "top": 750, "right": 2025, "bottom": 3165, "left": 410}, {"solidity": 0.9965400170077964, "top": 730, "right": 3880, "bottom": 3145, "left": 2270}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732363f.jpg"} -{"rects": [{"solidity": 0.9966911072289079, "top": 830, "right": 2045, "bottom": 3240, "left": 430}, {"solidity": 0.9947553705921229, "top": 845, "right": 3840, "bottom": 3250, "left": 2235}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705771f.jpg"} -{"rects": [{"solidity": 0.9966911411074417, "top": 790, "right": 3870, "bottom": 3220, "left": 2245}, {"solidity": 0.9960726290226604, "top": 810, "right": 5715, "bottom": 3235, "left": 4090}, {"solidity": 0.9957636950655997, "top": 810, "right": 2015, "bottom": 3205, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733960f.jpg"} -{"rects": [{"solidity": 0.99669141691994, "top": 2030, "right": 2710, "bottom": 3455, "left": 870}, {"solidity": 0.9958132638128374, "top": 555, "right": 5265, "bottom": 1985, "left": 3440}, {"solidity": 0.9971603727317312, "top": 565, "right": 2705, "bottom": 1975, "left": 880}, {"solidity": 0.9928325905137821, "top": 2030, "right": 5240, "bottom": 3450, "left": 3460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703568f.jpg"} -{"rects": [{"solidity": 0.9966916679884888, "top": 400, "right": 3220, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704498f.jpg"} -{"rects": [{"solidity": 0.996691709717899, "top": 375, "right": 3000, "bottom": 2000, "left": 600}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714915f.jpg"} -{"rects": [{"solidity": 0.9966917322757348, "top": 625, "right": 3370, "bottom": 2525, "left": 660}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712181f.jpg"} -{"rects": [{"solidity": 0.9966918391093061, "top": 445, "right": 3190, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702909f.jpg"} -{"rects": [{"solidity": 0.9966918623660878, "top": 525, "right": 5695, "bottom": 2160, "left": 3280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706194f.jpg"} -{"rects": [{"solidity": 0.9966918912644649, "top": 940, "right": 3860, "bottom": 3365, "left": 2235}, {"solidity": 0.9973119324291063, "top": 930, "right": 2015, "bottom": 3345, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709432f.jpg"} -{"rects": [{"solidity": 0.9966919286884358, "top": 435, "right": 3095, "bottom": 2080, "left": 670}, {"solidity": 0.9997774064300508, "top": 2285, "right": 3080, "bottom": 3905, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707960f.jpg"} -{"rects": [{"solidity": 0.9966920719042559, "top": 680, "right": 5355, "bottom": 3535, "left": 3295}, {"solidity": 0.9966222728467538, "top": 665, "right": 2790, "bottom": 3500, "left": 745}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714859f.jpg"} -{"rects": [{"solidity": 0.9966921859353296, "top": 440, "right": 3290, "bottom": 2055, "left": 875}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726498f.jpg"} -{"rects": [{"solidity": 0.9966921898928025, "top": 915, "right": 1985, "bottom": 3340, "left": 370}, {"solidity": 0.9964782343869472, "top": 910, "right": 3845, "bottom": 3330, "left": 2240}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722964f.jpg"} -{"rects": [{"solidity": 0.9966921988583696, "top": 845, "right": 2095, "bottom": 3260, "left": 480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712361f.jpg"} -{"rects": [{"solidity": 0.9966925849889268, "top": 480, "right": 3205, "bottom": 2100, "left": 795}, {"solidity": 0.9963427444979055, "top": 2305, "right": 3200, "bottom": 3920, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712376f.jpg"} -{"rects": [{"solidity": 0.996692890567067, "top": 710, "right": 4795, "bottom": 3570, "left": 1180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723528f.jpg"} -{"rects": [{"solidity": 0.996692890676323, "top": 375, "right": 3180, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705062f.jpg"} -{"rects": [{"solidity": 0.9966930218299451, "top": 1065, "right": 3480, "bottom": 5015, "left": 670}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/731400f.jpg"} -{"rects": [{"solidity": 0.996693219193054, "top": 1205, "right": 3400, "bottom": 4450, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717260f.jpg"} -{"rects": [{"solidity": 0.9966932503404007, "top": 770, "right": 1995, "bottom": 3195, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728230f.jpg"} -{"rects": [{"solidity": 0.9966933547096262, "top": 785, "right": 2110, "bottom": 3205, "left": 495}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723930f.jpg"} -{"rects": [{"solidity": 0.9966933831721957, "top": 605, "right": 2545, "bottom": 3695, "left": 485}, {"solidity": 0.9955751931890939, "top": 935, "right": 4390, "bottom": 3370, "left": 2735}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715483f.jpg"} -{"rects": [{"solidity": 0.99669352179939, "top": 410, "right": 3345, "bottom": 2040, "left": 925}, {"solidity": 0.9998843559267587, "top": 2260, "right": 3330, "bottom": 3880, "left": 915}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727595f.jpg"} -{"rects": [{"solidity": 0.9966935680060924, "top": 535, "right": 5035, "bottom": 3605, "left": 1160}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708517f.jpg"} -{"rects": [{"solidity": 0.9966935925238567, "top": 865, "right": 3355, "bottom": 2900, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716768f.jpg"} -{"rects": [{"solidity": 0.996693640949469, "top": 1050, "right": 5965, "bottom": 3110, "left": 2735}, {"solidity": 0.9967277486910995, "top": 375, "right": 2645, "bottom": 3610, "left": 600}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705063f.jpg"} -{"rects": [{"solidity": 0.9966936818377266, "top": 2240, "right": 3200, "bottom": 3845, "left": 790}, {"solidity": 0.994887879657389, "top": 405, "right": 3200, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720521f.jpg"} -{"rects": [{"solidity": 0.9966937274928793, "top": 550, "right": 2795, "bottom": 3545, "left": 770}], "shape": {"h": 3910, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712691f.jpg"} -{"rects": [{"solidity": 0.996693944198145, "top": 630, "right": 3315, "bottom": 2550, "left": 535}, {"solidity": 0.9968258481358292, "top": 3190, "right": 3265, "bottom": 5100, "left": 550}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715381f.jpg"} -{"rects": [{"solidity": 0.9966942310899228, "top": 800, "right": 2025, "bottom": 3195, "left": 415}, {"solidity": 0.9967805284260981, "top": 825, "right": 3880, "bottom": 3215, "left": 2265}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732507f.jpg"} -{"rects": [{"solidity": 0.9966943682659354, "top": 780, "right": 3930, "bottom": 3215, "left": 2310}, {"solidity": 0.9973235775488591, "top": 775, "right": 2165, "bottom": 3205, "left": 550}, {"solidity": 0.9979118104118104, "top": 810, "right": 5645, "bottom": 3225, "left": 4035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733203f.jpg"} -{"rects": [{"solidity": 0.9966944776041937, "top": 760, "right": 2005, "bottom": 3170, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700759f.jpg"} -{"rects": [{"solidity": 0.9966944785667565, "top": 870, "right": 2080, "bottom": 3295, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728315f.jpg"} -{"rects": [{"solidity": 0.9966945110962873, "top": 2100, "right": 3295, "bottom": 3685, "left": 900}, {"solidity": 0.996459894594608, "top": 435, "right": 3145, "bottom": 1840, "left": 1340}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726561f.jpg"} -{"rects": [{"solidity": 0.9966945945773484, "top": 540, "right": 3245, "bottom": 2190, "left": 805}, {"solidity": 0.9985200412436858, "top": 2365, "right": 3250, "bottom": 3980, "left": 855}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/704965f.jpg"} -{"rects": [{"solidity": 0.9966946962744215, "top": 770, "right": 1985, "bottom": 3130, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724775f.jpg"} -{"rects": [{"solidity": 0.9966947659189408, "top": 760, "right": 2065, "bottom": 3195, "left": 415}, {"solidity": 0.9960414912712658, "top": 775, "right": 3890, "bottom": 3220, "left": 2240}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718033f.jpg"} -{"rects": [{"solidity": 0.99669489707708, "top": 805, "right": 2055, "bottom": 3220, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720568f.jpg"} -{"rects": [{"solidity": 0.9966948997388682, "top": 4045, "right": 3190, "bottom": 5675, "left": 775}, {"solidity": 0.9966898836785802, "top": 2175, "right": 3200, "bottom": 3800, "left": 795}, {"solidity": 0.9979238351486301, "top": 335, "right": 3205, "bottom": 1955, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720068f.jpg"} -{"rects": [{"solidity": 0.9966950796658033, "top": 420, "right": 3150, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728505f.jpg"} -{"rects": [{"solidity": 0.9966951768466665, "top": 1180, "right": 2715, "bottom": 4215, "left": 265}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517247.jpg"} -{"rects": [{"solidity": 0.9966953051456452, "top": 850, "right": 5790, "bottom": 3245, "left": 4195}, {"solidity": 0.9942656812330781, "top": 825, "right": 2150, "bottom": 3225, "left": 560}, {"solidity": 0.9939784527343802, "top": 850, "right": 3980, "bottom": 3225, "left": 2400}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731601f.jpg"} -{"rects": [{"solidity": 0.9966955631617671, "top": 2285, "right": 3155, "bottom": 3920, "left": 735}, {"solidity": 0.9975616826644335, "top": 425, "right": 3135, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711978f.jpg"} -{"rects": [{"solidity": 0.996695592299797, "top": 765, "right": 2050, "bottom": 3185, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710011f.jpg"} -{"rects": [{"solidity": 0.9966956150617875, "top": 425, "right": 3160, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719720f.jpg"} -{"rects": [{"solidity": 0.9966956205611602, "top": 2320, "right": 3130, "bottom": 3940, "left": 730}, {"solidity": 0.9962631181479649, "top": 460, "right": 3140, "bottom": 2080, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710214f.jpg"} -{"rects": [{"solidity": 0.996695625059548, "top": 680, "right": 3240, "bottom": 2750, "left": 400}, {"solidity": 0.9955262165874457, "top": 3405, "right": 3260, "bottom": 5485, "left": 415}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731193f.jpg"} -{"rects": [{"solidity": 0.9966956892941139, "top": 580, "right": 2975, "bottom": 3605, "left": 895}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719326f.jpg"} -{"rects": [{"solidity": 0.9966959738515722, "top": 805, "right": 4395, "bottom": 3530, "left": 2575}, {"solidity": 0.9959314373730157, "top": 815, "right": 2255, "bottom": 3540, "left": 425}], "shape": {"h": 4430, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711233f.jpg"} -{"rects": [{"solidity": 0.9966961686213528, "top": 2265, "right": 2900, "bottom": 3700, "left": 1085}, {"solidity": 0.9952707357230449, "top": 4095, "right": 2905, "bottom": 5520, "left": 1090}, {"solidity": 0.9948352923322449, "top": 495, "right": 2905, "bottom": 1925, "left": 1100}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725211f.jpg"} -{"rects": [{"solidity": 0.9966961893718261, "top": 425, "right": 2945, "bottom": 1835, "left": 1150}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726096f.jpg"} -{"rects": [{"solidity": 0.9966961967995204, "top": 425, "right": 3210, "bottom": 2060, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734018f.jpg"} -{"rects": [{"solidity": 0.996696340397718, "top": 1155, "right": 2235, "bottom": 3055, "left": 365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733315f.jpg"} -{"rects": [{"solidity": 0.9966963704935577, "top": 745, "right": 3860, "bottom": 3170, "left": 2235}, {"solidity": 0.9983406901440216, "top": 750, "right": 2010, "bottom": 3175, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713633f.jpg"} -{"rects": [{"solidity": 0.9966964638873507, "top": 2320, "right": 3195, "bottom": 3970, "left": 755}, {"solidity": 0.9967085060647934, "top": 470, "right": 3165, "bottom": 2100, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705938f.jpg"} -{"rects": [{"solidity": 0.996696477876858, "top": 2215, "right": 3215, "bottom": 3820, "left": 810}, {"solidity": 0.9971194633520766, "top": 380, "right": 3200, "bottom": 1985, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718372f.jpg"} -{"rects": [{"solidity": 0.9966965036664652, "top": 2300, "right": 3265, "bottom": 3940, "left": 840}, {"solidity": 0.9966256099797022, "top": 420, "right": 3265, "bottom": 2045, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726476f.jpg"} -{"rects": [{"solidity": 0.9966967135098819, "top": 425, "right": 3165, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707169f.jpg"} -{"rects": [{"solidity": 0.9966970966576091, "top": 855, "right": 2035, "bottom": 3250, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728438f.jpg"} -{"rects": [{"solidity": 0.9966972622850466, "top": 1025, "right": 3585, "bottom": 3115, "left": 185}, {"solidity": 0.996684207189501, "top": 3445, "right": 3405, "bottom": 5440, "left": 350}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/706360f.jpg"} -{"rects": [{"solidity": 0.9966972717304136, "top": 495, "right": 3235, "bottom": 2095, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710340f.jpg"} -{"rects": [{"solidity": 0.9966973198347693, "top": 2260, "right": 3205, "bottom": 3875, "left": 775}, {"solidity": 0.9958287900587776, "top": 4085, "right": 3195, "bottom": 5700, "left": 770}, {"solidity": 0.9966496180240839, "top": 430, "right": 3200, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734502f.jpg"} -{"rects": [{"solidity": 0.9966973432667086, "top": 720, "right": 2035, "bottom": 3160, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714003f.jpg"} -{"rects": [{"solidity": 0.9966973465223189, "top": 390, "right": 3135, "bottom": 2000, "left": 720}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729891f.jpg"} -{"rects": [{"solidity": 0.9966974858486626, "top": 445, "right": 3185, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719442f.jpg"} -{"rects": [{"solidity": 0.9966976883818673, "top": 790, "right": 3855, "bottom": 3230, "left": 2225}, {"solidity": 0.9963883604956043, "top": 800, "right": 5700, "bottom": 3235, "left": 4080}, {"solidity": 0.9969637418022637, "top": 795, "right": 1995, "bottom": 3225, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731140f.jpg"} -{"rects": [{"solidity": 0.9966978221156008, "top": 760, "right": 2525, "bottom": 2240, "left": 440}, {"solidity": 0.994675486413099, "top": 2465, "right": 2510, "bottom": 3955, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716175f.jpg"} -{"rects": [{"solidity": 0.9966979559385499, "top": 400, "right": 3165, "bottom": 2015, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702138f.jpg"} -{"rects": [{"solidity": 0.9966981238752782, "top": 670, "right": 5635, "bottom": 3080, "left": 4005}, {"solidity": 0.9966085948082914, "top": 685, "right": 3810, "bottom": 3090, "left": 2190}, {"solidity": 0.9964569405828609, "top": 715, "right": 2010, "bottom": 3120, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720402f.jpg"} -{"rects": [{"solidity": 0.996698234182205, "top": 400, "right": 2685, "bottom": 3650, "left": 625}, {"solidity": 0.9974302623050164, "top": 945, "right": 5950, "bottom": 2985, "left": 2715}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704857f.jpg"} -{"rects": [{"solidity": 0.9966982532694716, "top": 780, "right": 1975, "bottom": 3200, "left": 360}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733955f.jpg"} -{"rects": [{"solidity": 0.9966985010024729, "top": 395, "right": 3165, "bottom": 2005, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720714f.jpg"} -{"rects": [{"solidity": 0.9966985365853659, "top": 2205, "right": 3035, "bottom": 3805, "left": 1015}, {"solidity": 0.997697389939164, "top": 670, "right": 3025, "bottom": 2100, "left": 1005}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721090f.jpg"} -{"rects": [{"solidity": 0.9966985625418272, "top": 305, "right": 5050, "bottom": 3625, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727665f.jpg"} -{"rects": [{"solidity": 0.9966985930632066, "top": 305, "right": 3225, "bottom": 1940, "left": 805}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/707905f.jpg"} -{"rects": [{"solidity": 0.9966986284144786, "top": 695, "right": 3280, "bottom": 2595, "left": 580}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710170f.jpg"} -{"rects": [{"solidity": 0.9966986302690922, "top": 790, "right": 3865, "bottom": 3215, "left": 2245}, {"solidity": 0.9971000093548086, "top": 800, "right": 5705, "bottom": 3225, "left": 4090}, {"solidity": 0.9980485274810769, "top": 785, "right": 2030, "bottom": 3205, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734779f.jpg"} -{"rects": [{"solidity": 0.9966988665134577, "top": 640, "right": 5100, "bottom": 2050, "left": 3260}, {"solidity": 0.9956174928141572, "top": 635, "right": 2810, "bottom": 2040, "left": 970}, {"solidity": 0.9963749818749094, "top": 2245, "right": 5080, "bottom": 3655, "left": 3285}, {"solidity": 0.9950263844240917, "top": 2230, "right": 2780, "bottom": 3630, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726992f.jpg"} -{"rects": [{"solidity": 0.9966991431818472, "top": 4080, "right": 3205, "bottom": 5705, "left": 775}, {"solidity": 0.999276016919028, "top": 385, "right": 3205, "bottom": 1985, "left": 795}, {"solidity": 0.9968959979022584, "top": 2235, "right": 3195, "bottom": 3835, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723390f.jpg"} -{"rects": [{"solidity": 0.9966992925240088, "top": 780, "right": 2085, "bottom": 3215, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713881f.jpg"} -{"rects": [{"solidity": 0.9966994574775587, "top": 855, "right": 2010, "bottom": 3225, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729896f.jpg"} -{"rects": [{"solidity": 0.9966995573913169, "top": 600, "right": 5005, "bottom": 3695, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731220f.jpg"} -{"rects": [{"solidity": 0.9966997285260562, "top": 655, "right": 2355, "bottom": 2110, "left": 380}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713712f.jpg"} -{"rects": [{"solidity": 0.9966998116385727, "top": 1080, "right": 2655, "bottom": 4100, "left": 225}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509069.jpg"} -{"rects": [{"solidity": 0.9966998826911425, "top": 845, "right": 2070, "bottom": 3265, "left": 450}, {"solidity": 0.9988802588996764, "top": 850, "right": 5745, "bottom": 3265, "left": 4135}, {"solidity": 0.9965838459178896, "top": 840, "right": 3910, "bottom": 3255, "left": 2285}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730901f.jpg"} -{"rects": [{"solidity": 0.9966998916895932, "top": 1050, "right": 5410, "bottom": 2655, "left": 620}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730338f.jpg"} -{"rects": [{"solidity": 0.9966999184801292, "top": 830, "right": 3925, "bottom": 3220, "left": 2315}, {"solidity": 0.9957829548805662, "top": 825, "right": 2015, "bottom": 3215, "left": 405}, {"solidity": 0.9946992965421579, "top": 815, "right": 5810, "bottom": 3200, "left": 4210}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731711f.jpg"} -{"rects": [{"solidity": 0.9966999321771146, "top": 945, "right": 5910, "bottom": 2990, "left": 2685}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705064f.jpg"} -{"rects": [{"solidity": 0.9966999433001841, "top": 780, "right": 3840, "bottom": 3215, "left": 2210}, {"solidity": 0.9983299718664491, "top": 775, "right": 2005, "bottom": 3200, "left": 390}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725360f.jpg"} -{"rects": [{"solidity": 0.9967001673464133, "top": 730, "right": 3905, "bottom": 3190, "left": 2245}, {"solidity": 0.9971849930345391, "top": 700, "right": 2025, "bottom": 3130, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705580f.jpg"} -{"rects": [{"solidity": 0.9967002993680009, "top": 630, "right": 2760, "bottom": 2175, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728222f.jpg"} -{"rects": [{"solidity": 0.9967003075984442, "top": 620, "right": 2540, "bottom": 2020, "left": 765}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707202f.jpg"} -{"rects": [{"solidity": 0.9967007120533556, "top": 415, "right": 3230, "bottom": 2050, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727821f.jpg"} -{"rects": [{"solidity": 0.9967007578427742, "top": 1095, "right": 3435, "bottom": 5115, "left": 275}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717941f.jpg"} -{"rects": [{"solidity": 0.9967008361950714, "top": 405, "right": 3165, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702736f.jpg"} -{"rects": [{"solidity": 0.9967008785878347, "top": 2260, "right": 3060, "bottom": 3895, "left": 645}, {"solidity": 0.9981183977082214, "top": 420, "right": 3070, "bottom": 2035, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734269f.jpg"} -{"rects": [{"solidity": 0.9967011540432057, "top": 510, "right": 1940, "bottom": 2805, "left": 445}, {"solidity": 0.995804685437495, "top": 735, "right": 3195, "bottom": 2540, "left": 1975}, {"solidity": 0.9917588626998708, "top": 750, "right": 4445, "bottom": 2560, "left": 3235}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715761f.jpg"} -{"rects": [{"solidity": 0.9967014702201801, "top": 360, "right": 3225, "bottom": 1980, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725271f.jpg"} -{"rects": [{"solidity": 0.9967014753815445, "top": 225, "right": 3130, "bottom": 1835, "left": 715}, {"solidity": 0.9949179482773434, "top": 1955, "right": 2915, "bottom": 3510, "left": 1020}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713908f.jpg"} -{"rects": [{"solidity": 0.9967015026824946, "top": 475, "right": 4945, "bottom": 3595, "left": 950}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719887f.jpg"} -{"rects": [{"solidity": 0.9967015270274032, "top": 480, "right": 3150, "bottom": 3890, "left": 625}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724447f.jpg"} -{"rects": [{"solidity": 0.996701558998438, "top": 400, "right": 3115, "bottom": 2020, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711442f.jpg"} -{"rects": [{"solidity": 0.99670179059219, "top": 795, "right": 3890, "bottom": 3240, "left": 2245}, {"solidity": 0.9979648385247468, "top": 765, "right": 2030, "bottom": 3195, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732341f.jpg"} -{"rects": [{"solidity": 0.9967017941599342, "top": 815, "right": 2035, "bottom": 3240, "left": 415}, {"solidity": 0.993727031208183, "top": 815, "right": 3855, "bottom": 3230, "left": 2250}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706269f.jpg"} -{"rects": [{"solidity": 0.9967018173659412, "top": 2205, "right": 3160, "bottom": 3845, "left": 750}, {"solidity": 0.9962160003606876, "top": 340, "right": 3175, "bottom": 1980, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704003f.jpg"} -{"rects": [{"solidity": 0.9967019174277626, "top": 390, "right": 3175, "bottom": 1975, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712173f.jpg"} -{"rects": [{"solidity": 0.9967019411802895, "top": 490, "right": 3160, "bottom": 2100, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719226f.jpg"} -{"rects": [{"solidity": 0.9967020031196391, "top": 425, "right": 3195, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734555f.jpg"} -{"rects": [{"solidity": 0.9967020558571296, "top": 660, "right": 3920, "bottom": 3085, "left": 2280}, {"solidity": 0.9978729378955964, "top": 660, "right": 2060, "bottom": 3070, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702951f.jpg"} -{"rects": [{"solidity": 0.9967021297013045, "top": 805, "right": 3870, "bottom": 3240, "left": 2245}, {"solidity": 0.9982304301663396, "top": 805, "right": 1970, "bottom": 3225, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723116f.jpg"} -{"rects": [{"solidity": 0.9967022063115296, "top": 420, "right": 3295, "bottom": 2350, "left": 565}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705184f.jpg"} -{"rects": [{"solidity": 0.9967027113581627, "top": 835, "right": 2660, "bottom": 3240, "left": 1055}, {"solidity": 0.9964765830045791, "top": 860, "right": 5200, "bottom": 3265, "left": 3595}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719871f.jpg"} -{"rects": [{"solidity": 0.996703018006594, "top": 760, "right": 3895, "bottom": 3190, "left": 2275}, {"solidity": 0.9958057927662791, "top": 765, "right": 5720, "bottom": 3195, "left": 4095}, {"solidity": 0.9983282341246789, "top": 765, "right": 2075, "bottom": 3180, "left": 460}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733945f.jpg"} -{"rects": [{"solidity": 0.9967031538771227, "top": 500, "right": 3020, "bottom": 2145, "left": 585}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703264f.jpg"} -{"rects": [{"solidity": 0.9967032173867243, "top": 440, "right": 2860, "bottom": 3655, "left": 830}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733049f.jpg"} -{"rects": [{"solidity": 0.9967032366175529, "top": 445, "right": 3010, "bottom": 2065, "left": 590}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723122f.jpg"} -{"rects": [{"solidity": 0.9967032680929724, "top": 820, "right": 2005, "bottom": 3220, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715058f.jpg"} -{"rects": [{"solidity": 0.9967032685104418, "top": 825, "right": 4035, "bottom": 3250, "left": 2395}, {"solidity": 0.996363813292679, "top": 820, "right": 2160, "bottom": 3235, "left": 535}, {"solidity": 0.99669469353518, "top": 890, "right": 5815, "bottom": 3275, "left": 4225}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717916f.jpg"} -{"rects": [{"solidity": 0.9967033461037047, "top": 490, "right": 3065, "bottom": 1895, "left": 1265}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725962f.jpg"} -{"rects": [{"solidity": 0.996703479019844, "top": 330, "right": 2170, "bottom": 1500, "left": 670}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517165.jpg"} -{"rects": [{"solidity": 0.996703486421426, "top": 770, "right": 3875, "bottom": 3170, "left": 2260}, {"solidity": 0.9989222906222955, "top": 760, "right": 2000, "bottom": 3160, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720098f.jpg"} -{"rects": [{"solidity": 0.9967035053490291, "top": 755, "right": 3875, "bottom": 3150, "left": 2270}, {"solidity": 0.9972580491381265, "top": 755, "right": 2000, "bottom": 3150, "left": 400}, {"solidity": 0.99727658788774, "top": 745, "right": 5710, "bottom": 3140, "left": 4115}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733367f.jpg"} -{"rects": [{"solidity": 0.9967035734395735, "top": 2195, "right": 3285, "bottom": 3945, "left": 690}, {"solidity": 0.9969074324902546, "top": 4075, "right": 3250, "bottom": 5820, "left": 785}, {"solidity": 0.9985659641668815, "top": 400, "right": 3220, "bottom": 2070, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724673f.jpg"} -{"rects": [{"solidity": 0.9967037436054766, "top": 775, "right": 3345, "bottom": 2725, "left": 620}, {"solidity": 0.9949890901397987, "top": 3365, "right": 3320, "bottom": 5280, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714016f.jpg"} -{"rects": [{"solidity": 0.9967039440692902, "top": 635, "right": 2835, "bottom": 2055, "left": 1010}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705197f.jpg"} -{"rects": [{"solidity": 0.9967041923322953, "top": 495, "right": 3190, "bottom": 2110, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720945f.jpg"} -{"rects": [{"solidity": 0.9967044499925877, "top": 625, "right": 4895, "bottom": 3515, "left": 1160}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702651f.jpg"} -{"rects": [{"solidity": 0.9967045820548898, "top": 1040, "right": 3490, "bottom": 2575, "left": 1055}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509713.jpg"} -{"rects": [{"solidity": 0.9967047219509071, "top": 3390, "right": 3220, "bottom": 5025, "left": 800}, {"solidity": 0.996726404971252, "top": 1505, "right": 3225, "bottom": 3125, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731018f.jpg"} -{"rects": [{"solidity": 0.9967048280182305, "top": 4080, "right": 3145, "bottom": 5705, "left": 715}, {"solidity": 0.9949486798786392, "top": 2200, "right": 3155, "bottom": 3840, "left": 720}, {"solidity": 0.9961274996339022, "top": 395, "right": 3160, "bottom": 1995, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725859f.jpg"} -{"rects": [{"solidity": 0.9967048597544428, "top": 540, "right": 5130, "bottom": 3785, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733883f.jpg"} -{"rects": [{"solidity": 0.9967049425861209, "top": 920, "right": 2165, "bottom": 3330, "left": 535}, {"solidity": 0.9964892277267267, "top": 910, "right": 3970, "bottom": 3335, "left": 2345}, {"solidity": 0.9969998014574494, "top": 955, "right": 5560, "bottom": 3260, "left": 4075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713707f.jpg"} -{"rects": [{"solidity": 0.99670496907418, "top": 440, "right": 5030, "bottom": 3605, "left": 1045}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717897f.jpg"} -{"rects": [{"solidity": 0.9967050649230169, "top": 805, "right": 3965, "bottom": 3230, "left": 2335}, {"solidity": 0.9958358368650535, "top": 800, "right": 2095, "bottom": 3225, "left": 465}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718079f.jpg"} -{"rects": [{"solidity": 0.9967051346378993, "top": 380, "right": 3185, "bottom": 1965, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724714f.jpg"} -{"rects": [{"solidity": 0.996705218508749, "top": 725, "right": 2945, "bottom": 2160, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702303f.jpg"} -{"rects": [{"solidity": 0.996705287658691, "top": 860, "right": 2010, "bottom": 3280, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713518f.jpg"} -{"rects": [{"solidity": 0.996705459524217, "top": 2290, "right": 3175, "bottom": 3885, "left": 775}, {"solidity": 0.9967385148415898, "top": 445, "right": 3170, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723461f.jpg"} -{"rects": [{"solidity": 0.9967054638765928, "top": 415, "right": 3215, "bottom": 2035, "left": 815}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710377f.jpg"} -{"rects": [{"solidity": 0.9967055189677926, "top": 805, "right": 4360, "bottom": 3245, "left": 2720}, {"solidity": 0.9964686601513341, "top": 800, "right": 2470, "bottom": 3235, "left": 835}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724092f.jpg"} -{"rects": [{"solidity": 0.9967055253074254, "top": 490, "right": 5130, "bottom": 3745, "left": 1085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720746f.jpg"} -{"rects": [{"solidity": 0.9967057415582639, "top": 525, "right": 3130, "bottom": 2160, "left": 700}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705930f.jpg"} -{"rects": [{"solidity": 0.9967060182466032, "top": 2350, "right": 2885, "bottom": 3760, "left": 1055}, {"solidity": 0.9966727931104902, "top": 540, "right": 2860, "bottom": 1940, "left": 1050}, {"solidity": 0.9970752005146039, "top": 4200, "right": 2880, "bottom": 5575, "left": 1050}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704742f.jpg"} -{"rects": [{"solidity": 0.9967060634523064, "top": 855, "right": 1955, "bottom": 3265, "left": 350}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719674f.jpg"} -{"rects": [{"solidity": 0.9967061459240223, "top": 400, "right": 5655, "bottom": 3655, "left": 3605}, {"solidity": 0.9999480097356583, "top": 405, "right": 3175, "bottom": 3640, "left": 1160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724970f.jpg"} -{"rects": [{"solidity": 0.9967061616114471, "top": 290, "right": 3300, "bottom": 2320, "left": 510}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733332f.jpg"} -{"rects": [{"solidity": 0.9967062362377727, "top": 1000, "right": 3465, "bottom": 5065, "left": 265}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722366f.jpg"} -{"rects": [{"solidity": 0.9967062382139648, "top": 825, "right": 3940, "bottom": 3265, "left": 2300}, {"solidity": 0.9964805412399813, "top": 810, "right": 2045, "bottom": 3245, "left": 410}, {"solidity": 0.9973143946530587, "top": 845, "right": 5775, "bottom": 3275, "left": 4150}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729980f.jpg"} -{"rects": [{"solidity": 0.9967063326898938, "top": 390, "right": 3115, "bottom": 1995, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700752f.jpg"} -{"rects": [{"solidity": 0.996706351638189, "top": 1210, "right": 3385, "bottom": 4960, "left": 380}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703834f.jpg"} -{"rects": [{"solidity": 0.9967063957088823, "top": 990, "right": 3495, "bottom": 5080, "left": 245}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713377f.jpg"} -{"rects": [{"solidity": 0.9967064070127015, "top": 4115, "right": 3225, "bottom": 5745, "left": 795}, {"solidity": 0.9973289178273917, "top": 2215, "right": 3220, "bottom": 3845, "left": 805}, {"solidity": 0.9989727076069026, "top": 320, "right": 3190, "bottom": 1935, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733855f.jpg"} -{"rects": [{"solidity": 0.9967064714946071, "top": 410, "right": 3220, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717840f.jpg"} -{"rects": [{"solidity": 0.9967067564609382, "top": 425, "right": 3195, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720769f.jpg"} -{"rects": [{"solidity": 0.9967067785201845, "top": 715, "right": 2035, "bottom": 3115, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718149f.jpg"} -{"rects": [{"solidity": 0.9967067952155083, "top": 350, "right": 3090, "bottom": 1975, "left": 675}, {"solidity": 0.9961191501421904, "top": 2160, "right": 3060, "bottom": 3785, "left": 645}, {"solidity": 0.9951905798095836, "top": 3990, "right": 3055, "bottom": 5600, "left": 645}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719751f.jpg"} -{"rects": [{"solidity": 0.9967068158539589, "top": 445, "right": 3155, "bottom": 2065, "left": 750}, {"solidity": 0.9973057719911457, "top": 2290, "right": 3145, "bottom": 3895, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710746f.jpg"} -{"rects": [{"solidity": 0.9967068231518743, "top": 315, "right": 3140, "bottom": 1945, "left": 745}, {"solidity": 0.9962583426658985, "top": 2180, "right": 3135, "bottom": 3820, "left": 745}, {"solidity": 0.9960303481029174, "top": 4080, "right": 3120, "bottom": 5710, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707887f.jpg"} -{"rects": [{"solidity": 0.9967068458937, "top": 405, "right": 3015, "bottom": 2060, "left": 580}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706723f.jpg"} -{"rects": [{"solidity": 0.9967068808857282, "top": 2665, "right": 3590, "bottom": 4450, "left": 900}, {"solidity": 0.9956710754153926, "top": 535, "right": 3595, "bottom": 2315, "left": 910}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711426f.jpg"} -{"rects": [{"solidity": 0.9967068937668323, "top": 810, "right": 2050, "bottom": 3195, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711998f.jpg"} -{"rects": [{"solidity": 0.9967070749463286, "top": 460, "right": 3120, "bottom": 2080, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728577f.jpg"} -{"rects": [{"solidity": 0.9967073465442242, "top": 2035, "right": 2840, "bottom": 3450, "left": 1060}, {"solidity": 0.9969342562657721, "top": 615, "right": 2825, "bottom": 2025, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703049f.jpg"} -{"rects": [{"solidity": 0.9967073611257629, "top": 375, "right": 3185, "bottom": 2005, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704958f.jpg"} -{"rects": [{"solidity": 0.9967078889583381, "top": 415, "right": 3175, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715552f.jpg"} -{"rects": [{"solidity": 0.9967079229162892, "top": 665, "right": 3345, "bottom": 2630, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712140f.jpg"} -{"rects": [{"solidity": 0.996707971032651, "top": 575, "right": 2680, "bottom": 3020, "left": 1000}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700492f.jpg"} -{"rects": [{"solidity": 0.9967081093902771, "top": 1780, "right": 2370, "bottom": 2995, "left": 570}, {"solidity": 0.9951811436054124, "top": 425, "right": 2375, "bottom": 1630, "left": 575}, {"solidity": 0.9947280036043837, "top": 3120, "right": 2375, "bottom": 4325, "left": 575}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716486f.jpg"} -{"rects": [{"solidity": 0.9967081596246907, "top": 730, "right": 2675, "bottom": 2145, "left": 865}, {"solidity": 0.9955176286550881, "top": 2210, "right": 2660, "bottom": 3625, "left": 880}, {"solidity": 0.9893758215798465, "top": 725, "right": 5280, "bottom": 1845, "left": 3490}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727981f.jpg"} -{"rects": [{"solidity": 0.9967081746454707, "top": 415, "right": 3195, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/701150f.jpg"} -{"rects": [{"solidity": 0.9967082933077169, "top": 915, "right": 3860, "bottom": 3340, "left": 2225}, {"solidity": 0.9971581034282992, "top": 910, "right": 2005, "bottom": 3335, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728680f.jpg"} -{"rects": [{"solidity": 0.9967083042328345, "top": 920, "right": 5950, "bottom": 2980, "left": 2705}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703744f.jpg"} -{"rects": [{"solidity": 0.996708308936769, "top": 465, "right": 2925, "bottom": 1885, "left": 1120}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728084f.jpg"} -{"rects": [{"solidity": 0.9967083507016813, "top": 1180, "right": 3255, "bottom": 4660, "left": 610}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707963f.jpg"} -{"rects": [{"solidity": 0.9967083713085305, "top": 600, "right": 2945, "bottom": 4075, "left": 680}], "shape": {"h": 4420, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711313f.jpg"} -{"rects": [{"solidity": 0.9967086984398376, "top": 1215, "right": 1740, "bottom": 2725, "left": 565}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721939f.jpg"} -{"rects": [{"solidity": 0.9967087078642709, "top": 435, "right": 3500, "bottom": 2070, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706293f.jpg"} -{"rects": [{"solidity": 0.9967088666728955, "top": 630, "right": 4925, "bottom": 3310, "left": 900}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725848f.jpg"} -{"rects": [{"solidity": 0.9967089997581589, "top": 4035, "right": 3165, "bottom": 5640, "left": 745}, {"solidity": 0.9986154048543051, "top": 315, "right": 3185, "bottom": 1930, "left": 815}, {"solidity": 0.9968335180173811, "top": 2175, "right": 3175, "bottom": 3785, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720658f.jpg"} -{"rects": [{"solidity": 0.9967090881053672, "top": 1000, "right": 2630, "bottom": 3940, "left": 225}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508317.jpg"} -{"rects": [{"solidity": 0.996709341583299, "top": 840, "right": 2225, "bottom": 3545, "left": 425}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711276f.jpg"} -{"rects": [{"solidity": 0.9967095340617337, "top": 360, "right": 3330, "bottom": 4105, "left": 405}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714555f.jpg"} -{"rects": [{"solidity": 0.9967096168002251, "top": 1090, "right": 3455, "bottom": 4460, "left": 340}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717154f.jpg"} -{"rects": [{"solidity": 0.9967097096562322, "top": 835, "right": 5715, "bottom": 3290, "left": 4075}, {"solidity": 0.996008131941066, "top": 850, "right": 3845, "bottom": 3285, "left": 2230}, {"solidity": 0.9974909077908614, "top": 870, "right": 1975, "bottom": 3285, "left": 370}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728990f.jpg"} -{"rects": [{"solidity": 0.9967097999381708, "top": 2190, "right": 3175, "bottom": 3835, "left": 730}, {"solidity": 0.9973301585035912, "top": 335, "right": 3170, "bottom": 1970, "left": 790}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/702959f.jpg"} -{"rects": [{"solidity": 0.9967100165306333, "top": 375, "right": 3030, "bottom": 2000, "left": 625}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702283f.jpg"} -{"rects": [{"solidity": 0.9967103038500555, "top": 345, "right": 2870, "bottom": 1755, "left": 1015}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717318f.jpg"} -{"rects": [{"solidity": 0.9967104424327425, "top": 890, "right": 2075, "bottom": 3310, "left": 430}, {"solidity": 0.996746276774431, "top": 895, "right": 3935, "bottom": 3315, "left": 2300}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719196f.jpg"} -{"rects": [{"solidity": 0.9967106634136645, "top": 440, "right": 3110, "bottom": 2065, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703865f.jpg"} -{"rects": [{"solidity": 0.9967107658696444, "top": 565, "right": 2780, "bottom": 3620, "left": 735}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715698f.jpg"} -{"rects": [{"solidity": 0.9967108640854844, "top": 405, "right": 3175, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724217f.jpg"} -{"rects": [{"solidity": 0.9967108842303787, "top": 620, "right": 5910, "bottom": 3420, "left": 3915}, {"solidity": 0.9972171843663337, "top": 755, "right": 3830, "bottom": 3190, "left": 2210}, {"solidity": 0.9956637643453023, "top": 2060, "right": 2125, "bottom": 3480, "left": 320}, {"solidity": 0.9940516493382083, "top": 420, "right": 2110, "bottom": 1830, "left": 310}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724958f.jpg"} -{"rects": [{"solidity": 0.9967109582416597, "top": 2235, "right": 3100, "bottom": 3865, "left": 680}, {"solidity": 0.9989776699905829, "top": 375, "right": 3090, "bottom": 1990, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720226f.jpg"} -{"rects": [{"solidity": 0.9967110525271786, "top": 835, "right": 2025, "bottom": 3255, "left": 390}, {"solidity": 0.9963633775292968, "top": 835, "right": 3885, "bottom": 3245, "left": 2265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720562f.jpg"} -{"rects": [{"solidity": 0.9967111896371266, "top": 655, "right": 2760, "bottom": 2100, "left": 940}, {"solidity": 0.9983716134190755, "top": 2165, "right": 2765, "bottom": 3585, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705311f.jpg"} -{"rects": [{"solidity": 0.9967112778712764, "top": 465, "right": 3180, "bottom": 2085, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700586f.jpg"} -{"rects": [{"solidity": 0.9967114577702267, "top": 425, "right": 3145, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728798f.jpg"} -{"rects": [{"solidity": 0.9967115174645962, "top": 410, "right": 3195, "bottom": 2020, "left": 775}, {"solidity": 0.9970521394714629, "top": 2225, "right": 3210, "bottom": 3830, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705867f.jpg"} -{"rects": [{"solidity": 0.9967115518056295, "top": 445, "right": 3165, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719329f.jpg"} -{"rects": [{"solidity": 0.9967116258193082, "top": 795, "right": 3850, "bottom": 3230, "left": 2210}, {"solidity": 0.9966512742782615, "top": 830, "right": 5695, "bottom": 3250, "left": 4060}, {"solidity": 0.9969607994642765, "top": 800, "right": 2005, "bottom": 3215, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713748f.jpg"} -{"rects": [{"solidity": 0.996711630942349, "top": 230, "right": 3245, "bottom": 1865, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717960f.jpg"} -{"rects": [{"solidity": 0.99671169459491, "top": 3210, "right": 3150, "bottom": 5095, "left": 455}, {"solidity": 0.9957018738038292, "top": 720, "right": 3140, "bottom": 2620, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714906f.jpg"} -{"rects": [{"solidity": 0.9967117552334943, "top": 2245, "right": 3130, "bottom": 3865, "left": 705}, {"solidity": 0.9975430134084958, "top": 400, "right": 3135, "bottom": 2015, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730645f.jpg"} -{"rects": [{"solidity": 0.9967117767809626, "top": 495, "right": 3165, "bottom": 2435, "left": 415}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704685f.jpg"} -{"rects": [{"solidity": 0.9967122120103759, "top": 805, "right": 2735, "bottom": 3825, "left": 350}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509043.jpg"} -{"rects": [{"solidity": 0.9967123058296196, "top": 2175, "right": 3180, "bottom": 3810, "left": 780}, {"solidity": 0.9976508527372251, "top": 320, "right": 3165, "bottom": 1955, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707931f.jpg"} -{"rects": [{"solidity": 0.9967123527864636, "top": 575, "right": 2635, "bottom": 2005, "left": 815}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706231f.jpg"} -{"rects": [{"solidity": 0.9967123675457277, "top": 1175, "right": 2990, "bottom": 2800, "left": 575}, {"solidity": 0.9981500320747504, "top": 1185, "right": 5610, "bottom": 2800, "left": 3205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718726f.jpg"} -{"rects": [{"solidity": 0.9967124963365996, "top": 455, "right": 2915, "bottom": 2100, "left": 485}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704702f.jpg"} -{"rects": [{"solidity": 0.9967125431604763, "top": 2455, "right": 2495, "bottom": 3960, "left": 405}, {"solidity": 0.9948398871073892, "top": 630, "right": 2495, "bottom": 2125, "left": 395}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716025f.jpg"} -{"rects": [{"solidity": 0.9967125595169364, "top": 690, "right": 2975, "bottom": 3490, "left": 985}, {"solidity": 0.9961402317800514, "top": 870, "right": 5125, "bottom": 3295, "left": 3505}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720386f.jpg"} -{"rects": [{"solidity": 0.9967126038444721, "top": 740, "right": 3855, "bottom": 3155, "left": 2240}, {"solidity": 0.9972099877200163, "top": 745, "right": 2035, "bottom": 3145, "left": 430}, {"solidity": 0.9964391827482172, "top": 750, "right": 5660, "bottom": 3160, "left": 4065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709687f.jpg"} -{"rects": [{"solidity": 0.9967126233973637, "top": 875, "right": 3955, "bottom": 3285, "left": 2325}, {"solidity": 0.996929024916922, "top": 895, "right": 2065, "bottom": 3300, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724386f.jpg"} -{"rects": [{"solidity": 0.9967126757337537, "top": 2480, "right": 3140, "bottom": 4050, "left": 750}, {"solidity": 0.9680787806945867, "top": 565, "right": 3140, "bottom": 2055, "left": 845}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722331f.jpg"} -{"rects": [{"solidity": 0.9967127209602094, "top": 790, "right": 2105, "bottom": 3200, "left": 490}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722530f.jpg"} -{"rects": [{"solidity": 0.9967127381397086, "top": 485, "right": 2940, "bottom": 1895, "left": 1140}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726548f.jpg"} -{"rects": [{"solidity": 0.9967128231779443, "top": 430, "right": 4850, "bottom": 2860, "left": 3210}, {"solidity": 0.9999519189160601, "top": 430, "right": 3100, "bottom": 2050, "left": 680}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707281f.jpg"} -{"rects": [{"solidity": 0.9967128728142051, "top": 495, "right": 5665, "bottom": 2130, "left": 3250}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707245f.jpg"} -{"rects": [{"solidity": 0.9967129279051368, "top": 845, "right": 1990, "bottom": 3210, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713688f.jpg"} -{"rects": [{"solidity": 0.9967129848310005, "top": 790, "right": 4755, "bottom": 3295, "left": 1400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724247f.jpg"} -{"rects": [{"solidity": 0.9967130684779039, "top": 1055, "right": 3515, "bottom": 5055, "left": 320}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723761f.jpg"} -{"rects": [{"solidity": 0.9967131867207567, "top": 805, "right": 2065, "bottom": 3230, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712314f.jpg"} -{"rects": [{"solidity": 0.9967132051624504, "top": 880, "right": 3645, "bottom": 3280, "left": 2035}, {"solidity": 0.9943537275365718, "top": 1200, "right": 1720, "bottom": 2855, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716574f.jpg"} -{"rects": [{"solidity": 0.9967135286825507, "top": 765, "right": 1990, "bottom": 3125, "left": 425}, {"solidity": 0.9975502238235615, "top": 765, "right": 3765, "bottom": 3125, "left": 2200}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714151f.jpg"} -{"rects": [{"solidity": 0.9967138269303831, "top": 355, "right": 3010, "bottom": 1980, "left": 615}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702289f.jpg"} -{"rects": [{"solidity": 0.9967138821643934, "top": 460, "right": 3200, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725942f.jpg"} -{"rects": [{"solidity": 0.99671388718416, "top": 955, "right": 2695, "bottom": 3985, "left": 245}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508011.jpg"} -{"rects": [{"solidity": 0.9967139819108868, "top": 835, "right": 2080, "bottom": 3265, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712741f.jpg"} -{"rects": [{"solidity": 0.9967142074038995, "top": 2120, "right": 3105, "bottom": 3735, "left": 700}, {"solidity": 0.9972391413860557, "top": 285, "right": 3095, "bottom": 1895, "left": 700}], "shape": {"h": 5985, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/734215f.jpg"} -{"rects": [{"solidity": 0.996714247239429, "top": 2110, "right": 3135, "bottom": 3745, "left": 700}, {"solidity": 0.9967249429490791, "top": 295, "right": 3140, "bottom": 1925, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702361f.jpg"} -{"rects": [{"solidity": 0.9967145141736955, "top": 425, "right": 3085, "bottom": 2040, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701187f.jpg"} -{"rects": [{"solidity": 0.9967145540447846, "top": 890, "right": 5080, "bottom": 3310, "left": 3455}, {"solidity": 0.9970280277797463, "top": 965, "right": 3340, "bottom": 3155, "left": 2040}, {"solidity": 0.992426580674882, "top": 960, "right": 1930, "bottom": 3150, "left": 655}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730759f.jpg"} -{"rects": [{"solidity": 0.9967148828405119, "top": 800, "right": 2155, "bottom": 3210, "left": 525}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710183f.jpg"} -{"rects": [{"solidity": 0.9967150109716036, "top": 2270, "right": 3160, "bottom": 3875, "left": 740}, {"solidity": 0.9958448077979757, "top": 410, "right": 3170, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734099f.jpg"} -{"rects": [{"solidity": 0.9967150124988476, "top": 535, "right": 4925, "bottom": 3570, "left": 1010}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704205f.jpg"} -{"rects": [{"solidity": 0.996715019191466, "top": 430, "right": 2880, "bottom": 1845, "left": 1085}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703167f.jpg"} -{"rects": [{"solidity": 0.9967150876454781, "top": 580, "right": 2635, "bottom": 2025, "left": 805}, {"solidity": 0.9973304239943229, "top": 2035, "right": 2650, "bottom": 3470, "left": 825}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702750f.jpg"} -{"rects": [{"solidity": 0.9967152875585424, "top": 625, "right": 2705, "bottom": 2050, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704840f.jpg"} -{"rects": [{"solidity": 0.9967152916358759, "top": 760, "right": 3880, "bottom": 3175, "left": 2270}, {"solidity": 0.9968810788720883, "top": 770, "right": 2015, "bottom": 3170, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712970f.jpg"} -{"rects": [{"solidity": 0.9967154869343144, "top": 640, "right": 2380, "bottom": 3435, "left": 430}, {"solidity": 0.9965820300998066, "top": 680, "right": 4390, "bottom": 3465, "left": 2445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705755f.jpg"} -{"rects": [{"solidity": 0.9967155086915566, "top": 645, "right": 2445, "bottom": 3700, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712513f.jpg"} -{"rects": [{"solidity": 0.9967155418809398, "top": 665, "right": 3470, "bottom": 2510, "left": 970}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509277.jpg"} -{"rects": [{"solidity": 0.9967155720017679, "top": 960, "right": 2105, "bottom": 2990, "left": 670}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720647f.jpg"} -{"rects": [{"solidity": 0.9967157497337525, "top": 440, "right": 3170, "bottom": 2070, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707125f.jpg"} -{"rects": [{"solidity": 0.996715775766319, "top": 795, "right": 3870, "bottom": 3230, "left": 2240}, {"solidity": 0.9974676889937429, "top": 805, "right": 2045, "bottom": 3230, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709342f.jpg"} -{"rects": [{"solidity": 0.996715800179395, "top": 2220, "right": 3240, "bottom": 4140, "left": 450}, {"solidity": 0.9954083692142088, "top": 420, "right": 3185, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706264f.jpg"} -{"rects": [{"solidity": 0.9967158277876214, "top": 725, "right": 2020, "bottom": 3150, "left": 390}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727336f.jpg"} -{"rects": [{"solidity": 0.9967158887299377, "top": 700, "right": 2775, "bottom": 2130, "left": 910}, {"solidity": 0.9964180555930738, "top": 2155, "right": 2690, "bottom": 3605, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726270f.jpg"} -{"rects": [{"solidity": 0.9967160449759057, "top": 545, "right": 3040, "bottom": 2160, "left": 625}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704575f.jpg"} -{"rects": [{"solidity": 0.9967162977867203, "top": 450, "right": 3175, "bottom": 2065, "left": 750}, {"solidity": 0.9965806772715227, "top": 2295, "right": 3170, "bottom": 3910, "left": 755}, {"solidity": 0.9964785629664925, "top": 4135, "right": 3155, "bottom": 5740, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704106f.jpg"} -{"rects": [{"solidity": 0.9967164733360044, "top": 715, "right": 2830, "bottom": 2145, "left": 1025}, {"solidity": 0.99433563092882, "top": 2310, "right": 2840, "bottom": 3745, "left": 1025}, {"solidity": 0.9984435836116766, "top": 715, "right": 4970, "bottom": 2135, "left": 3175}, {"solidity": 0.9949440753846845, "top": 2315, "right": 4985, "bottom": 3725, "left": 3180}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725314f.jpg"} -{"rects": [{"solidity": 0.9967165831863307, "top": 785, "right": 2045, "bottom": 3210, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725257f.jpg"} -{"rects": [{"solidity": 0.9967166360326662, "top": 430, "right": 3140, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728549f.jpg"} -{"rects": [{"solidity": 0.9967166720488506, "top": 655, "right": 3485, "bottom": 4415, "left": 615}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704015f.jpg"} -{"rects": [{"solidity": 0.9967168463822972, "top": 2260, "right": 3095, "bottom": 3890, "left": 675}, {"solidity": 0.9959316306813952, "top": 375, "right": 3105, "bottom": 1995, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714832f.jpg"} -{"rects": [{"solidity": 0.9967168946105327, "top": 690, "right": 3265, "bottom": 2700, "left": 445}, {"solidity": 0.9963988119884422, "top": 3330, "right": 3225, "bottom": 5345, "left": 420}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729212f.jpg"} -{"rects": [{"solidity": 0.9967170750382849, "top": 745, "right": 2405, "bottom": 3180, "left": 780}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714620f.jpg"} -{"rects": [{"solidity": 0.9967172457547692, "top": 2070, "right": 2605, "bottom": 3505, "left": 775}, {"solidity": 0.9965790828477812, "top": 610, "right": 2595, "bottom": 2050, "left": 765}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704614f.jpg"} -{"rects": [{"solidity": 0.9967172607241677, "top": 565, "right": 5010, "bottom": 3350, "left": 1330}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709158f.jpg"} -{"rects": [{"solidity": 0.9967173495828837, "top": 840, "right": 3885, "bottom": 3255, "left": 2270}, {"solidity": 0.9961867821551887, "top": 845, "right": 2005, "bottom": 3235, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729613f.jpg"} -{"rects": [{"solidity": 0.9967174196573807, "top": 615, "right": 3020, "bottom": 2035, "left": 1200}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727420f.jpg"} -{"rects": [{"solidity": 0.9967175269631714, "top": 745, "right": 2110, "bottom": 3135, "left": 495}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702329f.jpg"} -{"rects": [{"solidity": 0.996717625674126, "top": 475, "right": 3305, "bottom": 2330, "left": 570}], "shape": {"h": 4425, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/702206f.jpg"} -{"rects": [{"solidity": 0.9967176429118874, "top": 760, "right": 1930, "bottom": 3160, "left": 300}, {"solidity": 0.9966910934446994, "top": 815, "right": 5645, "bottom": 3190, "left": 4015}, {"solidity": 0.9971037690362407, "top": 790, "right": 3775, "bottom": 3165, "left": 2155}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715142f.jpg"} -{"rects": [{"solidity": 0.9967177448093478, "top": 385, "right": 3205, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/700041f.jpg"} -{"rects": [{"solidity": 0.9967178686106049, "top": 395, "right": 4140, "bottom": 2820, "left": 1155}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509325.jpg"} -{"rects": [{"solidity": 0.9967178772915964, "top": 315, "right": 5380, "bottom": 3620, "left": 1320}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731389f.jpg"} -{"rects": [{"solidity": 0.9967180855278798, "top": 585, "right": 3345, "bottom": 2575, "left": 470}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723281f.jpg"} -{"rects": [{"solidity": 0.9967181845330798, "top": 795, "right": 3840, "bottom": 3210, "left": 2210}, {"solidity": 0.9981998287090154, "top": 790, "right": 1970, "bottom": 3200, "left": 355}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719298f.jpg"} -{"rects": [{"solidity": 0.9967182326860152, "top": 380, "right": 3155, "bottom": 2005, "left": 740}, {"solidity": 0.996351835127637, "top": 4150, "right": 3110, "bottom": 5765, "left": 705}, {"solidity": 0.9966886122156313, "top": 2255, "right": 3135, "bottom": 3870, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715301f.jpg"} -{"rects": [{"solidity": 0.9967182755732384, "top": 715, "right": 3865, "bottom": 3120, "left": 2260}, {"solidity": 0.9957468995323885, "top": 715, "right": 2040, "bottom": 3120, "left": 440}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731623f.jpg"} -{"rects": [{"solidity": 0.9967182954234386, "top": 2200, "right": 3205, "bottom": 3835, "left": 775}, {"solidity": 0.9950277262530227, "top": 335, "right": 3200, "bottom": 1955, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717619f.jpg"} -{"rects": [{"solidity": 0.9967187002230009, "top": 415, "right": 3310, "bottom": 2050, "left": 875}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727220f.jpg"} -{"rects": [{"solidity": 0.9967187479972827, "top": 860, "right": 3895, "bottom": 3285, "left": 2270}, {"solidity": 0.9982868787122985, "top": 860, "right": 2050, "bottom": 3285, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729942f.jpg"} -{"rects": [{"solidity": 0.9967187601322871, "top": 395, "right": 2945, "bottom": 2020, "left": 540}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701176f.jpg"} -{"rects": [{"solidity": 0.9967188394731819, "top": 990, "right": 5975, "bottom": 3045, "left": 2730}, {"solidity": 0.9970084505533602, "top": 305, "right": 2700, "bottom": 3560, "left": 650}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705914f.jpg"} -{"rects": [{"solidity": 0.9967188621954322, "top": 810, "right": 2070, "bottom": 3235, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719323f.jpg"} -{"rects": [{"solidity": 0.9967189703962642, "top": 685, "right": 4005, "bottom": 3580, "left": 2015}, {"solidity": 0.9963780632059375, "top": 905, "right": 5780, "bottom": 3235, "left": 4225}, {"solidity": 0.9957561230006651, "top": 1195, "right": 1785, "bottom": 3020, "left": 335}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711892f.jpg"} -{"rects": [{"solidity": 0.9967190078382838, "top": 515, "right": 3390, "bottom": 2135, "left": 965}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/703164f.jpg"} -{"rects": [{"solidity": 0.9967190279872854, "top": 490, "right": 3175, "bottom": 2080, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709670f.jpg"} -{"rects": [{"solidity": 0.9967191517527558, "top": 400, "right": 3205, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702637f.jpg"} -{"rects": [{"solidity": 0.9967192066738498, "top": 425, "right": 3145, "bottom": 2040, "left": 725}, {"solidity": 0.996617378909015, "top": 2230, "right": 3140, "bottom": 3830, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719765f.jpg"} -{"rects": [{"solidity": 0.996719239835719, "top": 335, "right": 3255, "bottom": 2355, "left": 425}, {"solidity": 0.9978067138389594, "top": 2475, "right": 3030, "bottom": 4090, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729323f.jpg"} -{"rects": [{"solidity": 0.9967193450488657, "top": 805, "right": 2100, "bottom": 3210, "left": 495}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712814f.jpg"} -{"rects": [{"solidity": 0.9967195960379195, "top": 410, "right": 5155, "bottom": 3700, "left": 1050}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/733425f.jpg"} -{"rects": [{"solidity": 0.9967196895666666, "top": 510, "right": 2920, "bottom": 2095, "left": 950}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711763f.jpg"} -{"rects": [{"solidity": 0.996719707651138, "top": 385, "right": 3190, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701033f.jpg"} -{"rects": [{"solidity": 0.9967197914384334, "top": 620, "right": 2425, "bottom": 3055, "left": 790}, {"solidity": 0.997612695741419, "top": 475, "right": 5380, "bottom": 2105, "left": 2955}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706330f.jpg"} -{"rects": [{"solidity": 0.9967198431622903, "top": 775, "right": 4995, "bottom": 3495, "left": 1110}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700415f.jpg"} -{"rects": [{"solidity": 0.9967199592105819, "top": 370, "right": 3130, "bottom": 1985, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728532f.jpg"} -{"rects": [{"solidity": 0.9967201873059102, "top": 455, "right": 5100, "bottom": 3655, "left": 1080}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722935f.jpg"} -{"rects": [{"solidity": 0.9967201904293154, "top": 2370, "right": 3340, "bottom": 4310, "left": 355}, {"solidity": 0.9947048372279554, "top": 430, "right": 3325, "bottom": 2300, "left": 415}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733750f.jpg"} -{"rects": [{"solidity": 0.99672074614999, "top": 450, "right": 3090, "bottom": 2080, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702038f.jpg"} -{"rects": [{"solidity": 0.9967211518171636, "top": 810, "right": 2050, "bottom": 3215, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712493f.jpg"} -{"rects": [{"solidity": 0.9967212785002364, "top": 405, "right": 3110, "bottom": 1965, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728409f.jpg"} -{"rects": [{"solidity": 0.9967213948858848, "top": 415, "right": 3170, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/720772f.jpg"} -{"rects": [{"solidity": 0.9967214395712802, "top": 365, "right": 3210, "bottom": 1995, "left": 815}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711841f.jpg"} -{"rects": [{"solidity": 0.9967214820982515, "top": 955, "right": 3175, "bottom": 2165, "left": 1370}], "shape": {"h": 3015, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/1509645.jpg"} -{"rects": [{"solidity": 0.9967215552889979, "top": 795, "right": 3885, "bottom": 3205, "left": 2260}, {"solidity": 0.9958579313495992, "top": 790, "right": 2015, "bottom": 3180, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732559f.jpg"} -{"rects": [{"solidity": 0.9967216048159817, "top": 790, "right": 2085, "bottom": 3215, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714013f.jpg"} -{"rects": [{"solidity": 0.9967216990928756, "top": 405, "right": 3160, "bottom": 2040, "left": 735}, {"solidity": 0.996214820236203, "top": 2285, "right": 3125, "bottom": 3925, "left": 710}, {"solidity": 0.9962058004918527, "top": 4145, "right": 3110, "bottom": 5770, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719537f.jpg"} -{"rects": [{"solidity": 0.9967217810595331, "top": 2245, "right": 3210, "bottom": 3885, "left": 780}, {"solidity": 0.995455086730441, "top": 380, "right": 3190, "bottom": 1970, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731539f.jpg"} -{"rects": [{"solidity": 0.9967218503533692, "top": 590, "right": 3305, "bottom": 2590, "left": 510}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717895f.jpg"} -{"rects": [{"solidity": 0.9967220338215279, "top": 885, "right": 2600, "bottom": 3770, "left": 460}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507907.jpg"} -{"rects": [{"solidity": 0.9967223850297147, "top": 435, "right": 3160, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728740f.jpg"} -{"rects": [{"solidity": 0.9967226013809751, "top": 775, "right": 5710, "bottom": 3160, "left": 4115}, {"solidity": 0.9975362614776405, "top": 740, "right": 3855, "bottom": 3120, "left": 2270}, {"solidity": 0.9988242982846208, "top": 740, "right": 2000, "bottom": 3110, "left": 425}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731689f.jpg"} -{"rects": [{"solidity": 0.9967228342773996, "top": 4090, "right": 3100, "bottom": 5705, "left": 695}, {"solidity": 0.9953867565524602, "top": 2210, "right": 3120, "bottom": 3830, "left": 710}, {"solidity": 0.9952881920467931, "top": 420, "right": 3130, "bottom": 1995, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718060f.jpg"} -{"rects": [{"solidity": 0.9967229289263188, "top": 2015, "right": 5200, "bottom": 3430, "left": 3430}, {"solidity": 0.995616463175271, "top": 2070, "right": 2610, "bottom": 3495, "left": 835}, {"solidity": 0.9966009138526691, "top": 670, "right": 2620, "bottom": 2055, "left": 815}, {"solidity": 0.9961950629638896, "top": 605, "right": 5205, "bottom": 1985, "left": 3440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705287f.jpg"} -{"rects": [{"solidity": 0.9967229628290355, "top": 825, "right": 5715, "bottom": 3240, "left": 4100}, {"solidity": 0.996837859884369, "top": 820, "right": 2050, "bottom": 3230, "left": 440}, {"solidity": 0.9951310015804612, "top": 820, "right": 3880, "bottom": 3230, "left": 2280}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723315f.jpg"} -{"rects": [{"solidity": 0.9967229660877133, "top": 890, "right": 1980, "bottom": 3315, "left": 375}, {"solidity": 0.9959139491340303, "top": 870, "right": 3825, "bottom": 3290, "left": 2205}, {"solidity": 0.9947344307360015, "top": 875, "right": 5680, "bottom": 3285, "left": 4080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731564f.jpg"} -{"rects": [{"solidity": 0.9967230600194046, "top": 395, "right": 3145, "bottom": 2020, "left": 720}, {"solidity": 0.9956792352767014, "top": 2220, "right": 3135, "bottom": 3845, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724425f.jpg"} -{"rects": [{"solidity": 0.9967231050400243, "top": 695, "right": 2600, "bottom": 3695, "left": 235}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715886f.jpg"} -{"rects": [{"solidity": 0.9967231308219425, "top": 790, "right": 2025, "bottom": 3180, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711156f.jpg"} -{"rects": [{"solidity": 0.9967231863478948, "top": 800, "right": 2040, "bottom": 3220, "left": 415}, {"solidity": 0.9951375878892472, "top": 825, "right": 3830, "bottom": 3230, "left": 2220}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710539f.jpg"} -{"rects": [{"solidity": 0.9967232495084875, "top": 815, "right": 3910, "bottom": 3240, "left": 2290}, {"solidity": 0.997585349834516, "top": 800, "right": 2035, "bottom": 3230, "left": 425}, {"solidity": 0.9966937015337731, "top": 830, "right": 5760, "bottom": 3250, "left": 4150}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733868f.jpg"} -{"rects": [{"solidity": 0.9967233675114338, "top": 360, "right": 3125, "bottom": 1975, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719424f.jpg"} -{"rects": [{"solidity": 0.9967236892350247, "top": 2265, "right": 3165, "bottom": 3890, "left": 745}, {"solidity": 0.9990129299637857, "top": 440, "right": 3145, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714957f.jpg"} -{"rects": [{"solidity": 0.9967237637402152, "top": 2185, "right": 3210, "bottom": 3820, "left": 790}, {"solidity": 0.9979700657543293, "top": 4050, "right": 3195, "bottom": 5665, "left": 790}, {"solidity": 0.9972027017807191, "top": 320, "right": 3195, "bottom": 1935, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710718f.jpg"} -{"rects": [{"solidity": 0.9967239539656798, "top": 425, "right": 3210, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720905f.jpg"} -{"rects": [{"solidity": 0.9967240308190883, "top": 670, "right": 4005, "bottom": 3090, "left": 2375}, {"solidity": 0.9962481352720102, "top": 685, "right": 5855, "bottom": 3115, "left": 4210}, {"solidity": 0.9956992083583972, "top": 690, "right": 2150, "bottom": 3110, "left": 520}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710347f.jpg"} -{"rects": [{"solidity": 0.9967241307395892, "top": 440, "right": 3185, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715659f.jpg"} -{"rects": [{"solidity": 0.9967245951533361, "top": 480, "right": 5110, "bottom": 3680, "left": 1080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702095f.jpg"} -{"rects": [{"solidity": 0.9967246229970974, "top": 790, "right": 2060, "bottom": 3220, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719335f.jpg"} -{"rects": [{"solidity": 0.9967246270768764, "top": 570, "right": 4905, "bottom": 3455, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717527f.jpg"} -{"rects": [{"solidity": 0.9967246574011079, "top": 540, "right": 3050, "bottom": 1945, "left": 1200}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725762f.jpg"} -{"rects": [{"solidity": 0.9967246647401238, "top": 295, "right": 3165, "bottom": 1930, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707249f.jpg"} -{"rects": [{"solidity": 0.9967246960222421, "top": 365, "right": 5120, "bottom": 3655, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701750f.jpg"} -{"rects": [{"solidity": 0.996724738275769, "top": 435, "right": 5105, "bottom": 3655, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732632f.jpg"} -{"rects": [{"solidity": 0.9967248562170663, "top": 840, "right": 5735, "bottom": 3290, "left": 4090}, {"solidity": 0.9976300357736492, "top": 835, "right": 3895, "bottom": 3260, "left": 2270}, {"solidity": 0.9972402377839463, "top": 830, "right": 2020, "bottom": 3250, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704845f.jpg"} -{"rects": [{"solidity": 0.9967249047418791, "top": 375, "right": 3245, "bottom": 2010, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725864f.jpg"} -{"rects": [{"solidity": 0.9967249153909693, "top": 380, "right": 3025, "bottom": 2015, "left": 610}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720844f.jpg"} -{"rects": [{"solidity": 0.9967249890725838, "top": 770, "right": 1985, "bottom": 3185, "left": 355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717986f.jpg"} -{"rects": [{"solidity": 0.9967250986503534, "top": 425, "right": 3140, "bottom": 2040, "left": 710}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/701945f.jpg"} -{"rects": [{"solidity": 0.9967252162306883, "top": 600, "right": 4560, "bottom": 3665, "left": 1415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733385f.jpg"} -{"rects": [{"solidity": 0.9967252553024352, "top": 705, "right": 2575, "bottom": 3525, "left": 755}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706777f.jpg"} -{"rects": [{"solidity": 0.9967255617438064, "top": 490, "right": 3185, "bottom": 2115, "left": 760}, {"solidity": 0.9984949424933252, "top": 2255, "right": 3180, "bottom": 3875, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714277f.jpg"} -{"rects": [{"solidity": 0.9967258320229128, "top": 805, "right": 3865, "bottom": 3225, "left": 2240}, {"solidity": 0.9965024745723081, "top": 805, "right": 2020, "bottom": 3215, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730189f.jpg"} -{"rects": [{"solidity": 0.9967259404536409, "top": 395, "right": 3215, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702975f.jpg"} -{"rects": [{"solidity": 0.9967259634652429, "top": 435, "right": 3160, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705716f.jpg"} -{"rects": [{"solidity": 0.9967260371353477, "top": 430, "right": 3235, "bottom": 2030, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725121f.jpg"} -{"rects": [{"solidity": 0.9967260775321443, "top": 805, "right": 3860, "bottom": 3225, "left": 2225}, {"solidity": 0.9972219174899815, "top": 795, "right": 2025, "bottom": 3210, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724357f.jpg"} -{"rects": [{"solidity": 0.9967260903688754, "top": 535, "right": 3165, "bottom": 2165, "left": 740}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703155f.jpg"} -{"rects": [{"solidity": 0.9967261375216343, "top": 805, "right": 2035, "bottom": 3220, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718802f.jpg"} -{"rects": [{"solidity": 0.9967262509738091, "top": 1015, "right": 3585, "bottom": 5030, "left": 355}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725878f.jpg"} -{"rects": [{"solidity": 0.9967264709025032, "top": 410, "right": 3230, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728077f.jpg"} -{"rects": [{"solidity": 0.9967265441396783, "top": 625, "right": 2585, "bottom": 3705, "left": 570}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715638f.jpg"} -{"rects": [{"solidity": 0.9967266858965399, "top": 900, "right": 2360, "bottom": 3625, "left": 535}], "shape": {"h": 4410, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711181f.jpg"} -{"rects": [{"solidity": 0.9967267368943105, "top": 515, "right": 5100, "bottom": 3760, "left": 1000}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709200f.jpg"} -{"rects": [{"solidity": 0.9967268809140337, "top": 455, "right": 3310, "bottom": 2470, "left": 530}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722443f.jpg"} -{"rects": [{"solidity": 0.996726888823434, "top": 390, "right": 3070, "bottom": 1980, "left": 675}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718203f.jpg"} -{"rects": [{"solidity": 0.9967269230219903, "top": 855, "right": 5245, "bottom": 3590, "left": 3310}, {"solidity": 0.9814395751090425, "top": 845, "right": 2820, "bottom": 3590, "left": 885}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702763f.jpg"} -{"rects": [{"solidity": 0.9967270142889205, "top": 1020, "right": 3715, "bottom": 2910, "left": 2285}, {"solidity": 0.995934883022269, "top": 2115, "right": 2120, "bottom": 3565, "left": 260}, {"solidity": 0.9974258933244516, "top": 2105, "right": 5735, "bottom": 3545, "left": 3895}, {"solidity": 0.9941889723406477, "top": 430, "right": 5755, "bottom": 1865, "left": 3900}, {"solidity": 0.995604175317516, "top": 435, "right": 2115, "bottom": 1880, "left": 285}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731456f.jpg"} -{"rects": [{"solidity": 0.9967270561715909, "top": 650, "right": 3165, "bottom": 2640, "left": 580}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517005.jpg"} -{"rects": [{"solidity": 0.9967273752762712, "top": 2390, "right": 3140, "bottom": 3995, "left": 740}, {"solidity": 0.9968379057282175, "top": 545, "right": 3135, "bottom": 2145, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724860f.jpg"} -{"rects": [{"solidity": 0.9967274008133465, "top": 4015, "right": 3185, "bottom": 5655, "left": 775}, {"solidity": 0.9982486247213357, "top": 305, "right": 3210, "bottom": 1930, "left": 795}, {"solidity": 0.9970690183307269, "top": 2145, "right": 3190, "bottom": 3780, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703042f.jpg"} -{"rects": [{"solidity": 0.99672777198892, "top": 930, "right": 3545, "bottom": 4990, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710952f.jpg"} -{"rects": [{"solidity": 0.9967278061664265, "top": 2265, "right": 3220, "bottom": 3880, "left": 815}, {"solidity": 0.9964449720816156, "top": 4040, "right": 3220, "bottom": 5650, "left": 820}, {"solidity": 0.9980642546878192, "top": 490, "right": 3215, "bottom": 2070, "left": 835}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730802f.jpg"} -{"rects": [{"solidity": 0.9967278232698976, "top": 395, "right": 3145, "bottom": 2000, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729843f.jpg"} -{"rects": [{"solidity": 0.996727897937064, "top": 800, "right": 2300, "bottom": 3510, "left": 485}], "shape": {"h": 4420, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711329f.jpg"} -{"rects": [{"solidity": 0.9967280189787705, "top": 2260, "right": 3175, "bottom": 3880, "left": 740}, {"solidity": 0.9957446121559448, "top": 445, "right": 3170, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/706153f.jpg"} -{"rects": [{"solidity": 0.9967280235162373, "top": 430, "right": 5015, "bottom": 3665, "left": 1020}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712051f.jpg"} -{"rects": [{"solidity": 0.9967280545947462, "top": 815, "right": 5675, "bottom": 3235, "left": 4060}, {"solidity": 0.9958067926695556, "top": 805, "right": 3800, "bottom": 3220, "left": 2200}, {"solidity": 0.9975445440687134, "top": 800, "right": 1950, "bottom": 3210, "left": 355}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734744f.jpg"} -{"rects": [{"solidity": 0.9967281101525483, "top": 400, "right": 3210, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725830f.jpg"} -{"rects": [{"solidity": 0.9967281207203949, "top": 465, "right": 3080, "bottom": 2075, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729965f.jpg"} -{"rects": [{"solidity": 0.9967283255589513, "top": 425, "right": 3190, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707039f.jpg"} -{"rects": [{"solidity": 0.9967283491563729, "top": 590, "right": 3365, "bottom": 2505, "left": 640}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721708f.jpg"} -{"rects": [{"solidity": 0.9967285374840732, "top": 465, "right": 5095, "bottom": 3695, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708443f.jpg"} -{"rects": [{"solidity": 0.9967285633126728, "top": 735, "right": 3945, "bottom": 3160, "left": 2305}, {"solidity": 0.9967882150963535, "top": 735, "right": 2045, "bottom": 3150, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710961f.jpg"} -{"rects": [{"solidity": 0.9967287037007341, "top": 400, "right": 3265, "bottom": 2020, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726114f.jpg"} -{"rects": [{"solidity": 0.9967290936984398, "top": 430, "right": 3220, "bottom": 2055, "left": 790}, {"solidity": 0.9955865603644647, "top": 2220, "right": 3235, "bottom": 3845, "left": 810}, {"solidity": 0.9968774395003903, "top": 4070, "right": 3235, "bottom": 5680, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723559f.jpg"} -{"rects": [{"solidity": 0.9967291024225581, "top": 620, "right": 1875, "bottom": 3045, "left": 225}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721686f.jpg"} -{"rects": [{"solidity": 0.9967291369131472, "top": 830, "right": 2230, "bottom": 3240, "left": 610}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708928f.jpg"} -{"rects": [{"solidity": 0.9967291391765258, "top": 290, "right": 2945, "bottom": 1460, "left": 1005}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702070f.jpg"} -{"rects": [{"solidity": 0.9967291665993988, "top": 2275, "right": 3095, "bottom": 3895, "left": 685}, {"solidity": 0.9969428467796259, "top": 410, "right": 3110, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719559f.jpg"} -{"rects": [{"solidity": 0.9967291920422249, "top": 440, "right": 3150, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734679f.jpg"} -{"rects": [{"solidity": 0.9967292746113989, "top": 2280, "right": 3155, "bottom": 3890, "left": 740}, {"solidity": 0.9977912809269464, "top": 445, "right": 3155, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734787f.jpg"} -{"rects": [{"solidity": 0.9967294778764484, "top": 415, "right": 3205, "bottom": 2030, "left": 780}, {"solidity": 0.9943479548351379, "top": 4095, "right": 3180, "bottom": 5720, "left": 750}, {"solidity": 0.9951401760515626, "top": 2235, "right": 3200, "bottom": 3865, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707022f.jpg"} -{"rects": [{"solidity": 0.996729485910019, "top": 2250, "right": 3140, "bottom": 3865, "left": 720}, {"solidity": 0.9969965985183651, "top": 450, "right": 3150, "bottom": 2065, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723183f.jpg"} -{"rects": [{"solidity": 0.9967295294878755, "top": 745, "right": 3825, "bottom": 3150, "left": 2215}, {"solidity": 0.9965628201896669, "top": 755, "right": 2015, "bottom": 3155, "left": 405}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730475f.jpg"} -{"rects": [{"solidity": 0.9967295520996438, "top": 1010, "right": 3520, "bottom": 5075, "left": 460}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708505f.jpg"} -{"rects": [{"solidity": 0.9967297525299885, "top": 810, "right": 1990, "bottom": 3185, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712505f.jpg"} -{"rects": [{"solidity": 0.9967297554010034, "top": 405, "right": 3210, "bottom": 2035, "left": 775}, {"solidity": 0.9974764071183824, "top": 2255, "right": 3195, "bottom": 3880, "left": 765}, {"solidity": 0.9970702872925324, "top": 4135, "right": 3195, "bottom": 5745, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725108f.jpg"} -{"rects": [{"solidity": 0.9967300125656787, "top": 2180, "right": 2680, "bottom": 3615, "left": 870}, {"solidity": 0.9973362940887155, "top": 705, "right": 2680, "bottom": 2140, "left": 875}, {"solidity": 0.9981973751424418, "top": 715, "right": 5235, "bottom": 2140, "left": 3435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727643f.jpg"} -{"rects": [{"solidity": 0.9967301025628741, "top": 350, "right": 3765, "bottom": 2785, "left": 740}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715814f.jpg"} -{"rects": [{"solidity": 0.9967301033055859, "top": 430, "right": 3085, "bottom": 2055, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729097f.jpg"} -{"rects": [{"solidity": 0.9967301221539953, "top": 820, "right": 1965, "bottom": 3225, "left": 360}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722703f.jpg"} -{"rects": [{"solidity": 0.9967302679194768, "top": 795, "right": 2035, "bottom": 3220, "left": 390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716794f.jpg"} -{"rects": [{"solidity": 0.9967303245419705, "top": 490, "right": 3150, "bottom": 2110, "left": 735}, {"solidity": 0.9957806455384955, "top": 2245, "right": 3170, "bottom": 3860, "left": 765}, {"solidity": 0.996311709506324, "top": 4030, "right": 3195, "bottom": 5635, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730714f.jpg"} -{"rects": [{"solidity": 0.9967304788472858, "top": 470, "right": 3145, "bottom": 2105, "left": 725}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705535f.jpg"} -{"rects": [{"solidity": 0.9967305473943163, "top": 465, "right": 3195, "bottom": 2090, "left": 755}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733981f.jpg"} -{"rects": [{"solidity": 0.9967305767417737, "top": 3115, "right": 3290, "bottom": 5025, "left": 570}, {"solidity": 0.9936464182076262, "top": 615, "right": 3320, "bottom": 2550, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715025f.jpg"} -{"rects": [{"solidity": 0.9967306499159356, "top": 725, "right": 5655, "bottom": 3150, "left": 4035}, {"solidity": 0.9978522406136455, "top": 730, "right": 3740, "bottom": 3150, "left": 2130}, {"solidity": 0.9970396777823348, "top": 900, "right": 1790, "bottom": 2655, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702912f.jpg"} -{"rects": [{"solidity": 0.9967306959224154, "top": 770, "right": 3875, "bottom": 3195, "left": 2260}, {"solidity": 0.9971408866165647, "top": 765, "right": 2050, "bottom": 3180, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717750f.jpg"} -{"rects": [{"solidity": 0.9967307157501245, "top": 450, "right": 3120, "bottom": 2065, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720382f.jpg"} -{"rects": [{"solidity": 0.9967309535375284, "top": 395, "right": 3195, "bottom": 2000, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719020f.jpg"} -{"rects": [{"solidity": 0.9967309749965537, "top": 750, "right": 2055, "bottom": 3145, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712237f.jpg"} -{"rects": [{"solidity": 0.996731097668034, "top": 840, "right": 2075, "bottom": 3260, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710409f.jpg"} -{"rects": [{"solidity": 0.9967315290968357, "top": 370, "right": 5595, "bottom": 3940, "left": 1160}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/706443f.jpg"} -{"rects": [{"solidity": 0.9967316001487948, "top": 415, "right": 3210, "bottom": 2060, "left": 780}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719816f.jpg"} -{"rects": [{"solidity": 0.9967320890779781, "top": 450, "right": 5795, "bottom": 4120, "left": 1175}], "shape": {"h": 4430, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708850f.jpg"} -{"rects": [{"solidity": 0.9967323644740077, "top": 2290, "right": 3110, "bottom": 3905, "left": 690}, {"solidity": 0.9956598794339085, "top": 400, "right": 3120, "bottom": 2030, "left": 695}, {"solidity": 0.9958904242990836, "top": 4135, "right": 3090, "bottom": 5745, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729882f.jpg"} -{"rects": [{"solidity": 0.9967325884611034, "top": 405, "right": 5165, "bottom": 3660, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732644f.jpg"} -{"rects": [{"solidity": 0.996732836734852, "top": 400, "right": 3730, "bottom": 2465, "left": 505}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733001f.jpg"} -{"rects": [{"solidity": 0.9967328828622174, "top": 775, "right": 2020, "bottom": 3180, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723712f.jpg"} -{"rects": [{"solidity": 0.9967329456471306, "top": 1070, "right": 3450, "bottom": 5025, "left": 410}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717468f.jpg"} -{"rects": [{"solidity": 0.9967330432475245, "top": 465, "right": 4965, "bottom": 3625, "left": 975}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717622f.jpg"} -{"rects": [{"solidity": 0.9967331116708215, "top": 740, "right": 2045, "bottom": 3160, "left": 430}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705462f.jpg"} -{"rects": [{"solidity": 0.99673312307452, "top": 445, "right": 3035, "bottom": 2050, "left": 655}, {"solidity": 0.9961083206528326, "top": 2295, "right": 3040, "bottom": 3875, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734723f.jpg"} -{"rects": [{"solidity": 0.9967331425404116, "top": 665, "right": 5315, "bottom": 3470, "left": 3330}, {"solidity": 0.9990047372667281, "top": 660, "right": 2790, "bottom": 3450, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712225f.jpg"} -{"rects": [{"solidity": 0.9967332697070224, "top": 775, "right": 3640, "bottom": 3295, "left": 375}, {"solidity": 0.990646479111969, "top": 945, "right": 5725, "bottom": 2865, "left": 3810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723919f.jpg"} -{"rects": [{"solidity": 0.9967333961071627, "top": 2240, "right": 3115, "bottom": 3860, "left": 700}, {"solidity": 0.996335540410846, "top": 405, "right": 3115, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719322f.jpg"} -{"rects": [{"solidity": 0.9967334263265221, "top": 430, "right": 3275, "bottom": 2055, "left": 845}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704634f.jpg"} -{"rects": [{"solidity": 0.996733460893269, "top": 680, "right": 5635, "bottom": 3090, "left": 4035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733898f.jpg"} -{"rects": [{"solidity": 0.9967334762044127, "top": 845, "right": 5740, "bottom": 3290, "left": 4070}, {"solidity": 0.998796014037964, "top": 840, "right": 3870, "bottom": 3265, "left": 2250}, {"solidity": 0.9959167807140975, "top": 830, "right": 2050, "bottom": 3265, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731479f.jpg"} -{"rects": [{"solidity": 0.9967335853488457, "top": 455, "right": 3190, "bottom": 2045, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714021f.jpg"} -{"rects": [{"solidity": 0.9967335858457643, "top": 445, "right": 3170, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714963f.jpg"} -{"rects": [{"solidity": 0.996733598442077, "top": 750, "right": 3925, "bottom": 3155, "left": 2325}, {"solidity": 0.9960651352840764, "top": 790, "right": 2055, "bottom": 3165, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714000f.jpg"} -{"rects": [{"solidity": 0.9967336341799771, "top": 390, "right": 3065, "bottom": 2005, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728379f.jpg"} -{"rects": [{"solidity": 0.996733706435686, "top": 770, "right": 1995, "bottom": 3170, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713214f.jpg"} -{"rects": [{"solidity": 0.9967338051170387, "top": 770, "right": 2085, "bottom": 3165, "left": 480}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723604f.jpg"} -{"rects": [{"solidity": 0.9967338540297817, "top": 3280, "right": 3425, "bottom": 5275, "left": 615}, {"solidity": 0.9957441986947063, "top": 960, "right": 3440, "bottom": 2960, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726238f.jpg"} -{"rects": [{"solidity": 0.9967339349046703, "top": 435, "right": 5165, "bottom": 3705, "left": 1145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725387f.jpg"} -{"rects": [{"solidity": 0.9967339696092015, "top": 395, "right": 3220, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707459f.jpg"} -{"rects": [{"solidity": 0.9967340038547305, "top": 410, "right": 3185, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730302f.jpg"} -{"rects": [{"solidity": 0.996734012581529, "top": 2055, "right": 2785, "bottom": 3480, "left": 945}, {"solidity": 0.9971915787772255, "top": 635, "right": 2770, "bottom": 2000, "left": 940}, {"solidity": 0.9976262774172665, "top": 610, "right": 5145, "bottom": 2020, "left": 3405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707298f.jpg"} -{"rects": [{"solidity": 0.9967340144978366, "top": 515, "right": 5050, "bottom": 3735, "left": 1030}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705979f.jpg"} -{"rects": [{"solidity": 0.9967340476335467, "top": 645, "right": 3585, "bottom": 3060, "left": 1950}, {"solidity": 0.9975934815157532, "top": 3195, "right": 1825, "bottom": 5610, "left": 200}, {"solidity": 0.9962284292195452, "top": 615, "right": 1850, "bottom": 3035, "left": 225}, {"solidity": 0.9941702715847135, "top": 3745, "right": 3455, "bottom": 4990, "left": 1870}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720221f.jpg"} -{"rects": [{"solidity": 0.996734072794704, "top": 535, "right": 3350, "bottom": 2440, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724614f.jpg"} -{"rects": [{"solidity": 0.9967341227750607, "top": 820, "right": 2030, "bottom": 3240, "left": 410}, {"solidity": 0.9959400040826775, "top": 820, "right": 3860, "bottom": 3240, "left": 2250}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709115f.jpg"} -{"rects": [{"solidity": 0.9967342506942849, "top": 930, "right": 1960, "bottom": 2870, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701433f.jpg"} -{"rects": [{"solidity": 0.9967342645765094, "top": 760, "right": 2040, "bottom": 3165, "left": 420}, {"solidity": 0.9955132241813602, "top": 780, "right": 3840, "bottom": 3140, "left": 2270}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719504f.jpg"} -{"rects": [{"solidity": 0.9967342941275669, "top": 455, "right": 3195, "bottom": 2070, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710584f.jpg"} -{"rects": [{"solidity": 0.9967343594346583, "top": 380, "right": 3840, "bottom": 2835, "left": 820}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716334f.jpg"} -{"rects": [{"solidity": 0.9967345855609782, "top": 445, "right": 3140, "bottom": 2060, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728475f.jpg"} -{"rects": [{"solidity": 0.9967347718788406, "top": 395, "right": 3200, "bottom": 1995, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719973f.jpg"} -{"rects": [{"solidity": 0.9967347992320971, "top": 460, "right": 5575, "bottom": 2085, "left": 3160}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703936f.jpg"} -{"rects": [{"solidity": 0.9967348162438003, "top": 2220, "right": 3080, "bottom": 3825, "left": 670}, {"solidity": 0.9935839067601493, "top": 375, "right": 3095, "bottom": 2000, "left": 685}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/724588f.jpg"} -{"rects": [{"solidity": 0.9967349274952276, "top": 800, "right": 2065, "bottom": 3210, "left": 455}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717868f.jpg"} -{"rects": [{"solidity": 0.9967350566052317, "top": 270, "right": 3155, "bottom": 1900, "left": 745}, {"solidity": 0.9962239385484793, "top": 2110, "right": 3135, "bottom": 3755, "left": 740}, {"solidity": 0.9953487619355883, "top": 3970, "right": 3120, "bottom": 5610, "left": 715}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719098f.jpg"} -{"rects": [{"solidity": 0.9967352696464546, "top": 850, "right": 1675, "bottom": 3075, "left": 325}, {"solidity": 0.995063952898183, "top": 2115, "right": 5620, "bottom": 3475, "left": 3395}, {"solidity": 0.9956458081354638, "top": 850, "right": 3140, "bottom": 3080, "left": 1800}, {"solidity": 0.9909650960401433, "top": 425, "right": 5645, "bottom": 1800, "left": 3540}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723448f.jpg"} -{"rects": [{"solidity": 0.996735277014402, "top": 915, "right": 3545, "bottom": 4915, "left": 320}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708609f.jpg"} -{"rects": [{"solidity": 0.996735301615258, "top": 720, "right": 5755, "bottom": 3275, "left": 4050}, {"solidity": 0.9954064529476607, "top": 775, "right": 2025, "bottom": 3200, "left": 400}, {"solidity": 0.9949391689411059, "top": 785, "right": 3895, "bottom": 3185, "left": 2280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716878f.jpg"} -{"rects": [{"solidity": 0.9967353857755634, "top": 760, "right": 3700, "bottom": 3170, "left": 2070}, {"solidity": 0.9975247524752475, "top": 775, "right": 1935, "bottom": 3155, "left": 320}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711093f.jpg"} -{"rects": [{"solidity": 0.9967354337000692, "top": 750, "right": 2625, "bottom": 2175, "left": 805}, {"solidity": 0.9953104446519998, "top": 685, "right": 4970, "bottom": 2110, "left": 3145}, {"solidity": 0.99821772009143, "top": 2135, "right": 4960, "bottom": 3545, "left": 3180}, {"solidity": 0.9950890518596124, "top": 2180, "right": 2635, "bottom": 3590, "left": 840}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705010f.jpg"} -{"rects": [{"solidity": 0.9967354990613765, "top": 790, "right": 5760, "bottom": 3220, "left": 4125}, {"solidity": 0.9976863769757504, "top": 795, "right": 3915, "bottom": 3215, "left": 2295}, {"solidity": 0.9968029095492562, "top": 795, "right": 2075, "bottom": 3195, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704800f.jpg"} -{"rects": [{"solidity": 0.9967355509037067, "top": 775, "right": 2035, "bottom": 3205, "left": 405}, {"solidity": 0.9970584333002178, "top": 790, "right": 3860, "bottom": 3200, "left": 2240}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732545f.jpg"} -{"rects": [{"solidity": 0.9967355821545157, "top": 495, "right": 5645, "bottom": 2115, "left": 3250}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724282f.jpg"} -{"rects": [{"solidity": 0.9967356350129053, "top": 2210, "right": 3260, "bottom": 3820, "left": 845}, {"solidity": 0.9965262389530488, "top": 395, "right": 3265, "bottom": 2005, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726798f.jpg"} -{"rects": [{"solidity": 0.9967358897913026, "top": 765, "right": 3880, "bottom": 3180, "left": 2250}, {"solidity": 0.9989930520592085, "top": 755, "right": 2000, "bottom": 3160, "left": 390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733338f.jpg"} -{"rects": [{"solidity": 0.9967359966374855, "top": 800, "right": 1955, "bottom": 3160, "left": 330}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704664f.jpg"} -{"rects": [{"solidity": 0.9967360731435798, "top": 355, "right": 3185, "bottom": 1960, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702945f.jpg"} -{"rects": [{"solidity": 0.9967361519359823, "top": 2165, "right": 3150, "bottom": 3790, "left": 715}, {"solidity": 0.9962259029721015, "top": 375, "right": 3130, "bottom": 1990, "left": 710}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/730403f.jpg"} -{"rects": [{"solidity": 0.9967362352506058, "top": 545, "right": 3130, "bottom": 2160, "left": 715}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723674f.jpg"} -{"rects": [{"solidity": 0.9967364202879785, "top": 410, "right": 3175, "bottom": 2000, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717704f.jpg"} -{"rects": [{"solidity": 0.9967364431318602, "top": 715, "right": 2515, "bottom": 3385, "left": 540}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714168f.jpg"} -{"rects": [{"solidity": 0.9967364708227631, "top": 455, "right": 3165, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711159f.jpg"} -{"rects": [{"solidity": 0.9967365683687326, "top": 485, "right": 3355, "bottom": 2115, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706163f.jpg"} -{"rects": [{"solidity": 0.9967367598974688, "top": 485, "right": 3040, "bottom": 2125, "left": 630}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705496f.jpg"} -{"rects": [{"solidity": 0.9967368321636942, "top": 400, "right": 4820, "bottom": 3670, "left": 790}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715253f.jpg"} -{"rects": [{"solidity": 0.9967369329229818, "top": 2705, "right": 3490, "bottom": 4510, "left": 775}, {"solidity": 0.9952794493892112, "top": 585, "right": 3520, "bottom": 2400, "left": 800}, {"solidity": 0.9912379240620085, "top": 4780, "right": 3335, "bottom": 6505, "left": 1005}], "shape": {"h": 6900, "w": 4385}, "file": "/usr/local/google/home/danvk/milstein/711558f.jpg"} -{"rects": [{"solidity": 0.9967370667311196, "top": 2235, "right": 3170, "bottom": 3865, "left": 725}, {"solidity": 0.9974927096941106, "top": 4090, "right": 3155, "bottom": 5710, "left": 715}, {"solidity": 0.9973822744414504, "top": 400, "right": 3175, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706525f.jpg"} -{"rects": [{"solidity": 0.9967371463936263, "top": 435, "right": 4520, "bottom": 3635, "left": 2495}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733029f.jpg"} -{"rects": [{"solidity": 0.9967371933793698, "top": 470, "right": 5140, "bottom": 3580, "left": 1230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727574f.jpg"} -{"rects": [{"solidity": 0.9967372320211888, "top": 4075, "right": 3085, "bottom": 5710, "left": 660}, {"solidity": 0.9963358431779826, "top": 390, "right": 3085, "bottom": 2000, "left": 660}, {"solidity": 0.9959143084255531, "top": 2230, "right": 3080, "bottom": 3830, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704128f.jpg"} -{"rects": [{"solidity": 0.9967373151010624, "top": 460, "right": 3100, "bottom": 2080, "left": 695}, {"solidity": 0.9958340040318563, "top": 4155, "right": 3045, "bottom": 5620, "left": 770}, {"solidity": 0.9951147150177924, "top": 2385, "right": 2985, "bottom": 3755, "left": 860}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710818f.jpg"} -{"rects": [{"solidity": 0.9967374570276987, "top": 1405, "right": 3540, "bottom": 4950, "left": 525}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/721294f.jpg"} -{"rects": [{"solidity": 0.996737471381328, "top": 765, "right": 3915, "bottom": 3210, "left": 2285}, {"solidity": 0.9974336711318439, "top": 780, "right": 2075, "bottom": 3210, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717932f.jpg"} -{"rects": [{"solidity": 0.9967375706076989, "top": 345, "right": 2955, "bottom": 5600, "left": 935}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713376f.jpg"} -{"rects": [{"solidity": 0.9967376817648346, "top": 820, "right": 2090, "bottom": 3210, "left": 500}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711886f.jpg"} -{"rects": [{"solidity": 0.9967376922023999, "top": 420, "right": 3195, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723926f.jpg"} -{"rects": [{"solidity": 0.9967377593945487, "top": 2195, "right": 3195, "bottom": 3820, "left": 765}, {"solidity": 0.9967566527116116, "top": 345, "right": 3195, "bottom": 1970, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726111f.jpg"} -{"rects": [{"solidity": 0.9967377818945204, "top": 580, "right": 3100, "bottom": 2155, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720348f.jpg"} -{"rects": [{"solidity": 0.9967379143243484, "top": 930, "right": 2700, "bottom": 3950, "left": 270}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517253.jpg"} -{"rects": [{"solidity": 0.9967379978240549, "top": 380, "right": 5070, "bottom": 3670, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718436f.jpg"} -{"rects": [{"solidity": 0.9967380768944006, "top": 385, "right": 3130, "bottom": 3695, "left": 635}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714161f.jpg"} -{"rects": [{"solidity": 0.9967382090447013, "top": 3975, "right": 3175, "bottom": 5600, "left": 760}, {"solidity": 0.9972227179079539, "top": 2170, "right": 3185, "bottom": 3795, "left": 790}, {"solidity": 0.997660456162104, "top": 320, "right": 3195, "bottom": 1930, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706571f.jpg"} -{"rects": [{"solidity": 0.9967382847567179, "top": 2395, "right": 3055, "bottom": 3795, "left": 1245}, {"solidity": 0.9941057856367302, "top": 4140, "right": 3045, "bottom": 5540, "left": 1225}, {"solidity": 0.9972844947691061, "top": 565, "right": 3050, "bottom": 1955, "left": 1255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726235f.jpg"} -{"rects": [{"solidity": 0.9967383379593507, "top": 275, "right": 1930, "bottom": 2695, "left": 295}, {"solidity": 0.9967388824808912, "top": 3100, "right": 3225, "bottom": 4730, "left": 810}, {"solidity": 0.9956669402997087, "top": 265, "right": 3700, "bottom": 2685, "left": 2075}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707945f.jpg"} -{"rects": [{"solidity": 0.9967384970041179, "top": 575, "right": 3110, "bottom": 2210, "left": 700}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703108f.jpg"} -{"rects": [{"solidity": 0.9967385177032723, "top": 1845, "right": 2130, "bottom": 3835, "left": 705}, {"solidity": 0.9981524995067353, "top": 400, "right": 2160, "bottom": 1815, "left": 170}, {"solidity": 0.9963363721564283, "top": 480, "right": 5800, "bottom": 1905, "left": 3810}, {"solidity": 0.9996759442624131, "top": 590, "right": 3670, "bottom": 2575, "left": 2260}, {"solidity": 0.9960159004648865, "top": 2230, "right": 5820, "bottom": 3660, "left": 3825}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732893f.jpg"} -{"rects": [{"solidity": 0.9967385231097078, "top": 780, "right": 2065, "bottom": 3195, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727972f.jpg"} -{"rects": [{"solidity": 0.9967387032545657, "top": 430, "right": 3880, "bottom": 2590, "left": 1180}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517121.jpg"} -{"rects": [{"solidity": 0.996738794143089, "top": 2155, "right": 3160, "bottom": 3805, "left": 725}, {"solidity": 0.9983606924077371, "top": 4015, "right": 3150, "bottom": 5640, "left": 725}, {"solidity": 0.9973087384591809, "top": 310, "right": 3155, "bottom": 1940, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710488f.jpg"} -{"rects": [{"solidity": 0.9967388166472624, "top": 680, "right": 2435, "bottom": 3110, "left": 795}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722995f.jpg"} -{"rects": [{"solidity": 0.9967388481111292, "top": 2220, "right": 3210, "bottom": 3840, "left": 780}, {"solidity": 0.9975734690633525, "top": 345, "right": 3205, "bottom": 1960, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719040f.jpg"} -{"rects": [{"solidity": 0.9967389414354563, "top": 660, "right": 2025, "bottom": 3070, "left": 425}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727042f.jpg"} -{"rects": [{"solidity": 0.9967391834941504, "top": 835, "right": 1990, "bottom": 3245, "left": 385}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714568f.jpg"} -{"rects": [{"solidity": 0.9967394816777613, "top": 2190, "right": 3170, "bottom": 3805, "left": 750}, {"solidity": 0.9964914489421337, "top": 410, "right": 3175, "bottom": 1995, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710525f.jpg"} -{"rects": [{"solidity": 0.996739556541444, "top": 805, "right": 3780, "bottom": 3245, "left": 2150}, {"solidity": 0.9955938430436178, "top": 835, "right": 5630, "bottom": 3255, "left": 4025}, {"solidity": 0.9770759318108931, "top": 895, "right": 1825, "bottom": 3085, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732965f.jpg"} -{"rects": [{"solidity": 0.9967396219732403, "top": 750, "right": 2045, "bottom": 3195, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705749f.jpg"} -{"rects": [{"solidity": 0.9967398826152702, "top": 1130, "right": 2740, "bottom": 4160, "left": 280}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509397.jpg"} -{"rects": [{"solidity": 0.9967400056723902, "top": 600, "right": 3265, "bottom": 2205, "left": 855}, {"solidity": 0.99558493846365, "top": 2340, "right": 3265, "bottom": 3950, "left": 860}, {"solidity": 0.9958960687621887, "top": 4080, "right": 3285, "bottom": 5690, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733164f.jpg"} -{"rects": [{"solidity": 0.9967400658385133, "top": 385, "right": 3030, "bottom": 2030, "left": 610}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707697f.jpg"} -{"rects": [{"solidity": 0.996740223938123, "top": 240, "right": 3165, "bottom": 1850, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724288f.jpg"} -{"rects": [{"solidity": 0.9967402447028977, "top": 835, "right": 1790, "bottom": 3190, "left": 335}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722850f.jpg"} -{"rects": [{"solidity": 0.9967402654502487, "top": 1275, "right": 2695, "bottom": 4295, "left": 265}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516867.jpg"} -{"rects": [{"solidity": 0.9967403041300306, "top": 680, "right": 2560, "bottom": 2170, "left": 475}, {"solidity": 0.9922084682076223, "top": 2405, "right": 2545, "bottom": 3905, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716143f.jpg"} -{"rects": [{"solidity": 0.9967406097762628, "top": 660, "right": 2130, "bottom": 3100, "left": 505}, {"solidity": 0.9960552519636114, "top": 650, "right": 3990, "bottom": 3090, "left": 2370}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724796f.jpg"} -{"rects": [{"solidity": 0.9967407950786971, "top": 730, "right": 2000, "bottom": 3155, "left": 385}, {"solidity": 0.9971607846675926, "top": 735, "right": 5725, "bottom": 3160, "left": 4115}, {"solidity": 0.9958754876410314, "top": 735, "right": 3855, "bottom": 3155, "left": 2245}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733113f.jpg"} -{"rects": [{"solidity": 0.9967407961666582, "top": 2120, "right": 3290, "bottom": 4035, "left": 545}, {"solidity": 0.9954106069561117, "top": 4095, "right": 3170, "bottom": 5720, "left": 745}, {"solidity": 0.9973432275204984, "top": 450, "right": 3155, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718095f.jpg"} -{"rects": [{"solidity": 0.9967408123791103, "top": 785, "right": 3925, "bottom": 3200, "left": 2300}, {"solidity": 0.9969344892593945, "top": 790, "right": 2075, "bottom": 3200, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713323f.jpg"} -{"rects": [{"solidity": 0.9967412167644845, "top": 460, "right": 3195, "bottom": 2070, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734367f.jpg"} -{"rects": [{"solidity": 0.9967417090450027, "top": 795, "right": 2005, "bottom": 3210, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722416f.jpg"} -{"rects": [{"solidity": 0.9967418248987432, "top": 4040, "right": 3190, "bottom": 5660, "left": 765}, {"solidity": 0.9949289670735461, "top": 2210, "right": 3175, "bottom": 3840, "left": 730}, {"solidity": 0.9959695418571387, "top": 425, "right": 3175, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733199f.jpg"} -{"rects": [{"solidity": 0.9967418480579052, "top": 435, "right": 3155, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724504f.jpg"} -{"rects": [{"solidity": 0.9967419084222643, "top": 410, "right": 3180, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700219f.jpg"} -{"rects": [{"solidity": 0.9967419431103108, "top": 415, "right": 3205, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725812f.jpg"} -{"rects": [{"solidity": 0.9967420018552935, "top": 2265, "right": 3035, "bottom": 3890, "left": 615}, {"solidity": 0.9964236182453257, "top": 390, "right": 3040, "bottom": 2020, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707929f.jpg"} -{"rects": [{"solidity": 0.9967420954045553, "top": 2160, "right": 3150, "bottom": 3785, "left": 725}, {"solidity": 0.9963661770419441, "top": 360, "right": 3155, "bottom": 1955, "left": 735}, {"solidity": 0.9960238568588469, "top": 3995, "right": 3150, "bottom": 5590, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731025f.jpg"} -{"rects": [{"solidity": 0.9967421876580849, "top": 855, "right": 3275, "bottom": 2860, "left": 475}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730095f.jpg"} -{"rects": [{"solidity": 0.9967423195092304, "top": 395, "right": 3960, "bottom": 2600, "left": 1135}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509225.jpg"} -{"rects": [{"solidity": 0.996742339407513, "top": 385, "right": 3195, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704670f.jpg"} -{"rects": [{"solidity": 0.9967425753238657, "top": 435, "right": 3160, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704105f.jpg"} -{"rects": [{"solidity": 0.9967428225768926, "top": 490, "right": 3280, "bottom": 2090, "left": 905}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728038f.jpg"} -{"rects": [{"solidity": 0.9967428813072376, "top": 875, "right": 2045, "bottom": 3280, "left": 420}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733857f.jpg"} -{"rects": [{"solidity": 0.9967429521191588, "top": 705, "right": 3870, "bottom": 3135, "left": 2240}, {"solidity": 0.9956849845201239, "top": 710, "right": 2030, "bottom": 3135, "left": 395}, {"solidity": 0.9959333761740632, "top": 715, "right": 5725, "bottom": 3130, "left": 4110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732296f.jpg"} -{"rects": [{"solidity": 0.9967430025445293, "top": 440, "right": 3230, "bottom": 2080, "left": 810}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706188f.jpg"} -{"rects": [{"solidity": 0.9967430361180322, "top": 435, "right": 3180, "bottom": 2055, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703879f.jpg"} -{"rects": [{"solidity": 0.9967433346597692, "top": 820, "right": 3935, "bottom": 3255, "left": 2295}, {"solidity": 0.9975690223997222, "top": 805, "right": 2040, "bottom": 3230, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715102f.jpg"} -{"rects": [{"solidity": 0.9967433684883349, "top": 425, "right": 3165, "bottom": 2050, "left": 735}, {"solidity": 0.9987978888130401, "top": 2310, "right": 3145, "bottom": 3890, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729607f.jpg"} -{"rects": [{"solidity": 0.9967434492599938, "top": 430, "right": 2950, "bottom": 2045, "left": 555}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703362f.jpg"} -{"rects": [{"solidity": 0.996743519604012, "top": 590, "right": 2500, "bottom": 2075, "left": 405}, {"solidity": 0.9949552574530163, "top": 2450, "right": 2480, "bottom": 3935, "left": 370}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716044f.jpg"} -{"rects": [{"solidity": 0.9967436476949217, "top": 450, "right": 3160, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729101f.jpg"} -{"rects": [{"solidity": 0.9967436991706257, "top": 900, "right": 3875, "bottom": 3320, "left": 2255}, {"solidity": 0.9958935082001005, "top": 905, "right": 2025, "bottom": 3325, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709249f.jpg"} -{"rects": [{"solidity": 0.9967437137669379, "top": 645, "right": 2665, "bottom": 2030, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706279f.jpg"} -{"rects": [{"solidity": 0.9967437148193344, "top": 800, "right": 2165, "bottom": 3215, "left": 550}, {"solidity": 0.9977661442413995, "top": 805, "right": 4010, "bottom": 3215, "left": 2400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721059f.jpg"} -{"rects": [{"solidity": 0.9967438723332148, "top": 415, "right": 3215, "bottom": 2005, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717784f.jpg"} -{"rects": [{"solidity": 0.9967439206419312, "top": 450, "right": 3125, "bottom": 2060, "left": 700}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725920f.jpg"} -{"rects": [{"solidity": 0.9967440808811654, "top": 330, "right": 3155, "bottom": 1955, "left": 750}, {"solidity": 0.9981097644727289, "top": 2200, "right": 3130, "bottom": 3820, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711815f.jpg"} -{"rects": [{"solidity": 0.9967444777007066, "top": 1380, "right": 3340, "bottom": 4745, "left": 450}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719647f.jpg"} -{"rects": [{"solidity": 0.9967447064674012, "top": 430, "right": 3125, "bottom": 2030, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728424f.jpg"} -{"rects": [{"solidity": 0.9967447812780243, "top": 2265, "right": 3290, "bottom": 3890, "left": 850}, {"solidity": 0.9954625395708758, "top": 420, "right": 3295, "bottom": 2045, "left": 855}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733984f.jpg"} -{"rects": [{"solidity": 0.9967447958925361, "top": 825, "right": 2050, "bottom": 3240, "left": 440}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718204f.jpg"} -{"rects": [{"solidity": 0.9967449587379624, "top": 730, "right": 2010, "bottom": 3110, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727443f.jpg"} -{"rects": [{"solidity": 0.9967450553561513, "top": 535, "right": 3145, "bottom": 3890, "left": 575}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717596f.jpg"} -{"rects": [{"solidity": 0.9967453529257921, "top": 560, "right": 3035, "bottom": 2180, "left": 615}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707808f.jpg"} -{"rects": [{"solidity": 0.9967455207166853, "top": 750, "right": 2065, "bottom": 3190, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721797f.jpg"} -{"rects": [{"solidity": 0.9967455470413484, "top": 880, "right": 3900, "bottom": 3315, "left": 2270}, {"solidity": 0.9972799129572146, "top": 875, "right": 2025, "bottom": 3295, "left": 395}, {"solidity": 0.9962301438480579, "top": 925, "right": 5740, "bottom": 3335, "left": 4135}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710223f.jpg"} -{"rects": [{"solidity": 0.9967456458542358, "top": 840, "right": 5730, "bottom": 3270, "left": 4105}, {"solidity": 0.9971434565789261, "top": 835, "right": 3885, "bottom": 3250, "left": 2265}, {"solidity": 0.9955313051503327, "top": 820, "right": 2050, "bottom": 3240, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723246f.jpg"} -{"rects": [{"solidity": 0.9967456642029697, "top": 485, "right": 3250, "bottom": 2080, "left": 870}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710677f.jpg"} -{"rects": [{"solidity": 0.9967457981732771, "top": 780, "right": 2050, "bottom": 3175, "left": 460}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731588f.jpg"} -{"rects": [{"solidity": 0.9967463083113532, "top": 680, "right": 3895, "bottom": 3095, "left": 2265}, {"solidity": 0.9974580017683466, "top": 670, "right": 2035, "bottom": 3090, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702335f.jpg"} -{"rects": [{"solidity": 0.9967463252332386, "top": 730, "right": 2060, "bottom": 3150, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710404f.jpg"} -{"rects": [{"solidity": 0.9967464598226007, "top": 865, "right": 2050, "bottom": 3260, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728306f.jpg"} -{"rects": [{"solidity": 0.9967465075641285, "top": 435, "right": 3190, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714230f.jpg"} -{"rects": [{"solidity": 0.9967466125180389, "top": 555, "right": 4115, "bottom": 2985, "left": 2485}, {"solidity": 0.9991860930865978, "top": 530, "right": 2295, "bottom": 2945, "left": 670}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701862f.jpg"} -{"rects": [{"solidity": 0.9967466370552195, "top": 780, "right": 3875, "bottom": 3185, "left": 2260}, {"solidity": 0.9971193783956694, "top": 795, "right": 1995, "bottom": 3185, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719313f.jpg"} -{"rects": [{"solidity": 0.996746837852913, "top": 435, "right": 3215, "bottom": 2010, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726724f.jpg"} -{"rects": [{"solidity": 0.9967469826554586, "top": 495, "right": 2945, "bottom": 1905, "left": 1115}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727282f.jpg"} -{"rects": [{"solidity": 0.9967470657105699, "top": 405, "right": 3220, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/703761f.jpg"} -{"rects": [{"solidity": 0.9967470919766912, "top": 905, "right": 2045, "bottom": 3340, "left": 415}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728975f.jpg"} -{"rects": [{"solidity": 0.9967471290708629, "top": 795, "right": 3850, "bottom": 3225, "left": 2210}, {"solidity": 0.9963277206002101, "top": 810, "right": 5665, "bottom": 3235, "left": 4025}, {"solidity": 0.9972226079711152, "top": 790, "right": 2045, "bottom": 3205, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731833f.jpg"} -{"rects": [{"solidity": 0.9967471563599328, "top": 580, "right": 2610, "bottom": 2000, "left": 895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707436f.jpg"} -{"rects": [{"solidity": 0.9967472843643678, "top": 2265, "right": 3200, "bottom": 3890, "left": 750}, {"solidity": 0.9954937466187188, "top": 4145, "right": 3200, "bottom": 5780, "left": 765}, {"solidity": 0.9958999481716476, "top": 425, "right": 3210, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733861f.jpg"} -{"rects": [{"solidity": 0.99674742611279, "top": 930, "right": 3840, "bottom": 3365, "left": 2225}, {"solidity": 0.9975517478782887, "top": 940, "right": 1965, "bottom": 3370, "left": 350}, {"solidity": 0.996275569278271, "top": 940, "right": 5725, "bottom": 3370, "left": 4115}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728956f.jpg"} -{"rects": [{"solidity": 0.9967474626136352, "top": 370, "right": 3850, "bottom": 2825, "left": 820}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715831f.jpg"} -{"rects": [{"solidity": 0.9967475132764388, "top": 730, "right": 3885, "bottom": 3150, "left": 2255}, {"solidity": 0.9979093671964226, "top": 730, "right": 2045, "bottom": 3140, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716795f.jpg"} -{"rects": [{"solidity": 0.996747658313986, "top": 665, "right": 5300, "bottom": 2075, "left": 3510}, {"solidity": 0.9956078795650286, "top": 2035, "right": 2595, "bottom": 3450, "left": 815}, {"solidity": 0.9957431223825776, "top": 665, "right": 2585, "bottom": 2015, "left": 820}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725560f.jpg"} -{"rects": [{"solidity": 0.996747852208935, "top": 2835, "right": 2385, "bottom": 4260, "left": 375}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509177.jpg"} -{"rects": [{"solidity": 0.9967479570086356, "top": 815, "right": 2015, "bottom": 3245, "left": 405}, {"solidity": 0.9951283752020452, "top": 820, "right": 3890, "bottom": 3245, "left": 2275}, {"solidity": 0.9987171263630532, "top": 845, "right": 5735, "bottom": 3265, "left": 4130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732210f.jpg"} -{"rects": [{"solidity": 0.9967480041641017, "top": 615, "right": 3210, "bottom": 2240, "left": 800}, {"solidity": 0.9952913288952014, "top": 2330, "right": 3215, "bottom": 3955, "left": 790}, {"solidity": 0.9955070118839372, "top": 4040, "right": 3200, "bottom": 5645, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733123f.jpg"} -{"rects": [{"solidity": 0.9967480166937385, "top": 440, "right": 3110, "bottom": 2020, "left": 740}, {"solidity": 0.9956811430657662, "top": 2340, "right": 3020, "bottom": 3700, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718243f.jpg"} -{"rects": [{"solidity": 0.9967484272283876, "top": 545, "right": 2955, "bottom": 2180, "left": 535}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707012f.jpg"} -{"rects": [{"solidity": 0.9967485480035447, "top": 850, "right": 3855, "bottom": 3280, "left": 2215}, {"solidity": 0.9963241062422952, "top": 865, "right": 5695, "bottom": 3295, "left": 4065}, {"solidity": 0.9964973730297724, "top": 845, "right": 1995, "bottom": 3235, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713475f.jpg"} -{"rects": [{"solidity": 0.9967485537605417, "top": 800, "right": 5660, "bottom": 3230, "left": 4025}, {"solidity": 0.9969166795406561, "top": 805, "right": 3810, "bottom": 3225, "left": 2195}, {"solidity": 0.9991735106922986, "top": 780, "right": 1980, "bottom": 3195, "left": 380}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726099f.jpg"} -{"rects": [{"solidity": 0.9967486182751937, "top": 650, "right": 2770, "bottom": 1965, "left": 620}, {"solidity": 0.9945801980710056, "top": 2210, "right": 2700, "bottom": 3430, "left": 665}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719126f.jpg"} -{"rects": [{"solidity": 0.9967489034382516, "top": 770, "right": 2050, "bottom": 3190, "left": 425}, {"solidity": 0.9965361644373116, "top": 775, "right": 3910, "bottom": 3200, "left": 2285}, {"solidity": 0.9962852415404081, "top": 800, "right": 5765, "bottom": 3190, "left": 4130}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721754f.jpg"} -{"rects": [{"solidity": 0.9967490092558178, "top": 355, "right": 5135, "bottom": 3625, "left": 1060}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722957f.jpg"} -{"rects": [{"solidity": 0.9967490622294892, "top": 3415, "right": 3235, "bottom": 5290, "left": 440}, {"solidity": 0.9953650226300227, "top": 830, "right": 3230, "bottom": 2730, "left": 475}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703215f.jpg"} -{"rects": [{"solidity": 0.996749167852549, "top": 415, "right": 5140, "bottom": 3755, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722595f.jpg"} -{"rects": [{"solidity": 0.9967492127770071, "top": 820, "right": 2250, "bottom": 3220, "left": 655}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710204f.jpg"} -{"rects": [{"solidity": 0.9967492200065887, "top": 655, "right": 3325, "bottom": 2575, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714474f.jpg"} -{"rects": [{"solidity": 0.996749269309051, "top": 4050, "right": 3085, "bottom": 5670, "left": 660}, {"solidity": 0.9952664554084947, "top": 430, "right": 3080, "bottom": 2030, "left": 685}, {"solidity": 0.9934559180519561, "top": 2255, "right": 3060, "bottom": 3820, "left": 695}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728905f.jpg"} -{"rects": [{"solidity": 0.9967493007593607, "top": 2190, "right": 3270, "bottom": 3800, "left": 855}, {"solidity": 0.9970220794783281, "top": 3995, "right": 3275, "bottom": 5600, "left": 860}, {"solidity": 0.9984120011063927, "top": 345, "right": 3275, "bottom": 1950, "left": 865}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/730716f.jpg"} -{"rects": [{"solidity": 0.9967494260856146, "top": 1050, "right": 4335, "bottom": 2685, "left": 1930}, {"solidity": 0.9961266539058925, "top": 640, "right": 6010, "bottom": 3055, "left": 4390}, {"solidity": 0.9978602043537362, "top": 640, "right": 1830, "bottom": 3060, "left": 230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720782f.jpg"} -{"rects": [{"solidity": 0.9967494289755063, "top": 2260, "right": 3240, "bottom": 3875, "left": 820}, {"solidity": 0.9963121180638459, "top": 4105, "right": 3235, "bottom": 5720, "left": 810}, {"solidity": 0.9989019851719414, "top": 415, "right": 3235, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732162f.jpg"} -{"rects": [{"solidity": 0.996749493209163, "top": 605, "right": 2105, "bottom": 3020, "left": 460}, {"solidity": 0.9965561580319438, "top": 615, "right": 5905, "bottom": 3040, "left": 4265}, {"solidity": 0.996364033481727, "top": 605, "right": 3965, "bottom": 3035, "left": 2325}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710712f.jpg"} -{"rects": [{"solidity": 0.996749645794734, "top": 805, "right": 3865, "bottom": 3230, "left": 2240}, {"solidity": 0.9990793978939208, "top": 795, "right": 2045, "bottom": 3215, "left": 435}, {"solidity": 0.995411199772659, "top": 815, "right": 5670, "bottom": 3235, "left": 4055}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718563f.jpg"} -{"rects": [{"solidity": 0.9967497074736726, "top": 780, "right": 3810, "bottom": 3175, "left": 2215}, {"solidity": 0.9974074011802881, "top": 785, "right": 1960, "bottom": 3170, "left": 380}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734724f.jpg"} -{"rects": [{"solidity": 0.9967497114839181, "top": 410, "right": 3200, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734251f.jpg"} -{"rects": [{"solidity": 0.9967498338315945, "top": 2325, "right": 3210, "bottom": 4065, "left": 720}, {"solidity": 0.9962206903893753, "top": 410, "right": 3230, "bottom": 2130, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732582f.jpg"} -{"rects": [{"solidity": 0.9967498693219752, "top": 420, "right": 3590, "bottom": 2225, "left": 890}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711693f.jpg"} -{"rects": [{"solidity": 0.9967498785308138, "top": 485, "right": 2445, "bottom": 2875, "left": 835}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714986f.jpg"} -{"rects": [{"solidity": 0.9967500542721782, "top": 730, "right": 2025, "bottom": 3170, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702311f.jpg"} -{"rects": [{"solidity": 0.9967501827820883, "top": 420, "right": 3140, "bottom": 2030, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701684f.jpg"} -{"rects": [{"solidity": 0.996750185222604, "top": 375, "right": 2930, "bottom": 1920, "left": 990}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700664f.jpg"} -{"rects": [{"solidity": 0.996750229129823, "top": 515, "right": 3045, "bottom": 2135, "left": 630}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707460f.jpg"} -{"rects": [{"solidity": 0.9967502562173242, "top": 780, "right": 2045, "bottom": 3195, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731831f.jpg"} -{"rects": [{"solidity": 0.9967503745031199, "top": 545, "right": 2640, "bottom": 1820, "left": 960}, {"solidity": 0.9948399786314409, "top": 590, "right": 4940, "bottom": 1855, "left": 3280}, {"solidity": 0.9954797325969705, "top": 2250, "right": 2625, "bottom": 3500, "left": 975}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732916f.jpg"} -{"rects": [{"solidity": 0.9967504311161173, "top": 2240, "right": 3025, "bottom": 3645, "left": 1225}, {"solidity": 0.9965803077723004, "top": 500, "right": 3030, "bottom": 1885, "left": 1210}], "shape": {"h": 6140, "w": 4070}, "file": "/usr/local/google/home/danvk/milstein/726782f.jpg"} -{"rects": [{"solidity": 0.996750562160309, "top": 775, "right": 3305, "bottom": 2660, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713595f.jpg"} -{"rects": [{"solidity": 0.9967505723792166, "top": 795, "right": 3825, "bottom": 3210, "left": 2205}, {"solidity": 0.99718882435527, "top": 785, "right": 2015, "bottom": 3195, "left": 405}, {"solidity": 0.9974815042853727, "top": 815, "right": 5620, "bottom": 3205, "left": 4005}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730190f.jpg"} -{"rects": [{"solidity": 0.9967506520073275, "top": 405, "right": 3140, "bottom": 1995, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700315f.jpg"} -{"rects": [{"solidity": 0.996750659064435, "top": 2280, "right": 3135, "bottom": 3910, "left": 720}, {"solidity": 0.9973577037109439, "top": 410, "right": 3125, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726625f.jpg"} -{"rects": [{"solidity": 0.9967508459004638, "top": 785, "right": 2060, "bottom": 3215, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713301f.jpg"} -{"rects": [{"solidity": 0.996750895586473, "top": 2220, "right": 3275, "bottom": 3850, "left": 855}, {"solidity": 0.997157129119904, "top": 4120, "right": 3260, "bottom": 5740, "left": 850}, {"solidity": 0.9967197858950794, "top": 405, "right": 3265, "bottom": 2005, "left": 865}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734781f.jpg"} -{"rects": [{"solidity": 0.9967509013252728, "top": 725, "right": 2110, "bottom": 3110, "left": 525}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709601f.jpg"} -{"rects": [{"solidity": 0.9967509086802937, "top": 610, "right": 2790, "bottom": 3505, "left": 705}, {"solidity": 0.9962418281475569, "top": 615, "right": 5255, "bottom": 3470, "left": 3370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705245f.jpg"} -{"rects": [{"solidity": 0.9967509102950002, "top": 680, "right": 3360, "bottom": 2610, "left": 610}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/714356f.jpg"} -{"rects": [{"solidity": 0.996750971723399, "top": 415, "right": 3510, "bottom": 2065, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705951f.jpg"} -{"rects": [{"solidity": 0.9967511287082669, "top": 775, "right": 3845, "bottom": 3190, "left": 2230}, {"solidity": 0.9967010322681297, "top": 785, "right": 2060, "bottom": 3195, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719000f.jpg"} -{"rects": [{"solidity": 0.9967512795059882, "top": 415, "right": 3050, "bottom": 2040, "left": 635}, {"solidity": 0.9986220666722341, "top": 2320, "right": 3000, "bottom": 3795, "left": 750}, {"solidity": 0.9975162781598343, "top": 4170, "right": 2940, "bottom": 5585, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733458f.jpg"} -{"rects": [{"solidity": 0.9967512838951501, "top": 995, "right": 3330, "bottom": 5010, "left": 345}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716876f.jpg"} -{"rects": [{"solidity": 0.9967513488320655, "top": 580, "right": 2950, "bottom": 3645, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716610f.jpg"} -{"rects": [{"solidity": 0.9967514160494143, "top": 385, "right": 3145, "bottom": 2010, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701628f.jpg"} -{"rects": [{"solidity": 0.9967515406296279, "top": 625, "right": 3350, "bottom": 2570, "left": 620}, {"solidity": 0.9968940247188001, "top": 3140, "right": 3300, "bottom": 5040, "left": 625}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714027f.jpg"} -{"rects": [{"solidity": 0.9967515913354391, "top": 2315, "right": 3085, "bottom": 3950, "left": 670}, {"solidity": 0.9972005347075575, "top": 430, "right": 3075, "bottom": 2050, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701705f.jpg"} -{"rects": [{"solidity": 0.9967516843118384, "top": 335, "right": 3240, "bottom": 2200, "left": 545}, {"solidity": 0.9916401294770032, "top": 2245, "right": 3215, "bottom": 4060, "left": 560}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706159f.jpg"} -{"rects": [{"solidity": 0.9967517013366266, "top": 845, "right": 2085, "bottom": 3270, "left": 455}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712744f.jpg"} -{"rects": [{"solidity": 0.99675173262517, "top": 415, "right": 3140, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/703071f.jpg"} -{"rects": [{"solidity": 0.996751949309949, "top": 340, "right": 3120, "bottom": 1965, "left": 695}, {"solidity": 0.9955247466475586, "top": 4015, "right": 3105, "bottom": 5665, "left": 660}, {"solidity": 0.9979027437499198, "top": 2185, "right": 3125, "bottom": 3805, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707840f.jpg"} -{"rects": [{"solidity": 0.9967519632121091, "top": 925, "right": 5685, "bottom": 3390, "left": 4060}, {"solidity": 0.9959555138649739, "top": 920, "right": 2050, "bottom": 3345, "left": 425}, {"solidity": 0.994189946043396, "top": 1100, "right": 3820, "bottom": 3105, "left": 2340}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717493f.jpg"} -{"rects": [{"solidity": 0.996752014173029, "top": 580, "right": 3070, "bottom": 2670, "left": 1635}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509319.jpg"} -{"rects": [{"solidity": 0.9967520670113279, "top": 325, "right": 3210, "bottom": 1950, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701835f.jpg"} -{"rects": [{"solidity": 0.9967524729935938, "top": 740, "right": 2970, "bottom": 3895, "left": 725}], "shape": {"h": 4410, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711390f.jpg"} -{"rects": [{"solidity": 0.9967527466885717, "top": 840, "right": 5655, "bottom": 3270, "left": 4025}, {"solidity": 0.9980015496868341, "top": 815, "right": 1980, "bottom": 3235, "left": 370}, {"solidity": 0.997044665556803, "top": 820, "right": 3780, "bottom": 3240, "left": 2165}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707841f.jpg"} -{"rects": [{"solidity": 0.9967530064457166, "top": 190, "right": 2770, "bottom": 2615, "left": 1155}, {"solidity": 0.9954267163501331, "top": 2880, "right": 2810, "bottom": 5305, "left": 1185}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724022f.jpg"} -{"rects": [{"solidity": 0.9967530710536284, "top": 755, "right": 3855, "bottom": 3205, "left": 2215}, {"solidity": 0.9967516920966468, "top": 765, "right": 1995, "bottom": 3195, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704802f.jpg"} -{"rects": [{"solidity": 0.9967531433014064, "top": 905, "right": 3875, "bottom": 3330, "left": 2230}, {"solidity": 0.996769055745165, "top": 895, "right": 1990, "bottom": 3290, "left": 365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713489f.jpg"} -{"rects": [{"solidity": 0.9967531688729127, "top": 965, "right": 2610, "bottom": 3990, "left": 180}], "shape": {"h": 4630, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1509111.jpg"} -{"rects": [{"solidity": 0.996753205169256, "top": 385, "right": 3200, "bottom": 2010, "left": 765}, {"solidity": 0.9979201209639477, "top": 2240, "right": 3195, "bottom": 3850, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734652f.jpg"} -{"rects": [{"solidity": 0.9967532467532467, "top": 2275, "right": 3135, "bottom": 3880, "left": 725}, {"solidity": 0.9960274974213007, "top": 430, "right": 3130, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724539f.jpg"} -{"rects": [{"solidity": 0.9967534380175026, "top": 455, "right": 3110, "bottom": 2065, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720107f.jpg"} -{"rects": [{"solidity": 0.9967536617533422, "top": 215, "right": 3535, "bottom": 2795, "left": 175}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721489f.jpg"} -{"rects": [{"solidity": 0.9967538271005962, "top": 775, "right": 5730, "bottom": 3215, "left": 4080}, {"solidity": 0.9968604539180123, "top": 775, "right": 2025, "bottom": 3190, "left": 395}, {"solidity": 0.9965674688785991, "top": 780, "right": 3860, "bottom": 3195, "left": 2235}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702292f.jpg"} -{"rects": [{"solidity": 0.9967538635902072, "top": 740, "right": 2070, "bottom": 3145, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709838f.jpg"} -{"rects": [{"solidity": 0.9967538974586434, "top": 485, "right": 3020, "bottom": 2090, "left": 620}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705027f.jpg"} -{"rects": [{"solidity": 0.9967541328758578, "top": 550, "right": 3200, "bottom": 2160, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732463f.jpg"} -{"rects": [{"solidity": 0.9967542786697358, "top": 4020, "right": 3085, "bottom": 5640, "left": 655}, {"solidity": 0.9949214446096964, "top": 2145, "right": 3110, "bottom": 3790, "left": 685}, {"solidity": 0.99728378334785, "top": 340, "right": 3115, "bottom": 1955, "left": 695}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700779f.jpg"} -{"rects": [{"solidity": 0.9967542811628833, "top": 410, "right": 3265, "bottom": 2000, "left": 875}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711780f.jpg"} -{"rects": [{"solidity": 0.9967543237554904, "top": 715, "right": 4065, "bottom": 3255, "left": 2330}, {"solidity": 0.997240557122503, "top": 715, "right": 2140, "bottom": 3250, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731759f.jpg"} -{"rects": [{"solidity": 0.9967543716293512, "top": 715, "right": 2075, "bottom": 3120, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724894f.jpg"} -{"rects": [{"solidity": 0.9967543750577867, "top": 2180, "right": 3305, "bottom": 3825, "left": 870}, {"solidity": 0.9966603875993743, "top": 425, "right": 3250, "bottom": 2055, "left": 810}, {"solidity": 0.9953419125634178, "top": 3915, "right": 3335, "bottom": 5555, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734136f.jpg"} -{"rects": [{"solidity": 0.9967544522257928, "top": 755, "right": 2035, "bottom": 3185, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707296f.jpg"} -{"rects": [{"solidity": 0.9967545769820146, "top": 415, "right": 3135, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728641f.jpg"} -{"rects": [{"solidity": 0.9967547289652845, "top": 775, "right": 2025, "bottom": 3160, "left": 430}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712405f.jpg"} -{"rects": [{"solidity": 0.9967547534540753, "top": 375, "right": 3285, "bottom": 2010, "left": 855}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726509f.jpg"} -{"rects": [{"solidity": 0.9967549274630845, "top": 760, "right": 2050, "bottom": 3170, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719455f.jpg"} -{"rects": [{"solidity": 0.9967550817992087, "top": 1020, "right": 3310, "bottom": 5025, "left": 430}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/713060f.jpg"} -{"rects": [{"solidity": 0.9967550927813736, "top": 825, "right": 4030, "bottom": 3370, "left": 2300}, {"solidity": 0.994429988376141, "top": 845, "right": 2120, "bottom": 3320, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731111f.jpg"} -{"rects": [{"solidity": 0.9967551080734882, "top": 530, "right": 3360, "bottom": 2515, "left": 510}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706633f.jpg"} -{"rects": [{"solidity": 0.9967551718520932, "top": 770, "right": 5710, "bottom": 3165, "left": 4090}, {"solidity": 0.9971129638711786, "top": 780, "right": 3880, "bottom": 3180, "left": 2275}, {"solidity": 0.9970681988115383, "top": 790, "right": 2040, "bottom": 3185, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716607f.jpg"} -{"rects": [{"solidity": 0.9967553371198358, "top": 455, "right": 2510, "bottom": 2885, "left": 875}, {"solidity": 0.9983549420549143, "top": 470, "right": 5370, "bottom": 2095, "left": 2950}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706182f.jpg"} -{"rects": [{"solidity": 0.9967553618353763, "top": 820, "right": 5785, "bottom": 3255, "left": 4130}, {"solidity": 0.9958925226038917, "top": 790, "right": 3895, "bottom": 3230, "left": 2255}, {"solidity": 0.9955222584287373, "top": 770, "right": 2030, "bottom": 3200, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723356f.jpg"} -{"rects": [{"solidity": 0.9967554573624022, "top": 630, "right": 2655, "bottom": 3420, "left": 705}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707794f.jpg"} -{"rects": [{"solidity": 0.996755665333647, "top": 425, "right": 3165, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716605f.jpg"} -{"rects": [{"solidity": 0.9967557270842221, "top": 755, "right": 2005, "bottom": 3150, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722353f.jpg"} -{"rects": [{"solidity": 0.9967558279691227, "top": 400, "right": 3235, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706050f.jpg"} -{"rects": [{"solidity": 0.9967558499549766, "top": 745, "right": 3290, "bottom": 2655, "left": 610}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714476f.jpg"} -{"rects": [{"solidity": 0.996756049118101, "top": 415, "right": 3180, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703666f.jpg"} -{"rects": [{"solidity": 0.996756111313808, "top": 630, "right": 3130, "bottom": 2225, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709721f.jpg"} -{"rects": [{"solidity": 0.9967561927229834, "top": 835, "right": 2055, "bottom": 3240, "left": 440}, {"solidity": 0.9992148703554674, "top": 840, "right": 3835, "bottom": 3235, "left": 2230}, {"solidity": 0.9965387128872192, "top": 845, "right": 5600, "bottom": 3240, "left": 4000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716555f.jpg"} -{"rects": [{"solidity": 0.996756240953979, "top": 500, "right": 3125, "bottom": 2125, "left": 695}, {"solidity": 0.9962182378529351, "top": 2380, "right": 3125, "bottom": 4005, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726659f.jpg"} -{"rects": [{"solidity": 0.9967562654021228, "top": 1230, "right": 2615, "bottom": 4225, "left": 180}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508339.jpg"} -{"rects": [{"solidity": 0.996756409289329, "top": 445, "right": 3230, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724925f.jpg"} -{"rects": [{"solidity": 0.9967564119409817, "top": 485, "right": 4885, "bottom": 3570, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713765f.jpg"} -{"rects": [{"solidity": 0.9967565260259478, "top": 300, "right": 3115, "bottom": 2115, "left": 805}, {"solidity": 0.998515628571864, "top": 2150, "right": 3115, "bottom": 3935, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731117f.jpg"} -{"rects": [{"solidity": 0.9967565850277265, "top": 850, "right": 3575, "bottom": 4885, "left": 300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/701388f.jpg"} -{"rects": [{"solidity": 0.9967566909975669, "top": 2155, "right": 3150, "bottom": 5930, "left": 380}, {"solidity": 0.9939289111822192, "top": 305, "right": 3160, "bottom": 2165, "left": 390}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702730f.jpg"} -{"rects": [{"solidity": 0.9967568981042747, "top": 535, "right": 5345, "bottom": 3470, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722661f.jpg"} -{"rects": [{"solidity": 0.9967569773058759, "top": 235, "right": 3350, "bottom": 4035, "left": 525}, {"solidity": 0.99632526841466, "top": 4045, "right": 3335, "bottom": 5935, "left": 525}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726337f.jpg"} -{"rects": [{"solidity": 0.9967577133482746, "top": 840, "right": 3830, "bottom": 3245, "left": 2205}, {"solidity": 0.9977299772350994, "top": 830, "right": 5665, "bottom": 3235, "left": 4045}, {"solidity": 0.9960874419507775, "top": 855, "right": 1975, "bottom": 3255, "left": 355}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719414f.jpg"} -{"rects": [{"solidity": 0.9967580130409276, "top": 455, "right": 5055, "bottom": 3760, "left": 975}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705325f.jpg"} -{"rects": [{"solidity": 0.9967580675489045, "top": 2265, "right": 3120, "bottom": 3875, "left": 705}, {"solidity": 0.9950060683233521, "top": 465, "right": 3105, "bottom": 2065, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724929f.jpg"} -{"rects": [{"solidity": 0.9967581295273154, "top": 440, "right": 3150, "bottom": 2065, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705944f.jpg"} -{"rects": [{"solidity": 0.9967582193179497, "top": 440, "right": 5095, "bottom": 3640, "left": 1085}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720066f.jpg"} -{"rects": [{"solidity": 0.996758399351036, "top": 725, "right": 2065, "bottom": 3140, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715354f.jpg"} -{"rects": [{"solidity": 0.9967585623037926, "top": 435, "right": 3220, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727827f.jpg"} -{"rects": [{"solidity": 0.9967585832061868, "top": 820, "right": 4010, "bottom": 3225, "left": 2410}, {"solidity": 0.9970284518332774, "top": 840, "right": 2160, "bottom": 3230, "left": 560}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710905f.jpg"} -{"rects": [{"solidity": 0.996758662027807, "top": 2345, "right": 3195, "bottom": 3960, "left": 795}, {"solidity": 0.9969953421242538, "top": 480, "right": 3220, "bottom": 2080, "left": 820}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/701147f.jpg"} -{"rects": [{"solidity": 0.9967586749937978, "top": 755, "right": 5705, "bottom": 3465, "left": 3980}, {"solidity": 0.9979437065583924, "top": 750, "right": 3900, "bottom": 3440, "left": 2200}, {"solidity": 0.9974197937494296, "top": 755, "right": 2130, "bottom": 3395, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722924f.jpg"} -{"rects": [{"solidity": 0.9967587690349907, "top": 315, "right": 5115, "bottom": 3570, "left": 1025}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729085f.jpg"} -{"rects": [{"solidity": 0.9967587952612238, "top": 2245, "right": 3130, "bottom": 3865, "left": 700}, {"solidity": 0.9970102519425326, "top": 395, "right": 3150, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707052f.jpg"} -{"rects": [{"solidity": 0.9967588092443832, "top": 745, "right": 2030, "bottom": 3160, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730175f.jpg"} -{"rects": [{"solidity": 0.9967589300366501, "top": 2255, "right": 2475, "bottom": 3670, "left": 510}, {"solidity": 0.996504120470571, "top": 665, "right": 2470, "bottom": 2070, "left": 505}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507539.jpg"} -{"rects": [{"solidity": 0.9967589708940806, "top": 435, "right": 5400, "bottom": 3360, "left": 3345}, {"solidity": 0.9978055274212917, "top": 470, "right": 2830, "bottom": 3350, "left": 785}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706014f.jpg"} -{"rects": [{"solidity": 0.9967589750218114, "top": 435, "right": 3130, "bottom": 2050, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729556f.jpg"} -{"rects": [{"solidity": 0.9967590091828074, "top": 340, "right": 3175, "bottom": 1920, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730087f.jpg"} -{"rects": [{"solidity": 0.9967590821257591, "top": 775, "right": 2010, "bottom": 3200, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719170f.jpg"} -{"rects": [{"solidity": 0.9967591384758094, "top": 630, "right": 4305, "bottom": 2430, "left": 3095}, {"solidity": 0.9923279467791357, "top": 635, "right": 2935, "bottom": 2430, "left": 1725}, {"solidity": 0.9852235952205632, "top": 635, "right": 1535, "bottom": 2415, "left": 360}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716463f.jpg"} -{"rects": [{"solidity": 0.9967592067988669, "top": 470, "right": 3210, "bottom": 2080, "left": 795}, {"solidity": 0.9954236524568699, "top": 2300, "right": 3220, "bottom": 3915, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730953f.jpg"} -{"rects": [{"solidity": 0.9967592695612068, "top": 2115, "right": 3365, "bottom": 4150, "left": 285}, {"solidity": 0.9952424942263279, "top": 415, "right": 3200, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718803f.jpg"} -{"rects": [{"solidity": 0.9967593825500771, "top": 735, "right": 3880, "bottom": 3165, "left": 2260}, {"solidity": 0.9982423101067169, "top": 745, "right": 2020, "bottom": 3165, "left": 405}, {"solidity": 0.9958957695105917, "top": 755, "right": 5725, "bottom": 3170, "left": 4120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721676f.jpg"} -{"rects": [{"solidity": 0.9967593998178361, "top": 895, "right": 3955, "bottom": 3320, "left": 2325}, {"solidity": 0.9966731044394967, "top": 885, "right": 2040, "bottom": 3310, "left": 410}, {"solidity": 0.9965232563775304, "top": 905, "right": 5775, "bottom": 3330, "left": 4160}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730902f.jpg"} -{"rects": [{"solidity": 0.9967594308039341, "top": 800, "right": 2000, "bottom": 3215, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721576f.jpg"} -{"rects": [{"solidity": 0.9967595174498811, "top": 2255, "right": 4025, "bottom": 3400, "left": 2140}, {"solidity": 0.9971623826526993, "top": 700, "right": 2050, "bottom": 1840, "left": 165}, {"solidity": 0.9953470824949698, "top": 2260, "right": 2090, "bottom": 3365, "left": 160}, {"solidity": 0.9943135319886391, "top": 705, "right": 3990, "bottom": 1845, "left": 2130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719831f.jpg"} -{"rects": [{"solidity": 0.9967595262599452, "top": 810, "right": 3955, "bottom": 3245, "left": 2315}, {"solidity": 0.9968760757591844, "top": 840, "right": 5810, "bottom": 3265, "left": 4185}, {"solidity": 0.9975239443630944, "top": 795, "right": 2055, "bottom": 3210, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731822f.jpg"} -{"rects": [{"solidity": 0.9967595340735479, "top": 445, "right": 3170, "bottom": 2070, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718788f.jpg"} -{"rects": [{"solidity": 0.9967596604812398, "top": 350, "right": 3385, "bottom": 1985, "left": 955}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728694f.jpg"} -{"rects": [{"solidity": 0.9967596662551453, "top": 400, "right": 3190, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711018f.jpg"} -{"rects": [{"solidity": 0.99675987281367, "top": 850, "right": 2310, "bottom": 3605, "left": 485}], "shape": {"h": 4435, "w": 6890}, "file": "/usr/local/google/home/danvk/milstein/702214f.jpg"} -{"rects": [{"solidity": 0.9967598888429019, "top": 365, "right": 2405, "bottom": 1555, "left": 615}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716480f.jpg"} -{"rects": [{"solidity": 0.9967600868752584, "top": 445, "right": 3155, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719600f.jpg"} -{"rects": [{"solidity": 0.9967602347861723, "top": 390, "right": 3115, "bottom": 2000, "left": 690}, {"solidity": 0.9963457805184424, "top": 2220, "right": 3105, "bottom": 3825, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724320f.jpg"} -{"rects": [{"solidity": 0.9967604033379242, "top": 4070, "right": 3230, "bottom": 5670, "left": 810}, {"solidity": 0.996004129828207, "top": 2330, "right": 3225, "bottom": 3940, "left": 815}, {"solidity": 0.994270119211626, "top": 605, "right": 3220, "bottom": 2210, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733139f.jpg"} -{"rects": [{"solidity": 0.996760524206083, "top": 510, "right": 3170, "bottom": 2115, "left": 760}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/712755f.jpg"} -{"rects": [{"solidity": 0.9967606513560233, "top": 730, "right": 2640, "bottom": 2160, "left": 820}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727879f.jpg"} -{"rects": [{"solidity": 0.9967607243428702, "top": 755, "right": 3270, "bottom": 2660, "left": 595}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713584f.jpg"} -{"rects": [{"solidity": 0.9967608780813372, "top": 440, "right": 2480, "bottom": 1980, "left": 220}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716408f.jpg"} -{"rects": [{"solidity": 0.996760961496366, "top": 400, "right": 3085, "bottom": 2025, "left": 640}, {"solidity": 0.9960660441387917, "top": 2275, "right": 3080, "bottom": 3905, "left": 645}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720072f.jpg"} -{"rects": [{"solidity": 0.9967612104129118, "top": 550, "right": 3105, "bottom": 2125, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724448f.jpg"} -{"rects": [{"solidity": 0.9967616601056384, "top": 510, "right": 3035, "bottom": 2135, "left": 610}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707512f.jpg"} -{"rects": [{"solidity": 0.9967616792165226, "top": 415, "right": 3245, "bottom": 2020, "left": 845}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712520f.jpg"} -{"rects": [{"solidity": 0.9967617119685332, "top": 455, "right": 3190, "bottom": 2080, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701301f.jpg"} -{"rects": [{"solidity": 0.9967617942719456, "top": 530, "right": 1915, "bottom": 2960, "left": 280}, {"solidity": 0.9960487039493826, "top": 3375, "right": 3185, "bottom": 5020, "left": 750}, {"solidity": 0.999236735037096, "top": 580, "right": 3690, "bottom": 2980, "left": 2070}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710349f.jpg"} -{"rects": [{"solidity": 0.9967618183981451, "top": 2225, "right": 3080, "bottom": 3860, "left": 670}, {"solidity": 0.9966378807366362, "top": 385, "right": 3080, "bottom": 2005, "left": 665}, {"solidity": 0.9972841462034627, "top": 4070, "right": 3075, "bottom": 5675, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729872f.jpg"} -{"rects": [{"solidity": 0.9967618400329371, "top": 470, "right": 3150, "bottom": 2080, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712261f.jpg"} -{"rects": [{"solidity": 0.99676184584453, "top": 4115, "right": 3085, "bottom": 5730, "left": 665}, {"solidity": 0.9956997174100012, "top": 2230, "right": 3090, "bottom": 3840, "left": 670}, {"solidity": 0.9966449852646969, "top": 395, "right": 3090, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/729283f.jpg"} -{"rects": [{"solidity": 0.9967618514048309, "top": 595, "right": 4875, "bottom": 3525, "left": 1130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707656f.jpg"} -{"rects": [{"solidity": 0.9967619953354618, "top": 815, "right": 3955, "bottom": 3225, "left": 2335}, {"solidity": 0.9962233445930613, "top": 830, "right": 5780, "bottom": 3240, "left": 4160}, {"solidity": 0.9976323586326221, "top": 800, "right": 2070, "bottom": 3200, "left": 450}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717927f.jpg"} -{"rects": [{"solidity": 0.9967621859256169, "top": 870, "right": 3910, "bottom": 3295, "left": 2280}, {"solidity": 0.9953050865427943, "top": 870, "right": 2030, "bottom": 3260, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711898f.jpg"} -{"rects": [{"solidity": 0.9967622311809077, "top": 655, "right": 2345, "bottom": 3440, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707415f.jpg"} -{"rects": [{"solidity": 0.9967623371086863, "top": 1160, "right": 4400, "bottom": 2780, "left": 2365}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701217f.jpg"} -{"rects": [{"solidity": 0.996762420026622, "top": 2985, "right": 3515, "bottom": 5055, "left": 680}, {"solidity": 0.9978306660007383, "top": 695, "right": 3500, "bottom": 2745, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702221f.jpg"} -{"rects": [{"solidity": 0.9967625232503883, "top": 320, "right": 3190, "bottom": 1950, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702516f.jpg"} -{"rects": [{"solidity": 0.9967625500140334, "top": 445, "right": 2995, "bottom": 2070, "left": 595}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704695f.jpg"} -{"rects": [{"solidity": 0.9967626307679831, "top": 860, "right": 3245, "bottom": 2475, "left": 835}, {"solidity": 0.9961317231237719, "top": 3365, "right": 3245, "bottom": 4975, "left": 835}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730812f.jpg"} -{"rects": [{"solidity": 0.9967627100525327, "top": 935, "right": 3695, "bottom": 5025, "left": 410}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/730992f.jpg"} -{"rects": [{"solidity": 0.9967629346083002, "top": 2315, "right": 2995, "bottom": 3705, "left": 1165}, {"solidity": 0.994750174746308, "top": 565, "right": 3005, "bottom": 1960, "left": 1170}, {"solidity": 0.9970217640320733, "top": 4070, "right": 2970, "bottom": 5470, "left": 1160}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727809f.jpg"} -{"rects": [{"solidity": 0.9967630094745084, "top": 375, "right": 3150, "bottom": 2000, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728803f.jpg"} -{"rects": [{"solidity": 0.9967631554610191, "top": 310, "right": 3240, "bottom": 1945, "left": 815}, {"solidity": 0.9979535389387181, "top": 2030, "right": 3255, "bottom": 3660, "left": 840}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703062f.jpg"} -{"rects": [{"solidity": 0.9967632438345586, "top": 2225, "right": 3095, "bottom": 3840, "left": 670}, {"solidity": 0.9973814991481015, "top": 385, "right": 3085, "bottom": 2005, "left": 665}, {"solidity": 0.9981939369267203, "top": 4065, "right": 3095, "bottom": 5675, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729738f.jpg"} -{"rects": [{"solidity": 0.9967632878080639, "top": 750, "right": 3875, "bottom": 3180, "left": 2245}, {"solidity": 0.9978099872357244, "top": 750, "right": 2015, "bottom": 3165, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713465f.jpg"} -{"rects": [{"solidity": 0.9967635616673602, "top": 770, "right": 2045, "bottom": 3170, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716691f.jpg"} -{"rects": [{"solidity": 0.9967638598326359, "top": 2450, "right": 2465, "bottom": 3930, "left": 380}, {"solidity": 0.9975491800595725, "top": 600, "right": 2485, "bottom": 2075, "left": 400}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716073f.jpg"} -{"rects": [{"solidity": 0.9967641238971573, "top": 430, "right": 3120, "bottom": 2030, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729053f.jpg"} -{"rects": [{"solidity": 0.9967641804089922, "top": 790, "right": 3865, "bottom": 3205, "left": 2230}, {"solidity": 0.9987437185929648, "top": 785, "right": 2025, "bottom": 3185, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707194f.jpg"} -{"rects": [{"solidity": 0.9967642016964475, "top": 540, "right": 3080, "bottom": 1950, "left": 1265}, {"solidity": 0.9963608112528622, "top": 2350, "right": 3035, "bottom": 3720, "left": 1230}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726771f.jpg"} -{"rects": [{"solidity": 0.9967646865307956, "top": 2115, "right": 3185, "bottom": 4030, "left": 280}, {"solidity": 0.9961921156364392, "top": 440, "right": 3180, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724722f.jpg"} -{"rects": [{"solidity": 0.9967647336438408, "top": 410, "right": 3085, "bottom": 2025, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734398f.jpg"} -{"rects": [{"solidity": 0.9967648249407259, "top": 790, "right": 2015, "bottom": 3225, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703894f.jpg"} -{"rects": [{"solidity": 0.996765054936641, "top": 755, "right": 2080, "bottom": 3190, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701658f.jpg"} -{"rects": [{"solidity": 0.9967651582611511, "top": 825, "right": 3775, "bottom": 3235, "left": 2150}, {"solidity": 0.9969679871325914, "top": 810, "right": 1995, "bottom": 3220, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712035f.jpg"} -{"rects": [{"solidity": 0.9967652941138642, "top": 2230, "right": 3080, "bottom": 3860, "left": 665}, {"solidity": 0.9940683279246619, "top": 370, "right": 3095, "bottom": 1990, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734044f.jpg"} -{"rects": [{"solidity": 0.9967653328317738, "top": 375, "right": 5160, "bottom": 3640, "left": 1155}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700678f.jpg"} -{"rects": [{"solidity": 0.9967655004153503, "top": 395, "right": 3180, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/728472f.jpg"} -{"rects": [{"solidity": 0.9967656284572634, "top": 410, "right": 3245, "bottom": 2020, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725800f.jpg"} -{"rects": [{"solidity": 0.9967656495394679, "top": 835, "right": 2415, "bottom": 3335, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700507f.jpg"} -{"rects": [{"solidity": 0.996765658240952, "top": 885, "right": 4815, "bottom": 2885, "left": 1390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706350f.jpg"} -{"rects": [{"solidity": 0.9967660315475586, "top": 2285, "right": 3125, "bottom": 3875, "left": 705}, {"solidity": 0.9952524180231187, "top": 400, "right": 3130, "bottom": 1995, "left": 710}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/728817f.jpg"} -{"rects": [{"solidity": 0.9967661064697254, "top": 365, "right": 3220, "bottom": 1990, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727947f.jpg"} -{"rects": [{"solidity": 0.9967661658437912, "top": 750, "right": 2075, "bottom": 3140, "left": 490}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710974f.jpg"} -{"rects": [{"solidity": 0.9967662170641849, "top": 530, "right": 2480, "bottom": 2985, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700014f.jpg"} -{"rects": [{"solidity": 0.9967664375426206, "top": 785, "right": 3895, "bottom": 3210, "left": 2255}, {"solidity": 0.9975818356036671, "top": 770, "right": 2035, "bottom": 3180, "left": 420}, {"solidity": 0.9961673907479581, "top": 805, "right": 5720, "bottom": 3220, "left": 4095}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719312f.jpg"} -{"rects": [{"solidity": 0.9967665199955804, "top": 405, "right": 3100, "bottom": 2015, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728845f.jpg"} -{"rects": [{"solidity": 0.9967667572805347, "top": 2290, "right": 3110, "bottom": 3890, "left": 710}, {"solidity": 0.9983281884539692, "top": 400, "right": 3110, "bottom": 1995, "left": 715}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718369f.jpg"} -{"rects": [{"solidity": 0.9967668393782383, "top": 780, "right": 2010, "bottom": 3215, "left": 380}, {"solidity": 0.9956919763058697, "top": 1210, "right": 3715, "bottom": 3030, "left": 2280}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706518f.jpg"} -{"rects": [{"solidity": 0.9967669125127162, "top": 835, "right": 3870, "bottom": 3270, "left": 2225}, {"solidity": 0.996055386912975, "top": 845, "right": 2015, "bottom": 3260, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700743f.jpg"} -{"rects": [{"solidity": 0.9967669749662434, "top": 2230, "right": 3205, "bottom": 3880, "left": 765}, {"solidity": 0.9958319780086613, "top": 4035, "right": 3245, "bottom": 5690, "left": 805}, {"solidity": 0.9977965385157381, "top": 420, "right": 3170, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719496f.jpg"} -{"rects": [{"solidity": 0.9967672197083962, "top": 605, "right": 2635, "bottom": 2000, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702963f.jpg"} -{"rects": [{"solidity": 0.9967676890496601, "top": 290, "right": 1435, "bottom": 1735, "left": 570}, {"solidity": 0.9966576100886861, "top": 295, "right": 2520, "bottom": 1720, "left": 1655}, {"solidity": 0.9965635738831615, "top": 1855, "right": 2270, "bottom": 2735, "left": 875}, {"solidity": 0.9958077870355814, "top": 2890, "right": 2510, "bottom": 4325, "left": 1670}, {"solidity": 0.9955996876516894, "top": 2875, "right": 1420, "bottom": 4290, "left": 560}], "shape": {"h": 4655, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715787f.jpg"} -{"rects": [{"solidity": 0.9967678851848345, "top": 760, "right": 2010, "bottom": 3165, "left": 405}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712169f.jpg"} -{"rects": [{"solidity": 0.9967678875632068, "top": 820, "right": 4725, "bottom": 3160, "left": 1345}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701654f.jpg"} -{"rects": [{"solidity": 0.9967679672521892, "top": 410, "right": 3180, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729274f.jpg"} -{"rects": [{"solidity": 0.9967680705894424, "top": 450, "right": 3165, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701036f.jpg"} -{"rects": [{"solidity": 0.9967681501329035, "top": 475, "right": 3210, "bottom": 2290, "left": 600}, {"solidity": 0.9680737925753665, "top": 2325, "right": 2025, "bottom": 3285, "left": 130}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700684f.jpg"} -{"rects": [{"solidity": 0.9967681827089471, "top": 420, "right": 3160, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717834f.jpg"} -{"rects": [{"solidity": 0.9967683437180321, "top": 2285, "right": 3140, "bottom": 3905, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733870f.jpg"} -{"rects": [{"solidity": 0.9967684081171743, "top": 465, "right": 3055, "bottom": 2055, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729915f.jpg"} -{"rects": [{"solidity": 0.9967684147669394, "top": 425, "right": 2955, "bottom": 2065, "left": 525}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705355f.jpg"} -{"rects": [{"solidity": 0.9967684381971901, "top": 4130, "right": 3155, "bottom": 5740, "left": 740}, {"solidity": 0.9966935824102509, "top": 430, "right": 3185, "bottom": 2035, "left": 780}, {"solidity": 0.9979099524025611, "top": 2295, "right": 3160, "bottom": 3885, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733730f.jpg"} -{"rects": [{"solidity": 0.9967685337042793, "top": 770, "right": 5820, "bottom": 3330, "left": 4105}, {"solidity": 0.994040138891672, "top": 760, "right": 2165, "bottom": 3325, "left": 420}, {"solidity": 0.9953396302425537, "top": 745, "right": 3975, "bottom": 3340, "left": 2285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717231f.jpg"} -{"rects": [{"solidity": 0.9967686030397639, "top": 555, "right": 2960, "bottom": 2185, "left": 540}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702382f.jpg"} -{"rects": [{"solidity": 0.9967688695248298, "top": 1045, "right": 3525, "bottom": 5080, "left": 250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714514f.jpg"} -{"rects": [{"solidity": 0.9967688753650916, "top": 2155, "right": 2740, "bottom": 3535, "left": 945}, {"solidity": 0.9947323505806097, "top": 710, "right": 2720, "bottom": 2095, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727312f.jpg"} -{"rects": [{"solidity": 0.9967689100179753, "top": 900, "right": 5740, "bottom": 3325, "left": 4105}, {"solidity": 0.9983385939190617, "top": 885, "right": 2015, "bottom": 3305, "left": 390}, {"solidity": 0.997445557232065, "top": 895, "right": 3875, "bottom": 3305, "left": 2250}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712053f.jpg"} -{"rects": [{"solidity": 0.9967690903350674, "top": 400, "right": 3835, "bottom": 2810, "left": 790}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716488f.jpg"} -{"rects": [{"solidity": 0.9967691441951321, "top": 4050, "right": 3165, "bottom": 5670, "left": 750}, {"solidity": 0.9966361064390368, "top": 2240, "right": 3150, "bottom": 3850, "left": 730}, {"solidity": 0.9981276896081872, "top": 415, "right": 3145, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701596f.jpg"} -{"rects": [{"solidity": 0.9967691448462178, "top": 730, "right": 2035, "bottom": 3145, "left": 425}, {"solidity": 0.9965633269086276, "top": 725, "right": 3830, "bottom": 3130, "left": 2220}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721936f.jpg"} -{"rects": [{"solidity": 0.9967691876348889, "top": 445, "right": 3120, "bottom": 2050, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733921f.jpg"} -{"rects": [{"solidity": 0.9967696629213483, "top": 760, "right": 2055, "bottom": 3190, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705250f.jpg"} -{"rects": [{"solidity": 0.9967697896096931, "top": 510, "right": 3945, "bottom": 2600, "left": 2455}, {"solidity": 0.9961544246474551, "top": 490, "right": 2120, "bottom": 2590, "left": 630}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716069f.jpg"} -{"rects": [{"solidity": 0.9967700341692992, "top": 2300, "right": 3080, "bottom": 3915, "left": 655}, {"solidity": 0.9966879905630416, "top": 420, "right": 3090, "bottom": 2030, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733637f.jpg"} -{"rects": [{"solidity": 0.9967702814423074, "top": 790, "right": 2055, "bottom": 3215, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720695f.jpg"} -{"rects": [{"solidity": 0.9967702879689103, "top": 810, "right": 2080, "bottom": 3205, "left": 485}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724494f.jpg"} -{"rects": [{"solidity": 0.9967704929095449, "top": 4095, "right": 3035, "bottom": 5715, "left": 610}, {"solidity": 0.9954200437411553, "top": 390, "right": 3070, "bottom": 2035, "left": 650}, {"solidity": 0.995990902806045, "top": 2230, "right": 3050, "bottom": 3860, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734337f.jpg"} -{"rects": [{"solidity": 0.9967707529987037, "top": 800, "right": 3735, "bottom": 3190, "left": 2130}, {"solidity": 0.9951906298712737, "top": 795, "right": 1885, "bottom": 3180, "left": 285}, {"solidity": 0.9948227088554861, "top": 815, "right": 5595, "bottom": 3175, "left": 4005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709642f.jpg"} -{"rects": [{"solidity": 0.9967709098753531, "top": 460, "right": 3155, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719724f.jpg"} -{"rects": [{"solidity": 0.9967710481543065, "top": 490, "right": 5730, "bottom": 4190, "left": 1110}], "shape": {"h": 4420, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708803f.jpg"} -{"rects": [{"solidity": 0.9967710530585754, "top": 880, "right": 3905, "bottom": 3295, "left": 2300}, {"solidity": 0.9957275795470064, "top": 890, "right": 5750, "bottom": 3305, "left": 4145}, {"solidity": 0.9961647959684544, "top": 875, "right": 2000, "bottom": 3285, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734800f.jpg"} -{"rects": [{"solidity": 0.996771130711662, "top": 320, "right": 3135, "bottom": 1960, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703234f.jpg"} -{"rects": [{"solidity": 0.9967711508931647, "top": 795, "right": 2055, "bottom": 3220, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705096f.jpg"} -{"rects": [{"solidity": 0.9967712281602513, "top": 1015, "right": 3620, "bottom": 5205, "left": 445}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/708381f.jpg"} -{"rects": [{"solidity": 0.9967712442537738, "top": 370, "right": 3215, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700853f.jpg"} -{"rects": [{"solidity": 0.9967712532415847, "top": 2170, "right": 3140, "bottom": 3805, "left": 725}, {"solidity": 0.9977834871409896, "top": 315, "right": 3145, "bottom": 1940, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723430f.jpg"} -{"rects": [{"solidity": 0.9967713218550224, "top": 395, "right": 3155, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731376f.jpg"} -{"rects": [{"solidity": 0.9967713677887624, "top": 370, "right": 3190, "bottom": 2015, "left": 730}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/700029f.jpg"} -{"rects": [{"solidity": 0.9967717574150723, "top": 405, "right": 3215, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733808f.jpg"} -{"rects": [{"solidity": 0.99677176614687, "top": 435, "right": 3205, "bottom": 2050, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721621f.jpg"} -{"rects": [{"solidity": 0.9967719203025422, "top": 750, "right": 3290, "bottom": 2800, "left": 470}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732832f.jpg"} -{"rects": [{"solidity": 0.9967719837920628, "top": 785, "right": 3945, "bottom": 3200, "left": 2315}, {"solidity": 0.996029246563334, "top": 765, "right": 2045, "bottom": 3180, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716592f.jpg"} -{"rects": [{"solidity": 0.9967720370547226, "top": 385, "right": 3210, "bottom": 2035, "left": 785}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700101f.jpg"} -{"rects": [{"solidity": 0.9967721036366868, "top": 880, "right": 5990, "bottom": 2950, "left": 2745}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704862f.jpg"} -{"rects": [{"solidity": 0.9967721384582714, "top": 4135, "right": 3170, "bottom": 5745, "left": 770}, {"solidity": 0.9978301332449192, "top": 430, "right": 3175, "bottom": 2025, "left": 770}, {"solidity": 0.9954801704359226, "top": 2285, "right": 3180, "bottom": 3885, "left": 775}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722699f.jpg"} -{"rects": [{"solidity": 0.9967723259516572, "top": 2210, "right": 2730, "bottom": 3635, "left": 895}, {"solidity": 0.9958300666405331, "top": 740, "right": 2710, "bottom": 2170, "left": 905}, {"solidity": 0.9947047882651434, "top": 2185, "right": 5205, "bottom": 3610, "left": 3400}, {"solidity": 0.9940877073165868, "top": 735, "right": 5205, "bottom": 2150, "left": 3400}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717108f.jpg"} -{"rects": [{"solidity": 0.9967724202668862, "top": 940, "right": 5705, "bottom": 2565, "left": 3290}, {"solidity": 0.9987278010978367, "top": 945, "right": 2950, "bottom": 2565, "left": 545}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705334f.jpg"} -{"rects": [{"solidity": 0.9967725008309215, "top": 470, "right": 5110, "bottom": 3680, "left": 1000}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719832f.jpg"} -{"rects": [{"solidity": 0.9967726570170408, "top": 755, "right": 3690, "bottom": 3170, "left": 2070}, {"solidity": 0.995628348322583, "top": 1085, "right": 1765, "bottom": 2880, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716933f.jpg"} -{"rects": [{"solidity": 0.9967727048072297, "top": 465, "right": 3160, "bottom": 2065, "left": 755}, {"solidity": 0.9938069276223434, "top": 2300, "right": 3160, "bottom": 3910, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734525f.jpg"} -{"rects": [{"solidity": 0.9967727816140012, "top": 815, "right": 2050, "bottom": 3220, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712591f.jpg"} -{"rects": [{"solidity": 0.996772856401876, "top": 620, "right": 3550, "bottom": 2655, "left": 700}, {"solidity": 0.9934476065967177, "top": 2940, "right": 3525, "bottom": 4960, "left": 710}], "shape": {"h": 6140, "w": 4110}, "file": "/usr/local/google/home/danvk/milstein/713443f.jpg"} -{"rects": [{"solidity": 0.9967730044686451, "top": 745, "right": 5725, "bottom": 3165, "left": 4105}, {"solidity": 0.996739577417902, "top": 735, "right": 3870, "bottom": 3145, "left": 2265}, {"solidity": 0.9975742112881797, "top": 740, "right": 2015, "bottom": 3130, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718256f.jpg"} -{"rects": [{"solidity": 0.9967731305201818, "top": 425, "right": 3375, "bottom": 2050, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711873f.jpg"} -{"rects": [{"solidity": 0.9967732086326311, "top": 410, "right": 3135, "bottom": 2035, "left": 715}, {"solidity": 0.9984786685727026, "top": 2260, "right": 3140, "bottom": 3855, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729815f.jpg"} -{"rects": [{"solidity": 0.9967732736052499, "top": 385, "right": 3335, "bottom": 2010, "left": 910}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706178f.jpg"} -{"rects": [{"solidity": 0.9967734049171082, "top": 3315, "right": 3320, "bottom": 5245, "left": 620}, {"solidity": 0.9967409411987226, "top": 725, "right": 3350, "bottom": 2655, "left": 645}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721727f.jpg"} -{"rects": [{"solidity": 0.9967734080116888, "top": 715, "right": 2525, "bottom": 2200, "left": 435}, {"solidity": 0.994271722253528, "top": 2440, "right": 2525, "bottom": 3930, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716271f.jpg"} -{"rects": [{"solidity": 0.9967734608335955, "top": 420, "right": 3250, "bottom": 3870, "left": 635}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714162f.jpg"} -{"rects": [{"solidity": 0.9967735278606689, "top": 2265, "right": 3205, "bottom": 3860, "left": 795}, {"solidity": 0.996339709217547, "top": 370, "right": 3205, "bottom": 1970, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734157f.jpg"} -{"rects": [{"solidity": 0.9967735319570404, "top": 585, "right": 2585, "bottom": 2020, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704267f.jpg"} -{"rects": [{"solidity": 0.9967735443414037, "top": 380, "right": 3250, "bottom": 2020, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702319f.jpg"} -{"rects": [{"solidity": 0.9967735767310257, "top": 3205, "right": 3275, "bottom": 5125, "left": 565}, {"solidity": 0.9960895971063018, "top": 635, "right": 3285, "bottom": 2565, "left": 600}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715192f.jpg"} -{"rects": [{"solidity": 0.9967737901002257, "top": 1250, "right": 3625, "bottom": 5355, "left": 370}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716914f.jpg"} -{"rects": [{"solidity": 0.996773953663133, "top": 460, "right": 5110, "bottom": 3675, "left": 1090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722115f.jpg"} -{"rects": [{"solidity": 0.9967739981702322, "top": 870, "right": 3915, "bottom": 3305, "left": 2285}, {"solidity": 0.9960480689134127, "top": 870, "right": 2005, "bottom": 3290, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728918f.jpg"} -{"rects": [{"solidity": 0.9967740080873382, "top": 2200, "right": 3130, "bottom": 3820, "left": 690}, {"solidity": 0.9949083634904091, "top": 4020, "right": 3110, "bottom": 5650, "left": 710}, {"solidity": 0.9972045776681191, "top": 385, "right": 3100, "bottom": 1990, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728731f.jpg"} -{"rects": [{"solidity": 0.9967740184480848, "top": 550, "right": 5170, "bottom": 3855, "left": 1100}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705320f.jpg"} -{"rects": [{"solidity": 0.9967740277099453, "top": 425, "right": 3105, "bottom": 2040, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729714f.jpg"} -{"rects": [{"solidity": 0.9967740670544409, "top": 850, "right": 2235, "bottom": 3530, "left": 435}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711369f.jpg"} -{"rects": [{"solidity": 0.9967741524587136, "top": 815, "right": 2025, "bottom": 3250, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713294f.jpg"} -{"rects": [{"solidity": 0.9967742041126442, "top": 460, "right": 3180, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730479f.jpg"} -{"rects": [{"solidity": 0.9967743900075852, "top": 1040, "right": 3355, "bottom": 5055, "left": 520}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/716827f.jpg"} -{"rects": [{"solidity": 0.9967744509916069, "top": 680, "right": 3300, "bottom": 2705, "left": 475}, {"solidity": 0.996635577321563, "top": 3230, "right": 3305, "bottom": 5245, "left": 485}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729250f.jpg"} -{"rects": [{"solidity": 0.9967745380235612, "top": 490, "right": 3425, "bottom": 2415, "left": 710}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/712724f.jpg"} -{"rects": [{"solidity": 0.9967745808415294, "top": 735, "right": 3815, "bottom": 3145, "left": 2205}, {"solidity": 0.9976668405871292, "top": 750, "right": 2040, "bottom": 3145, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714007f.jpg"} -{"rects": [{"solidity": 0.996775121256087, "top": 430, "right": 3190, "bottom": 2040, "left": 770}, {"solidity": 0.9970671218790682, "top": 2155, "right": 2890, "bottom": 3540, "left": 1090}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720672f.jpg"} -{"rects": [{"solidity": 0.9967751827880627, "top": 290, "right": 4000, "bottom": 2785, "left": 790}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508673.jpg"} -{"rects": [{"solidity": 0.996775343583287, "top": 440, "right": 3235, "bottom": 2065, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723767f.jpg"} -{"rects": [{"solidity": 0.9967753541562289, "top": 820, "right": 2125, "bottom": 3205, "left": 550}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711448f.jpg"} -{"rects": [{"solidity": 0.9967753894364276, "top": 990, "right": 2335, "bottom": 3630, "left": 280}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1508491.jpg"} -{"rects": [{"solidity": 0.9967755398114013, "top": 515, "right": 3000, "bottom": 1940, "left": 1215}, {"solidity": 0.9947450166978459, "top": 2335, "right": 3025, "bottom": 3755, "left": 1230}, {"solidity": 0.9968229430689467, "top": 4130, "right": 3025, "bottom": 5525, "left": 1220}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725313f.jpg"} -{"rects": [{"solidity": 0.9967755484475461, "top": 860, "right": 3805, "bottom": 3280, "left": 2190}, {"solidity": 0.9972239428443559, "top": 845, "right": 1975, "bottom": 3260, "left": 365}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732539f.jpg"} -{"rects": [{"solidity": 0.9967757190146598, "top": 505, "right": 4805, "bottom": 3535, "left": 1015}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722772f.jpg"} -{"rects": [{"solidity": 0.9967759432647123, "top": 655, "right": 2730, "bottom": 2040, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726743f.jpg"} -{"rects": [{"solidity": 0.9967759511750046, "top": 355, "right": 3220, "bottom": 1970, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725769f.jpg"} -{"rects": [{"solidity": 0.9967762511421036, "top": 285, "right": 2385, "bottom": 1505, "left": 575}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715925f.jpg"} -{"rects": [{"solidity": 0.9967763277378512, "top": 460, "right": 3145, "bottom": 2070, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701451f.jpg"} -{"rects": [{"solidity": 0.9967766010834738, "top": 780, "right": 2050, "bottom": 3205, "left": 425}, {"solidity": 0.996298161021927, "top": 800, "right": 3865, "bottom": 3225, "left": 2240}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713540f.jpg"} -{"rects": [{"solidity": 0.9967766486099298, "top": 425, "right": 3190, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707188f.jpg"} -{"rects": [{"solidity": 0.9967767537537051, "top": 840, "right": 2040, "bottom": 3255, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729501f.jpg"} -{"rects": [{"solidity": 0.9967767980724868, "top": 460, "right": 3250, "bottom": 2095, "left": 830}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727696f.jpg"} -{"rects": [{"solidity": 0.9967768137703836, "top": 455, "right": 3170, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710450f.jpg"} -{"rects": [{"solidity": 0.9967771339279901, "top": 430, "right": 3325, "bottom": 2045, "left": 920}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704016f.jpg"} -{"rects": [{"solidity": 0.9967771403748611, "top": 765, "right": 3620, "bottom": 3190, "left": 1985}, {"solidity": 0.995426674835616, "top": 1025, "right": 1830, "bottom": 2865, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705787f.jpg"} -{"rects": [{"solidity": 0.9967771563798249, "top": 770, "right": 2000, "bottom": 3175, "left": 390}, {"solidity": 0.9964423982421262, "top": 800, "right": 3845, "bottom": 3205, "left": 2235}, {"solidity": 0.9959423625847248, "top": 840, "right": 5695, "bottom": 3245, "left": 4080}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719925f.jpg"} -{"rects": [{"solidity": 0.9967772517879413, "top": 365, "right": 3140, "bottom": 2010, "left": 695}, {"solidity": 0.997127118589723, "top": 2210, "right": 3125, "bottom": 3830, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701547f.jpg"} -{"rects": [{"solidity": 0.9967772955271981, "top": 425, "right": 3115, "bottom": 2030, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700294f.jpg"} -{"rects": [{"solidity": 0.996777339335189, "top": 780, "right": 3870, "bottom": 3200, "left": 2255}, {"solidity": 0.9981421843898176, "top": 785, "right": 2035, "bottom": 3200, "left": 425}, {"solidity": 0.9956152672981217, "top": 790, "right": 5775, "bottom": 2185, "left": 3955}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705200f.jpg"} -{"rects": [{"solidity": 0.9967773434352875, "top": 440, "right": 3060, "bottom": 2055, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729471f.jpg"} -{"rects": [{"solidity": 0.9967774146695715, "top": 350, "right": 3035, "bottom": 1970, "left": 630}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702264f.jpg"} -{"rects": [{"solidity": 0.9967775535446911, "top": 935, "right": 5970, "bottom": 3000, "left": 2725}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724969f.jpg"} -{"rects": [{"solidity": 0.9967776892430279, "top": 760, "right": 1875, "bottom": 3190, "left": 245}, {"solidity": 0.9959026086511847, "top": 760, "right": 3705, "bottom": 3190, "left": 2075}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720861f.jpg"} -{"rects": [{"solidity": 0.996777700321255, "top": 680, "right": 2695, "bottom": 2110, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704078f.jpg"} -{"rects": [{"solidity": 0.9967777132058915, "top": 990, "right": 3545, "bottom": 5020, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722020f.jpg"} -{"rects": [{"solidity": 0.9967778048747703, "top": 400, "right": 2895, "bottom": 3630, "left": 830}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733066f.jpg"} -{"rects": [{"solidity": 0.9967778124883343, "top": 930, "right": 3465, "bottom": 4940, "left": 275}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712411f.jpg"} -{"rects": [{"solidity": 0.9967780700899672, "top": 2275, "right": 3190, "bottom": 3880, "left": 775}, {"solidity": 0.9959359761941116, "top": 4100, "right": 3185, "bottom": 5710, "left": 770}, {"solidity": 0.9970231503797601, "top": 440, "right": 3185, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733875f.jpg"} -{"rects": [{"solidity": 0.9967781138904559, "top": 430, "right": 2495, "bottom": 3690, "left": 435}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732989f.jpg"} -{"rects": [{"solidity": 0.9967782027009653, "top": 960, "right": 2630, "bottom": 3695, "left": 775}], "shape": {"h": 4420, "w": 6935}, "file": "/usr/local/google/home/danvk/milstein/708856f.jpg"} -{"rects": [{"solidity": 0.9967782727220736, "top": 765, "right": 3895, "bottom": 3200, "left": 2255}, {"solidity": 0.9996409266656835, "top": 765, "right": 2030, "bottom": 3185, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731760f.jpg"} -{"rects": [{"solidity": 0.9967785061933219, "top": 445, "right": 3210, "bottom": 2060, "left": 790}, {"solidity": 0.9963003460966555, "top": 2295, "right": 3200, "bottom": 3915, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721035f.jpg"} -{"rects": [{"solidity": 0.9967786099702022, "top": 370, "right": 3335, "bottom": 2295, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714310f.jpg"} -{"rects": [{"solidity": 0.9967786279506652, "top": 435, "right": 3245, "bottom": 2075, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702300f.jpg"} -{"rects": [{"solidity": 0.9967788094428367, "top": 455, "right": 3125, "bottom": 2085, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705730f.jpg"} -{"rects": [{"solidity": 0.996778817556257, "top": 775, "right": 1970, "bottom": 3185, "left": 360}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712001f.jpg"} -{"rects": [{"solidity": 0.9967788325121882, "top": 2290, "right": 3180, "bottom": 3915, "left": 775}, {"solidity": 0.994954565263005, "top": 560, "right": 3195, "bottom": 2200, "left": 790}, {"solidity": 0.9955041933908408, "top": 4005, "right": 3190, "bottom": 5635, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733220f.jpg"} -{"rects": [{"solidity": 0.9967788921185522, "top": 905, "right": 3915, "bottom": 3325, "left": 2285}, {"solidity": 0.9977917128067781, "top": 910, "right": 2050, "bottom": 3320, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719909f.jpg"} -{"rects": [{"solidity": 0.9967789971878331, "top": 1375, "right": 3095, "bottom": 4765, "left": 480}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/709112f.jpg"} -{"rects": [{"solidity": 0.9967790774100512, "top": 755, "right": 2075, "bottom": 3165, "left": 480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717537f.jpg"} -{"rects": [{"solidity": 0.9967793363247149, "top": 425, "right": 3180, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705474f.jpg"} -{"rects": [{"solidity": 0.996779517862554, "top": 795, "right": 3905, "bottom": 3210, "left": 2285}, {"solidity": 0.9983519732696527, "top": 795, "right": 2065, "bottom": 3205, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732359f.jpg"} -{"rects": [{"solidity": 0.996779520534511, "top": 365, "right": 2985, "bottom": 2020, "left": 550}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732821f.jpg"} -{"rects": [{"solidity": 0.9967795607723855, "top": 795, "right": 2005, "bottom": 3210, "left": 395}, {"solidity": 0.9958199818572202, "top": 800, "right": 3820, "bottom": 3190, "left": 2205}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713545f.jpg"} -{"rects": [{"solidity": 0.9967795913479434, "top": 2240, "right": 3220, "bottom": 3850, "left": 800}, {"solidity": 0.9963865598288508, "top": 4100, "right": 3210, "bottom": 5710, "left": 800}, {"solidity": 0.9979634336312208, "top": 405, "right": 3200, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719977f.jpg"} -{"rects": [{"solidity": 0.9967798273586118, "top": 460, "right": 3185, "bottom": 2100, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700049f.jpg"} -{"rects": [{"solidity": 0.9967798460864505, "top": 2270, "right": 3085, "bottom": 3885, "left": 685}, {"solidity": 0.9961383241771774, "top": 4165, "right": 3070, "bottom": 5790, "left": 705}, {"solidity": 0.9972762315542801, "top": 465, "right": 3065, "bottom": 2045, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722863f.jpg"} -{"rects": [{"solidity": 0.9967800465104393, "top": 805, "right": 3870, "bottom": 3240, "left": 2245}, {"solidity": 0.9961659215070041, "top": 830, "right": 5700, "bottom": 3265, "left": 4075}, {"solidity": 0.9958475115768792, "top": 800, "right": 2015, "bottom": 3225, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734751f.jpg"} -{"rects": [{"solidity": 0.996780055953126, "top": 775, "right": 4560, "bottom": 3360, "left": 1325}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702630f.jpg"} -{"rects": [{"solidity": 0.9967802987702797, "top": 745, "right": 3840, "bottom": 3165, "left": 2220}, {"solidity": 0.9953225906759495, "top": 755, "right": 2020, "bottom": 3150, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718720f.jpg"} -{"rects": [{"solidity": 0.9967803085349274, "top": 430, "right": 3165, "bottom": 2050, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728403f.jpg"} -{"rects": [{"solidity": 0.9967806748415823, "top": 360, "right": 3190, "bottom": 1960, "left": 795}, {"solidity": 0.9898527257305884, "top": 2160, "right": 3115, "bottom": 3620, "left": 865}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719355f.jpg"} -{"rects": [{"solidity": 0.9967806882595274, "top": 515, "right": 3285, "bottom": 2540, "left": 245}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711512f.jpg"} -{"rects": [{"solidity": 0.9967809431836472, "top": 915, "right": 2190, "bottom": 3335, "left": 565}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707764f.jpg"} -{"rects": [{"solidity": 0.9967814148009033, "top": 770, "right": 2035, "bottom": 3180, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712042f.jpg"} -{"rects": [{"solidity": 0.9967814685350824, "top": 625, "right": 3415, "bottom": 2630, "left": 365}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710326f.jpg"} -{"rects": [{"solidity": 0.9967816091954023, "top": 780, "right": 3885, "bottom": 3200, "left": 2265}, {"solidity": 0.9999805065692862, "top": 785, "right": 2030, "bottom": 3195, "left": 425}, {"solidity": 0.9963578913971776, "top": 790, "right": 5715, "bottom": 3205, "left": 4105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710778f.jpg"} -{"rects": [{"solidity": 0.9967816737210422, "top": 2275, "right": 3190, "bottom": 3895, "left": 745}, {"solidity": 0.9946655468470627, "top": 430, "right": 3190, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734147f.jpg"} -{"rects": [{"solidity": 0.9967817952751794, "top": 790, "right": 2000, "bottom": 3195, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724769f.jpg"} -{"rects": [{"solidity": 0.996781908772843, "top": 455, "right": 5045, "bottom": 3705, "left": 1020}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717724f.jpg"} -{"rects": [{"solidity": 0.9967820580365905, "top": 625, "right": 2675, "bottom": 2005, "left": 905}, {"solidity": 0.9960559637978993, "top": 2020, "right": 2675, "bottom": 3400, "left": 910}, {"solidity": 0.9982284192810509, "top": 615, "right": 5170, "bottom": 1985, "left": 3405}], "shape": {"h": 3880, "w": 6065}, "file": "/usr/local/google/home/danvk/milstein/728138f.jpg"} -{"rects": [{"solidity": 0.9967821529455808, "top": 335, "right": 3920, "bottom": 2830, "left": 885}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509197.jpg"} -{"rects": [{"solidity": 0.996782245797418, "top": 420, "right": 3135, "bottom": 2025, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728444f.jpg"} -{"rects": [{"solidity": 0.9967825480625561, "top": 425, "right": 3210, "bottom": 2015, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715427f.jpg"} -{"rects": [{"solidity": 0.9967826086956522, "top": 4055, "right": 3090, "bottom": 5675, "left": 675}, {"solidity": 0.9968307859134565, "top": 2180, "right": 3105, "bottom": 3800, "left": 690}, {"solidity": 0.9966883512509581, "top": 320, "right": 3110, "bottom": 1925, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715350f.jpg"} -{"rects": [{"solidity": 0.9967826942151539, "top": 415, "right": 5065, "bottom": 3490, "left": 1150}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731128f.jpg"} -{"rects": [{"solidity": 0.9967828793230059, "top": 805, "right": 2700, "bottom": 2205, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726140f.jpg"} -{"rects": [{"solidity": 0.9967829202310449, "top": 480, "right": 3315, "bottom": 2065, "left": 920}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727384f.jpg"} -{"rects": [{"solidity": 0.9967831014087468, "top": 745, "right": 2030, "bottom": 3175, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732395f.jpg"} -{"rects": [{"solidity": 0.9967831030633119, "top": 2260, "right": 3095, "bottom": 3885, "left": 680}, {"solidity": 0.9956867476131175, "top": 400, "right": 3125, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724414f.jpg"} -{"rects": [{"solidity": 0.996783138853074, "top": 450, "right": 3285, "bottom": 2065, "left": 865}, {"solidity": 0.9959393565649315, "top": 2300, "right": 3260, "bottom": 3885, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705144f.jpg"} -{"rects": [{"solidity": 0.9967831497497766, "top": 2060, "right": 5465, "bottom": 3600, "left": 3570}, {"solidity": 0.9959237076987516, "top": 2055, "right": 2585, "bottom": 3590, "left": 685}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709719f.jpg"} -{"rects": [{"solidity": 0.9967832185864212, "top": 4010, "right": 3125, "bottom": 5620, "left": 695}, {"solidity": 0.9959964697935618, "top": 2275, "right": 2995, "bottom": 3680, "left": 1175}, {"solidity": 0.9950349819297009, "top": 485, "right": 3000, "bottom": 1890, "left": 1175}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725817f.jpg"} -{"rects": [{"solidity": 0.9967834817074985, "top": 860, "right": 2015, "bottom": 3245, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713848f.jpg"} -{"rects": [{"solidity": 0.9967835224723927, "top": 885, "right": 3905, "bottom": 3320, "left": 2275}, {"solidity": 0.9964131349264965, "top": 885, "right": 5755, "bottom": 3310, "left": 4135}, {"solidity": 0.9962588863512079, "top": 880, "right": 2020, "bottom": 3305, "left": 405}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729183f.jpg"} -{"rects": [{"solidity": 0.9967836743747573, "top": 490, "right": 3550, "bottom": 2325, "left": 810}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/702216f.jpg"} -{"rects": [{"solidity": 0.9967837281069594, "top": 495, "right": 2135, "bottom": 2585, "left": 650}, {"solidity": 0.996027692194985, "top": 495, "right": 3970, "bottom": 2580, "left": 2485}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716112f.jpg"} -{"rects": [{"solidity": 0.9967838543232743, "top": 610, "right": 2690, "bottom": 3475, "left": 855}, {"solidity": 0.9938547432807097, "top": 590, "right": 5230, "bottom": 2055, "left": 3365}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702773f.jpg"} -{"rects": [{"solidity": 0.9967839549892964, "top": 485, "right": 5045, "bottom": 3625, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723760f.jpg"} -{"rects": [{"solidity": 0.996784006393318, "top": 2290, "right": 3145, "bottom": 3910, "left": 730}, {"solidity": 0.9981925509394455, "top": 470, "right": 3130, "bottom": 2065, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734715f.jpg"} -{"rects": [{"solidity": 0.996784022421745, "top": 490, "right": 5745, "bottom": 4160, "left": 1140}], "shape": {"h": 4430, "w": 6935}, "file": "/usr/local/google/home/danvk/milstein/708823f.jpg"} -{"rects": [{"solidity": 0.9967840315927352, "top": 420, "right": 3080, "bottom": 2025, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729219f.jpg"} -{"rects": [{"solidity": 0.9967841368108923, "top": 1020, "right": 2270, "bottom": 3240, "left": 520}], "shape": {"h": 4425, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706421f.jpg"} -{"rects": [{"solidity": 0.9967842758176253, "top": 785, "right": 2040, "bottom": 3205, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718742f.jpg"} -{"rects": [{"solidity": 0.9967844802907948, "top": 550, "right": 3090, "bottom": 2135, "left": 705}, {"solidity": 0.9963914143781047, "top": 2355, "right": 3100, "bottom": 3935, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721438f.jpg"} -{"rects": [{"solidity": 0.9967848851172845, "top": 2235, "right": 3100, "bottom": 3860, "left": 675}, {"solidity": 0.9964147856953506, "top": 4100, "right": 3110, "bottom": 5720, "left": 685}, {"solidity": 0.9953463820306225, "top": 380, "right": 3095, "bottom": 2000, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734808f.jpg"} -{"rects": [{"solidity": 0.9967849340291359, "top": 785, "right": 3865, "bottom": 3210, "left": 2225}, {"solidity": 0.9966163199694419, "top": 805, "right": 5760, "bottom": 3235, "left": 4125}, {"solidity": 0.9989956338861612, "top": 775, "right": 1970, "bottom": 3195, "left": 345}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711894f.jpg"} -{"rects": [{"solidity": 0.9967849800373019, "top": 400, "right": 5085, "bottom": 3630, "left": 990}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722637f.jpg"} -{"rects": [{"solidity": 0.9967850936474223, "top": 740, "right": 2070, "bottom": 3160, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717952f.jpg"} -{"rects": [{"solidity": 0.9967851180538994, "top": 835, "right": 3875, "bottom": 3265, "left": 2235}, {"solidity": 0.9957187952124161, "top": 880, "right": 5700, "bottom": 3275, "left": 4095}, {"solidity": 0.9953802652364959, "top": 845, "right": 2005, "bottom": 3245, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710224f.jpg"} -{"rects": [{"solidity": 0.9967854833908742, "top": 1005, "right": 3565, "bottom": 5045, "left": 260}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713968f.jpg"} -{"rects": [{"solidity": 0.9967857453113387, "top": 4045, "right": 3170, "bottom": 5660, "left": 745}, {"solidity": 0.9981701886486924, "top": 2185, "right": 3170, "bottom": 3795, "left": 755}, {"solidity": 0.9902545854516052, "top": 335, "right": 3165, "bottom": 1960, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734842f.jpg"} -{"rects": [{"solidity": 0.9967859139183901, "top": 385, "right": 3160, "bottom": 1980, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722847f.jpg"} -{"rects": [{"solidity": 0.9967859820979392, "top": 995, "right": 3565, "bottom": 3065, "left": 315}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733077f.jpg"} -{"rects": [{"solidity": 0.9967860487056189, "top": 775, "right": 2855, "bottom": 3925, "left": 585}], "shape": {"h": 4410, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711328f.jpg"} -{"rects": [{"solidity": 0.9967861466426682, "top": 1095, "right": 5425, "bottom": 2730, "left": 605}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722970f.jpg"} -{"rects": [{"solidity": 0.9967861953941882, "top": 400, "right": 3235, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726898f.jpg"} -{"rects": [{"solidity": 0.9967865052366881, "top": 425, "right": 3215, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725119f.jpg"} -{"rects": [{"solidity": 0.9967867860917599, "top": 975, "right": 3560, "bottom": 5005, "left": 315}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720376f.jpg"} -{"rects": [{"solidity": 0.9967868199445816, "top": 430, "right": 3250, "bottom": 3740, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708200f.jpg"} -{"rects": [{"solidity": 0.9967868431061391, "top": 460, "right": 3145, "bottom": 2070, "left": 745}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717793f.jpg"} -{"rects": [{"solidity": 0.9967870808195216, "top": 450, "right": 3195, "bottom": 2060, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714959f.jpg"} -{"rects": [{"solidity": 0.9967871485943776, "top": 320, "right": 3240, "bottom": 1955, "left": 795}, {"solidity": 0.9950754496775479, "top": 3995, "right": 3225, "bottom": 5635, "left": 775}, {"solidity": 0.9960563219411906, "top": 2145, "right": 3240, "bottom": 3790, "left": 795}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/730717f.jpg"} -{"rects": [{"solidity": 0.9967871719363505, "top": 640, "right": 1985, "bottom": 3055, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725838f.jpg"} -{"rects": [{"solidity": 0.9967873272965938, "top": 665, "right": 2765, "bottom": 2205, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728212f.jpg"} -{"rects": [{"solidity": 0.9967873916388488, "top": 815, "right": 1990, "bottom": 3240, "left": 365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720074f.jpg"} -{"rects": [{"solidity": 0.9967874063787937, "top": 815, "right": 2085, "bottom": 3250, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719285f.jpg"} -{"rects": [{"solidity": 0.9967876115113686, "top": 915, "right": 3505, "bottom": 4905, "left": 255}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731808f.jpg"} -{"rects": [{"solidity": 0.9967876667042944, "top": 760, "right": 1995, "bottom": 3180, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719639f.jpg"} -{"rects": [{"solidity": 0.9967876852702521, "top": 790, "right": 3825, "bottom": 3215, "left": 2205}, {"solidity": 0.9981811137887334, "top": 795, "right": 2035, "bottom": 3200, "left": 440}, {"solidity": 0.99590454205632, "top": 805, "right": 5595, "bottom": 3215, "left": 3990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724093f.jpg"} -{"rects": [{"solidity": 0.9967877550759229, "top": 895, "right": 3890, "bottom": 3320, "left": 2265}, {"solidity": 0.9969122541506614, "top": 905, "right": 2030, "bottom": 3330, "left": 400}, {"solidity": 0.9975932414824588, "top": 925, "right": 5745, "bottom": 3320, "left": 4135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732814f.jpg"} -{"rects": [{"solidity": 0.9967877559857937, "top": 425, "right": 3120, "bottom": 2060, "left": 715}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723120f.jpg"} -{"rects": [{"solidity": 0.9967878198306424, "top": 515, "right": 3190, "bottom": 2115, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709653f.jpg"} -{"rects": [{"solidity": 0.9967879080279634, "top": 735, "right": 2040, "bottom": 3145, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726333f.jpg"} -{"rects": [{"solidity": 0.9967880085653105, "top": 4160, "right": 3195, "bottom": 5785, "left": 770}, {"solidity": 0.9962027028767988, "top": 2310, "right": 3185, "bottom": 3935, "left": 770}, {"solidity": 0.9977449754628777, "top": 445, "right": 3205, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732008f.jpg"} -{"rects": [{"solidity": 0.9967883541525451, "top": 835, "right": 3870, "bottom": 3250, "left": 2250}, {"solidity": 0.9967096181143156, "top": 845, "right": 2025, "bottom": 3260, "left": 420}, {"solidity": 0.9963524240635045, "top": 830, "right": 5705, "bottom": 3240, "left": 4110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709552f.jpg"} -{"rects": [{"solidity": 0.9967885948252473, "top": 650, "right": 2705, "bottom": 2055, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702828f.jpg"} -{"rects": [{"solidity": 0.9967886489615886, "top": 840, "right": 1980, "bottom": 3275, "left": 355}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724115f.jpg"} -{"rects": [{"solidity": 0.9967887234035624, "top": 300, "right": 3110, "bottom": 1900, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714119f.jpg"} -{"rects": [{"solidity": 0.9967887586440383, "top": 810, "right": 2150, "bottom": 3195, "left": 570}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721066f.jpg"} -{"rects": [{"solidity": 0.9967888654641993, "top": 770, "right": 2030, "bottom": 3175, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713131f.jpg"} -{"rects": [{"solidity": 0.9967888756356331, "top": 2075, "right": 3055, "bottom": 3740, "left": 605}, {"solidity": 0.9975508750055662, "top": 420, "right": 3015, "bottom": 2050, "left": 580}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705922f.jpg"} -{"rects": [{"solidity": 0.9967890791618652, "top": 1100, "right": 3400, "bottom": 4985, "left": 260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718550f.jpg"} -{"rects": [{"solidity": 0.9967890996020021, "top": 855, "right": 5730, "bottom": 3275, "left": 4100}, {"solidity": 0.996567273383637, "top": 840, "right": 1995, "bottom": 3265, "left": 380}, {"solidity": 0.9970655067194703, "top": 855, "right": 3850, "bottom": 3265, "left": 2240}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709577f.jpg"} -{"rects": [{"solidity": 0.9967891198696247, "top": 420, "right": 3250, "bottom": 2035, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725633f.jpg"} -{"rects": [{"solidity": 0.996789177318723, "top": 800, "right": 2010, "bottom": 3230, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728328f.jpg"} -{"rects": [{"solidity": 0.996789222060613, "top": 2235, "right": 3100, "bottom": 3865, "left": 685}, {"solidity": 0.9976900617811688, "top": 390, "right": 3095, "bottom": 2010, "left": 685}, {"solidity": 0.9992912139659977, "top": 4095, "right": 3070, "bottom": 5710, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710532f.jpg"} -{"rects": [{"solidity": 0.9967892545460694, "top": 1145, "right": 3595, "bottom": 5130, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704505f.jpg"} -{"rects": [{"solidity": 0.9967894787101278, "top": 460, "right": 3135, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718631f.jpg"} -{"rects": [{"solidity": 0.9967894931221937, "top": 430, "right": 3270, "bottom": 2050, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734316f.jpg"} -{"rects": [{"solidity": 0.9967895060745472, "top": 715, "right": 2515, "bottom": 3570, "left": 445}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717001f.jpg"} -{"rects": [{"solidity": 0.9967895652739603, "top": 815, "right": 3935, "bottom": 3220, "left": 2320}, {"solidity": 0.9964471907033192, "top": 805, "right": 5795, "bottom": 3210, "left": 4185}, {"solidity": 0.9972048205390048, "top": 820, "right": 2050, "bottom": 3215, "left": 445}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733360f.jpg"} -{"rects": [{"solidity": 0.9967896332448425, "top": 375, "right": 2990, "bottom": 2000, "left": 590}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703154f.jpg"} -{"rects": [{"solidity": 0.9967896955779695, "top": 415, "right": 3180, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721977f.jpg"} -{"rects": [{"solidity": 0.9967897883242848, "top": 2570, "right": 3620, "bottom": 4390, "left": 895}, {"solidity": 0.9969347870808476, "top": 450, "right": 3610, "bottom": 2255, "left": 895}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711664f.jpg"} -{"rects": [{"solidity": 0.9967898560737273, "top": 430, "right": 2970, "bottom": 2065, "left": 555}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700710f.jpg"} -{"rects": [{"solidity": 0.9967899202846466, "top": 855, "right": 1985, "bottom": 3265, "left": 375}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728349f.jpg"} -{"rects": [{"solidity": 0.9967899274773246, "top": 405, "right": 3155, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701921f.jpg"} -{"rects": [{"solidity": 0.9967899286829692, "top": 780, "right": 2015, "bottom": 3210, "left": 395}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728748f.jpg"} -{"rects": [{"solidity": 0.9967899520828606, "top": 455, "right": 3205, "bottom": 2045, "left": 825}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710088f.jpg"} -{"rects": [{"solidity": 0.9967901194336272, "top": 795, "right": 1980, "bottom": 3205, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713450f.jpg"} -{"rects": [{"solidity": 0.9967901630440117, "top": 2265, "right": 3085, "bottom": 3885, "left": 690}, {"solidity": 0.9988462752110232, "top": 425, "right": 3080, "bottom": 2030, "left": 695}, {"solidity": 0.9971397703278263, "top": 4095, "right": 3070, "bottom": 5705, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734043f.jpg"} -{"rects": [{"solidity": 0.9967903113728864, "top": 825, "right": 2050, "bottom": 3220, "left": 460}, {"solidity": 0.9974762729383969, "top": 830, "right": 3860, "bottom": 3205, "left": 2280}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712574f.jpg"} -{"rects": [{"solidity": 0.9967903658787188, "top": 850, "right": 2045, "bottom": 3260, "left": 445}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729052f.jpg"} -{"rects": [{"solidity": 0.9967906410953231, "top": 780, "right": 2030, "bottom": 3195, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701747f.jpg"} -{"rects": [{"solidity": 0.9967907163887416, "top": 2545, "right": 1905, "bottom": 4965, "left": 260}, {"solidity": 0.9967861860911302, "top": 360, "right": 3245, "bottom": 1980, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710331f.jpg"} -{"rects": [{"solidity": 0.9967911059587778, "top": 850, "right": 2265, "bottom": 3530, "left": 465}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711242f.jpg"} -{"rects": [{"solidity": 0.9967911130584945, "top": 795, "right": 3905, "bottom": 3220, "left": 2290}, {"solidity": 0.996901316617658, "top": 795, "right": 2080, "bottom": 3215, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731656f.jpg"} -{"rects": [{"solidity": 0.9967911234396671, "top": 660, "right": 3255, "bottom": 2685, "left": 425}, {"solidity": 0.9976035062375717, "top": 3270, "right": 3255, "bottom": 5275, "left": 440}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728730f.jpg"} -{"rects": [{"solidity": 0.9967912085024764, "top": 2315, "right": 3270, "bottom": 3910, "left": 860}, {"solidity": 0.9959544560769517, "top": 460, "right": 3275, "bottom": 2040, "left": 870}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727378f.jpg"} -{"rects": [{"solidity": 0.9967913020658135, "top": 880, "right": 3465, "bottom": 5290, "left": 285}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732254f.jpg"} -{"rects": [{"solidity": 0.9967914404117758, "top": 790, "right": 2035, "bottom": 3215, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711961f.jpg"} -{"rects": [{"solidity": 0.9967916165006423, "top": 2270, "right": 3075, "bottom": 3855, "left": 700}, {"solidity": 0.996446078017371, "top": 425, "right": 3085, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728599f.jpg"} -{"rects": [{"solidity": 0.9967916570455464, "top": 195, "right": 5240, "bottom": 3590, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731106f.jpg"} -{"rects": [{"solidity": 0.9967916809258626, "top": 405, "right": 2600, "bottom": 3620, "left": 560}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733037f.jpg"} -{"rects": [{"solidity": 0.996791800646023, "top": 1610, "right": 3370, "bottom": 5250, "left": 500}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708063f.jpg"} -{"rects": [{"solidity": 0.9967919956226061, "top": 580, "right": 3115, "bottom": 2230, "left": 660}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715134f.jpg"} -{"rects": [{"solidity": 0.9967920084463575, "top": 600, "right": 4940, "bottom": 3470, "left": 1155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731121f.jpg"} -{"rects": [{"solidity": 0.9967920708841717, "top": 525, "right": 2930, "bottom": 2325, "left": 1660}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508695.jpg"} -{"rects": [{"solidity": 0.9967920935119516, "top": 775, "right": 2005, "bottom": 3175, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713634f.jpg"} -{"rects": [{"solidity": 0.9967922812689433, "top": 795, "right": 3900, "bottom": 3235, "left": 2245}, {"solidity": 0.9963488586214561, "top": 780, "right": 2030, "bottom": 3215, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729572f.jpg"} -{"rects": [{"solidity": 0.9967923706407572, "top": 2780, "right": 3365, "bottom": 4715, "left": 565}, {"solidity": 0.9929381398087935, "top": 425, "right": 3270, "bottom": 2320, "left": 605}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701606f.jpg"} -{"rects": [{"solidity": 0.9967923891558327, "top": 780, "right": 3810, "bottom": 3180, "left": 2165}, {"solidity": 0.9987710129010959, "top": 815, "right": 5680, "bottom": 3190, "left": 4060}, {"solidity": 0.9980600975211992, "top": 780, "right": 1940, "bottom": 3135, "left": 315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715588f.jpg"} -{"rects": [{"solidity": 0.9967925293060693, "top": 425, "right": 3265, "bottom": 2060, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700080f.jpg"} -{"rects": [{"solidity": 0.996792668244927, "top": 395, "right": 3185, "bottom": 2050, "left": 725}, {"solidity": 0.9989105665678164, "top": 2210, "right": 3185, "bottom": 3850, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700046f.jpg"} -{"rects": [{"solidity": 0.9967927951276403, "top": 750, "right": 3805, "bottom": 3170, "left": 2185}, {"solidity": 0.99924595850149, "top": 730, "right": 1975, "bottom": 3135, "left": 380}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730452f.jpg"} -{"rects": [{"solidity": 0.9967928240228234, "top": 765, "right": 3910, "bottom": 3200, "left": 2260}, {"solidity": 0.997099554461101, "top": 760, "right": 2040, "bottom": 3195, "left": 395}, {"solidity": 0.9965254491687265, "top": 785, "right": 5755, "bottom": 3225, "left": 4120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715276f.jpg"} -{"rects": [{"solidity": 0.9967928855724572, "top": 425, "right": 3065, "bottom": 2065, "left": 640}, {"solidity": 0.9974819001445396, "top": 2320, "right": 3065, "bottom": 3935, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710722f.jpg"} -{"rects": [{"solidity": 0.9967928959525598, "top": 2355, "right": 3455, "bottom": 4220, "left": 705}, {"solidity": 0.9971228471521956, "top": 500, "right": 3445, "bottom": 2345, "left": 710}], "shape": {"h": 4435, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/702233f.jpg"} -{"rects": [{"solidity": 0.9967931363448845, "top": 755, "right": 2050, "bottom": 3170, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732503f.jpg"} -{"rects": [{"solidity": 0.996793174124312, "top": 340, "right": 2360, "bottom": 1550, "left": 550}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/707080f.jpg"} -{"rects": [{"solidity": 0.9967932816622366, "top": 435, "right": 3075, "bottom": 2040, "left": 685}, {"solidity": 0.9935568503185799, "top": 2315, "right": 3065, "bottom": 3895, "left": 690}, {"solidity": 0.9933279501128708, "top": 4150, "right": 2790, "bottom": 5280, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734329f.jpg"} -{"rects": [{"solidity": 0.9967933115433057, "top": 915, "right": 2405, "bottom": 3625, "left": 585}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711305f.jpg"} -{"rects": [{"solidity": 0.9967936063172642, "top": 415, "right": 3225, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705021f.jpg"} -{"rects": [{"solidity": 0.9967937675160055, "top": 500, "right": 2585, "bottom": 3230, "left": 785}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701605f.jpg"} -{"rects": [{"solidity": 0.9967939213519061, "top": 1055, "right": 3525, "bottom": 5075, "left": 270}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719012f.jpg"} -{"rects": [{"solidity": 0.9967939235686815, "top": 430, "right": 3160, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715250f.jpg"} -{"rects": [{"solidity": 0.9967939281982264, "top": 780, "right": 2055, "bottom": 3190, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732402f.jpg"} -{"rects": [{"solidity": 0.9967939367032409, "top": 2280, "right": 3055, "bottom": 3915, "left": 615}, {"solidity": 0.9958524498745279, "top": 4130, "right": 3040, "bottom": 5775, "left": 590}, {"solidity": 0.9986546235675273, "top": 420, "right": 3040, "bottom": 2040, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733469f.jpg"} -{"rects": [{"solidity": 0.9967940724795569, "top": 615, "right": 3145, "bottom": 2225, "left": 755}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711838f.jpg"} -{"rects": [{"solidity": 0.9967942181206343, "top": 420, "right": 3275, "bottom": 2050, "left": 845}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706201f.jpg"} -{"rects": [{"solidity": 0.9967943039013026, "top": 2240, "right": 3145, "bottom": 3840, "left": 750}, {"solidity": 0.9960661000881907, "top": 425, "right": 3145, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719101f.jpg"} -{"rects": [{"solidity": 0.9967944229614707, "top": 470, "right": 3300, "bottom": 3905, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714795f.jpg"} -{"rects": [{"solidity": 0.9967944589586245, "top": 610, "right": 3350, "bottom": 2515, "left": 610}, {"solidity": 0.988360979443714, "top": 3295, "right": 3310, "bottom": 5215, "left": 590}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713361f.jpg"} -{"rects": [{"solidity": 0.9967944654137123, "top": 845, "right": 2165, "bottom": 3255, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710916f.jpg"} -{"rects": [{"solidity": 0.9967944924733355, "top": 1355, "right": 3255, "bottom": 4740, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723169f.jpg"} -{"rects": [{"solidity": 0.9967945030361137, "top": 700, "right": 2020, "bottom": 3130, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724033f.jpg"} -{"rects": [{"solidity": 0.9967946316595273, "top": 2305, "right": 3115, "bottom": 3915, "left": 715}, {"solidity": 0.9972509422305613, "top": 4075, "right": 3115, "bottom": 5680, "left": 715}, {"solidity": 0.9627235593490933, "top": 670, "right": 3010, "bottom": 2115, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723164f.jpg"} -{"rects": [{"solidity": 0.9967946558345927, "top": 405, "right": 3165, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704671f.jpg"} -{"rects": [{"solidity": 0.9967947463839001, "top": 755, "right": 3890, "bottom": 3165, "left": 2285}, {"solidity": 0.9964320456489237, "top": 770, "right": 2045, "bottom": 3175, "left": 435}, {"solidity": 0.999023939853591, "top": 760, "right": 5715, "bottom": 3150, "left": 4120}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724758f.jpg"} -{"rects": [{"solidity": 0.9967947687539784, "top": 525, "right": 3250, "bottom": 2150, "left": 830}, {"solidity": 0.9983827056459454, "top": 2245, "right": 3235, "bottom": 3860, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715459f.jpg"} -{"rects": [{"solidity": 0.9967947886958777, "top": 735, "right": 3855, "bottom": 3150, "left": 2245}, {"solidity": 0.9977530654839551, "top": 760, "right": 2005, "bottom": 3165, "left": 400}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713466f.jpg"} -{"rects": [{"solidity": 0.9967948923609997, "top": 775, "right": 2015, "bottom": 3210, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706651f.jpg"} -{"rects": [{"solidity": 0.9967949361329131, "top": 435, "right": 3340, "bottom": 2015, "left": 950}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726812f.jpg"} -{"rects": [{"solidity": 0.9967950507176656, "top": 370, "right": 3200, "bottom": 1965, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720574f.jpg"} -{"rects": [{"solidity": 0.9967952021740148, "top": 1100, "right": 3420, "bottom": 4995, "left": 310}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722502f.jpg"} -{"rects": [{"solidity": 0.9967952345687796, "top": 390, "right": 3230, "bottom": 2005, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725883f.jpg"} -{"rects": [{"solidity": 0.9967952412053223, "top": 395, "right": 3170, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700892f.jpg"} -{"rects": [{"solidity": 0.9967955694986875, "top": 1140, "right": 5650, "bottom": 2765, "left": 3225}, {"solidity": 0.9955894107337179, "top": 1160, "right": 2855, "bottom": 2795, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719797f.jpg"} -{"rects": [{"solidity": 0.9967956331079847, "top": 855, "right": 2565, "bottom": 3685, "left": 605}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/712928f.jpg"} -{"rects": [{"solidity": 0.9967956451659605, "top": 390, "right": 3100, "bottom": 2005, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729868f.jpg"} -{"rects": [{"solidity": 0.996795708079851, "top": 470, "right": 5665, "bottom": 4095, "left": 1105}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/708888f.jpg"} -{"rects": [{"solidity": 0.9967959618948325, "top": 2235, "right": 3265, "bottom": 3880, "left": 835}, {"solidity": 0.9985426569126107, "top": 400, "right": 3265, "bottom": 2020, "left": 840}, {"solidity": 0.9962917379793979, "top": 4085, "right": 3275, "bottom": 5705, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727538f.jpg"} -{"rects": [{"solidity": 0.9967960166065073, "top": 430, "right": 5020, "bottom": 3680, "left": 1005}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717495f.jpg"} -{"rects": [{"solidity": 0.9967962402370397, "top": 785, "right": 3890, "bottom": 3215, "left": 2270}, {"solidity": 0.9982641021496687, "top": 785, "right": 2015, "bottom": 3205, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709555f.jpg"} -{"rects": [{"solidity": 0.9967962520834271, "top": 735, "right": 2580, "bottom": 3780, "left": 275}], "shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508599.jpg"} -{"rects": [{"solidity": 0.9967962574608807, "top": 2325, "right": 3070, "bottom": 3945, "left": 655}, {"solidity": 0.9980012435260147, "top": 420, "right": 3070, "bottom": 2030, "left": 665}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729197f.jpg"} -{"rects": [{"solidity": 0.9967964082744576, "top": 2310, "right": 3090, "bottom": 3895, "left": 690}, {"solidity": 0.9947235099171982, "top": 450, "right": 3080, "bottom": 2045, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729566f.jpg"} -{"rects": [{"solidity": 0.9967964654335283, "top": 700, "right": 2050, "bottom": 3090, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714047f.jpg"} -{"rects": [{"solidity": 0.9967965369152172, "top": 1350, "right": 3295, "bottom": 4800, "left": 630}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714302f.jpg"} -{"rects": [{"solidity": 0.9967966072569167, "top": 565, "right": 3090, "bottom": 2180, "left": 675}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703033f.jpg"} -{"rects": [{"solidity": 0.9967966628113994, "top": 395, "right": 3210, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/703076f.jpg"} -{"rects": [{"solidity": 0.9967966933608886, "top": 3280, "right": 3140, "bottom": 5120, "left": 480}, {"solidity": 0.9951914731554143, "top": 715, "right": 3160, "bottom": 2560, "left": 510}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711453f.jpg"} -{"rects": [{"solidity": 0.9967967203727754, "top": 385, "right": 3065, "bottom": 1935, "left": 1100}, {"solidity": 0.9970573563994115, "top": 2215, "right": 3065, "bottom": 3760, "left": 1115}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703091f.jpg"} -{"rects": [{"solidity": 0.9967967485275376, "top": 650, "right": 2705, "bottom": 2070, "left": 900}, {"solidity": 0.9973365163606949, "top": 2130, "right": 2715, "bottom": 3535, "left": 895}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702821f.jpg"} -{"rects": [{"solidity": 0.9967969688388035, "top": 815, "right": 2435, "bottom": 3220, "left": 815}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705112f.jpg"} -{"rects": [{"solidity": 0.9967972877339083, "top": 425, "right": 3155, "bottom": 2020, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734574f.jpg"} -{"rects": [{"solidity": 0.996797302723408, "top": 790, "right": 3910, "bottom": 3225, "left": 2265}, {"solidity": 0.995318858267589, "top": 830, "right": 5710, "bottom": 3255, "left": 4075}, {"solidity": 0.9968117667063424, "top": 775, "right": 2055, "bottom": 3180, "left": 450}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712821f.jpg"} -{"rects": [{"solidity": 0.9967973052274212, "top": 790, "right": 2255, "bottom": 3185, "left": 670}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709227f.jpg"} -{"rects": [{"solidity": 0.9967973366625053, "top": 420, "right": 3185, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/700810f.jpg"} -{"rects": [{"solidity": 0.9967976260592777, "top": 2265, "right": 3280, "bottom": 3890, "left": 850}, {"solidity": 0.9965710318696148, "top": 4100, "right": 3270, "bottom": 5705, "left": 850}, {"solidity": 0.997055719850441, "top": 450, "right": 3235, "bottom": 2060, "left": 825}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730984f.jpg"} -{"rects": [{"solidity": 0.996797738222312, "top": 2155, "right": 2595, "bottom": 3600, "left": 775}, {"solidity": 0.9961083098462178, "top": 670, "right": 2605, "bottom": 2105, "left": 780}, {"solidity": 0.9952294688938911, "top": 670, "right": 5255, "bottom": 2110, "left": 3435}, {"solidity": 0.9945590498546489, "top": 2175, "right": 5205, "bottom": 3560, "left": 3425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703560f.jpg"} -{"rects": [{"solidity": 0.9967977487925775, "top": 460, "right": 5065, "bottom": 3630, "left": 1075}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720869f.jpg"} -{"rects": [{"solidity": 0.996797802709249, "top": 400, "right": 3145, "bottom": 2000, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/732517f.jpg"} -{"rects": [{"solidity": 0.9967978853328426, "top": 785, "right": 3690, "bottom": 3160, "left": 2105}, {"solidity": 0.9939385946669778, "top": 945, "right": 1815, "bottom": 2750, "left": 435}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726980f.jpg"} -{"rects": [{"solidity": 0.9967979496702556, "top": 415, "right": 3240, "bottom": 2060, "left": 810}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715486f.jpg"} -{"rects": [{"solidity": 0.9967979861876471, "top": 530, "right": 5750, "bottom": 2155, "left": 3355}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706933f.jpg"} -{"rects": [{"solidity": 0.996797988429541, "top": 425, "right": 2875, "bottom": 1855, "left": 1075}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711860f.jpg"} -{"rects": [{"solidity": 0.9967980483342228, "top": 860, "right": 3850, "bottom": 3295, "left": 2215}, {"solidity": 0.996345998592869, "top": 885, "right": 1965, "bottom": 3305, "left": 360}, {"solidity": 0.9958776669823408, "top": 875, "right": 5710, "bottom": 3295, "left": 4105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728995f.jpg"} -{"rects": [{"solidity": 0.9967983505101828, "top": 790, "right": 5695, "bottom": 3220, "left": 4065}, {"solidity": 0.997602620705634, "top": 795, "right": 3860, "bottom": 3220, "left": 2245}, {"solidity": 0.9970288652202838, "top": 800, "right": 2010, "bottom": 3220, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706276f.jpg"} -{"rects": [{"solidity": 0.9967984387605748, "top": 830, "right": 3860, "bottom": 3265, "left": 2230}, {"solidity": 0.9965040561912141, "top": 835, "right": 5675, "bottom": 3270, "left": 4045}, {"solidity": 0.9974559132305394, "top": 835, "right": 2055, "bottom": 3255, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717502f.jpg"} -{"rects": [{"solidity": 0.9967984619583148, "top": 855, "right": 1920, "bottom": 3050, "left": 505}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723113f.jpg"} -{"rects": [{"solidity": 0.996798588029167, "top": 785, "right": 5695, "bottom": 3210, "left": 4070}, {"solidity": 0.9963704301964639, "top": 775, "right": 3880, "bottom": 3190, "left": 2265}, {"solidity": 0.9967792818062421, "top": 770, "right": 2010, "bottom": 3160, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732563f.jpg"} -{"rects": [{"solidity": 0.996799042655454, "top": 435, "right": 3175, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711791f.jpg"} -{"rects": [{"solidity": 0.9967990454869107, "top": 775, "right": 5615, "bottom": 3195, "left": 3980}, {"solidity": 0.9961171247178238, "top": 755, "right": 3735, "bottom": 3170, "left": 2135}, {"solidity": 0.9963341387393049, "top": 790, "right": 1865, "bottom": 3160, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723492f.jpg"} -{"rects": [{"solidity": 0.9967991153180847, "top": 690, "right": 2700, "bottom": 2060, "left": 885}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706687f.jpg"} -{"rects": [{"solidity": 0.9967992093304179, "top": 800, "right": 2040, "bottom": 3215, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720327f.jpg"} -{"rects": [{"solidity": 0.9967993585785273, "top": 2235, "right": 3135, "bottom": 3855, "left": 725}, {"solidity": 0.996649238389692, "top": 375, "right": 3125, "bottom": 1995, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728436f.jpg"} -{"rects": [{"solidity": 0.9967994362309691, "top": 665, "right": 2630, "bottom": 2095, "left": 825}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705329f.jpg"} -{"rects": [{"solidity": 0.996799586209126, "top": 2245, "right": 3130, "bottom": 3865, "left": 715}, {"solidity": 0.9960838966387056, "top": 400, "right": 3125, "bottom": 1990, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728643f.jpg"} -{"rects": [{"solidity": 0.9967996469735335, "top": 2175, "right": 3335, "bottom": 4155, "left": 295}, {"solidity": 0.99685200194521, "top": 450, "right": 3190, "bottom": 2060, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715310f.jpg"} -{"rects": [{"solidity": 0.9967999258605026, "top": 1195, "right": 3395, "bottom": 4725, "left": 820}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/719190f.jpg"} -{"rects": [{"solidity": 0.9967999846858688, "top": 820, "right": 3880, "bottom": 3255, "left": 2245}, {"solidity": 0.9967264321044411, "top": 815, "right": 2030, "bottom": 3230, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729800f.jpg"} -{"rects": [{"solidity": 0.9968000580010085, "top": 835, "right": 2060, "bottom": 3235, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720153f.jpg"} -{"rects": [{"solidity": 0.9968001749919979, "top": 565, "right": 5290, "bottom": 3470, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724300f.jpg"} -{"rects": [{"solidity": 0.996800242807004, "top": 400, "right": 3050, "bottom": 2015, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729611f.jpg"} -{"rects": [{"solidity": 0.9968002727003769, "top": 760, "right": 3865, "bottom": 3190, "left": 2250}, {"solidity": 0.9967682079745601, "top": 755, "right": 2020, "bottom": 3175, "left": 405}, {"solidity": 0.995919029390774, "top": 795, "right": 5725, "bottom": 3210, "left": 4115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724782f.jpg"} -{"rects": [{"solidity": 0.9968005676515336, "top": 4090, "right": 3120, "bottom": 5710, "left": 685}, {"solidity": 0.9956151440761236, "top": 440, "right": 3135, "bottom": 2065, "left": 705}, {"solidity": 0.9959139234020751, "top": 2270, "right": 3135, "bottom": 3900, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734755f.jpg"} -{"rects": [{"solidity": 0.9968006914634578, "top": 790, "right": 2030, "bottom": 3220, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717992f.jpg"} -{"rects": [{"solidity": 0.9968008971749361, "top": 400, "right": 3115, "bottom": 2015, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700395f.jpg"} -{"rects": [{"solidity": 0.9968010113552866, "top": 440, "right": 3145, "bottom": 2060, "left": 720}, {"solidity": 0.9975228751574651, "top": 2240, "right": 3140, "bottom": 3845, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719517f.jpg"} -{"rects": [{"solidity": 0.996801218290139, "top": 520, "right": 4960, "bottom": 3775, "left": 940}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724455f.jpg"} -{"rects": [{"solidity": 0.9968012322126462, "top": 855, "right": 3880, "bottom": 3285, "left": 2255}, {"solidity": 0.9981046479714567, "top": 860, "right": 1995, "bottom": 3275, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729081f.jpg"} -{"rects": [{"solidity": 0.9968013291193629, "top": 815, "right": 3880, "bottom": 3240, "left": 2240}, {"solidity": 0.9963972049490352, "top": 810, "right": 5795, "bottom": 3230, "left": 4160}, {"solidity": 0.9968904163279056, "top": 840, "right": 2000, "bottom": 3245, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710418f.jpg"} -{"rects": [{"solidity": 0.9968014812176773, "top": 430, "right": 5090, "bottom": 3660, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708277f.jpg"} -{"rects": [{"solidity": 0.9968015972937571, "top": 810, "right": 3860, "bottom": 3245, "left": 2225}, {"solidity": 0.9969986209015016, "top": 810, "right": 2055, "bottom": 3240, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706265f.jpg"} -{"rects": [{"solidity": 0.9968016577323303, "top": 805, "right": 3835, "bottom": 3225, "left": 2215}, {"solidity": 0.9988743487767058, "top": 795, "right": 2045, "bottom": 3210, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710174f.jpg"} -{"rects": [{"solidity": 0.9968021513389169, "top": 900, "right": 1960, "bottom": 3285, "left": 325}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704890f.jpg"} -{"rects": [{"solidity": 0.9968022162730232, "top": 770, "right": 2030, "bottom": 3195, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733971f.jpg"} -{"rects": [{"solidity": 0.9968023356852386, "top": 720, "right": 2020, "bottom": 3170, "left": 380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730545f.jpg"} -{"rects": [{"solidity": 0.9968024298969601, "top": 465, "right": 3110, "bottom": 2100, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701950f.jpg"} -{"rects": [{"solidity": 0.9968025165618639, "top": 775, "right": 2020, "bottom": 3190, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721900f.jpg"} -{"rects": [{"solidity": 0.9968025939519488, "top": 715, "right": 2050, "bottom": 3130, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704699f.jpg"} -{"rects": [{"solidity": 0.9968026010159426, "top": 2215, "right": 3090, "bottom": 3865, "left": 645}, {"solidity": 0.9972058926622135, "top": 415, "right": 3055, "bottom": 1995, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734369f.jpg"} -{"rects": [{"solidity": 0.9968026353279134, "top": 555, "right": 5630, "bottom": 4210, "left": 1185}], "shape": {"h": 4440, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708871f.jpg"} -{"rects": [{"solidity": 0.9968026860000576, "top": 355, "right": 3015, "bottom": 2000, "left": 595}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703345f.jpg"} -{"rects": [{"solidity": 0.9968029149703909, "top": 865, "right": 3870, "bottom": 3295, "left": 2260}, {"solidity": 0.9966617270558306, "top": 875, "right": 5750, "bottom": 3295, "left": 4135}, {"solidity": 0.9951284869691904, "top": 880, "right": 2020, "bottom": 3290, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723626f.jpg"} -{"rects": [{"solidity": 0.9968030568380831, "top": 410, "right": 3200, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725795f.jpg"} -{"rects": [{"solidity": 0.9968032085706066, "top": 1015, "right": 3515, "bottom": 5075, "left": 305}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714537f.jpg"} -{"rects": [{"solidity": 0.9968033107194793, "top": 820, "right": 3875, "bottom": 3235, "left": 2235}, {"solidity": 0.9978435947372142, "top": 785, "right": 1995, "bottom": 3205, "left": 375}, {"solidity": 0.9984264384299425, "top": 850, "right": 5705, "bottom": 3255, "left": 4090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713401f.jpg"} -{"rects": [{"solidity": 0.9968034056024927, "top": 650, "right": 3695, "bottom": 2800, "left": 640}], "shape": {"h": 6850, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711206f.jpg"} -{"rects": [{"solidity": 0.9968037008371047, "top": 445, "right": 3040, "bottom": 3240, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717169f.jpg"} -{"rects": [{"solidity": 0.9968037648904358, "top": 640, "right": 2655, "bottom": 2060, "left": 845}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702905f.jpg"} -{"rects": [{"solidity": 0.9968041080065505, "top": 360, "right": 3205, "bottom": 2005, "left": 780}, {"solidity": 0.996681907664952, "top": 2095, "right": 3240, "bottom": 3740, "left": 810}, {"solidity": 0.9963218081183178, "top": 365, "right": 5700, "bottom": 2005, "left": 3285}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705812f.jpg"} -{"rects": [{"solidity": 0.996804117696631, "top": 385, "right": 3200, "bottom": 2000, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719252f.jpg"} -{"rects": [{"solidity": 0.996804153446784, "top": 600, "right": 1560, "bottom": 2410, "left": 345}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/707743f.jpg"} -{"rects": [{"solidity": 0.9968042774179939, "top": 310, "right": 4145, "bottom": 2965, "left": 825}], "shape": {"h": 3215, "w": 5010}, "file": "/usr/local/google/home/danvk/milstein/707025f.jpg"} -{"rects": [{"solidity": 0.9968043052399806, "top": 2220, "right": 3215, "bottom": 3855, "left": 795}, {"solidity": 0.9992655218643557, "top": 335, "right": 3240, "bottom": 1955, "left": 820}, {"solidity": 0.9964300008004483, "top": 4110, "right": 3210, "bottom": 5750, "left": 795}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714359f.jpg"} -{"rects": [{"solidity": 0.9968044219890314, "top": 355, "right": 3360, "bottom": 2295, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718543f.jpg"} -{"rects": [{"solidity": 0.9968044724262716, "top": 365, "right": 3130, "bottom": 1965, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728765f.jpg"} -{"rects": [{"solidity": 0.9968045082688952, "top": 790, "right": 2065, "bottom": 3210, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714703f.jpg"} -{"rects": [{"solidity": 0.9968047959948341, "top": 390, "right": 3280, "bottom": 2020, "left": 840}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726061f.jpg"} -{"rects": [{"solidity": 0.9968052749665687, "top": 410, "right": 3190, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729276f.jpg"} -{"rects": [{"solidity": 0.9968054513427087, "top": 435, "right": 3055, "bottom": 2055, "left": 635}, {"solidity": 0.9968320877605149, "top": 2270, "right": 3060, "bottom": 3905, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704136f.jpg"} -{"rects": [{"solidity": 0.9968054759650851, "top": 765, "right": 2045, "bottom": 3200, "left": 400}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725537f.jpg"} -{"rects": [{"solidity": 0.9968055434498387, "top": 465, "right": 3055, "bottom": 1975, "left": 1135}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726784f.jpg"} -{"rects": [{"solidity": 0.9968055520757648, "top": 440, "right": 3575, "bottom": 2100, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704184f.jpg"} -{"rects": [{"solidity": 0.9968056718801738, "top": 445, "right": 3210, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720104f.jpg"} -{"rects": [{"solidity": 0.9968057506242197, "top": 705, "right": 3340, "bottom": 2615, "left": 630}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714267f.jpg"} -{"rects": [{"solidity": 0.9968058343256454, "top": 1000, "right": 3605, "bottom": 5050, "left": 295}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725404f.jpg"} -{"rects": [{"solidity": 0.9968060035714399, "top": 400, "right": 3035, "bottom": 2040, "left": 595}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706540f.jpg"} -{"rects": [{"solidity": 0.9968061178587494, "top": 690, "right": 3865, "bottom": 3120, "left": 2250}, {"solidity": 0.9979273905555177, "top": 690, "right": 5715, "bottom": 3115, "left": 4115}, {"solidity": 0.9957175114848555, "top": 680, "right": 2030, "bottom": 3095, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724981f.jpg"} -{"rects": [{"solidity": 0.9968062623792872, "top": 850, "right": 2095, "bottom": 3290, "left": 460}, {"solidity": 0.9966381613426902, "top": 855, "right": 3875, "bottom": 3280, "left": 2245}, {"solidity": 0.9959855299804719, "top": 845, "right": 5655, "bottom": 3275, "left": 4025}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712796f.jpg"} -{"rects": [{"solidity": 0.9968064194164831, "top": 490, "right": 5715, "bottom": 4130, "left": 1155}], "shape": {"h": 4400, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/708383f.jpg"} -{"rects": [{"solidity": 0.9968067253751858, "top": 815, "right": 2170, "bottom": 3245, "left": 545}, {"solidity": 0.9962891100267671, "top": 805, "right": 4095, "bottom": 3235, "left": 2465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727587f.jpg"} -{"rects": [{"solidity": 0.9968069832667494, "top": 375, "right": 5105, "bottom": 3690, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726177f.jpg"} -{"rects": [{"solidity": 0.9968070232482523, "top": 385, "right": 2945, "bottom": 2010, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702041f.jpg"} -{"rects": [{"solidity": 0.9968075291868823, "top": 470, "right": 3215, "bottom": 2060, "left": 830}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/713987f.jpg"} -{"rects": [{"solidity": 0.9968077046223296, "top": 445, "right": 3275, "bottom": 2085, "left": 840}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703237f.jpg"} -{"rects": [{"solidity": 0.9968078259750289, "top": 830, "right": 5660, "bottom": 3240, "left": 4020}, {"solidity": 0.9970870282532481, "top": 815, "right": 3785, "bottom": 3225, "left": 2160}, {"solidity": 0.9976612127357009, "top": 815, "right": 1935, "bottom": 3215, "left": 315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703624f.jpg"} -{"rects": [{"solidity": 0.9968080806795001, "top": 410, "right": 3150, "bottom": 2050, "left": 720}, {"solidity": 0.9976873546599964, "top": 2075, "right": 3150, "bottom": 3705, "left": 730}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702406f.jpg"} -{"rects": [{"solidity": 0.9968081075961356, "top": 780, "right": 3890, "bottom": 3220, "left": 2245}, {"solidity": 0.9959258853054457, "top": 775, "right": 2015, "bottom": 3205, "left": 405}, {"solidity": 0.995580135616118, "top": 805, "right": 5730, "bottom": 3225, "left": 4105}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712758f.jpg"} -{"rects": [{"solidity": 0.996808128761444, "top": 845, "right": 2010, "bottom": 3250, "left": 390}, {"solidity": 0.9981421498536092, "top": 845, "right": 3855, "bottom": 3255, "left": 2245}, {"solidity": 0.9963963554122908, "top": 870, "right": 5715, "bottom": 3270, "left": 4090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726680f.jpg"} -{"rects": [{"solidity": 0.9968081424414506, "top": 330, "right": 3545, "bottom": 2155, "left": 845}, {"solidity": 0.9956328624531496, "top": 2435, "right": 3520, "bottom": 4280, "left": 835}], "shape": {"h": 6875, "w": 4405}, "file": "/usr/local/google/home/danvk/milstein/710251f.jpg"} -{"rects": [{"solidity": 0.996808280667845, "top": 400, "right": 3300, "bottom": 2040, "left": 875}, {"solidity": 0.9970677381149472, "top": 2265, "right": 3295, "bottom": 3895, "left": 865}, {"solidity": 0.9977664877300614, "top": 4095, "right": 3285, "bottom": 5720, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726409f.jpg"} -{"rects": [{"solidity": 0.9968083637566265, "top": 375, "right": 2610, "bottom": 2790, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707333f.jpg"} -{"rects": [{"solidity": 0.9968083955425727, "top": 700, "right": 2730, "bottom": 2120, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726063f.jpg"} -{"rects": [{"solidity": 0.9968084459340497, "top": 400, "right": 3165, "bottom": 2025, "left": 735}, {"solidity": 0.997926453494924, "top": 2265, "right": 3180, "bottom": 3875, "left": 750}, {"solidity": 0.9941418511230016, "top": 4150, "right": 3180, "bottom": 5760, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719602f.jpg"} -{"rects": [{"solidity": 0.9968084590386574, "top": 390, "right": 3055, "bottom": 2010, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709375f.jpg"} -{"rects": [{"solidity": 0.9968085284701386, "top": 580, "right": 3105, "bottom": 2160, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723158f.jpg"} -{"rects": [{"solidity": 0.996808534239325, "top": 575, "right": 3160, "bottom": 2210, "left": 725}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705593f.jpg"} -{"rects": [{"solidity": 0.9968090788968128, "top": 2545, "right": 3280, "bottom": 4480, "left": 495}, {"solidity": 0.9978071924088988, "top": 410, "right": 3270, "bottom": 2365, "left": 520}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707297f.jpg"} -{"rects": [{"solidity": 0.9968092017272345, "top": 370, "right": 3530, "bottom": 2000, "left": 1095}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707352f.jpg"} -{"rects": [{"solidity": 0.9968092159787834, "top": 820, "right": 5025, "bottom": 3240, "left": 1005}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726865f.jpg"} -{"rects": [{"solidity": 0.9968092564322638, "top": 890, "right": 2190, "bottom": 3290, "left": 585}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713885f.jpg"} -{"rects": [{"solidity": 0.9968094176003032, "top": 440, "right": 2375, "bottom": 1960, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719982f.jpg"} -{"rects": [{"solidity": 0.9968095028833305, "top": 350, "right": 5850, "bottom": 4030, "left": 1215}], "shape": {"h": 4420, "w": 6850}, "file": "/usr/local/google/home/danvk/milstein/706397f.jpg"} -{"rects": [{"solidity": 0.9968095305452088, "top": 675, "right": 2440, "bottom": 3485, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721129f.jpg"} -{"rects": [{"solidity": 0.9968096514489301, "top": 1310, "right": 3625, "bottom": 5355, "left": 345}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/701204f.jpg"} -{"rects": [{"solidity": 0.996809981929961, "top": 455, "right": 2880, "bottom": 1720, "left": 895}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720728f.jpg"} -{"rects": [{"solidity": 0.9968102581080565, "top": 805, "right": 3865, "bottom": 3245, "left": 2235}, {"solidity": 0.9964410087635376, "top": 830, "right": 5710, "bottom": 3265, "left": 4075}, {"solidity": 0.9962747143043954, "top": 770, "right": 2025, "bottom": 3210, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703706f.jpg"} -{"rects": [{"solidity": 0.9968102815430586, "top": 680, "right": 2685, "bottom": 2065, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725090f.jpg"} -{"rects": [{"solidity": 0.996810336515283, "top": 430, "right": 2590, "bottom": 3655, "left": 550}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733045f.jpg"} -{"rects": [{"solidity": 0.9968103589452066, "top": 915, "right": 3610, "bottom": 5030, "left": 325}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/718123f.jpg"} -{"rects": [{"solidity": 0.9968104404070183, "top": 4015, "right": 3205, "bottom": 5650, "left": 765}, {"solidity": 0.9960615986563102, "top": 2210, "right": 3190, "bottom": 3835, "left": 765}, {"solidity": 0.9962219644488799, "top": 430, "right": 3180, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701828f.jpg"} -{"rects": [{"solidity": 0.9968105829655636, "top": 635, "right": 2685, "bottom": 3495, "left": 680}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710910f.jpg"} -{"rects": [{"solidity": 0.9968106555475313, "top": 4085, "right": 3200, "bottom": 5695, "left": 795}, {"solidity": 0.9959134536099475, "top": 640, "right": 3160, "bottom": 2240, "left": 765}, {"solidity": 0.9968597175396828, "top": 2375, "right": 3185, "bottom": 3965, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733159f.jpg"} -{"rects": [{"solidity": 0.9968107551150581, "top": 785, "right": 2010, "bottom": 3175, "left": 395}, {"solidity": 0.9963248047859354, "top": 790, "right": 3830, "bottom": 3185, "left": 2220}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716639f.jpg"} -{"rects": [{"solidity": 0.9968108379652887, "top": 755, "right": 5640, "bottom": 3145, "left": 4010}, {"solidity": 0.9970796324003653, "top": 745, "right": 3760, "bottom": 3140, "left": 2155}, {"solidity": 0.9921934444696977, "top": 740, "right": 1910, "bottom": 3135, "left": 315}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719060f.jpg"} -{"rects": [{"solidity": 0.9968110087842212, "top": 845, "right": 1960, "bottom": 3265, "left": 345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715628f.jpg"} -{"rects": [{"solidity": 0.9968110232212483, "top": 4580, "right": 3550, "bottom": 6395, "left": 825}, {"solidity": 0.9972352799758567, "top": 420, "right": 3530, "bottom": 2235, "left": 815}, {"solidity": 0.9968118341436161, "top": 2485, "right": 3540, "bottom": 4295, "left": 825}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711191f.jpg"} -{"rects": [{"solidity": 0.9968110771757821, "top": 2290, "right": 3210, "bottom": 3915, "left": 790}, {"solidity": 0.9972320210108917, "top": 435, "right": 3225, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705556f.jpg"} -{"rects": [{"solidity": 0.9968111604362935, "top": 685, "right": 2735, "bottom": 2085, "left": 940}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726520f.jpg"} -{"rects": [{"solidity": 0.9968112049665611, "top": 1055, "right": 3415, "bottom": 4955, "left": 240}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730397f.jpg"} -{"rects": [{"solidity": 0.9968114490623334, "top": 440, "right": 3070, "bottom": 2055, "left": 650}, {"solidity": 0.995838890196386, "top": 2315, "right": 3040, "bottom": 3925, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729437f.jpg"} -{"rects": [{"solidity": 0.9968114799643351, "top": 865, "right": 3820, "bottom": 3285, "left": 2200}, {"solidity": 0.9957929850697931, "top": 885, "right": 5670, "bottom": 3305, "left": 4050}, {"solidity": 0.9973300257196257, "top": 850, "right": 1950, "bottom": 3225, "left": 380}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733983f.jpg"} -{"rects": [{"solidity": 0.9968114942379146, "top": 2165, "right": 3185, "bottom": 3770, "left": 770}, {"solidity": 0.996517336756269, "top": 365, "right": 3190, "bottom": 1975, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718826f.jpg"} -{"rects": [{"solidity": 0.9968116712940138, "top": 425, "right": 3225, "bottom": 2045, "left": 820}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709340f.jpg"} -{"rects": [{"solidity": 0.9968117486900236, "top": 2250, "right": 3190, "bottom": 3870, "left": 755}, {"solidity": 0.9962414740126616, "top": 405, "right": 3195, "bottom": 2025, "left": 775}, {"solidity": 0.9967703036043929, "top": 4095, "right": 3190, "bottom": 5705, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719603f.jpg"} -{"rects": [{"solidity": 0.996811805724479, "top": 380, "right": 3175, "bottom": 1990, "left": 760}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/707040f.jpg"} -{"rects": [{"solidity": 0.9968121620562652, "top": 1885, "right": 2800, "bottom": 4335, "left": 1140}, {"solidity": 0.9966251966251967, "top": 205, "right": 3200, "bottom": 1840, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713984f.jpg"} -{"rects": [{"solidity": 0.9968121814075912, "top": 4810, "right": 3615, "bottom": 6650, "left": 885}, {"solidity": 0.9969403766353269, "top": 2670, "right": 3630, "bottom": 4490, "left": 895}, {"solidity": 0.9969939905481411, "top": 455, "right": 3610, "bottom": 2280, "left": 910}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706437f.jpg"} -{"rects": [{"solidity": 0.9968123032085144, "top": 845, "right": 2105, "bottom": 3255, "left": 490}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718187f.jpg"} -{"rects": [{"solidity": 0.9968123400260686, "top": 840, "right": 2040, "bottom": 3215, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714696f.jpg"} -{"rects": [{"solidity": 0.996812400686658, "top": 375, "right": 2840, "bottom": 2005, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705926f.jpg"} -{"rects": [{"solidity": 0.9968124141275357, "top": 4100, "right": 3185, "bottom": 5710, "left": 765}, {"solidity": 0.9981537782652005, "top": 445, "right": 3170, "bottom": 2050, "left": 755}, {"solidity": 0.9971499902730043, "top": 2275, "right": 3175, "bottom": 3885, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734769f.jpg"} -{"rects": [{"solidity": 0.9968126002099177, "top": 375, "right": 3070, "bottom": 1990, "left": 640}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728310f.jpg"} -{"rects": [{"solidity": 0.9968127619480814, "top": 745, "right": 4010, "bottom": 3145, "left": 2390}, {"solidity": 0.9972121176466743, "top": 740, "right": 2130, "bottom": 3135, "left": 520}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710828f.jpg"} -{"rects": [{"solidity": 0.9968130376847548, "top": 620, "right": 4180, "bottom": 3710, "left": 2165}, {"solidity": 0.995066807082209, "top": 745, "right": 2035, "bottom": 3145, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721799f.jpg"} -{"rects": [{"solidity": 0.9968131623804936, "top": 800, "right": 3820, "bottom": 3230, "left": 2205}, {"solidity": 0.9970205623164079, "top": 800, "right": 1965, "bottom": 3225, "left": 350}, {"solidity": 0.9964174091221517, "top": 810, "right": 5705, "bottom": 3235, "left": 4095}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729924f.jpg"} -{"rects": [{"solidity": 0.9968132037241273, "top": 480, "right": 3235, "bottom": 2105, "left": 810}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706807f.jpg"} -{"rects": [{"solidity": 0.9968133079466881, "top": 2305, "right": 5075, "bottom": 3710, "left": 3280}, {"solidity": 0.9915896552759894, "top": 710, "right": 5060, "bottom": 2120, "left": 3255}, {"solidity": 0.9934171433295613, "top": 690, "right": 2890, "bottom": 2050, "left": 1080}, {"solidity": 0.9964081266135368, "top": 2325, "right": 2855, "bottom": 3620, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727317f.jpg"} -{"rects": [{"solidity": 0.9968134266093319, "top": 1130, "right": 3385, "bottom": 5065, "left": 395}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730552f.jpg"} -{"rects": [{"solidity": 0.9968135298431426, "top": 770, "right": 3885, "bottom": 3180, "left": 2270}, {"solidity": 0.9986334688967059, "top": 770, "right": 2030, "bottom": 3175, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714787f.jpg"} -{"rects": [{"solidity": 0.9968135481749425, "top": 755, "right": 1965, "bottom": 3160, "left": 365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730424f.jpg"} -{"rects": [{"solidity": 0.9968137532112908, "top": 415, "right": 3065, "bottom": 2030, "left": 645}, {"solidity": 0.9955783338357954, "top": 2265, "right": 3055, "bottom": 3885, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731036f.jpg"} -{"rects": [{"solidity": 0.9968138129163493, "top": 2180, "right": 2880, "bottom": 3615, "left": 1055}, {"solidity": 0.9976578638554567, "top": 2130, "right": 5285, "bottom": 3560, "left": 3465}, {"solidity": 0.997072565479537, "top": 690, "right": 5270, "bottom": 2120, "left": 3450}, {"solidity": 0.996542510631901, "top": 745, "right": 2860, "bottom": 2175, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702872f.jpg"} -{"rects": [{"solidity": 0.996813913255237, "top": 690, "right": 2565, "bottom": 2090, "left": 785}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706689f.jpg"} -{"rects": [{"solidity": 0.9968142484111588, "top": 820, "right": 3905, "bottom": 3245, "left": 2285}, {"solidity": 0.9977162032285914, "top": 840, "right": 2000, "bottom": 3235, "left": 385}, {"solidity": 0.9966836343715046, "top": 840, "right": 5735, "bottom": 3245, "left": 4125}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717924f.jpg"} -{"rects": [{"solidity": 0.9968146468849542, "top": 395, "right": 3165, "bottom": 2020, "left": 725}, {"solidity": 0.9979474221216083, "top": 2220, "right": 3100, "bottom": 3650, "left": 885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710741f.jpg"} -{"rects": [{"solidity": 0.9968147768220293, "top": 860, "right": 1980, "bottom": 3260, "left": 365}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714887f.jpg"} -{"rects": [{"solidity": 0.9968151313758308, "top": 395, "right": 3200, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725959f.jpg"} -{"rects": [{"solidity": 0.9968151319525389, "top": 430, "right": 4550, "bottom": 3720, "left": 2460}], "shape": {"h": 4080, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732988f.jpg"} -{"rects": [{"solidity": 0.996815139262589, "top": 470, "right": 5005, "bottom": 3660, "left": 1000}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720839f.jpg"} -{"rects": [{"solidity": 0.9968152448853881, "top": 595, "right": 3205, "bottom": 2200, "left": 805}, {"solidity": 0.9983144088414524, "top": 2360, "right": 3195, "bottom": 3960, "left": 805}, {"solidity": 0.9980833179382967, "top": 4105, "right": 3205, "bottom": 5700, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733134f.jpg"} -{"rects": [{"solidity": 0.9968154309200945, "top": 430, "right": 3195, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701561f.jpg"} -{"rects": [{"solidity": 0.9968155524310304, "top": 450, "right": 3200, "bottom": 2070, "left": 775}, {"solidity": 0.9965752435364542, "top": 2220, "right": 3195, "bottom": 3840, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705645f.jpg"} -{"rects": [{"solidity": 0.9968156105845566, "top": 2245, "right": 2840, "bottom": 3780, "left": 985}, {"solidity": 0.9951740870612404, "top": 4090, "right": 2845, "bottom": 5620, "left": 985}, {"solidity": 0.9946878444600858, "top": 425, "right": 2815, "bottom": 1965, "left": 965}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719547f.jpg"} -{"rects": [{"solidity": 0.996815643563051, "top": 780, "right": 1995, "bottom": 3175, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705407f.jpg"} -{"rects": [{"solidity": 0.9968156561424317, "top": 2205, "right": 3260, "bottom": 3825, "left": 845}, {"solidity": 0.9958748888709287, "top": 370, "right": 3265, "bottom": 1990, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725025f.jpg"} -{"rects": [{"solidity": 0.9968157160489985, "top": 820, "right": 4325, "bottom": 3525, "left": 2530}, {"solidity": 0.9968015589477103, "top": 815, "right": 2225, "bottom": 3515, "left": 430}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711283f.jpg"} -{"rects": [{"solidity": 0.9968158584997018, "top": 3925, "right": 3205, "bottom": 5540, "left": 770}, {"solidity": 0.9951999384360841, "top": 2130, "right": 3195, "bottom": 3750, "left": 760}, {"solidity": 0.9961986471939718, "top": 380, "right": 3220, "bottom": 2000, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733127f.jpg"} -{"rects": [{"solidity": 0.9968159434862196, "top": 370, "right": 2990, "bottom": 1995, "left": 570}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704096f.jpg"} -{"rects": [{"solidity": 0.9968159767298851, "top": 545, "right": 5105, "bottom": 3825, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733834f.jpg"} -{"rects": [{"solidity": 0.9968159978560627, "top": 420, "right": 3240, "bottom": 2050, "left": 810}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721466f.jpg"} -{"rects": [{"solidity": 0.9968160268472617, "top": 745, "right": 3915, "bottom": 3180, "left": 2285}, {"solidity": 0.9962223386569896, "top": 760, "right": 5740, "bottom": 3185, "left": 4130}, {"solidity": 0.996899341069222, "top": 740, "right": 2065, "bottom": 3145, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731932f.jpg"} -{"rects": [{"solidity": 0.996816046059547, "top": 410, "right": 5105, "bottom": 3650, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732643f.jpg"} -{"rects": [{"solidity": 0.9968164302047402, "top": 595, "right": 3185, "bottom": 3855, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719360f.jpg"} -{"rects": [{"solidity": 0.9968164841748353, "top": 765, "right": 2050, "bottom": 3195, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714770f.jpg"} -{"rects": [{"solidity": 0.9968165086302208, "top": 390, "right": 3280, "bottom": 1990, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724999f.jpg"} -{"rects": [{"solidity": 0.9968166792017211, "top": 610, "right": 2745, "bottom": 3590, "left": 325}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/713041f.jpg"} -{"rects": [{"solidity": 0.9968167363270867, "top": 800, "right": 2015, "bottom": 3240, "left": 375}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705149f.jpg"} -{"rects": [{"solidity": 0.9968167566735864, "top": 445, "right": 3570, "bottom": 2270, "left": 835}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706402f.jpg"} -{"rects": [{"solidity": 0.9968169216552007, "top": 375, "right": 2995, "bottom": 2015, "left": 575}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707920f.jpg"} -{"rects": [{"solidity": 0.9968170073975106, "top": 360, "right": 3140, "bottom": 1955, "left": 725}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728837f.jpg"} -{"rects": [{"solidity": 0.9968170760621384, "top": 740, "right": 2055, "bottom": 3150, "left": 445}, {"solidity": 0.9968718430139452, "top": 730, "right": 3900, "bottom": 3140, "left": 2290}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720859f.jpg"} -{"rects": [{"solidity": 0.9968172972972973, "top": 3230, "right": 3455, "bottom": 5285, "left": 620}, {"solidity": 0.998081068350001, "top": 725, "right": 3435, "bottom": 2775, "left": 605}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/731927f.jpg"} -{"rects": [{"solidity": 0.9968173469034114, "top": 1715, "right": 2370, "bottom": 2925, "left": 565}, {"solidity": 0.9979771128094813, "top": 370, "right": 2370, "bottom": 1575, "left": 575}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715962f.jpg"} -{"rects": [{"solidity": 0.9968174819453303, "top": 430, "right": 3145, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729555f.jpg"} -{"rects": [{"solidity": 0.9968175480272671, "top": 865, "right": 2030, "bottom": 3290, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724407f.jpg"} -{"rects": [{"solidity": 0.9968175771731522, "top": 145, "right": 3275, "bottom": 2060, "left": 525}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725750f.jpg"} -{"rects": [{"solidity": 0.9968177110390141, "top": 425, "right": 3175, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706631f.jpg"} -{"rects": [{"solidity": 0.9968177569851271, "top": 450, "right": 2675, "bottom": 3460, "left": 210}], "shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508245.jpg"} -{"rects": [{"solidity": 0.9968178473443888, "top": 625, "right": 5210, "bottom": 2040, "left": 3380}, {"solidity": 0.9985767867996975, "top": 630, "right": 2700, "bottom": 2050, "left": 905}, {"solidity": 0.9956395923043495, "top": 2110, "right": 2725, "bottom": 3510, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703011f.jpg"} -{"rects": [{"solidity": 0.99681787428823, "top": 420, "right": 3235, "bottom": 2030, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725839f.jpg"} -{"rects": [{"solidity": 0.99681797858418, "top": 795, "right": 2070, "bottom": 3205, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713212f.jpg"} -{"rects": [{"solidity": 0.9968180806348126, "top": 390, "right": 3150, "bottom": 1995, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713922f.jpg"} -{"rects": [{"solidity": 0.9968181599267952, "top": 2280, "right": 3190, "bottom": 3900, "left": 765}, {"solidity": 0.9939207559520531, "top": 490, "right": 3190, "bottom": 2115, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704690f.jpg"} -{"rects": [{"solidity": 0.9968181669079986, "top": 2090, "right": 5205, "bottom": 3545, "left": 3355}, {"solidity": 0.9981620513208189, "top": 620, "right": 5205, "bottom": 2075, "left": 3370}, {"solidity": 0.9935275434134841, "top": 675, "right": 2880, "bottom": 1920, "left": 1025}, {"solidity": 0.9701666327522667, "top": 1995, "right": 2845, "bottom": 3270, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703326f.jpg"} -{"rects": [{"solidity": 0.9968181921487268, "top": 435, "right": 3205, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702925f.jpg"} -{"rects": [{"solidity": 0.9968182769843738, "top": 515, "right": 3075, "bottom": 2160, "left": 640}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704563f.jpg"} -{"rects": [{"solidity": 0.9968183150421728, "top": 410, "right": 3250, "bottom": 2015, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725849f.jpg"} -{"rects": [{"solidity": 0.9968183487996933, "top": 755, "right": 2130, "bottom": 3190, "left": 495}, {"solidity": 0.996470136846144, "top": 770, "right": 3930, "bottom": 3205, "left": 2300}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716681f.jpg"} -{"rects": [{"solidity": 0.9968184937877242, "top": 395, "right": 3100, "bottom": 2025, "left": 680}, {"solidity": 0.9967089435901384, "top": 2060, "right": 3110, "bottom": 3685, "left": 690}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702259f.jpg"} -{"rects": [{"solidity": 0.9968185523935696, "top": 395, "right": 3085, "bottom": 2035, "left": 650}, {"solidity": 0.9977677563370559, "top": 2255, "right": 3075, "bottom": 3875, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709522f.jpg"} -{"rects": [{"solidity": 0.9968185718279715, "top": 2250, "right": 3170, "bottom": 3870, "left": 750}, {"solidity": 0.9985629294181, "top": 410, "right": 3160, "bottom": 2020, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710459f.jpg"} -{"rects": [{"solidity": 0.9968185799153731, "top": 650, "right": 2645, "bottom": 2015, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705467f.jpg"} -{"rects": [{"solidity": 0.9968186945079098, "top": 660, "right": 3935, "bottom": 3075, "left": 2305}, {"solidity": 0.996020497341086, "top": 655, "right": 2055, "bottom": 3070, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705358f.jpg"} -{"rects": [{"solidity": 0.9968187883988554, "top": 800, "right": 3820, "bottom": 3170, "left": 2185}, {"solidity": 0.9978291050542888, "top": 795, "right": 1940, "bottom": 3175, "left": 325}, {"solidity": 0.9972938544093672, "top": 815, "right": 5700, "bottom": 3165, "left": 4075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715647f.jpg"} -{"rects": [{"solidity": 0.9968189422983141, "top": 450, "right": 2915, "bottom": 2095, "left": 870}, {"solidity": 0.9955257746201956, "top": 2375, "right": 2815, "bottom": 3730, "left": 1050}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708436f.jpg"} -{"rects": [{"solidity": 0.996818970503181, "top": 650, "right": 2750, "bottom": 2065, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706727f.jpg"} -{"rects": [{"solidity": 0.9968190714763929, "top": 880, "right": 3905, "bottom": 3300, "left": 2280}, {"solidity": 0.9951492658788293, "top": 880, "right": 2040, "bottom": 3290, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734806f.jpg"} -{"rects": [{"solidity": 0.9968190835490176, "top": 435, "right": 5065, "bottom": 3680, "left": 1035}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711749f.jpg"} -{"rects": [{"solidity": 0.9968190900530535, "top": 800, "right": 2100, "bottom": 3390, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731133f.jpg"} -{"rects": [{"solidity": 0.9968190947415175, "top": 385, "right": 5090, "bottom": 3630, "left": 1080}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722245f.jpg"} -{"rects": [{"solidity": 0.9968192032554876, "top": 405, "right": 3085, "bottom": 2035, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720011f.jpg"} -{"rects": [{"solidity": 0.9968197164729049, "top": 765, "right": 2065, "bottom": 3185, "left": 435}, {"solidity": 0.9893272245156036, "top": 770, "right": 3845, "bottom": 3175, "left": 2255}, {"solidity": 0.9948943331456004, "top": 760, "right": 5630, "bottom": 3150, "left": 4045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709322f.jpg"} -{"rects": [{"solidity": 0.9968197825041498, "top": 1220, "right": 3485, "bottom": 5090, "left": 345}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719826f.jpg"} -{"rects": [{"solidity": 0.9968199254659983, "top": 905, "right": 3820, "bottom": 3320, "left": 2190}, {"solidity": 0.9964910893437843, "top": 910, "right": 1955, "bottom": 3310, "left": 365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710412f.jpg"} -{"rects": [{"solidity": 0.9968200044733883, "top": 735, "right": 3825, "bottom": 3145, "left": 2210}, {"solidity": 0.9960779966811311, "top": 715, "right": 5625, "bottom": 3115, "left": 4015}, {"solidity": 0.9976550584439124, "top": 770, "right": 2040, "bottom": 3165, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712950f.jpg"} -{"rects": [{"solidity": 0.9968202214546277, "top": 2385, "right": 3365, "bottom": 3995, "left": 935}, {"solidity": 0.9949608406571917, "top": 435, "right": 3370, "bottom": 2050, "left": 945}, {"solidity": 0.9939849813685744, "top": 4360, "right": 3060, "bottom": 5480, "left": 1240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724979f.jpg"} -{"rects": [{"solidity": 0.9968203803981269, "top": 425, "right": 3155, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700256f.jpg"} -{"rects": [{"solidity": 0.9968205443288052, "top": 675, "right": 3290, "bottom": 2570, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720286f.jpg"} -{"rects": [{"solidity": 0.9968205511044752, "top": 415, "right": 3110, "bottom": 2005, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707555f.jpg"} -{"rects": [{"solidity": 0.9968206168778716, "top": 685, "right": 3940, "bottom": 3100, "left": 2320}, {"solidity": 0.9967394390790792, "top": 720, "right": 2070, "bottom": 3120, "left": 455}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720847f.jpg"} -{"rects": [{"solidity": 0.9968207019212603, "top": 785, "right": 2005, "bottom": 3190, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710496f.jpg"} -{"rects": [{"solidity": 0.9968207471885085, "top": 410, "right": 3100, "bottom": 2030, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729149f.jpg"} -{"rects": [{"solidity": 0.9968208283710467, "top": 775, "right": 3835, "bottom": 3165, "left": 2245}, {"solidity": 0.9968297734886478, "top": 770, "right": 1975, "bottom": 3155, "left": 390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712158f.jpg"} -{"rects": [{"solidity": 0.9968208325153556, "top": 990, "right": 4865, "bottom": 3390, "left": 1155}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711833f.jpg"} -{"rects": [{"solidity": 0.9968208651230548, "top": 1140, "right": 5110, "bottom": 3150, "left": 1900}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732978f.jpg"} -{"rects": [{"solidity": 0.9968209034385364, "top": 2230, "right": 3115, "bottom": 3855, "left": 685}, {"solidity": 0.9987566246072064, "top": 390, "right": 3115, "bottom": 2005, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729941f.jpg"} -{"rects": [{"solidity": 0.9968210955739794, "top": 990, "right": 3490, "bottom": 4975, "left": 295}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721254f.jpg"} -{"rects": [{"solidity": 0.9968211248927373, "top": 335, "right": 3195, "bottom": 1965, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718486f.jpg"} -{"rects": [{"solidity": 0.9968213750566928, "top": 1045, "right": 3475, "bottom": 5075, "left": 195}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712395f.jpg"} -{"rects": [{"solidity": 0.9968220508664076, "top": 2235, "right": 3125, "bottom": 3865, "left": 700}, {"solidity": 0.9963480156689213, "top": 395, "right": 3120, "bottom": 2030, "left": 720}, {"solidity": 0.9965601326527295, "top": 4090, "right": 3110, "bottom": 5710, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726651f.jpg"} -{"rects": [{"solidity": 0.9968221526712178, "top": 410, "right": 3075, "bottom": 2040, "left": 660}, {"solidity": 0.9961216437301511, "top": 2250, "right": 3090, "bottom": 3880, "left": 660}, {"solidity": 0.9967865072254898, "top": 4130, "right": 3060, "bottom": 5740, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709245f.jpg"} -{"rects": [{"solidity": 0.9968222519555373, "top": 2245, "right": 3180, "bottom": 3865, "left": 760}, {"solidity": 0.9937926330150069, "top": 450, "right": 3185, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719479f.jpg"} -{"rects": [{"solidity": 0.9968224025498837, "top": 465, "right": 3125, "bottom": 2080, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729629f.jpg"} -{"rects": [{"solidity": 0.9968224942936891, "top": 865, "right": 2035, "bottom": 3285, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709356f.jpg"} -{"rects": [{"solidity": 0.9968226432971844, "top": 480, "right": 4215, "bottom": 2795, "left": 1150}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507803.jpg"} -{"rects": [{"solidity": 0.996822647729175, "top": 4110, "right": 3140, "bottom": 5725, "left": 700}, {"solidity": 0.995971343144488, "top": 2275, "right": 3180, "bottom": 3900, "left": 755}, {"solidity": 0.9962538684641185, "top": 370, "right": 3170, "bottom": 2000, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734093f.jpg"} -{"rects": [{"solidity": 0.9968226918986773, "top": 405, "right": 3240, "bottom": 2020, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728054f.jpg"} -{"rects": [{"solidity": 0.9968230153463427, "top": 910, "right": 5680, "bottom": 3340, "left": 4040}, {"solidity": 0.995674701509349, "top": 880, "right": 3850, "bottom": 3305, "left": 2220}, {"solidity": 0.9956774876499647, "top": 875, "right": 1990, "bottom": 3280, "left": 375}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728450f.jpg"} -{"rects": [{"solidity": 0.9968231032959094, "top": 2245, "right": 3135, "bottom": 3860, "left": 715}, {"solidity": 0.9978773104845354, "top": 4130, "right": 3120, "bottom": 5740, "left": 700}, {"solidity": 0.9976241795640548, "top": 385, "right": 3140, "bottom": 1995, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728288f.jpg"} -{"rects": [{"solidity": 0.9968231188231841, "top": 800, "right": 1985, "bottom": 3210, "left": 380}, {"solidity": 0.9934523063877352, "top": 1105, "right": 3630, "bottom": 2955, "left": 2200}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705712f.jpg"} -{"rects": [{"solidity": 0.9968231547844836, "top": 595, "right": 3345, "bottom": 2490, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712017f.jpg"} -{"rects": [{"solidity": 0.9968231660484043, "top": 815, "right": 3810, "bottom": 3215, "left": 2200}, {"solidity": 0.9938469070783725, "top": 805, "right": 1975, "bottom": 3210, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733989f.jpg"} -{"rects": [{"solidity": 0.9968231969518581, "top": 1365, "right": 3520, "bottom": 5115, "left": 485}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725756f.jpg"} -{"rects": [{"solidity": 0.9968232582407058, "top": 455, "right": 3170, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709669f.jpg"} -{"rects": [{"solidity": 0.9968232853186145, "top": 760, "right": 2000, "bottom": 3155, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719340f.jpg"} -{"rects": [{"solidity": 0.996823357476673, "top": 360, "right": 3000, "bottom": 2000, "left": 585}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721122f.jpg"} -{"rects": [{"solidity": 0.9968235531926499, "top": 805, "right": 3795, "bottom": 3225, "left": 2165}, {"solidity": 0.9980069416763079, "top": 800, "right": 1915, "bottom": 3205, "left": 300}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720489f.jpg"} -{"rects": [{"solidity": 0.9968236066382656, "top": 680, "right": 4700, "bottom": 3260, "left": 1325}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722398f.jpg"} -{"rects": [{"solidity": 0.9968237979578077, "top": 645, "right": 2500, "bottom": 2130, "left": 410}, {"solidity": 0.9950314902683076, "top": 2500, "right": 2475, "bottom": 3990, "left": 385}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716016f.jpg"} -{"rects": [{"solidity": 0.9968238833662971, "top": 835, "right": 5725, "bottom": 3260, "left": 4105}, {"solidity": 0.9966894370402452, "top": 840, "right": 3860, "bottom": 3245, "left": 2260}, {"solidity": 0.9956985292910454, "top": 850, "right": 2015, "bottom": 3245, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731568f.jpg"} -{"rects": [{"solidity": 0.9968239038280656, "top": 435, "right": 3145, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704387f.jpg"} -{"rects": [{"solidity": 0.9968239462946573, "top": 925, "right": 5670, "bottom": 3360, "left": 4050}, {"solidity": 0.9985095055084189, "top": 925, "right": 2035, "bottom": 3340, "left": 410}, {"solidity": 0.996118449474387, "top": 950, "right": 3885, "bottom": 3305, "left": 2230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710711f.jpg"} -{"rects": [{"solidity": 0.9968240107375604, "top": 885, "right": 2060, "bottom": 3305, "left": 445}, {"solidity": 0.9963595431047664, "top": 870, "right": 5625, "bottom": 3290, "left": 4010}, {"solidity": 0.9959583011785018, "top": 890, "right": 3825, "bottom": 3290, "left": 2215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724008f.jpg"} -{"rects": [{"solidity": 0.9968241340151287, "top": 695, "right": 2120, "bottom": 3110, "left": 490}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712379f.jpg"} -{"rects": [{"solidity": 0.9968243517998567, "top": 710, "right": 2015, "bottom": 3130, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727992f.jpg"} -{"rects": [{"solidity": 0.9968244142898133, "top": 985, "right": 1970, "bottom": 3405, "left": 355}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720964f.jpg"} -{"rects": [{"solidity": 0.9968245039718228, "top": 395, "right": 3100, "bottom": 1995, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728501f.jpg"} -{"rects": [{"solidity": 0.996824642853657, "top": 815, "right": 2020, "bottom": 3240, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706140f.jpg"} -{"rects": [{"solidity": 0.9968246786300063, "top": 510, "right": 3380, "bottom": 2035, "left": 2355}, {"solidity": 0.9947070677641003, "top": 505, "right": 2220, "bottom": 2025, "left": 1190}, {"solidity": 0.9952767437602978, "top": 705, "right": 1100, "bottom": 1860, "left": 200}], "shape": {"h": 2520, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/727101f.jpg"} -{"rects": [{"solidity": 0.9968247241193825, "top": 395, "right": 2985, "bottom": 2005, "left": 580}, {"solidity": 0.9963602680047264, "top": 2240, "right": 2990, "bottom": 3840, "left": 585}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729342f.jpg"} -{"rects": [{"solidity": 0.9968247536255742, "top": 775, "right": 2085, "bottom": 3215, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705790f.jpg"} -{"rects": [{"solidity": 0.9968248362655708, "top": 4025, "right": 3185, "bottom": 5660, "left": 775}, {"solidity": 0.9970708543556525, "top": 290, "right": 3180, "bottom": 1935, "left": 785}, {"solidity": 0.9968465764212999, "top": 2150, "right": 3170, "bottom": 3795, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706203f.jpg"} -{"rects": [{"solidity": 0.9968248447845016, "top": 725, "right": 3920, "bottom": 3140, "left": 2290}, {"solidity": 0.9977468449363815, "top": 710, "right": 2050, "bottom": 3120, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703001f.jpg"} -{"rects": [{"solidity": 0.9968249081777855, "top": 910, "right": 2690, "bottom": 4090, "left": 260}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507835.jpg"} -{"rects": [{"solidity": 0.9968249644617336, "top": 3315, "right": 3300, "bottom": 5400, "left": 445}, {"solidity": 0.9999324659933598, "top": 670, "right": 3310, "bottom": 2710, "left": 485}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733815f.jpg"} -{"rects": [{"solidity": 0.9968251333656521, "top": 930, "right": 3415, "bottom": 4910, "left": 285}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714667f.jpg"} -{"rects": [{"solidity": 0.9968252246745116, "top": 465, "right": 2995, "bottom": 1875, "left": 1180}, {"solidity": 0.9955934554653393, "top": 2190, "right": 2985, "bottom": 3595, "left": 1225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727321f.jpg"} -{"rects": [{"solidity": 0.9968255900366451, "top": 795, "right": 5520, "bottom": 3215, "left": 3890}, {"solidity": 0.9962598729064293, "top": 795, "right": 3760, "bottom": 3220, "left": 2140}, {"solidity": 0.9935675570850548, "top": 810, "right": 1975, "bottom": 3215, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718693f.jpg"} -{"rects": [{"solidity": 0.9968255938050681, "top": 765, "right": 4105, "bottom": 3415, "left": 2180}, {"solidity": 0.9949528322921438, "top": 1005, "right": 1970, "bottom": 3015, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721636f.jpg"} -{"rects": [{"solidity": 0.9968259201437709, "top": 395, "right": 3170, "bottom": 2005, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701734f.jpg"} -{"rects": [{"solidity": 0.9968259606070391, "top": 450, "right": 3130, "bottom": 2065, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729155f.jpg"} -{"rects": [{"solidity": 0.9968259983893126, "top": 940, "right": 5965, "bottom": 3005, "left": 2720}, {"solidity": 0.9980485127532741, "top": 375, "right": 2675, "bottom": 3610, "left": 630}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704051f.jpg"} -{"rects": [{"solidity": 0.9968260265820273, "top": 395, "right": 3200, "bottom": 2025, "left": 770}, {"solidity": 0.9968759302589841, "top": 4050, "right": 3195, "bottom": 5675, "left": 770}, {"solidity": 0.996977583477029, "top": 2220, "right": 3195, "bottom": 3840, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706640f.jpg"} -{"rects": [{"solidity": 0.996826119655289, "top": 885, "right": 5145, "bottom": 2860, "left": 2360}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704177f.jpg"} -{"rects": [{"solidity": 0.9968262527693137, "top": 410, "right": 3220, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725964f.jpg"} -{"rects": [{"solidity": 0.9968262951256137, "top": 665, "right": 3880, "bottom": 3085, "left": 2260}, {"solidity": 0.9968741952098893, "top": 650, "right": 2045, "bottom": 3075, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726986f.jpg"} -{"rects": [{"solidity": 0.9968264666141016, "top": 470, "right": 3135, "bottom": 2075, "left": 735}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724174f.jpg"} -{"rects": [{"solidity": 0.9968265651684051, "top": 785, "right": 5715, "bottom": 3205, "left": 4090}, {"solidity": 0.9939604693040425, "top": 950, "right": 1990, "bottom": 2915, "left": 475}, {"solidity": 0.9945669390429654, "top": 935, "right": 3790, "bottom": 2900, "left": 2290}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718252f.jpg"} -{"rects": [{"solidity": 0.9968265957269562, "top": 615, "right": 4940, "bottom": 3625, "left": 1180}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700838f.jpg"} -{"rects": [{"solidity": 0.9968266020773662, "top": 1175, "right": 2710, "bottom": 4375, "left": 205}], "shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508537.jpg"} -{"rects": [{"solidity": 0.9968267891233682, "top": 720, "right": 3875, "bottom": 3140, "left": 2250}, {"solidity": 0.9971443793979481, "top": 725, "right": 2020, "bottom": 3135, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730439f.jpg"} -{"rects": [{"solidity": 0.9968268285481605, "top": 810, "right": 3865, "bottom": 3225, "left": 2255}, {"solidity": 0.9973077510140588, "top": 805, "right": 2045, "bottom": 3220, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716594f.jpg"} -{"rects": [{"solidity": 0.996826890372932, "top": 610, "right": 2510, "bottom": 3670, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722639f.jpg"} -{"rects": [{"solidity": 0.9968271268948639, "top": 800, "right": 2040, "bottom": 3175, "left": 455}, {"solidity": 0.9979278126500825, "top": 800, "right": 3895, "bottom": 3170, "left": 2315}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713136f.jpg"} -{"rects": [{"solidity": 0.9968275365770842, "top": 610, "right": 2630, "bottom": 1990, "left": 815}, {"solidity": 0.9963418075472666, "top": 2065, "right": 2620, "bottom": 3420, "left": 805}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706997f.jpg"} -{"rects": [{"solidity": 0.9968275483693986, "top": 1010, "right": 4340, "bottom": 3425, "left": 2720}, {"solidity": 0.9963063022304376, "top": 1795, "right": 2630, "bottom": 3410, "left": 215}, {"solidity": 0.996460849980988, "top": 1025, "right": 6010, "bottom": 3445, "left": 4395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732847f.jpg"} -{"rects": [{"solidity": 0.9968275950916293, "top": 4055, "right": 3175, "bottom": 5675, "left": 760}, {"solidity": 0.9969573642154925, "top": 2190, "right": 3175, "bottom": 3800, "left": 760}, {"solidity": 0.9974337040205303, "top": 330, "right": 3165, "bottom": 1945, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721555f.jpg"} -{"rects": [{"solidity": 0.9968277629052756, "top": 315, "right": 3290, "bottom": 2780, "left": 260}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509965.jpg"} -{"rects": [{"solidity": 0.9968280362621492, "top": 370, "right": 3310, "bottom": 2440, "left": 480}, {"solidity": 0.9924341497391577, "top": 2485, "right": 2995, "bottom": 4175, "left": 870}, {"solidity": 0.9945818599794681, "top": 4250, "right": 2880, "bottom": 5745, "left": 945}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716870f.jpg"} -{"rects": [{"solidity": 0.9968280386906916, "top": 850, "right": 2895, "bottom": 2355, "left": 800}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509243.jpg"} -{"rects": [{"solidity": 0.9968281686440711, "top": 660, "right": 2875, "bottom": 2255, "left": 830}, {"solidity": 0.991755782911285, "top": 2355, "right": 2880, "bottom": 3950, "left": 825}], "shape": {"h": 4430, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/703406f.jpg"} -{"rects": [{"solidity": 0.996828200003502, "top": 735, "right": 2265, "bottom": 3385, "left": 350}, {"solidity": 0.999066137904567, "top": 840, "right": 4100, "bottom": 3260, "left": 2475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701864f.jpg"} -{"rects": [{"solidity": 0.9968282065877228, "top": 410, "right": 3195, "bottom": 2005, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706772f.jpg"} -{"rects": [{"solidity": 0.9968284551953719, "top": 595, "right": 5225, "bottom": 2055, "left": 3410}, {"solidity": 0.995769107296014, "top": 2225, "right": 5240, "bottom": 3660, "left": 3400}, {"solidity": 0.9978573556117105, "top": 590, "right": 2975, "bottom": 2020, "left": 1140}, {"solidity": 0.9955755926780009, "top": 2225, "right": 2975, "bottom": 3640, "left": 1150}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725682f.jpg"} -{"rects": [{"solidity": 0.9968284836105691, "top": 2210, "right": 3190, "bottom": 3815, "left": 785}, {"solidity": 0.9967268811432349, "top": 370, "right": 3200, "bottom": 1975, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713635f.jpg"} -{"rects": [{"solidity": 0.9968287037037037, "top": 385, "right": 3140, "bottom": 1980, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730239f.jpg"} -{"rects": [{"solidity": 0.9968287216028658, "top": 665, "right": 2740, "bottom": 2080, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726730f.jpg"} -{"rects": [{"solidity": 0.9968287526427061, "top": 505, "right": 3220, "bottom": 3940, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714262f.jpg"} -{"rects": [{"solidity": 0.9968289906360094, "top": 395, "right": 3120, "bottom": 2030, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728981f.jpg"} -{"rects": [{"solidity": 0.9968290073540043, "top": 400, "right": 3185, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709304f.jpg"} -{"rects": [{"solidity": 0.9968291852519284, "top": 305, "right": 3715, "bottom": 2735, "left": 705}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507516.jpg"} -{"rects": [{"solidity": 0.9968292206523862, "top": 390, "right": 3130, "bottom": 2000, "left": 725}, {"solidity": 0.9967650494100972, "top": 4115, "right": 3115, "bottom": 5710, "left": 710}, {"solidity": 0.9957269445356088, "top": 2240, "right": 3135, "bottom": 3845, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728397f.jpg"} -{"rects": [{"solidity": 0.9968292980366038, "top": 2265, "right": 3200, "bottom": 3905, "left": 735}, {"solidity": 0.9974566423293648, "top": 4045, "right": 3205, "bottom": 5685, "left": 745}, {"solidity": 0.9977707849863787, "top": 465, "right": 3185, "bottom": 2095, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700047f.jpg"} -{"rects": [{"solidity": 0.9968293256357675, "top": 800, "right": 2020, "bottom": 3210, "left": 415}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716600f.jpg"} -{"rects": [{"solidity": 0.9968296345736692, "top": 635, "right": 2730, "bottom": 2240, "left": 755}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719346f.jpg"} -{"rects": [{"solidity": 0.9968299897119342, "top": 820, "right": 2085, "bottom": 3240, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720756f.jpg"} -{"rects": [{"solidity": 0.9968301867653958, "top": 490, "right": 2760, "bottom": 2930, "left": 1130}, {"solidity": 0.9958673732948131, "top": 3185, "right": 2755, "bottom": 5620, "left": 1125}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/709105f.jpg"} -{"rects": [{"solidity": 0.9968302308959259, "top": 470, "right": 2845, "bottom": 3805, "left": 880}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711932f.jpg"} -{"rects": [{"solidity": 0.9968303709869591, "top": 435, "right": 3135, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729673f.jpg"} -{"rects": [{"solidity": 0.996830382180915, "top": 755, "right": 3925, "bottom": 3180, "left": 2300}, {"solidity": 0.9939485966370437, "top": 765, "right": 5790, "bottom": 3210, "left": 4170}, {"solidity": 0.997196471531676, "top": 780, "right": 2015, "bottom": 3200, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708027f.jpg"} -{"rects": [{"solidity": 0.9968304278922345, "top": 535, "right": 3365, "bottom": 2160, "left": 955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704093f.jpg"} -{"rects": [{"solidity": 0.9968304580909068, "top": 420, "right": 3260, "bottom": 2065, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700298f.jpg"} -{"rects": [{"solidity": 0.9968304587084605, "top": 770, "right": 3830, "bottom": 3185, "left": 2215}, {"solidity": 0.997547260890553, "top": 770, "right": 5650, "bottom": 3175, "left": 4045}, {"solidity": 0.9993382999246123, "top": 780, "right": 2000, "bottom": 3175, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716617f.jpg"} -{"rects": [{"solidity": 0.9968305407836362, "top": 390, "right": 5030, "bottom": 3670, "left": 990}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707972f.jpg"} -{"rects": [{"solidity": 0.9968306998034969, "top": 420, "right": 3180, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715296f.jpg"} -{"rects": [{"solidity": 0.9968309463858996, "top": 470, "right": 2465, "bottom": 2890, "left": 835}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715285f.jpg"} -{"rects": [{"solidity": 0.9968310491840768, "top": 420, "right": 3220, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724645f.jpg"} -{"rects": [{"solidity": 0.9968311205813255, "top": 765, "right": 2045, "bottom": 3190, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722271f.jpg"} -{"rects": [{"solidity": 0.9968311253060299, "top": 425, "right": 3100, "bottom": 3665, "left": 1045}, {"solidity": 0.9975911347572576, "top": 425, "right": 5490, "bottom": 3640, "left": 3465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724984f.jpg"} -{"rects": [{"solidity": 0.9968312385192716, "top": 870, "right": 5655, "bottom": 3275, "left": 4015}, {"solidity": 0.9962762743144589, "top": 850, "right": 3785, "bottom": 3255, "left": 2180}, {"solidity": 0.9972367655613729, "top": 850, "right": 1910, "bottom": 3220, "left": 340}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730831f.jpg"} -{"rects": [{"solidity": 0.9968312751835383, "top": 775, "right": 2000, "bottom": 3180, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723466f.jpg"} -{"rects": [{"solidity": 0.9968315517492087, "top": 1120, "right": 4010, "bottom": 5675, "left": 315}], "shape": {"h": 6915, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708864f.jpg"} -{"rects": [{"solidity": 0.996831574514783, "top": 840, "right": 5065, "bottom": 3405, "left": 1210}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718358f.jpg"} -{"rects": [{"solidity": 0.9968319834487298, "top": 215, "right": 1875, "bottom": 2060, "left": 710}, {"solidity": 0.9964360574338406, "top": 175, "right": 3285, "bottom": 2080, "left": 2185}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719847f.jpg"} -{"rects": [{"solidity": 0.9968323692476126, "top": 465, "right": 3070, "bottom": 2045, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729026f.jpg"} -{"rects": [{"solidity": 0.9968324328133057, "top": 825, "right": 2110, "bottom": 3245, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705681f.jpg"} -{"rects": [{"solidity": 0.9968326509886064, "top": 2245, "right": 3165, "bottom": 3880, "left": 730}, {"solidity": 0.9991765738450491, "top": 395, "right": 3155, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731481f.jpg"} -{"rects": [{"solidity": 0.9968326994513388, "top": 2125, "right": 3220, "bottom": 3765, "left": 780}, {"solidity": 0.9981950204172426, "top": 400, "right": 3190, "bottom": 2025, "left": 755}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701130f.jpg"} -{"rects": [{"solidity": 0.9968329153806893, "top": 450, "right": 5090, "bottom": 3710, "left": 1050}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723853f.jpg"} -{"rects": [{"solidity": 0.9968331479959387, "top": 2225, "right": 3065, "bottom": 3665, "left": 1250}, {"solidity": 0.9947584739616073, "top": 445, "right": 3065, "bottom": 1895, "left": 1250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726539f.jpg"} -{"rects": [{"solidity": 0.9968332905544148, "top": 465, "right": 3045, "bottom": 2095, "left": 625}, {"solidity": 0.9981742830088335, "top": 2345, "right": 3060, "bottom": 3965, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734270f.jpg"} -{"rects": [{"solidity": 0.9968333979578649, "top": 410, "right": 3240, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706769f.jpg"} -{"rects": [{"solidity": 0.9968334792389268, "top": 635, "right": 5145, "bottom": 3295, "left": 1710}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716832f.jpg"} -{"rects": [{"solidity": 0.9968334934674843, "top": 840, "right": 3845, "bottom": 3265, "left": 2205}, {"solidity": 0.9965761064607804, "top": 820, "right": 1995, "bottom": 3240, "left": 365}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713036f.jpg"} -{"rects": [{"solidity": 0.9968335925923271, "top": 1080, "right": 3480, "bottom": 5015, "left": 350}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708502f.jpg"} -{"rects": [{"solidity": 0.9968335953289917, "top": 510, "right": 3225, "bottom": 2125, "left": 790}, {"solidity": 0.9965289484415588, "top": 3940, "right": 3235, "bottom": 5570, "left": 805}, {"solidity": 0.9970111621968442, "top": 2240, "right": 3230, "bottom": 3855, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733205f.jpg"} -{"rects": [{"solidity": 0.996833655181219, "top": 420, "right": 3200, "bottom": 2055, "left": 765}, {"solidity": 0.9970090336779609, "top": 2270, "right": 3230, "bottom": 3895, "left": 800}, {"solidity": 0.995954802259887, "top": 4110, "right": 3180, "bottom": 5735, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713604f.jpg"} -{"rects": [{"solidity": 0.9968338460252714, "top": 415, "right": 3110, "bottom": 2045, "left": 695}, {"solidity": 0.9988213122292094, "top": 2285, "right": 3110, "bottom": 3900, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719522f.jpg"} -{"rects": [{"solidity": 0.9968338528719889, "top": 690, "right": 5360, "bottom": 3510, "left": 3350}, {"solidity": 0.997146084387678, "top": 675, "right": 2770, "bottom": 3490, "left": 765}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729103f.jpg"} -{"rects": [{"solidity": 0.9968338660057542, "top": 2310, "right": 3275, "bottom": 3895, "left": 880}, {"solidity": 0.9954180412542903, "top": 480, "right": 3280, "bottom": 2060, "left": 885}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726787f.jpg"} -{"rects": [{"solidity": 0.9968339952052413, "top": 420, "right": 4915, "bottom": 3670, "left": 905}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717702f.jpg"} -{"rects": [{"solidity": 0.9968343245278379, "top": 920, "right": 2010, "bottom": 2975, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701626f.jpg"} -{"rects": [{"solidity": 0.9968344880282006, "top": 720, "right": 2025, "bottom": 3135, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722012f.jpg"} -{"rects": [{"solidity": 0.9968345341080959, "top": 610, "right": 2495, "bottom": 3695, "left": 445}, {"solidity": 0.9954056415497657, "top": 920, "right": 4320, "bottom": 3340, "left": 2695}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714214f.jpg"} -{"rects": [{"solidity": 0.9968345777345999, "top": 375, "right": 3300, "bottom": 1990, "left": 875}, {"solidity": 0.9955740399430029, "top": 2220, "right": 3300, "bottom": 3845, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725647f.jpg"} -{"rects": [{"solidity": 0.996834846584299, "top": 385, "right": 3130, "bottom": 1995, "left": 710}, {"solidity": 0.9959314162314051, "top": 4095, "right": 3130, "bottom": 5700, "left": 715}, {"solidity": 0.9961501287087148, "top": 2250, "right": 3135, "bottom": 3855, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731585f.jpg"} -{"rects": [{"solidity": 0.9968348837582943, "top": 430, "right": 3245, "bottom": 2050, "left": 820}, {"solidity": 0.9960282294315584, "top": 4125, "right": 3200, "bottom": 5745, "left": 770}, {"solidity": 0.9971878351190149, "top": 2275, "right": 3230, "bottom": 3885, "left": 810}], "shape": {"h": 6140, "w": 3725}, "file": "/usr/local/google/home/danvk/milstein/734760f.jpg"} -{"rects": [{"solidity": 0.9968349260147938, "top": 860, "right": 2000, "bottom": 3300, "left": 385}, {"solidity": 0.9969842023536055, "top": 865, "right": 3885, "bottom": 3295, "left": 2270}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729209f.jpg"} -{"rects": [{"solidity": 0.9968353924592837, "top": 455, "right": 3280, "bottom": 2095, "left": 855}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700267f.jpg"} -{"rects": [{"solidity": 0.9968356780528442, "top": 390, "right": 3225, "bottom": 2005, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726469f.jpg"} -{"rects": [{"solidity": 0.9968356966757183, "top": 810, "right": 2035, "bottom": 3235, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708122f.jpg"} -{"rects": [{"solidity": 0.9968359975114587, "top": 4515, "right": 3475, "bottom": 6350, "left": 770}, {"solidity": 0.9963423817549396, "top": 2395, "right": 3470, "bottom": 4240, "left": 790}, {"solidity": 0.9979562379116562, "top": 300, "right": 3470, "bottom": 2135, "left": 835}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710244f.jpg"} -{"rects": [{"solidity": 0.9968360544874891, "top": 1125, "right": 3070, "bottom": 2075, "left": 1415}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509489.jpg"} -{"rects": [{"solidity": 0.9968361644890494, "top": 2430, "right": 3545, "bottom": 4260, "left": 825}, {"solidity": 0.9969640503799397, "top": 325, "right": 3535, "bottom": 2150, "left": 825}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711699f.jpg"} -{"rects": [{"solidity": 0.9968365167431956, "top": 415, "right": 3270, "bottom": 2030, "left": 855}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705352f.jpg"} -{"rects": [{"solidity": 0.9968365230631908, "top": 315, "right": 3130, "bottom": 1940, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721614f.jpg"} -{"rects": [{"solidity": 0.9968365537043885, "top": 555, "right": 2335, "bottom": 3290, "left": 380}, {"solidity": 0.9927867722131615, "top": 700, "right": 4100, "bottom": 3085, "left": 2505}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703688f.jpg"} -{"rects": [{"solidity": 0.9968365588350628, "top": 435, "right": 3090, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728673f.jpg"} -{"rects": [{"solidity": 0.996836637431951, "top": 350, "right": 2965, "bottom": 1990, "left": 535}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707896f.jpg"} -{"rects": [{"solidity": 0.996836662074549, "top": 450, "right": 3160, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700378f.jpg"} -{"rects": [{"solidity": 0.9968367513725038, "top": 650, "right": 2385, "bottom": 3070, "left": 755}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707124f.jpg"} -{"rects": [{"solidity": 0.9968369238084431, "top": 435, "right": 5070, "bottom": 3470, "left": 1240}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728278f.jpg"} -{"rects": [{"solidity": 0.9968369375274344, "top": 975, "right": 3455, "bottom": 4630, "left": 545}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/718910f.jpg"} -{"rects": [{"solidity": 0.9968372339703062, "top": 435, "right": 3190, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702075f.jpg"} -{"rects": [{"solidity": 0.9968373222661854, "top": 780, "right": 2015, "bottom": 3170, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713125f.jpg"} -{"rects": [{"solidity": 0.9968373508860359, "top": 590, "right": 2690, "bottom": 1990, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703942f.jpg"} -{"rects": [{"solidity": 0.996837418598387, "top": 500, "right": 3055, "bottom": 2145, "left": 620}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707363f.jpg"} -{"rects": [{"solidity": 0.9968374891968887, "top": 940, "right": 3845, "bottom": 3360, "left": 2205}, {"solidity": 0.9968867220503582, "top": 965, "right": 5685, "bottom": 3380, "left": 4090}, {"solidity": 0.9696941120587886, "top": 945, "right": 1950, "bottom": 3320, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718850f.jpg"} -{"rects": [{"solidity": 0.996837523375521, "top": 805, "right": 5655, "bottom": 3235, "left": 4030}, {"solidity": 0.9969111129586166, "top": 800, "right": 3895, "bottom": 3225, "left": 2270}, {"solidity": 0.9970474625223933, "top": 810, "right": 2135, "bottom": 3240, "left": 520}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734312f.jpg"} -{"rects": [{"solidity": 0.9968375520666453, "top": 2220, "right": 3305, "bottom": 3850, "left": 885}, {"solidity": 0.9985428370216757, "top": 390, "right": 3310, "bottom": 2000, "left": 900}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703695f.jpg"} -{"rects": [{"solidity": 0.996837558660829, "top": 825, "right": 3810, "bottom": 3225, "left": 2210}, {"solidity": 0.9958033337267708, "top": 810, "right": 1995, "bottom": 3210, "left": 390}, {"solidity": 0.9976850397346394, "top": 865, "right": 5635, "bottom": 3260, "left": 4045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718453f.jpg"} -{"rects": [{"solidity": 0.9968377901901605, "top": 565, "right": 3250, "bottom": 3965, "left": 625}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722795f.jpg"} -{"rects": [{"solidity": 0.9968378541881264, "top": 770, "right": 5720, "bottom": 3175, "left": 4115}, {"solidity": 0.9981652939133625, "top": 770, "right": 3875, "bottom": 3170, "left": 2275}, {"solidity": 0.9946694916111968, "top": 785, "right": 2020, "bottom": 3150, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723484f.jpg"} -{"rects": [{"solidity": 0.9968380532058355, "top": 810, "right": 3445, "bottom": 4805, "left": 240}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709084f.jpg"} -{"rects": [{"solidity": 0.9968380767642876, "top": 3955, "right": 3180, "bottom": 5570, "left": 790}, {"solidity": 0.9976700777517072, "top": 2175, "right": 3160, "bottom": 3790, "left": 785}, {"solidity": 0.9970947753360647, "top": 445, "right": 3160, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723100f.jpg"} -{"rects": [{"solidity": 0.9968380964572598, "top": 1305, "right": 2905, "bottom": 2930, "left": 480}, {"solidity": 0.9967992200103272, "top": 1295, "right": 5675, "bottom": 2915, "left": 3250}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734295f.jpg"} -{"rects": [{"solidity": 0.9968382898529788, "top": 425, "right": 3185, "bottom": 2040, "left": 800}], "shape": {"h": 6060, "w": 3885}, "file": "/usr/local/google/home/danvk/milstein/728141f.jpg"} -{"rects": [{"solidity": 0.9968383038999087, "top": 2090, "right": 2650, "bottom": 3530, "left": 830}, {"solidity": 0.995364535801718, "top": 2100, "right": 5230, "bottom": 3545, "left": 3405}, {"solidity": 0.9969608540580825, "top": 610, "right": 5230, "bottom": 2045, "left": 3410}, {"solidity": 0.9961446507635531, "top": 600, "right": 2665, "bottom": 2040, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702871f.jpg"} -{"rects": [{"solidity": 0.9968383527172423, "top": 435, "right": 3190, "bottom": 2055, "left": 770}, {"solidity": 0.9514945187213103, "top": 4860, "right": 3060, "bottom": 6010, "left": 1115}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/701719f.jpg"} -{"rects": [{"solidity": 0.9968385598424143, "top": 465, "right": 3940, "bottom": 2555, "left": 2450}, {"solidity": 0.9964168483299506, "top": 470, "right": 2135, "bottom": 2545, "left": 680}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716110f.jpg"} -{"rects": [{"solidity": 0.9968385684720409, "top": 500, "right": 3180, "bottom": 2435, "left": 530}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705239f.jpg"} -{"rects": [{"solidity": 0.9968385905764799, "top": 435, "right": 2725, "bottom": 3675, "left": 670}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733017f.jpg"} -{"rects": [{"solidity": 0.9968388453502289, "top": 900, "right": 3175, "bottom": 2470, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709204f.jpg"} -{"rects": [{"solidity": 0.9968389273663648, "top": 395, "right": 3095, "bottom": 2015, "left": 680}, {"solidity": 0.9986554610958478, "top": 2265, "right": 3085, "bottom": 3880, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729168f.jpg"} -{"rects": [{"solidity": 0.9968392116546887, "top": 380, "right": 3095, "bottom": 2005, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729963f.jpg"} -{"rects": [{"solidity": 0.9968395207354365, "top": 485, "right": 3020, "bottom": 2120, "left": 600}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703090f.jpg"} -{"rects": [{"solidity": 0.9968395555384675, "top": 1050, "right": 3535, "bottom": 5080, "left": 295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721278f.jpg"} -{"rects": [{"solidity": 0.9968399401051022, "top": 620, "right": 3075, "bottom": 2255, "left": 645}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705025f.jpg"} -{"rects": [{"solidity": 0.9968401664073169, "top": 435, "right": 3315, "bottom": 2070, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703827f.jpg"} -{"rects": [{"solidity": 0.9968402179334205, "top": 2175, "right": 3310, "bottom": 3830, "left": 880}, {"solidity": 0.999866054770842, "top": 430, "right": 3340, "bottom": 2055, "left": 915}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704949f.jpg"} -{"rects": [{"solidity": 0.9968403342814032, "top": 485, "right": 4975, "bottom": 3670, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717192f.jpg"} -{"rects": [{"solidity": 0.9968404879441359, "top": 745, "right": 3845, "bottom": 3170, "left": 2225}, {"solidity": 0.9969074607104728, "top": 740, "right": 2010, "bottom": 3155, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732282f.jpg"} -{"rects": [{"solidity": 0.9968406853085459, "top": 440, "right": 3205, "bottom": 2065, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705472f.jpg"} -{"rects": [{"solidity": 0.9968408127904742, "top": 400, "right": 2995, "bottom": 2025, "left": 600}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704893f.jpg"} -{"rects": [{"solidity": 0.9968408444866536, "top": 2225, "right": 3150, "bottom": 3830, "left": 745}, {"solidity": 0.9987000186647195, "top": 380, "right": 3135, "bottom": 1980, "left": 735}, {"solidity": 0.9953811304920784, "top": 4070, "right": 3175, "bottom": 5675, "left": 775}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730421f.jpg"} -{"rects": [{"solidity": 0.9968409568318379, "top": 770, "right": 2040, "bottom": 3180, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723292f.jpg"} -{"rects": [{"solidity": 0.9968411342717023, "top": 470, "right": 3170, "bottom": 2060, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721134f.jpg"} -{"rects": [{"solidity": 0.9968412088883176, "top": 765, "right": 2025, "bottom": 3185, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732510f.jpg"} -{"rects": [{"solidity": 0.9968412638796599, "top": 2270, "right": 3220, "bottom": 3890, "left": 790}, {"solidity": 0.9960785717540012, "top": 435, "right": 3215, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723562f.jpg"} -{"rects": [{"solidity": 0.9968415591153771, "top": 825, "right": 2030, "bottom": 3250, "left": 425}, {"solidity": 0.9967326116629149, "top": 825, "right": 3850, "bottom": 3240, "left": 2245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720369f.jpg"} -{"rects": [{"solidity": 0.9968416603263167, "top": 440, "right": 3170, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703002f.jpg"} -{"rects": [{"solidity": 0.9968416846573812, "top": 455, "right": 5050, "bottom": 3670, "left": 1060}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708174f.jpg"} -{"rects": [{"solidity": 0.9968418197318453, "top": 425, "right": 3155, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729779f.jpg"} -{"rects": [{"solidity": 0.9968418611013637, "top": 700, "right": 3805, "bottom": 2685, "left": 605}, {"solidity": 0.9951165028932641, "top": 3435, "right": 3785, "bottom": 5425, "left": 590}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728950f.jpg"} -{"rects": [{"solidity": 0.9968419313775981, "top": 750, "right": 2095, "bottom": 3155, "left": 470}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704789f.jpg"} -{"rects": [{"solidity": 0.9968421726876762, "top": 795, "right": 3915, "bottom": 3215, "left": 2290}, {"solidity": 0.9960574259843582, "top": 790, "right": 2030, "bottom": 3215, "left": 400}, {"solidity": 0.9962846444839033, "top": 805, "right": 5795, "bottom": 3225, "left": 4170}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718987f.jpg"} -{"rects": [{"solidity": 0.9968423021842625, "top": 825, "right": 5695, "bottom": 3245, "left": 4080}, {"solidity": 0.9984024112594433, "top": 825, "right": 3875, "bottom": 3235, "left": 2260}, {"solidity": 0.9977096141056627, "top": 820, "right": 2075, "bottom": 3225, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719338f.jpg"} -{"rects": [{"solidity": 0.9968423811258765, "top": 940, "right": 5770, "bottom": 3365, "left": 4135}, {"solidity": 0.9979759162908265, "top": 915, "right": 2040, "bottom": 3335, "left": 415}, {"solidity": 0.9968004438094071, "top": 935, "right": 3895, "bottom": 3340, "left": 2270}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726674f.jpg"} -{"rects": [{"solidity": 0.996842469273057, "top": 805, "right": 3830, "bottom": 3230, "left": 2220}, {"solidity": 0.9968623006557111, "top": 790, "right": 2040, "bottom": 3215, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731696f.jpg"} -{"rects": [{"solidity": 0.9968425510785273, "top": 1025, "right": 3540, "bottom": 5035, "left": 310}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709673f.jpg"} -{"rects": [{"solidity": 0.9968425844318105, "top": 680, "right": 2705, "bottom": 2110, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703809f.jpg"} -{"rects": [{"solidity": 0.9968430042317177, "top": 400, "right": 3190, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703019f.jpg"} -{"rects": [{"solidity": 0.9968431252653582, "top": 410, "right": 3480, "bottom": 2465, "left": 440}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714651f.jpg"} -{"rects": [{"solidity": 0.9968432146514611, "top": 610, "right": 2665, "bottom": 2025, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705515f.jpg"} -{"rects": [{"solidity": 0.9968435537411062, "top": 2290, "right": 3105, "bottom": 3890, "left": 690}, {"solidity": 0.9952428740860453, "top": 400, "right": 3120, "bottom": 2025, "left": 700}, {"solidity": 0.9935272434691882, "top": 4120, "right": 3100, "bottom": 5725, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728418f.jpg"} -{"rects": [{"solidity": 0.9968436743218598, "top": 780, "right": 3320, "bottom": 2225, "left": 1270}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507528.jpg"} -{"rects": [{"solidity": 0.9968439532116063, "top": 750, "right": 1940, "bottom": 3145, "left": 340}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718811f.jpg"} -{"rects": [{"solidity": 0.9968444182017056, "top": 805, "right": 3875, "bottom": 3215, "left": 2250}, {"solidity": 0.998960293579408, "top": 785, "right": 1995, "bottom": 3190, "left": 380}, {"solidity": 0.9965368475492795, "top": 830, "right": 5750, "bottom": 3230, "left": 4145}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720663f.jpg"} -{"rects": [{"solidity": 0.9968445484539247, "top": 2285, "right": 3250, "bottom": 3905, "left": 815}, {"solidity": 0.9967495441630317, "top": 405, "right": 3240, "bottom": 2025, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724301f.jpg"} -{"rects": [{"solidity": 0.996844560296337, "top": 410, "right": 3235, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/704636f.jpg"} -{"rects": [{"solidity": 0.9968448352592729, "top": 1005, "right": 3440, "bottom": 4920, "left": 295}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/717245f.jpg"} -{"rects": [{"solidity": 0.9968448545392153, "top": 765, "right": 2045, "bottom": 3205, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722553f.jpg"} -{"rects": [{"solidity": 0.9968449428165824, "top": 735, "right": 2025, "bottom": 3160, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715415f.jpg"} -{"rects": [{"solidity": 0.9968450252984039, "top": 820, "right": 3875, "bottom": 3230, "left": 2270}, {"solidity": 0.9941899092010473, "top": 820, "right": 2060, "bottom": 3230, "left": 455}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716666f.jpg"} -{"rects": [{"solidity": 0.9968450355706774, "top": 750, "right": 5650, "bottom": 3155, "left": 4035}, {"solidity": 0.9943066180656899, "top": 750, "right": 3815, "bottom": 3150, "left": 2210}, {"solidity": 0.9966134772127195, "top": 765, "right": 1965, "bottom": 3150, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712105f.jpg"} -{"rects": [{"solidity": 0.9968450361166146, "top": 2055, "right": 3285, "bottom": 4075, "left": 455}, {"solidity": 0.9973066859442273, "top": 275, "right": 3115, "bottom": 1900, "left": 690}, {"solidity": 0.9954924088657953, "top": 4225, "right": 3095, "bottom": 5830, "left": 675}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/729375f.jpg"} -{"rects": [{"solidity": 0.9968450448095881, "top": 900, "right": 4995, "bottom": 3710, "left": 915}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725661f.jpg"} -{"rects": [{"solidity": 0.9968453171959443, "top": 470, "right": 4955, "bottom": 3520, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711487f.jpg"} -{"rects": [{"solidity": 0.9968453747292794, "top": 405, "right": 3170, "bottom": 2015, "left": 760}, {"solidity": 0.9962080513615641, "top": 2275, "right": 3165, "bottom": 3870, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727526f.jpg"} -{"rects": [{"solidity": 0.996845467679298, "top": 430, "right": 3285, "bottom": 2015, "left": 875}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726540f.jpg"} -{"rects": [{"solidity": 0.9968455990133215, "top": 4125, "right": 3065, "bottom": 5735, "left": 645}, {"solidity": 0.9977180330415868, "top": 2265, "right": 3060, "bottom": 3875, "left": 645}, {"solidity": 0.9956152272962617, "top": 395, "right": 3085, "bottom": 2020, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730596f.jpg"} -{"rects": [{"solidity": 0.996845654617309, "top": 450, "right": 2095, "bottom": 2730, "left": 565}, {"solidity": 0.9955997039904366, "top": 640, "right": 3865, "bottom": 2455, "left": 2630}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715753f.jpg"} -{"rects": [{"solidity": 0.9968456553761395, "top": 550, "right": 5050, "bottom": 3660, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730663f.jpg"} -{"rects": [{"solidity": 0.99684571103872, "top": 530, "right": 3000, "bottom": 2155, "left": 590}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705380f.jpg"} -{"rects": [{"solidity": 0.9968457239682618, "top": 395, "right": 3205, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719044f.jpg"} -{"rects": [{"solidity": 0.9968457545561323, "top": 895, "right": 3860, "bottom": 3345, "left": 2210}, {"solidity": 0.9993405045460366, "top": 885, "right": 2015, "bottom": 3310, "left": 395}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729135f.jpg"} -{"rects": [{"solidity": 0.996845924883296, "top": 775, "right": 3890, "bottom": 3190, "left": 2270}, {"solidity": 0.9965217673182275, "top": 785, "right": 5730, "bottom": 3200, "left": 4115}, {"solidity": 0.9978228325956782, "top": 770, "right": 2045, "bottom": 3175, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732885f.jpg"} -{"rects": [{"solidity": 0.9968460305290304, "top": 650, "right": 2410, "bottom": 3680, "left": 490}], "shape": {"h": 3920, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713199f.jpg"} -{"rects": [{"solidity": 0.9968461242143348, "top": 1075, "right": 3560, "bottom": 5075, "left": 325}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708677f.jpg"} -{"rects": [{"solidity": 0.9968462777397359, "top": 790, "right": 2045, "bottom": 3215, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700748f.jpg"} -{"rects": [{"solidity": 0.9968466098650105, "top": 320, "right": 2800, "bottom": 2740, "left": 1175}, {"solidity": 0.9988456220457249, "top": 2975, "right": 3205, "bottom": 4595, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710505f.jpg"} -{"rects": [{"solidity": 0.9968468311981837, "top": 1220, "right": 3615, "bottom": 5030, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725757f.jpg"} -{"rects": [{"solidity": 0.9968469914078034, "top": 890, "right": 2000, "bottom": 3285, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729041f.jpg"} -{"rects": [{"solidity": 0.9968471343739724, "top": 735, "right": 2060, "bottom": 3160, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705948f.jpg"} -{"rects": [{"solidity": 0.9968472112528338, "top": 820, "right": 1995, "bottom": 3245, "left": 355}, {"solidity": 0.9962280676518442, "top": 815, "right": 3900, "bottom": 3240, "left": 2260}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719082f.jpg"} -{"rects": [{"solidity": 0.9968472710093553, "top": 440, "right": 3220, "bottom": 2060, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707539f.jpg"} -{"rects": [{"solidity": 0.9968472893751725, "top": 940, "right": 3875, "bottom": 3365, "left": 2255}, {"solidity": 0.998925432086017, "top": 950, "right": 2020, "bottom": 3370, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729496f.jpg"} -{"rects": [{"solidity": 0.9968475154894801, "top": 490, "right": 5010, "bottom": 3565, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721386f.jpg"} -{"rects": [{"solidity": 0.9968475552699518, "top": 480, "right": 3180, "bottom": 3910, "left": 560}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714348f.jpg"} -{"rects": [{"solidity": 0.9968475691828153, "top": 400, "right": 3085, "bottom": 2025, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733656f.jpg"} -{"rects": [{"solidity": 0.9968476020281791, "top": 385, "right": 4085, "bottom": 2585, "left": 1285}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509223.jpg"} -{"rects": [{"solidity": 0.9968478157042678, "top": 515, "right": 3255, "bottom": 2120, "left": 845}, {"solidity": 0.9966675465223703, "top": 2275, "right": 3275, "bottom": 3870, "left": 875}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725896f.jpg"} -{"rects": [{"solidity": 0.996847934669809, "top": 445, "right": 3155, "bottom": 2055, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733787f.jpg"} -{"rects": [{"solidity": 0.9968479841353814, "top": 615, "right": 3185, "bottom": 2255, "left": 745}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700434f.jpg"} -{"rects": [{"solidity": 0.9968481317624844, "top": 390, "right": 5240, "bottom": 3685, "left": 1220}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701847f.jpg"} -{"rects": [{"solidity": 0.9968481421388296, "top": 765, "right": 2040, "bottom": 3190, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710210f.jpg"} -{"rects": [{"solidity": 0.9968481970045805, "top": 500, "right": 3090, "bottom": 1915, "left": 1245}, {"solidity": 0.9966742890989508, "top": 2265, "right": 3090, "bottom": 3700, "left": 1280}, {"solidity": 0.9936506224351211, "top": 4055, "right": 3065, "bottom": 5500, "left": 1255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726155f.jpg"} -{"rects": [{"solidity": 0.9968482392013834, "top": 915, "right": 3840, "bottom": 3335, "left": 2200}, {"solidity": 0.9970412770853678, "top": 940, "right": 5700, "bottom": 3350, "left": 4075}, {"solidity": 0.9971365154142832, "top": 915, "right": 2000, "bottom": 3320, "left": 380}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720008f.jpg"} -{"rects": [{"solidity": 0.9968482459803717, "top": 2260, "right": 3260, "bottom": 3875, "left": 860}, {"solidity": 0.9986303439577476, "top": 415, "right": 3255, "bottom": 2010, "left": 855}, {"solidity": 0.996987703090577, "top": 4140, "right": 3245, "bottom": 5740, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723065f.jpg"} -{"rects": [{"solidity": 0.9968482459803717, "top": 740, "right": 3275, "bottom": 2780, "left": 435}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723642f.jpg"} -{"rects": [{"solidity": 0.9968483983109988, "top": 575, "right": 3395, "bottom": 2205, "left": 980}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707810f.jpg"} -{"rects": [{"solidity": 0.9968485583830902, "top": 755, "right": 2065, "bottom": 3185, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702144f.jpg"} -{"rects": [{"solidity": 0.9968486125926973, "top": 805, "right": 2345, "bottom": 3520, "left": 540}], "shape": {"h": 4420, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/710996f.jpg"} -{"rects": [{"solidity": 0.9968486860515403, "top": 2130, "right": 3110, "bottom": 3760, "left": 680}, {"solidity": 0.9973947371777702, "top": 305, "right": 3115, "bottom": 1935, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703161f.jpg"} -{"rects": [{"solidity": 0.996848773532938, "top": 1010, "right": 2125, "bottom": 2865, "left": 445}], "shape": {"h": 6030, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465680.jpg"} -{"rects": [{"solidity": 0.9968488536346843, "top": 790, "right": 2050, "bottom": 3220, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720288f.jpg"} -{"rects": [{"solidity": 0.996848866418646, "top": 750, "right": 3885, "bottom": 3195, "left": 2260}, {"solidity": 0.9975116720537685, "top": 745, "right": 2020, "bottom": 3170, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720812f.jpg"} -{"rects": [{"solidity": 0.9968489318167948, "top": 420, "right": 3205, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701250f.jpg"} -{"rects": [{"solidity": 0.9968489714660523, "top": 825, "right": 2010, "bottom": 3220, "left": 415}, {"solidity": 0.9968890664887732, "top": 825, "right": 3890, "bottom": 3220, "left": 2295}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723945f.jpg"} -{"rects": [{"solidity": 0.9968492155750964, "top": 300, "right": 5100, "bottom": 3585, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725296f.jpg"} -{"rects": [{"solidity": 0.9968492683481396, "top": 430, "right": 3015, "bottom": 2055, "left": 610}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702480f.jpg"} -{"rects": [{"solidity": 0.9968494348687633, "top": 480, "right": 3280, "bottom": 2495, "left": 445}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729398f.jpg"} -{"rects": [{"solidity": 0.9968495967104223, "top": 650, "right": 2430, "bottom": 3690, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714531f.jpg"} -{"rects": [{"solidity": 0.9968496328432395, "top": 475, "right": 3035, "bottom": 2085, "left": 650}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711951f.jpg"} -{"rects": [{"solidity": 0.9968497975786428, "top": 2035, "right": 2680, "bottom": 3685, "left": 285}, {"solidity": 0.9958801112369966, "top": 485, "right": 2390, "bottom": 1850, "left": 505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705750f.jpg"} -{"rects": [{"solidity": 0.9968498032328774, "top": 425, "right": 3175, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708177f.jpg"} -{"rects": [{"solidity": 0.996849845905775, "top": 375, "right": 3230, "bottom": 1980, "left": 810}, {"solidity": 0.9963757823902205, "top": 2220, "right": 3215, "bottom": 3820, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725874f.jpg"} -{"rects": [{"solidity": 0.9968498854210374, "top": 455, "right": 3210, "bottom": 2065, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720723f.jpg"} -{"rects": [{"solidity": 0.9968499087252705, "top": 865, "right": 2610, "bottom": 3805, "left": 300}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715953f.jpg"} -{"rects": [{"solidity": 0.9968499258061303, "top": 370, "right": 3055, "bottom": 3560, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714557f.jpg"} -{"rects": [{"solidity": 0.9968499574726503, "top": 735, "right": 2860, "bottom": 3880, "left": 605}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711675f.jpg"} -{"rects": [{"solidity": 0.9968501714205058, "top": 955, "right": 1975, "bottom": 3050, "left": 340}, {"solidity": 0.9955080042475607, "top": 975, "right": 3820, "bottom": 3065, "left": 2300}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718548f.jpg"} -{"rects": [{"solidity": 0.9968501946832438, "top": 810, "right": 4610, "bottom": 3245, "left": 1380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723596f.jpg"} -{"rects": [{"solidity": 0.9968502669172671, "top": 1000, "right": 3460, "bottom": 5065, "left": 335}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720016f.jpg"} -{"rects": [{"solidity": 0.9968505124062282, "top": 400, "right": 3215, "bottom": 1995, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712138f.jpg"} -{"rects": [{"solidity": 0.996850615474232, "top": 2265, "right": 3235, "bottom": 3890, "left": 805}, {"solidity": 0.9965970248824514, "top": 4075, "right": 3240, "bottom": 5700, "left": 815}, {"solidity": 0.9945897350490093, "top": 460, "right": 3220, "bottom": 2075, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733762f.jpg"} -{"rects": [{"solidity": 0.9968508888209102, "top": 340, "right": 3845, "bottom": 2755, "left": 775}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715971f.jpg"} -{"rects": [{"solidity": 0.9968515785700677, "top": 2265, "right": 3050, "bottom": 3880, "left": 630}, {"solidity": 0.9975684126455476, "top": 385, "right": 3045, "bottom": 2005, "left": 640}, {"solidity": 0.9962119617829033, "top": 4110, "right": 3030, "bottom": 5735, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718741f.jpg"} -{"rects": [{"solidity": 0.9968516219118277, "top": 1880, "right": 3380, "bottom": 3895, "left": 535}, {"solidity": 0.9964795526216736, "top": 3950, "right": 3220, "bottom": 5615, "left": 795}, {"solidity": 0.9957501021142513, "top": 155, "right": 3180, "bottom": 1770, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714649f.jpg"} -{"rects": [{"solidity": 0.9968516447949155, "top": 450, "right": 3135, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720578f.jpg"} -{"rects": [{"solidity": 0.9968516633371859, "top": 860, "right": 2555, "bottom": 3585, "left": 740}], "shape": {"h": 4430, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708315f.jpg"} -{"rects": [{"solidity": 0.9968518326831166, "top": 535, "right": 2025, "bottom": 2820, "left": 480}, {"solidity": 0.9971419954329375, "top": 550, "right": 3840, "bottom": 2835, "left": 2305}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715893f.jpg"} -{"rects": [{"solidity": 0.9968518851134007, "top": 775, "right": 3835, "bottom": 3180, "left": 2230}, {"solidity": 0.9987522842041145, "top": 770, "right": 1950, "bottom": 3170, "left": 350}, {"solidity": 0.9982694522125349, "top": 780, "right": 5690, "bottom": 3180, "left": 4095}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717611f.jpg"} -{"rects": [{"solidity": 0.9968519909385926, "top": 530, "right": 2725, "bottom": 3635, "left": 720}, {"solidity": 0.9961033820437615, "top": 860, "right": 4390, "bottom": 3280, "left": 2780}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714467f.jpg"} -{"rects": [{"solidity": 0.9968521376406853, "top": 750, "right": 3885, "bottom": 3165, "left": 2265}, {"solidity": 0.9997134437226265, "top": 735, "right": 2005, "bottom": 3140, "left": 400}, {"solidity": 0.9991174538215883, "top": 770, "right": 5735, "bottom": 3175, "left": 4135}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731160f.jpg"} -{"rects": [{"solidity": 0.9968521634756822, "top": 335, "right": 2400, "bottom": 1530, "left": 605}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716475f.jpg"} -{"rects": [{"solidity": 0.9968523378388481, "top": 380, "right": 5040, "bottom": 3665, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701848f.jpg"} -{"rects": [{"solidity": 0.9968524763605104, "top": 765, "right": 3875, "bottom": 3155, "left": 2275}, {"solidity": 0.9836857079578173, "top": 785, "right": 2030, "bottom": 3150, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713140f.jpg"} -{"rects": [{"solidity": 0.9968525136620779, "top": 400, "right": 3075, "bottom": 2030, "left": 650}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/729352f.jpg"} -{"rects": [{"solidity": 0.9968525821834576, "top": 835, "right": 3825, "bottom": 3275, "left": 2185}, {"solidity": 0.9967255202377502, "top": 825, "right": 1975, "bottom": 3260, "left": 340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705374f.jpg"} -{"rects": [{"solidity": 0.9968526398924946, "top": 725, "right": 3275, "bottom": 2650, "left": 480}, {"solidity": 0.9942322034896273, "top": 3240, "right": 3225, "bottom": 5150, "left": 500}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715377f.jpg"} -{"rects": [{"solidity": 0.9968526866611138, "top": 1135, "right": 3040, "bottom": 2775, "left": 605}, {"solidity": 0.9955531764637595, "top": 1145, "right": 5690, "bottom": 2780, "left": 3270}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731005f.jpg"} -{"rects": [{"solidity": 0.9968528546697257, "top": 455, "right": 5630, "bottom": 4105, "left": 1010}], "shape": {"h": 4410, "w": 6915}, "file": "/usr/local/google/home/danvk/milstein/711363f.jpg"} -{"rects": [{"solidity": 0.9968528667319926, "top": 2220, "right": 3070, "bottom": 3865, "left": 645}, {"solidity": 0.9981060728483242, "top": 380, "right": 3060, "bottom": 1995, "left": 645}], "shape": {"h": 6025, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/726671f.jpg"} -{"rects": [{"solidity": 0.9968529226888194, "top": 585, "right": 2680, "bottom": 3610, "left": 665}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713677f.jpg"} -{"rects": [{"solidity": 0.9968529323926384, "top": 2305, "right": 3075, "bottom": 3920, "left": 650}, {"solidity": 0.9970493960129763, "top": 410, "right": 3065, "bottom": 2025, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728391f.jpg"} -{"rects": [{"solidity": 0.9968531301311992, "top": 765, "right": 2035, "bottom": 3200, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719655f.jpg"} -{"rects": [{"solidity": 0.9968532313136127, "top": 2275, "right": 3085, "bottom": 3880, "left": 680}, {"solidity": 0.9970061064876485, "top": 635, "right": 3085, "bottom": 2230, "left": 690}, {"solidity": 0.9959649169189282, "top": 3925, "right": 3070, "bottom": 5520, "left": 680}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708699f.jpg"} -{"rects": [{"solidity": 0.99685331689006, "top": 2250, "right": 3070, "bottom": 3890, "left": 645}, {"solidity": 0.9969380507189342, "top": 380, "right": 3075, "bottom": 2015, "left": 660}, {"solidity": 0.9955909333965182, "top": 4120, "right": 3055, "bottom": 5760, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722821f.jpg"} -{"rects": [{"solidity": 0.9968534505107067, "top": 415, "right": 3075, "bottom": 2030, "left": 660}, {"solidity": 0.9962272067344193, "top": 2265, "right": 3060, "bottom": 3855, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728861f.jpg"} -{"rects": [{"solidity": 0.9968537278409035, "top": 760, "right": 2035, "bottom": 3160, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710463f.jpg"} -{"rects": [{"solidity": 0.9968537689292912, "top": 645, "right": 2500, "bottom": 3075, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719342f.jpg"} -{"rects": [{"solidity": 0.996853987422545, "top": 815, "right": 2220, "bottom": 3205, "left": 610}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709722f.jpg"} -{"rects": [{"solidity": 0.9968541169091216, "top": 605, "right": 2680, "bottom": 2045, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706725f.jpg"} -{"rects": [{"solidity": 0.9968542156373156, "top": 315, "right": 3155, "bottom": 1950, "left": 725}, {"solidity": 0.9967281569466193, "top": 2165, "right": 3145, "bottom": 3800, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703047f.jpg"} -{"rects": [{"solidity": 0.9968545682944441, "top": 550, "right": 3095, "bottom": 1955, "left": 1280}, {"solidity": 0.9969490156587285, "top": 4135, "right": 3070, "bottom": 5540, "left": 1265}, {"solidity": 0.9963903073996195, "top": 2350, "right": 3100, "bottom": 3735, "left": 1280}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726248f.jpg"} -{"rects": [{"solidity": 0.9968546516278698, "top": 300, "right": 3155, "bottom": 1930, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707165f.jpg"} -{"rects": [{"solidity": 0.9968547332875942, "top": 1290, "right": 3230, "bottom": 4705, "left": 590}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723145f.jpg"} -{"rects": [{"solidity": 0.9968547723949485, "top": 755, "right": 2065, "bottom": 3185, "left": 435}, {"solidity": 0.9958011609309243, "top": 735, "right": 5780, "bottom": 3160, "left": 4155}, {"solidity": 0.9952201678080872, "top": 735, "right": 3930, "bottom": 3160, "left": 2305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717264f.jpg"} -{"rects": [{"solidity": 0.9968550907609771, "top": 2895, "right": 3255, "bottom": 4510, "left": 850}, {"solidity": 0.9968081596116213, "top": 1080, "right": 3240, "bottom": 2695, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730989f.jpg"} -{"rects": [{"solidity": 0.9968552453100606, "top": 870, "right": 2005, "bottom": 3300, "left": 365}, {"solidity": 0.9970152610441767, "top": 890, "right": 3850, "bottom": 3305, "left": 2225}, {"solidity": 0.996758064516129, "top": 895, "right": 5710, "bottom": 3305, "left": 4080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720144f.jpg"} -{"rects": [{"solidity": 0.9968552759892381, "top": 595, "right": 3255, "bottom": 2240, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701307f.jpg"} -{"rects": [{"solidity": 0.9968554164730018, "top": 675, "right": 3880, "bottom": 3110, "left": 2265}, {"solidity": 0.9957125684957305, "top": 665, "right": 2025, "bottom": 3085, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726421f.jpg"} -{"rects": [{"solidity": 0.9968554863153061, "top": 875, "right": 3865, "bottom": 3305, "left": 2230}, {"solidity": 0.9972434130392974, "top": 865, "right": 1990, "bottom": 3290, "left": 365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707613f.jpg"} -{"rects": [{"solidity": 0.9968559756488306, "top": 645, "right": 4135, "bottom": 2810, "left": 905}], "shape": {"h": 8130, "w": 5185}, "file": "/usr/local/google/home/danvk/milstein/716320f.jpg"} -{"rects": [{"solidity": 0.9968559902670168, "top": 795, "right": 2100, "bottom": 3215, "left": 470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702034f.jpg"} -{"rects": [{"solidity": 0.9968560742368443, "top": 435, "right": 5130, "bottom": 3690, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725658f.jpg"} -{"rects": [{"solidity": 0.996856138880065, "top": 770, "right": 2040, "bottom": 3175, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713046f.jpg"} -{"rects": [{"solidity": 0.9968561990329221, "top": 685, "right": 3245, "bottom": 2510, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710029f.jpg"} -{"rects": [{"solidity": 0.9968562391065781, "top": 2255, "right": 3100, "bottom": 3875, "left": 680}, {"solidity": 0.9966788819010404, "top": 4135, "right": 3105, "bottom": 5750, "left": 685}, {"solidity": 0.9950019235910511, "top": 370, "right": 3085, "bottom": 1975, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728860f.jpg"} -{"rects": [{"solidity": 0.9968562543225327, "top": 440, "right": 5140, "bottom": 3710, "left": 1035}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725422f.jpg"} -{"rects": [{"solidity": 0.996856271147413, "top": 820, "right": 3855, "bottom": 3245, "left": 2220}, {"solidity": 0.9976327206320474, "top": 800, "right": 1995, "bottom": 3210, "left": 370}, {"solidity": 0.9973213997221235, "top": 850, "right": 5730, "bottom": 3250, "left": 4100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726652f.jpg"} -{"rects": [{"solidity": 0.9968562718675305, "top": 1030, "right": 3355, "bottom": 5030, "left": 445}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732259f.jpg"} -{"rects": [{"solidity": 0.9968564343074153, "top": 755, "right": 2030, "bottom": 3190, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715170f.jpg"} -{"rects": [{"solidity": 0.9968564442892072, "top": 450, "right": 3345, "bottom": 2075, "left": 920}, {"solidity": 0.9978645092403524, "top": 2305, "right": 3335, "bottom": 3915, "left": 915}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706047f.jpg"} -{"rects": [{"solidity": 0.9968566808648659, "top": 620, "right": 2675, "bottom": 2060, "left": 830}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702885f.jpg"} -{"rects": [{"solidity": 0.9968567601417843, "top": 630, "right": 2770, "bottom": 2060, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707217f.jpg"} -{"rects": [{"solidity": 0.9968567841885541, "top": 380, "right": 3085, "bottom": 2000, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719649f.jpg"} -{"rects": [{"solidity": 0.9968567894622751, "top": 420, "right": 3185, "bottom": 2055, "left": 750}, {"solidity": 0.9965947859259686, "top": 2270, "right": 3200, "bottom": 3895, "left": 770}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704669f.jpg"} -{"rects": [{"solidity": 0.99685683419929, "top": 505, "right": 4990, "bottom": 3585, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711477f.jpg"} -{"rects": [{"solidity": 0.9968570149105203, "top": 605, "right": 2775, "bottom": 3640, "left": 770}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715634f.jpg"} -{"rects": [{"solidity": 0.9968571246817151, "top": 925, "right": 2785, "bottom": 3940, "left": 320}], "shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508283.jpg"} -{"rects": [{"solidity": 0.9968571849696416, "top": 740, "right": 5245, "bottom": 3500, "left": 3315}, {"solidity": 0.9961622550264106, "top": 735, "right": 2640, "bottom": 3465, "left": 765}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725079f.jpg"} -{"rects": [{"solidity": 0.9968572938997772, "top": 785, "right": 2025, "bottom": 3205, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721801f.jpg"} -{"rects": [{"solidity": 0.9968573529840568, "top": 445, "right": 3310, "bottom": 2065, "left": 905}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727695f.jpg"} -{"rects": [{"solidity": 0.9968573582377084, "top": 340, "right": 3185, "bottom": 1915, "left": 795}, {"solidity": 0.9908647666326847, "top": 2175, "right": 2930, "bottom": 3665, "left": 1000}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719391f.jpg"} -{"rects": [{"solidity": 0.9968574596554122, "top": 360, "right": 2285, "bottom": 1580, "left": 480}, {"solidity": 0.9980720464098378, "top": 1780, "right": 2285, "bottom": 2990, "left": 485}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716333f.jpg"} -{"rects": [{"solidity": 0.9968574963990945, "top": 1215, "right": 3345, "bottom": 4825, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721891f.jpg"} -{"rects": [{"solidity": 0.9968575723776733, "top": 415, "right": 3105, "bottom": 2020, "left": 670}, {"solidity": 0.9942783129604145, "top": 4100, "right": 3115, "bottom": 5715, "left": 685}, {"solidity": 0.9963477966234223, "top": 2255, "right": 3115, "bottom": 3870, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709280f.jpg"} -{"rects": [{"solidity": 0.9968576069023515, "top": 760, "right": 2050, "bottom": 3175, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730578f.jpg"} -{"rects": [{"solidity": 0.9968577020210175, "top": 855, "right": 5085, "bottom": 3285, "left": 3470}, {"solidity": 0.9970091798412889, "top": 1240, "right": 3095, "bottom": 2865, "left": 700}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730818f.jpg"} -{"rects": [{"solidity": 0.9968577775739028, "top": 795, "right": 2035, "bottom": 3195, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718151f.jpg"} -{"rects": [{"solidity": 0.9968579270855221, "top": 435, "right": 3100, "bottom": 2035, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729287f.jpg"} -{"rects": [{"solidity": 0.9968580827920387, "top": 375, "right": 3230, "bottom": 2870, "left": 200}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509977.jpg"} -{"rects": [{"solidity": 0.9968581041276657, "top": 525, "right": 3180, "bottom": 2125, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720162f.jpg"} -{"rects": [{"solidity": 0.9968581859890674, "top": 920, "right": 3330, "bottom": 4915, "left": 535}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713869f.jpg"} -{"rects": [{"solidity": 0.9968583421316921, "top": 415, "right": 3190, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710684f.jpg"} -{"rects": [{"solidity": 0.9968583899468478, "top": 460, "right": 5070, "bottom": 3680, "left": 1070}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731417f.jpg"} -{"rects": [{"solidity": 0.9968585025875745, "top": 625, "right": 3310, "bottom": 2430, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714492f.jpg"} -{"rects": [{"solidity": 0.9968585951970416, "top": 795, "right": 2035, "bottom": 3220, "left": 390}, {"solidity": 0.9956899638660113, "top": 825, "right": 3845, "bottom": 3235, "left": 2225}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716785f.jpg"} -{"rects": [{"solidity": 0.9968586320712638, "top": 765, "right": 3840, "bottom": 3205, "left": 2205}, {"solidity": 0.9978610963244207, "top": 790, "right": 5620, "bottom": 3215, "left": 4000}, {"solidity": 0.9971733487164696, "top": 765, "right": 2050, "bottom": 3195, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731729f.jpg"} -{"rects": [{"solidity": 0.9968587091568147, "top": 410, "right": 3155, "bottom": 2040, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700986f.jpg"} -{"rects": [{"solidity": 0.9968587165549015, "top": 590, "right": 4980, "bottom": 3465, "left": 1090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717565f.jpg"} -{"rects": [{"solidity": 0.9968587192156084, "top": 470, "right": 3220, "bottom": 2095, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725123f.jpg"} -{"rects": [{"solidity": 0.9968587528607786, "top": 760, "right": 2020, "bottom": 3190, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705080f.jpg"} -{"rects": [{"solidity": 0.9968590298104885, "top": 885, "right": 2060, "bottom": 3300, "left": 425}, {"solidity": 0.9957438676388183, "top": 900, "right": 3920, "bottom": 3320, "left": 2300}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707673f.jpg"} -{"rects": [{"solidity": 0.9968590780105427, "top": 450, "right": 5085, "bottom": 3695, "left": 1080}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708488f.jpg"} -{"rects": [{"solidity": 0.9968590993581404, "top": 720, "right": 4705, "bottom": 3400, "left": 1205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733833f.jpg"} -{"rects": [{"solidity": 0.9968593908132284, "top": 430, "right": 3185, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724225f.jpg"} -{"rects": [{"solidity": 0.9968595100188106, "top": 460, "right": 3145, "bottom": 2070, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733757f.jpg"} -{"rects": [{"solidity": 0.9968596228238246, "top": 780, "right": 2035, "bottom": 3180, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722024f.jpg"} -{"rects": [{"solidity": 0.9968596342962508, "top": 655, "right": 2735, "bottom": 2100, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726313f.jpg"} -{"rects": [{"solidity": 0.9968599183774829, "top": 4005, "right": 3170, "bottom": 5620, "left": 775}, {"solidity": 0.9952168514004507, "top": 2180, "right": 3180, "bottom": 3785, "left": 785}, {"solidity": 0.9953571534411396, "top": 365, "right": 3170, "bottom": 1960, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709453f.jpg"} -{"rects": [{"solidity": 0.9968600342122235, "top": 1535, "right": 3425, "bottom": 5260, "left": 350}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714235f.jpg"} -{"rects": [{"solidity": 0.9968600630286311, "top": 435, "right": 5840, "bottom": 3675, "left": 3790}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705736f.jpg"} -{"rects": [{"solidity": 0.996860121490724, "top": 420, "right": 3155, "bottom": 1985, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713511f.jpg"} -{"rects": [{"solidity": 0.9968601313736444, "top": 390, "right": 3225, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705383f.jpg"} -{"rects": [{"solidity": 0.9968601443746699, "top": 755, "right": 1995, "bottom": 3160, "left": 385}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713180f.jpg"} -{"rects": [{"solidity": 0.9968602471871035, "top": 1080, "right": 5530, "bottom": 2705, "left": 3120}, {"solidity": 0.9990080972972272, "top": 1085, "right": 3090, "bottom": 2705, "left": 695}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719222f.jpg"} -{"rects": [{"solidity": 0.9968604981683578, "top": 360, "right": 3015, "bottom": 2010, "left": 600}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702670f.jpg"} -{"rects": [{"solidity": 0.9968605403545674, "top": 395, "right": 3060, "bottom": 3605, "left": 1030}, {"solidity": 0.9965841946168315, "top": 395, "right": 5355, "bottom": 3615, "left": 3305}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733024f.jpg"} -{"rects": [{"solidity": 0.9968606451780812, "top": 795, "right": 2060, "bottom": 3205, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717980f.jpg"} -{"rects": [{"solidity": 0.9968606967142838, "top": 775, "right": 2000, "bottom": 3170, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711178f.jpg"} -{"rects": [{"solidity": 0.9968607242072689, "top": 825, "right": 5700, "bottom": 3245, "left": 4070}, {"solidity": 0.9972206048401365, "top": 805, "right": 3865, "bottom": 3225, "left": 2245}, {"solidity": 0.9967389928841904, "top": 810, "right": 2045, "bottom": 3220, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733675f.jpg"} -{"rects": [{"solidity": 0.9968607446404277, "top": 480, "right": 5330, "bottom": 3410, "left": 970}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724822f.jpg"} -{"rects": [{"solidity": 0.9968607455113, "top": 515, "right": 5150, "bottom": 4050, "left": 1540}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711291f.jpg"} -{"rects": [{"solidity": 0.9968608256669144, "top": 520, "right": 2995, "bottom": 2150, "left": 570}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703210f.jpg"} -{"rects": [{"solidity": 0.9968610991020396, "top": 490, "right": 5100, "bottom": 3715, "left": 1020}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701838f.jpg"} -{"rects": [{"solidity": 0.9968611314645174, "top": 3935, "right": 3225, "bottom": 5570, "left": 800}, {"solidity": 0.9962788453807189, "top": 2200, "right": 3215, "bottom": 3820, "left": 795}, {"solidity": 0.99855948167413, "top": 480, "right": 3230, "bottom": 2085, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734103f.jpg"} -{"rects": [{"solidity": 0.9968611591794418, "top": 510, "right": 5145, "bottom": 3790, "left": 1120}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707573f.jpg"} -{"rects": [{"solidity": 0.9968612380424322, "top": 795, "right": 1970, "bottom": 3230, "left": 345}, {"solidity": 0.9965864837577525, "top": 815, "right": 3875, "bottom": 3230, "left": 2245}, {"solidity": 0.9959484846427197, "top": 810, "right": 5795, "bottom": 3230, "left": 4175}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733928f.jpg"} -{"rects": [{"solidity": 0.9968613182463365, "top": 445, "right": 3110, "bottom": 2285, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701979f.jpg"} -{"rects": [{"solidity": 0.9968613572369611, "top": 2235, "right": 3080, "bottom": 3855, "left": 660}, {"solidity": 0.9963344512878122, "top": 370, "right": 3080, "bottom": 1990, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728460f.jpg"} -{"rects": [{"solidity": 0.9968613780621479, "top": 745, "right": 2040, "bottom": 3180, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710035f.jpg"} -{"rects": [{"solidity": 0.9968616371899189, "top": 415, "right": 3100, "bottom": 2050, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701484f.jpg"} -{"rects": [{"solidity": 0.9968617406096631, "top": 370, "right": 3170, "bottom": 1985, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724605f.jpg"} -{"rects": [{"solidity": 0.9968617508367035, "top": 415, "right": 3185, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/702544f.jpg"} -{"rects": [{"solidity": 0.9968617726927047, "top": 3620, "right": 3690, "bottom": 5785, "left": 605}, {"solidity": 0.9913252931224962, "top": 850, "right": 3635, "bottom": 2890, "left": 680}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711617f.jpg"} -{"rects": [{"solidity": 0.9968623205415011, "top": 2145, "right": 5385, "bottom": 3570, "left": 3540}, {"solidity": 0.9974009003166001, "top": 2140, "right": 2685, "bottom": 3570, "left": 850}, {"solidity": 0.9961960708782742, "top": 655, "right": 2685, "bottom": 2080, "left": 845}, {"solidity": 0.9927141849663189, "top": 645, "right": 5370, "bottom": 2075, "left": 3545}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704272f.jpg"} -{"rects": [{"solidity": 0.9968623920283772, "top": 495, "right": 3175, "bottom": 2070, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710917f.jpg"} -{"rects": [{"solidity": 0.9968624417803037, "top": 835, "right": 2040, "bottom": 3215, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708489f.jpg"} -{"rects": [{"solidity": 0.9968624918006452, "top": 285, "right": 3915, "bottom": 2775, "left": 850}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509933.jpg"} -{"rects": [{"solidity": 0.9968627730590637, "top": 590, "right": 3270, "bottom": 2605, "left": 450}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728933f.jpg"} -{"rects": [{"solidity": 0.9968628603140404, "top": 805, "right": 1985, "bottom": 3210, "left": 375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730192f.jpg"} -{"rects": [{"solidity": 0.9968629016874505, "top": 460, "right": 4960, "bottom": 3700, "left": 1010}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724578f.jpg"} -{"rects": [{"solidity": 0.9968633432357662, "top": 790, "right": 3890, "bottom": 3225, "left": 2260}, {"solidity": 0.9972448248036495, "top": 795, "right": 2030, "bottom": 3220, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734501f.jpg"} -{"rects": [{"solidity": 0.9968633683242023, "top": 875, "right": 5705, "bottom": 3290, "left": 4070}, {"solidity": 0.996884564403407, "top": 850, "right": 3860, "bottom": 3265, "left": 2235}, {"solidity": 0.9971052170925099, "top": 870, "right": 2005, "bottom": 3275, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710295f.jpg"} -{"rects": [{"solidity": 0.9968635130579945, "top": 420, "right": 3155, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707407f.jpg"} -{"rects": [{"solidity": 0.9968635571143506, "top": 390, "right": 4930, "bottom": 3650, "left": 1060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726230f.jpg"} -{"rects": [{"solidity": 0.9968639910164983, "top": 315, "right": 3980, "bottom": 2750, "left": 960}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517215.jpg"} -{"rects": [{"solidity": 0.9968640099609906, "top": 860, "right": 3910, "bottom": 3265, "left": 2325}, {"solidity": 0.9959933144063867, "top": 865, "right": 2020, "bottom": 3265, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728605f.jpg"} -{"rects": [{"solidity": 0.9968640158889862, "top": 2175, "right": 2990, "bottom": 5340, "left": 550}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714765f.jpg"} -{"rects": [{"solidity": 0.9968641451177152, "top": 415, "right": 3190, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703079f.jpg"} -{"rects": [{"solidity": 0.9968641566948795, "top": 310, "right": 3150, "bottom": 1935, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707172f.jpg"} -{"rects": [{"solidity": 0.9968642706833536, "top": 495, "right": 5055, "bottom": 3675, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717683f.jpg"} -{"rects": [{"solidity": 0.9968643108363527, "top": 670, "right": 3335, "bottom": 2590, "left": 615}, {"solidity": 0.9964372583072267, "top": 3190, "right": 3315, "bottom": 5110, "left": 590}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724833f.jpg"} -{"rects": [{"solidity": 0.9968644676044599, "top": 740, "right": 3815, "bottom": 3140, "left": 2225}, {"solidity": 0.9934284009108884, "top": 735, "right": 1980, "bottom": 3135, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727641f.jpg"} -{"rects": [{"solidity": 0.9968646267904886, "top": 790, "right": 2060, "bottom": 3195, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709674f.jpg"} -{"rects": [{"solidity": 0.9968647088013715, "top": 745, "right": 2030, "bottom": 3170, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715364f.jpg"} -{"rects": [{"solidity": 0.9968647468749152, "top": 1100, "right": 2645, "bottom": 2685, "left": 300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734214f.jpg"} -{"rects": [{"solidity": 0.9968649120442571, "top": 390, "right": 3220, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724131f.jpg"} -{"rects": [{"solidity": 0.9968649194854322, "top": 540, "right": 3175, "bottom": 2160, "left": 765}, {"solidity": 0.9965329838130023, "top": 4150, "right": 3170, "bottom": 5765, "left": 765}, {"solidity": 0.9985583352359829, "top": 2360, "right": 3180, "bottom": 3965, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709275f.jpg"} -{"rects": [{"solidity": 0.9968649451365399, "top": 425, "right": 3285, "bottom": 2425, "left": 450}, {"solidity": 0.9959223062149352, "top": 2610, "right": 2795, "bottom": 4075, "left": 940}, {"solidity": 0.9955065958443107, "top": 4235, "right": 2770, "bottom": 5705, "left": 910}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704322f.jpg"} -{"rects": [{"solidity": 0.9968650021703831, "top": 2290, "right": 3175, "bottom": 3905, "left": 750}, {"solidity": 0.997239542423449, "top": 440, "right": 3200, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731767f.jpg"} -{"rects": [{"solidity": 0.9968650544089341, "top": 770, "right": 3755, "bottom": 3200, "left": 2115}, {"solidity": 0.9966632034521662, "top": 780, "right": 5605, "bottom": 3210, "left": 3970}, {"solidity": 0.9989614319417376, "top": 770, "right": 1920, "bottom": 3185, "left": 295}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732858f.jpg"} -{"rects": [{"solidity": 0.9968650995488801, "top": 770, "right": 1985, "bottom": 3155, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730222f.jpg"} -{"rects": [{"solidity": 0.9968651217829906, "top": 460, "right": 3065, "bottom": 2060, "left": 655}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700460f.jpg"} -{"rects": [{"solidity": 0.9968652240652345, "top": 790, "right": 3915, "bottom": 3205, "left": 2300}, {"solidity": 0.9964386354487255, "top": 790, "right": 2050, "bottom": 3200, "left": 430}, {"solidity": 0.996789239542981, "top": 795, "right": 5780, "bottom": 3205, "left": 4180}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731720f.jpg"} -{"rects": [{"solidity": 0.9968652967584993, "top": 655, "right": 2670, "bottom": 2065, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705078f.jpg"} -{"rects": [{"solidity": 0.9968654809865383, "top": 810, "right": 5535, "bottom": 3200, "left": 3925}, {"solidity": 0.9952394259366455, "top": 795, "right": 3685, "bottom": 3190, "left": 2100}, {"solidity": 0.9943279917764197, "top": 770, "right": 1865, "bottom": 3175, "left": 290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712065f.jpg"} -{"rects": [{"solidity": 0.9968655189598944, "top": 375, "right": 3450, "bottom": 2620, "left": 880}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507949.jpg"} -{"rects": [{"solidity": 0.9968655498166832, "top": 925, "right": 3895, "bottom": 3310, "left": 2315}, {"solidity": 0.9969876303495382, "top": 960, "right": 2060, "bottom": 3290, "left": 480}, {"solidity": 0.9973196205165192, "top": 955, "right": 5700, "bottom": 3285, "left": 4135}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714150f.jpg"} -{"rects": [{"solidity": 0.9968658017200269, "top": 470, "right": 3175, "bottom": 2065, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719402f.jpg"} -{"rects": [{"solidity": 0.9968658808170788, "top": 555, "right": 2680, "bottom": 1985, "left": 835}, {"solidity": 0.9952272496482091, "top": 2040, "right": 2685, "bottom": 3485, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705904f.jpg"} -{"rects": [{"solidity": 0.9968659307456832, "top": 815, "right": 2050, "bottom": 3200, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712342f.jpg"} -{"rects": [{"solidity": 0.9968662885706047, "top": 860, "right": 3795, "bottom": 3280, "left": 2165}, {"solidity": 0.9965049998371388, "top": 865, "right": 1910, "bottom": 3265, "left": 295}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710051f.jpg"} -{"rects": [{"solidity": 0.9968663287342916, "top": 430, "right": 3245, "bottom": 2050, "left": 810}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704922f.jpg"} -{"rects": [{"solidity": 0.996866354000974, "top": 455, "right": 5135, "bottom": 3685, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732664f.jpg"} -{"rects": [{"solidity": 0.9968664433633729, "top": 435, "right": 3070, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729512f.jpg"} -{"rects": [{"solidity": 0.9968664690239395, "top": 435, "right": 5080, "bottom": 3665, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723854f.jpg"} -{"rects": [{"solidity": 0.9968666177225637, "top": 2155, "right": 2790, "bottom": 3580, "left": 945}, {"solidity": 0.9983898108390391, "top": 660, "right": 2785, "bottom": 2080, "left": 950}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705518f.jpg"} -{"rects": [{"solidity": 0.9968667716454128, "top": 745, "right": 2040, "bottom": 3160, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721681f.jpg"} -{"rects": [{"solidity": 0.9968672387931247, "top": 2100, "right": 2685, "bottom": 3515, "left": 860}, {"solidity": 0.9950231087813369, "top": 645, "right": 2690, "bottom": 2030, "left": 860}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704363f.jpg"} -{"rects": [{"solidity": 0.9968672865758736, "top": 470, "right": 2955, "bottom": 2100, "left": 535}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704202f.jpg"} -{"rects": [{"solidity": 0.9968675559400118, "top": 800, "right": 2105, "bottom": 3195, "left": 495}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712090f.jpg"} -{"rects": [{"solidity": 0.9968676137952067, "top": 2245, "right": 3155, "bottom": 3875, "left": 715}, {"solidity": 0.9981790552887544, "top": 4055, "right": 3150, "bottom": 5675, "left": 725}, {"solidity": 0.998092638677049, "top": 385, "right": 3135, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701040f.jpg"} -{"rects": [{"solidity": 0.9968681131178859, "top": 460, "right": 3155, "bottom": 2090, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703205f.jpg"} -{"rects": [{"solidity": 0.9968681222879814, "top": 455, "right": 3155, "bottom": 2055, "left": 760}, {"solidity": 0.9966599337267482, "top": 2295, "right": 3160, "bottom": 3890, "left": 765}, {"solidity": 0.9970134658332562, "top": 4120, "right": 3150, "bottom": 5720, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724606f.jpg"} -{"rects": [{"solidity": 0.9968682222122699, "top": 2125, "right": 3215, "bottom": 3760, "left": 790}, {"solidity": 0.9967031060211695, "top": 290, "right": 3220, "bottom": 1920, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703236f.jpg"} -{"rects": [{"solidity": 0.9968682553183121, "top": 735, "right": 2685, "bottom": 2150, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726530f.jpg"} -{"rects": [{"solidity": 0.9968683416749525, "top": 280, "right": 3385, "bottom": 2780, "left": 325}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509797.jpg"} -{"rects": [{"solidity": 0.9968684262065844, "top": 505, "right": 5025, "bottom": 3665, "left": 1090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713914f.jpg"} -{"rects": [{"solidity": 0.9968685227359964, "top": 2340, "right": 3140, "bottom": 3960, "left": 700}, {"solidity": 0.9968191796427497, "top": 470, "right": 3135, "bottom": 2090, "left": 695}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700894f.jpg"} -{"rects": [{"solidity": 0.9968685329269271, "top": 2290, "right": 3040, "bottom": 3925, "left": 610}, {"solidity": 0.9957756387497205, "top": 420, "right": 3020, "bottom": 2015, "left": 615}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729696f.jpg"} -{"rects": [{"solidity": 0.9968686984450521, "top": 420, "right": 5065, "bottom": 3715, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730100f.jpg"} -{"rects": [{"solidity": 0.9968686990538888, "top": 365, "right": 3875, "bottom": 2790, "left": 860}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716306f.jpg"} -{"rects": [{"solidity": 0.9968688961231134, "top": 410, "right": 2590, "bottom": 3605, "left": 580}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733059f.jpg"} -{"rects": [{"solidity": 0.9968689780382539, "top": 850, "right": 1995, "bottom": 3285, "left": 360}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721137f.jpg"} -{"rects": [{"solidity": 0.9968690812106219, "top": 2425, "right": 2795, "bottom": 4045, "left": 370}, {"solidity": 0.9964054312191848, "top": 4090, "right": 2810, "bottom": 5725, "left": 395}, {"solidity": 0.9964893565436649, "top": 745, "right": 2780, "bottom": 2370, "left": 365}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704659f.jpg"} -{"rects": [{"solidity": 0.996869145853725, "top": 410, "right": 3215, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721475f.jpg"} -{"rects": [{"solidity": 0.9968692059459425, "top": 835, "right": 5775, "bottom": 3255, "left": 4125}, {"solidity": 0.9956059404860106, "top": 795, "right": 2330, "bottom": 3220, "left": 695}, {"solidity": 0.9975629490581914, "top": 810, "right": 4045, "bottom": 3215, "left": 2425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730502f.jpg"} -{"rects": [{"solidity": 0.9968692237337785, "top": 845, "right": 2055, "bottom": 3270, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704541f.jpg"} -{"rects": [{"solidity": 0.9968694345048446, "top": 345, "right": 3225, "bottom": 1950, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727823f.jpg"} -{"rects": [{"solidity": 0.9968695241282904, "top": 420, "right": 3165, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705839f.jpg"} -{"rects": [{"solidity": 0.9968695730912642, "top": 460, "right": 3020, "bottom": 2085, "left": 610}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703803f.jpg"} -{"rects": [{"solidity": 0.9968696013612688, "top": 395, "right": 3155, "bottom": 2000, "left": 740}, {"solidity": 0.995572495827483, "top": 2245, "right": 3130, "bottom": 3845, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706331f.jpg"} -{"rects": [{"solidity": 0.996869626045644, "top": 360, "right": 2420, "bottom": 1560, "left": 615}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716360f.jpg"} -{"rects": [{"solidity": 0.9968696833478048, "top": 2145, "right": 3190, "bottom": 3775, "left": 770}, {"solidity": 0.9981408139748816, "top": 305, "right": 3175, "bottom": 1930, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730528f.jpg"} -{"rects": [{"solidity": 0.9968697251231662, "top": 445, "right": 4330, "bottom": 3740, "left": 1545}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724896f.jpg"} -{"rects": [{"solidity": 0.9968697751686636, "top": 670, "right": 2170, "bottom": 1860, "left": 180}, {"solidity": 0.9964729602678158, "top": 2255, "right": 2140, "bottom": 3455, "left": 190}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723802f.jpg"} -{"rects": [{"solidity": 0.9968697962030427, "top": 790, "right": 2000, "bottom": 3175, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734326f.jpg"} -{"rects": [{"solidity": 0.996869814819024, "top": 360, "right": 2940, "bottom": 1985, "left": 545}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702713f.jpg"} -{"rects": [{"solidity": 0.9968699648696479, "top": 735, "right": 2100, "bottom": 3125, "left": 500}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723611f.jpg"} -{"rects": [{"solidity": 0.9968702451801775, "top": 720, "right": 3940, "bottom": 3135, "left": 2305}, {"solidity": 0.9970614477461401, "top": 710, "right": 2055, "bottom": 3120, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704855f.jpg"} -{"rects": [{"solidity": 0.9968702969495914, "top": 220, "right": 3185, "bottom": 1840, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709629f.jpg"} -{"rects": [{"solidity": 0.9968703118645346, "top": 535, "right": 3705, "bottom": 3215, "left": 220}, {"solidity": 0.9973520018327112, "top": 3270, "right": 3700, "bottom": 5965, "left": 210}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/717243f.jpg"} -{"rects": [{"solidity": 0.9968703191787328, "top": 640, "right": 2735, "bottom": 3675, "left": 685}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716758f.jpg"} -{"rects": [{"solidity": 0.9968705482734228, "top": 2255, "right": 3210, "bottom": 3865, "left": 805}, {"solidity": 0.9943595246819871, "top": 360, "right": 3195, "bottom": 1965, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700131f.jpg"} -{"rects": [{"solidity": 0.9968705902681116, "top": 2135, "right": 3190, "bottom": 3760, "left": 760}, {"solidity": 0.997282397952589, "top": 295, "right": 3190, "bottom": 1915, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720165f.jpg"} -{"rects": [{"solidity": 0.9968706492444853, "top": 880, "right": 3900, "bottom": 3300, "left": 2260}, {"solidity": 0.9968052959102666, "top": 895, "right": 5755, "bottom": 3315, "left": 4125}, {"solidity": 0.9966003537686635, "top": 865, "right": 2025, "bottom": 3285, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726675f.jpg"} -{"rects": [{"solidity": 0.9968707272342681, "top": 515, "right": 4900, "bottom": 3570, "left": 1115}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717639f.jpg"} -{"rects": [{"solidity": 0.9968707500531747, "top": 375, "right": 3090, "bottom": 1990, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728316f.jpg"} -{"rects": [{"solidity": 0.9968708795626307, "top": 445, "right": 3085, "bottom": 2075, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711822f.jpg"} -{"rects": [{"solidity": 0.996870959706786, "top": 770, "right": 3335, "bottom": 2675, "left": 540}, {"solidity": 0.9933250440113752, "top": 3275, "right": 3290, "bottom": 5180, "left": 570}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715382f.jpg"} -{"rects": [{"solidity": 0.9968709760494463, "top": 4090, "right": 3075, "bottom": 5705, "left": 645}, {"solidity": 0.996517283223412, "top": 380, "right": 3070, "bottom": 2000, "left": 635}, {"solidity": 0.9955457787811836, "top": 2220, "right": 3060, "bottom": 3845, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726605f.jpg"} -{"rects": [{"solidity": 0.9968710888610763, "top": 920, "right": 1965, "bottom": 2995, "left": 525}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702358f.jpg"} -{"rects": [{"solidity": 0.9968710944875518, "top": 1005, "right": 1940, "bottom": 2950, "left": 500}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708560f.jpg"} -{"rects": [{"solidity": 0.9968712709915888, "top": 2125, "right": 2700, "bottom": 3555, "left": 885}, {"solidity": 0.9974675701458483, "top": 690, "right": 2710, "bottom": 2100, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706822f.jpg"} -{"rects": [{"solidity": 0.9968716539597766, "top": 490, "right": 3065, "bottom": 2120, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734296f.jpg"} -{"rects": [{"solidity": 0.9968717830836423, "top": 685, "right": 2715, "bottom": 2080, "left": 905}, {"solidity": 0.9974112074188687, "top": 2155, "right": 2705, "bottom": 3555, "left": 905}, {"solidity": 0.9916250263917236, "top": 705, "right": 5230, "bottom": 2105, "left": 3430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725180f.jpg"} -{"rects": [{"solidity": 0.9968718364527009, "top": 570, "right": 3325, "bottom": 2475, "left": 555}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724102f.jpg"} -{"rects": [{"solidity": 0.9968718538760247, "top": 685, "right": 2630, "bottom": 3690, "left": 180}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509143.jpg"} -{"rects": [{"solidity": 0.9968719162576509, "top": 400, "right": 3240, "bottom": 2015, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725831f.jpg"} -{"rects": [{"solidity": 0.9968719954693324, "top": 895, "right": 3960, "bottom": 3265, "left": 2345}, {"solidity": 0.9970454986283909, "top": 905, "right": 5720, "bottom": 3245, "left": 4165}, {"solidity": 0.9959010546607235, "top": 890, "right": 2095, "bottom": 3250, "left": 555}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719738f.jpg"} -{"rects": [{"solidity": 0.9968719971172325, "top": 910, "right": 1825, "bottom": 2720, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728178f.jpg"} -{"rects": [{"solidity": 0.9968720845527624, "top": 765, "right": 2075, "bottom": 3190, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724366f.jpg"} -{"rects": [{"solidity": 0.9968721566492506, "top": 650, "right": 3860, "bottom": 2480, "left": 1130}], "shape": {"h": 4430, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711636f.jpg"} -{"rects": [{"solidity": 0.9968721846489614, "top": 860, "right": 2010, "bottom": 3300, "left": 380}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728987f.jpg"} -{"rects": [{"solidity": 0.996872281035414, "top": 880, "right": 2030, "bottom": 3295, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728407f.jpg"} -{"rects": [{"solidity": 0.996872463506706, "top": 815, "right": 2030, "bottom": 3235, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722295f.jpg"} -{"rects": [{"solidity": 0.9968725642709064, "top": 435, "right": 3130, "bottom": 2045, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724838f.jpg"} -{"rects": [{"solidity": 0.9968725890881732, "top": 450, "right": 3165, "bottom": 2080, "left": 735}, {"solidity": 0.9972790721412713, "top": 2280, "right": 3155, "bottom": 3905, "left": 725}, {"solidity": 0.996167097881497, "top": 4095, "right": 3115, "bottom": 5720, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723735f.jpg"} -{"rects": [{"solidity": 0.9968727952878637, "top": 785, "right": 2015, "bottom": 3180, "left": 410}, {"solidity": 0.9977079078822318, "top": 785, "right": 3750, "bottom": 3180, "left": 2150}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718145f.jpg"} -{"rects": [{"solidity": 0.9968728383215972, "top": 465, "right": 3160, "bottom": 2100, "left": 730}, {"solidity": 0.9964789633249331, "top": 475, "right": 5065, "bottom": 2900, "left": 3435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702035f.jpg"} -{"rects": [{"solidity": 0.9968728676805862, "top": 295, "right": 3130, "bottom": 1930, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707878f.jpg"} -{"rects": [{"solidity": 0.9968729829486705, "top": 845, "right": 4040, "bottom": 3290, "left": 2395}, {"solidity": 0.9983943880037847, "top": 845, "right": 2070, "bottom": 3275, "left": 445}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710420f.jpg"} -{"rects": [{"solidity": 0.9968731809260856, "top": 835, "right": 3770, "bottom": 3260, "left": 2135}, {"solidity": 0.9967676468790907, "top": 855, "right": 5660, "bottom": 3270, "left": 4030}, {"solidity": 0.9986917903367345, "top": 830, "right": 1895, "bottom": 3245, "left": 285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713794f.jpg"} -{"rects": [{"solidity": 0.9968733081104978, "top": 435, "right": 3230, "bottom": 2060, "left": 810}, {"solidity": 0.9960216998191682, "top": 2315, "right": 3050, "bottom": 3740, "left": 1235}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727328f.jpg"} -{"rects": [{"solidity": 0.9968734993049413, "top": 515, "right": 3360, "bottom": 2340, "left": 635}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706407f.jpg"} -{"rects": [{"solidity": 0.9968736042876284, "top": 1010, "right": 3350, "bottom": 5070, "left": 370}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722603f.jpg"} -{"rects": [{"solidity": 0.9968736172700349, "top": 820, "right": 3840, "bottom": 3235, "left": 2225}, {"solidity": 0.9979392915950919, "top": 820, "right": 2045, "bottom": 3235, "left": 435}, {"solidity": 0.9969843028265277, "top": 820, "right": 5650, "bottom": 3235, "left": 4035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713537f.jpg"} -{"rects": [{"solidity": 0.9968736422231442, "top": 425, "right": 3195, "bottom": 2050, "left": 800}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710306f.jpg"} -{"rects": [{"solidity": 0.996873827685382, "top": 585, "right": 2490, "bottom": 3005, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701462f.jpg"} -{"rects": [{"solidity": 0.9968738453629777, "top": 480, "right": 3115, "bottom": 2105, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701437f.jpg"} -{"rects": [{"solidity": 0.9968739690663865, "top": 760, "right": 3840, "bottom": 3185, "left": 2200}, {"solidity": 0.9973323928308058, "top": 795, "right": 5735, "bottom": 3215, "left": 4105}, {"solidity": 0.9978557290521223, "top": 755, "right": 1950, "bottom": 3160, "left": 330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722338f.jpg"} -{"rects": [{"solidity": 0.9968741782017261, "top": 915, "right": 2345, "bottom": 3145, "left": 430}], "shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465666.jpg"} -{"rects": [{"solidity": 0.9968741902047162, "top": 655, "right": 2050, "bottom": 3085, "left": 440}, {"solidity": 0.9528511919570806, "top": 2105, "right": 3940, "bottom": 3310, "left": 2290}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705445f.jpg"} -{"rects": [{"solidity": 0.9968742904349422, "top": 650, "right": 2650, "bottom": 2075, "left": 815}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705656f.jpg"} -{"rects": [{"solidity": 0.9968743737434466, "top": 2260, "right": 3040, "bottom": 3875, "left": 625}, {"solidity": 0.9983329017221287, "top": 390, "right": 3045, "bottom": 2000, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729907f.jpg"} -{"rects": [{"solidity": 0.9968743875489116, "top": 770, "right": 3780, "bottom": 3135, "left": 2205}, {"solidity": 0.9962089864876466, "top": 780, "right": 2040, "bottom": 3135, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734582f.jpg"} -{"rects": [{"solidity": 0.9968743920627715, "top": 2240, "right": 3065, "bottom": 3855, "left": 660}, {"solidity": 0.9935067302624819, "top": 385, "right": 3055, "bottom": 1985, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722880f.jpg"} -{"rects": [{"solidity": 0.9968744540001164, "top": 680, "right": 5745, "bottom": 3085, "left": 4125}, {"solidity": 0.9981023129075162, "top": 705, "right": 2015, "bottom": 3110, "left": 400}, {"solidity": 0.9944309186543069, "top": 690, "right": 3905, "bottom": 3105, "left": 2280}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733246f.jpg"} -{"rects": [{"solidity": 0.9968745213313007, "top": 450, "right": 2495, "bottom": 1965, "left": 205}, {"solidity": 0.9955044385112161, "top": 2110, "right": 2325, "bottom": 3340, "left": 505}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715764f.jpg"} -{"rects": [{"solidity": 0.9968746010714395, "top": 700, "right": 2320, "bottom": 3540, "left": 305}, {"solidity": 0.9963898340282105, "top": 880, "right": 5830, "bottom": 3320, "left": 4215}, {"solidity": 0.9954059574358413, "top": 880, "right": 4060, "bottom": 3305, "left": 2435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728761f.jpg"} -{"rects": [{"solidity": 0.9968747339266665, "top": 675, "right": 2635, "bottom": 2080, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726734f.jpg"} -{"rects": [{"solidity": 0.996875010088423, "top": 2170, "right": 3220, "bottom": 3800, "left": 820}, {"solidity": 0.9952119526533625, "top": 335, "right": 3215, "bottom": 1930, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709655f.jpg"} -{"rects": [{"solidity": 0.9968753688572964, "top": 405, "right": 3125, "bottom": 2000, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729723f.jpg"} -{"rects": [{"solidity": 0.9968754373574011, "top": 440, "right": 3165, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711079f.jpg"} -{"rects": [{"solidity": 0.9968755406944226, "top": 470, "right": 5055, "bottom": 3625, "left": 1085}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718952f.jpg"} -{"rects": [{"solidity": 0.9968755761262966, "top": 495, "right": 2420, "bottom": 2905, "left": 800}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700283f.jpg"} -{"rects": [{"solidity": 0.9968757011680136, "top": 490, "right": 3275, "bottom": 2480, "left": 260}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/716718f.jpg"} -{"rects": [{"solidity": 0.9968758239516847, "top": 710, "right": 2710, "bottom": 2120, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704220f.jpg"} -{"rects": [{"solidity": 0.9968759249964609, "top": 865, "right": 2080, "bottom": 3285, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729449f.jpg"} -{"rects": [{"solidity": 0.9968760154558411, "top": 780, "right": 5670, "bottom": 3200, "left": 4050}, {"solidity": 0.9952440873745685, "top": 790, "right": 1965, "bottom": 3210, "left": 350}, {"solidity": 0.9891676579173794, "top": 795, "right": 3795, "bottom": 3165, "left": 2225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732381f.jpg"} -{"rects": [{"solidity": 0.9968760351232826, "top": 1565, "right": 3590, "bottom": 3570, "left": 410}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733026f.jpg"} -{"rects": [{"solidity": 0.9968760481050261, "top": 510, "right": 3185, "bottom": 2140, "left": 755}, {"solidity": 0.9953022607469598, "top": 2495, "right": 3175, "bottom": 4125, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727515f.jpg"} -{"rects": [{"solidity": 0.9968760591191076, "top": 2255, "right": 2605, "bottom": 3660, "left": 780}, {"solidity": 0.9967222781886533, "top": 640, "right": 2605, "bottom": 2045, "left": 780}, {"solidity": 0.9951553642127976, "top": 635, "right": 4845, "bottom": 2005, "left": 3015}, {"solidity": 0.9958462764652988, "top": 2230, "right": 4860, "bottom": 3585, "left": 3035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725726f.jpg"} -{"rects": [{"solidity": 0.996876088269052, "top": 925, "right": 3385, "bottom": 2950, "left": 360}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710292f.jpg"} -{"rects": [{"solidity": 0.9968762049157294, "top": 785, "right": 3915, "bottom": 3195, "left": 2315}, {"solidity": 0.9936944984498975, "top": 800, "right": 2040, "bottom": 3195, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722588f.jpg"} -{"rects": [{"solidity": 0.9968762306032765, "top": 645, "right": 3285, "bottom": 2575, "left": 565}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712343f.jpg"} -{"rects": [{"solidity": 0.9968764907657709, "top": 1135, "right": 3515, "bottom": 5140, "left": 475}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708501f.jpg"} -{"rects": [{"solidity": 0.9968765613164214, "top": 325, "right": 2660, "bottom": 2745, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700268f.jpg"} -{"rects": [{"solidity": 0.996876772750161, "top": 2255, "right": 3015, "bottom": 3895, "left": 595}, {"solidity": 0.9972032318210068, "top": 390, "right": 3015, "bottom": 2025, "left": 600}, {"solidity": 0.9977352208643584, "top": 4125, "right": 3005, "bottom": 5740, "left": 590}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709284f.jpg"} -{"rects": [{"solidity": 0.9968768249607031, "top": 340, "right": 3540, "bottom": 2155, "left": 840}, {"solidity": 0.9977043063148514, "top": 2435, "right": 3520, "bottom": 4255, "left": 865}, {"solidity": 0.9962362960572207, "top": 4530, "right": 3505, "bottom": 6355, "left": 855}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710257f.jpg"} -{"rects": [{"solidity": 0.9968769459213489, "top": 2300, "right": 3015, "bottom": 3930, "left": 585}, {"solidity": 0.9960510210655157, "top": 4135, "right": 3020, "bottom": 5780, "left": 595}, {"solidity": 0.9945225666991617, "top": 435, "right": 3015, "bottom": 2045, "left": 605}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710814f.jpg"} -{"rects": [{"solidity": 0.9968771268264249, "top": 4030, "right": 3105, "bottom": 5635, "left": 695}, {"solidity": 0.9960076194452417, "top": 2215, "right": 3100, "bottom": 3820, "left": 695}, {"solidity": 0.9956448021303739, "top": 385, "right": 3100, "bottom": 1990, "left": 695}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728452f.jpg"} -{"rects": [{"solidity": 0.996877251209221, "top": 800, "right": 3860, "bottom": 3215, "left": 2240}, {"solidity": 0.9954912374734038, "top": 795, "right": 2050, "bottom": 3215, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720099f.jpg"} -{"rects": [{"solidity": 0.9968775014929545, "top": 430, "right": 3060, "bottom": 2075, "left": 630}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714470f.jpg"} -{"rects": [{"solidity": 0.9968775926271312, "top": 400, "right": 3225, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706113f.jpg"} -{"rects": [{"solidity": 0.996877888824935, "top": 510, "right": 2845, "bottom": 2310, "left": 1640}, {"solidity": 0.9953733341092941, "top": 515, "right": 1490, "bottom": 2315, "left": 285}], "shape": {"h": 2845, "w": 4445}, "file": "/usr/local/google/home/danvk/milstein/732475f.jpg"} -{"rects": [{"solidity": 0.9968779309138888, "top": 830, "right": 3860, "bottom": 3255, "left": 2215}, {"solidity": 0.9959014958903587, "top": 810, "right": 2015, "bottom": 3245, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732549f.jpg"} -{"rects": [{"solidity": 0.9968785674679539, "top": 310, "right": 3110, "bottom": 1930, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734028f.jpg"} -{"rects": [{"solidity": 0.9968785716343799, "top": 720, "right": 2005, "bottom": 3150, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706784f.jpg"} -{"rects": [{"solidity": 0.9968789735290717, "top": 2080, "right": 5255, "bottom": 3510, "left": 3425}, {"solidity": 0.9958597514888045, "top": 2075, "right": 2670, "bottom": 3505, "left": 830}, {"solidity": 0.9959764181437489, "top": 610, "right": 5255, "bottom": 2035, "left": 3420}, {"solidity": 0.9943499407777022, "top": 605, "right": 2620, "bottom": 2025, "left": 835}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706032f.jpg"} -{"rects": [{"solidity": 0.9968791006135405, "top": 790, "right": 2035, "bottom": 3215, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727334f.jpg"} -{"rects": [{"solidity": 0.9968791015515229, "top": 435, "right": 3175, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713565f.jpg"} -{"rects": [{"solidity": 0.9968791369022876, "top": 950, "right": 3885, "bottom": 3375, "left": 2250}, {"solidity": 0.998203302039495, "top": 950, "right": 2025, "bottom": 3365, "left": 415}, {"solidity": 0.9979475588290693, "top": 975, "right": 5725, "bottom": 3370, "left": 4105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726669f.jpg"} -{"rects": [{"solidity": 0.9968791572564428, "top": 395, "right": 5080, "bottom": 3640, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708207f.jpg"} -{"rects": [{"solidity": 0.9968792449108788, "top": 885, "right": 3905, "bottom": 3320, "left": 2275}, {"solidity": 0.9962830834191817, "top": 890, "right": 2050, "bottom": 3325, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722071f.jpg"} -{"rects": [{"solidity": 0.9968792933623621, "top": 225, "right": 3170, "bottom": 1860, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702517f.jpg"} -{"rects": [{"solidity": 0.9968793009634158, "top": 400, "right": 3075, "bottom": 2035, "left": 660}, {"solidity": 0.9970260031606762, "top": 2260, "right": 3070, "bottom": 3885, "left": 655}, {"solidity": 0.9968470580626384, "top": 4130, "right": 3040, "bottom": 5750, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707968f.jpg"} -{"rects": [{"solidity": 0.9968794564214412, "top": 330, "right": 2840, "bottom": 1510, "left": 920}, {"solidity": 0.995611342292562, "top": 1725, "right": 2815, "bottom": 2930, "left": 965}, {"solidity": 0.9943162663606953, "top": 4520, "right": 2815, "bottom": 5650, "left": 905}, {"solidity": 0.9946389669434534, "top": 3170, "right": 2820, "bottom": 4265, "left": 975}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720597f.jpg"} -{"rects": [{"solidity": 0.9968795361812728, "top": 285, "right": 5210, "bottom": 3560, "left": 1145}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728076f.jpg"} -{"rects": [{"solidity": 0.9968795900172537, "top": 2205, "right": 3145, "bottom": 3835, "left": 730}, {"solidity": 0.9952394081426339, "top": 420, "right": 3125, "bottom": 1895, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734607f.jpg"} -{"rects": [{"solidity": 0.9968800447534564, "top": 435, "right": 3470, "bottom": 2070, "left": 1050}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704565f.jpg"} -{"rects": [{"solidity": 0.9968800587732047, "top": 450, "right": 3275, "bottom": 2085, "left": 850}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702037f.jpg"} -{"rects": [{"solidity": 0.9968801703241031, "top": 2300, "right": 3175, "bottom": 3915, "left": 735}, {"solidity": 0.9968735709722092, "top": 4145, "right": 3175, "bottom": 5750, "left": 755}, {"solidity": 0.9977653740633329, "top": 435, "right": 3165, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733966f.jpg"} -{"rects": [{"solidity": 0.9968802159399124, "top": 720, "right": 3825, "bottom": 3125, "left": 2215}, {"solidity": 0.9962585557304982, "top": 725, "right": 1990, "bottom": 3130, "left": 385}, {"solidity": 0.9952105289198951, "top": 725, "right": 5660, "bottom": 3125, "left": 4060}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733350f.jpg"} -{"rects": [{"solidity": 0.9968802511221135, "top": 370, "right": 3220, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725393f.jpg"} -{"rects": [{"solidity": 0.9968802518979273, "top": 380, "right": 3100, "bottom": 1995, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728632f.jpg"} -{"rects": [{"solidity": 0.996880276960992, "top": 825, "right": 3910, "bottom": 3230, "left": 2290}, {"solidity": 0.996595930782838, "top": 840, "right": 5795, "bottom": 3245, "left": 4175}, {"solidity": 0.9964559161701683, "top": 820, "right": 2030, "bottom": 3230, "left": 425}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731716f.jpg"} -{"rects": [{"solidity": 0.9968802811923687, "top": 445, "right": 3200, "bottom": 2070, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706697f.jpg"} -{"rects": [{"solidity": 0.9968805194623388, "top": 690, "right": 3440, "bottom": 2645, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702471f.jpg"} -{"rects": [{"solidity": 0.9968805347288724, "top": 385, "right": 3180, "bottom": 2000, "left": 740}, {"solidity": 0.9949454000244525, "top": 4040, "right": 3165, "bottom": 5675, "left": 740}, {"solidity": 0.9971914106939704, "top": 2215, "right": 3165, "bottom": 3835, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705105f.jpg"} -{"rects": [{"solidity": 0.9968806152519226, "top": 570, "right": 2715, "bottom": 3575, "left": 675}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707712f.jpg"} -{"rects": [{"solidity": 0.996880681212724, "top": 425, "right": 3225, "bottom": 2045, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727452f.jpg"} -{"rects": [{"solidity": 0.9968806991336036, "top": 920, "right": 5900, "bottom": 3330, "left": 2845}, {"solidity": 0.9971117492717394, "top": 670, "right": 2655, "bottom": 3710, "left": 635}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718675f.jpg"} -{"rects": [{"solidity": 0.9968808883230056, "top": 785, "right": 2090, "bottom": 3215, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720041f.jpg"} -{"rects": [{"solidity": 0.996880912533849, "top": 715, "right": 3895, "bottom": 3135, "left": 2270}, {"solidity": 0.9974370079249137, "top": 725, "right": 5730, "bottom": 3140, "left": 4115}, {"solidity": 0.9994040039211982, "top": 715, "right": 2030, "bottom": 3120, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731167f.jpg"} -{"rects": [{"solidity": 0.996880991778951, "top": 810, "right": 3805, "bottom": 3200, "left": 2200}, {"solidity": 0.9951961996009048, "top": 815, "right": 1960, "bottom": 3200, "left": 375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719948f.jpg"} -{"rects": [{"solidity": 0.9968810213152473, "top": 445, "right": 3180, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705761f.jpg"} -{"rects": [{"solidity": 0.9968810476067604, "top": 410, "right": 3205, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705869f.jpg"} -{"rects": [{"solidity": 0.9968810860872931, "top": 1130, "right": 3425, "bottom": 5045, "left": 255}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709446f.jpg"} -{"rects": [{"solidity": 0.9968813323812649, "top": 745, "right": 5970, "bottom": 2780, "left": 2710}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704861f.jpg"} -{"rects": [{"solidity": 0.9968815494151048, "top": 415, "right": 3220, "bottom": 3690, "left": 595}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714955f.jpg"} -{"rects": [{"solidity": 0.9968817383735958, "top": 815, "right": 2115, "bottom": 3215, "left": 510}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713181f.jpg"} -{"rects": [{"solidity": 0.9968817407511192, "top": 825, "right": 1925, "bottom": 3210, "left": 300}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707170f.jpg"} -{"rects": [{"solidity": 0.9968818443205762, "top": 575, "right": 2620, "bottom": 3630, "left": 615}, {"solidity": 0.9934181060502795, "top": 850, "right": 4365, "bottom": 3270, "left": 2730}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714695f.jpg"} -{"rects": [{"solidity": 0.9968818858354467, "top": 695, "right": 2070, "bottom": 3115, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703854f.jpg"} -{"rects": [{"solidity": 0.9968819560900501, "top": 335, "right": 3470, "bottom": 2365, "left": 570}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/717852f.jpg"} -{"rects": [{"solidity": 0.9968819952690152, "top": 835, "right": 2035, "bottom": 3275, "left": 405}, {"solidity": 0.9958995160545393, "top": 935, "right": 3665, "bottom": 3125, "left": 2215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710748f.jpg"} -{"rects": [{"solidity": 0.9968820012573256, "top": 1045, "right": 4575, "bottom": 3025, "left": 1555}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722066f.jpg"} -{"rects": [{"solidity": 0.9968820843474855, "top": 790, "right": 5185, "bottom": 3200, "left": 3550}, {"solidity": 0.996857995549095, "top": 360, "right": 3015, "bottom": 1995, "left": 610}, {"solidity": 0.9977548300270456, "top": 2055, "right": 3045, "bottom": 3675, "left": 640}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720236f.jpg"} -{"rects": [{"solidity": 0.9968824418098482, "top": 360, "right": 2800, "bottom": 2795, "left": 1180}, {"solidity": 0.9962166754837365, "top": 3070, "right": 3200, "bottom": 4700, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727918f.jpg"} -{"rects": [{"solidity": 0.9968824470865955, "top": 785, "right": 2080, "bottom": 3220, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703660f.jpg"} -{"rects": [{"solidity": 0.9968826754689185, "top": 3220, "right": 3115, "bottom": 5105, "left": 450}, {"solidity": 0.997118914441729, "top": 720, "right": 3125, "bottom": 2575, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713729f.jpg"} -{"rects": [{"solidity": 0.9968832160983717, "top": 635, "right": 2480, "bottom": 2120, "left": 390}, {"solidity": 0.995052501167821, "top": 2470, "right": 2490, "bottom": 3960, "left": 395}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716072f.jpg"} -{"rects": [{"solidity": 0.9968832747600218, "top": 785, "right": 3840, "bottom": 3200, "left": 2225}, {"solidity": 0.9979641892750234, "top": 790, "right": 5640, "bottom": 3195, "left": 4035}, {"solidity": 0.9966340403308681, "top": 780, "right": 2045, "bottom": 3195, "left": 490}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720948f.jpg"} -{"rects": [{"solidity": 0.9968833382627473, "top": 395, "right": 3060, "bottom": 2035, "left": 635}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705823f.jpg"} -{"rects": [{"solidity": 0.9968833414334661, "top": 475, "right": 5745, "bottom": 4130, "left": 1195}], "shape": {"h": 4430, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708853f.jpg"} -{"rects": [{"solidity": 0.9968836565096952, "top": 4025, "right": 3195, "bottom": 5670, "left": 770}, {"solidity": 0.9961811728612964, "top": 2230, "right": 3185, "bottom": 3860, "left": 760}, {"solidity": 0.9966624026804672, "top": 425, "right": 3180, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732182f.jpg"} -{"rects": [{"solidity": 0.9968836711469883, "top": 300, "right": 3965, "bottom": 2790, "left": 920}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509005.jpg"} -{"rects": [{"solidity": 0.9968840665521937, "top": 865, "right": 2695, "bottom": 2475, "left": 1635}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509577.jpg"} -{"rects": [{"solidity": 0.9968840695263913, "top": 800, "right": 3905, "bottom": 3245, "left": 2290}, {"solidity": 0.9957778457673789, "top": 810, "right": 2005, "bottom": 3245, "left": 390}, {"solidity": 0.9957899222879061, "top": 805, "right": 5740, "bottom": 3235, "left": 4130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732209f.jpg"} -{"rects": [{"solidity": 0.9968841591828645, "top": 480, "right": 5100, "bottom": 3780, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724767f.jpg"} -{"rects": [{"solidity": 0.9968842827384091, "top": 1080, "right": 3540, "bottom": 5035, "left": 330}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724467f.jpg"} -{"rects": [{"solidity": 0.9968844737020524, "top": 410, "right": 3215, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720073f.jpg"} -{"rects": [{"solidity": 0.9968845649322257, "top": 435, "right": 3110, "bottom": 2050, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729966f.jpg"} -{"rects": [{"solidity": 0.9968846647298157, "top": 2255, "right": 3165, "bottom": 3870, "left": 745}, {"solidity": 0.9960877001820351, "top": 385, "right": 3155, "bottom": 2000, "left": 730}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/728770f.jpg"} -{"rects": [{"solidity": 0.9968846856554386, "top": 460, "right": 5105, "bottom": 3600, "left": 1070}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703574f.jpg"} -{"rects": [{"solidity": 0.996884728863567, "top": 660, "right": 2640, "bottom": 3725, "left": 610}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715643f.jpg"} -{"rects": [{"solidity": 0.9968847751808659, "top": 840, "right": 2045, "bottom": 3255, "left": 410}, {"solidity": 0.9962840481334909, "top": 845, "right": 3865, "bottom": 3270, "left": 2235}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712604f.jpg"} -{"rects": [{"solidity": 0.9968848720776453, "top": 570, "right": 5375, "bottom": 2060, "left": 3435}, {"solidity": 0.9959301608555471, "top": 595, "right": 2935, "bottom": 2085, "left": 990}, {"solidity": 0.9940885889204736, "top": 2090, "right": 2855, "bottom": 3490, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731438f.jpg"} -{"rects": [{"solidity": 0.9968848862046346, "top": 425, "right": 3155, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720632f.jpg"} -{"rects": [{"solidity": 0.996884977301134, "top": 640, "right": 2025, "bottom": 3065, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725515f.jpg"} -{"rects": [{"solidity": 0.996885031689851, "top": 830, "right": 2305, "bottom": 3530, "left": 490}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708889f.jpg"} -{"rects": [{"solidity": 0.9968851379219068, "top": 555, "right": 2595, "bottom": 3565, "left": 550}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711808f.jpg"} -{"rects": [{"solidity": 0.9968851699834426, "top": 420, "right": 4765, "bottom": 2855, "left": 3120}, {"solidity": 0.9967702917907327, "top": 410, "right": 2655, "bottom": 2840, "left": 1020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702241f.jpg"} -{"rects": [{"solidity": 0.9968851972708395, "top": 2245, "right": 3250, "bottom": 3860, "left": 830}, {"solidity": 0.9955388021617615, "top": 425, "right": 3235, "bottom": 2015, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727494f.jpg"} -{"rects": [{"solidity": 0.996885462141026, "top": 875, "right": 3880, "bottom": 3290, "left": 2265}, {"solidity": 0.9984238583556674, "top": 880, "right": 1995, "bottom": 3280, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711504f.jpg"} -{"rects": [{"solidity": 0.9968854951628264, "top": 820, "right": 2045, "bottom": 3205, "left": 465}, {"solidity": 0.9977753319438916, "top": 815, "right": 3860, "bottom": 3205, "left": 2285}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720712f.jpg"} -{"rects": [{"solidity": 0.9968857919558263, "top": 260, "right": 5285, "bottom": 3520, "left": 1160}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702594f.jpg"} -{"rects": [{"solidity": 0.9968859879770264, "top": 700, "right": 2615, "bottom": 2120, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704261f.jpg"} -{"rects": [{"solidity": 0.9968863815377572, "top": 770, "right": 2040, "bottom": 3140, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714247f.jpg"} -{"rects": [{"solidity": 0.9968864649205342, "top": 1275, "right": 3810, "bottom": 5530, "left": 550}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711225f.jpg"} -{"rects": [{"solidity": 0.9968865437067643, "top": 835, "right": 3900, "bottom": 3250, "left": 2280}, {"solidity": 0.995855070858085, "top": 830, "right": 2050, "bottom": 3235, "left": 430}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706507f.jpg"} -{"rects": [{"solidity": 0.9968868466718599, "top": 970, "right": 3595, "bottom": 5080, "left": 285}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/723538f.jpg"} -{"rects": [{"solidity": 0.9968868690147703, "top": 400, "right": 3130, "bottom": 2015, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729402f.jpg"} -{"rects": [{"solidity": 0.9968868779460566, "top": 925, "right": 2035, "bottom": 3325, "left": 405}, {"solidity": 0.9985659733904766, "top": 945, "right": 3840, "bottom": 3345, "left": 2235}, {"solidity": 0.999838771769924, "top": 965, "right": 5705, "bottom": 3345, "left": 4100}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701146f.jpg"} -{"rects": [{"solidity": 0.9968869185383186, "top": 450, "right": 3340, "bottom": 2060, "left": 930}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726434f.jpg"} -{"rects": [{"solidity": 0.9968870646303148, "top": 775, "right": 2040, "bottom": 3200, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708401f.jpg"} -{"rects": [{"solidity": 0.9968871494395247, "top": 790, "right": 2050, "bottom": 3205, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700744f.jpg"} -{"rects": [{"solidity": 0.9968872821836307, "top": 440, "right": 3170, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734228f.jpg"} -{"rects": [{"solidity": 0.9968872942435402, "top": 805, "right": 3885, "bottom": 3260, "left": 2235}, {"solidity": 0.9968285437437846, "top": 790, "right": 2015, "bottom": 3225, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704620f.jpg"} -{"rects": [{"solidity": 0.9968872966465027, "top": 2220, "right": 3165, "bottom": 3830, "left": 760}, {"solidity": 0.9947353774125428, "top": 405, "right": 3180, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721560f.jpg"} -{"rects": [{"solidity": 0.9968873170214612, "top": 445, "right": 3095, "bottom": 2075, "left": 675}, {"solidity": 0.996217510947178, "top": 2290, "right": 3075, "bottom": 3910, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710286f.jpg"} -{"rects": [{"solidity": 0.996887353515469, "top": 895, "right": 5770, "bottom": 3320, "left": 4140}, {"solidity": 0.9969742571207634, "top": 885, "right": 3900, "bottom": 3305, "left": 2270}, {"solidity": 0.9971627099015634, "top": 880, "right": 2035, "bottom": 3295, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719905f.jpg"} -{"rects": [{"solidity": 0.9968873907035014, "top": 840, "right": 5725, "bottom": 3260, "left": 4110}, {"solidity": 0.9975508109284505, "top": 855, "right": 3860, "bottom": 3265, "left": 2250}, {"solidity": 0.9966164126803031, "top": 870, "right": 2005, "bottom": 3275, "left": 395}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730465f.jpg"} -{"rects": [{"solidity": 0.996887572338379, "top": 435, "right": 3190, "bottom": 2090, "left": 805}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/700804f.jpg"} -{"rects": [{"solidity": 0.9968877962308645, "top": 745, "right": 2115, "bottom": 2750, "left": 545}, {"solidity": 0.9955039324877542, "top": 745, "right": 3930, "bottom": 2740, "left": 2405}, {"solidity": 0.9954446702642091, "top": 790, "right": 5665, "bottom": 2765, "left": 4200}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710854f.jpg"} -{"rects": [{"solidity": 0.9968878117873317, "top": 775, "right": 2110, "bottom": 3180, "left": 490}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721984f.jpg"} -{"rects": [{"solidity": 0.99688795687187, "top": 980, "right": 1995, "bottom": 3415, "left": 360}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721603f.jpg"} -{"rects": [{"solidity": 0.9968881297050614, "top": 315, "right": 3180, "bottom": 1955, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704610f.jpg"} -{"rects": [{"solidity": 0.9968882293677696, "top": 2245, "right": 4940, "bottom": 3665, "left": 3150}, {"solidity": 0.9941817602167892, "top": 610, "right": 4935, "bottom": 2025, "left": 3130}, {"solidity": 0.9968242693760745, "top": 635, "right": 2755, "bottom": 2010, "left": 970}, {"solidity": 0.9953056723555116, "top": 2235, "right": 2730, "bottom": 3630, "left": 965}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726247f.jpg"} -{"rects": [{"solidity": 0.9968883115313737, "top": 760, "right": 2020, "bottom": 3135, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718077f.jpg"} -{"rects": [{"solidity": 0.9968883243232598, "top": 405, "right": 3075, "bottom": 1990, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729718f.jpg"} -{"rects": [{"solidity": 0.9968884680684341, "top": 420, "right": 3180, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734575f.jpg"} -{"rects": [{"solidity": 0.9968885506338019, "top": 810, "right": 2035, "bottom": 3240, "left": 410}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702045f.jpg"} -{"rects": [{"solidity": 0.9968886000019797, "top": 440, "right": 3210, "bottom": 2035, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703043f.jpg"} -{"rects": [{"solidity": 0.9968887179980134, "top": 4180, "right": 3035, "bottom": 5805, "left": 605}, {"solidity": 0.9973230572929858, "top": 2270, "right": 3045, "bottom": 3895, "left": 620}, {"solidity": 0.9980298420976387, "top": 310, "right": 3055, "bottom": 1930, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704067f.jpg"} -{"rects": [{"solidity": 0.996889149378796, "top": 425, "right": 3105, "bottom": 2045, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729516f.jpg"} -{"rects": [{"solidity": 0.99688929013012, "top": 420, "right": 3170, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712079f.jpg"} -{"rects": [{"solidity": 0.9968893196755361, "top": 400, "right": 3190, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702897f.jpg"} -{"rects": [{"solidity": 0.9968893873984324, "top": 935, "right": 1930, "bottom": 3335, "left": 320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713717f.jpg"} -{"rects": [{"solidity": 0.9968894160222248, "top": 390, "right": 3250, "bottom": 2020, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704631f.jpg"} -{"rects": [{"solidity": 0.9968894233894559, "top": 2080, "right": 3140, "bottom": 3685, "left": 720}, {"solidity": 0.9974002693185052, "top": 410, "right": 2910, "bottom": 1935, "left": 965}, {"solidity": 0.9603667368339739, "top": 3845, "right": 2880, "bottom": 5280, "left": 1040}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720497f.jpg"} -{"rects": [{"solidity": 0.9968895470632189, "top": 480, "right": 5125, "bottom": 3695, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716789f.jpg"} -{"rects": [{"solidity": 0.9968896031438511, "top": 565, "right": 2790, "bottom": 3550, "left": 800}, {"solidity": 0.9959945737082018, "top": 785, "right": 5180, "bottom": 3210, "left": 3550}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720133f.jpg"} -{"rects": [{"solidity": 0.9968896204040901, "top": 715, "right": 1990, "bottom": 3130, "left": 380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732548f.jpg"} -{"rects": [{"solidity": 0.9968898172005306, "top": 690, "right": 2630, "bottom": 2100, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725141f.jpg"} -{"rects": [{"solidity": 0.996890036942785, "top": 400, "right": 3110, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704135f.jpg"} -{"rects": [{"solidity": 0.9968901552671187, "top": 790, "right": 2120, "bottom": 3210, "left": 500}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709123f.jpg"} -{"rects": [{"solidity": 0.9968902109248242, "top": 805, "right": 2040, "bottom": 3220, "left": 400}, {"solidity": 0.9934132222024031, "top": 815, "right": 3895, "bottom": 3245, "left": 2250}, {"solidity": 0.9952241696270273, "top": 845, "right": 5735, "bottom": 3255, "left": 4115}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719970f.jpg"} -{"rects": [{"solidity": 0.9968903032680878, "top": 670, "right": 2710, "bottom": 2100, "left": 890}, {"solidity": 0.9963078657034731, "top": 2180, "right": 2715, "bottom": 3600, "left": 885}, {"solidity": 0.9972127774453865, "top": 660, "right": 5160, "bottom": 2080, "left": 3335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706158f.jpg"} -{"rects": [{"solidity": 0.9968903734801172, "top": 885, "right": 5970, "bottom": 3300, "left": 4360}, {"solidity": 0.9984501727275983, "top": 1230, "right": 4280, "bottom": 2835, "left": 1875}, {"solidity": 0.9977804832671286, "top": 830, "right": 1810, "bottom": 3235, "left": 205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730981f.jpg"} -{"rects": [{"solidity": 0.9968904077092243, "top": 2270, "right": 3100, "bottom": 3900, "left": 680}, {"solidity": 0.9972332270428705, "top": 425, "right": 3095, "bottom": 2050, "left": 685}, {"solidity": 0.9974484910064177, "top": 4125, "right": 3095, "bottom": 5740, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719520f.jpg"} -{"rects": [{"solidity": 0.9968904837309087, "top": 885, "right": 2025, "bottom": 3325, "left": 400}, {"solidity": 0.9978878069731216, "top": 900, "right": 3905, "bottom": 3325, "left": 2285}, {"solidity": 0.9961105154532957, "top": 900, "right": 5780, "bottom": 3325, "left": 4165}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728811f.jpg"} -{"rects": [{"solidity": 0.9968906015925556, "top": 415, "right": 3180, "bottom": 2030, "left": 760}, {"solidity": 0.9959002457909514, "top": 2185, "right": 3170, "bottom": 3805, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721737f.jpg"} -{"rects": [{"solidity": 0.9968907030547737, "top": 605, "right": 2745, "bottom": 2015, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705612f.jpg"} -{"rects": [{"solidity": 0.9968907235915747, "top": 2135, "right": 2650, "bottom": 3575, "left": 825}, {"solidity": 0.9949322621978434, "top": 735, "right": 5285, "bottom": 2160, "left": 3440}, {"solidity": 0.9951602162434259, "top": 740, "right": 2660, "bottom": 2090, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726184f.jpg"} -{"rects": [{"solidity": 0.9968907989490386, "top": 475, "right": 3125, "bottom": 2095, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707480f.jpg"} -{"rects": [{"solidity": 0.9968909446378332, "top": 970, "right": 4030, "bottom": 5580, "left": 310}], "shape": {"h": 6895, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708801f.jpg"} -{"rects": [{"solidity": 0.9968910551367296, "top": 1090, "right": 3950, "bottom": 5615, "left": 305}], "shape": {"h": 6915, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708848f.jpg"} -{"rects": [{"solidity": 0.9968911092725768, "top": 4065, "right": 3230, "bottom": 5700, "left": 795}, {"solidity": 0.9973013416552624, "top": 430, "right": 3225, "bottom": 2050, "left": 790}, {"solidity": 0.9985613636217671, "top": 2220, "right": 3225, "bottom": 3835, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705622f.jpg"} -{"rects": [{"solidity": 0.9968911616949927, "top": 2240, "right": 3110, "bottom": 3860, "left": 690}, {"solidity": 0.9989481236668929, "top": 390, "right": 3105, "bottom": 2000, "left": 700}, {"solidity": 0.9934394465467692, "top": 4090, "right": 3095, "bottom": 5720, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719719f.jpg"} -{"rects": [{"solidity": 0.9968913773570147, "top": 485, "right": 3590, "bottom": 2325, "left": 850}], "shape": {"h": 6895, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711274f.jpg"} -{"rects": [{"solidity": 0.996891409038434, "top": 585, "right": 5025, "bottom": 3780, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701070f.jpg"} -{"rects": [{"solidity": 0.9968914640243043, "top": 855, "right": 3950, "bottom": 3280, "left": 2325}, {"solidity": 0.9970246206230983, "top": 860, "right": 2080, "bottom": 3285, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710883f.jpg"} -{"rects": [{"solidity": 0.9968916095683814, "top": 390, "right": 3230, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705585f.jpg"} -{"rects": [{"solidity": 0.9968919310751507, "top": 410, "right": 3185, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730303f.jpg"} -{"rects": [{"solidity": 0.9968921692352799, "top": 920, "right": 2275, "bottom": 3645, "left": 465}], "shape": {"h": 4420, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711192f.jpg"} -{"rects": [{"solidity": 0.9968921890351082, "top": 480, "right": 2055, "bottom": 2930, "left": 495}], "shape": {"h": 4665, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509657.jpg"} -{"rects": [{"solidity": 0.9968922958534348, "top": 485, "right": 3145, "bottom": 2090, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712833f.jpg"} -{"rects": [{"solidity": 0.9968923333609288, "top": 2625, "right": 3205, "bottom": 4260, "left": 775}, {"solidity": 0.9964869775893398, "top": 4300, "right": 3205, "bottom": 5935, "left": 780}, {"solidity": 0.9978938622508623, "top": 150, "right": 2805, "bottom": 2550, "left": 1175}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733533f.jpg"} -{"rects": [{"solidity": 0.9968923749651284, "top": 4120, "right": 3260, "bottom": 5730, "left": 845}, {"solidity": 0.9967702586107153, "top": 2285, "right": 3260, "bottom": 3875, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727662f.jpg"} -{"rects": [{"solidity": 0.9968925430575214, "top": 365, "right": 3145, "bottom": 2000, "left": 710}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703235f.jpg"} -{"rects": [{"solidity": 0.9968925997626451, "top": 475, "right": 5140, "bottom": 3700, "left": 1060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734547f.jpg"} -{"rects": [{"solidity": 0.9968926745286523, "top": 365, "right": 3095, "bottom": 1980, "left": 675}, {"solidity": 0.9962158758858951, "top": 2220, "right": 3095, "bottom": 3835, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729546f.jpg"} -{"rects": [{"solidity": 0.9968928900308457, "top": 4090, "right": 3190, "bottom": 5705, "left": 765}, {"solidity": 0.9962598938853614, "top": 435, "right": 3195, "bottom": 2055, "left": 775}, {"solidity": 0.9977278023770683, "top": 2270, "right": 3190, "bottom": 3880, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710798f.jpg"} -{"rects": [{"solidity": 0.9968930322347905, "top": 470, "right": 3500, "bottom": 2900, "left": 290}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718985f.jpg"} -{"rects": [{"solidity": 0.9968930583043977, "top": 450, "right": 3330, "bottom": 2090, "left": 905}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704506f.jpg"} -{"rects": [{"solidity": 0.9968932138547256, "top": 830, "right": 5105, "bottom": 3255, "left": 3480}, {"solidity": 0.9956982269241519, "top": 1160, "right": 3280, "bottom": 2805, "left": 850}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718356f.jpg"} -{"rects": [{"solidity": 0.9968937497422035, "top": 530, "right": 3095, "bottom": 2170, "left": 655}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704569f.jpg"} -{"rects": [{"solidity": 0.9968937808089675, "top": 740, "right": 3885, "bottom": 3170, "left": 2265}, {"solidity": 0.9990062038943774, "top": 745, "right": 2015, "bottom": 3165, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724396f.jpg"} -{"rects": [{"solidity": 0.9968937849733197, "top": 2275, "right": 3100, "bottom": 3885, "left": 690}, {"solidity": 0.9964487357826691, "top": 405, "right": 3095, "bottom": 2010, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728503f.jpg"} -{"rects": [{"solidity": 0.99689419607195, "top": 855, "right": 2640, "bottom": 3870, "left": 215}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716293f.jpg"} -{"rects": [{"solidity": 0.9968942106546542, "top": 2150, "right": 3215, "bottom": 3775, "left": 800}, {"solidity": 0.9970535856722871, "top": 310, "right": 3205, "bottom": 1930, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710329f.jpg"} -{"rects": [{"solidity": 0.99689425100593, "top": 2215, "right": 3225, "bottom": 3840, "left": 795}, {"solidity": 0.9964988356745391, "top": 535, "right": 3200, "bottom": 2145, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733517f.jpg"} -{"rects": [{"solidity": 0.9968943797979406, "top": 810, "right": 2035, "bottom": 3225, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715383f.jpg"} -{"rects": [{"solidity": 0.9968944099378882, "top": 990, "right": 5785, "bottom": 3030, "left": 2550}, {"solidity": 0.9974271757459162, "top": 415, "right": 2500, "bottom": 3645, "left": 475}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733000f.jpg"} -{"rects": [{"solidity": 0.9968947889151099, "top": 3560, "right": 3715, "bottom": 5735, "left": 635}, {"solidity": 0.9940598936852717, "top": 715, "right": 3705, "bottom": 2885, "left": 645}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710276f.jpg"} -{"rects": [{"solidity": 0.9968948362026097, "top": 880, "right": 3240, "bottom": 2895, "left": 445}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703582f.jpg"} -{"rects": [{"solidity": 0.9968948729197992, "top": 1025, "right": 3930, "bottom": 2910, "left": 2360}, {"solidity": 0.9959575345737175, "top": 1030, "right": 2080, "bottom": 2885, "left": 500}, {"solidity": 0.995344965338411, "top": 1030, "right": 5675, "bottom": 2885, "left": 4235}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719572f.jpg"} -{"rects": [{"solidity": 0.9968950109155974, "top": 395, "right": 4965, "bottom": 3655, "left": 975}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722249f.jpg"} -{"rects": [{"solidity": 0.996895105073993, "top": 855, "right": 3890, "bottom": 3280, "left": 2255}, {"solidity": 0.9950808980883996, "top": 840, "right": 2005, "bottom": 3245, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715370f.jpg"} -{"rects": [{"solidity": 0.9968951886486327, "top": 1100, "right": 3830, "bottom": 2160, "left": 2210}, {"solidity": 0.9827167746224126, "top": 905, "right": 1855, "bottom": 2510, "left": 795}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509571.jpg"} -{"rects": [{"solidity": 0.9968953075626541, "top": 840, "right": 3850, "bottom": 3250, "left": 2235}, {"solidity": 0.9972870855406591, "top": 840, "right": 2040, "bottom": 3240, "left": 445}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732075f.jpg"} -{"rects": [{"solidity": 0.9968955078062232, "top": 455, "right": 3120, "bottom": 2080, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705670f.jpg"} -{"rects": [{"solidity": 0.9968956926929382, "top": 735, "right": 2425, "bottom": 3155, "left": 805}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704786f.jpg"} -{"rects": [{"solidity": 0.9968958079803706, "top": 760, "right": 2285, "bottom": 3490, "left": 415}, {"solidity": 0.9960924747742831, "top": 755, "right": 4370, "bottom": 3470, "left": 2485}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700621f.jpg"} -{"rects": [{"solidity": 0.9968958387049479, "top": 670, "right": 2735, "bottom": 2060, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726137f.jpg"} -{"rects": [{"solidity": 0.9968958609345698, "top": 830, "right": 2055, "bottom": 3250, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701476f.jpg"} -{"rects": [{"solidity": 0.9968960690039735, "top": 1060, "right": 3485, "bottom": 5055, "left": 250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731507f.jpg"} -{"rects": [{"solidity": 0.9968960708386363, "top": 815, "right": 1985, "bottom": 3180, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719641f.jpg"} -{"rects": [{"solidity": 0.9968961659816854, "top": 565, "right": 3275, "bottom": 2475, "left": 585}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714101f.jpg"} -{"rects": [{"solidity": 0.9968962662498522, "top": 825, "right": 2110, "bottom": 3260, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701568f.jpg"} -{"rects": [{"solidity": 0.9968963416865219, "top": 3265, "right": 3365, "bottom": 5340, "left": 520}, {"solidity": 0.998559270779333, "top": 730, "right": 3370, "bottom": 2785, "left": 535}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731922f.jpg"} -{"rects": [{"solidity": 0.9968965364205241, "top": 1390, "right": 2955, "bottom": 3030, "left": 525}, {"solidity": 0.9959166993802651, "top": 1410, "right": 5710, "bottom": 3035, "left": 3290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722820f.jpg"} -{"rects": [{"solidity": 0.9968967886364608, "top": 440, "right": 3135, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712756f.jpg"} -{"rects": [{"solidity": 0.9968969592233503, "top": 890, "right": 4495, "bottom": 3615, "left": 2680}, {"solidity": 0.9973087051823194, "top": 940, "right": 2395, "bottom": 3620, "left": 610}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711331f.jpg"} -{"rects": [{"solidity": 0.9968974826036248, "top": 440, "right": 3150, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/718378f.jpg"} -{"rects": [{"solidity": 0.9968979160970144, "top": 1040, "right": 3500, "bottom": 5085, "left": 230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717093f.jpg"} -{"rects": [{"solidity": 0.9968979570646107, "top": 395, "right": 3075, "bottom": 2025, "left": 675}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709351f.jpg"} -{"rects": [{"solidity": 0.9968979961507981, "top": 820, "right": 3715, "bottom": 3210, "left": 2085}, {"solidity": 0.9964185425891381, "top": 830, "right": 1895, "bottom": 3190, "left": 285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722567f.jpg"} -{"rects": [{"solidity": 0.9968982991282135, "top": 450, "right": 5690, "bottom": 4110, "left": 1145}], "shape": {"h": 4420, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/708389f.jpg"} -{"rects": [{"solidity": 0.9968983465907717, "top": 405, "right": 3085, "bottom": 3405, "left": 610}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714645f.jpg"} -{"rects": [{"solidity": 0.9968985863473454, "top": 445, "right": 3190, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719778f.jpg"} -{"rects": [{"solidity": 0.9968986250141045, "top": 460, "right": 3175, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733845f.jpg"} -{"rects": [{"solidity": 0.9968986646191831, "top": 400, "right": 2995, "bottom": 1800, "left": 1195}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726553f.jpg"} -{"rects": [{"solidity": 0.9968988949492605, "top": 395, "right": 3165, "bottom": 2020, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702990f.jpg"} -{"rects": [{"solidity": 0.9968989196236108, "top": 720, "right": 2035, "bottom": 3145, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717286f.jpg"} -{"rects": [{"solidity": 0.9968989292409367, "top": 790, "right": 3865, "bottom": 3225, "left": 2230}, {"solidity": 0.9971380331412565, "top": 785, "right": 2045, "bottom": 3210, "left": 420}, {"solidity": 0.9987270155586987, "top": 815, "right": 5670, "bottom": 3245, "left": 4060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706666f.jpg"} -{"rects": [{"solidity": 0.9968991025792634, "top": 380, "right": 3095, "bottom": 1980, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718607f.jpg"} -{"rects": [{"solidity": 0.9968991177500217, "top": 790, "right": 3635, "bottom": 3225, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721154f.jpg"} -{"rects": [{"solidity": 0.9968992797184559, "top": 435, "right": 3350, "bottom": 2065, "left": 935}, {"solidity": 0.9961095885116922, "top": 2295, "right": 3345, "bottom": 3925, "left": 920}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704768f.jpg"} -{"rects": [{"solidity": 0.9968993449866285, "top": 805, "right": 3930, "bottom": 3215, "left": 2305}, {"solidity": 0.9937583825052853, "top": 820, "right": 2065, "bottom": 3230, "left": 450}, {"solidity": 0.9940523574030002, "top": 1015, "right": 5685, "bottom": 3010, "left": 4140}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711916f.jpg"} -{"rects": [{"solidity": 0.9968998646690149, "top": 790, "right": 3885, "bottom": 3225, "left": 2260}, {"solidity": 0.9987730942172276, "top": 785, "right": 2060, "bottom": 3205, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731863f.jpg"} -{"rects": [{"solidity": 0.9968998751271629, "top": 695, "right": 2690, "bottom": 2130, "left": 870}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706901f.jpg"} -{"rects": [{"solidity": 0.9968999043417336, "top": 1120, "right": 3035, "bottom": 2755, "left": 615}, {"solidity": 0.9974960815929813, "top": 1125, "right": 5470, "bottom": 2755, "left": 3060}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713781f.jpg"} -{"rects": [{"solidity": 0.9968999961728348, "top": 770, "right": 2040, "bottom": 3205, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719916f.jpg"} -{"rects": [{"solidity": 0.9969001666744552, "top": 405, "right": 2805, "bottom": 3610, "left": 780}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732996f.jpg"} -{"rects": [{"solidity": 0.9969004527099039, "top": 2245, "right": 3195, "bottom": 3855, "left": 785}, {"solidity": 0.9978131037255691, "top": 420, "right": 3195, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730317f.jpg"} -{"rects": [{"solidity": 0.9969005128371186, "top": 1045, "right": 3405, "bottom": 5020, "left": 270}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714668f.jpg"} -{"rects": [{"solidity": 0.9969005147874076, "top": 430, "right": 5010, "bottom": 3660, "left": 950}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731913f.jpg"} -{"rects": [{"solidity": 0.9969006862618154, "top": 1475, "right": 3540, "bottom": 5405, "left": 445}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708533f.jpg"} -{"rects": [{"solidity": 0.996900725142577, "top": 940, "right": 2275, "bottom": 3640, "left": 465}], "shape": {"h": 4420, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/711190f.jpg"} -{"rects": [{"solidity": 0.9969007559686437, "top": 400, "right": 3230, "bottom": 2005, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705889f.jpg"} -{"rects": [{"solidity": 0.9969007703343015, "top": 2050, "right": 3070, "bottom": 3680, "left": 640}, {"solidity": 0.9992213667266193, "top": 340, "right": 3045, "bottom": 1955, "left": 625}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723200f.jpg"} -{"rects": [{"solidity": 0.9969007738519499, "top": 475, "right": 3360, "bottom": 2110, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706879f.jpg"} -{"rects": [{"solidity": 0.99690080322188, "top": 465, "right": 3345, "bottom": 2100, "left": 930}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704361f.jpg"} -{"rects": [{"solidity": 0.9969008730388841, "top": 455, "right": 3155, "bottom": 2070, "left": 730}, {"solidity": 0.9958680294239033, "top": 2220, "right": 2845, "bottom": 3650, "left": 1010}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707064f.jpg"} -{"rects": [{"solidity": 0.9969012307742071, "top": 715, "right": 3920, "bottom": 3130, "left": 2300}, {"solidity": 0.9971588046174301, "top": 735, "right": 5760, "bottom": 3145, "left": 4145}, {"solidity": 0.998249907932773, "top": 715, "right": 2055, "bottom": 3120, "left": 450}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731632f.jpg"} -{"rects": [{"solidity": 0.9969012491061295, "top": 610, "right": 2545, "bottom": 2150, "left": 240}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716347f.jpg"} -{"rects": [{"solidity": 0.9969012660255608, "top": 485, "right": 2940, "bottom": 1885, "left": 1140}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/726759f.jpg"} -{"rects": [{"solidity": 0.9969014057116558, "top": 450, "right": 3135, "bottom": 2055, "left": 710}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/729710f.jpg"} -{"rects": [{"solidity": 0.996901487221849, "top": 670, "right": 2050, "bottom": 3095, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705362f.jpg"} -{"rects": [{"solidity": 0.9969015787967852, "top": 4165, "right": 3150, "bottom": 5770, "left": 735}, {"solidity": 0.997497600104131, "top": 2330, "right": 3150, "bottom": 3935, "left": 740}, {"solidity": 0.9969021858622851, "top": 465, "right": 3150, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730649f.jpg"} -{"rects": [{"solidity": 0.9969016068113437, "top": 2295, "right": 3215, "bottom": 3920, "left": 790}, {"solidity": 0.9959665367173716, "top": 465, "right": 3205, "bottom": 2085, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732140f.jpg"} -{"rects": [{"solidity": 0.9969017524136516, "top": 465, "right": 5135, "bottom": 3710, "left": 1030}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734538f.jpg"} -{"rects": [{"solidity": 0.9969017924167994, "top": 2385, "right": 3120, "bottom": 3980, "left": 725}, {"solidity": 0.996660531595616, "top": 560, "right": 3120, "bottom": 2150, "left": 725}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711177f.jpg"} -{"rects": [{"solidity": 0.9969018112488084, "top": 770, "right": 2010, "bottom": 3175, "left": 405}, {"solidity": 0.9969586214176387, "top": 780, "right": 3880, "bottom": 3175, "left": 2285}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724167f.jpg"} -{"rects": [{"solidity": 0.9969018270595884, "top": 515, "right": 3195, "bottom": 2100, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701964f.jpg"} -{"rects": [{"solidity": 0.9969019108605414, "top": 430, "right": 3115, "bottom": 2065, "left": 685}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707346f.jpg"} -{"rects": [{"solidity": 0.9969020609143886, "top": 400, "right": 3155, "bottom": 2025, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/701429f.jpg"} -{"rects": [{"solidity": 0.9969022792225888, "top": 800, "right": 2160, "bottom": 3215, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707563f.jpg"} -{"rects": [{"solidity": 0.9969023867014266, "top": 2245, "right": 3090, "bottom": 3875, "left": 670}, {"solidity": 0.9958251567971065, "top": 4065, "right": 3075, "bottom": 5730, "left": 635}, {"solidity": 0.997006766890731, "top": 415, "right": 3100, "bottom": 2045, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707497f.jpg"} -{"rects": [{"solidity": 0.9969023881588066, "top": 415, "right": 3090, "bottom": 2040, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701902f.jpg"} -{"rects": [{"solidity": 0.9969024147598806, "top": 395, "right": 3155, "bottom": 2010, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729821f.jpg"} -{"rects": [{"solidity": 0.9969024701985028, "top": 460, "right": 3510, "bottom": 2065, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707282f.jpg"} -{"rects": [{"solidity": 0.9969024891767782, "top": 775, "right": 3850, "bottom": 3170, "left": 2245}, {"solidity": 0.9955124149928831, "top": 775, "right": 2030, "bottom": 3170, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721624f.jpg"} -{"rects": [{"solidity": 0.9969027734642564, "top": 1375, "right": 3210, "bottom": 4725, "left": 560}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709148f.jpg"} -{"rects": [{"solidity": 0.9969029473085974, "top": 840, "right": 3900, "bottom": 3270, "left": 2265}, {"solidity": 0.9969115468297558, "top": 835, "right": 2010, "bottom": 3255, "left": 390}, {"solidity": 0.9940393539480727, "top": 950, "right": 5575, "bottom": 3180, "left": 4160}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708698f.jpg"} -{"rects": [{"solidity": 0.9969031003935445, "top": 490, "right": 3475, "bottom": 2130, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701097f.jpg"} -{"rects": [{"solidity": 0.9969031135226444, "top": 380, "right": 3090, "bottom": 2005, "left": 660}, {"solidity": 0.9979775765000177, "top": 4105, "right": 3055, "bottom": 5730, "left": 645}, {"solidity": 0.9970958529682897, "top": 2215, "right": 3070, "bottom": 3835, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701286f.jpg"} -{"rects": [{"solidity": 0.9969038486157406, "top": 395, "right": 5085, "bottom": 3645, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713002f.jpg"} -{"rects": [{"solidity": 0.9969039280051977, "top": 315, "right": 5225, "bottom": 3585, "left": 1120}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701970f.jpg"} -{"rects": [{"solidity": 0.9969039862492965, "top": 550, "right": 4905, "bottom": 3785, "left": 845}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725234f.jpg"} -{"rects": [{"solidity": 0.9969040395823564, "top": 2110, "right": 5260, "bottom": 3560, "left": 3435}, {"solidity": 0.9977443645573558, "top": 635, "right": 5270, "bottom": 2055, "left": 3440}, {"solidity": 0.9961918578293589, "top": 2115, "right": 2510, "bottom": 3485, "left": 680}, {"solidity": 0.9955170352659892, "top": 645, "right": 2320, "bottom": 2055, "left": 850}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706958f.jpg"} -{"rects": [{"solidity": 0.9969042439532998, "top": 760, "right": 2070, "bottom": 3190, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723031f.jpg"} -{"rects": [{"solidity": 0.9969043173368005, "top": 790, "right": 2020, "bottom": 3200, "left": 415}, {"solidity": 0.9951914392974132, "top": 1040, "right": 3600, "bottom": 3160, "left": 2370}, {"solidity": 0.9954133274452636, "top": 1050, "right": 5235, "bottom": 3135, "left": 4025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712738f.jpg"} -{"rects": [{"solidity": 0.9969043415125163, "top": 2155, "right": 3145, "bottom": 3745, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731549f.jpg"} -{"rects": [{"solidity": 0.99690448258525, "top": 3375, "right": 3640, "bottom": 5390, "left": 450}, {"solidity": 0.9975490147671366, "top": 1035, "right": 3660, "bottom": 3040, "left": 475}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710002f.jpg"} -{"rects": [{"solidity": 0.9969045843783185, "top": 2285, "right": 3155, "bottom": 3905, "left": 745}, {"solidity": 0.9961726336821211, "top": 450, "right": 3140, "bottom": 2065, "left": 735}, {"solidity": 0.9958333057976857, "top": 4145, "right": 3140, "bottom": 5745, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710061f.jpg"} -{"rects": [{"solidity": 0.9969046420563374, "top": 440, "right": 3105, "bottom": 2045, "left": 695}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730595f.jpg"} -{"rects": [{"solidity": 0.9969046536597634, "top": 775, "right": 3945, "bottom": 3190, "left": 2320}, {"solidity": 0.9958945339941608, "top": 785, "right": 2090, "bottom": 3200, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720170f.jpg"} -{"rects": [{"solidity": 0.9969047897728012, "top": 450, "right": 3125, "bottom": 2060, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704385f.jpg"} -{"rects": [{"solidity": 0.9969047933788372, "top": 2265, "right": 3130, "bottom": 3880, "left": 710}, {"solidity": 0.998993696853604, "top": 425, "right": 3130, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721128f.jpg"} -{"rects": [{"solidity": 0.9969048973080156, "top": 600, "right": 3300, "bottom": 2475, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722420f.jpg"} -{"rects": [{"solidity": 0.9969051661411593, "top": 750, "right": 2655, "bottom": 2185, "left": 845}, {"solidity": 0.9946742979094921, "top": 2220, "right": 5245, "bottom": 3655, "left": 3430}, {"solidity": 0.9954159881389301, "top": 760, "right": 5255, "bottom": 2180, "left": 3425}, {"solidity": 0.9956316178281212, "top": 2235, "right": 2645, "bottom": 3660, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725094f.jpg"} -{"rects": [{"solidity": 0.9969052327961164, "top": 285, "right": 2945, "bottom": 1910, "left": 915}, {"solidity": 0.9966106930131022, "top": 2110, "right": 2905, "bottom": 3655, "left": 940}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733669f.jpg"} -{"rects": [{"solidity": 0.996905392989716, "top": 1125, "right": 3490, "bottom": 5010, "left": 405}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721333f.jpg"} -{"rects": [{"solidity": 0.9969054866076816, "top": 355, "right": 5125, "bottom": 3630, "left": 1110}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722312f.jpg"} -{"rects": [{"solidity": 0.996905563210083, "top": 745, "right": 1965, "bottom": 3165, "left": 345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705421f.jpg"} -{"rects": [{"solidity": 0.9969057393544233, "top": 425, "right": 3180, "bottom": 2045, "left": 755}, {"solidity": 0.9972220425586961, "top": 2290, "right": 3180, "bottom": 3905, "left": 765}, {"solidity": 0.9962700000973044, "top": 4145, "right": 3190, "bottom": 5755, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734023f.jpg"} -{"rects": [{"solidity": 0.996905745166629, "top": 825, "right": 2635, "bottom": 3840, "left": 215}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716303f.jpg"} -{"rects": [{"solidity": 0.9969057711118356, "top": 815, "right": 2020, "bottom": 3225, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720088f.jpg"} -{"rects": [{"solidity": 0.9969058004920532, "top": 2140, "right": 2640, "bottom": 3550, "left": 860}, {"solidity": 0.9984060458223633, "top": 710, "right": 2655, "bottom": 2085, "left": 855}, {"solidity": 0.9952939853965367, "top": 2110, "right": 5235, "bottom": 3510, "left": 3455}, {"solidity": 0.9955883491138, "top": 710, "right": 5240, "bottom": 2070, "left": 3440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731350f.jpg"} -{"rects": [{"solidity": 0.9969061579163894, "top": 770, "right": 2055, "bottom": 3155, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712592f.jpg"} -{"rects": [{"solidity": 0.996906245075559, "top": 740, "right": 2035, "bottom": 3165, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714374f.jpg"} -{"rects": [{"solidity": 0.9969062641887555, "top": 845, "right": 4660, "bottom": 3395, "left": 1500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722492f.jpg"} -{"rects": [{"solidity": 0.9969063134002221, "top": 800, "right": 2055, "bottom": 3215, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720682f.jpg"} -{"rects": [{"solidity": 0.9969063620623159, "top": 615, "right": 5015, "bottom": 3520, "left": 1300}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717354f.jpg"} -{"rects": [{"solidity": 0.9969064037442494, "top": 755, "right": 2095, "bottom": 3145, "left": 510}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724040f.jpg"} -{"rects": [{"solidity": 0.996906441708856, "top": 360, "right": 2380, "bottom": 1565, "left": 580}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715902f.jpg"} -{"rects": [{"solidity": 0.9969065180431809, "top": 810, "right": 1945, "bottom": 3220, "left": 305}, {"solidity": 0.9962509141085415, "top": 850, "right": 3800, "bottom": 3215, "left": 2180}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724561f.jpg"} -{"rects": [{"solidity": 0.9969066789503821, "top": 385, "right": 3025, "bottom": 2025, "left": 605}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702641f.jpg"} -{"rects": [{"solidity": 0.9969067216017651, "top": 855, "right": 3890, "bottom": 3285, "left": 2255}, {"solidity": 0.9961938101678733, "top": 850, "right": 5730, "bottom": 3290, "left": 4090}, {"solidity": 0.9965548405291765, "top": 845, "right": 2030, "bottom": 3275, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724403f.jpg"} -{"rects": [{"solidity": 0.9969069027898065, "top": 785, "right": 1995, "bottom": 3175, "left": 420}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712772f.jpg"} -{"rects": [{"solidity": 0.9969069247614625, "top": 405, "right": 4880, "bottom": 3645, "left": 900}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700679f.jpg"} -{"rects": [{"solidity": 0.9969071411486433, "top": 800, "right": 2165, "bottom": 3190, "left": 575}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718465f.jpg"} -{"rects": [{"solidity": 0.9969072878927572, "top": 1030, "right": 3360, "bottom": 4930, "left": 375}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/722242f.jpg"} -{"rects": [{"solidity": 0.9969073542399228, "top": 450, "right": 3205, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713992f.jpg"} -{"rects": [{"solidity": 0.9969074344583686, "top": 380, "right": 5080, "bottom": 3640, "left": 1045}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708211f.jpg"} -{"rects": [{"solidity": 0.9969075699840203, "top": 845, "right": 4000, "bottom": 3255, "left": 2380}, {"solidity": 0.9954045999499511, "top": 820, "right": 2125, "bottom": 3235, "left": 505}, {"solidity": 0.9961041062060267, "top": 865, "right": 5805, "bottom": 3260, "left": 4205}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713335f.jpg"} -{"rects": [{"solidity": 0.9969076189483452, "top": 655, "right": 2560, "bottom": 3720, "left": 540}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715537f.jpg"} -{"rects": [{"solidity": 0.9969076652222778, "top": 775, "right": 2040, "bottom": 3180, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713310f.jpg"} -{"rects": [{"solidity": 0.9969083176544371, "top": 660, "right": 2660, "bottom": 2070, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704975f.jpg"} -{"rects": [{"solidity": 0.9969084096373216, "top": 2215, "right": 3155, "bottom": 3855, "left": 740}, {"solidity": 0.9990358582809061, "top": 330, "right": 3170, "bottom": 1945, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704880f.jpg"} -{"rects": [{"solidity": 0.9969085818921146, "top": 410, "right": 3155, "bottom": 2040, "left": 740}, {"solidity": 0.9903502655613804, "top": 4055, "right": 2910, "bottom": 5555, "left": 945}, {"solidity": 0.9916647252206777, "top": 2300, "right": 2955, "bottom": 3775, "left": 960}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715398f.jpg"} -{"rects": [{"solidity": 0.9969086906923311, "top": 785, "right": 2055, "bottom": 3210, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716683f.jpg"} -{"rects": [{"solidity": 0.9969089916733895, "top": 825, "right": 3680, "bottom": 3050, "left": 585}, {"solidity": 0.995503520987645, "top": 3635, "right": 3690, "bottom": 5810, "left": 590}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710268f.jpg"} -{"rects": [{"solidity": 0.9969090102028584, "top": 830, "right": 2035, "bottom": 3240, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707638f.jpg"} -{"rects": [{"solidity": 0.9969091450468645, "top": 435, "right": 3310, "bottom": 2050, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702708f.jpg"} -{"rects": [{"solidity": 0.996909205449248, "top": 770, "right": 2025, "bottom": 3170, "left": 425}, {"solidity": 0.9966252713672795, "top": 770, "right": 3940, "bottom": 2115, "left": 2115}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724760f.jpg"} -{"rects": [{"solidity": 0.9969093625254084, "top": 655, "right": 2735, "bottom": 2080, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727892f.jpg"} -{"rects": [{"solidity": 0.9969098425690066, "top": 755, "right": 3870, "bottom": 3180, "left": 2250}, {"solidity": 0.9981392989932455, "top": 780, "right": 2035, "bottom": 3175, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723274f.jpg"} -{"rects": [{"solidity": 0.9969104189404752, "top": 490, "right": 3145, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710498f.jpg"} -{"rects": [{"solidity": 0.9969104248972023, "top": 4065, "right": 3160, "bottom": 5675, "left": 735}, {"solidity": 0.9957804270013871, "top": 2275, "right": 3155, "bottom": 3890, "left": 740}, {"solidity": 0.9922299056909717, "top": 465, "right": 3150, "bottom": 2070, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734843f.jpg"} -{"rects": [{"solidity": 0.9969105023042849, "top": 425, "right": 3470, "bottom": 2810, "left": 275}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723458f.jpg"} -{"rects": [{"solidity": 0.9969105163351278, "top": 4030, "right": 3235, "bottom": 5660, "left": 800}, {"solidity": 0.9968530699307165, "top": 275, "right": 3225, "bottom": 1910, "left": 800}, {"solidity": 0.9970674863572271, "top": 2140, "right": 3210, "bottom": 3775, "left": 805}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/707334f.jpg"} -{"rects": [{"solidity": 0.9969105220925284, "top": 425, "right": 3165, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733879f.jpg"} -{"rects": [{"solidity": 0.9969107029195625, "top": 760, "right": 3835, "bottom": 3180, "left": 2210}, {"solidity": 0.9977881631051336, "top": 755, "right": 2070, "bottom": 3165, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730566f.jpg"} -{"rects": [{"solidity": 0.9969107439632418, "top": 745, "right": 2090, "bottom": 3150, "left": 485}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710706f.jpg"} -{"rects": [{"solidity": 0.9969107686640226, "top": 395, "right": 2985, "bottom": 3495, "left": 940}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713571f.jpg"} -{"rects": [{"solidity": 0.9969108603460727, "top": 415, "right": 3135, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724378f.jpg"} -{"rects": [{"solidity": 0.9969109603466872, "top": 415, "right": 3250, "bottom": 2055, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725697f.jpg"} -{"rects": [{"solidity": 0.9969109809542273, "top": 675, "right": 3860, "bottom": 3110, "left": 2225}, {"solidity": 0.9959913257008005, "top": 675, "right": 5710, "bottom": 3120, "left": 4075}, {"solidity": 0.9977623464221621, "top": 675, "right": 2010, "bottom": 3100, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725909f.jpg"} -{"rects": [{"solidity": 0.996911324979147, "top": 485, "right": 5070, "bottom": 3680, "left": 1035}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718272f.jpg"} -{"rects": [{"solidity": 0.9969113723367232, "top": 610, "right": 2675, "bottom": 2035, "left": 845}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702851f.jpg"} -{"rects": [{"solidity": 0.9969115164078303, "top": 730, "right": 3445, "bottom": 2725, "left": 415}, {"solidity": 0.988885280100935, "top": 3360, "right": 3110, "bottom": 5060, "left": 695}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717812f.jpg"} -{"rects": [{"solidity": 0.9969115354152241, "top": 2195, "right": 4875, "bottom": 3590, "left": 3060}, {"solidity": 0.9978821687819401, "top": 2245, "right": 2825, "bottom": 3615, "left": 1025}, {"solidity": 0.9957897756083569, "top": 635, "right": 2810, "bottom": 2000, "left": 1005}, {"solidity": 0.9954027168125503, "top": 635, "right": 4865, "bottom": 1990, "left": 3060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726360f.jpg"} -{"rects": [{"solidity": 0.9969117880811889, "top": 795, "right": 3895, "bottom": 3205, "left": 2280}, {"solidity": 0.9985707931607384, "top": 800, "right": 1995, "bottom": 3205, "left": 395}, {"solidity": 0.996314512384154, "top": 805, "right": 5790, "bottom": 3210, "left": 4185}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733355f.jpg"} -{"rects": [{"solidity": 0.9969119373129887, "top": 425, "right": 3190, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734486f.jpg"} -{"rects": [{"solidity": 0.9969121264458052, "top": 760, "right": 2025, "bottom": 3155, "left": 415}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732335f.jpg"} -{"rects": [{"solidity": 0.996912230571254, "top": 400, "right": 3220, "bottom": 1985, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734077f.jpg"} -{"rects": [{"solidity": 0.9969122416189415, "top": 765, "right": 3220, "bottom": 2665, "left": 530}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712413f.jpg"} -{"rects": [{"solidity": 0.9969123302672632, "top": 460, "right": 3205, "bottom": 2075, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702418f.jpg"} -{"rects": [{"solidity": 0.9969123877963657, "top": 495, "right": 3015, "bottom": 2120, "left": 600}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702377f.jpg"} -{"rects": [{"solidity": 0.9969123976653, "top": 2290, "right": 3265, "bottom": 3915, "left": 835}, {"solidity": 0.996103112671013, "top": 4160, "right": 3240, "bottom": 5780, "left": 830}, {"solidity": 0.9976627272577429, "top": 445, "right": 3250, "bottom": 2040, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725125f.jpg"} -{"rects": [{"solidity": 0.9969125890691026, "top": 965, "right": 2065, "bottom": 3400, "left": 430}, {"solidity": 0.9971989063002327, "top": 980, "right": 3960, "bottom": 3405, "left": 2320}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707134f.jpg"} -{"rects": [{"solidity": 0.9969127473657158, "top": 2245, "right": 3060, "bottom": 3870, "left": 645}, {"solidity": 0.9966103442498292, "top": 390, "right": 3055, "bottom": 2010, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711905f.jpg"} -{"rects": [{"solidity": 0.9969128889321712, "top": 375, "right": 2995, "bottom": 2000, "left": 600}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704774f.jpg"} -{"rects": [{"solidity": 0.9969129351234022, "top": 775, "right": 3855, "bottom": 3205, "left": 2240}, {"solidity": 0.9947548126951092, "top": 790, "right": 2030, "bottom": 3205, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705775f.jpg"} -{"rects": [{"solidity": 0.9969130338214324, "top": 760, "right": 1970, "bottom": 3180, "left": 345}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702024f.jpg"} -{"rects": [{"solidity": 0.9969132332677008, "top": 405, "right": 3290, "bottom": 2035, "left": 875}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704197f.jpg"} -{"rects": [{"solidity": 0.9969135100538349, "top": 430, "right": 3175, "bottom": 2045, "left": 775}, {"solidity": 0.9949545641322726, "top": 2315, "right": 3165, "bottom": 3885, "left": 780}, {"solidity": 0.9955454157724777, "top": 4160, "right": 3150, "bottom": 5730, "left": 770}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/731703f.jpg"} -{"rects": [{"solidity": 0.9969138515328196, "top": 645, "right": 5095, "bottom": 2060, "left": 3270}, {"solidity": 0.9956639354668594, "top": 2265, "right": 2865, "bottom": 3680, "left": 1035}, {"solidity": 0.9949973384854996, "top": 645, "right": 2865, "bottom": 2060, "left": 1055}, {"solidity": 0.9968689310768499, "top": 2260, "right": 5115, "bottom": 3660, "left": 3295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725071f.jpg"} -{"rects": [{"solidity": 0.9969139465875371, "top": 2265, "right": 3130, "bottom": 3890, "left": 710}, {"solidity": 0.9978788065529958, "top": 410, "right": 3125, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720237f.jpg"} -{"rects": [{"solidity": 0.9969140464422627, "top": 1040, "right": 3535, "bottom": 5070, "left": 250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715575f.jpg"} -{"rects": [{"solidity": 0.9969140584650346, "top": 2380, "right": 3220, "bottom": 4000, "left": 800}, {"solidity": 0.9955569660425262, "top": 440, "right": 3220, "bottom": 2065, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709369f.jpg"} -{"rects": [{"solidity": 0.9969141810822532, "top": 465, "right": 5085, "bottom": 3710, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729569f.jpg"} -{"rects": [{"solidity": 0.9969142346421197, "top": 735, "right": 2050, "bottom": 3135, "left": 440}, {"solidity": 0.9974380899243642, "top": 735, "right": 3870, "bottom": 3125, "left": 2275}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719934f.jpg"} -{"rects": [{"solidity": 0.9969142469831166, "top": 520, "right": 3695, "bottom": 2535, "left": 510}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732998f.jpg"} -{"rects": [{"solidity": 0.996914378803124, "top": 645, "right": 3340, "bottom": 2550, "left": 570}, {"solidity": 0.994711615078149, "top": 3090, "right": 3295, "bottom": 5010, "left": 590}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715387f.jpg"} -{"rects": [{"solidity": 0.996914444218241, "top": 460, "right": 3185, "bottom": 2090, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701022f.jpg"} -{"rects": [{"solidity": 0.9969144971511343, "top": 780, "right": 3410, "bottom": 2800, "left": 365}, {"solidity": 0.9967524440678699, "top": 3070, "right": 3250, "bottom": 4995, "left": 520}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718692f.jpg"} -{"rects": [{"solidity": 0.9969144978956479, "top": 2355, "right": 3240, "bottom": 3950, "left": 850}, {"solidity": 0.9965590127651667, "top": 460, "right": 3250, "bottom": 2050, "left": 860}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719843f.jpg"} -{"rects": [{"solidity": 0.9969145175985578, "top": 400, "right": 3085, "bottom": 2005, "left": 655}, {"solidity": 0.9979656727555887, "top": 2235, "right": 3070, "bottom": 3845, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729708f.jpg"} -{"rects": [{"solidity": 0.9969146560293302, "top": 405, "right": 3295, "bottom": 2015, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727300f.jpg"} -{"rects": [{"solidity": 0.9969147347790918, "top": 2260, "right": 3140, "bottom": 3885, "left": 710}, {"solidity": 0.9979850631154074, "top": 4135, "right": 3125, "bottom": 5750, "left": 700}, {"solidity": 0.9971454681077101, "top": 395, "right": 3155, "bottom": 2005, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732201f.jpg"} -{"rects": [{"solidity": 0.9969148063664557, "top": 785, "right": 3875, "bottom": 3220, "left": 2260}, {"solidity": 0.9947090971267817, "top": 785, "right": 5725, "bottom": 3210, "left": 4115}, {"solidity": 0.9966528499425925, "top": 795, "right": 2020, "bottom": 3220, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734537f.jpg"} -{"rects": [{"solidity": 0.9969148908956026, "top": 795, "right": 2275, "bottom": 3510, "left": 460}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711179f.jpg"} -{"rects": [{"solidity": 0.9969150481799761, "top": 420, "right": 3145, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734721f.jpg"} -{"rects": [{"solidity": 0.9969151159319335, "top": 3300, "right": 3495, "bottom": 5355, "left": 335}, {"solidity": 0.9914513007955278, "top": 890, "right": 3460, "bottom": 2830, "left": 425}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706353f.jpg"} -{"rects": [{"solidity": 0.9969152116266984, "top": 655, "right": 4115, "bottom": 3475, "left": 2090}, {"solidity": 0.9971503528134612, "top": 820, "right": 1960, "bottom": 3235, "left": 340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721223f.jpg"} -{"rects": [{"solidity": 0.9969153854951232, "top": 750, "right": 2030, "bottom": 3150, "left": 425}, {"solidity": 0.997126304506507, "top": 755, "right": 3885, "bottom": 3150, "left": 2285}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724154f.jpg"} -{"rects": [{"solidity": 0.9969155366770136, "top": 410, "right": 3180, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702545f.jpg"} -{"rects": [{"solidity": 0.9969156035714754, "top": 780, "right": 2015, "bottom": 3180, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715528f.jpg"} -{"rects": [{"solidity": 0.9969156670513583, "top": 440, "right": 5040, "bottom": 3675, "left": 1040}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703844f.jpg"} -{"rects": [{"solidity": 0.9969160003069029, "top": 450, "right": 5080, "bottom": 3760, "left": 1025}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714451f.jpg"} -{"rects": [{"solidity": 0.9969161906641053, "top": 645, "right": 5050, "bottom": 3500, "left": 1070}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723529f.jpg"} -{"rects": [{"solidity": 0.9969161914964981, "top": 640, "right": 2730, "bottom": 2015, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706266f.jpg"} -{"rects": [{"solidity": 0.9969162021201912, "top": 400, "right": 3170, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719966f.jpg"} -{"rects": [{"solidity": 0.9969163173495513, "top": 1110, "right": 2685, "bottom": 4300, "left": 210}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508627.jpg"} -{"rects": [{"solidity": 0.9969163725327794, "top": 3935, "right": 3135, "bottom": 5575, "left": 715}, {"solidity": 0.9967875497414251, "top": 2080, "right": 3145, "bottom": 3705, "left": 725}, {"solidity": 0.9859606560311013, "top": 365, "right": 2905, "bottom": 1805, "left": 1110}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704430f.jpg"} -{"rects": [{"solidity": 0.9969165833611019, "top": 480, "right": 5075, "bottom": 3495, "left": 1300}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730017f.jpg"} -{"rects": [{"solidity": 0.9969166718327368, "top": 2395, "right": 3155, "bottom": 4005, "left": 750}, {"solidity": 0.9962677046874489, "top": 630, "right": 3195, "bottom": 2230, "left": 785}, {"solidity": 0.9971969602591254, "top": 4165, "right": 3165, "bottom": 5765, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710461f.jpg"} -{"rects": [{"solidity": 0.9969169201216584, "top": 2240, "right": 3085, "bottom": 3870, "left": 665}, {"solidity": 0.9981725547426402, "top": 395, "right": 3075, "bottom": 2010, "left": 660}, {"solidity": 0.9965631063558238, "top": 4095, "right": 3070, "bottom": 5720, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712267f.jpg"} -{"rects": [{"solidity": 0.99691706095274, "top": 765, "right": 2030, "bottom": 3190, "left": 400}, {"solidity": 0.9963963445439953, "top": 765, "right": 3845, "bottom": 3195, "left": 2215}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732553f.jpg"} -{"rects": [{"solidity": 0.9969170621342508, "top": 280, "right": 2810, "bottom": 2735, "left": 1155}, {"solidity": 0.9969336994899961, "top": 2980, "right": 3225, "bottom": 4620, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700114f.jpg"} -{"rects": [{"solidity": 0.9969172058852163, "top": 775, "right": 2030, "bottom": 3180, "left": 415}, {"solidity": 0.9957050730170075, "top": 770, "right": 3900, "bottom": 3175, "left": 2285}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724066f.jpg"} -{"rects": [{"solidity": 0.9969176317299184, "top": 815, "right": 3855, "bottom": 3230, "left": 2245}, {"solidity": 0.9969925205293164, "top": 820, "right": 2060, "bottom": 3225, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731173f.jpg"} -{"rects": [{"solidity": 0.9969178313415704, "top": 405, "right": 3195, "bottom": 1980, "left": 825}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726129f.jpg"} -{"rects": [{"solidity": 0.9969178933236083, "top": 425, "right": 3085, "bottom": 2035, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729226f.jpg"} -{"rects": [{"solidity": 0.9969180785316822, "top": 400, "right": 3245, "bottom": 2000, "left": 830}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727813f.jpg"} -{"rects": [{"solidity": 0.9969182560955082, "top": 875, "right": 2010, "bottom": 3285, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728596f.jpg"} -{"rects": [{"solidity": 0.996918304620919, "top": 735, "right": 2515, "bottom": 2225, "left": 430}, {"solidity": 0.9966585067319461, "top": 2455, "right": 2515, "bottom": 3940, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716268f.jpg"} -{"rects": [{"solidity": 0.9969183050009024, "top": 485, "right": 5045, "bottom": 3700, "left": 920}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721954f.jpg"} -{"rects": [{"solidity": 0.9969185270298061, "top": 470, "right": 2885, "bottom": 2085, "left": 490}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707339f.jpg"} -{"rects": [{"solidity": 0.9969185321007462, "top": 445, "right": 3085, "bottom": 2085, "left": 645}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715438f.jpg"} -{"rects": [{"solidity": 0.9969185810536569, "top": 805, "right": 2040, "bottom": 3215, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712132f.jpg"} -{"rects": [{"solidity": 0.9969186702543182, "top": 460, "right": 5115, "bottom": 3715, "left": 1090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713003f.jpg"} -{"rects": [{"solidity": 0.9969186736114692, "top": 390, "right": 3070, "bottom": 2005, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728980f.jpg"} -{"rects": [{"solidity": 0.9969187402799378, "top": 750, "right": 2000, "bottom": 3165, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704131f.jpg"} -{"rects": [{"solidity": 0.9969189494400909, "top": 750, "right": 2055, "bottom": 3145, "left": 440}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721997f.jpg"} -{"rects": [{"solidity": 0.9969190479858276, "top": 375, "right": 3135, "bottom": 2000, "left": 710}, {"solidity": 0.997911450656815, "top": 2165, "right": 3170, "bottom": 3780, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723297f.jpg"} -{"rects": [{"solidity": 0.9969190574780636, "top": 710, "right": 2690, "bottom": 2135, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727366f.jpg"} -{"rects": [{"solidity": 0.9969191152802686, "top": 420, "right": 5435, "bottom": 3595, "left": 3425}, {"solidity": 0.9969950852326757, "top": 455, "right": 3120, "bottom": 3615, "left": 1115}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733027f.jpg"} -{"rects": [{"solidity": 0.9969193259556048, "top": 1065, "right": 5435, "bottom": 2700, "left": 635}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733245f.jpg"} -{"rects": [{"solidity": 0.9969193373325621, "top": 420, "right": 3085, "bottom": 2035, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709267f.jpg"} -{"rects": [{"solidity": 0.9969193629014887, "top": 640, "right": 2625, "bottom": 3705, "left": 590}, {"solidity": 0.9967196896722293, "top": 885, "right": 4415, "bottom": 3295, "left": 2795}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715701f.jpg"} -{"rects": [{"solidity": 0.996919365922297, "top": 965, "right": 1730, "bottom": 3040, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718015f.jpg"} -{"rects": [{"solidity": 0.9969195854742908, "top": 785, "right": 3885, "bottom": 3210, "left": 2255}, {"solidity": 0.9960358729425057, "top": 770, "right": 2060, "bottom": 3200, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723077f.jpg"} -{"rects": [{"solidity": 0.9969197092729859, "top": 405, "right": 3325, "bottom": 2000, "left": 910}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725929f.jpg"} -{"rects": [{"solidity": 0.996919823871808, "top": 490, "right": 3235, "bottom": 3875, "left": 720}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714269f.jpg"} -{"rects": [{"solidity": 0.9969198608547958, "top": 390, "right": 3190, "bottom": 2000, "left": 780}, {"solidity": 0.9987582889943124, "top": 2215, "right": 3200, "bottom": 3815, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/732320f.jpg"} -{"rects": [{"solidity": 0.9969199010971423, "top": 455, "right": 3095, "bottom": 2065, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733619f.jpg"} -{"rects": [{"solidity": 0.9969200431643586, "top": 880, "right": 2035, "bottom": 3310, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701591f.jpg"} -{"rects": [{"solidity": 0.9969202050161307, "top": 1265, "right": 2920, "bottom": 2875, "left": 510}, {"solidity": 0.996312383538219, "top": 1255, "right": 5585, "bottom": 2865, "left": 3180}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709309f.jpg"} -{"rects": [{"solidity": 0.9969202247284948, "top": 1100, "right": 3505, "bottom": 4950, "left": 380}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708549f.jpg"} -{"rects": [{"solidity": 0.9969203302834189, "top": 520, "right": 3165, "bottom": 2600, "left": 1670}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507611.jpg"} -{"rects": [{"solidity": 0.9969206280298097, "top": 1050, "right": 3535, "bottom": 5080, "left": 290}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730194f.jpg"} -{"rects": [{"solidity": 0.9969207348718127, "top": 335, "right": 3815, "bottom": 2755, "left": 805}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716325f.jpg"} -{"rects": [{"solidity": 0.9969209464978558, "top": 930, "right": 1985, "bottom": 3360, "left": 350}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717247f.jpg"} -{"rects": [{"solidity": 0.996921083005023, "top": 880, "right": 2070, "bottom": 3285, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717961f.jpg"} -{"rects": [{"solidity": 0.9969211962058271, "top": 425, "right": 3085, "bottom": 2040, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734368f.jpg"} -{"rects": [{"solidity": 0.9969214308138827, "top": 2145, "right": 3460, "bottom": 3775, "left": 1035}, {"solidity": 0.998512658534146, "top": 430, "right": 3435, "bottom": 2040, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700288f.jpg"} -{"rects": [{"solidity": 0.996921462736063, "top": 470, "right": 5145, "bottom": 3765, "left": 1090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706342f.jpg"} -{"rects": [{"solidity": 0.9969215917261027, "top": 365, "right": 3845, "bottom": 2795, "left": 765}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/715833f.jpg"} -{"rects": [{"solidity": 0.9969216966749773, "top": 835, "right": 2060, "bottom": 3240, "left": 450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704345f.jpg"} -{"rects": [{"solidity": 0.9969220583625087, "top": 530, "right": 2895, "bottom": 3440, "left": 895}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708563f.jpg"} -{"rects": [{"solidity": 0.9969222287085685, "top": 415, "right": 3190, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705876f.jpg"} -{"rects": [{"solidity": 0.9969222303272289, "top": 350, "right": 5625, "bottom": 1985, "left": 3205}, {"solidity": 0.9972600720392755, "top": 2090, "right": 5640, "bottom": 3720, "left": 3225}, {"solidity": 0.9958016991901446, "top": 2075, "right": 2950, "bottom": 3710, "left": 530}, {"solidity": 0.9962751915523791, "top": 330, "right": 2950, "bottom": 1960, "left": 540}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707128f.jpg"} -{"rects": [{"solidity": 0.9969222575573684, "top": 830, "right": 2325, "bottom": 3545, "left": 515}], "shape": {"h": 4435, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708363f.jpg"} -{"rects": [{"solidity": 0.9969223920175753, "top": 355, "right": 3200, "bottom": 1975, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700168f.jpg"} -{"rects": [{"solidity": 0.9969224580594038, "top": 365, "right": 3355, "bottom": 2275, "left": 630}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724718f.jpg"} -{"rects": [{"solidity": 0.9969224863447531, "top": 460, "right": 3205, "bottom": 2065, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703922f.jpg"} -{"rects": [{"solidity": 0.9969230009384106, "top": 2110, "right": 2730, "bottom": 3515, "left": 910}, {"solidity": 0.9961207163022647, "top": 645, "right": 2695, "bottom": 2045, "left": 930}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702815f.jpg"} -{"rects": [{"solidity": 0.996923106324832, "top": 955, "right": 5965, "bottom": 2995, "left": 2715}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724971f.jpg"} -{"rects": [{"solidity": 0.996923147274111, "top": 830, "right": 2040, "bottom": 3235, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732063f.jpg"} -{"rects": [{"solidity": 0.9969231488781687, "top": 430, "right": 3215, "bottom": 2010, "left": 830}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718476f.jpg"} -{"rects": [{"solidity": 0.9969232656645488, "top": 445, "right": 3130, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729068f.jpg"} -{"rects": [{"solidity": 0.9969233541875853, "top": 800, "right": 2015, "bottom": 3215, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713083f.jpg"} -{"rects": [{"solidity": 0.9969234419184865, "top": 1020, "right": 3635, "bottom": 5070, "left": 350}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708240f.jpg"} -{"rects": [{"solidity": 0.9969234598824613, "top": 475, "right": 5060, "bottom": 3705, "left": 1060}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713025f.jpg"} -{"rects": [{"solidity": 0.9969236033546605, "top": 415, "right": 3155, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723512f.jpg"} -{"rects": [{"solidity": 0.9969237523120277, "top": 2150, "right": 3220, "bottom": 3765, "left": 805}, {"solidity": 0.9964226484271193, "top": 4080, "right": 3195, "bottom": 5705, "left": 835}, {"solidity": 0.9974107771264763, "top": 425, "right": 2870, "bottom": 1815, "left": 1105}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734250f.jpg"} -{"rects": [{"solidity": 0.9969238524224662, "top": 385, "right": 3205, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710177f.jpg"} -{"rects": [{"solidity": 0.9969239313024453, "top": 405, "right": 2820, "bottom": 3590, "left": 805}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733070f.jpg"} -{"rects": [{"solidity": 0.9969244145681527, "top": 2260, "right": 3150, "bottom": 3870, "left": 740}, {"solidity": 0.9984844508594672, "top": 435, "right": 3135, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734216f.jpg"} -{"rects": [{"solidity": 0.9969244148770718, "top": 2890, "right": 3170, "bottom": 4530, "left": 735}, {"solidity": 0.9948941954894969, "top": 615, "right": 3190, "bottom": 2235, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730784f.jpg"} -{"rects": [{"solidity": 0.9969244499805772, "top": 2135, "right": 3205, "bottom": 3760, "left": 785}, {"solidity": 0.9978164309515235, "top": 4030, "right": 3195, "bottom": 5640, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732195f.jpg"} -{"rects": [{"solidity": 0.9969244978972606, "top": 805, "right": 2045, "bottom": 3220, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733252f.jpg"} -{"rects": [{"solidity": 0.9969245192417625, "top": 525, "right": 2095, "bottom": 2620, "left": 515}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507787.jpg"} -{"rects": [{"solidity": 0.9969245327655548, "top": 400, "right": 3080, "bottom": 2040, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700107f.jpg"} -{"rects": [{"solidity": 0.9969245877913888, "top": 395, "right": 3160, "bottom": 2015, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701281f.jpg"} -{"rects": [{"solidity": 0.9969246457533972, "top": 3970, "right": 3195, "bottom": 5585, "left": 780}, {"solidity": 0.9977149938367122, "top": 2180, "right": 3185, "bottom": 3780, "left": 785}, {"solidity": 0.9972609890836043, "top": 420, "right": 3180, "bottom": 2005, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724427f.jpg"} -{"rects": [{"solidity": 0.9969246835787714, "top": 805, "right": 3650, "bottom": 3235, "left": 2030}, {"solidity": 0.9948029197080291, "top": 995, "right": 1845, "bottom": 2815, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733374f.jpg"} -{"rects": [{"solidity": 0.9969248032226184, "top": 490, "right": 4705, "bottom": 3440, "left": 1070}], "shape": {"h": 3800, "w": 5950}, "file": "/usr/local/google/home/danvk/milstein/732036f.jpg"} -{"rects": [{"solidity": 0.9969248976582659, "top": 315, "right": 3120, "bottom": 1925, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730083f.jpg"} -{"rects": [{"solidity": 0.9969249005920835, "top": 540, "right": 4925, "bottom": 3705, "left": 990}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709206f.jpg"} -{"rects": [{"solidity": 0.9969252068643549, "top": 420, "right": 3175, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703006f.jpg"} -{"rects": [{"solidity": 0.9969252248449625, "top": 835, "right": 1960, "bottom": 3250, "left": 345}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716677f.jpg"} -{"rects": [{"solidity": 0.996925372459476, "top": 960, "right": 3855, "bottom": 3375, "left": 2235}, {"solidity": 0.9972034377253327, "top": 940, "right": 2020, "bottom": 3345, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728451f.jpg"} -{"rects": [{"solidity": 0.9969255361172951, "top": 465, "right": 5070, "bottom": 3600, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726196f.jpg"} -{"rects": [{"solidity": 0.996925563666354, "top": 750, "right": 3370, "bottom": 2665, "left": 575}, {"solidity": 0.9979513354949817, "top": 3280, "right": 3295, "bottom": 5175, "left": 630}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721826f.jpg"} -{"rects": [{"solidity": 0.9969256132064963, "top": 360, "right": 3225, "bottom": 1995, "left": 800}, {"solidity": 0.9974232646948947, "top": 2110, "right": 3235, "bottom": 3740, "left": 815}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704881f.jpg"} -{"rects": [{"solidity": 0.996925787136001, "top": 1045, "right": 3610, "bottom": 5070, "left": 360}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708073f.jpg"} -{"rects": [{"solidity": 0.9969258412283567, "top": 705, "right": 2030, "bottom": 3105, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732546f.jpg"} -{"rects": [{"solidity": 0.9969258651180692, "top": 380, "right": 3340, "bottom": 2290, "left": 635}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709410f.jpg"} -{"rects": [{"solidity": 0.996925953457572, "top": 400, "right": 3155, "bottom": 2005, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704168f.jpg"} -{"rects": [{"solidity": 0.9969259864730583, "top": 510, "right": 3070, "bottom": 2135, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701422f.jpg"} -{"rects": [{"solidity": 0.9969260583380668, "top": 615, "right": 2690, "bottom": 2055, "left": 850}, {"solidity": 0.9966824881338996, "top": 2105, "right": 2690, "bottom": 3490, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706708f.jpg"} -{"rects": [{"solidity": 0.9969262447223969, "top": 2035, "right": 2670, "bottom": 3455, "left": 875}, {"solidity": 0.9983322616942614, "top": 600, "right": 2690, "bottom": 1960, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703322f.jpg"} -{"rects": [{"solidity": 0.9969262997151443, "top": 715, "right": 2025, "bottom": 3130, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730478f.jpg"} -{"rects": [{"solidity": 0.9969263552126045, "top": 980, "right": 2560, "bottom": 3765, "left": 460}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509351.jpg"} -{"rects": [{"solidity": 0.9969263738987185, "top": 655, "right": 3325, "bottom": 2575, "left": 615}, {"solidity": 0.9947409072136195, "top": 3275, "right": 3270, "bottom": 5090, "left": 675}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/714570f.jpg"} -{"rects": [{"solidity": 0.9969267056020594, "top": 425, "right": 5160, "bottom": 3680, "left": 1120}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728193f.jpg"} -{"rects": [{"solidity": 0.9969268570487082, "top": 740, "right": 2890, "bottom": 3890, "left": 660}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711330f.jpg"} -{"rects": [{"solidity": 0.996926931433381, "top": 535, "right": 2970, "bottom": 1955, "left": 1155}, {"solidity": 0.9947461457784518, "top": 4125, "right": 2930, "bottom": 5540, "left": 1115}, {"solidity": 0.9943822720698218, "top": 2365, "right": 2965, "bottom": 3770, "left": 1135}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725316f.jpg"} -{"rects": [{"solidity": 0.9969269401700619, "top": 805, "right": 3885, "bottom": 3225, "left": 2260}, {"solidity": 0.998918355252292, "top": 785, "right": 2040, "bottom": 3190, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718780f.jpg"} -{"rects": [{"solidity": 0.9969269483246433, "top": 810, "right": 2135, "bottom": 3200, "left": 530}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711595f.jpg"} -{"rects": [{"solidity": 0.9969269606451464, "top": 520, "right": 1855, "bottom": 2775, "left": 400}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716399f.jpg"} -{"rects": [{"solidity": 0.9969271885508622, "top": 860, "right": 2040, "bottom": 3310, "left": 385}, {"solidity": 0.9965852798307069, "top": 875, "right": 3875, "bottom": 3305, "left": 2250}, {"solidity": 0.9951666259058554, "top": 890, "right": 5720, "bottom": 3315, "left": 4085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709291f.jpg"} -{"rects": [{"solidity": 0.9969271937218189, "top": 575, "right": 2525, "bottom": 3635, "left": 505}, {"solidity": 0.994788097149608, "top": 945, "right": 4365, "bottom": 3355, "left": 2760}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720158f.jpg"} -{"rects": [{"solidity": 0.9969274030603709, "top": 400, "right": 3075, "bottom": 2015, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728608f.jpg"} -{"rects": [{"solidity": 0.9969274542386175, "top": 545, "right": 4730, "bottom": 3550, "left": 1165}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707305f.jpg"} -{"rects": [{"solidity": 0.996927703407803, "top": 735, "right": 2360, "bottom": 3550, "left": 370}, {"solidity": 0.9966743915052961, "top": 915, "right": 4070, "bottom": 3320, "left": 2470}, {"solidity": 0.9955618562081819, "top": 920, "right": 5820, "bottom": 3305, "left": 4235}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729013f.jpg"} -{"rects": [{"solidity": 0.9969277240631494, "top": 3980, "right": 3190, "bottom": 5595, "left": 765}, {"solidity": 0.9959772865439588, "top": 2225, "right": 3180, "bottom": 3840, "left": 755}, {"solidity": 0.9946246470605358, "top": 465, "right": 3190, "bottom": 2090, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733149f.jpg"} -{"rects": [{"solidity": 0.9969277438926001, "top": 415, "right": 3135, "bottom": 2040, "left": 715}, {"solidity": 0.99737592402181, "top": 2280, "right": 3130, "bottom": 3890, "left": 720}, {"solidity": 0.9959549404486399, "top": 4155, "right": 3120, "bottom": 5770, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727518f.jpg"} -{"rects": [{"solidity": 0.9969277589046737, "top": 730, "right": 2035, "bottom": 3155, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703929f.jpg"} -{"rects": [{"solidity": 0.9969278905388755, "top": 1735, "right": 2205, "bottom": 2835, "left": 780}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715865f.jpg"} -{"rects": [{"solidity": 0.9969279229489864, "top": 515, "right": 3640, "bottom": 2320, "left": 945}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711381f.jpg"} -{"rects": [{"solidity": 0.9969279433491927, "top": 4145, "right": 3250, "bottom": 5740, "left": 820}, {"solidity": 0.9973978713413679, "top": 2370, "right": 3230, "bottom": 3985, "left": 835}, {"solidity": 0.9968560263320089, "top": 605, "right": 3245, "bottom": 2195, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733212f.jpg"} -{"rects": [{"solidity": 0.9969279603508895, "top": 2130, "right": 3260, "bottom": 3765, "left": 825}, {"solidity": 0.9967283090725523, "top": 295, "right": 3245, "bottom": 1930, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706332f.jpg"} -{"rects": [{"solidity": 0.9969280601247219, "top": 980, "right": 6010, "bottom": 3035, "left": 2775}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703742f.jpg"} -{"rects": [{"solidity": 0.996928371972206, "top": 405, "right": 3150, "bottom": 2010, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728914f.jpg"} -{"rects": [{"solidity": 0.9969284050578866, "top": 480, "right": 5065, "bottom": 3755, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721109f.jpg"} -{"rects": [{"solidity": 0.9969285576829191, "top": 440, "right": 5135, "bottom": 3705, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732015f.jpg"} -{"rects": [{"solidity": 0.9969285598574437, "top": 275, "right": 3485, "bottom": 2770, "left": 285}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508833.jpg"} -{"rects": [{"solidity": 0.9969286243198867, "top": 885, "right": 3855, "bottom": 3290, "left": 2225}, {"solidity": 0.9968558372065773, "top": 885, "right": 2005, "bottom": 3290, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709509f.jpg"} -{"rects": [{"solidity": 0.9969286620725105, "top": 815, "right": 2020, "bottom": 3235, "left": 390}, {"solidity": 0.9968243846037406, "top": 830, "right": 3890, "bottom": 3240, "left": 2265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719560f.jpg"} -{"rects": [{"solidity": 0.9969286652504581, "top": 795, "right": 2045, "bottom": 3205, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724810f.jpg"} -{"rects": [{"solidity": 0.9969286705257618, "top": 1145, "right": 5480, "bottom": 2780, "left": 640}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702529f.jpg"} -{"rects": [{"solidity": 0.996928780475268, "top": 715, "right": 2060, "bottom": 3145, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732533f.jpg"} -{"rects": [{"solidity": 0.9969287972745848, "top": 435, "right": 5030, "bottom": 3680, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722274f.jpg"} -{"rects": [{"solidity": 0.996928974011402, "top": 745, "right": 2105, "bottom": 3160, "left": 495}, {"solidity": 0.9973169323593308, "top": 760, "right": 3960, "bottom": 3150, "left": 2380}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709397f.jpg"} -{"rects": [{"solidity": 0.9969292060129071, "top": 820, "right": 2020, "bottom": 3235, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706639f.jpg"} -{"rects": [{"solidity": 0.9969294375838114, "top": 410, "right": 3085, "bottom": 2050, "left": 655}, {"solidity": 0.996172710820645, "top": 2085, "right": 3115, "bottom": 3730, "left": 690}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702436f.jpg"} -{"rects": [{"solidity": 0.9969294411839101, "top": 2225, "right": 3155, "bottom": 3850, "left": 730}, {"solidity": 0.9967334930001082, "top": 445, "right": 3145, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732828f.jpg"} -{"rects": [{"solidity": 0.9969296270113279, "top": 495, "right": 5020, "bottom": 3710, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722675f.jpg"} -{"rects": [{"solidity": 0.996929767623004, "top": 420, "right": 3235, "bottom": 2030, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719253f.jpg"} -{"rects": [{"solidity": 0.9969297721703702, "top": 2220, "right": 3200, "bottom": 3840, "left": 780}, {"solidity": 0.9966218527362342, "top": 425, "right": 3180, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715119f.jpg"} -{"rects": [{"solidity": 0.9969297851666163, "top": 645, "right": 2510, "bottom": 2125, "left": 420}, {"solidity": 0.9969850854020706, "top": 2490, "right": 2475, "bottom": 3975, "left": 400}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716021f.jpg"} -{"rects": [{"solidity": 0.9969298595913934, "top": 800, "right": 2040, "bottom": 3240, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702528f.jpg"} -{"rects": [{"solidity": 0.9969298918883358, "top": 795, "right": 3270, "bottom": 2825, "left": 435}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706036f.jpg"} -{"rects": [{"solidity": 0.996929970920532, "top": 2245, "right": 2855, "bottom": 3670, "left": 990}, {"solidity": 0.9947567683405958, "top": 4005, "right": 2825, "bottom": 5465, "left": 985}, {"solidity": 0.9966604089551231, "top": 555, "right": 2865, "bottom": 1970, "left": 1020}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732941f.jpg"} -{"rects": [{"solidity": 0.9969300882295737, "top": 655, "right": 5850, "bottom": 3495, "left": 3830}, {"solidity": 0.9977390512353439, "top": 810, "right": 1885, "bottom": 3235, "left": 265}, {"solidity": 0.9963306358083555, "top": 820, "right": 3685, "bottom": 3245, "left": 2070}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722060f.jpg"} -{"rects": [{"solidity": 0.9969303945355261, "top": 2190, "right": 3165, "bottom": 3820, "left": 745}, {"solidity": 0.9983068545083613, "top": 315, "right": 3165, "bottom": 1940, "left": 755}, {"solidity": 0.9967543110862996, "top": 4085, "right": 3145, "bottom": 5705, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715036f.jpg"} -{"rects": [{"solidity": 0.9969305165530494, "top": 350, "right": 3140, "bottom": 1945, "left": 750}, {"solidity": 0.9954861550975778, "top": 2210, "right": 3130, "bottom": 3795, "left": 745}], "shape": {"h": 6055, "w": 3875}, "file": "/usr/local/google/home/danvk/milstein/728125f.jpg"} -{"rects": [{"solidity": 0.9969305853835386, "top": 855, "right": 2740, "bottom": 4030, "left": 265}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507677.jpg"} -{"rects": [{"solidity": 0.9969305966636359, "top": 925, "right": 3850, "bottom": 3350, "left": 2235}, {"solidity": 0.9974238052123162, "top": 945, "right": 1970, "bottom": 3355, "left": 365}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729752f.jpg"} -{"rects": [{"solidity": 0.99693059959817, "top": 2180, "right": 2605, "bottom": 3615, "left": 785}, {"solidity": 0.9965743939592717, "top": 755, "right": 2595, "bottom": 2185, "left": 775}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703100f.jpg"} -{"rects": [{"solidity": 0.9969306322897483, "top": 435, "right": 3030, "bottom": 2065, "left": 600}, {"solidity": 0.997191524559733, "top": 2335, "right": 3045, "bottom": 3960, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701431f.jpg"} -{"rects": [{"solidity": 0.9969306821116317, "top": 1060, "right": 3410, "bottom": 5120, "left": 470}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724139f.jpg"} -{"rects": [{"solidity": 0.9969307413713447, "top": 400, "right": 3200, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732168f.jpg"} -{"rects": [{"solidity": 0.9969307531964482, "top": 2275, "right": 3175, "bottom": 3870, "left": 770}, {"solidity": 0.9959614165081272, "top": 4110, "right": 3165, "bottom": 5695, "left": 780}, {"solidity": 0.9942221421132741, "top": 430, "right": 3155, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/731306f.jpg"} -{"rects": [{"solidity": 0.996930784370398, "top": 750, "right": 4815, "bottom": 3410, "left": 1365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700911f.jpg"} -{"rects": [{"solidity": 0.996930891816357, "top": 2240, "right": 3155, "bottom": 3870, "left": 745}, {"solidity": 0.9964976743129242, "top": 420, "right": 3140, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710090f.jpg"} -{"rects": [{"solidity": 0.9969310575827498, "top": 540, "right": 3475, "bottom": 2365, "left": 1050}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509281.jpg"} -{"rects": [{"solidity": 0.9969311501028314, "top": 545, "right": 4900, "bottom": 3580, "left": 1165}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712178f.jpg"} -{"rects": [{"solidity": 0.996931518248365, "top": 750, "right": 2020, "bottom": 3170, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725019f.jpg"} -{"rects": [{"solidity": 0.9969315503356825, "top": 580, "right": 4675, "bottom": 3540, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728182f.jpg"} -{"rects": [{"solidity": 0.9969317474276104, "top": 310, "right": 2805, "bottom": 2735, "left": 1180}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702308f.jpg"} -{"rects": [{"solidity": 0.9969321004352851, "top": 590, "right": 1565, "bottom": 2345, "left": 395}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715928f.jpg"} -{"rects": [{"solidity": 0.9969321268378986, "top": 455, "right": 5100, "bottom": 3665, "left": 1070}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722733f.jpg"} -{"rects": [{"solidity": 0.9969322695115032, "top": 710, "right": 3920, "bottom": 3135, "left": 2300}, {"solidity": 0.9962550313959104, "top": 690, "right": 2070, "bottom": 3115, "left": 445}, {"solidity": 0.99534066252943, "top": 700, "right": 5750, "bottom": 3100, "left": 4140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718961f.jpg"} -{"rects": [{"solidity": 0.9969323188851317, "top": 755, "right": 2045, "bottom": 3180, "left": 415}, {"solidity": 0.9970546385428009, "top": 785, "right": 3895, "bottom": 3210, "left": 2275}, {"solidity": 0.9959796994725844, "top": 1090, "right": 5505, "bottom": 2895, "left": 4100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719926f.jpg"} -{"rects": [{"solidity": 0.9969323438799768, "top": 2020, "right": 3115, "bottom": 3625, "left": 725}, {"solidity": 0.993541583623878, "top": 400, "right": 2985, "bottom": 1815, "left": 1190}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728143f.jpg"} -{"rects": [{"solidity": 0.9969323444295505, "top": 850, "right": 2000, "bottom": 3245, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722744f.jpg"} -{"rects": [{"solidity": 0.9969324063962213, "top": 435, "right": 3220, "bottom": 3810, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719330f.jpg"} -{"rects": [{"solidity": 0.9969324069523543, "top": 830, "right": 2020, "bottom": 3250, "left": 390}, {"solidity": 0.9965547109005657, "top": 1045, "right": 5790, "bottom": 2885, "left": 4370}, {"solidity": 0.9970389786903548, "top": 2165, "right": 4145, "bottom": 3585, "left": 2315}, {"solidity": 0.9956154054981585, "top": 655, "right": 4140, "bottom": 2005, "left": 2315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705685f.jpg"} -{"rects": [{"solidity": 0.9969324770871002, "top": 805, "right": 3950, "bottom": 3230, "left": 2270}, {"solidity": 0.9944361293681265, "top": 795, "right": 2045, "bottom": 3210, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709331f.jpg"} -{"rects": [{"solidity": 0.9969326132475359, "top": 440, "right": 3175, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700572f.jpg"} -{"rects": [{"solidity": 0.9969326440930797, "top": 450, "right": 3160, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711075f.jpg"} -{"rects": [{"solidity": 0.9969327634571767, "top": 805, "right": 3890, "bottom": 3220, "left": 2270}, {"solidity": 0.9970866311276989, "top": 800, "right": 2020, "bottom": 3205, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723522f.jpg"} -{"rects": [{"solidity": 0.9969327748152559, "top": 980, "right": 2690, "bottom": 4005, "left": 220}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508159.jpg"} -{"rects": [{"solidity": 0.9969328970334522, "top": 590, "right": 2785, "bottom": 2955, "left": 1200}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708217f.jpg"} -{"rects": [{"solidity": 0.9969329098134027, "top": 400, "right": 3280, "bottom": 2025, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725023f.jpg"} -{"rects": [{"solidity": 0.9969329996794243, "top": 360, "right": 3345, "bottom": 2300, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724699f.jpg"} -{"rects": [{"solidity": 0.9969331929047273, "top": 2190, "right": 3095, "bottom": 3820, "left": 675}, {"solidity": 0.998723337202983, "top": 335, "right": 3085, "bottom": 1955, "left": 670}, {"solidity": 0.9977630582281745, "top": 4070, "right": 3080, "bottom": 5685, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710439f.jpg"} -{"rects": [{"solidity": 0.9969332199578469, "top": 640, "right": 4940, "bottom": 3715, "left": 2885}, {"solidity": 0.9974736945881608, "top": 660, "right": 2555, "bottom": 3715, "left": 535}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710847f.jpg"} -{"rects": [{"solidity": 0.9969332496554758, "top": 750, "right": 2025, "bottom": 3165, "left": 410}, {"solidity": 0.9954897491355083, "top": 730, "right": 3880, "bottom": 3150, "left": 2265}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732364f.jpg"} -{"rects": [{"solidity": 0.9969333569755396, "top": 450, "right": 5105, "bottom": 3760, "left": 1030}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720826f.jpg"} -{"rects": [{"solidity": 0.9969333597956427, "top": 2240, "right": 3140, "bottom": 3875, "left": 715}, {"solidity": 0.996287616733295, "top": 370, "right": 3135, "bottom": 2010, "left": 705}, {"solidity": 0.9975869226777374, "top": 4115, "right": 3130, "bottom": 5725, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710217f.jpg"} -{"rects": [{"solidity": 0.9969334241338801, "top": 1130, "right": 3500, "bottom": 5065, "left": 375}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714688f.jpg"} -{"rects": [{"solidity": 0.9969335942496099, "top": 2200, "right": 3045, "bottom": 3830, "left": 620}, {"solidity": 0.9956546314114607, "top": 370, "right": 3035, "bottom": 1970, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728374f.jpg"} -{"rects": [{"solidity": 0.9969336236638561, "top": 875, "right": 3830, "bottom": 3295, "left": 2200}, {"solidity": 0.9967881459805299, "top": 900, "right": 5635, "bottom": 3320, "left": 4010}, {"solidity": 0.9971978293681704, "top": 855, "right": 2005, "bottom": 3275, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720979f.jpg"} -{"rects": [{"solidity": 0.9969336797806124, "top": 415, "right": 3175, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734609f.jpg"} -{"rects": [{"solidity": 0.996933723952541, "top": 790, "right": 2085, "bottom": 3230, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701049f.jpg"} -{"rects": [{"solidity": 0.9969338320377581, "top": 460, "right": 5000, "bottom": 3735, "left": 965}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709061f.jpg"} -{"rects": [{"solidity": 0.996934292316204, "top": 490, "right": 5745, "bottom": 2110, "left": 3350}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706808f.jpg"} -{"rects": [{"solidity": 0.996934297012437, "top": 395, "right": 3300, "bottom": 3845, "left": 675}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709417f.jpg"} -{"rects": [{"solidity": 0.9969343665534576, "top": 315, "right": 3205, "bottom": 1935, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704066f.jpg"} -{"rects": [{"solidity": 0.9969344748000989, "top": 775, "right": 3860, "bottom": 3210, "left": 2250}, {"solidity": 0.9932630963783056, "top": 790, "right": 2040, "bottom": 3220, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730395f.jpg"} -{"rects": [{"solidity": 0.9969345062757746, "top": 770, "right": 2020, "bottom": 3160, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717451f.jpg"} -{"rects": [{"solidity": 0.9969346667890977, "top": 980, "right": 5950, "bottom": 3025, "left": 2745}, {"solidity": 0.9997362993749902, "top": 400, "right": 2615, "bottom": 3590, "left": 615}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705060f.jpg"} -{"rects": [{"solidity": 0.9969349271286116, "top": 770, "right": 2015, "bottom": 3195, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722496f.jpg"} -{"rects": [{"solidity": 0.9969349441199759, "top": 945, "right": 3650, "bottom": 5095, "left": 345}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/709192f.jpg"} -{"rects": [{"solidity": 0.9969350274866735, "top": 380, "right": 4240, "bottom": 2820, "left": 1075}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507895.jpg"} -{"rects": [{"solidity": 0.9969352467730854, "top": 355, "right": 5980, "bottom": 3590, "left": 3930}, {"solidity": 0.9982365398240024, "top": 940, "right": 3820, "bottom": 2970, "left": 610}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703745f.jpg"} -{"rects": [{"solidity": 0.9969352642338001, "top": 890, "right": 5710, "bottom": 3325, "left": 4080}, {"solidity": 0.9987472254255418, "top": 880, "right": 3855, "bottom": 3305, "left": 2240}, {"solidity": 0.9975726360529454, "top": 890, "right": 2000, "bottom": 3315, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730333f.jpg"} -{"rects": [{"solidity": 0.9969352720234118, "top": 2405, "right": 3115, "bottom": 4005, "left": 725}, {"solidity": 0.997823226012283, "top": 550, "right": 3120, "bottom": 2135, "left": 730}, {"solidity": 0.9974992517708091, "top": 4260, "right": 3125, "bottom": 5840, "left": 725}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/731958f.jpg"} -{"rects": [{"solidity": 0.9969356339257455, "top": 570, "right": 2740, "bottom": 2010, "left": 910}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702690f.jpg"} -{"rects": [{"solidity": 0.9969356658192042, "top": 495, "right": 2130, "bottom": 2925, "left": 585}], "shape": {"h": 4645, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509633.jpg"} -{"rects": [{"solidity": 0.9969364933790285, "top": 785, "right": 2020, "bottom": 3200, "left": 385}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719664f.jpg"} -{"rects": [{"solidity": 0.9969364999267495, "top": 415, "right": 3235, "bottom": 2020, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734082f.jpg"} -{"rects": [{"solidity": 0.9969365257167206, "top": 785, "right": 5765, "bottom": 3205, "left": 4150}, {"solidity": 0.9946145795192005, "top": 790, "right": 2060, "bottom": 3210, "left": 450}, {"solidity": 0.9953120279134139, "top": 780, "right": 3910, "bottom": 3195, "left": 2305}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700765f.jpg"} -{"rects": [{"solidity": 0.9969367026369589, "top": 770, "right": 2055, "bottom": 3195, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720259f.jpg"} -{"rects": [{"solidity": 0.9969367155483497, "top": 605, "right": 3400, "bottom": 2520, "left": 680}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712139f.jpg"} -{"rects": [{"solidity": 0.9969371431544174, "top": 425, "right": 3085, "bottom": 2030, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729899f.jpg"} -{"rects": [{"solidity": 0.9969373736915007, "top": 495, "right": 5065, "bottom": 3775, "left": 1025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708146f.jpg"} -{"rects": [{"solidity": 0.9969373847510623, "top": 865, "right": 2045, "bottom": 3295, "left": 425}, {"solidity": 0.998436731030889, "top": 870, "right": 3895, "bottom": 3300, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728801f.jpg"} -{"rects": [{"solidity": 0.9969374347876493, "top": 755, "right": 3855, "bottom": 3160, "left": 2230}, {"solidity": 0.9982801426745455, "top": 770, "right": 1995, "bottom": 3150, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712608f.jpg"} -{"rects": [{"solidity": 0.9969374717561421, "top": 920, "right": 3915, "bottom": 3335, "left": 2310}, {"solidity": 0.9951436017688132, "top": 925, "right": 2055, "bottom": 3335, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733467f.jpg"} -{"rects": [{"solidity": 0.996937481277526, "top": 415, "right": 3180, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/705151f.jpg"} -{"rects": [{"solidity": 0.9969377187910978, "top": 420, "right": 3075, "bottom": 2055, "left": 640}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705079f.jpg"} -{"rects": [{"solidity": 0.9969377902275418, "top": 910, "right": 2680, "bottom": 3940, "left": 210}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508039.jpg"} -{"rects": [{"solidity": 0.9969379233552936, "top": 830, "right": 3665, "bottom": 3270, "left": 495}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719337f.jpg"} -{"rects": [{"solidity": 0.9969381784431621, "top": 575, "right": 2750, "bottom": 1975, "left": 955}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706957f.jpg"} -{"rects": [{"solidity": 0.9969383812386622, "top": 770, "right": 3895, "bottom": 3170, "left": 2290}, {"solidity": 0.9968969783582435, "top": 780, "right": 2030, "bottom": 3170, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712611f.jpg"} -{"rects": [{"solidity": 0.9969385593900224, "top": 880, "right": 3850, "bottom": 3300, "left": 2225}, {"solidity": 0.9896827012086635, "top": 885, "right": 1985, "bottom": 3295, "left": 380}, {"solidity": 0.9928568831417814, "top": 905, "right": 5700, "bottom": 3305, "left": 4110}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730262f.jpg"} -{"rects": [{"solidity": 0.996938591752206, "top": 395, "right": 3195, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720912f.jpg"} -{"rects": [{"solidity": 0.9969386079840846, "top": 910, "right": 3865, "bottom": 3320, "left": 2240}, {"solidity": 0.9953188999414863, "top": 920, "right": 5715, "bottom": 3340, "left": 4075}, {"solidity": 0.9967565821353578, "top": 905, "right": 2015, "bottom": 3305, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728502f.jpg"} -{"rects": [{"solidity": 0.996938755486365, "top": 780, "right": 2030, "bottom": 3180, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715289f.jpg"} -{"rects": [{"solidity": 0.9969387851840615, "top": 470, "right": 5120, "bottom": 3730, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721619f.jpg"} -{"rects": [{"solidity": 0.996938931200651, "top": 885, "right": 3955, "bottom": 3310, "left": 2315}, {"solidity": 0.9979122435673012, "top": 875, "right": 2060, "bottom": 3295, "left": 440}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703004f.jpg"} -{"rects": [{"solidity": 0.9969389457022602, "top": 780, "right": 2035, "bottom": 3180, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714713f.jpg"} -{"rects": [{"solidity": 0.996939078943966, "top": 400, "right": 3195, "bottom": 2015, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729993f.jpg"} -{"rects": [{"solidity": 0.9969392447403337, "top": 1050, "right": 3540, "bottom": 5020, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721297f.jpg"} -{"rects": [{"solidity": 0.9969393768919607, "top": 655, "right": 3110, "bottom": 2235, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710443f.jpg"} -{"rects": [{"solidity": 0.9969394313803198, "top": 805, "right": 3865, "bottom": 3195, "left": 2275}, {"solidity": 0.973832990061236, "top": 800, "right": 2010, "bottom": 3180, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730161f.jpg"} -{"rects": [{"solidity": 0.9969394969540246, "top": 2305, "right": 3085, "bottom": 3915, "left": 655}, {"solidity": 0.9994339088593264, "top": 445, "right": 3080, "bottom": 2045, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734340f.jpg"} -{"rects": [{"solidity": 0.9969399719735751, "top": 860, "right": 3855, "bottom": 3290, "left": 2220}, {"solidity": 0.9972904566696206, "top": 855, "right": 1990, "bottom": 3280, "left": 355}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720241f.jpg"} -{"rects": [{"solidity": 0.9969400364841804, "top": 800, "right": 2025, "bottom": 3205, "left": 420}, {"solidity": 0.9959935295174915, "top": 835, "right": 3895, "bottom": 3235, "left": 2270}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722618f.jpg"} -{"rects": [{"solidity": 0.996940047133145, "top": 770, "right": 3350, "bottom": 2800, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720862f.jpg"} -{"rects": [{"solidity": 0.9969401052140479, "top": 395, "right": 3105, "bottom": 2020, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728575f.jpg"} -{"rects": [{"solidity": 0.9969401126762452, "top": 835, "right": 2025, "bottom": 3210, "left": 440}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718494f.jpg"} -{"rects": [{"solidity": 0.996940251632183, "top": 2165, "right": 2695, "bottom": 3605, "left": 855}, {"solidity": 0.9963700099609225, "top": 690, "right": 2695, "bottom": 2125, "left": 860}, {"solidity": 0.9957997698504027, "top": 680, "right": 5240, "bottom": 2120, "left": 3410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704098f.jpg"} -{"rects": [{"solidity": 0.9969403583494367, "top": 560, "right": 2785, "bottom": 2960, "left": 1180}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708287f.jpg"} -{"rects": [{"solidity": 0.9969406404125879, "top": 610, "right": 2720, "bottom": 2020, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702922f.jpg"} -{"rects": [{"solidity": 0.9969406796795502, "top": 745, "right": 1985, "bottom": 3135, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730384f.jpg"} -{"rects": [{"solidity": 0.9969408468106701, "top": 1090, "right": 3635, "bottom": 4790, "left": 555}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719804f.jpg"} -{"rects": [{"solidity": 0.9969408793773076, "top": 475, "right": 3005, "bottom": 2110, "left": 580}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703187f.jpg"} -{"rects": [{"solidity": 0.9969408908745577, "top": 3200, "right": 3240, "bottom": 5115, "left": 420}, {"solidity": 0.9946105363648762, "top": 855, "right": 3220, "bottom": 2755, "left": 480}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725064f.jpg"} -{"rects": [{"solidity": 0.9969410065265064, "top": 385, "right": 3110, "bottom": 1995, "left": 710}, {"solidity": 0.9960112469757405, "top": 4035, "right": 3080, "bottom": 5645, "left": 670}, {"solidity": 0.993944012326822, "top": 2205, "right": 3080, "bottom": 3805, "left": 700}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/719203f.jpg"} -{"rects": [{"solidity": 0.9969410984354523, "top": 2150, "right": 3240, "bottom": 3760, "left": 805}, {"solidity": 0.9960610219542286, "top": 410, "right": 2990, "bottom": 1820, "left": 1180}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725352f.jpg"} -{"rects": [{"solidity": 0.996941105097626, "top": 410, "right": 3085, "bottom": 2050, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700781f.jpg"} -{"rects": [{"solidity": 0.996941292231206, "top": 865, "right": 3830, "bottom": 3265, "left": 2205}, {"solidity": 0.998011010315312, "top": 670, "right": 5875, "bottom": 2115, "left": 3965}, {"solidity": 0.9951364284728293, "top": 2270, "right": 5865, "bottom": 3750, "left": 4000}, {"solidity": 0.9960182617940754, "top": 1115, "right": 1795, "bottom": 2890, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716577f.jpg"} -{"rects": [{"solidity": 0.9969413254910817, "top": 635, "right": 2635, "bottom": 2055, "left": 825}, {"solidity": 0.996660819788618, "top": 2095, "right": 2620, "bottom": 3510, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702766f.jpg"} -{"rects": [{"solidity": 0.9969413729203576, "top": 810, "right": 3265, "bottom": 2300, "left": 1180}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508171.jpg"} -{"rects": [{"solidity": 0.996941386571421, "top": 1025, "right": 5655, "bottom": 3400, "left": 4060}, {"solidity": 0.995356915733833, "top": 1055, "right": 3780, "bottom": 3415, "left": 2210}, {"solidity": 0.9964290512590246, "top": 1085, "right": 1965, "bottom": 3410, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712761f.jpg"} -{"rects": [{"solidity": 0.9969413975607885, "top": 2300, "right": 3150, "bottom": 3935, "left": 725}, {"solidity": 0.9988039735014397, "top": 415, "right": 3145, "bottom": 2040, "left": 730}, {"solidity": 0.996892863609322, "top": 4215, "right": 3110, "bottom": 5830, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710504f.jpg"} -{"rects": [{"solidity": 0.9969414243379923, "top": 775, "right": 2005, "bottom": 3175, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730185f.jpg"} -{"rects": [{"solidity": 0.9969414303349199, "top": 1095, "right": 2930, "bottom": 2710, "left": 515}, {"solidity": 0.9967102263103722, "top": 1090, "right": 5595, "bottom": 2700, "left": 3185}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709394f.jpg"} -{"rects": [{"solidity": 0.9969416946523556, "top": 440, "right": 2030, "bottom": 2740, "left": 530}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715800f.jpg"} -{"rects": [{"solidity": 0.9969417758655691, "top": 395, "right": 3180, "bottom": 2000, "left": 780}, {"solidity": 0.9966776315789474, "top": 2255, "right": 3225, "bottom": 3860, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705465f.jpg"} -{"rects": [{"solidity": 0.9969419570904091, "top": 525, "right": 5000, "bottom": 3815, "left": 970}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707847f.jpg"} -{"rects": [{"solidity": 0.9969421986482341, "top": 440, "right": 3250, "bottom": 2035, "left": 855}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727279f.jpg"} -{"rects": [{"solidity": 0.9969422211911483, "top": 450, "right": 3200, "bottom": 2065, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712521f.jpg"} -{"rects": [{"solidity": 0.996942243458446, "top": 1255, "right": 4620, "bottom": 2870, "left": 2205}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732870f.jpg"} -{"rects": [{"solidity": 0.9969424715791837, "top": 440, "right": 3210, "bottom": 2030, "left": 800}, {"solidity": 0.9958257187652916, "top": 2280, "right": 3190, "bottom": 3865, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726123f.jpg"} -{"rects": [{"solidity": 0.9969425408539799, "top": 395, "right": 3200, "bottom": 1990, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727478f.jpg"} -{"rects": [{"solidity": 0.9969428822466689, "top": 400, "right": 3210, "bottom": 1990, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727507f.jpg"} -{"rects": [{"solidity": 0.9969430633520449, "top": 500, "right": 3130, "bottom": 2120, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706285f.jpg"} -{"rects": [{"solidity": 0.9969433167896495, "top": 385, "right": 3085, "bottom": 2015, "left": 665}, {"solidity": 0.9968470717057696, "top": 2260, "right": 3075, "bottom": 3885, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709386f.jpg"} -{"rects": [{"solidity": 0.9969434195132613, "top": 810, "right": 2035, "bottom": 3240, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720911f.jpg"} -{"rects": [{"solidity": 0.9969438368507775, "top": 970, "right": 2705, "bottom": 3995, "left": 230}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508161.jpg"} -{"rects": [{"solidity": 0.9969441640400212, "top": 965, "right": 2795, "bottom": 3980, "left": 365}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507605.jpg"} -{"rects": [{"solidity": 0.9969442812801921, "top": 2215, "right": 3155, "bottom": 3835, "left": 730}, {"solidity": 0.9957928865044291, "top": 375, "right": 3170, "bottom": 1995, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720559f.jpg"} -{"rects": [{"solidity": 0.9969442975139358, "top": 660, "right": 2530, "bottom": 2145, "left": 445}, {"solidity": 0.9956695142767519, "top": 2435, "right": 2515, "bottom": 3925, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716104f.jpg"} -{"rects": [{"solidity": 0.9969443462550568, "top": 715, "right": 2210, "bottom": 3460, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714202f.jpg"} -{"rects": [{"solidity": 0.9969445178067163, "top": 2480, "right": 2530, "bottom": 3965, "left": 440}, {"solidity": 0.9965548342013959, "top": 695, "right": 2535, "bottom": 2180, "left": 445}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716105f.jpg"} -{"rects": [{"solidity": 0.9969445484831162, "top": 405, "right": 3200, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720726f.jpg"} -{"rects": [{"solidity": 0.9969448714705482, "top": 810, "right": 1975, "bottom": 3230, "left": 370}, {"solidity": 0.9973602781935601, "top": 825, "right": 3855, "bottom": 3240, "left": 2250}, {"solidity": 0.9975257772286749, "top": 840, "right": 5745, "bottom": 3220, "left": 4125}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723974f.jpg"} -{"rects": [{"solidity": 0.9969449218561768, "top": 840, "right": 3845, "bottom": 3260, "left": 2225}, {"solidity": 0.9984611025974528, "top": 835, "right": 5700, "bottom": 3260, "left": 4090}, {"solidity": 0.9953153826092835, "top": 845, "right": 2005, "bottom": 3275, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702146f.jpg"} -{"rects": [{"solidity": 0.9969450361620981, "top": 420, "right": 3190, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720446f.jpg"} -{"rects": [{"solidity": 0.9969451657247594, "top": 885, "right": 1945, "bottom": 2915, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700633f.jpg"} -{"rects": [{"solidity": 0.9969452269430569, "top": 530, "right": 5060, "bottom": 3645, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711493f.jpg"} -{"rects": [{"solidity": 0.9969454673207292, "top": 790, "right": 3815, "bottom": 3200, "left": 2205}, {"solidity": 0.9969878033958657, "top": 810, "right": 5620, "bottom": 3205, "left": 4015}, {"solidity": 0.9954587480284984, "top": 800, "right": 1990, "bottom": 3160, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713534f.jpg"} -{"rects": [{"solidity": 0.9969455568856684, "top": 835, "right": 2030, "bottom": 3225, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717425f.jpg"} -{"rects": [{"solidity": 0.9969456400855092, "top": 410, "right": 3145, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/728477f.jpg"} -{"rects": [{"solidity": 0.9969456766780598, "top": 410, "right": 3135, "bottom": 1995, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728576f.jpg"} -{"rects": [{"solidity": 0.9969457214701176, "top": 505, "right": 3080, "bottom": 2150, "left": 650}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702411f.jpg"} -{"rects": [{"solidity": 0.9969458875572245, "top": 730, "right": 3815, "bottom": 3155, "left": 2195}, {"solidity": 0.9972967400517743, "top": 730, "right": 1990, "bottom": 3130, "left": 385}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721765f.jpg"} -{"rects": [{"solidity": 0.9969459099523639, "top": 795, "right": 2080, "bottom": 3210, "left": 450}, {"solidity": 0.9965380683068242, "top": 810, "right": 3960, "bottom": 3220, "left": 2345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718446f.jpg"} -{"rects": [{"solidity": 0.9969459369301971, "top": 810, "right": 2030, "bottom": 3225, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713084f.jpg"} -{"rects": [{"solidity": 0.9969461064454403, "top": 440, "right": 3150, "bottom": 2060, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701607f.jpg"} -{"rects": [{"solidity": 0.9969462804306155, "top": 490, "right": 3015, "bottom": 2140, "left": 570}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707364f.jpg"} -{"rects": [{"solidity": 0.996946498181977, "top": 2370, "right": 2975, "bottom": 3810, "left": 1170}, {"solidity": 0.9940548298426135, "top": 500, "right": 2980, "bottom": 1935, "left": 1140}, {"solidity": 0.993591282576422, "top": 4165, "right": 2955, "bottom": 5605, "left": 1140}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726890f.jpg"} -{"rects": [{"solidity": 0.9969465258746798, "top": 2150, "right": 3090, "bottom": 3785, "left": 665}, {"solidity": 0.9968408712678999, "top": 485, "right": 3065, "bottom": 2125, "left": 640}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702407f.jpg"} -{"rects": [{"solidity": 0.996946535749387, "top": 760, "right": 3860, "bottom": 3190, "left": 2225}, {"solidity": 0.9993495778664232, "top": 740, "right": 2005, "bottom": 3170, "left": 390}, {"solidity": 0.9978857470520587, "top": 780, "right": 5660, "bottom": 3205, "left": 4040}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731728f.jpg"} -{"rects": [{"solidity": 0.9969465648854962, "top": 925, "right": 2235, "bottom": 3310, "left": 645}, {"solidity": 0.9948290202864082, "top": 910, "right": 3860, "bottom": 3300, "left": 2275}, {"solidity": 0.9941101538667829, "top": 915, "right": 5485, "bottom": 3300, "left": 3900}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708508f.jpg"} -{"rects": [{"solidity": 0.9969467769919453, "top": 795, "right": 2035, "bottom": 3215, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734020f.jpg"} -{"rects": [{"solidity": 0.9969467952587037, "top": 355, "right": 3020, "bottom": 1985, "left": 605}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703346f.jpg"} -{"rects": [{"solidity": 0.9969468263148032, "top": 755, "right": 2065, "bottom": 3165, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708106f.jpg"} -{"rects": [{"solidity": 0.9969471672363779, "top": 3365, "right": 3205, "bottom": 4980, "left": 785}, {"solidity": 0.9964230402861568, "top": 760, "right": 3155, "bottom": 2375, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731090f.jpg"} -{"rects": [{"solidity": 0.9969471968175128, "top": 360, "right": 4300, "bottom": 3750, "left": 1665}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708912f.jpg"} -{"rects": [{"solidity": 0.9969472139731291, "top": 2225, "right": 3180, "bottom": 3850, "left": 755}, {"solidity": 0.9974180138717205, "top": 4085, "right": 3180, "bottom": 5700, "left": 755}, {"solidity": 0.9987953445897371, "top": 395, "right": 3175, "bottom": 2000, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722834f.jpg"} -{"rects": [{"solidity": 0.9969473017983749, "top": 755, "right": 3815, "bottom": 3185, "left": 2185}, {"solidity": 0.9968090872065242, "top": 765, "right": 1970, "bottom": 3200, "left": 355}, {"solidity": 0.997211558539602, "top": 760, "right": 5655, "bottom": 3190, "left": 4040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734122f.jpg"} -{"rects": [{"solidity": 0.9969475775315307, "top": 775, "right": 2005, "bottom": 3175, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730385f.jpg"} -{"rects": [{"solidity": 0.9969476126670807, "top": 495, "right": 3275, "bottom": 2115, "left": 880}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713483f.jpg"} -{"rects": [{"solidity": 0.9969476362625617, "top": 285, "right": 4105, "bottom": 2690, "left": 1055}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715983f.jpg"} -{"rects": [{"solidity": 0.9969476565793476, "top": 660, "right": 3260, "bottom": 2475, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723151f.jpg"} -{"rects": [{"solidity": 0.996948193169735, "top": 2270, "right": 3175, "bottom": 3885, "left": 750}, {"solidity": 0.9951439962280975, "top": 420, "right": 3175, "bottom": 2045, "left": 745}, {"solidity": 0.9970837469002687, "top": 4145, "right": 3225, "bottom": 5745, "left": 795}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723789f.jpg"} -{"rects": [{"solidity": 0.9969482760900903, "top": 775, "right": 2065, "bottom": 3165, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721406f.jpg"} -{"rects": [{"solidity": 0.9969486722743567, "top": 485, "right": 5095, "bottom": 3710, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717099f.jpg"} -{"rects": [{"solidity": 0.9969486904126502, "top": 745, "right": 2035, "bottom": 3165, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721810f.jpg"} -{"rects": [{"solidity": 0.9969486937879832, "top": 365, "right": 2795, "bottom": 2805, "left": 1150}, {"solidity": 0.996793204511717, "top": 3185, "right": 2790, "bottom": 5620, "left": 1150}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704608f.jpg"} -{"rects": [{"solidity": 0.9969487477081966, "top": 540, "right": 3130, "bottom": 2110, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722395f.jpg"} -{"rects": [{"solidity": 0.9969487617917415, "top": 615, "right": 4855, "bottom": 3675, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732871f.jpg"} -{"rects": [{"solidity": 0.9969488413736658, "top": 1170, "right": 3410, "bottom": 4840, "left": 365}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/719137f.jpg"} -{"rects": [{"solidity": 0.9969488786962298, "top": 2295, "right": 3125, "bottom": 3880, "left": 740}, {"solidity": 0.996109818142455, "top": 470, "right": 3120, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714188f.jpg"} -{"rects": [{"solidity": 0.9969489443479524, "top": 760, "right": 2005, "bottom": 3160, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717563f.jpg"} -{"rects": [{"solidity": 0.9969491818114953, "top": 345, "right": 2935, "bottom": 1995, "left": 520}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703616f.jpg"} -{"rects": [{"solidity": 0.9969494047619047, "top": 450, "right": 3140, "bottom": 2060, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715526f.jpg"} -{"rects": [{"solidity": 0.9969494452083266, "top": 2235, "right": 3155, "bottom": 3870, "left": 740}, {"solidity": 0.9969877094684402, "top": 390, "right": 3145, "bottom": 2020, "left": 740}, {"solidity": 0.9957416331517424, "top": 4110, "right": 3160, "bottom": 5720, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734115f.jpg"} -{"rects": [{"solidity": 0.9969495385157465, "top": 900, "right": 1985, "bottom": 3305, "left": 380}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715560f.jpg"} -{"rects": [{"solidity": 0.9969495875816614, "top": 400, "right": 3120, "bottom": 2010, "left": 690}, {"solidity": 0.9990045345390962, "top": 2245, "right": 3100, "bottom": 3850, "left": 675}, {"solidity": 0.9958450904760672, "top": 4100, "right": 3095, "bottom": 5715, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726610f.jpg"} -{"rects": [{"solidity": 0.9969496989919205, "top": 2195, "right": 3150, "bottom": 3810, "left": 725}, {"solidity": 0.9969496875603943, "top": 425, "right": 3155, "bottom": 2045, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724430f.jpg"} -{"rects": [{"solidity": 0.9969497971357694, "top": 2200, "right": 3095, "bottom": 3825, "left": 680}, {"solidity": 0.9983558994197292, "top": 4110, "right": 3070, "bottom": 5730, "left": 660}, {"solidity": 0.9959713329900546, "top": 350, "right": 3110, "bottom": 1975, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734047f.jpg"} -{"rects": [{"solidity": 0.9969498191886454, "top": 790, "right": 2075, "bottom": 3205, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721162f.jpg"} -{"rects": [{"solidity": 0.9969498827611186, "top": 520, "right": 2645, "bottom": 3235, "left": 695}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727573f.jpg"} -{"rects": [{"solidity": 0.9969500891438003, "top": 780, "right": 1965, "bottom": 3210, "left": 350}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701430f.jpg"} -{"rects": [{"solidity": 0.9969506299407714, "top": 475, "right": 5085, "bottom": 3715, "left": 1080}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708944f.jpg"} -{"rects": [{"solidity": 0.9969508496114329, "top": 790, "right": 3870, "bottom": 3220, "left": 2240}, {"solidity": 0.99618424187869, "top": 805, "right": 2020, "bottom": 3195, "left": 425}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712748f.jpg"} -{"rects": [{"solidity": 0.9969508583322723, "top": 490, "right": 4800, "bottom": 3510, "left": 1040}], "shape": {"h": 3855, "w": 6020}, "file": "/usr/local/google/home/danvk/milstein/713972f.jpg"} -{"rects": [{"solidity": 0.9969510046951966, "top": 380, "right": 3080, "bottom": 2015, "left": 660}, {"solidity": 0.9969790952100301, "top": 2245, "right": 3085, "bottom": 3875, "left": 675}, {"solidity": 0.9999352861806875, "top": 4120, "right": 3090, "bottom": 5735, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720904f.jpg"} -{"rects": [{"solidity": 0.9969511487102928, "top": 435, "right": 3175, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712025f.jpg"} -{"rects": [{"solidity": 0.9969512700280019, "top": 425, "right": 3180, "bottom": 2010, "left": 780}, {"solidity": 0.9690995817252662, "top": 2430, "right": 3090, "bottom": 3800, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724146f.jpg"} -{"rects": [{"solidity": 0.9969513267966538, "top": 2270, "right": 2810, "bottom": 4690, "left": 1180}, {"solidity": 0.9975466410441188, "top": 375, "right": 3195, "bottom": 2000, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733545f.jpg"} -{"rects": [{"solidity": 0.9969514034479118, "top": 410, "right": 5145, "bottom": 3730, "left": 1080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714707f.jpg"} -{"rects": [{"solidity": 0.9969515065531246, "top": 695, "right": 2040, "bottom": 3110, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718375f.jpg"} -{"rects": [{"solidity": 0.9969517292826917, "top": 410, "right": 3130, "bottom": 2035, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728639f.jpg"} -{"rects": [{"solidity": 0.9969517709875592, "top": 800, "right": 2025, "bottom": 3185, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713415f.jpg"} -{"rects": [{"solidity": 0.9969517771139426, "top": 450, "right": 3280, "bottom": 2070, "left": 845}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/700970f.jpg"} -{"rects": [{"solidity": 0.9969518146768395, "top": 530, "right": 2900, "bottom": 3600, "left": 875}, {"solidity": 0.996827909462821, "top": 530, "right": 5300, "bottom": 3590, "left": 3290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709251f.jpg"} -{"rects": [{"solidity": 0.9969519694284055, "top": 2430, "right": 3515, "bottom": 4265, "left": 805}, {"solidity": 0.9977843897638298, "top": 325, "right": 3525, "bottom": 2150, "left": 820}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/706418f.jpg"} -{"rects": [{"solidity": 0.9969520525665214, "top": 410, "right": 3140, "bottom": 2015, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729946f.jpg"} -{"rects": [{"solidity": 0.9969522497465624, "top": 2190, "right": 3140, "bottom": 3820, "left": 755}, {"solidity": 0.9957697576721952, "top": 330, "right": 3145, "bottom": 1955, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714840f.jpg"} -{"rects": [{"solidity": 0.9969522579651509, "top": 600, "right": 3130, "bottom": 3845, "left": 510}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717679f.jpg"} -{"rects": [{"solidity": 0.9969522639862965, "top": 390, "right": 3115, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704432f.jpg"} -{"rects": [{"solidity": 0.9969525613793367, "top": 2125, "right": 2775, "bottom": 3555, "left": 935}, {"solidity": 0.9972882904807077, "top": 655, "right": 2755, "bottom": 2055, "left": 940}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705898f.jpg"} -{"rects": [{"solidity": 0.9969527597313795, "top": 790, "right": 3880, "bottom": 3210, "left": 2260}, {"solidity": 0.9983577245252949, "top": 790, "right": 2095, "bottom": 3210, "left": 490}, {"solidity": 0.995246184352454, "top": 790, "right": 5655, "bottom": 3210, "left": 4035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718402f.jpg"} -{"rects": [{"solidity": 0.9969527956253833, "top": 430, "right": 3075, "bottom": 2055, "left": 655}, {"solidity": 0.9951048769569139, "top": 2310, "right": 3060, "bottom": 3935, "left": 640}, {"solidity": 0.9964616142213758, "top": 4145, "right": 3040, "bottom": 5755, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729933f.jpg"} -{"rects": [{"solidity": 0.9969528452807191, "top": 430, "right": 5065, "bottom": 3665, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722043f.jpg"} -{"rects": [{"solidity": 0.9969529741274571, "top": 4145, "right": 3225, "bottom": 5765, "left": 790}, {"solidity": 0.9944205727031193, "top": 2305, "right": 3210, "bottom": 3910, "left": 810}, {"solidity": 0.9987836198547616, "top": 455, "right": 3235, "bottom": 2045, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718094f.jpg"} -{"rects": [{"solidity": 0.9969529926416669, "top": 500, "right": 2835, "bottom": 2140, "left": 395}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722841f.jpg"} -{"rects": [{"solidity": 0.9969532836831415, "top": 420, "right": 3105, "bottom": 2010, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729289f.jpg"} -{"rects": [{"solidity": 0.9969532928306679, "top": 665, "right": 5095, "bottom": 3435, "left": 1005}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709797f.jpg"} -{"rects": [{"solidity": 0.9969533893543433, "top": 2605, "right": 1905, "bottom": 3500, "left": 770}, {"solidity": 0.9877533408632309, "top": 1410, "right": 1930, "bottom": 2290, "left": 785}, {"solidity": 0.9905022947475778, "top": 275, "right": 1955, "bottom": 1165, "left": 825}], "shape": {"h": 3945, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727142f.jpg"} -{"rects": [{"solidity": 0.9969535961590523, "top": 2060, "right": 5625, "bottom": 3675, "left": 3230}, {"solidity": 0.9946181065100466, "top": 2065, "right": 2730, "bottom": 3670, "left": 350}, {"solidity": 0.9980707237246844, "top": 420, "right": 2470, "bottom": 1835, "left": 660}, {"solidity": 0.995728223170397, "top": 430, "right": 5355, "bottom": 1830, "left": 3545}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722429f.jpg"} -{"rects": [{"solidity": 0.9969536825635049, "top": 2295, "right": 3245, "bottom": 3920, "left": 815}, {"solidity": 0.9966370613089592, "top": 415, "right": 3215, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724638f.jpg"} -{"rects": [{"solidity": 0.996953959475074, "top": 410, "right": 3555, "bottom": 2245, "left": 820}], "shape": {"h": 6855, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/700026f.jpg"} -{"rects": [{"solidity": 0.9969539743610211, "top": 405, "right": 3270, "bottom": 2030, "left": 840}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725204f.jpg"} -{"rects": [{"solidity": 0.9969540166611619, "top": 2070, "right": 3110, "bottom": 3530, "left": 750}, {"solidity": 0.9960062758522322, "top": 425, "right": 3125, "bottom": 1845, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704406f.jpg"} -{"rects": [{"solidity": 0.9969540730305017, "top": 790, "right": 2090, "bottom": 3195, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707939f.jpg"} -{"rects": [{"solidity": 0.9969540792983936, "top": 605, "right": 3405, "bottom": 2590, "left": 365}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712227f.jpg"} -{"rects": [{"solidity": 0.9969542970517595, "top": 870, "right": 2360, "bottom": 2305, "left": 340}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508061.jpg"} -{"rects": [{"solidity": 0.9969543179963026, "top": 875, "right": 2035, "bottom": 3300, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729467f.jpg"} -{"rects": [{"solidity": 0.9969544633705891, "top": 705, "right": 1965, "bottom": 3100, "left": 345}, {"solidity": 0.994769663396757, "top": 720, "right": 5680, "bottom": 3125, "left": 4050}, {"solidity": 0.9966007193062049, "top": 725, "right": 3810, "bottom": 3105, "left": 2200}], "shape": {"h": 3845, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/732488f.jpg"} -{"rects": [{"solidity": 0.9969548234568536, "top": 460, "right": 3185, "bottom": 2080, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718847f.jpg"} -{"rects": [{"solidity": 0.9969549909601294, "top": 385, "right": 3270, "bottom": 2025, "left": 835}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700274f.jpg"} -{"rects": [{"solidity": 0.9969550109429294, "top": 700, "right": 2015, "bottom": 3095, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711757f.jpg"} -{"rects": [{"solidity": 0.9969550380132274, "top": 765, "right": 3760, "bottom": 3175, "left": 2150}, {"solidity": 0.9966806546936352, "top": 775, "right": 1960, "bottom": 3150, "left": 375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724273f.jpg"} -{"rects": [{"solidity": 0.9969553495537612, "top": 2240, "right": 3255, "bottom": 3835, "left": 870}, {"solidity": 0.9973222622382286, "top": 4095, "right": 3240, "bottom": 5680, "left": 855}, {"solidity": 0.9976007341286394, "top": 365, "right": 3270, "bottom": 1950, "left": 890}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733259f.jpg"} -{"rects": [{"solidity": 0.996955436925151, "top": 2250, "right": 3175, "bottom": 3875, "left": 750}, {"solidity": 0.9959380969839646, "top": 395, "right": 3165, "bottom": 2020, "left": 745}, {"solidity": 0.9983202169168706, "top": 4110, "right": 3165, "bottom": 5690, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728701f.jpg"} -{"rects": [{"solidity": 0.9969557759035205, "top": 2225, "right": 3135, "bottom": 3840, "left": 735}, {"solidity": 0.9972435384244885, "top": 450, "right": 3135, "bottom": 2060, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710391f.jpg"} -{"rects": [{"solidity": 0.9969559388338007, "top": 835, "right": 3920, "bottom": 3245, "left": 2305}, {"solidity": 0.9956299808996905, "top": 835, "right": 2025, "bottom": 3230, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718231f.jpg"} -{"rects": [{"solidity": 0.9969559710780753, "top": 480, "right": 1890, "bottom": 2765, "left": 375}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716395f.jpg"} -{"rects": [{"solidity": 0.9969562609300067, "top": 830, "right": 3820, "bottom": 3255, "left": 2180}, {"solidity": 0.997273550580721, "top": 805, "right": 1935, "bottom": 3235, "left": 300}, {"solidity": 0.9981874335151256, "top": 855, "right": 5690, "bottom": 3270, "left": 4070}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713775f.jpg"} -{"rects": [{"solidity": 0.9969562688850399, "top": 730, "right": 2050, "bottom": 3170, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723711f.jpg"} -{"rects": [{"solidity": 0.9969563184754989, "top": 1120, "right": 3635, "bottom": 5120, "left": 415}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717586f.jpg"} -{"rects": [{"solidity": 0.9969563291017318, "top": 440, "right": 3165, "bottom": 2065, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714198f.jpg"} -{"rects": [{"solidity": 0.9969568660301172, "top": 595, "right": 3460, "bottom": 2640, "left": 635}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733430f.jpg"} -{"rects": [{"solidity": 0.9969569982592998, "top": 4145, "right": 3225, "bottom": 5765, "left": 800}, {"solidity": 0.9947186163935695, "top": 2285, "right": 3210, "bottom": 3905, "left": 785}, {"solidity": 0.9935419884562231, "top": 440, "right": 3195, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734690f.jpg"} -{"rects": [{"solidity": 0.9969570930989168, "top": 355, "right": 3305, "bottom": 1985, "left": 870}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/700933f.jpg"} -{"rects": [{"solidity": 0.9969571110621357, "top": 415, "right": 5085, "bottom": 3720, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716826f.jpg"} -{"rects": [{"solidity": 0.9969572697278775, "top": 410, "right": 5140, "bottom": 3770, "left": 1060}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720555f.jpg"} -{"rects": [{"solidity": 0.9969573645898862, "top": 410, "right": 3265, "bottom": 2040, "left": 850}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726808f.jpg"} -{"rects": [{"solidity": 0.9969575168871769, "top": 315, "right": 2410, "bottom": 1500, "left": 500}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716518f.jpg"} -{"rects": [{"solidity": 0.9969576871659261, "top": 520, "right": 4950, "bottom": 3455, "left": 1155}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718228f.jpg"} -{"rects": [{"solidity": 0.9969577861815005, "top": 595, "right": 2830, "bottom": 2000, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725792f.jpg"} -{"rects": [{"solidity": 0.9969578251145971, "top": 390, "right": 3140, "bottom": 2020, "left": 700}, {"solidity": 0.9970426931833295, "top": 2150, "right": 3060, "bottom": 3600, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710779f.jpg"} -{"rects": [{"solidity": 0.9969578723827465, "top": 325, "right": 2395, "bottom": 1525, "left": 595}], "shape": {"h": 4655, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715782f.jpg"} -{"rects": [{"solidity": 0.996957924413141, "top": 410, "right": 3135, "bottom": 2030, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700109f.jpg"} -{"rects": [{"solidity": 0.9969579573258965, "top": 370, "right": 3185, "bottom": 1970, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700420f.jpg"} -{"rects": [{"solidity": 0.9969580520987134, "top": 4130, "right": 3225, "bottom": 5735, "left": 835}, {"solidity": 0.9976939113312211, "top": 655, "right": 3205, "bottom": 2250, "left": 815}, {"solidity": 0.9981598543769651, "top": 2400, "right": 3210, "bottom": 3990, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733151f.jpg"} -{"rects": [{"solidity": 0.9969580578722123, "top": 725, "right": 2030, "bottom": 3125, "left": 425}, {"solidity": 0.9956823185357999, "top": 740, "right": 3860, "bottom": 3140, "left": 2250}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732328f.jpg"} -{"rects": [{"solidity": 0.9969580659563267, "top": 485, "right": 3150, "bottom": 2075, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718018f.jpg"} -{"rects": [{"solidity": 0.9969580752410777, "top": 295, "right": 4005, "bottom": 2715, "left": 985}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516953.jpg"} -{"rects": [{"solidity": 0.9969581223486994, "top": 1100, "right": 3485, "bottom": 5120, "left": 275}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717428f.jpg"} -{"rects": [{"solidity": 0.9969582581466936, "top": 2220, "right": 3195, "bottom": 3810, "left": 805}, {"solidity": 0.9954431716060147, "top": 400, "right": 3195, "bottom": 1980, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724529f.jpg"} -{"rects": [{"solidity": 0.996958370678312, "top": 400, "right": 3185, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701027f.jpg"} -{"rects": [{"solidity": 0.9969586473098588, "top": 805, "right": 1945, "bottom": 3225, "left": 325}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721525f.jpg"} -{"rects": [{"solidity": 0.9969594531381563, "top": 775, "right": 3850, "bottom": 3235, "left": 2205}, {"solidity": 0.9977410511474897, "top": 795, "right": 5720, "bottom": 3255, "left": 4085}, {"solidity": 0.997610528764832, "top": 780, "right": 1990, "bottom": 3230, "left": 355}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700018f.jpg"} -{"rects": [{"solidity": 0.9969595399905624, "top": 2105, "right": 2760, "bottom": 3525, "left": 935}, {"solidity": 0.9955274786038295, "top": 665, "right": 2755, "bottom": 2085, "left": 935}, {"solidity": 0.9959500821793774, "top": 670, "right": 5265, "bottom": 2090, "left": 3455}, {"solidity": 0.9930906731516932, "top": 2130, "right": 5265, "bottom": 3540, "left": 3450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705077f.jpg"} -{"rects": [{"solidity": 0.9969596489655836, "top": 830, "right": 2100, "bottom": 3220, "left": 510}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712561f.jpg"} -{"rects": [{"solidity": 0.9969598834776949, "top": 455, "right": 3145, "bottom": 2150, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701637f.jpg"} -{"rects": [{"solidity": 0.9969603277861971, "top": 440, "right": 5045, "bottom": 3700, "left": 1045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717577f.jpg"} -{"rects": [{"solidity": 0.996960388452052, "top": 755, "right": 2035, "bottom": 3175, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710867f.jpg"} -{"rects": [{"solidity": 0.9969605160919616, "top": 755, "right": 2050, "bottom": 3165, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719990f.jpg"} -{"rects": [{"solidity": 0.9969607121171014, "top": 740, "right": 2015, "bottom": 3155, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721031f.jpg"} -{"rects": [{"solidity": 0.9969607849558856, "top": 600, "right": 4000, "bottom": 2290, "left": 2860}, {"solidity": 0.9957093915196614, "top": 595, "right": 2710, "bottom": 2290, "left": 1570}, {"solidity": 0.9950876043884067, "top": 600, "right": 1425, "bottom": 2305, "left": 280}], "shape": {"h": 2735, "w": 4280}, "file": "/usr/local/google/home/danvk/milstein/724422f.jpg"} -{"rects": [{"solidity": 0.996960861089358, "top": 765, "right": 2035, "bottom": 3140, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715088f.jpg"} -{"rects": [{"solidity": 0.9969611334408982, "top": 300, "right": 5045, "bottom": 3560, "left": 1000}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725711f.jpg"} -{"rects": [{"solidity": 0.9969613241538633, "top": 560, "right": 2930, "bottom": 3455, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718595f.jpg"} -{"rects": [{"solidity": 0.9969614285483637, "top": 425, "right": 3135, "bottom": 2045, "left": 720}, {"solidity": 0.9970030810656862, "top": 2310, "right": 3130, "bottom": 3925, "left": 720}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706643f.jpg"} -{"rects": [{"solidity": 0.9969615440382787, "top": 900, "right": 2415, "bottom": 3315, "left": 790}, {"solidity": 0.9946457513313267, "top": 1250, "right": 5320, "bottom": 2875, "left": 2890}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734294f.jpg"} -{"rects": [{"solidity": 0.9969616555717108, "top": 430, "right": 2950, "bottom": 2050, "left": 550}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707680f.jpg"} -{"rects": [{"solidity": 0.9969617746601006, "top": 790, "right": 3820, "bottom": 3195, "left": 2200}, {"solidity": 0.9964693867626319, "top": 780, "right": 1960, "bottom": 3185, "left": 345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718629f.jpg"} -{"rects": [{"solidity": 0.9969617843323261, "top": 405, "right": 3095, "bottom": 2010, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729169f.jpg"} -{"rects": [{"solidity": 0.9969618223894298, "top": 470, "right": 3215, "bottom": 2080, "left": 790}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706319f.jpg"} -{"rects": [{"solidity": 0.9969618240879724, "top": 440, "right": 3165, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719917f.jpg"} -{"rects": [{"solidity": 0.9969619155838023, "top": 1115, "right": 3545, "bottom": 5165, "left": 415}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726334f.jpg"} -{"rects": [{"solidity": 0.9969621180003282, "top": 410, "right": 5125, "bottom": 3660, "left": 1045}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732719f.jpg"} -{"rects": [{"solidity": 0.9969621595759706, "top": 425, "right": 3300, "bottom": 2135, "left": 735}, {"solidity": 0.9958363818540295, "top": 2205, "right": 3235, "bottom": 3965, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724694f.jpg"} -{"rects": [{"solidity": 0.9969623077536058, "top": 490, "right": 3005, "bottom": 2125, "left": 580}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702408f.jpg"} -{"rects": [{"solidity": 0.9969623663748854, "top": 800, "right": 3895, "bottom": 3215, "left": 2280}, {"solidity": 0.9950162591284324, "top": 795, "right": 2040, "bottom": 3200, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721806f.jpg"} -{"rects": [{"solidity": 0.9969623699936101, "top": 790, "right": 3885, "bottom": 3215, "left": 2260}, {"solidity": 0.9964989255877148, "top": 805, "right": 5735, "bottom": 3230, "left": 4105}, {"solidity": 0.9969416203617258, "top": 785, "right": 2055, "bottom": 3205, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731653f.jpg"} -{"rects": [{"solidity": 0.9969625103425085, "top": 915, "right": 4440, "bottom": 2955, "left": 1620}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704277f.jpg"} -{"rects": [{"solidity": 0.9969625774649136, "top": 360, "right": 4330, "bottom": 2740, "left": 1350}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508207.jpg"} -{"rects": [{"solidity": 0.9969626804968722, "top": 780, "right": 3350, "bottom": 2775, "left": 305}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723198f.jpg"} -{"rects": [{"solidity": 0.996962682995908, "top": 1620, "right": 3370, "bottom": 5060, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723882f.jpg"} -{"rects": [{"solidity": 0.9969627379805912, "top": 2125, "right": 2700, "bottom": 3535, "left": 890}, {"solidity": 0.9971713636612198, "top": 655, "right": 2685, "bottom": 2060, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702855f.jpg"} -{"rects": [{"solidity": 0.996962910208595, "top": 365, "right": 4900, "bottom": 3660, "left": 800}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/720359f.jpg"} -{"rects": [{"solidity": 0.9969629743473235, "top": 545, "right": 3130, "bottom": 2125, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724882f.jpg"} -{"rects": [{"solidity": 0.9969631121123316, "top": 485, "right": 3315, "bottom": 2500, "left": 490}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729234f.jpg"} -{"rects": [{"solidity": 0.9969632883249282, "top": 760, "right": 3890, "bottom": 3185, "left": 2250}, {"solidity": 0.9971484268015659, "top": 745, "right": 2025, "bottom": 3155, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705424f.jpg"} -{"rects": [{"solidity": 0.9969632993030049, "top": 885, "right": 5740, "bottom": 3310, "left": 4115}, {"solidity": 0.9983960984769455, "top": 880, "right": 3870, "bottom": 3275, "left": 2260}, {"solidity": 0.997898312420285, "top": 870, "right": 2005, "bottom": 3275, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734193f.jpg"} -{"rects": [{"solidity": 0.9969634074241795, "top": 760, "right": 6625, "bottom": 3490, "left": 4785}, {"solidity": 0.9958923256375191, "top": 770, "right": 4525, "bottom": 3510, "left": 2665}, {"solidity": 0.9974930629615215, "top": 800, "right": 2340, "bottom": 3525, "left": 510}], "shape": {"h": 4430, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/701577f.jpg"} -{"rects": [{"solidity": 0.9969634113829808, "top": 840, "right": 2015, "bottom": 3240, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707721f.jpg"} -{"rects": [{"solidity": 0.9969636319257994, "top": 765, "right": 1990, "bottom": 3175, "left": 380}, {"solidity": 0.9957545449809866, "top": 765, "right": 3815, "bottom": 3175, "left": 2195}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719614f.jpg"} -{"rects": [{"solidity": 0.9969637001834492, "top": 470, "right": 5160, "bottom": 3720, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701481f.jpg"} -{"rects": [{"solidity": 0.9969637452202708, "top": 925, "right": 3790, "bottom": 3360, "left": 2140}, {"solidity": 0.9967980680083983, "top": 900, "right": 1930, "bottom": 3340, "left": 300}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705370f.jpg"} -{"rects": [{"solidity": 0.9969638107914987, "top": 720, "right": 3315, "bottom": 2580, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714905f.jpg"} -{"rects": [{"solidity": 0.9969641461821256, "top": 900, "right": 3890, "bottom": 3325, "left": 2265}, {"solidity": 0.9668611286355291, "top": 995, "right": 2005, "bottom": 3300, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710128f.jpg"} -{"rects": [{"solidity": 0.9969643006923072, "top": 400, "right": 3070, "bottom": 2015, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729808f.jpg"} -{"rects": [{"solidity": 0.9969643091656649, "top": 620, "right": 2625, "bottom": 1995, "left": 805}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706800f.jpg"} -{"rects": [{"solidity": 0.9969644917654463, "top": 430, "right": 3160, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710497f.jpg"} -{"rects": [{"solidity": 0.9969646095963306, "top": 655, "right": 3715, "bottom": 2500, "left": 970}], "shape": {"h": 4430, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706434f.jpg"} -{"rects": [{"solidity": 0.9969650210691432, "top": 690, "right": 3980, "bottom": 3120, "left": 2360}, {"solidity": 0.9956065945977148, "top": 690, "right": 2105, "bottom": 3105, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704359f.jpg"} -{"rects": [{"solidity": 0.9969650937297996, "top": 410, "right": 3160, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700135f.jpg"} -{"rects": [{"solidity": 0.9969651397220338, "top": 780, "right": 5270, "bottom": 3560, "left": 1255}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718170f.jpg"} -{"rects": [{"solidity": 0.996965197670055, "top": 865, "right": 2040, "bottom": 3265, "left": 425}, {"solidity": 0.9941124694376529, "top": 865, "right": 3835, "bottom": 3275, "left": 2205}, {"solidity": 0.9953146401854388, "top": 870, "right": 5615, "bottom": 3265, "left": 4005}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700737f.jpg"} -{"rects": [{"solidity": 0.9969652767298761, "top": 490, "right": 3165, "bottom": 2065, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724884f.jpg"} -{"rects": [{"solidity": 0.9969653296196136, "top": 2280, "right": 3125, "bottom": 3900, "left": 715}, {"solidity": 0.9940253678071994, "top": 4145, "right": 3130, "bottom": 5755, "left": 715}, {"solidity": 0.996289479448293, "top": 395, "right": 3115, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734132f.jpg"} -{"rects": [{"solidity": 0.9969653425401754, "top": 640, "right": 3915, "bottom": 3050, "left": 2285}, {"solidity": 0.9963815576162376, "top": 645, "right": 5730, "bottom": 3060, "left": 4120}, {"solidity": 0.9655744597108916, "top": 1115, "right": 2020, "bottom": 3035, "left": 525}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705411f.jpg"} -{"rects": [{"solidity": 0.9969653888573669, "top": 795, "right": 2130, "bottom": 3220, "left": 500}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717723f.jpg"} -{"rects": [{"solidity": 0.9969655462128542, "top": 475, "right": 3915, "bottom": 2560, "left": 1210}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508737.jpg"} -{"rects": [{"solidity": 0.9969657784287498, "top": 800, "right": 3820, "bottom": 3225, "left": 2180}, {"solidity": 0.9964731766223884, "top": 805, "right": 1940, "bottom": 3210, "left": 355}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709448f.jpg"} -{"rects": [{"solidity": 0.9969658312311563, "top": 785, "right": 3875, "bottom": 3215, "left": 2250}, {"solidity": 0.9982944451788254, "top": 795, "right": 5680, "bottom": 3220, "left": 4070}, {"solidity": 0.9967920375402609, "top": 775, "right": 2060, "bottom": 3190, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732848f.jpg"} -{"rects": [{"solidity": 0.9969658659924147, "top": 2230, "right": 3125, "bottom": 3840, "left": 710}, {"solidity": 0.996084537654291, "top": 4040, "right": 3130, "bottom": 5650, "left": 715}, {"solidity": 0.9966529921208569, "top": 425, "right": 3115, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730987f.jpg"} -{"rects": [{"solidity": 0.9969660135637041, "top": 645, "right": 2680, "bottom": 2065, "left": 840}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706903f.jpg"} -{"rects": [{"solidity": 0.9969660843526176, "top": 685, "right": 3725, "bottom": 2870, "left": 645}, {"solidity": 0.997504799547216, "top": 3570, "right": 3720, "bottom": 5740, "left": 635}], "shape": {"h": 6860, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710264f.jpg"} -{"rects": [{"solidity": 0.9969661640332627, "top": 415, "right": 3225, "bottom": 2025, "left": 790}, {"solidity": 0.9958753658560145, "top": 2210, "right": 3215, "bottom": 3830, "left": 795}, {"solidity": 0.9959131578268829, "top": 4010, "right": 3205, "bottom": 5635, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720419f.jpg"} -{"rects": [{"solidity": 0.9969661984478224, "top": 2215, "right": 3120, "bottom": 3845, "left": 695}, {"solidity": 0.9970538571635335, "top": 370, "right": 3115, "bottom": 1995, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700496f.jpg"} -{"rects": [{"solidity": 0.9969663238489019, "top": 955, "right": 3930, "bottom": 5565, "left": 330}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711387f.jpg"} -{"rects": [{"solidity": 0.9969664319708685, "top": 935, "right": 3500, "bottom": 5035, "left": 270}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/709157f.jpg"} -{"rects": [{"solidity": 0.9969667011446303, "top": 560, "right": 4960, "bottom": 3555, "left": 1245}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720064f.jpg"} -{"rects": [{"solidity": 0.9969668246445498, "top": 380, "right": 3105, "bottom": 1700, "left": 885}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729987f.jpg"} -{"rects": [{"solidity": 0.9969668546210545, "top": 380, "right": 3145, "bottom": 1880, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731548f.jpg"} -{"rects": [{"solidity": 0.9969668658478826, "top": 810, "right": 2045, "bottom": 3230, "left": 435}, {"solidity": 0.9979748607921272, "top": 815, "right": 3825, "bottom": 3225, "left": 2230}, {"solidity": 0.9843321673447986, "top": 835, "right": 5655, "bottom": 3220, "left": 4060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720671f.jpg"} -{"rects": [{"solidity": 0.9969671899863524, "top": 325, "right": 5150, "bottom": 3585, "left": 1130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730061f.jpg"} -{"rects": [{"solidity": 0.9969672155024809, "top": 2345, "right": 3075, "bottom": 3965, "left": 670}, {"solidity": 0.9951378577459458, "top": 435, "right": 3085, "bottom": 2055, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722855f.jpg"} -{"rects": [{"solidity": 0.9969673072239553, "top": 290, "right": 2355, "bottom": 1495, "left": 550}, {"solidity": 0.994842612767141, "top": 1650, "right": 2355, "bottom": 2860, "left": 545}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716461f.jpg"} -{"rects": [{"solidity": 0.9969677676084361, "top": 400, "right": 3050, "bottom": 1965, "left": 1020}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701754f.jpg"} -{"rects": [{"solidity": 0.9969678263344922, "top": 2250, "right": 3215, "bottom": 3870, "left": 780}, {"solidity": 0.9944972294524376, "top": 4090, "right": 3230, "bottom": 5720, "left": 795}, {"solidity": 0.9958663162816193, "top": 435, "right": 3205, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734515f.jpg"} -{"rects": [{"solidity": 0.9969679742277809, "top": 750, "right": 2030, "bottom": 3180, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713458f.jpg"} -{"rects": [{"solidity": 0.9969682010350781, "top": 440, "right": 5090, "bottom": 3750, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719041f.jpg"} -{"rects": [{"solidity": 0.9969682369560443, "top": 360, "right": 3190, "bottom": 1950, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729909f.jpg"} -{"rects": [{"solidity": 0.9969682463698739, "top": 3225, "right": 3245, "bottom": 5150, "left": 540}, {"solidity": 0.9964812234022672, "top": 760, "right": 3260, "bottom": 2575, "left": 655}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714357f.jpg"} -{"rects": [{"solidity": 0.9969682517104137, "top": 855, "right": 5315, "bottom": 3175, "left": 3365}, {"solidity": 0.9965372395156092, "top": 865, "right": 2745, "bottom": 3175, "left": 815}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703243f.jpg"} -{"rects": [{"solidity": 0.9969682581439965, "top": 1360, "right": 2900, "bottom": 2980, "left": 475}, {"solidity": 0.9968033279347996, "top": 1365, "right": 5640, "bottom": 2975, "left": 3245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721956f.jpg"} -{"rects": [{"solidity": 0.9969684438223693, "top": 2255, "right": 3215, "bottom": 3885, "left": 780}, {"solidity": 0.9963206767156395, "top": 410, "right": 3220, "bottom": 2045, "left": 780}, {"solidity": 0.97402607884998, "top": 4115, "right": 3105, "bottom": 5520, "left": 880}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732810f.jpg"} -{"rects": [{"solidity": 0.9969685996917329, "top": 395, "right": 3230, "bottom": 2020, "left": 805}, {"solidity": 0.9962525731328402, "top": 2130, "right": 2985, "bottom": 3640, "left": 1020}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/711790f.jpg"} -{"rects": [{"solidity": 0.9969686537762733, "top": 2280, "right": 3105, "bottom": 3920, "left": 680}, {"solidity": 0.9968437446145794, "top": 4140, "right": 3095, "bottom": 5780, "left": 675}, {"solidity": 0.997339016944909, "top": 425, "right": 3085, "bottom": 2055, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720685f.jpg"} -{"rects": [{"solidity": 0.996968670665521, "top": 460, "right": 3280, "bottom": 3915, "left": 670}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712548f.jpg"} -{"rects": [{"solidity": 0.9969686892977497, "top": 570, "right": 5945, "bottom": 3630, "left": 3900}, {"solidity": 0.9970015327757878, "top": 555, "right": 3870, "bottom": 3615, "left": 1830}, {"solidity": 0.9974546363603898, "top": 860, "right": 1790, "bottom": 3260, "left": 170}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716696f.jpg"} -{"rects": [{"solidity": 0.996968948038443, "top": 620, "right": 2715, "bottom": 2035, "left": 800}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706667f.jpg"} -{"rects": [{"solidity": 0.9969690820602511, "top": 2260, "right": 3175, "bottom": 3875, "left": 755}, {"solidity": 0.9965435851008795, "top": 4105, "right": 3180, "bottom": 5715, "left": 760}, {"solidity": 0.9968503783762743, "top": 450, "right": 3165, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731877f.jpg"} -{"rects": [{"solidity": 0.9969691186507564, "top": 670, "right": 2040, "bottom": 3085, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727694f.jpg"} -{"rects": [{"solidity": 0.9969691567124265, "top": 3960, "right": 3210, "bottom": 5550, "left": 810}, {"solidity": 0.9973856685597652, "top": 400, "right": 3190, "bottom": 1990, "left": 800}, {"solidity": 0.9965832113839981, "top": 2180, "right": 3190, "bottom": 3765, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730760f.jpg"} -{"rects": [{"solidity": 0.9969692397093809, "top": 810, "right": 2020, "bottom": 3235, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707314f.jpg"} -{"rects": [{"solidity": 0.9969693859879801, "top": 405, "right": 3090, "bottom": 2035, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728425f.jpg"} -{"rects": [{"solidity": 0.9969694219537019, "top": 405, "right": 3105, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701992f.jpg"} -{"rects": [{"solidity": 0.9969698923344723, "top": 645, "right": 3465, "bottom": 3095, "left": 240}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720070f.jpg"} -{"rects": [{"solidity": 0.9969700395703788, "top": 780, "right": 2030, "bottom": 3190, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723252f.jpg"} -{"rects": [{"solidity": 0.9969700614765423, "top": 810, "right": 3815, "bottom": 3220, "left": 2200}, {"solidity": 0.995534471065797, "top": 820, "right": 1975, "bottom": 3220, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716920f.jpg"} -{"rects": [{"solidity": 0.9969702539789186, "top": 805, "right": 3950, "bottom": 3250, "left": 2315}, {"solidity": 0.9985729724182826, "top": 810, "right": 2070, "bottom": 3240, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712749f.jpg"} -{"rects": [{"solidity": 0.9969703610468035, "top": 985, "right": 3605, "bottom": 5095, "left": 335}], "shape": {"h": 6230, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/705101f.jpg"} -{"rects": [{"solidity": 0.9969704465940816, "top": 890, "right": 2045, "bottom": 3325, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729490f.jpg"} -{"rects": [{"solidity": 0.9969704716603225, "top": 480, "right": 2720, "bottom": 3580, "left": 690}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713138f.jpg"} -{"rects": [{"solidity": 0.9969706315092873, "top": 2250, "right": 3085, "bottom": 3870, "left": 655}, {"solidity": 0.996111408469778, "top": 400, "right": 3090, "bottom": 2015, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729833f.jpg"} -{"rects": [{"solidity": 0.9969706945561134, "top": 735, "right": 2025, "bottom": 3170, "left": 385}, {"solidity": 0.9964111749902166, "top": 750, "right": 3850, "bottom": 3185, "left": 2205}, {"solidity": 0.9965685320020301, "top": 780, "right": 5665, "bottom": 3205, "left": 4025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732561f.jpg"} -{"rects": [{"solidity": 0.9969707240199374, "top": 455, "right": 5120, "bottom": 3670, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732641f.jpg"} -{"rects": [{"solidity": 0.9969707685514784, "top": 470, "right": 5045, "bottom": 3690, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720764f.jpg"} -{"rects": [{"solidity": 0.9969707958871762, "top": 480, "right": 4350, "bottom": 3415, "left": 685}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731795f.jpg"} -{"rects": [{"solidity": 0.9969708087258891, "top": 765, "right": 2030, "bottom": 3180, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702903f.jpg"} -{"rects": [{"solidity": 0.9969708358629905, "top": 2070, "right": 3425, "bottom": 3700, "left": 1010}, {"solidity": 0.9965293388924289, "top": 395, "right": 3420, "bottom": 2015, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709277f.jpg"} -{"rects": [{"solidity": 0.9969708801041158, "top": 780, "right": 3895, "bottom": 3180, "left": 2280}, {"solidity": 0.9986599763295089, "top": 775, "right": 2030, "bottom": 3180, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724598f.jpg"} -{"rects": [{"solidity": 0.9969708918498328, "top": 465, "right": 5080, "bottom": 3710, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704071f.jpg"} -{"rects": [{"solidity": 0.9969713936679222, "top": 775, "right": 3895, "bottom": 3210, "left": 2260}, {"solidity": 0.9964606727268097, "top": 800, "right": 5710, "bottom": 3235, "left": 4065}, {"solidity": 0.9974021142299995, "top": 775, "right": 2055, "bottom": 3195, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731730f.jpg"} -{"rects": [{"solidity": 0.9969714413727198, "top": 310, "right": 5160, "bottom": 3570, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704043f.jpg"} -{"rects": [{"solidity": 0.9969715491739911, "top": 480, "right": 3300, "bottom": 2605, "left": 515}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517115.jpg"} -{"rects": [{"solidity": 0.9969719125477992, "top": 780, "right": 2015, "bottom": 3185, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708471f.jpg"} -{"rects": [{"solidity": 0.9969720237040537, "top": 1290, "right": 2340, "bottom": 3405, "left": 815}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509517.jpg"} -{"rects": [{"solidity": 0.9969721074645249, "top": 800, "right": 2050, "bottom": 3220, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715362f.jpg"} -{"rects": [{"solidity": 0.9969725093608987, "top": 810, "right": 3905, "bottom": 3240, "left": 2275}, {"solidity": 0.9978920755725116, "top": 805, "right": 2015, "bottom": 3215, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731826f.jpg"} -{"rects": [{"solidity": 0.9969728168667521, "top": 785, "right": 2040, "bottom": 3200, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721751f.jpg"} -{"rects": [{"solidity": 0.9969728577944924, "top": 715, "right": 3895, "bottom": 3150, "left": 2270}, {"solidity": 0.9976584927750068, "top": 725, "right": 2035, "bottom": 3150, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713238f.jpg"} -{"rects": [{"solidity": 0.9969728842256484, "top": 580, "right": 3200, "bottom": 2205, "left": 765}, {"solidity": 1.0, "top": 4605, "right": 3805, "bottom": 6010, "left": 2870}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/707609f.jpg"} -{"rects": [{"solidity": 0.9969729759344739, "top": 450, "right": 2645, "bottom": 3655, "left": 625}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733040f.jpg"} -{"rects": [{"solidity": 0.9969730018978258, "top": 670, "right": 5300, "bottom": 3425, "left": 3285}, {"solidity": 0.9952370811550995, "top": 710, "right": 2785, "bottom": 3440, "left": 770}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712320f.jpg"} -{"rects": [{"solidity": 0.9969732030086527, "top": 670, "right": 5025, "bottom": 3400, "left": 1110}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731124f.jpg"} -{"rects": [{"solidity": 0.9969732729476303, "top": 415, "right": 3240, "bottom": 2055, "left": 820}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719692f.jpg"} -{"rects": [{"solidity": 0.9969733230097839, "top": 405, "right": 3210, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702743f.jpg"} -{"rects": [{"solidity": 0.9969733695405614, "top": 2230, "right": 3345, "bottom": 3845, "left": 930}, {"solidity": 0.9942608894478107, "top": 4100, "right": 3335, "bottom": 5705, "left": 920}, {"solidity": 0.9932282560913817, "top": 435, "right": 3325, "bottom": 2015, "left": 940}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724954f.jpg"} -{"rects": [{"solidity": 0.9969737494493686, "top": 1150, "right": 3630, "bottom": 5055, "left": 365}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/726073f.jpg"} -{"rects": [{"solidity": 0.9969739588636595, "top": 1835, "right": 3230, "bottom": 3475, "left": 800}, {"solidity": 0.996702875399361, "top": 3515, "right": 2810, "bottom": 5935, "left": 1175}, {"solidity": 0.9958679436502221, "top": 160, "right": 3200, "bottom": 1775, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700401f.jpg"} -{"rects": [{"solidity": 0.9969739986820666, "top": 825, "right": 1940, "bottom": 3225, "left": 335}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718825f.jpg"} -{"rects": [{"solidity": 0.9969740174580544, "top": 825, "right": 2275, "bottom": 2330, "left": 875}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508057.jpg"} -{"rects": [{"solidity": 0.9969741302638533, "top": 2165, "right": 3115, "bottom": 3785, "left": 695}, {"solidity": 0.9941988869882393, "top": 4085, "right": 3100, "bottom": 5710, "left": 680}, {"solidity": 0.9963433699868518, "top": 385, "right": 3120, "bottom": 1995, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733904f.jpg"} -{"rects": [{"solidity": 0.9969741440290549, "top": 380, "right": 4895, "bottom": 3495, "left": 995}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726195f.jpg"} -{"rects": [{"solidity": 0.9969747055390925, "top": 385, "right": 3245, "bottom": 1990, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723150f.jpg"} -{"rects": [{"solidity": 0.9969747106210292, "top": 425, "right": 3185, "bottom": 2070, "left": 765}, {"solidity": 0.9990106364689129, "top": 2280, "right": 3190, "bottom": 3885, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711761f.jpg"} -{"rects": [{"solidity": 0.9969748069205085, "top": 780, "right": 1995, "bottom": 3150, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713379f.jpg"} -{"rects": [{"solidity": 0.9969748504154677, "top": 535, "right": 3235, "bottom": 2505, "left": 465}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704140f.jpg"} -{"rects": [{"solidity": 0.9969751205275803, "top": 445, "right": 3170, "bottom": 2060, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722281f.jpg"} -{"rects": [{"solidity": 0.9969751230933117, "top": 2425, "right": 2865, "bottom": 5680, "left": 795}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/733074f.jpg"} -{"rects": [{"solidity": 0.9969752883031302, "top": 2195, "right": 3285, "bottom": 3780, "left": 875}, {"solidity": 0.9958829169251593, "top": 395, "right": 3285, "bottom": 1975, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725184f.jpg"} -{"rects": [{"solidity": 0.9969754471810975, "top": 765, "right": 2020, "bottom": 3185, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722803f.jpg"} -{"rects": [{"solidity": 0.9969756416544058, "top": 1370, "right": 5625, "bottom": 2975, "left": 3215}, {"solidity": 0.9966227393481986, "top": 1375, "right": 2910, "bottom": 2975, "left": 500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718489f.jpg"} -{"rects": [{"solidity": 0.9969756796252746, "top": 870, "right": 3550, "bottom": 4875, "left": 305}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717011f.jpg"} -{"rects": [{"solidity": 0.9969759059222326, "top": 360, "right": 2340, "bottom": 1565, "left": 535}, {"solidity": 0.99667582944448, "top": 1710, "right": 2335, "bottom": 2915, "left": 530}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716491f.jpg"} -{"rects": [{"solidity": 0.996976136787632, "top": 805, "right": 2085, "bottom": 3210, "left": 470}, {"solidity": 0.9961199582299961, "top": 795, "right": 3895, "bottom": 3195, "left": 2285}, {"solidity": 0.9972613253217533, "top": 795, "right": 5675, "bottom": 3195, "left": 4070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709279f.jpg"} -{"rects": [{"solidity": 0.9969761444229529, "top": 425, "right": 3105, "bottom": 2040, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704841f.jpg"} -{"rects": [{"solidity": 0.9969761486006974, "top": 1010, "right": 3390, "bottom": 5030, "left": 230}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708482f.jpg"} -{"rects": [{"solidity": 0.9969767390935418, "top": 810, "right": 5120, "bottom": 2985, "left": 895}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730703f.jpg"} -{"rects": [{"solidity": 0.9969769176925237, "top": 460, "right": 4875, "bottom": 3670, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703000f.jpg"} -{"rects": [{"solidity": 0.9969769876880357, "top": 320, "right": 3105, "bottom": 1940, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707066f.jpg"} -{"rects": [{"solidity": 0.996977037563915, "top": 790, "right": 2040, "bottom": 3170, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714251f.jpg"} -{"rects": [{"solidity": 0.9969772172362079, "top": 875, "right": 1970, "bottom": 3260, "left": 380}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709440f.jpg"} -{"rects": [{"solidity": 0.9969772420902386, "top": 500, "right": 2990, "bottom": 2135, "left": 555}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705029f.jpg"} -{"rects": [{"solidity": 0.9969772436483275, "top": 3320, "right": 3270, "bottom": 5285, "left": 455}, {"solidity": 0.9975997856208909, "top": 800, "right": 3260, "bottom": 2750, "left": 460}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704222f.jpg"} -{"rects": [{"solidity": 0.9969772808528619, "top": 720, "right": 2835, "bottom": 3535, "left": 890}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706258f.jpg"} -{"rects": [{"solidity": 0.9969775390941698, "top": 865, "right": 2010, "bottom": 3280, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715493f.jpg"} -{"rects": [{"solidity": 0.9969776222038846, "top": 510, "right": 4935, "bottom": 3530, "left": 1165}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722726f.jpg"} -{"rects": [{"solidity": 0.9969779181977403, "top": 640, "right": 2670, "bottom": 2065, "left": 865}, {"solidity": 0.99731638139883, "top": 2150, "right": 2690, "bottom": 3555, "left": 865}, {"solidity": 0.9972598689073974, "top": 625, "right": 5310, "bottom": 2040, "left": 3495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703895f.jpg"} -{"rects": [{"solidity": 0.996978049977128, "top": 460, "right": 3150, "bottom": 2375, "left": 365}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703588f.jpg"} -{"rects": [{"solidity": 0.9969780529638027, "top": 485, "right": 5080, "bottom": 3710, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722029f.jpg"} -{"rects": [{"solidity": 0.9969781654978744, "top": 1070, "right": 5695, "bottom": 3100, "left": 2480}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724948f.jpg"} -{"rects": [{"solidity": 0.9969782759968353, "top": 2385, "right": 3210, "bottom": 4025, "left": 775}, {"solidity": 0.9976159375060325, "top": 635, "right": 3180, "bottom": 2255, "left": 760}, {"solidity": 0.9968835028270392, "top": 4175, "right": 3210, "bottom": 5795, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730808f.jpg"} -{"rects": [{"solidity": 0.9969783569078301, "top": 845, "right": 2105, "bottom": 3245, "left": 500}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712432f.jpg"} -{"rects": [{"solidity": 0.9969785138764548, "top": 815, "right": 1980, "bottom": 3210, "left": 380}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711965f.jpg"} -{"rects": [{"solidity": 0.9969785827417722, "top": 470, "right": 3110, "bottom": 3765, "left": 830}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/715261f.jpg"} -{"rects": [{"solidity": 0.9969785915063736, "top": 990, "right": 3495, "bottom": 5050, "left": 400}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713297f.jpg"} -{"rects": [{"solidity": 0.996978778826275, "top": 610, "right": 2645, "bottom": 2035, "left": 810}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707203f.jpg"} -{"rects": [{"solidity": 0.9969788883271948, "top": 235, "right": 3485, "bottom": 2150, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728214f.jpg"} -{"rects": [{"solidity": 0.9969790476067127, "top": 515, "right": 3135, "bottom": 2135, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710769f.jpg"} -{"rects": [{"solidity": 0.9969791488363542, "top": 935, "right": 5745, "bottom": 3360, "left": 4100}, {"solidity": 0.997099716047172, "top": 935, "right": 3875, "bottom": 3360, "left": 2245}, {"solidity": 0.998808466667743, "top": 945, "right": 2010, "bottom": 3350, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709364f.jpg"} -{"rects": [{"solidity": 0.996979767342163, "top": 425, "right": 3290, "bottom": 2045, "left": 870}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727919f.jpg"} -{"rects": [{"solidity": 0.9969797965472338, "top": 380, "right": 3225, "bottom": 2005, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725794f.jpg"} -{"rects": [{"solidity": 0.9969800229324461, "top": 790, "right": 2050, "bottom": 3210, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720309f.jpg"} -{"rects": [{"solidity": 0.9969801279749964, "top": 260, "right": 3305, "bottom": 2355, "left": 735}], "shape": {"h": 2555, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/727048f.jpg"} -{"rects": [{"solidity": 0.9969802360319785, "top": 2315, "right": 3005, "bottom": 3930, "left": 590}, {"solidity": 0.9957434293027886, "top": 415, "right": 3005, "bottom": 2045, "left": 605}, {"solidity": 0.998187266111929, "top": 4175, "right": 2995, "bottom": 5785, "left": 585}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731567f.jpg"} -{"rects": [{"solidity": 0.9969803837195161, "top": 3585, "right": 3755, "bottom": 5780, "left": 665}, {"solidity": 0.9984004468110571, "top": 670, "right": 3730, "bottom": 2820, "left": 650}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710261f.jpg"} -{"rects": [{"solidity": 0.9969805793433081, "top": 455, "right": 3255, "bottom": 2075, "left": 825}, {"solidity": 0.9964172102438867, "top": 3955, "right": 3220, "bottom": 5575, "left": 785}, {"solidity": 0.9957669170758968, "top": 2160, "right": 3240, "bottom": 3780, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733229f.jpg"} -{"rects": [{"solidity": 0.9969805994076314, "top": 440, "right": 5105, "bottom": 3735, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710205f.jpg"} -{"rects": [{"solidity": 0.9969808487633031, "top": 895, "right": 3945, "bottom": 3315, "left": 2310}, {"solidity": 0.9961097395104782, "top": 890, "right": 2055, "bottom": 3305, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707550f.jpg"} -{"rects": [{"solidity": 0.9969809749697215, "top": 660, "right": 4785, "bottom": 3555, "left": 1345}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718904f.jpg"} -{"rects": [{"solidity": 0.9969809944482717, "top": 510, "right": 2180, "bottom": 2600, "left": 690}, {"solidity": 0.997175474174893, "top": 525, "right": 3965, "bottom": 2615, "left": 2480}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716135f.jpg"} -{"rects": [{"solidity": 0.996981093293852, "top": 350, "right": 3035, "bottom": 1985, "left": 620}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720838f.jpg"} -{"rects": [{"solidity": 0.9969811047891066, "top": 535, "right": 5280, "bottom": 3285, "left": 3245}, {"solidity": 0.9975532678737212, "top": 550, "right": 2900, "bottom": 3275, "left": 880}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704375f.jpg"} -{"rects": [{"solidity": 0.9969811418539417, "top": 815, "right": 2055, "bottom": 3225, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720774f.jpg"} -{"rects": [{"solidity": 0.9969812540400775, "top": 700, "right": 2015, "bottom": 3115, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717270f.jpg"} -{"rects": [{"solidity": 0.9969812637968203, "top": 4135, "right": 3150, "bottom": 5750, "left": 735}, {"solidity": 0.9958417542115152, "top": 2285, "right": 3170, "bottom": 3910, "left": 750}, {"solidity": 0.9961144586102563, "top": 455, "right": 3190, "bottom": 2075, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732049f.jpg"} -{"rects": [{"solidity": 0.9969813620761556, "top": 2260, "right": 3120, "bottom": 3880, "left": 690}, {"solidity": 0.9960639163389277, "top": 4055, "right": 3115, "bottom": 5675, "left": 680}, {"solidity": 0.9968554472288629, "top": 440, "right": 3120, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730351f.jpg"} -{"rects": [{"solidity": 0.9969814797514311, "top": 410, "right": 3215, "bottom": 2025, "left": 780}, {"solidity": 0.9974083636821917, "top": 2225, "right": 3205, "bottom": 3840, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705444f.jpg"} -{"rects": [{"solidity": 0.9969816090990297, "top": 425, "right": 3200, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733922f.jpg"} -{"rects": [{"solidity": 0.9969816179562998, "top": 460, "right": 2990, "bottom": 2080, "left": 575}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702969f.jpg"} -{"rects": [{"solidity": 0.9969816513935136, "top": 980, "right": 3600, "bottom": 5075, "left": 335}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723104f.jpg"} -{"rects": [{"solidity": 0.9969816540422625, "top": 365, "right": 5055, "bottom": 3655, "left": 975}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724464f.jpg"} -{"rects": [{"solidity": 0.9969818489498066, "top": 460, "right": 3200, "bottom": 2075, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702785f.jpg"} -{"rects": [{"solidity": 0.9969820210236238, "top": 3815, "right": 2910, "bottom": 5305, "left": 1000}, {"solidity": 0.9976667103781648, "top": 2065, "right": 2910, "bottom": 3540, "left": 1020}, {"solidity": 0.9968743336757836, "top": 360, "right": 2870, "bottom": 1805, "left": 1070}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731408f.jpg"} -{"rects": [{"solidity": 0.9969820985032752, "top": 2270, "right": 3065, "bottom": 3890, "left": 645}, {"solidity": 0.997170432962518, "top": 4135, "right": 3050, "bottom": 5750, "left": 635}, {"solidity": 0.9985373682984287, "top": 405, "right": 3060, "bottom": 2015, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733645f.jpg"} -{"rects": [{"solidity": 0.9969823268550259, "top": 455, "right": 3575, "bottom": 2295, "left": 840}, {"solidity": 0.9975324511657215, "top": 2360, "right": 3585, "bottom": 4195, "left": 855}], "shape": {"h": 4425, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/702234f.jpg"} -{"rects": [{"solidity": 0.9969824078738326, "top": 510, "right": 3020, "bottom": 1945, "left": 1205}, {"solidity": 0.9945798932461979, "top": 2305, "right": 3015, "bottom": 3745, "left": 1195}, {"solidity": 0.9961381053645227, "top": 4115, "right": 2985, "bottom": 5515, "left": 1180}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725677f.jpg"} -{"rects": [{"solidity": 0.9969825511334818, "top": 775, "right": 2060, "bottom": 3180, "left": 430}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716749f.jpg"} -{"rects": [{"solidity": 0.9969826298216211, "top": 435, "right": 3165, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725823f.jpg"} -{"rects": [{"solidity": 0.9969826494221887, "top": 905, "right": 2050, "bottom": 3315, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729394f.jpg"} -{"rects": [{"solidity": 0.9969828615920935, "top": 2295, "right": 3030, "bottom": 3795, "left": 1125}, {"solidity": 0.9977146312508615, "top": 255, "right": 1895, "bottom": 2165, "left": 405}, {"solidity": 0.996484187802595, "top": 3920, "right": 1885, "bottom": 5830, "left": 410}, {"solidity": 0.9953378789391972, "top": 270, "right": 3590, "bottom": 2155, "left": 2105}, {"solidity": 0.9964903685348584, "top": 3930, "right": 3600, "bottom": 5775, "left": 2145}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731441f.jpg"} -{"rects": [{"solidity": 0.9969828809855482, "top": 425, "right": 3200, "bottom": 2015, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720500f.jpg"} -{"rects": [{"solidity": 0.9969830057609573, "top": 440, "right": 2680, "bottom": 3660, "left": 660}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733014f.jpg"} -{"rects": [{"solidity": 0.996983045403446, "top": 1815, "right": 3025, "bottom": 2990, "left": 1135}, {"solidity": 0.9953539809340228, "top": 355, "right": 2995, "bottom": 1450, "left": 1115}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/701465f.jpg"} -{"rects": [{"solidity": 0.996983088990721, "top": 685, "right": 1985, "bottom": 3090, "left": 380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730313f.jpg"} -{"rects": [{"solidity": 0.9969835507731072, "top": 220, "right": 4400, "bottom": 1840, "left": 1995}, {"solidity": 0.9960953615363876, "top": 2000, "right": 5510, "bottom": 3650, "left": 3090}, {"solidity": 0.9962867079835779, "top": 965, "right": 1820, "bottom": 3370, "left": 200}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733538f.jpg"} -{"rects": [{"solidity": 0.9969835805257096, "top": 725, "right": 2115, "bottom": 3130, "left": 505}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710994f.jpg"} -{"rects": [{"solidity": 0.9969837691905263, "top": 905, "right": 3845, "bottom": 3320, "left": 2230}, {"solidity": 0.9957820910128853, "top": 925, "right": 5685, "bottom": 3335, "left": 4080}, {"solidity": 0.9946105475082362, "top": 870, "right": 1995, "bottom": 3280, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731850f.jpg"} -{"rects": [{"solidity": 0.9969839907140354, "top": 885, "right": 2065, "bottom": 3300, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706302f.jpg"} -{"rects": [{"solidity": 0.9969840365245343, "top": 785, "right": 2040, "bottom": 3205, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708101f.jpg"} -{"rects": [{"solidity": 0.9969841503991084, "top": 2895, "right": 3465, "bottom": 5305, "left": 280}, {"solidity": 0.9961175218368278, "top": 780, "right": 3180, "bottom": 2345, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720313f.jpg"} -{"rects": [{"solidity": 0.9969844823792823, "top": 975, "right": 1970, "bottom": 3390, "left": 355}, {"solidity": 0.9971513407276793, "top": 970, "right": 3815, "bottom": 3380, "left": 2210}, {"solidity": 0.9978671381529219, "top": 975, "right": 5645, "bottom": 3375, "left": 4050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708244f.jpg"} -{"rects": [{"solidity": 0.996984506262066, "top": 450, "right": 3205, "bottom": 2050, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710474f.jpg"} -{"rects": [{"solidity": 0.9969846915107469, "top": 415, "right": 3155, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705897f.jpg"} -{"rects": [{"solidity": 0.9969849049461916, "top": 770, "right": 2050, "bottom": 3175, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710116f.jpg"} -{"rects": [{"solidity": 0.9969849310841391, "top": 405, "right": 3110, "bottom": 2030, "left": 695}, {"solidity": 0.9964169129435398, "top": 2300, "right": 3115, "bottom": 3920, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728588f.jpg"} -{"rects": [{"solidity": 0.9969849342734876, "top": 2255, "right": 3110, "bottom": 3880, "left": 685}, {"solidity": 0.9974035835051944, "top": 4115, "right": 3110, "bottom": 5735, "left": 695}, {"solidity": 0.9974751080705672, "top": 415, "right": 3085, "bottom": 2025, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734807f.jpg"} -{"rects": [{"solidity": 0.99698501552717, "top": 665, "right": 2730, "bottom": 2055, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726457f.jpg"} -{"rects": [{"solidity": 0.9969850504739154, "top": 3400, "right": 3205, "bottom": 5020, "left": 780}, {"solidity": 0.9966287740438227, "top": 1630, "right": 3210, "bottom": 3250, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731029f.jpg"} -{"rects": [{"solidity": 0.9969851389647362, "top": 520, "right": 3510, "bottom": 2940, "left": 285}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720725f.jpg"} -{"rects": [{"solidity": 0.9969854392852657, "top": 435, "right": 3170, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704484f.jpg"} -{"rects": [{"solidity": 0.9969854816181652, "top": 885, "right": 5710, "bottom": 3310, "left": 4080}, {"solidity": 0.9971643062677834, "top": 870, "right": 3850, "bottom": 3290, "left": 2230}, {"solidity": 0.9971437597921328, "top": 875, "right": 1995, "bottom": 3295, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728434f.jpg"} -{"rects": [{"solidity": 0.9969858022925767, "top": 435, "right": 5065, "bottom": 3695, "left": 995}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717373f.jpg"} -{"rects": [{"solidity": 0.9969859267463274, "top": 430, "right": 3205, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720729f.jpg"} -{"rects": [{"solidity": 0.9969860621543835, "top": 2255, "right": 3145, "bottom": 3870, "left": 725}, {"solidity": 0.9956160560729468, "top": 410, "right": 3155, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734290f.jpg"} -{"rects": [{"solidity": 0.996986102584138, "top": 620, "right": 3305, "bottom": 2535, "left": 590}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713275f.jpg"} -{"rects": [{"solidity": 0.9969861537319742, "top": 785, "right": 2105, "bottom": 3205, "left": 485}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719812f.jpg"} -{"rects": [{"solidity": 0.9969863057994212, "top": 385, "right": 3430, "bottom": 2005, "left": 1015}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705117f.jpg"} -{"rects": [{"solidity": 0.9969863440238423, "top": 665, "right": 2040, "bottom": 1870, "left": 130}, {"solidity": 0.9980368222395977, "top": 670, "right": 4055, "bottom": 1825, "left": 2110}, {"solidity": 0.996514657613048, "top": 2175, "right": 2035, "bottom": 3355, "left": 130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719846f.jpg"} -{"rects": [{"solidity": 0.9969863895107971, "top": 420, "right": 3115, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701904f.jpg"} -{"rects": [{"solidity": 0.9969864684384068, "top": 705, "right": 4800, "bottom": 3325, "left": 1280}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733795f.jpg"} -{"rects": [{"solidity": 0.9969865140006949, "top": 750, "right": 2025, "bottom": 3155, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720096f.jpg"} -{"rects": [{"solidity": 0.9969866853538892, "top": 725, "right": 2050, "bottom": 3150, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710868f.jpg"} -{"rects": [{"solidity": 0.9969867132687414, "top": 765, "right": 2020, "bottom": 3195, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724286f.jpg"} -{"rects": [{"solidity": 0.9969867723287471, "top": 410, "right": 3215, "bottom": 2000, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726119f.jpg"} -{"rects": [{"solidity": 0.9969870207945191, "top": 650, "right": 4760, "bottom": 3245, "left": 1305}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724451f.jpg"} -{"rects": [{"solidity": 0.9969871178932626, "top": 385, "right": 5050, "bottom": 3645, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705171f.jpg"} -{"rects": [{"solidity": 0.9969871268145714, "top": 1015, "right": 2910, "bottom": 2640, "left": 500}, {"solidity": 0.995993277790755, "top": 1020, "right": 5540, "bottom": 2640, "left": 3135}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707535f.jpg"} -{"rects": [{"solidity": 0.9969871651963438, "top": 440, "right": 3180, "bottom": 2075, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705186f.jpg"} -{"rects": [{"solidity": 0.9969872425527797, "top": 4100, "right": 3135, "bottom": 5720, "left": 710}, {"solidity": 0.9985325199424696, "top": 2235, "right": 3155, "bottom": 3840, "left": 740}, {"solidity": 0.9972058559514289, "top": 380, "right": 3160, "bottom": 1985, "left": 750}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/700613f.jpg"} -{"rects": [{"solidity": 0.9969872434548818, "top": 825, "right": 3770, "bottom": 3255, "left": 2130}, {"solidity": 0.9966021813549877, "top": 815, "right": 1950, "bottom": 3245, "left": 315}, {"solidity": 0.9968828069414178, "top": 835, "right": 5585, "bottom": 3270, "left": 3960}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704436f.jpg"} -{"rects": [{"solidity": 0.996987320295591, "top": 810, "right": 2020, "bottom": 3230, "left": 395}, {"solidity": 0.9960532043530834, "top": 820, "right": 5615, "bottom": 3245, "left": 3990}, {"solidity": 0.9967233648299216, "top": 815, "right": 3810, "bottom": 3230, "left": 2190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724762f.jpg"} -{"rects": [{"solidity": 0.9969873623218164, "top": 365, "right": 3125, "bottom": 1990, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701886f.jpg"} -{"rects": [{"solidity": 0.9969876245691316, "top": 455, "right": 3225, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700886f.jpg"} -{"rects": [{"solidity": 0.9969876909159152, "top": 815, "right": 3870, "bottom": 3235, "left": 2245}, {"solidity": 0.997402288429574, "top": 805, "right": 5755, "bottom": 3225, "left": 4135}, {"solidity": 0.9991619850639953, "top": 805, "right": 1970, "bottom": 3220, "left": 355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714700f.jpg"} -{"rects": [{"solidity": 0.9969877127088442, "top": 475, "right": 3335, "bottom": 3895, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714764f.jpg"} -{"rects": [{"solidity": 0.9969879029774044, "top": 4045, "right": 3130, "bottom": 5650, "left": 710}, {"solidity": 0.998357316298095, "top": 2245, "right": 3120, "bottom": 3850, "left": 715}, {"solidity": 0.9964577015580884, "top": 430, "right": 3115, "bottom": 2035, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731031f.jpg"} -{"rects": [{"solidity": 0.9969881116654283, "top": 2285, "right": 3310, "bottom": 3870, "left": 910}, {"solidity": 0.995040018036298, "top": 450, "right": 3310, "bottom": 2040, "left": 910}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727510f.jpg"} -{"rects": [{"solidity": 0.9969881762987056, "top": 340, "right": 2710, "bottom": 3580, "left": 655}, {"solidity": 0.9981448724312328, "top": 1005, "right": 6000, "bottom": 3040, "left": 2775}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705738f.jpg"} -{"rects": [{"solidity": 0.9969883462092445, "top": 390, "right": 3250, "bottom": 2015, "left": 820}, {"solidity": 0.9972257672537668, "top": 4150, "right": 3245, "bottom": 5770, "left": 825}, {"solidity": 0.9962745457292279, "top": 2280, "right": 3255, "bottom": 3900, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726222f.jpg"} -{"rects": [{"solidity": 0.9969883776223177, "top": 500, "right": 3000, "bottom": 2055, "left": 1105}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720258f.jpg"} -{"rects": [{"solidity": 0.9969886653102681, "top": 770, "right": 2015, "bottom": 3185, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729834f.jpg"} -{"rects": [{"solidity": 0.9969886721268507, "top": 385, "right": 3010, "bottom": 3630, "left": 955}, {"solidity": 0.9976451040046788, "top": 400, "right": 5600, "bottom": 3625, "left": 3570}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703746f.jpg"} -{"rects": [{"solidity": 0.9969887480188392, "top": 1200, "right": 3420, "bottom": 5010, "left": 490}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733751f.jpg"} -{"rects": [{"solidity": 0.9969887489591335, "top": 735, "right": 1985, "bottom": 3150, "left": 360}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704347f.jpg"} -{"rects": [{"solidity": 0.9969890554555447, "top": 795, "right": 3765, "bottom": 3230, "left": 2135}, {"solidity": 0.9975626974518529, "top": 795, "right": 5640, "bottom": 3215, "left": 4010}, {"solidity": 0.9968334957181683, "top": 805, "right": 1905, "bottom": 3235, "left": 280}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703618f.jpg"} -{"rects": [{"solidity": 0.9969891229254029, "top": 735, "right": 2075, "bottom": 3155, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709800f.jpg"} -{"rects": [{"solidity": 0.9969892163338567, "top": 520, "right": 4745, "bottom": 3805, "left": 650}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725700f.jpg"} -{"rects": [{"solidity": 0.9969892963620665, "top": 480, "right": 5660, "bottom": 2105, "left": 3270}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706179f.jpg"} -{"rects": [{"solidity": 0.996989418124984, "top": 430, "right": 3265, "bottom": 2065, "left": 845}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702751f.jpg"} -{"rects": [{"solidity": 0.9969896598542464, "top": 855, "right": 3860, "bottom": 3270, "left": 2250}, {"solidity": 0.9974352113503319, "top": 855, "right": 2020, "bottom": 3260, "left": 415}, {"solidity": 0.9980222733621023, "top": 865, "right": 5740, "bottom": 3255, "left": 4145}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734353f.jpg"} -{"rects": [{"solidity": 0.9969897573984245, "top": 410, "right": 3200, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703247f.jpg"} -{"rects": [{"solidity": 0.9969900707956721, "top": 650, "right": 3280, "bottom": 2660, "left": 465}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729418f.jpg"} -{"rects": [{"solidity": 0.996990138447207, "top": 390, "right": 3055, "bottom": 2020, "left": 635}, {"solidity": 0.9969162527642672, "top": 2245, "right": 3065, "bottom": 3875, "left": 645}, {"solidity": 0.9973227155034664, "top": 4105, "right": 3065, "bottom": 5710, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709414f.jpg"} -{"rects": [{"solidity": 0.9969903737167916, "top": 395, "right": 3265, "bottom": 2010, "left": 840}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704979f.jpg"} -{"rects": [{"solidity": 0.9969905749840337, "top": 385, "right": 3275, "bottom": 2005, "left": 865}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725737f.jpg"} -{"rects": [{"solidity": 0.9969907245751144, "top": 840, "right": 3890, "bottom": 3280, "left": 2250}, {"solidity": 0.9993256781129312, "top": 845, "right": 2025, "bottom": 3265, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728802f.jpg"} -{"rects": [{"solidity": 0.9969910508821274, "top": 685, "right": 2550, "bottom": 3745, "left": 530}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715176f.jpg"} -{"rects": [{"solidity": 0.9969911126744506, "top": 1040, "right": 3495, "bottom": 5075, "left": 295}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713853f.jpg"} -{"rects": [{"solidity": 0.996991134080524, "top": 595, "right": 4920, "bottom": 3590, "left": 1100}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717657f.jpg"} -{"rects": [{"solidity": 0.9969915182896367, "top": 745, "right": 4645, "bottom": 3440, "left": 1210}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733414f.jpg"} -{"rects": [{"solidity": 0.996991620422636, "top": 410, "right": 3235, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725320f.jpg"} -{"rects": [{"solidity": 0.9969916384297255, "top": 1970, "right": 3190, "bottom": 3590, "left": 770}, {"solidity": 0.9973327943047023, "top": 440, "right": 2905, "bottom": 1845, "left": 1085}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706812f.jpg"} -{"rects": [{"solidity": 0.9969916534384761, "top": 390, "right": 3275, "bottom": 2010, "left": 840}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725049f.jpg"} -{"rects": [{"solidity": 0.9969917852597477, "top": 775, "right": 2090, "bottom": 3200, "left": 470}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709317f.jpg"} -{"rects": [{"solidity": 0.9969923721685664, "top": 440, "right": 5115, "bottom": 3665, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721718f.jpg"} -{"rects": [{"solidity": 0.9969924974628542, "top": 715, "right": 3685, "bottom": 3240, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720751f.jpg"} -{"rects": [{"solidity": 0.9969925398098739, "top": 425, "right": 3185, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/702081f.jpg"} -{"rects": [{"solidity": 0.9969926707088991, "top": 430, "right": 5080, "bottom": 3705, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725397f.jpg"} -{"rects": [{"solidity": 0.996992805741716, "top": 1100, "right": 3545, "bottom": 5140, "left": 265}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709191f.jpg"} -{"rects": [{"solidity": 0.9969928111407959, "top": 2255, "right": 3235, "bottom": 3875, "left": 825}, {"solidity": 0.9966512258207428, "top": 400, "right": 3235, "bottom": 2015, "left": 830}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/731878f.jpg"} -{"rects": [{"solidity": 0.9969928230441983, "top": 820, "right": 3830, "bottom": 3225, "left": 2220}, {"solidity": 0.9941610972011382, "top": 830, "right": 2000, "bottom": 3240, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730296f.jpg"} -{"rects": [{"solidity": 0.9969928665734574, "top": 550, "right": 2935, "bottom": 2165, "left": 525}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720903f.jpg"} -{"rects": [{"solidity": 0.996993216801461, "top": 755, "right": 2025, "bottom": 3160, "left": 415}, {"solidity": 0.9971087489779231, "top": 755, "right": 3855, "bottom": 3160, "left": 2255}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721677f.jpg"} -{"rects": [{"solidity": 0.9969932892775578, "top": 835, "right": 2050, "bottom": 3260, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710436f.jpg"} -{"rects": [{"solidity": 0.9969933990415046, "top": 400, "right": 3135, "bottom": 2015, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706844f.jpg"} -{"rects": [{"solidity": 0.9969936089946047, "top": 800, "right": 2045, "bottom": 3215, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712258f.jpg"} -{"rects": [{"solidity": 0.9969936522019424, "top": 880, "right": 3930, "bottom": 3305, "left": 2300}, {"solidity": 0.9988687273825823, "top": 885, "right": 2050, "bottom": 3300, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700855f.jpg"} -{"rects": [{"solidity": 0.996993691257886, "top": 850, "right": 3865, "bottom": 3260, "left": 2240}, {"solidity": 0.995688924805464, "top": 845, "right": 5710, "bottom": 3260, "left": 4095}, {"solidity": 0.9969967614696588, "top": 855, "right": 2005, "bottom": 3255, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714042f.jpg"} -{"rects": [{"solidity": 0.9969939808720764, "top": 670, "right": 3345, "bottom": 2580, "left": 550}, {"solidity": 0.9959430804119258, "top": 3235, "right": 3290, "bottom": 5150, "left": 585}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715378f.jpg"} -{"rects": [{"solidity": 0.9969940997086216, "top": 750, "right": 3350, "bottom": 2665, "left": 630}, {"solidity": 0.996649788901222, "top": 3275, "right": 3320, "bottom": 5155, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710743f.jpg"} -{"rects": [{"solidity": 0.9969941085904066, "top": 1060, "right": 3185, "bottom": 5075, "left": 450}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709766f.jpg"} -{"rects": [{"solidity": 0.9969941253159674, "top": 435, "right": 3145, "bottom": 2070, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701259f.jpg"} -{"rects": [{"solidity": 0.9969941936808345, "top": 445, "right": 3095, "bottom": 3660, "left": 1065}, {"solidity": 0.9983908425727085, "top": 440, "right": 5455, "bottom": 3650, "left": 3440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732986f.jpg"} -{"rects": [{"solidity": 0.996994338851818, "top": 830, "right": 1985, "bottom": 3250, "left": 380}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716582f.jpg"} -{"rects": [{"solidity": 0.9969943490541158, "top": 545, "right": 3300, "bottom": 2600, "left": 230}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715631f.jpg"} -{"rects": [{"solidity": 0.9969946524567188, "top": 430, "right": 3355, "bottom": 2360, "left": 555}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705451f.jpg"} -{"rects": [{"solidity": 0.9969946944172794, "top": 735, "right": 2035, "bottom": 3150, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703793f.jpg"} -{"rects": [{"solidity": 0.9969947407963937, "top": 535, "right": 5080, "bottom": 1940, "left": 3265}, {"solidity": 0.9942052281939463, "top": 2195, "right": 2855, "bottom": 3600, "left": 1040}, {"solidity": 0.992958583986601, "top": 2200, "right": 5075, "bottom": 3610, "left": 3260}, {"solidity": 0.9603573029068626, "top": 550, "right": 2830, "bottom": 1950, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725629f.jpg"} -{"rects": [{"solidity": 0.9969948244198341, "top": 665, "right": 3295, "bottom": 2585, "left": 575}, {"solidity": 0.9960590937896071, "top": 3145, "right": 3285, "bottom": 5065, "left": 590}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712539f.jpg"} -{"rects": [{"solidity": 0.996994836983344, "top": 455, "right": 5435, "bottom": 3675, "left": 1420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724281f.jpg"} -{"rects": [{"solidity": 0.9969949682448129, "top": 2305, "right": 3110, "bottom": 3940, "left": 685}, {"solidity": 0.9967489934691602, "top": 440, "right": 3100, "bottom": 2075, "left": 680}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702388f.jpg"} -{"rects": [{"solidity": 0.9969953538068026, "top": 1135, "right": 3500, "bottom": 4970, "left": 440}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708736f.jpg"} -{"rects": [{"solidity": 0.9969953866458207, "top": 820, "right": 3475, "bottom": 5235, "left": 330}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732257f.jpg"} -{"rects": [{"solidity": 0.9969954150814555, "top": 615, "right": 3050, "bottom": 2225, "left": 635}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702384f.jpg"} -{"rects": [{"solidity": 0.9969955457773906, "top": 520, "right": 3070, "bottom": 2160, "left": 640}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706213f.jpg"} -{"rects": [{"solidity": 0.996995562726906, "top": 2305, "right": 3200, "bottom": 3910, "left": 770}, {"solidity": 0.9981120486212136, "top": 4045, "right": 3215, "bottom": 5650, "left": 790}, {"solidity": 0.9949313587894626, "top": 565, "right": 3195, "bottom": 2180, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733170f.jpg"} -{"rects": [{"solidity": 0.9969957383636853, "top": 400, "right": 3230, "bottom": 2030, "left": 810}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700272f.jpg"} -{"rects": [{"solidity": 0.9969958244864505, "top": 755, "right": 5745, "bottom": 3170, "left": 4125}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718423f.jpg"} -{"rects": [{"solidity": 0.9969963082940752, "top": 2195, "right": 3130, "bottom": 3825, "left": 700}, {"solidity": 0.9983651190873156, "top": 365, "right": 3140, "bottom": 1970, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720540f.jpg"} -{"rects": [{"solidity": 0.9969963878127944, "top": 735, "right": 2020, "bottom": 3140, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722615f.jpg"} -{"rects": [{"solidity": 0.99699645534678, "top": 900, "right": 4510, "bottom": 2900, "left": 1305}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710321f.jpg"} -{"rects": [{"solidity": 0.9969965159191536, "top": 450, "right": 5055, "bottom": 3665, "left": 1070}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710687f.jpg"} -{"rects": [{"solidity": 0.9969966531330666, "top": 785, "right": 3890, "bottom": 3185, "left": 2285}, {"solidity": 0.9971613103095283, "top": 795, "right": 2040, "bottom": 3165, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712355f.jpg"} -{"rects": [{"solidity": 0.9969966564988094, "top": 720, "right": 4745, "bottom": 3370, "left": 1305}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729985f.jpg"} -{"rects": [{"solidity": 0.9969966884809134, "top": 1140, "right": 2610, "bottom": 4205, "left": 215}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508829.jpg"} -{"rects": [{"solidity": 0.9969971496754062, "top": 410, "right": 3095, "bottom": 2045, "left": 660}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706831f.jpg"} -{"rects": [{"solidity": 0.9969971905044205, "top": 460, "right": 3130, "bottom": 2080, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705503f.jpg"} -{"rects": [{"solidity": 0.9969972680152778, "top": 1165, "right": 3410, "bottom": 5010, "left": 450}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710162f.jpg"} -{"rects": [{"solidity": 0.9969973262980678, "top": 245, "right": 3160, "bottom": 1865, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709995f.jpg"} -{"rects": [{"solidity": 0.9969973361322766, "top": 2200, "right": 3225, "bottom": 3795, "left": 840}, {"solidity": 0.9960381600126349, "top": 395, "right": 3220, "bottom": 1980, "left": 845}], "shape": {"h": 6070, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/728155f.jpg"} -{"rects": [{"solidity": 0.9969973945133035, "top": 805, "right": 1980, "bottom": 3215, "left": 350}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713434f.jpg"} -{"rects": [{"solidity": 0.9969975534489447, "top": 495, "right": 5045, "bottom": 3665, "left": 1135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702810f.jpg"} -{"rects": [{"solidity": 0.996997641701228, "top": 405, "right": 3150, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728429f.jpg"} -{"rects": [{"solidity": 0.996997779708466, "top": 435, "right": 3120, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729828f.jpg"} -{"rects": [{"solidity": 0.9969977953572818, "top": 435, "right": 3185, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703925f.jpg"} -{"rects": [{"solidity": 0.9969978015546828, "top": 320, "right": 5285, "bottom": 3595, "left": 1250}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734552f.jpg"} -{"rects": [{"solidity": 0.9969978647915362, "top": 745, "right": 3910, "bottom": 3175, "left": 2295}, {"solidity": 0.996882795029252, "top": 755, "right": 2080, "bottom": 3170, "left": 465}, {"solidity": 0.9957949552481692, "top": 755, "right": 5725, "bottom": 3170, "left": 4115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733800f.jpg"} -{"rects": [{"solidity": 0.9969979393182605, "top": 2280, "right": 3095, "bottom": 3905, "left": 685}, {"solidity": 0.9968611527473933, "top": 430, "right": 3080, "bottom": 2040, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714951f.jpg"} -{"rects": [{"solidity": 0.996998251691373, "top": 825, "right": 2675, "bottom": 3835, "left": 230}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/713050f.jpg"} -{"rects": [{"solidity": 0.9969983274102467, "top": 410, "right": 3240, "bottom": 2040, "left": 815}, {"solidity": 0.9969793589528444, "top": 2275, "right": 3235, "bottom": 3895, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732805f.jpg"} -{"rects": [{"solidity": 0.9969985312850212, "top": 675, "right": 4665, "bottom": 3360, "left": 1235}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733413f.jpg"} -{"rects": [{"solidity": 0.9969986016939661, "top": 665, "right": 2035, "bottom": 3085, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703005f.jpg"} -{"rects": [{"solidity": 0.9969986154903714, "top": 950, "right": 3235, "bottom": 2560, "left": 810}, {"solidity": 0.9970824642455668, "top": 3290, "right": 3240, "bottom": 4895, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730950f.jpg"} -{"rects": [{"solidity": 0.99699868692553, "top": 3765, "right": 3200, "bottom": 5795, "left": 370}, {"solidity": 0.997574203664077, "top": 2065, "right": 2990, "bottom": 3685, "left": 570}, {"solidity": 0.9962104152458404, "top": 335, "right": 3010, "bottom": 1965, "left": 585}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710807f.jpg"} -{"rects": [{"solidity": 0.9969987763251111, "top": 430, "right": 3140, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713122f.jpg"} -{"rects": [{"solidity": 0.99699881976058, "top": 670, "right": 2690, "bottom": 2105, "left": 865}, {"solidity": 0.9960936036773638, "top": 2150, "right": 2655, "bottom": 3485, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706943f.jpg"} -{"rects": [{"solidity": 0.9969988479398015, "top": 915, "right": 3735, "bottom": 5650, "left": 310}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/719700f.jpg"} -{"rects": [{"solidity": 0.9969988581131852, "top": 3095, "right": 3415, "bottom": 5095, "left": 620}, {"solidity": 0.9965824833633559, "top": 885, "right": 3425, "bottom": 2805, "left": 685}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/712808f.jpg"} -{"rects": [{"solidity": 0.9969992891329059, "top": 500, "right": 3135, "bottom": 2115, "left": 740}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715137f.jpg"} -{"rects": [{"solidity": 0.9969993175031173, "top": 445, "right": 5050, "bottom": 3705, "left": 990}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723574f.jpg"} -{"rects": [{"solidity": 0.9969994808069095, "top": 450, "right": 5110, "bottom": 3730, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719543f.jpg"} -{"rects": [{"solidity": 0.996999753825955, "top": 435, "right": 3540, "bottom": 2240, "left": 815}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/707105f.jpg"} -{"rects": [{"solidity": 0.9970002056310656, "top": 885, "right": 3235, "bottom": 2385, "left": 1145}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507536.jpg"} -{"rects": [{"solidity": 0.9970003517502833, "top": 795, "right": 2035, "bottom": 3205, "left": 425}, {"solidity": 0.9948431135230807, "top": 800, "right": 3865, "bottom": 3220, "left": 2255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734249f.jpg"} -{"rects": [{"solidity": 0.9970003737345835, "top": 2185, "right": 3195, "bottom": 3790, "left": 780}, {"solidity": 0.9966103384676736, "top": 395, "right": 3185, "bottom": 1985, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712199f.jpg"} -{"rects": [{"solidity": 0.9970005711121865, "top": 2995, "right": 3225, "bottom": 5020, "left": 360}, {"solidity": 0.9945917920812801, "top": 900, "right": 2935, "bottom": 2335, "left": 1075}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721902f.jpg"} -{"rects": [{"solidity": 0.997000713185464, "top": 780, "right": 1955, "bottom": 3190, "left": 350}, {"solidity": 0.995565554582423, "top": 795, "right": 3840, "bottom": 3205, "left": 2230}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730110f.jpg"} -{"rects": [{"solidity": 0.9970007862016753, "top": 415, "right": 3205, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703127f.jpg"} -{"rects": [{"solidity": 0.9970008499220091, "top": 400, "right": 3200, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724988f.jpg"} -{"rects": [{"solidity": 0.9970010467845143, "top": 585, "right": 2325, "bottom": 3610, "left": 330}, {"solidity": 0.9969081101907147, "top": 865, "right": 5805, "bottom": 3285, "left": 4170}, {"solidity": 0.9959186563753292, "top": 845, "right": 4045, "bottom": 3265, "left": 2410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724383f.jpg"} -{"rects": [{"solidity": 0.9970013605255672, "top": 855, "right": 2310, "bottom": 3215, "left": 750}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732299f.jpg"} -{"rects": [{"solidity": 0.9970016562903026, "top": 2210, "right": 3095, "bottom": 3825, "left": 705}, {"solidity": 0.9961989063635437, "top": 350, "right": 3100, "bottom": 1965, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700738f.jpg"} -{"rects": [{"solidity": 0.997001852567082, "top": 415, "right": 3100, "bottom": 2010, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728697f.jpg"} -{"rects": [{"solidity": 0.99700207810495, "top": 630, "right": 2710, "bottom": 3435, "left": 735}, {"solidity": 0.9966377664834533, "top": 635, "right": 5245, "bottom": 3425, "left": 3265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713127f.jpg"} -{"rects": [{"solidity": 0.9970020925204266, "top": 740, "right": 2065, "bottom": 3175, "left": 415}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711605f.jpg"} -{"rects": [{"solidity": 0.9970021862294726, "top": 505, "right": 4640, "bottom": 3540, "left": 1440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720463f.jpg"} -{"rects": [{"solidity": 0.997002213500734, "top": 430, "right": 3160, "bottom": 2040, "left": 745}, {"solidity": 0.9960700856486318, "top": 2265, "right": 3130, "bottom": 3870, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706849f.jpg"} -{"rects": [{"solidity": 0.9970022708120244, "top": 755, "right": 3880, "bottom": 3175, "left": 2260}, {"solidity": 0.9980993570784403, "top": 755, "right": 2040, "bottom": 3165, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722393f.jpg"} -{"rects": [{"solidity": 0.9970024389689429, "top": 375, "right": 3115, "bottom": 1985, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728402f.jpg"} -{"rects": [{"solidity": 0.9970025340419448, "top": 370, "right": 2985, "bottom": 1980, "left": 595}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709416f.jpg"} -{"rects": [{"solidity": 0.9970025572880619, "top": 470, "right": 5055, "bottom": 3535, "left": 1095}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702306f.jpg"} -{"rects": [{"solidity": 0.9970025724923103, "top": 265, "right": 3165, "bottom": 1885, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714249f.jpg"} -{"rects": [{"solidity": 0.9970026826117522, "top": 1155, "right": 3210, "bottom": 4995, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714343f.jpg"} -{"rects": [{"solidity": 0.9970029207205716, "top": 825, "right": 3885, "bottom": 3265, "left": 2255}, {"solidity": 0.9971640391228619, "top": 845, "right": 5745, "bottom": 3280, "left": 4120}, {"solidity": 0.9965087217541418, "top": 830, "right": 1995, "bottom": 3255, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733890f.jpg"} -{"rects": [{"solidity": 0.9970030022027258, "top": 1085, "right": 3485, "bottom": 4995, "left": 395}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708547f.jpg"} -{"rects": [{"solidity": 0.9970030161339227, "top": 885, "right": 3895, "bottom": 3305, "left": 2260}, {"solidity": 0.9969204337325964, "top": 885, "right": 2030, "bottom": 3290, "left": 410}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703959f.jpg"} -{"rects": [{"solidity": 0.9970032617231727, "top": 885, "right": 3170, "bottom": 2815, "left": 460}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703674f.jpg"} -{"rects": [{"solidity": 0.9970032982566358, "top": 595, "right": 2455, "bottom": 3645, "left": 475}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720414f.jpg"} -{"rects": [{"solidity": 0.9970033548354084, "top": 800, "right": 2015, "bottom": 3230, "left": 395}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714088f.jpg"} -{"rects": [{"solidity": 0.9970034757213664, "top": 575, "right": 3390, "bottom": 2615, "left": 375}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715442f.jpg"} -{"rects": [{"solidity": 0.9970035430210202, "top": 410, "right": 3185, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701241f.jpg"} -{"rects": [{"solidity": 0.997003740407216, "top": 310, "right": 3225, "bottom": 1925, "left": 840}, {"solidity": 0.9967494929341112, "top": 2150, "right": 3210, "bottom": 3750, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717609f.jpg"} -{"rects": [{"solidity": 0.9970039827100071, "top": 740, "right": 3100, "bottom": 2340, "left": 690}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708788f.jpg"} -{"rects": [{"solidity": 0.9970040138532351, "top": 795, "right": 1995, "bottom": 3230, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733953f.jpg"} -{"rects": [{"solidity": 0.9970040698481627, "top": 930, "right": 2780, "bottom": 4005, "left": 275}], "shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509779.jpg"} -{"rects": [{"solidity": 0.9970042703605517, "top": 695, "right": 4050, "bottom": 3475, "left": 2095}, {"solidity": 0.9903816761027275, "top": 1065, "right": 1910, "bottom": 3030, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719366f.jpg"} -{"rects": [{"solidity": 0.9970043646205827, "top": 670, "right": 3340, "bottom": 2605, "left": 430}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719705f.jpg"} -{"rects": [{"solidity": 0.9970044074496949, "top": 595, "right": 2700, "bottom": 3630, "left": 665}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721809f.jpg"} -{"rects": [{"solidity": 0.9970044519471062, "top": 2265, "right": 3000, "bottom": 3855, "left": 605}, {"solidity": 0.9953051954510792, "top": 380, "right": 3015, "bottom": 1985, "left": 620}, {"solidity": 0.9943694703119035, "top": 4135, "right": 2995, "bottom": 5730, "left": 595}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729048f.jpg"} -{"rects": [{"solidity": 0.9970046337853223, "top": 380, "right": 3305, "bottom": 3815, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715291f.jpg"} -{"rects": [{"solidity": 0.9970046634291784, "top": 665, "right": 2695, "bottom": 3725, "left": 225}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509293.jpg"} -{"rects": [{"solidity": 0.9970049873612413, "top": 455, "right": 3125, "bottom": 2070, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713121f.jpg"} -{"rects": [{"solidity": 0.9970050454773635, "top": 445, "right": 3275, "bottom": 2175, "left": 700}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/708627f.jpg"} -{"rects": [{"solidity": 0.9970051835029384, "top": 875, "right": 3175, "bottom": 2310, "left": 1140}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508385.jpg"} -{"rects": [{"solidity": 0.9970052257805172, "top": 475, "right": 5120, "bottom": 3730, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725369f.jpg"} -{"rects": [{"solidity": 0.997005244851052, "top": 830, "right": 2040, "bottom": 3245, "left": 415}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729127f.jpg"} -{"rects": [{"solidity": 0.9970055476675476, "top": 420, "right": 5050, "bottom": 3675, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701311f.jpg"} -{"rects": [{"solidity": 0.997005558372478, "top": 725, "right": 2085, "bottom": 3155, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710832f.jpg"} -{"rects": [{"solidity": 0.9970056417308162, "top": 800, "right": 2015, "bottom": 3225, "left": 385}, {"solidity": 0.9979948699920576, "top": 815, "right": 3870, "bottom": 3220, "left": 2260}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721866f.jpg"} -{"rects": [{"solidity": 0.9970056599151658, "top": 395, "right": 2945, "bottom": 2010, "left": 525}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/719861f.jpg"} -{"rects": [{"solidity": 0.9970056792176732, "top": 435, "right": 3170, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722570f.jpg"} -{"rects": [{"solidity": 0.9970057806899235, "top": 575, "right": 3270, "bottom": 2175, "left": 875}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715065f.jpg"} -{"rects": [{"solidity": 0.9970060998804477, "top": 760, "right": 2715, "bottom": 3785, "left": 245}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508155.jpg"} -{"rects": [{"solidity": 0.9970061410852019, "top": 2180, "right": 3155, "bottom": 3810, "left": 730}, {"solidity": 0.9970055730508021, "top": 400, "right": 3125, "bottom": 2020, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729062f.jpg"} -{"rects": [{"solidity": 0.9970062696433147, "top": 875, "right": 2030, "bottom": 3295, "left": 425}, {"solidity": 0.9876504270186336, "top": 985, "right": 3720, "bottom": 3210, "left": 2310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730426f.jpg"} -{"rects": [{"solidity": 0.9970063305621234, "top": 645, "right": 2625, "bottom": 1760, "left": 845}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705121f.jpg"} -{"rects": [{"solidity": 0.9970063835889239, "top": 465, "right": 3175, "bottom": 2080, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710701f.jpg"} -{"rects": [{"solidity": 0.9970064597447613, "top": 430, "right": 3150, "bottom": 2045, "left": 725}, {"solidity": 0.9958911145351823, "top": 2330, "right": 2795, "bottom": 3760, "left": 955}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705644f.jpg"} -{"rects": [{"solidity": 0.9970065559960516, "top": 325, "right": 3140, "bottom": 1960, "left": 745}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704874f.jpg"} -{"rects": [{"solidity": 0.9970065995225877, "top": 420, "right": 3130, "bottom": 2050, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700939f.jpg"} -{"rects": [{"solidity": 0.9970069164058191, "top": 580, "right": 2990, "bottom": 2195, "left": 590}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706895f.jpg"} -{"rects": [{"solidity": 0.997006981582407, "top": 425, "right": 3195, "bottom": 2050, "left": 765}, {"solidity": 0.9974426105831168, "top": 2275, "right": 3200, "bottom": 3900, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724733f.jpg"} -{"rects": [{"solidity": 0.9970070201325416, "top": 780, "right": 2035, "bottom": 3205, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720913f.jpg"} -{"rects": [{"solidity": 0.9970071737593807, "top": 490, "right": 2860, "bottom": 1885, "left": 1055}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703371f.jpg"} -{"rects": [{"solidity": 0.9970072243641374, "top": 460, "right": 3955, "bottom": 2555, "left": 2480}, {"solidity": 0.9909318094865972, "top": 470, "right": 2190, "bottom": 2560, "left": 705}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716158f.jpg"} -{"rects": [{"solidity": 0.9970074266126198, "top": 805, "right": 2030, "bottom": 3225, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705851f.jpg"} -{"rects": [{"solidity": 0.9970075432854562, "top": 1985, "right": 3205, "bottom": 3620, "left": 785}, {"solidity": 0.9973171678791827, "top": 210, "right": 3215, "bottom": 1830, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719087f.jpg"} -{"rects": [{"solidity": 0.9970076214183744, "top": 765, "right": 2005, "bottom": 3170, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733334f.jpg"} -{"rects": [{"solidity": 0.9970077201463036, "top": 850, "right": 2050, "bottom": 3280, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729153f.jpg"} -{"rects": [{"solidity": 0.9970078106127708, "top": 780, "right": 2050, "bottom": 3210, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720645f.jpg"} -{"rects": [{"solidity": 0.9970078592906462, "top": 360, "right": 3340, "bottom": 2255, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730943f.jpg"} -{"rects": [{"solidity": 0.9970079069628429, "top": 405, "right": 3065, "bottom": 1990, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729171f.jpg"} -{"rects": [{"solidity": 0.9970079820883799, "top": 605, "right": 2580, "bottom": 3665, "left": 530}, {"solidity": 0.9971787531211473, "top": 630, "right": 4750, "bottom": 3700, "left": 2755}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715477f.jpg"} -{"rects": [{"solidity": 0.9970079830670133, "top": 705, "right": 2070, "bottom": 3110, "left": 460}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710495f.jpg"} -{"rects": [{"solidity": 0.9970082324719224, "top": 790, "right": 1980, "bottom": 3145, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724523f.jpg"} -{"rects": [{"solidity": 0.9970083313927915, "top": 2220, "right": 3235, "bottom": 3835, "left": 820}, {"solidity": 0.9969949532310828, "top": 395, "right": 3200, "bottom": 1990, "left": 795}, {"solidity": 0.9962901570763281, "top": 4105, "right": 3225, "bottom": 5700, "left": 820}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730346f.jpg"} -{"rects": [{"solidity": 0.997008370095344, "top": 775, "right": 3890, "bottom": 3195, "left": 2280}, {"solidity": 0.9961077063502413, "top": 785, "right": 2085, "bottom": 3200, "left": 475}, {"solidity": 0.994801028641904, "top": 775, "right": 5690, "bottom": 3190, "left": 4095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731034f.jpg"} -{"rects": [{"solidity": 0.9970084342852731, "top": 460, "right": 3160, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701885f.jpg"} -{"rects": [{"solidity": 0.9970087674058793, "top": 775, "right": 2040, "bottom": 3200, "left": 425}, {"solidity": 0.998018050588129, "top": 470, "right": 4860, "bottom": 2085, "left": 2445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702431f.jpg"} -{"rects": [{"solidity": 0.9970087927280715, "top": 480, "right": 3045, "bottom": 2105, "left": 635}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705367f.jpg"} -{"rects": [{"solidity": 0.9970089177957975, "top": 805, "right": 2085, "bottom": 3200, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712642f.jpg"} -{"rects": [{"solidity": 0.9970089479365272, "top": 860, "right": 2175, "bottom": 3575, "left": 335}], "shape": {"h": 4420, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711375f.jpg"} -{"rects": [{"solidity": 0.9970090096091395, "top": 820, "right": 2025, "bottom": 3200, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710537f.jpg"} -{"rects": [{"solidity": 0.997009158231168, "top": 855, "right": 2000, "bottom": 3280, "left": 400}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728875f.jpg"} -{"rects": [{"solidity": 0.9970091766087953, "top": 450, "right": 5135, "bottom": 3700, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712109f.jpg"} -{"rects": [{"solidity": 0.997009224793656, "top": 395, "right": 3215, "bottom": 2005, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734299f.jpg"} -{"rects": [{"solidity": 0.9970093302499048, "top": 815, "right": 2045, "bottom": 3240, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724056f.jpg"} -{"rects": [{"solidity": 0.9970094878139064, "top": 695, "right": 2085, "bottom": 3110, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722053f.jpg"} -{"rects": [{"solidity": 0.9970094953180905, "top": 525, "right": 4940, "bottom": 3550, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709849f.jpg"} -{"rects": [{"solidity": 0.997009540057456, "top": 405, "right": 3000, "bottom": 2000, "left": 585}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729162f.jpg"} -{"rects": [{"solidity": 0.9970095693779905, "top": 565, "right": 3905, "bottom": 2615, "left": 1105}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733342f.jpg"} -{"rects": [{"solidity": 0.9970098397135009, "top": 1085, "right": 3120, "bottom": 2295, "left": 1315}], "shape": {"h": 3005, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/1509729.jpg"} -{"rects": [{"solidity": 0.9970099570384895, "top": 780, "right": 3795, "bottom": 3165, "left": 2175}, {"solidity": 0.999359416739035, "top": 780, "right": 1955, "bottom": 3130, "left": 335}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710379f.jpg"} -{"rects": [{"solidity": 0.9970100457324906, "top": 2220, "right": 3185, "bottom": 3835, "left": 760}, {"solidity": 0.9952209735412199, "top": 375, "right": 3215, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720332f.jpg"} -{"rects": [{"solidity": 0.997010262590287, "top": 340, "right": 3115, "bottom": 3580, "left": 1055}, {"solidity": 0.9910642687531628, "top": 335, "right": 5460, "bottom": 3580, "left": 3430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705913f.jpg"} -{"rects": [{"solidity": 0.9970103139331626, "top": 540, "right": 3085, "bottom": 2160, "left": 670}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704625f.jpg"} -{"rects": [{"solidity": 0.9970104102363554, "top": 440, "right": 3205, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710036f.jpg"} -{"rects": [{"solidity": 0.9970104405057577, "top": 470, "right": 5040, "bottom": 3730, "left": 1005}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723584f.jpg"} -{"rects": [{"solidity": 0.9970105320313991, "top": 635, "right": 4945, "bottom": 3675, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727294f.jpg"} -{"rects": [{"solidity": 0.9970107586778679, "top": 385, "right": 3255, "bottom": 1995, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727681f.jpg"} -{"rects": [{"solidity": 0.9970107645506403, "top": 420, "right": 3200, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714948f.jpg"} -{"rects": [{"solidity": 0.9970111901383166, "top": 455, "right": 5300, "bottom": 3455, "left": 1355}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730021f.jpg"} -{"rects": [{"solidity": 0.9970112210873494, "top": 2135, "right": 3160, "bottom": 3745, "left": 775}, {"solidity": 0.9970390424810123, "top": 460, "right": 3140, "bottom": 2075, "left": 755}, {"solidity": 0.9971330408724602, "top": 470, "right": 5630, "bottom": 2075, "left": 3265}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705147f.jpg"} -{"rects": [{"solidity": 0.9970113179382758, "top": 590, "right": 5040, "bottom": 3620, "left": 1190}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723704f.jpg"} -{"rects": [{"solidity": 0.9970113511386667, "top": 1095, "right": 3445, "bottom": 4985, "left": 390}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718996f.jpg"} -{"rects": [{"solidity": 0.9970113685197484, "top": 375, "right": 3225, "bottom": 1985, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705390f.jpg"} -{"rects": [{"solidity": 0.9970114411779796, "top": 810, "right": 3890, "bottom": 3235, "left": 2270}, {"solidity": 0.9965923653450351, "top": 825, "right": 2030, "bottom": 3245, "left": 420}, {"solidity": 0.9981375212279878, "top": 810, "right": 5720, "bottom": 3225, "left": 4130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728773f.jpg"} -{"rects": [{"solidity": 0.9970114629384254, "top": 565, "right": 5055, "bottom": 3235, "left": 1615}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721498f.jpg"} -{"rects": [{"solidity": 0.9970115836709137, "top": 415, "right": 3275, "bottom": 2055, "left": 835}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/725363f.jpg"} -{"rects": [{"solidity": 0.9970116027632309, "top": 890, "right": 3860, "bottom": 3315, "left": 2225}, {"solidity": 0.9959341309163072, "top": 905, "right": 1985, "bottom": 3290, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710125f.jpg"} -{"rects": [{"solidity": 0.9970117341614274, "top": 2075, "right": 5235, "bottom": 3460, "left": 3445}, {"solidity": 0.9957572601396888, "top": 630, "right": 2640, "bottom": 2015, "left": 845}, {"solidity": 0.9957059915559738, "top": 2090, "right": 2620, "bottom": 3465, "left": 830}], "shape": {"h": 3880, "w": 6075}, "file": "/usr/local/google/home/danvk/milstein/728137f.jpg"} -{"rects": [{"solidity": 0.9970119883649138, "top": 410, "right": 3090, "bottom": 2010, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700797f.jpg"} -{"rects": [{"solidity": 0.9970120635393835, "top": 835, "right": 2140, "bottom": 3200, "left": 565}, {"solidity": 0.9716383184923296, "top": 850, "right": 3970, "bottom": 3215, "left": 2390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718469f.jpg"} -{"rects": [{"solidity": 0.997012153787336, "top": 760, "right": 3935, "bottom": 3180, "left": 2310}, {"solidity": 0.997733791754887, "top": 755, "right": 2040, "bottom": 3165, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716761f.jpg"} -{"rects": [{"solidity": 0.9970122824702886, "top": 400, "right": 3220, "bottom": 2005, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726282f.jpg"} -{"rects": [{"solidity": 0.9970122824702886, "top": 760, "right": 2010, "bottom": 3155, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712168f.jpg"} -{"rects": [{"solidity": 0.997012821049311, "top": 850, "right": 3920, "bottom": 3280, "left": 2305}, {"solidity": 0.9952474095148801, "top": 845, "right": 5700, "bottom": 3280, "left": 4080}, {"solidity": 0.9985536968483592, "top": 860, "right": 2100, "bottom": 3280, "left": 500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730457f.jpg"} -{"rects": [{"solidity": 0.9970128837283283, "top": 825, "right": 3855, "bottom": 3255, "left": 2225}, {"solidity": 0.9965697732688024, "top": 845, "right": 5710, "bottom": 3265, "left": 4090}, {"solidity": 0.9981315676865737, "top": 830, "right": 2015, "bottom": 3230, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712280f.jpg"} -{"rects": [{"solidity": 0.9970129449632729, "top": 760, "right": 3095, "bottom": 3190, "left": 1460}, {"solidity": 0.9962092445519958, "top": 780, "right": 5515, "bottom": 3210, "left": 3895}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730770f.jpg"} -{"rects": [{"solidity": 0.9970133122898511, "top": 1265, "right": 2690, "bottom": 4285, "left": 255}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516925.jpg"} -{"rects": [{"solidity": 0.9970135752412236, "top": 860, "right": 3905, "bottom": 3270, "left": 2265}, {"solidity": 0.9970365989669879, "top": 845, "right": 2020, "bottom": 3265, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724421f.jpg"} -{"rects": [{"solidity": 0.9970137335387983, "top": 365, "right": 5040, "bottom": 3610, "left": 1035}], "shape": {"h": 3890, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728156f.jpg"} -{"rects": [{"solidity": 0.997013745130058, "top": 405, "right": 3240, "bottom": 2020, "left": 815}, {"solidity": 0.9986678780785111, "top": 2205, "right": 3235, "bottom": 3820, "left": 825}, {"solidity": 0.9964799979140728, "top": 4050, "right": 3220, "bottom": 5655, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726814f.jpg"} -{"rects": [{"solidity": 0.9970137689464253, "top": 790, "right": 2040, "bottom": 3210, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705632f.jpg"} -{"rects": [{"solidity": 0.9970139109585378, "top": 370, "right": 3155, "bottom": 2015, "left": 705}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715505f.jpg"} -{"rects": [{"solidity": 0.9970139766587581, "top": 730, "right": 3280, "bottom": 2645, "left": 605}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714326f.jpg"} -{"rects": [{"solidity": 0.9970140922739638, "top": 380, "right": 3090, "bottom": 1960, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715736f.jpg"} -{"rects": [{"solidity": 0.997014159468861, "top": 850, "right": 3305, "bottom": 2830, "left": 500}, {"solidity": 0.9955292200644973, "top": 3265, "right": 3300, "bottom": 5255, "left": 495}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727273f.jpg"} -{"rects": [{"solidity": 0.9970143840628987, "top": 400, "right": 3180, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705310f.jpg"} -{"rects": [{"solidity": 0.9970146794734501, "top": 425, "right": 3235, "bottom": 2025, "left": 835}, {"solidity": 0.9956364357613924, "top": 2285, "right": 3250, "bottom": 3895, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702475f.jpg"} -{"rects": [{"solidity": 0.9970148112025855, "top": 905, "right": 5995, "bottom": 2970, "left": 2755}, {"solidity": 0.9971018723556265, "top": 350, "right": 2695, "bottom": 3580, "left": 655}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702492f.jpg"} -{"rects": [{"solidity": 0.9970149405737914, "top": 535, "right": 4995, "bottom": 3715, "left": 1100}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701766f.jpg"} -{"rects": [{"solidity": 0.9970151087884511, "top": 415, "right": 3165, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722402f.jpg"} -{"rects": [{"solidity": 0.9970151860092099, "top": 780, "right": 2055, "bottom": 3195, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722670f.jpg"} -{"rects": [{"solidity": 0.9970152446138291, "top": 680, "right": 2810, "bottom": 2095, "left": 980}, {"solidity": 0.9873784050307983, "top": 2150, "right": 2805, "bottom": 3585, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707143f.jpg"} -{"rects": [{"solidity": 0.9970152894206452, "top": 290, "right": 3195, "bottom": 1920, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706316f.jpg"} -{"rects": [{"solidity": 0.9970153988586005, "top": 440, "right": 3160, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702660f.jpg"} -{"rects": [{"solidity": 0.9970154386169802, "top": 880, "right": 2045, "bottom": 3290, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730469f.jpg"} -{"rects": [{"solidity": 0.9970158638402308, "top": 830, "right": 2240, "bottom": 3560, "left": 415}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711322f.jpg"} -{"rects": [{"solidity": 0.9970159031724454, "top": 425, "right": 3165, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/722947f.jpg"} -{"rects": [{"solidity": 0.9970159087565327, "top": 400, "right": 3205, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707730f.jpg"} -{"rects": [{"solidity": 0.9970159778201574, "top": 390, "right": 3065, "bottom": 2015, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702504f.jpg"} -{"rects": [{"solidity": 0.9970160807444581, "top": 820, "right": 2145, "bottom": 3210, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710666f.jpg"} -{"rects": [{"solidity": 0.997016100123982, "top": 635, "right": 5095, "bottom": 3470, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733724f.jpg"} -{"rects": [{"solidity": 0.9970161964084682, "top": 840, "right": 2045, "bottom": 3255, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708937f.jpg"} -{"rects": [{"solidity": 0.9970162412535076, "top": 755, "right": 2060, "bottom": 3150, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711102f.jpg"} -{"rects": [{"solidity": 0.9970162946845391, "top": 555, "right": 2100, "bottom": 2640, "left": 605}, {"solidity": 0.9966775233637212, "top": 560, "right": 3980, "bottom": 2650, "left": 2500}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716074f.jpg"} -{"rects": [{"solidity": 0.9970163027496396, "top": 3275, "right": 3210, "bottom": 5205, "left": 470}, {"solidity": 0.9936891927425716, "top": 735, "right": 3175, "bottom": 2570, "left": 555}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723969f.jpg"} -{"rects": [{"solidity": 0.9970164704503616, "top": 625, "right": 2675, "bottom": 2045, "left": 855}, {"solidity": 0.9974448200437462, "top": 625, "right": 5275, "bottom": 2040, "left": 3480}, {"solidity": 0.9982471559981223, "top": 2105, "right": 5285, "bottom": 3505, "left": 3480}, {"solidity": 0.9952465200459588, "top": 2115, "right": 2650, "bottom": 3525, "left": 885}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702981f.jpg"} -{"rects": [{"solidity": 0.9970165346262799, "top": 520, "right": 2040, "bottom": 2900, "left": 455}, {"solidity": 0.9932817129777889, "top": 535, "right": 3895, "bottom": 2910, "left": 2315}], "shape": {"h": 3710, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732409f.jpg"} -{"rects": [{"solidity": 0.9970165945865576, "top": 775, "right": 3925, "bottom": 3185, "left": 2305}, {"solidity": 0.9970433595997164, "top": 790, "right": 2060, "bottom": 3170, "left": 480}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712192f.jpg"} -{"rects": [{"solidity": 0.9970165957855018, "top": 780, "right": 2070, "bottom": 3210, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707268f.jpg"} -{"rects": [{"solidity": 0.9970166468528202, "top": 2265, "right": 3215, "bottom": 3875, "left": 785}, {"solidity": 0.9966625811312945, "top": 445, "right": 3210, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734037f.jpg"} -{"rects": [{"solidity": 0.9970167026445323, "top": 395, "right": 3235, "bottom": 2020, "left": 795}, {"solidity": 0.999080069122584, "top": 2270, "right": 3230, "bottom": 3890, "left": 800}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727534f.jpg"} -{"rects": [{"solidity": 0.9970167528277685, "top": 645, "right": 2575, "bottom": 2070, "left": 750}, {"solidity": 0.9963623436830418, "top": 595, "right": 5150, "bottom": 2015, "left": 3320}, {"solidity": 0.9965450868601223, "top": 2060, "right": 5150, "bottom": 3480, "left": 3325}, {"solidity": 0.9909455174962557, "top": 2110, "right": 2555, "bottom": 3535, "left": 725}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704007f.jpg"} -{"rects": [{"solidity": 0.997016754551465, "top": 2270, "right": 3200, "bottom": 3880, "left": 775}, {"solidity": 0.9969432399071986, "top": 4125, "right": 3195, "bottom": 5740, "left": 780}, {"solidity": 0.9950431781780955, "top": 435, "right": 3185, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734677f.jpg"} -{"rects": [{"solidity": 0.9970169756578251, "top": 910, "right": 3080, "bottom": 4955, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723825f.jpg"} -{"rects": [{"solidity": 0.9970169992497843, "top": 1025, "right": 3540, "bottom": 5075, "left": 240}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713779f.jpg"} -{"rects": [{"solidity": 0.9970170976031888, "top": 760, "right": 2095, "bottom": 3160, "left": 485}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709681f.jpg"} -{"rects": [{"solidity": 0.9970171250981209, "top": 410, "right": 3195, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702703f.jpg"} -{"rects": [{"solidity": 0.9970173491654801, "top": 505, "right": 5090, "bottom": 3730, "left": 1020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718408f.jpg"} -{"rects": [{"solidity": 0.997017364127968, "top": 720, "right": 2010, "bottom": 3135, "left": 390}, {"solidity": 0.996591960271994, "top": 710, "right": 3830, "bottom": 3125, "left": 2220}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726934f.jpg"} -{"rects": [{"solidity": 0.9970174404449171, "top": 425, "right": 3125, "bottom": 2055, "left": 705}, {"solidity": 0.9961869575378823, "top": 2275, "right": 3115, "bottom": 3910, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719076f.jpg"} -{"rects": [{"solidity": 0.9970174979906845, "top": 215, "right": 3210, "bottom": 1835, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719623f.jpg"} -{"rects": [{"solidity": 0.9970175364980585, "top": 2255, "right": 3050, "bottom": 3875, "left": 630}, {"solidity": 0.9963724499840246, "top": 390, "right": 3055, "bottom": 2015, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729189f.jpg"} -{"rects": [{"solidity": 0.9970176011923487, "top": 730, "right": 3580, "bottom": 3235, "left": 260}, {"solidity": 0.9922418468649044, "top": 3650, "right": 3070, "bottom": 5100, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723593f.jpg"} -{"rects": [{"solidity": 0.9970176264364085, "top": 535, "right": 2110, "bottom": 2635, "left": 630}, {"solidity": 0.99577223152649, "top": 545, "right": 3925, "bottom": 2645, "left": 2455}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716045f.jpg"} -{"rects": [{"solidity": 0.9970177304733129, "top": 790, "right": 3855, "bottom": 3195, "left": 2250}, {"solidity": 0.996631359044246, "top": 790, "right": 2020, "bottom": 3195, "left": 415}, {"solidity": 0.9953579039532156, "top": 795, "right": 5700, "bottom": 3190, "left": 4105}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721537f.jpg"} -{"rects": [{"solidity": 0.9970182018818199, "top": 605, "right": 2825, "bottom": 2405, "left": 1630}, {"solidity": 0.99499854855097, "top": 620, "right": 1445, "bottom": 2380, "left": 250}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715933f.jpg"} -{"rects": [{"solidity": 0.9970182054128783, "top": 545, "right": 3095, "bottom": 3705, "left": 625}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713700f.jpg"} -{"rects": [{"solidity": 0.9970182800867882, "top": 720, "right": 2355, "bottom": 3465, "left": 215}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509047.jpg"} -{"rects": [{"solidity": 0.997018665059706, "top": 2090, "right": 3100, "bottom": 3730, "left": 665}, {"solidity": 0.9968524765286949, "top": 440, "right": 3075, "bottom": 2085, "left": 645}, {"solidity": 0.9970470681377056, "top": 425, "right": 5695, "bottom": 2060, "left": 3275}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702395f.jpg"} -{"rects": [{"solidity": 0.9970186818683456, "top": 495, "right": 2700, "bottom": 3675, "left": 690}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733046f.jpg"} -{"rects": [{"solidity": 0.997018965822846, "top": 755, "right": 1995, "bottom": 3175, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733276f.jpg"} -{"rects": [{"solidity": 0.9970192054985013, "top": 790, "right": 1905, "bottom": 3165, "left": 310}, {"solidity": 0.9934453491612082, "top": 1015, "right": 3625, "bottom": 2950, "left": 2145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712996f.jpg"} -{"rects": [{"solidity": 0.9970193254674833, "top": 550, "right": 3200, "bottom": 2160, "left": 795}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712101f.jpg"} -{"rects": [{"solidity": 0.9970193596928687, "top": 410, "right": 3145, "bottom": 2035, "left": 725}, {"solidity": 0.9999967712981319, "top": 2275, "right": 3120, "bottom": 3890, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703914f.jpg"} -{"rects": [{"solidity": 0.9970194031013793, "top": 2095, "right": 3015, "bottom": 3710, "left": 605}, {"solidity": 0.9953907704184944, "top": 330, "right": 3015, "bottom": 1935, "left": 610}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730244f.jpg"} -{"rects": [{"solidity": 0.9970194795998506, "top": 360, "right": 2990, "bottom": 1985, "left": 575}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707984f.jpg"} -{"rects": [{"solidity": 0.9970195842003928, "top": 440, "right": 5065, "bottom": 3655, "left": 1045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708424f.jpg"} -{"rects": [{"solidity": 0.997019595193936, "top": 435, "right": 3125, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700796f.jpg"} -{"rects": [{"solidity": 0.9970198048100607, "top": 2175, "right": 3175, "bottom": 3795, "left": 750}, {"solidity": 0.9961279266045588, "top": 395, "right": 3180, "bottom": 2020, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710300f.jpg"} -{"rects": [{"solidity": 0.9970200124571352, "top": 705, "right": 2425, "bottom": 3490, "left": 475}, {"solidity": 0.9968710041368936, "top": 2150, "right": 4295, "bottom": 3545, "left": 2485}, {"solidity": 0.9981717538502054, "top": 715, "right": 4300, "bottom": 2090, "left": 2490}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726206f.jpg"} -{"rects": [{"solidity": 0.9970200275911516, "top": 2265, "right": 3125, "bottom": 3895, "left": 705}, {"solidity": 0.9972699498095725, "top": 400, "right": 3120, "bottom": 2020, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702485f.jpg"} -{"rects": [{"solidity": 0.9970201365086728, "top": 1000, "right": 3565, "bottom": 5110, "left": 310}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708759f.jpg"} -{"rects": [{"solidity": 0.9970203099518443, "top": 545, "right": 3025, "bottom": 2180, "left": 605}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702955f.jpg"} -{"rects": [{"solidity": 0.9970204698834083, "top": 305, "right": 3240, "bottom": 1935, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702533f.jpg"} -{"rects": [{"solidity": 0.9970206053115191, "top": 815, "right": 2065, "bottom": 3225, "left": 455}, {"solidity": 0.9949991976446778, "top": 840, "right": 3965, "bottom": 3245, "left": 2365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723861f.jpg"} -{"rects": [{"solidity": 0.9970207065209058, "top": 940, "right": 3530, "bottom": 4955, "left": 260}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713898f.jpg"} -{"rects": [{"solidity": 0.9970207523320374, "top": 805, "right": 2050, "bottom": 3225, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713016f.jpg"} -{"rects": [{"solidity": 0.9970207715713232, "top": 590, "right": 2800, "bottom": 2010, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704080f.jpg"} -{"rects": [{"solidity": 0.9970209505966038, "top": 640, "right": 4230, "bottom": 3720, "left": 2155}, {"solidity": 0.9961369118912262, "top": 830, "right": 1985, "bottom": 3215, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724253f.jpg"} -{"rects": [{"solidity": 0.9970210110834378, "top": 765, "right": 2925, "bottom": 3940, "left": 635}], "shape": {"h": 4430, "w": 6880}, "file": "/usr/local/google/home/danvk/milstein/711397f.jpg"} -{"rects": [{"solidity": 0.9970212133547858, "top": 350, "right": 2960, "bottom": 1975, "left": 550}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708159f.jpg"} -{"rects": [{"solidity": 0.9970212917675506, "top": 435, "right": 3250, "bottom": 2045, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725958f.jpg"} -{"rects": [{"solidity": 0.9970213106573724, "top": 545, "right": 5590, "bottom": 3730, "left": 3245}, {"solidity": 0.9984987805794467, "top": 520, "right": 2835, "bottom": 3690, "left": 505}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730657f.jpg"} -{"rects": [{"solidity": 0.9970214074330297, "top": 2240, "right": 3075, "bottom": 3865, "left": 645}, {"solidity": 0.998605484448892, "top": 395, "right": 3075, "bottom": 2005, "left": 655}, {"solidity": 0.9966324154439903, "top": 4125, "right": 3070, "bottom": 5725, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732825f.jpg"} -{"rects": [{"solidity": 0.9970214122976878, "top": 805, "right": 3980, "bottom": 3200, "left": 2380}, {"solidity": 0.99460022141075, "top": 795, "right": 2085, "bottom": 3190, "left": 490}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731234f.jpg"} -{"rects": [{"solidity": 0.9970214188072388, "top": 520, "right": 4950, "bottom": 3725, "left": 1030}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709381f.jpg"} -{"rects": [{"solidity": 0.9970214576621482, "top": 810, "right": 2065, "bottom": 3230, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701767f.jpg"} -{"rects": [{"solidity": 0.9970215070400743, "top": 470, "right": 3185, "bottom": 2085, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719645f.jpg"} -{"rects": [{"solidity": 0.9970217714322631, "top": 660, "right": 2015, "bottom": 3075, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725834f.jpg"} -{"rects": [{"solidity": 0.9970219271526519, "top": 3320, "right": 3595, "bottom": 5345, "left": 380}, {"solidity": 0.9972010613047211, "top": 960, "right": 3615, "bottom": 2990, "left": 395}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/715611f.jpg"} -{"rects": [{"solidity": 0.9970222120417506, "top": 345, "right": 3850, "bottom": 2780, "left": 825}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715884f.jpg"} -{"rects": [{"solidity": 0.9970223059295215, "top": 1125, "right": 3500, "bottom": 5000, "left": 285}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/711862f.jpg"} -{"rects": [{"solidity": 0.9970223916150548, "top": 430, "right": 3225, "bottom": 2050, "left": 805}, {"solidity": 0.9976597276245751, "top": 2280, "right": 3225, "bottom": 3895, "left": 810}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/732103f.jpg"} -{"rects": [{"solidity": 0.9970224358613547, "top": 595, "right": 2445, "bottom": 1805, "left": 590}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702072f.jpg"} -{"rects": [{"solidity": 0.9970224865995555, "top": 635, "right": 2000, "bottom": 3050, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726984f.jpg"} -{"rects": [{"solidity": 0.9970225122432758, "top": 2275, "right": 3180, "bottom": 3905, "left": 760}, {"solidity": 0.9966643979864392, "top": 440, "right": 3195, "bottom": 2065, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701353f.jpg"} -{"rects": [{"solidity": 0.9970228092990634, "top": 1040, "right": 3185, "bottom": 5005, "left": 560}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714305f.jpg"} -{"rects": [{"solidity": 0.99702284979072, "top": 460, "right": 3225, "bottom": 2065, "left": 815}, {"solidity": 0.993764169595251, "top": 4180, "right": 2940, "bottom": 5605, "left": 1090}, {"solidity": 0.9934034958566011, "top": 2410, "right": 2970, "bottom": 3835, "left": 1120}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727980f.jpg"} -{"rects": [{"solidity": 0.9970232080706988, "top": 415, "right": 3165, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724627f.jpg"} -{"rects": [{"solidity": 0.9970232273041459, "top": 445, "right": 3310, "bottom": 2050, "left": 900}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725973f.jpg"} -{"rects": [{"solidity": 0.9970233285715209, "top": 825, "right": 2025, "bottom": 3250, "left": 415}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714632f.jpg"} -{"rects": [{"solidity": 0.9970233375621101, "top": 725, "right": 3870, "bottom": 3115, "left": 2265}, {"solidity": 0.9967253797995415, "top": 725, "right": 2000, "bottom": 3115, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726479f.jpg"} -{"rects": [{"solidity": 0.9970233514639282, "top": 745, "right": 2070, "bottom": 3150, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710909f.jpg"} -{"rects": [{"solidity": 0.9970234198095883, "top": 390, "right": 3030, "bottom": 2030, "left": 615}, {"solidity": 0.9965860697568014, "top": 395, "right": 5665, "bottom": 2040, "left": 3245}, {"solidity": 0.9966940085706147, "top": 2080, "right": 3050, "bottom": 3715, "left": 630}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701556f.jpg"} -{"rects": [{"solidity": 0.9970234817813766, "top": 795, "right": 2040, "bottom": 3210, "left": 430}, {"solidity": 0.998105372437062, "top": 790, "right": 3835, "bottom": 3200, "left": 2225}, {"solidity": 0.9951771717302584, "top": 775, "right": 5640, "bottom": 3195, "left": 4020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731655f.jpg"} -{"rects": [{"solidity": 0.9970234961568678, "top": 2475, "right": 2515, "bottom": 3965, "left": 420}, {"solidity": 0.9972436199306153, "top": 755, "right": 2530, "bottom": 2185, "left": 490}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716015f.jpg"} -{"rects": [{"solidity": 0.9970237013791395, "top": 2300, "right": 3095, "bottom": 3890, "left": 695}, {"solidity": 0.9970783840121762, "top": 430, "right": 3090, "bottom": 2015, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728400f.jpg"} -{"rects": [{"solidity": 0.9970238660012272, "top": 2050, "right": 2985, "bottom": 3700, "left": 550}, {"solidity": 0.9967226117579873, "top": 395, "right": 2970, "bottom": 2030, "left": 530}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704566f.jpg"} -{"rects": [{"solidity": 0.9970238781106894, "top": 785, "right": 2020, "bottom": 3180, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718892f.jpg"} -{"rects": [{"solidity": 0.9970239441626005, "top": 445, "right": 3210, "bottom": 2065, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715401f.jpg"} -{"rects": [{"solidity": 0.9970240714483612, "top": 465, "right": 2990, "bottom": 2080, "left": 585}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705365f.jpg"} -{"rects": [{"solidity": 0.9970242715079777, "top": 830, "right": 2050, "bottom": 3225, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708586f.jpg"} -{"rects": [{"solidity": 0.9970245792966929, "top": 630, "right": 3415, "bottom": 2655, "left": 365}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/711511f.jpg"} -{"rects": [{"solidity": 0.9970251385641861, "top": 2225, "right": 3115, "bottom": 3820, "left": 715}, {"solidity": 0.9955593492802626, "top": 4075, "right": 3100, "bottom": 5665, "left": 710}, {"solidity": 0.9978558518903851, "top": 395, "right": 3110, "bottom": 1980, "left": 730}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/729005f.jpg"} -{"rects": [{"solidity": 0.9970251589980543, "top": 425, "right": 3355, "bottom": 2360, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724317f.jpg"} -{"rects": [{"solidity": 0.9970252881948594, "top": 585, "right": 3285, "bottom": 2235, "left": 840}, {"solidity": 0.9972271468318812, "top": 2005, "right": 5850, "bottom": 3645, "left": 3415}, {"solidity": 0.9964559971420351, "top": 265, "right": 5860, "bottom": 1915, "left": 3425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701697f.jpg"} -{"rects": [{"solidity": 0.9970253047538011, "top": 1025, "right": 3540, "bottom": 5050, "left": 280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714786f.jpg"} -{"rects": [{"solidity": 0.997025518598574, "top": 770, "right": 3865, "bottom": 3175, "left": 2235}, {"solidity": 0.9958679286701186, "top": 785, "right": 5715, "bottom": 3195, "left": 4075}, {"solidity": 0.99675789010477, "top": 765, "right": 2035, "bottom": 3170, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719722f.jpg"} -{"rects": [{"solidity": 0.9970257025557997, "top": 420, "right": 2115, "bottom": 2690, "left": 575}], "shape": {"h": 3030, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/715683f.jpg"} -{"rects": [{"solidity": 0.9970258278274011, "top": 645, "right": 2810, "bottom": 2085, "left": 1000}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707417f.jpg"} -{"rects": [{"solidity": 0.997026013257035, "top": 880, "right": 3515, "bottom": 5000, "left": 250}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/715222f.jpg"} -{"rects": [{"solidity": 0.997026083593049, "top": 815, "right": 3775, "bottom": 3255, "left": 2145}, {"solidity": 0.9981973081512465, "top": 815, "right": 1930, "bottom": 3230, "left": 305}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704696f.jpg"} -{"rects": [{"solidity": 0.997026094878636, "top": 785, "right": 1965, "bottom": 3180, "left": 345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724028f.jpg"} -{"rects": [{"solidity": 0.9970261604944008, "top": 845, "right": 2010, "bottom": 3245, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729361f.jpg"} -{"rects": [{"solidity": 0.9970261697065821, "top": 460, "right": 3380, "bottom": 2090, "left": 955}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700300f.jpg"} -{"rects": [{"solidity": 0.9970263408850744, "top": 805, "right": 2030, "bottom": 3225, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719784f.jpg"} -{"rects": [{"solidity": 0.9970264529832014, "top": 775, "right": 5620, "bottom": 3180, "left": 3990}, {"solidity": 0.9976232583508255, "top": 775, "right": 1900, "bottom": 3170, "left": 310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724059f.jpg"} -{"rects": [{"solidity": 0.9970265317504581, "top": 415, "right": 3195, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700944f.jpg"} -{"rects": [{"solidity": 0.997026778877866, "top": 420, "right": 3135, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710053f.jpg"} -{"rects": [{"solidity": 0.997026784987381, "top": 415, "right": 3125, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728652f.jpg"} -{"rects": [{"solidity": 0.9970268107439355, "top": 1070, "right": 3490, "bottom": 5090, "left": 300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724546f.jpg"} -{"rects": [{"solidity": 0.9970268441980564, "top": 425, "right": 3180, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/711057f.jpg"} -{"rects": [{"solidity": 0.9970269806365112, "top": 820, "right": 1995, "bottom": 3225, "left": 365}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719413f.jpg"} -{"rects": [{"solidity": 0.9970270059166976, "top": 450, "right": 3085, "bottom": 1870, "left": 1265}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726547f.jpg"} -{"rects": [{"solidity": 0.9970271119691615, "top": 2280, "right": 3095, "bottom": 3910, "left": 675}, {"solidity": 0.9964086490621323, "top": 4145, "right": 3075, "bottom": 5760, "left": 665}, {"solidity": 0.9967559590561726, "top": 430, "right": 3110, "bottom": 2040, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709400f.jpg"} -{"rects": [{"solidity": 0.9970271913323848, "top": 285, "right": 3255, "bottom": 1915, "left": 820}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/700123f.jpg"} -{"rects": [{"solidity": 0.9970272798329126, "top": 435, "right": 3185, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719940f.jpg"} -{"rects": [{"solidity": 0.9970273041627445, "top": 855, "right": 3835, "bottom": 3280, "left": 2230}, {"solidity": 0.9982609939313564, "top": 870, "right": 2015, "bottom": 3290, "left": 415}, {"solidity": 0.9959357814324576, "top": 860, "right": 5685, "bottom": 3275, "left": 4085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729724f.jpg"} -{"rects": [{"solidity": 0.9970273687738516, "top": 415, "right": 5050, "bottom": 3725, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730003f.jpg"} -{"rects": [{"solidity": 0.9970273959029206, "top": 850, "right": 3925, "bottom": 3270, "left": 2290}, {"solidity": 0.9956380546107877, "top": 830, "right": 2075, "bottom": 3260, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702465f.jpg"} -{"rects": [{"solidity": 0.9970275482003779, "top": 445, "right": 3180, "bottom": 2050, "left": 775}, {"solidity": 0.9953085020405836, "top": 2280, "right": 3155, "bottom": 3865, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/734004f.jpg"} -{"rects": [{"solidity": 0.9970275882135111, "top": 445, "right": 3190, "bottom": 2040, "left": 800}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/715160f.jpg"} -{"rects": [{"solidity": 0.9970276568614519, "top": 1015, "right": 2365, "bottom": 2450, "left": 355}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509291.jpg"} -{"rects": [{"solidity": 0.997027661920514, "top": 510, "right": 3020, "bottom": 1935, "left": 1175}, {"solidity": 0.995327265406354, "top": 2300, "right": 2995, "bottom": 3720, "left": 1200}, {"solidity": 0.995168960571673, "top": 4055, "right": 2995, "bottom": 5465, "left": 1200}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727567f.jpg"} -{"rects": [{"solidity": 0.9970280589994897, "top": 395, "right": 3090, "bottom": 2015, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701947f.jpg"} -{"rects": [{"solidity": 0.9970281193228193, "top": 425, "right": 3160, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724354f.jpg"} -{"rects": [{"solidity": 0.9970281288041901, "top": 505, "right": 4995, "bottom": 3515, "left": 1125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724654f.jpg"} -{"rects": [{"solidity": 0.9970286495691542, "top": 2245, "right": 3300, "bottom": 3870, "left": 875}, {"solidity": 0.9960353591019018, "top": 4085, "right": 3295, "bottom": 5725, "left": 865}, {"solidity": 0.9959931012222835, "top": 380, "right": 3300, "bottom": 1990, "left": 880}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704779f.jpg"} -{"rects": [{"solidity": 0.9970287302614238, "top": 565, "right": 3305, "bottom": 2610, "left": 475}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720124f.jpg"} -{"rects": [{"solidity": 0.9970288175847845, "top": 780, "right": 3890, "bottom": 3210, "left": 2265}, {"solidity": 0.9984452081639528, "top": 775, "right": 2020, "bottom": 3195, "left": 415}, {"solidity": 0.9956719633591271, "top": 1040, "right": 5580, "bottom": 2880, "left": 4125}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732005f.jpg"} -{"rects": [{"solidity": 0.997028927325742, "top": 760, "right": 2015, "bottom": 3170, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734273f.jpg"} -{"rects": [{"solidity": 0.9970290740288297, "top": 820, "right": 2125, "bottom": 3220, "left": 515}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712018f.jpg"} -{"rects": [{"solidity": 0.9970290955924626, "top": 825, "right": 3860, "bottom": 3245, "left": 2240}, {"solidity": 0.9978364024484337, "top": 810, "right": 5710, "bottom": 3235, "left": 4095}, {"solidity": 0.9994277086034473, "top": 830, "right": 2010, "bottom": 3245, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718684f.jpg"} -{"rects": [{"solidity": 0.9970294264915457, "top": 615, "right": 2730, "bottom": 2055, "left": 910}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706902f.jpg"} -{"rects": [{"solidity": 0.9970295165865285, "top": 555, "right": 3180, "bottom": 2195, "left": 750}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713834f.jpg"} -{"rects": [{"solidity": 0.997029522711375, "top": 2245, "right": 3200, "bottom": 3875, "left": 770}, {"solidity": 0.9982439660543144, "top": 410, "right": 3195, "bottom": 2020, "left": 775}, {"solidity": 0.9985759918702082, "top": 4105, "right": 3220, "bottom": 5715, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719552f.jpg"} -{"rects": [{"solidity": 0.9970295768320403, "top": 4020, "right": 3035, "bottom": 5615, "left": 680}, {"solidity": 0.9959831129531173, "top": 480, "right": 3055, "bottom": 2070, "left": 675}, {"solidity": 0.9960719754718192, "top": 2235, "right": 3035, "bottom": 3835, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711788f.jpg"} -{"rects": [{"solidity": 0.9970297545074207, "top": 2215, "right": 3115, "bottom": 3820, "left": 700}, {"solidity": 0.9963508905136245, "top": 4075, "right": 3120, "bottom": 5675, "left": 715}, {"solidity": 0.996823338311195, "top": 370, "right": 3095, "bottom": 1970, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728369f.jpg"} -{"rects": [{"solidity": 0.9970297651926849, "top": 440, "right": 3050, "bottom": 2040, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729651f.jpg"} -{"rects": [{"solidity": 0.997029981201186, "top": 605, "right": 5280, "bottom": 2025, "left": 3450}, {"solidity": 0.997221698534446, "top": 615, "right": 2640, "bottom": 2010, "left": 820}, {"solidity": 0.9941702132065898, "top": 2060, "right": 2615, "bottom": 3445, "left": 850}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707456f.jpg"} -{"rects": [{"solidity": 0.9970300614237296, "top": 700, "right": 3345, "bottom": 2770, "left": 345}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/719294f.jpg"} -{"rects": [{"solidity": 0.9970303799941389, "top": 815, "right": 2065, "bottom": 3230, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720717f.jpg"} -{"rects": [{"solidity": 0.9970303804986379, "top": 430, "right": 3205, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706852f.jpg"} -{"rects": [{"solidity": 0.9970304717781107, "top": 410, "right": 3215, "bottom": 2015, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706049f.jpg"} -{"rects": [{"solidity": 0.9970305123739421, "top": 820, "right": 3965, "bottom": 3225, "left": 2340}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718288f.jpg"} -{"rects": [{"solidity": 0.9970305229353972, "top": 1080, "right": 3370, "bottom": 4660, "left": 405}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704471f.jpg"} -{"rects": [{"solidity": 0.9970307966288915, "top": 680, "right": 2375, "bottom": 3095, "left": 750}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716570f.jpg"} -{"rects": [{"solidity": 0.997031026009787, "top": 3300, "right": 3215, "bottom": 5225, "left": 385}, {"solidity": 0.9964149513091143, "top": 900, "right": 3150, "bottom": 2850, "left": 375}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702873f.jpg"} -{"rects": [{"solidity": 0.9970310952030935, "top": 395, "right": 3300, "bottom": 2015, "left": 865}, {"solidity": 0.997033772343643, "top": 2240, "right": 3295, "bottom": 3855, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727289f.jpg"} -{"rects": [{"solidity": 0.997031138971898, "top": 900, "right": 2055, "bottom": 3320, "left": 450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729789f.jpg"} -{"rects": [{"solidity": 0.9970312299190336, "top": 875, "right": 3870, "bottom": 3295, "left": 2250}, {"solidity": 0.998123869801085, "top": 885, "right": 5720, "bottom": 3305, "left": 4110}, {"solidity": 0.9959852750248492, "top": 860, "right": 2015, "bottom": 3285, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733179f.jpg"} -{"rects": [{"solidity": 0.9970312401304525, "top": 385, "right": 3085, "bottom": 1965, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723814f.jpg"} -{"rects": [{"solidity": 0.9970312894230675, "top": 825, "right": 2010, "bottom": 3225, "left": 400}, {"solidity": 0.9978971270609142, "top": 825, "right": 5830, "bottom": 3220, "left": 4230}, {"solidity": 0.9967100609625703, "top": 835, "right": 3920, "bottom": 3230, "left": 2320}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731691f.jpg"} -{"rects": [{"solidity": 0.9970314160323285, "top": 535, "right": 2705, "bottom": 3735, "left": 690}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728332f.jpg"} -{"rects": [{"solidity": 0.997031603494188, "top": 1025, "right": 2690, "bottom": 4045, "left": 230}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508121.jpg"} -{"rects": [{"solidity": 0.9970317252261998, "top": 395, "right": 3230, "bottom": 2035, "left": 805}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705800f.jpg"} -{"rects": [{"solidity": 0.9970317383062657, "top": 2295, "right": 3105, "bottom": 3920, "left": 680}, {"solidity": 0.9968883490945448, "top": 435, "right": 3115, "bottom": 2065, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731668f.jpg"} -{"rects": [{"solidity": 0.9970317913282495, "top": 915, "right": 2005, "bottom": 3335, "left": 370}, {"solidity": 0.9950090832099612, "top": 920, "right": 3865, "bottom": 3340, "left": 2230}, {"solidity": 0.9935384505871048, "top": 915, "right": 5720, "bottom": 3330, "left": 4090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710618f.jpg"} -{"rects": [{"solidity": 0.9970318617838079, "top": 845, "right": 2020, "bottom": 3230, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729580f.jpg"} -{"rects": [{"solidity": 0.9970320659598312, "top": 370, "right": 3270, "bottom": 1985, "left": 845}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726916f.jpg"} -{"rects": [{"solidity": 0.9970321173035582, "top": 2235, "right": 3145, "bottom": 3855, "left": 715}, {"solidity": 0.9974432912285471, "top": 430, "right": 3145, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706555f.jpg"} -{"rects": [{"solidity": 0.9970321397093102, "top": 920, "right": 3590, "bottom": 5025, "left": 345}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/712685f.jpg"} -{"rects": [{"solidity": 0.9970324941886345, "top": 530, "right": 2980, "bottom": 1940, "left": 1170}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727648f.jpg"} -{"rects": [{"solidity": 0.9970326122397247, "top": 515, "right": 5145, "bottom": 3745, "left": 1120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708253f.jpg"} -{"rects": [{"solidity": 0.9970329819821088, "top": 855, "right": 3235, "bottom": 2795, "left": 460}, {"solidity": 0.9985136980798586, "top": 3380, "right": 3235, "bottom": 5325, "left": 500}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705777f.jpg"} -{"rects": [{"solidity": 0.9970330279417039, "top": 425, "right": 3125, "bottom": 2025, "left": 710}, {"solidity": 0.9942049828687449, "top": 2250, "right": 3125, "bottom": 3855, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734658f.jpg"} -{"rects": [{"solidity": 0.99703305378682, "top": 850, "right": 2010, "bottom": 3265, "left": 400}, {"solidity": 0.9990970831861187, "top": 860, "right": 3865, "bottom": 3270, "left": 2270}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729167f.jpg"} -{"rects": [{"solidity": 0.9970330613956593, "top": 515, "right": 5050, "bottom": 3800, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712316f.jpg"} -{"rects": [{"solidity": 0.9970334533694944, "top": 430, "right": 2975, "bottom": 2055, "left": 555}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705507f.jpg"} -{"rects": [{"solidity": 0.9970335300005267, "top": 390, "right": 3315, "bottom": 1985, "left": 915}, {"solidity": 0.9954627709458834, "top": 2195, "right": 3330, "bottom": 3790, "left": 925}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727377f.jpg"} -{"rects": [{"solidity": 0.9970340291059762, "top": 850, "right": 2565, "bottom": 3285, "left": 935}, {"solidity": 0.9966200087841579, "top": 1165, "right": 5445, "bottom": 2805, "left": 3015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705570f.jpg"} -{"rects": [{"solidity": 0.9970340712272775, "top": 460, "right": 3180, "bottom": 2080, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702158f.jpg"} -{"rects": [{"solidity": 0.9970341389537452, "top": 2250, "right": 3020, "bottom": 3840, "left": 630}, {"solidity": 0.9943064010757888, "top": 390, "right": 3025, "bottom": 1985, "left": 625}, {"solidity": 0.9961856134554737, "top": 4115, "right": 3030, "bottom": 5700, "left": 635}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729242f.jpg"} -{"rects": [{"solidity": 0.9970343117030622, "top": 400, "right": 2945, "bottom": 1820, "left": 1105}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704139f.jpg"} -{"rects": [{"solidity": 0.9970344773989078, "top": 460, "right": 5085, "bottom": 3765, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715144f.jpg"} -{"rects": [{"solidity": 0.9970345401403793, "top": 700, "right": 3285, "bottom": 2510, "left": 665}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/713362f.jpg"} -{"rects": [{"solidity": 0.9970346186538908, "top": 455, "right": 3340, "bottom": 2380, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724599f.jpg"} -{"rects": [{"solidity": 0.9970352869947484, "top": 4095, "right": 3195, "bottom": 5690, "left": 795}, {"solidity": 0.9935480669015833, "top": 395, "right": 3195, "bottom": 1990, "left": 795}, {"solidity": 0.9934582809535204, "top": 2250, "right": 3185, "bottom": 3830, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724652f.jpg"} -{"rects": [{"solidity": 0.9970353137869249, "top": 765, "right": 2050, "bottom": 3180, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721896f.jpg"} -{"rects": [{"solidity": 0.9970353426042328, "top": 430, "right": 3180, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721969f.jpg"} -{"rects": [{"solidity": 0.9970353965356582, "top": 730, "right": 2025, "bottom": 3165, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704037f.jpg"} -{"rects": [{"solidity": 0.9970355699350664, "top": 390, "right": 3215, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707672f.jpg"} -{"rects": [{"solidity": 0.9970356174318562, "top": 950, "right": 3525, "bottom": 5005, "left": 320}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711009f.jpg"} -{"rects": [{"solidity": 0.9970356570905644, "top": 785, "right": 2035, "bottom": 3190, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715584f.jpg"} -{"rects": [{"solidity": 0.9970357605588974, "top": 395, "right": 3180, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730008f.jpg"} -{"rects": [{"solidity": 0.99703584544097, "top": 2215, "right": 3320, "bottom": 3835, "left": 890}, {"solidity": 0.99667123812267, "top": 385, "right": 3315, "bottom": 1980, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727521f.jpg"} -{"rects": [{"solidity": 0.9970358656996626, "top": 420, "right": 3180, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710799f.jpg"} -{"rects": [{"solidity": 0.9970360433823059, "top": 4005, "right": 3220, "bottom": 5755, "left": 625}, {"solidity": 0.996900321957125, "top": 2225, "right": 3225, "bottom": 3930, "left": 690}, {"solidity": 0.995367063229592, "top": 400, "right": 3235, "bottom": 2170, "left": 785}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/716773f.jpg"} -{"rects": [{"solidity": 0.9970360794531651, "top": 485, "right": 3125, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720584f.jpg"} -{"rects": [{"solidity": 0.9970362384161658, "top": 855, "right": 5215, "bottom": 3690, "left": 3210}, {"solidity": 0.9966762386022487, "top": 785, "right": 2635, "bottom": 3585, "left": 665}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704252f.jpg"} -{"rects": [{"solidity": 0.9970362492015059, "top": 420, "right": 3280, "bottom": 2030, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727780f.jpg"} -{"rects": [{"solidity": 0.9970364626798, "top": 320, "right": 3120, "bottom": 1930, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718652f.jpg"} -{"rects": [{"solidity": 0.9970364940470182, "top": 885, "right": 3655, "bottom": 4890, "left": 380}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726864f.jpg"} -{"rects": [{"solidity": 0.997036634486286, "top": 465, "right": 3155, "bottom": 2095, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700156f.jpg"} -{"rects": [{"solidity": 0.9970367509472409, "top": 580, "right": 3125, "bottom": 2165, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719449f.jpg"} -{"rects": [{"solidity": 0.9970372374171151, "top": 795, "right": 2015, "bottom": 3215, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707489f.jpg"} -{"rects": [{"solidity": 0.9970373352711275, "top": 450, "right": 5415, "bottom": 3660, "left": 1405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733400f.jpg"} -{"rects": [{"solidity": 0.9970374952963461, "top": 4130, "right": 3110, "bottom": 5760, "left": 680}, {"solidity": 0.9976401715413764, "top": 2265, "right": 3120, "bottom": 3875, "left": 705}, {"solidity": 0.9954998148344091, "top": 415, "right": 3115, "bottom": 2010, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733667f.jpg"} -{"rects": [{"solidity": 0.9970376446996627, "top": 4045, "right": 3190, "bottom": 5655, "left": 785}, {"solidity": 0.9970788003432082, "top": 2195, "right": 3185, "bottom": 3800, "left": 785}, {"solidity": 0.9939793917763503, "top": 425, "right": 3155, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720093f.jpg"} -{"rects": [{"solidity": 0.9970378176233787, "top": 340, "right": 3180, "bottom": 1960, "left": 760}, {"solidity": 0.9982284748336356, "top": 2185, "right": 3160, "bottom": 3805, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731108f.jpg"} -{"rects": [{"solidity": 0.9970378418931941, "top": 420, "right": 3185, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705260f.jpg"} -{"rects": [{"solidity": 0.9970378731461661, "top": 725, "right": 2005, "bottom": 3105, "left": 420}, {"solidity": 0.9967562651576395, "top": 745, "right": 3850, "bottom": 3125, "left": 2275}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731614f.jpg"} -{"rects": [{"solidity": 0.9970379234077612, "top": 805, "right": 3345, "bottom": 2600, "left": 1910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705766f.jpg"} -{"rects": [{"solidity": 0.9970379746009584, "top": 740, "right": 2030, "bottom": 3135, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703026f.jpg"} -{"rects": [{"solidity": 0.9970380068443431, "top": 850, "right": 3835, "bottom": 3265, "left": 2215}, {"solidity": 0.9960536159397327, "top": 880, "right": 5660, "bottom": 3290, "left": 4055}, {"solidity": 0.9967137974408451, "top": 855, "right": 1990, "bottom": 3255, "left": 395}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731950f.jpg"} -{"rects": [{"solidity": 0.9970382995144226, "top": 405, "right": 3035, "bottom": 2020, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729625f.jpg"} -{"rects": [{"solidity": 0.9970383345144339, "top": 415, "right": 3180, "bottom": 1995, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713123f.jpg"} -{"rects": [{"solidity": 0.997038355247989, "top": 645, "right": 2685, "bottom": 3820, "left": 220}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507675.jpg"} -{"rects": [{"solidity": 0.9970383683487092, "top": 980, "right": 3285, "bottom": 2895, "left": 550}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723373f.jpg"} -{"rects": [{"solidity": 0.9970386648532397, "top": 435, "right": 3185, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727619f.jpg"} -{"rects": [{"solidity": 0.9970387696397333, "top": 810, "right": 3875, "bottom": 3220, "left": 2270}, {"solidity": 0.9980759305113648, "top": 815, "right": 2030, "bottom": 3215, "left": 425}, {"solidity": 0.9970807410728604, "top": 820, "right": 5715, "bottom": 3225, "left": 4115}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718701f.jpg"} -{"rects": [{"solidity": 0.9970387709940264, "top": 410, "right": 3190, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703177f.jpg"} -{"rects": [{"solidity": 0.9970388937410916, "top": 400, "right": 3115, "bottom": 2010, "left": 705}, {"solidity": 0.9954343686430489, "top": 2260, "right": 3115, "bottom": 3880, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728788f.jpg"} -{"rects": [{"solidity": 0.9970391700109537, "top": 845, "right": 3230, "bottom": 2780, "left": 510}, {"solidity": 0.9951136681163262, "top": 3380, "right": 3225, "bottom": 5300, "left": 475}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/717769f.jpg"} -{"rects": [{"solidity": 0.9970391860118034, "top": 515, "right": 4860, "bottom": 3730, "left": 1110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723996f.jpg"} -{"rects": [{"solidity": 0.9970391893033808, "top": 320, "right": 3200, "bottom": 1925, "left": 785}, {"solidity": 0.9940966630801338, "top": 2165, "right": 3090, "bottom": 3830, "left": 990}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709502f.jpg"} -{"rects": [{"solidity": 0.9970394981367584, "top": 2110, "right": 3145, "bottom": 3735, "left": 735}, {"solidity": 0.9967839000873588, "top": 450, "right": 3110, "bottom": 2080, "left": 705}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702523f.jpg"} -{"rects": [{"solidity": 0.9970395731836816, "top": 445, "right": 3145, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704061f.jpg"} -{"rects": [{"solidity": 0.9970396655167983, "top": 775, "right": 2740, "bottom": 2180, "left": 925}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725284f.jpg"} -{"rects": [{"solidity": 0.9970396839706919, "top": 2380, "right": 3160, "bottom": 3985, "left": 765}, {"solidity": 0.9953338601732014, "top": 640, "right": 3165, "bottom": 2250, "left": 770}, {"solidity": 0.9968579438942252, "top": 4150, "right": 3170, "bottom": 5745, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710092f.jpg"} -{"rects": [{"solidity": 0.9970399889800455, "top": 900, "right": 2095, "bottom": 3325, "left": 470}, {"solidity": 0.9961559795157566, "top": 905, "right": 3930, "bottom": 3320, "left": 2300}, {"solidity": 0.9972422295762767, "top": 900, "right": 5725, "bottom": 3315, "left": 4115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733876f.jpg"} -{"rects": [{"solidity": 0.9970400646043805, "top": 780, "right": 1995, "bottom": 3170, "left": 395}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730275f.jpg"} -{"rects": [{"solidity": 0.9970403506393747, "top": 485, "right": 3135, "bottom": 2100, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701461f.jpg"} -{"rects": [{"solidity": 0.997040381673766, "top": 660, "right": 5180, "bottom": 2195, "left": 3285}, {"solidity": 0.9953187316116378, "top": 2270, "right": 2895, "bottom": 3800, "left": 1005}, {"solidity": 0.9920214354981777, "top": 660, "right": 2865, "bottom": 2150, "left": 1020}, {"solidity": 0.9764466949098027, "top": 2320, "right": 5115, "bottom": 3820, "left": 3265}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730059f.jpg"} -{"rects": [{"solidity": 0.9970404169094578, "top": 630, "right": 2450, "bottom": 3015, "left": 840}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715016f.jpg"} -{"rects": [{"solidity": 0.9970404268564965, "top": 770, "right": 2005, "bottom": 3185, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719992f.jpg"} -{"rects": [{"solidity": 0.9970405066284769, "top": 2060, "right": 3170, "bottom": 3665, "left": 775}, {"solidity": 0.9980921349507605, "top": 390, "right": 3150, "bottom": 1985, "left": 770}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702394f.jpg"} -{"rects": [{"solidity": 0.9970406250409659, "top": 420, "right": 3315, "bottom": 2010, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725977f.jpg"} -{"rects": [{"solidity": 0.9970406674877884, "top": 405, "right": 3995, "bottom": 2735, "left": 1040}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509437.jpg"} -{"rects": [{"solidity": 0.9970407444457668, "top": 295, "right": 3175, "bottom": 1925, "left": 765}, {"solidity": 0.9971434559025035, "top": 2130, "right": 3160, "bottom": 3765, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704373f.jpg"} -{"rects": [{"solidity": 0.997040834567649, "top": 440, "right": 2995, "bottom": 2075, "left": 570}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704463f.jpg"} -{"rects": [{"solidity": 0.9970408546801639, "top": 800, "right": 1990, "bottom": 3240, "left": 370}, {"solidity": 0.9968998394418125, "top": 930, "right": 3545, "bottom": 3145, "left": 2105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710797f.jpg"} -{"rects": [{"solidity": 0.9970413538047742, "top": 775, "right": 3915, "bottom": 3200, "left": 2285}, {"solidity": 0.9963944468702643, "top": 760, "right": 2055, "bottom": 3185, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718754f.jpg"} -{"rects": [{"solidity": 0.9970413632167402, "top": 2200, "right": 2945, "bottom": 3825, "left": 520}, {"solidity": 0.9954561025899569, "top": 4015, "right": 2940, "bottom": 5635, "left": 525}, {"solidity": 0.9962196448224437, "top": 420, "right": 2940, "bottom": 2035, "left": 525}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710855f.jpg"} -{"rects": [{"solidity": 0.9970419161401599, "top": 535, "right": 4890, "bottom": 3470, "left": 1150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707819f.jpg"} -{"rects": [{"solidity": 0.9970420516573659, "top": 325, "right": 2180, "bottom": 1460, "left": 720}, {"solidity": 0.9941955557584194, "top": 3060, "right": 2200, "bottom": 4195, "left": 730}, {"solidity": 0.9900643931826215, "top": 1695, "right": 2190, "bottom": 2830, "left": 725}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716534f.jpg"} -{"rects": [{"solidity": 0.9970420665878963, "top": 605, "right": 4230, "bottom": 3680, "left": 2200}, {"solidity": 0.996748874610442, "top": 835, "right": 2020, "bottom": 3250, "left": 385}, {"solidity": 0.9945378759837135, "top": 860, "right": 5885, "bottom": 3290, "left": 4265}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719161f.jpg"} -{"rects": [{"solidity": 0.9970422782107058, "top": 785, "right": 3835, "bottom": 3220, "left": 2215}, {"solidity": 0.9968591941260859, "top": 795, "right": 2015, "bottom": 3230, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714466f.jpg"} -{"rects": [{"solidity": 0.9970423557725776, "top": 620, "right": 3325, "bottom": 2680, "left": 250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720129f.jpg"} -{"rects": [{"solidity": 0.9970425572108839, "top": 700, "right": 2070, "bottom": 3105, "left": 460}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707616f.jpg"} -{"rects": [{"solidity": 0.9970426145622048, "top": 685, "right": 3315, "bottom": 2575, "left": 565}, {"solidity": 0.9886698818931423, "top": 3225, "right": 3255, "bottom": 5120, "left": 525}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726642f.jpg"} -{"rects": [{"solidity": 0.9970426740854756, "top": 900, "right": 3950, "bottom": 3330, "left": 2320}, {"solidity": 0.9986295170572168, "top": 910, "right": 2050, "bottom": 3330, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724385f.jpg"} -{"rects": [{"solidity": 0.9970426821504061, "top": 385, "right": 3210, "bottom": 2020, "left": 785}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703055f.jpg"} -{"rects": [{"solidity": 0.9970427070754289, "top": 440, "right": 3185, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723076f.jpg"} -{"rects": [{"solidity": 0.997042816245635, "top": 130, "right": 5385, "bottom": 3310, "left": 1365}], "shape": {"h": 3595, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718405f.jpg"} -{"rects": [{"solidity": 0.9970428621556535, "top": 990, "right": 3530, "bottom": 5070, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722219f.jpg"} -{"rects": [{"solidity": 0.9970429220210114, "top": 900, "right": 3180, "bottom": 2885, "left": 370}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703591f.jpg"} -{"rects": [{"solidity": 0.9970430855434705, "top": 3350, "right": 3255, "bottom": 4955, "left": 830}, {"solidity": 0.9974954196390285, "top": 970, "right": 3220, "bottom": 2580, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733177f.jpg"} -{"rects": [{"solidity": 0.9970434124535829, "top": 810, "right": 2035, "bottom": 3240, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709677f.jpg"} -{"rects": [{"solidity": 0.9970434248965998, "top": 825, "right": 1970, "bottom": 3250, "left": 335}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714592f.jpg"} -{"rects": [{"solidity": 0.9970435428798391, "top": 785, "right": 2070, "bottom": 3210, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704378f.jpg"} -{"rects": [{"solidity": 0.9970435804155863, "top": 440, "right": 3255, "bottom": 2050, "left": 845}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727825f.jpg"} -{"rects": [{"solidity": 0.9970436955428275, "top": 375, "right": 2970, "bottom": 1985, "left": 560}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720095f.jpg"} -{"rects": [{"solidity": 0.997043791475346, "top": 790, "right": 2045, "bottom": 3205, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717482f.jpg"} -{"rects": [{"solidity": 0.9970438054286482, "top": 805, "right": 2000, "bottom": 3245, "left": 360}, {"solidity": 0.9992091735863978, "top": 820, "right": 3870, "bottom": 3235, "left": 2250}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701294f.jpg"} -{"rects": [{"solidity": 0.9970438324925041, "top": 1230, "right": 3135, "bottom": 2840, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730982f.jpg"} -{"rects": [{"solidity": 0.9970439007254374, "top": 785, "right": 2000, "bottom": 3180, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730416f.jpg"} -{"rects": [{"solidity": 0.997044055975207, "top": 430, "right": 3150, "bottom": 2075, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701273f.jpg"} -{"rects": [{"solidity": 0.9970440749538136, "top": 900, "right": 3210, "bottom": 4945, "left": 590}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707601f.jpg"} -{"rects": [{"solidity": 0.9970441414753105, "top": 475, "right": 3165, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720488f.jpg"} -{"rects": [{"solidity": 0.9970442004844352, "top": 580, "right": 4910, "bottom": 3565, "left": 1175}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718580f.jpg"} -{"rects": [{"solidity": 0.9970442940496047, "top": 440, "right": 3105, "bottom": 2070, "left": 670}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705202f.jpg"} -{"rects": [{"solidity": 0.9970444187247843, "top": 810, "right": 2030, "bottom": 3220, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714818f.jpg"} -{"rects": [{"solidity": 0.9970446068310488, "top": 3315, "right": 3345, "bottom": 5235, "left": 625}, {"solidity": 0.9954757774248879, "top": 745, "right": 3340, "bottom": 2645, "left": 610}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713693f.jpg"} -{"rects": [{"solidity": 0.9970446788209453, "top": 645, "right": 2390, "bottom": 3070, "left": 760}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703213f.jpg"} -{"rects": [{"solidity": 0.9970448296789332, "top": 305, "right": 5145, "bottom": 3575, "left": 1050}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702439f.jpg"} -{"rects": [{"solidity": 0.9970448396753486, "top": 2290, "right": 3300, "bottom": 3910, "left": 870}, {"solidity": 0.9988210501969199, "top": 425, "right": 3305, "bottom": 2040, "left": 880}, {"solidity": 0.9958984437928924, "top": 4130, "right": 3280, "bottom": 5740, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726824f.jpg"} -{"rects": [{"solidity": 0.9970452781700444, "top": 740, "right": 2040, "bottom": 3175, "left": 405}, {"solidity": 0.9904659204997583, "top": 580, "right": 4460, "bottom": 1645, "left": 2795}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710852f.jpg"} -{"rects": [{"solidity": 0.997045356709584, "top": 440, "right": 3150, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717618f.jpg"} -{"rects": [{"solidity": 0.9970458188338724, "top": 380, "right": 3240, "bottom": 1995, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703141f.jpg"} -{"rects": [{"solidity": 0.9970460329220758, "top": 440, "right": 3205, "bottom": 2060, "left": 790}, {"solidity": 0.9982417880209308, "top": 2315, "right": 3200, "bottom": 3930, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707733f.jpg"} -{"rects": [{"solidity": 0.9970461471063838, "top": 425, "right": 3160, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703137f.jpg"} -{"rects": [{"solidity": 0.9970461649238221, "top": 495, "right": 2185, "bottom": 2575, "left": 705}, {"solidity": 0.9965698068974027, "top": 505, "right": 3925, "bottom": 2590, "left": 2435}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716189f.jpg"} -{"rects": [{"solidity": 0.9970463111402339, "top": 610, "right": 3835, "bottom": 2580, "left": 1285}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516997.jpg"} -{"rects": [{"solidity": 0.9970464651409456, "top": 625, "right": 2535, "bottom": 2110, "left": 455}, {"solidity": 0.9960588611644274, "top": 2425, "right": 2500, "bottom": 3885, "left": 470}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716107f.jpg"} -{"rects": [{"solidity": 0.9970465038323619, "top": 705, "right": 3785, "bottom": 3345, "left": 355}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722716f.jpg"} -{"rects": [{"solidity": 0.997046588342352, "top": 680, "right": 2520, "bottom": 2170, "left": 430}, {"solidity": 0.998044798553151, "top": 2485, "right": 2510, "bottom": 3965, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716102f.jpg"} -{"rects": [{"solidity": 0.9970466650151731, "top": 485, "right": 5120, "bottom": 3685, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700597f.jpg"} -{"rects": [{"solidity": 0.9970467121348604, "top": 805, "right": 3765, "bottom": 3235, "left": 2145}, {"solidity": 0.9956889275558037, "top": 805, "right": 1980, "bottom": 3210, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718144f.jpg"} -{"rects": [{"solidity": 0.9970468333707829, "top": 2115, "right": 3275, "bottom": 3740, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700673f.jpg"} -{"rects": [{"solidity": 0.9970470378296681, "top": 350, "right": 3175, "bottom": 1980, "left": 735}, {"solidity": 0.9982879939185456, "top": 4055, "right": 3190, "bottom": 5680, "left": 765}, {"solidity": 0.9999775153136774, "top": 2200, "right": 3185, "bottom": 3820, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723119f.jpg"} -{"rects": [{"solidity": 0.9970470553074944, "top": 565, "right": 3220, "bottom": 2580, "left": 405}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729247f.jpg"} -{"rects": [{"solidity": 0.9970471343644258, "top": 1105, "right": 3555, "bottom": 5060, "left": 340}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722308f.jpg"} -{"rects": [{"solidity": 0.9970471344794779, "top": 830, "right": 3865, "bottom": 3275, "left": 2235}, {"solidity": 0.9970518112133719, "top": 805, "right": 2000, "bottom": 3235, "left": 375}, {"solidity": 0.9970324688505892, "top": 845, "right": 5750, "bottom": 3270, "left": 4135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721205f.jpg"} -{"rects": [{"solidity": 0.9970471562137272, "top": 945, "right": 3930, "bottom": 3365, "left": 2285}, {"solidity": 0.9970814726256197, "top": 940, "right": 2105, "bottom": 3360, "left": 470}, {"solidity": 0.9965054863544518, "top": 935, "right": 5720, "bottom": 3365, "left": 4080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719723f.jpg"} -{"rects": [{"solidity": 0.997047306521003, "top": 495, "right": 5010, "bottom": 3710, "left": 975}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722797f.jpg"} -{"rects": [{"solidity": 0.9970473200730772, "top": 830, "right": 2080, "bottom": 3235, "left": 455}, {"solidity": 0.9949445542133005, "top": 830, "right": 4025, "bottom": 3245, "left": 2380}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708102f.jpg"} -{"rects": [{"solidity": 0.9970474793743499, "top": 790, "right": 2000, "bottom": 3210, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724254f.jpg"} -{"rects": [{"solidity": 0.9970476251935984, "top": 780, "right": 3845, "bottom": 3195, "left": 2225}, {"solidity": 0.9962245854478456, "top": 790, "right": 2065, "bottom": 3205, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713499f.jpg"} -{"rects": [{"solidity": 0.9970479395263153, "top": 425, "right": 3180, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/722706f.jpg"} -{"rects": [{"solidity": 0.9970479914744068, "top": 950, "right": 3290, "bottom": 5185, "left": 575}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709021f.jpg"} -{"rects": [{"solidity": 0.997048061252729, "top": 490, "right": 5050, "bottom": 2000, "left": 3145}, {"solidity": 0.9949112799140878, "top": 2060, "right": 2710, "bottom": 3485, "left": 890}, {"solidity": 0.9951776064485728, "top": 480, "right": 2730, "bottom": 1885, "left": 920}, {"solidity": 0.9949938721671756, "top": 2110, "right": 4960, "bottom": 3490, "left": 3180}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725614f.jpg"} -{"rects": [{"solidity": 0.9970480884333993, "top": 810, "right": 3935, "bottom": 3210, "left": 2325}, {"solidity": 0.9967244799348965, "top": 825, "right": 2115, "bottom": 3195, "left": 545}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721050f.jpg"} -{"rects": [{"solidity": 0.9970483086741313, "top": 810, "right": 2020, "bottom": 3190, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713690f.jpg"} -{"rects": [{"solidity": 0.997048423390514, "top": 2255, "right": 3080, "bottom": 3865, "left": 665}, {"solidity": 0.9981405739146292, "top": 435, "right": 3085, "bottom": 2040, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724858f.jpg"} -{"rects": [{"solidity": 0.9970485005795257, "top": 750, "right": 2020, "bottom": 3150, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721632f.jpg"} -{"rects": [{"solidity": 0.9970486422108071, "top": 1035, "right": 3490, "bottom": 5085, "left": 275}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709177f.jpg"} -{"rects": [{"solidity": 0.9970487220317765, "top": 395, "right": 3060, "bottom": 2005, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729683f.jpg"} -{"rects": [{"solidity": 0.9970487282731185, "top": 415, "right": 3205, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713501f.jpg"} -{"rects": [{"solidity": 0.9970487824456858, "top": 545, "right": 5145, "bottom": 3815, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702139f.jpg"} -{"rects": [{"solidity": 0.9970488248835591, "top": 475, "right": 3130, "bottom": 2045, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733782f.jpg"} -{"rects": [{"solidity": 0.9970490376656644, "top": 875, "right": 2050, "bottom": 3280, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729923f.jpg"} -{"rects": [{"solidity": 0.9970490444765591, "top": 610, "right": 5005, "bottom": 3505, "left": 1115}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717369f.jpg"} -{"rects": [{"solidity": 0.9970493391284397, "top": 435, "right": 2330, "bottom": 2865, "left": 700}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707272f.jpg"} -{"rects": [{"solidity": 0.9970493759760294, "top": 525, "right": 3565, "bottom": 2345, "left": 835}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/701640f.jpg"} -{"rects": [{"solidity": 0.9970494234446393, "top": 955, "right": 2705, "bottom": 3980, "left": 285}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517221.jpg"} -{"rects": [{"solidity": 0.9970495367255033, "top": 720, "right": 3235, "bottom": 2795, "left": 390}, {"solidity": 0.9978649848778868, "top": 3360, "right": 3245, "bottom": 5400, "left": 425}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731185f.jpg"} -{"rects": [{"solidity": 0.9970496460210735, "top": 435, "right": 3110, "bottom": 3840, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714180f.jpg"} -{"rects": [{"solidity": 0.9970496864693837, "top": 770, "right": 3875, "bottom": 3200, "left": 2250}, {"solidity": 0.9975699207346513, "top": 790, "right": 5670, "bottom": 3215, "left": 4045}, {"solidity": 0.9989853746247331, "top": 770, "right": 2085, "bottom": 3195, "left": 470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706009f.jpg"} -{"rects": [{"solidity": 0.9970498428089112, "top": 755, "right": 3840, "bottom": 3170, "left": 2215}, {"solidity": 0.9967877968694795, "top": 740, "right": 2005, "bottom": 3150, "left": 380}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731641f.jpg"} -{"rects": [{"solidity": 0.9970498630982222, "top": 2330, "right": 3075, "bottom": 3960, "left": 660}, {"solidity": 0.9966807328118568, "top": 455, "right": 3075, "bottom": 2090, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710723f.jpg"} -{"rects": [{"solidity": 0.9970498915401301, "top": 780, "right": 2025, "bottom": 3195, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715365f.jpg"} -{"rects": [{"solidity": 0.9970499218412213, "top": 465, "right": 3205, "bottom": 2055, "left": 820}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704835f.jpg"} -{"rects": [{"solidity": 0.9970500611453699, "top": 815, "right": 2165, "bottom": 3220, "left": 555}, {"solidity": 0.9952928540884214, "top": 830, "right": 3970, "bottom": 3225, "left": 2375}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722095f.jpg"} -{"rects": [{"solidity": 0.9970503138623968, "top": 340, "right": 2980, "bottom": 1530, "left": 1095}, {"solidity": 0.9956929847147773, "top": 1700, "right": 2975, "bottom": 2855, "left": 1095}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701450f.jpg"} -{"rects": [{"solidity": 0.9970503927918056, "top": 2085, "right": 2730, "bottom": 3505, "left": 915}, {"solidity": 0.9973166104760314, "top": 615, "right": 5235, "bottom": 2020, "left": 3410}, {"solidity": 0.9954386108776317, "top": 625, "right": 2710, "bottom": 2005, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702934f.jpg"} -{"rects": [{"solidity": 0.9970505481337637, "top": 435, "right": 5060, "bottom": 3645, "left": 995}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709167f.jpg"} -{"rects": [{"solidity": 0.9970506048899256, "top": 825, "right": 2055, "bottom": 3215, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712985f.jpg"} -{"rects": [{"solidity": 0.9970507278609746, "top": 270, "right": 5050, "bottom": 3515, "left": 960}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703913f.jpg"} -{"rects": [{"solidity": 0.9970507968675643, "top": 350, "right": 3125, "bottom": 1965, "left": 710}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/700079f.jpg"} -{"rects": [{"solidity": 0.997050824653193, "top": 2125, "right": 3250, "bottom": 3745, "left": 810}, {"solidity": 0.998514924369963, "top": 3865, "right": 3250, "bottom": 5480, "left": 815}, {"solidity": 0.996581393194097, "top": 370, "right": 3220, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730524f.jpg"} -{"rects": [{"solidity": 0.9970508277495023, "top": 495, "right": 3220, "bottom": 2110, "left": 810}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710310f.jpg"} -{"rects": [{"solidity": 0.9970510029848412, "top": 430, "right": 3180, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730191f.jpg"} -{"rects": [{"solidity": 0.9970510349478807, "top": 515, "right": 3130, "bottom": 2110, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707668f.jpg"} -{"rects": [{"solidity": 0.9970510666593854, "top": 740, "right": 2035, "bottom": 3165, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704640f.jpg"} -{"rects": [{"solidity": 0.997051364267691, "top": 410, "right": 3140, "bottom": 2025, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704024f.jpg"} -{"rects": [{"solidity": 0.9970513644635051, "top": 820, "right": 3865, "bottom": 3240, "left": 2230}, {"solidity": 0.9983709933385263, "top": 815, "right": 1975, "bottom": 3220, "left": 355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730134f.jpg"} -{"rects": [{"solidity": 0.9970513833233661, "top": 405, "right": 3205, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720506f.jpg"} -{"rects": [{"solidity": 0.9970514081001569, "top": 500, "right": 5075, "bottom": 3780, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707853f.jpg"} -{"rects": [{"solidity": 0.9970514141761135, "top": 785, "right": 5795, "bottom": 3220, "left": 4160}, {"solidity": 0.9963118904905377, "top": 770, "right": 2045, "bottom": 3200, "left": 390}, {"solidity": 0.9965101401061992, "top": 770, "right": 3960, "bottom": 3190, "left": 2320}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729975f.jpg"} -{"rects": [{"solidity": 0.9970516555098996, "top": 635, "right": 3945, "bottom": 3055, "left": 2325}, {"solidity": 0.995819128054135, "top": 635, "right": 5765, "bottom": 3045, "left": 4140}, {"solidity": 0.9979033468796107, "top": 625, "right": 2110, "bottom": 3040, "left": 500}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704747f.jpg"} -{"rects": [{"solidity": 0.9970518328042974, "top": 405, "right": 5295, "bottom": 3650, "left": 1185}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732705f.jpg"} -{"rects": [{"solidity": 0.9970520076300979, "top": 380, "right": 3050, "bottom": 2035, "left": 615}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725759f.jpg"} -{"rects": [{"solidity": 0.9970523254931138, "top": 1030, "right": 3465, "bottom": 5065, "left": 175}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712463f.jpg"} -{"rects": [{"solidity": 0.9970523845636527, "top": 335, "right": 5250, "bottom": 3620, "left": 1215}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724196f.jpg"} -{"rects": [{"solidity": 0.9970524095177082, "top": 395, "right": 3055, "bottom": 2010, "left": 640}, {"solidity": 0.9990946761114554, "top": 2300, "right": 3070, "bottom": 3905, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729860f.jpg"} -{"rects": [{"solidity": 0.9970526919668696, "top": 1020, "right": 3395, "bottom": 5105, "left": 395}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732261f.jpg"} -{"rects": [{"solidity": 0.9970527157579744, "top": 405, "right": 3275, "bottom": 2020, "left": 850}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/704891f.jpg"} -{"rects": [{"solidity": 0.9970528244029938, "top": 535, "right": 4980, "bottom": 3600, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718899f.jpg"} -{"rects": [{"solidity": 0.9970528591307071, "top": 670, "right": 3280, "bottom": 2550, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714144f.jpg"} -{"rects": [{"solidity": 0.997053130935503, "top": 340, "right": 4950, "bottom": 3475, "left": 945}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725222f.jpg"} -{"rects": [{"solidity": 0.997053233483325, "top": 760, "right": 2005, "bottom": 3165, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722983f.jpg"} -{"rects": [{"solidity": 0.9970536429143315, "top": 770, "right": 3815, "bottom": 3185, "left": 2185}, {"solidity": 0.9981705981628683, "top": 765, "right": 1930, "bottom": 3170, "left": 305}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716597f.jpg"} -{"rects": [{"solidity": 0.9970536876527923, "top": 445, "right": 3190, "bottom": 2085, "left": 765}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705592f.jpg"} -{"rects": [{"solidity": 0.9970538296967474, "top": 770, "right": 2680, "bottom": 3950, "left": 210}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508681.jpg"} -{"rects": [{"solidity": 0.9970539822980231, "top": 830, "right": 3845, "bottom": 3240, "left": 2225}, {"solidity": 0.9974680252872442, "top": 825, "right": 2010, "bottom": 3230, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716899f.jpg"} -{"rects": [{"solidity": 0.9970540957467494, "top": 865, "right": 3980, "bottom": 3265, "left": 2355}, {"solidity": 0.9964156659725061, "top": 830, "right": 2130, "bottom": 3260, "left": 520}, {"solidity": 0.996589052889321, "top": 870, "right": 5785, "bottom": 3265, "left": 4170}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723999f.jpg"} -{"rects": [{"solidity": 0.9970540983553136, "top": 825, "right": 3810, "bottom": 3230, "left": 2200}, {"solidity": 0.9980735339002241, "top": 825, "right": 1980, "bottom": 3220, "left": 380}, {"solidity": 0.9974746894262061, "top": 835, "right": 5625, "bottom": 3230, "left": 4025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719315f.jpg"} -{"rects": [{"solidity": 0.9970541078293121, "top": 440, "right": 3165, "bottom": 2065, "left": 745}, {"solidity": 0.9968723316169431, "top": 2225, "right": 3165, "bottom": 3840, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700045f.jpg"} -{"rects": [{"solidity": 0.9970541653468483, "top": 755, "right": 2050, "bottom": 3200, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720508f.jpg"} -{"rects": [{"solidity": 0.9970542625599367, "top": 815, "right": 2000, "bottom": 3225, "left": 380}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713165f.jpg"} -{"rects": [{"solidity": 0.9970542635658914, "top": 2285, "right": 2955, "bottom": 3820, "left": 1050}, {"solidity": 0.9617728108427136, "top": 4080, "right": 2955, "bottom": 5620, "left": 1020}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719788f.jpg"} -{"rects": [{"solidity": 0.9970543386730218, "top": 2260, "right": 3170, "bottom": 3885, "left": 780}, {"solidity": 0.9945628628368426, "top": 495, "right": 2930, "bottom": 2040, "left": 1040}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720207f.jpg"} -{"rects": [{"solidity": 0.9970543806646526, "top": 665, "right": 3345, "bottom": 2580, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714505f.jpg"} -{"rects": [{"solidity": 0.9970545153483633, "top": 480, "right": 3105, "bottom": 2110, "left": 675}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704572f.jpg"} -{"rects": [{"solidity": 0.9970547379576016, "top": 2155, "right": 2630, "bottom": 3585, "left": 780}, {"solidity": 0.9965917349572714, "top": 710, "right": 2605, "bottom": 2090, "left": 780}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707104f.jpg"} -{"rects": [{"solidity": 0.9970548582991156, "top": 415, "right": 3285, "bottom": 2335, "left": 505}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705728f.jpg"} -{"rects": [{"solidity": 0.9970549962331348, "top": 820, "right": 1965, "bottom": 3230, "left": 355}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718851f.jpg"} -{"rects": [{"solidity": 0.9970550200497712, "top": 670, "right": 2575, "bottom": 1980, "left": 800}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726767f.jpg"} -{"rects": [{"solidity": 0.9970552465582383, "top": 2265, "right": 3060, "bottom": 3870, "left": 635}, {"solidity": 0.9983385288309314, "top": 400, "right": 3050, "bottom": 2000, "left": 640}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/732203f.jpg"} -{"rects": [{"solidity": 0.9970557749854511, "top": 835, "right": 1990, "bottom": 3170, "left": 420}, {"solidity": 0.9943688445645757, "top": 875, "right": 3695, "bottom": 3100, "left": 2235}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709788f.jpg"} -{"rects": [{"solidity": 0.9970558078821994, "top": 2105, "right": 2660, "bottom": 3660, "left": 690}, {"solidity": 0.9962210716519564, "top": 605, "right": 2660, "bottom": 2070, "left": 675}, {"solidity": 0.9966143514395963, "top": 615, "right": 5390, "bottom": 2025, "left": 3465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731255f.jpg"} -{"rects": [{"solidity": 0.9970558918469328, "top": 395, "right": 3175, "bottom": 1985, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725774f.jpg"} -{"rects": [{"solidity": 0.9970559183712612, "top": 2225, "right": 3225, "bottom": 3855, "left": 805}, {"solidity": 0.9970002569373073, "top": 4120, "right": 3230, "bottom": 5745, "left": 810}, {"solidity": 0.9971509879377809, "top": 350, "right": 3215, "bottom": 1970, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707927f.jpg"} -{"rects": [{"solidity": 0.9970559307586387, "top": 780, "right": 2095, "bottom": 3180, "left": 495}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700318f.jpg"} -{"rects": [{"solidity": 0.997055965425974, "top": 395, "right": 3275, "bottom": 2025, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706584f.jpg"} -{"rects": [{"solidity": 0.9970561763434851, "top": 425, "right": 3090, "bottom": 2040, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729032f.jpg"} -{"rects": [{"solidity": 0.9970563759484377, "top": 835, "right": 2110, "bottom": 3240, "left": 505}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700316f.jpg"} -{"rects": [{"solidity": 0.9970564735210458, "top": 840, "right": 5640, "bottom": 3250, "left": 3995}, {"solidity": 0.9977814806921005, "top": 800, "right": 1935, "bottom": 3195, "left": 300}, {"solidity": 0.9963548034440154, "top": 815, "right": 3785, "bottom": 3215, "left": 2145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703627f.jpg"} -{"rects": [{"solidity": 0.9970565363663179, "top": 690, "right": 2560, "bottom": 3730, "left": 545}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715281f.jpg"} -{"rects": [{"solidity": 0.9970568697935042, "top": 325, "right": 3185, "bottom": 1955, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704022f.jpg"} -{"rects": [{"solidity": 0.9970569371962118, "top": 775, "right": 2015, "bottom": 3180, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719943f.jpg"} -{"rects": [{"solidity": 0.9970570442333013, "top": 775, "right": 5225, "bottom": 3530, "left": 1360}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718333f.jpg"} -{"rects": [{"solidity": 0.997057115387431, "top": 595, "right": 2735, "bottom": 2025, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705204f.jpg"} -{"rects": [{"solidity": 0.9970572316587426, "top": 730, "right": 3875, "bottom": 3140, "left": 2260}, {"solidity": 0.9972651562698163, "top": 720, "right": 2045, "bottom": 3130, "left": 435}, {"solidity": 0.9976160556496828, "top": 755, "right": 5685, "bottom": 3145, "left": 4095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709747f.jpg"} -{"rects": [{"solidity": 0.9970572355064112, "top": 465, "right": 3190, "bottom": 2090, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700042f.jpg"} -{"rects": [{"solidity": 0.997057409741078, "top": 2160, "right": 3235, "bottom": 3780, "left": 830}, {"solidity": 0.99468779367234, "top": 3985, "right": 3245, "bottom": 5595, "left": 840}, {"solidity": 0.9948367062641092, "top": 400, "right": 3205, "bottom": 1985, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720522f.jpg"} -{"rects": [{"solidity": 0.9970574935612192, "top": 730, "right": 2040, "bottom": 3125, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719859f.jpg"} -{"rects": [{"solidity": 0.9970575315564398, "top": 765, "right": 1975, "bottom": 3175, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719931f.jpg"} -{"rects": [{"solidity": 0.9970575446190665, "top": 790, "right": 2055, "bottom": 3195, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719636f.jpg"} -{"rects": [{"solidity": 0.9970576239585154, "top": 425, "right": 3250, "bottom": 2040, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702290f.jpg"} -{"rects": [{"solidity": 0.9970577870031783, "top": 835, "right": 2050, "bottom": 3255, "left": 440}, {"solidity": 0.9966775302975212, "top": 850, "right": 3875, "bottom": 3240, "left": 2295}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717205f.jpg"} -{"rects": [{"solidity": 0.9970578298789348, "top": 790, "right": 1975, "bottom": 3185, "left": 370}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721536f.jpg"} -{"rects": [{"solidity": 0.9970582183591643, "top": 625, "right": 3955, "bottom": 1795, "left": 2015}, {"solidity": 0.995312063994047, "top": 2115, "right": 1990, "bottom": 3230, "left": 145}, {"solidity": 0.9973320700144617, "top": 625, "right": 1950, "bottom": 1760, "left": 165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719813f.jpg"} -{"rects": [{"solidity": 0.9970585351505049, "top": 685, "right": 2580, "bottom": 2095, "left": 755}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706310f.jpg"} -{"rects": [{"solidity": 0.9970589200004374, "top": 490, "right": 3150, "bottom": 1960, "left": 785}, {"solidity": 0.9945185020416594, "top": 4125, "right": 3140, "bottom": 5530, "left": 865}, {"solidity": 0.9959796494832124, "top": 2305, "right": 3110, "bottom": 3710, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704404f.jpg"} -{"rects": [{"solidity": 0.9970589274075216, "top": 465, "right": 2635, "bottom": 2880, "left": 1005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706605f.jpg"} -{"rects": [{"solidity": 0.9970589528504219, "top": 545, "right": 2820, "bottom": 1960, "left": 995}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704225f.jpg"} -{"rects": [{"solidity": 0.9970590392861668, "top": 545, "right": 5615, "bottom": 2140, "left": 3240}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714977f.jpg"} -{"rects": [{"solidity": 0.997059124386252, "top": 350, "right": 3025, "bottom": 1990, "left": 605}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707901f.jpg"} -{"rects": [{"solidity": 0.997059237721282, "top": 550, "right": 5240, "bottom": 3630, "left": 1265}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708686f.jpg"} -{"rects": [{"solidity": 0.99705929505531, "top": 2875, "right": 3260, "bottom": 4860, "left": 470}, {"solidity": 0.9979342391396372, "top": 630, "right": 3200, "bottom": 2585, "left": 535}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705264f.jpg"} -{"rects": [{"solidity": 0.9970593732477727, "top": 610, "right": 2485, "bottom": 3660, "left": 495}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723137f.jpg"} -{"rects": [{"solidity": 0.9970593988936847, "top": 1065, "right": 3485, "bottom": 5045, "left": 430}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708542f.jpg"} -{"rects": [{"solidity": 0.9970595987499016, "top": 810, "right": 2020, "bottom": 3155, "left": 450}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730205f.jpg"} -{"rects": [{"solidity": 0.9970596225450246, "top": 420, "right": 3220, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705618f.jpg"} -{"rects": [{"solidity": 0.9970601224304277, "top": 775, "right": 2040, "bottom": 3190, "left": 420}, {"solidity": 0.9960805693013414, "top": 760, "right": 5825, "bottom": 3180, "left": 4200}, {"solidity": 0.9972483946274178, "top": 765, "right": 3950, "bottom": 3175, "left": 2335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717272f.jpg"} -{"rects": [{"solidity": 0.9970601748473058, "top": 2275, "right": 3055, "bottom": 3900, "left": 640}, {"solidity": 0.997285597586626, "top": 415, "right": 3070, "bottom": 2030, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710067f.jpg"} -{"rects": [{"solidity": 0.9970602419322429, "top": 495, "right": 5030, "bottom": 3665, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702187f.jpg"} -{"rects": [{"solidity": 0.9970603504011364, "top": 730, "right": 2025, "bottom": 3160, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704381f.jpg"} -{"rects": [{"solidity": 0.9970604071285963, "top": 450, "right": 3190, "bottom": 2040, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710086f.jpg"} -{"rects": [{"solidity": 0.9970605564224252, "top": 815, "right": 2060, "bottom": 3225, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707477f.jpg"} -{"rects": [{"solidity": 0.9970607709823808, "top": 440, "right": 3160, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713613f.jpg"} -{"rects": [{"solidity": 0.9970608314469477, "top": 765, "right": 4460, "bottom": 3630, "left": 2625}, {"solidity": 0.9963527510028138, "top": 810, "right": 2495, "bottom": 3565, "left": 580}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704302f.jpg"} -{"rects": [{"solidity": 0.9970608697774903, "top": 595, "right": 3290, "bottom": 2505, "left": 570}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712341f.jpg"} -{"rects": [{"solidity": 0.9970608902678889, "top": 895, "right": 3875, "bottom": 3325, "left": 2260}, {"solidity": 0.9976497290256854, "top": 900, "right": 5745, "bottom": 3315, "left": 4130}, {"solidity": 0.9956860503789237, "top": 900, "right": 1990, "bottom": 3315, "left": 365}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728957f.jpg"} -{"rects": [{"solidity": 0.9970610573589143, "top": 480, "right": 4525, "bottom": 3690, "left": 2500}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732987f.jpg"} -{"rects": [{"solidity": 0.9970611748180226, "top": 2295, "right": 3080, "bottom": 3910, "left": 670}, {"solidity": 0.9962617247382233, "top": 420, "right": 3090, "bottom": 2035, "left": 675}, {"solidity": 0.9959672567263881, "top": 4125, "right": 3080, "bottom": 5735, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731362f.jpg"} -{"rects": [{"solidity": 0.9970611964055985, "top": 3190, "right": 3240, "bottom": 5105, "left": 525}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715108f.jpg"} -{"rects": [{"solidity": 0.9970612849233939, "top": 530, "right": 2930, "bottom": 2155, "left": 515}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702385f.jpg"} -{"rects": [{"solidity": 0.9970616914352056, "top": 2265, "right": 3205, "bottom": 3875, "left": 805}, {"solidity": 0.9951246350104899, "top": 435, "right": 3200, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712203f.jpg"} -{"rects": [{"solidity": 0.997061791518623, "top": 1460, "right": 3320, "bottom": 5250, "left": 415}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709072f.jpg"} -{"rects": [{"solidity": 0.9970618090305592, "top": 445, "right": 3180, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706698f.jpg"} -{"rects": [{"solidity": 0.997061944276919, "top": 815, "right": 3950, "bottom": 3230, "left": 2330}, {"solidity": 0.9970949301846125, "top": 830, "right": 5725, "bottom": 3245, "left": 4110}, {"solidity": 0.9984170044155541, "top": 795, "right": 2170, "bottom": 3210, "left": 560}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733206f.jpg"} -{"rects": [{"solidity": 0.9970620120273883, "top": 870, "right": 1965, "bottom": 3260, "left": 470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703185f.jpg"} -{"rects": [{"solidity": 0.9970620180123607, "top": 765, "right": 2060, "bottom": 3195, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720185f.jpg"} -{"rects": [{"solidity": 0.9970620288574055, "top": 755, "right": 3345, "bottom": 2570, "left": 1960}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703795f.jpg"} -{"rects": [{"solidity": 0.9970621790293233, "top": 450, "right": 3155, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700922f.jpg"} -{"rects": [{"solidity": 0.9970622079642932, "top": 350, "right": 2150, "bottom": 1435, "left": 810}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/708261f.jpg"} -{"rects": [{"solidity": 0.9970624011384999, "top": 650, "right": 2745, "bottom": 2080, "left": 910}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706215f.jpg"} -{"rects": [{"solidity": 0.9970629326220868, "top": 2430, "right": 2720, "bottom": 5605, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733012f.jpg"} -{"rects": [{"solidity": 0.9970629470185353, "top": 405, "right": 3290, "bottom": 2065, "left": 830}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700005f.jpg"} -{"rects": [{"solidity": 0.9970630014972933, "top": 420, "right": 3170, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705143f.jpg"} -{"rects": [{"solidity": 0.9970630582419122, "top": 445, "right": 3225, "bottom": 2075, "left": 790}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701020f.jpg"} -{"rects": [{"solidity": 0.9970632727001083, "top": 805, "right": 3165, "bottom": 2750, "left": 385}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702700f.jpg"} -{"rects": [{"solidity": 0.9970634808092267, "top": 905, "right": 3600, "bottom": 2920, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732999f.jpg"} -{"rects": [{"solidity": 0.9970635973191612, "top": 4045, "right": 3030, "bottom": 5665, "left": 615}, {"solidity": 0.9945709948083106, "top": 2235, "right": 3030, "bottom": 3840, "left": 610}, {"solidity": 0.9944013426226643, "top": 385, "right": 3025, "bottom": 1985, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701189f.jpg"} -{"rects": [{"solidity": 0.9970636418035387, "top": 1000, "right": 2560, "bottom": 3410, "left": 960}, {"solidity": 0.9955609137637882, "top": 1000, "right": 5080, "bottom": 3410, "left": 3475}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717429f.jpg"} -{"rects": [{"solidity": 0.9970637965793068, "top": 760, "right": 3865, "bottom": 3170, "left": 2255}, {"solidity": 0.9982541602641645, "top": 780, "right": 1995, "bottom": 3185, "left": 395}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720473f.jpg"} -{"rects": [{"solidity": 0.9970638032003574, "top": 760, "right": 3900, "bottom": 3165, "left": 2275}, {"solidity": 0.9976462840954656, "top": 755, "right": 2065, "bottom": 3150, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717921f.jpg"} -{"rects": [{"solidity": 0.9970638427460827, "top": 365, "right": 5135, "bottom": 3660, "left": 1095}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701751f.jpg"} -{"rects": [{"solidity": 0.9970640566479785, "top": 2285, "right": 3085, "bottom": 3880, "left": 675}, {"solidity": 0.9968039500241872, "top": 430, "right": 3070, "bottom": 2025, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729176f.jpg"} -{"rects": [{"solidity": 0.9970641054097137, "top": 400, "right": 3180, "bottom": 1975, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711914f.jpg"} -{"rects": [{"solidity": 0.9970641467797562, "top": 470, "right": 3155, "bottom": 2085, "left": 730}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724005f.jpg"} -{"rects": [{"solidity": 0.9970642096280885, "top": 955, "right": 3520, "bottom": 5050, "left": 295}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714413f.jpg"} -{"rects": [{"solidity": 0.9970642354234018, "top": 390, "right": 3145, "bottom": 2015, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701554f.jpg"} -{"rects": [{"solidity": 0.9970643674398222, "top": 660, "right": 2700, "bottom": 2010, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725558f.jpg"} -{"rects": [{"solidity": 0.9970645357841021, "top": 475, "right": 3000, "bottom": 2115, "left": 565}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702620f.jpg"} -{"rects": [{"solidity": 0.9970645761138713, "top": 400, "right": 3285, "bottom": 2030, "left": 870}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704420f.jpg"} -{"rects": [{"solidity": 0.9970646542389258, "top": 680, "right": 2015, "bottom": 3075, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727268f.jpg"} -{"rects": [{"solidity": 0.9970647314196851, "top": 890, "right": 3840, "bottom": 3315, "left": 2235}, {"solidity": 0.9965477072272999, "top": 875, "right": 2005, "bottom": 3290, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730927f.jpg"} -{"rects": [{"solidity": 0.9970647821717421, "top": 785, "right": 2040, "bottom": 3210, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721139f.jpg"} -{"rects": [{"solidity": 0.9970649242566222, "top": 465, "right": 3410, "bottom": 2105, "left": 985}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706155f.jpg"} -{"rects": [{"solidity": 0.99706498276362, "top": 910, "right": 2005, "bottom": 3335, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730204f.jpg"} -{"rects": [{"solidity": 0.9970651799573752, "top": 650, "right": 2720, "bottom": 2055, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727704f.jpg"} -{"rects": [{"solidity": 0.9970652125157793, "top": 770, "right": 2015, "bottom": 3200, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706987f.jpg"} -{"rects": [{"solidity": 0.9970652420954613, "top": 3280, "right": 3275, "bottom": 5305, "left": 440}, {"solidity": 0.9973711299038965, "top": 605, "right": 3275, "bottom": 2610, "left": 445}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729198f.jpg"} -{"rects": [{"solidity": 0.997065320592946, "top": 2300, "right": 3170, "bottom": 3920, "left": 735}, {"solidity": 0.9961281644809531, "top": 475, "right": 3185, "bottom": 2100, "left": 755}, {"solidity": 0.9956586985093044, "top": 4125, "right": 3145, "bottom": 5755, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727517f.jpg"} -{"rects": [{"solidity": 0.9970653384974533, "top": 360, "right": 3115, "bottom": 1960, "left": 735}, {"solidity": 0.9967169556256263, "top": 2220, "right": 3115, "bottom": 3815, "left": 740}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728107f.jpg"} -{"rects": [{"solidity": 0.9970654084193102, "top": 800, "right": 2000, "bottom": 3190, "left": 400}, {"solidity": 0.9963421867791472, "top": 785, "right": 3820, "bottom": 3190, "left": 2230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713975f.jpg"} -{"rects": [{"solidity": 0.9970657219403527, "top": 745, "right": 3915, "bottom": 3145, "left": 2305}, {"solidity": 0.9956782855225854, "top": 755, "right": 5770, "bottom": 3155, "left": 4170}, {"solidity": 0.9954671957689425, "top": 755, "right": 2030, "bottom": 3155, "left": 440}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731237f.jpg"} -{"rects": [{"solidity": 0.997065767393622, "top": 735, "right": 2015, "bottom": 3155, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715636f.jpg"} -{"rects": [{"solidity": 0.9970658179236982, "top": 905, "right": 2025, "bottom": 3305, "left": 420}, {"solidity": 0.9968945628588405, "top": 900, "right": 3885, "bottom": 3285, "left": 2270}, {"solidity": 0.9958737730986457, "top": 890, "right": 5750, "bottom": 3250, "left": 4185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719792f.jpg"} -{"rects": [{"solidity": 0.9970658376904136, "top": 2240, "right": 3170, "bottom": 3855, "left": 750}, {"solidity": 0.9958685184345087, "top": 425, "right": 3160, "bottom": 2040, "left": 735}, {"solidity": 0.996335781564462, "top": 4055, "right": 3185, "bottom": 5660, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731758f.jpg"} -{"rects": [{"solidity": 0.9970658462516683, "top": 820, "right": 2060, "bottom": 3205, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733305f.jpg"} -{"rects": [{"solidity": 0.9970659002744318, "top": 475, "right": 5150, "bottom": 3750, "left": 1050}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/723285f.jpg"} -{"rects": [{"solidity": 0.9970661283060522, "top": 2125, "right": 2610, "bottom": 3545, "left": 775}, {"solidity": 0.9945685819307409, "top": 660, "right": 5255, "bottom": 2080, "left": 3415}, {"solidity": 0.993267500121613, "top": 665, "right": 2625, "bottom": 2085, "left": 790}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726768f.jpg"} -{"rects": [{"solidity": 0.997066153806625, "top": 275, "right": 5070, "bottom": 3555, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702535f.jpg"} -{"rects": [{"solidity": 0.9970663129459834, "top": 410, "right": 3070, "bottom": 2035, "left": 660}, {"solidity": 0.9966771502361227, "top": 2285, "right": 3075, "bottom": 3900, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709312f.jpg"} -{"rects": [{"solidity": 0.9970663981565749, "top": 885, "right": 2100, "bottom": 3295, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724388f.jpg"} -{"rects": [{"solidity": 0.9970664163341939, "top": 430, "right": 3155, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715530f.jpg"} -{"rects": [{"solidity": 0.9970664377729747, "top": 445, "right": 5330, "bottom": 3345, "left": 1555}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730032f.jpg"} -{"rects": [{"solidity": 0.9970664710980732, "top": 840, "right": 2105, "bottom": 3275, "left": 475}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710435f.jpg"} -{"rects": [{"solidity": 0.9970664864759504, "top": 2325, "right": 3165, "bottom": 3940, "left": 760}, {"solidity": 0.9961602314381051, "top": 445, "right": 3160, "bottom": 2055, "left": 765}, {"solidity": 0.995473042378908, "top": 4155, "right": 3120, "bottom": 5765, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712288f.jpg"} -{"rects": [{"solidity": 0.9970664949492979, "top": 395, "right": 3160, "bottom": 2000, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720966f.jpg"} -{"rects": [{"solidity": 0.9970666025486896, "top": 3985, "right": 3230, "bottom": 5615, "left": 805}, {"solidity": 0.9961365430403224, "top": 455, "right": 3225, "bottom": 2085, "left": 795}, {"solidity": 0.9984447900466563, "top": 2220, "right": 3230, "bottom": 3835, "left": 815}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/730813f.jpg"} -{"rects": [{"solidity": 0.9970666040541598, "top": 2265, "right": 3210, "bottom": 3905, "left": 760}, {"solidity": 0.9974244863175835, "top": 340, "right": 3200, "bottom": 1970, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700093f.jpg"} -{"rects": [{"solidity": 0.9970668010463951, "top": 620, "right": 2590, "bottom": 3680, "left": 540}, {"solidity": 0.9906405048089019, "top": 905, "right": 4430, "bottom": 3305, "left": 2815}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720278f.jpg"} -{"rects": [{"solidity": 0.9970668016457059, "top": 2255, "right": 3180, "bottom": 3865, "left": 765}, {"solidity": 0.9975278729858567, "top": 475, "right": 3180, "bottom": 2075, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710670f.jpg"} -{"rects": [{"solidity": 0.9970669173835682, "top": 380, "right": 2675, "bottom": 3635, "left": 595}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733075f.jpg"} -{"rects": [{"solidity": 0.997066917611753, "top": 805, "right": 3780, "bottom": 3220, "left": 2160}, {"solidity": 0.9977826256837719, "top": 805, "right": 1975, "bottom": 3210, "left": 365}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721923f.jpg"} -{"rects": [{"solidity": 0.9970669996230682, "top": 2255, "right": 3165, "bottom": 3965, "left": 665}, {"solidity": 0.9972726947564203, "top": 480, "right": 3160, "bottom": 2160, "left": 650}, {"solidity": 0.9935880269718096, "top": 4060, "right": 3165, "bottom": 5740, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708558f.jpg"} -{"rects": [{"solidity": 0.9970670534476562, "top": 410, "right": 3180, "bottom": 2040, "left": 760}, {"solidity": 0.998002924748916, "top": 2215, "right": 3200, "bottom": 3830, "left": 780}, {"solidity": 0.99613936340497, "top": 4065, "right": 3185, "bottom": 5665, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723564f.jpg"} -{"rects": [{"solidity": 0.9970671496482036, "top": 600, "right": 5220, "bottom": 2030, "left": 3405}, {"solidity": 0.9976584819894558, "top": 600, "right": 2630, "bottom": 2025, "left": 825}, {"solidity": 0.996719045938328, "top": 2075, "right": 2640, "bottom": 3480, "left": 825}, {"solidity": 0.996906954265656, "top": 2090, "right": 5170, "bottom": 3505, "left": 3415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705288f.jpg"} -{"rects": [{"solidity": 0.9970671627429598, "top": 795, "right": 2285, "bottom": 3280, "left": 285}], "shape": {"h": 4000, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727192f.jpg"} -{"rects": [{"solidity": 0.9970671634168762, "top": 2105, "right": 2790, "bottom": 3530, "left": 970}, {"solidity": 0.9954435260098724, "top": 640, "right": 5285, "bottom": 2065, "left": 3460}, {"solidity": 0.9969885692531456, "top": 645, "right": 2805, "bottom": 2060, "left": 980}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734191f.jpg"} -{"rects": [{"solidity": 0.9970674296118083, "top": 770, "right": 5290, "bottom": 3180, "left": 3680}, {"solidity": 0.9963820314078787, "top": 800, "right": 2500, "bottom": 3215, "left": 895}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730985f.jpg"} -{"rects": [{"solidity": 0.997067550469707, "top": 600, "right": 4910, "bottom": 3595, "left": 1115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712654f.jpg"} -{"rects": [{"solidity": 0.9970677033237149, "top": 575, "right": 3135, "bottom": 2155, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718499f.jpg"} -{"rects": [{"solidity": 0.9970677826785359, "top": 560, "right": 5030, "bottom": 3640, "left": 1205}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718069f.jpg"} -{"rects": [{"solidity": 0.9970678886515223, "top": 1060, "right": 5655, "bottom": 2670, "left": 3255}, {"solidity": 0.9317081292086872, "top": 1110, "right": 2885, "bottom": 2675, "left": 505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707568f.jpg"} -{"rects": [{"solidity": 0.9970681535213555, "top": 765, "right": 3335, "bottom": 2715, "left": 310}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724921f.jpg"} -{"rects": [{"solidity": 0.9970683501541867, "top": 2270, "right": 3205, "bottom": 3875, "left": 780}, {"solidity": 0.996738685977339, "top": 425, "right": 3195, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709266f.jpg"} -{"rects": [{"solidity": 0.9970689083066032, "top": 765, "right": 2005, "bottom": 3175, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718327f.jpg"} -{"rects": [{"solidity": 0.9970690722914604, "top": 395, "right": 3160, "bottom": 2150, "left": 640}, {"solidity": 0.9961299107729428, "top": 2245, "right": 3160, "bottom": 3920, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733344f.jpg"} -{"rects": [{"solidity": 0.9970690838637274, "top": 820, "right": 2610, "bottom": 3835, "left": 230}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716477f.jpg"} -{"rects": [{"solidity": 0.9970691657983296, "top": 2250, "right": 3205, "bottom": 3880, "left": 750}, {"solidity": 0.9974642801812312, "top": 405, "right": 3200, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700028f.jpg"} -{"rects": [{"solidity": 0.9970693079555674, "top": 875, "right": 2055, "bottom": 3280, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724379f.jpg"} -{"rects": [{"solidity": 0.9970694624446292, "top": 790, "right": 3810, "bottom": 3215, "left": 2195}, {"solidity": 0.9974071347385823, "top": 800, "right": 5655, "bottom": 3215, "left": 4040}, {"solidity": 0.9968410342544292, "top": 785, "right": 2000, "bottom": 3205, "left": 385}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732144f.jpg"} -{"rects": [{"solidity": 0.9970694646609067, "top": 450, "right": 3085, "bottom": 2085, "left": 680}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720571f.jpg"} -{"rects": [{"solidity": 0.9970695159162546, "top": 355, "right": 2875, "bottom": 1755, "left": 1085}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703570f.jpg"} -{"rects": [{"solidity": 0.9970695187858417, "top": 415, "right": 3165, "bottom": 2025, "left": 745}, {"solidity": 0.9959665008990329, "top": 4090, "right": 3155, "bottom": 5705, "left": 740}, {"solidity": 0.9971377982813795, "top": 2255, "right": 3155, "bottom": 3865, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/734317f.jpg"} -{"rects": [{"solidity": 0.997069549361813, "top": 955, "right": 3065, "bottom": 2040, "left": 1630}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507817.jpg"} -{"rects": [{"solidity": 0.9970699175921462, "top": 1060, "right": 3410, "bottom": 4955, "left": 580}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732972f.jpg"} -{"rects": [{"solidity": 0.9970699367619348, "top": 740, "right": 2720, "bottom": 2155, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727513f.jpg"} -{"rects": [{"solidity": 0.9970699396808429, "top": 960, "right": 3870, "bottom": 3390, "left": 2235}, {"solidity": 0.996358137684043, "top": 960, "right": 2005, "bottom": 3385, "left": 365}, {"solidity": 0.9970219495708291, "top": 970, "right": 5735, "bottom": 3400, "left": 4100}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726666f.jpg"} -{"rects": [{"solidity": 0.9970702235864886, "top": 1650, "right": 3180, "bottom": 3260, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733209f.jpg"} -{"rects": [{"solidity": 0.9970702752223537, "top": 830, "right": 1995, "bottom": 3265, "left": 365}, {"solidity": 0.998417154843826, "top": 835, "right": 3865, "bottom": 3265, "left": 2245}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700851f.jpg"} -{"rects": [{"solidity": 0.997070408900862, "top": 2260, "right": 3075, "bottom": 3900, "left": 645}, {"solidity": 0.9961914932627387, "top": 400, "right": 3075, "bottom": 2020, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729193f.jpg"} -{"rects": [{"solidity": 0.9970704650799438, "top": 405, "right": 3005, "bottom": 2025, "left": 615}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702538f.jpg"} -{"rects": [{"solidity": 0.9970705127579169, "top": 805, "right": 3845, "bottom": 3225, "left": 2245}, {"solidity": 0.9973032341577265, "top": 810, "right": 2015, "bottom": 3225, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726985f.jpg"} -{"rects": [{"solidity": 0.9970706031533364, "top": 460, "right": 5065, "bottom": 3685, "left": 985}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732193f.jpg"} -{"rects": [{"solidity": 0.9970707960618123, "top": 375, "right": 2960, "bottom": 2010, "left": 550}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701890f.jpg"} -{"rects": [{"solidity": 0.997070971617166, "top": 790, "right": 3885, "bottom": 3210, "left": 2270}, {"solidity": 0.9987935587091403, "top": 780, "right": 2105, "bottom": 3190, "left": 500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719341f.jpg"} -{"rects": [{"solidity": 0.9970709979828131, "top": 880, "right": 3175, "bottom": 2830, "left": 395}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703027f.jpg"} -{"rects": [{"solidity": 0.9970710016272213, "top": 780, "right": 2065, "bottom": 3205, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714185f.jpg"} -{"rects": [{"solidity": 0.9970710235872597, "top": 445, "right": 2200, "bottom": 2535, "left": 725}, {"solidity": 0.993935205254247, "top": 450, "right": 3960, "bottom": 2545, "left": 2480}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716247f.jpg"} -{"rects": [{"solidity": 0.9970710905671698, "top": 2255, "right": 3255, "bottom": 3875, "left": 840}, {"solidity": 0.9959818434026037, "top": 4070, "right": 3250, "bottom": 5680, "left": 840}, {"solidity": 0.9986356179335694, "top": 455, "right": 3240, "bottom": 2050, "left": 840}], "shape": {"h": 6140, "w": 4075}, "file": "/usr/local/google/home/danvk/milstein/731961f.jpg"} -{"rects": [{"solidity": 0.9970710937026921, "top": 390, "right": 3055, "bottom": 2025, "left": 625}, {"solidity": 0.9988864750034497, "top": 2250, "right": 3060, "bottom": 3870, "left": 640}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/700987f.jpg"} -{"rects": [{"solidity": 0.9970711633364947, "top": 425, "right": 3100, "bottom": 2045, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728385f.jpg"} -{"rects": [{"solidity": 0.9970711969593576, "top": 465, "right": 5050, "bottom": 3700, "left": 1005}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708236f.jpg"} -{"rects": [{"solidity": 0.9970711998092574, "top": 705, "right": 3890, "bottom": 3120, "left": 2270}, {"solidity": 0.9963367282091892, "top": 725, "right": 2000, "bottom": 3105, "left": 410}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718296f.jpg"} -{"rects": [{"solidity": 0.9970714465072381, "top": 460, "right": 5075, "bottom": 3710, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722932f.jpg"} -{"rects": [{"solidity": 0.9970714847923876, "top": 920, "right": 3690, "bottom": 2305, "left": 1615}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508867.jpg"} -{"rects": [{"solidity": 0.9970717281946609, "top": 745, "right": 3885, "bottom": 3175, "left": 2270}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718216f.jpg"} -{"rects": [{"solidity": 0.9970717892200835, "top": 780, "right": 2050, "bottom": 3205, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721143f.jpg"} -{"rects": [{"solidity": 0.9970719012004042, "top": 990, "right": 3495, "bottom": 5005, "left": 270}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717168f.jpg"} -{"rects": [{"solidity": 0.9970720778885388, "top": 430, "right": 3205, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706040f.jpg"} -{"rects": [{"solidity": 0.9970721188561481, "top": 800, "right": 2045, "bottom": 3190, "left": 445}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730297f.jpg"} -{"rects": [{"solidity": 0.9970721634985729, "top": 385, "right": 3280, "bottom": 2015, "left": 855}, {"solidity": 0.9965292381982861, "top": 2240, "right": 3270, "bottom": 3875, "left": 860}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725592f.jpg"} -{"rects": [{"solidity": 0.9970722005441669, "top": 820, "right": 2220, "bottom": 3545, "left": 385}, {"solidity": 0.9981348517358768, "top": 810, "right": 6510, "bottom": 3530, "left": 4680}, {"solidity": 0.9992942747403667, "top": 815, "right": 4375, "bottom": 3535, "left": 2555}], "shape": {"h": 4435, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/701576f.jpg"} -{"rects": [{"solidity": 0.9970724680021559, "top": 555, "right": 5075, "bottom": 3640, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715073f.jpg"} -{"rects": [{"solidity": 0.9970724893726262, "top": 735, "right": 2005, "bottom": 3165, "left": 375}, {"solidity": 0.996065024902267, "top": 715, "right": 3855, "bottom": 3150, "left": 2225}, {"solidity": 0.9961023675223021, "top": 735, "right": 5730, "bottom": 3165, "left": 4095}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716760f.jpg"} -{"rects": [{"solidity": 0.9970726486082185, "top": 530, "right": 3145, "bottom": 2155, "left": 730}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707521f.jpg"} -{"rects": [{"solidity": 0.9970727004577696, "top": 460, "right": 3310, "bottom": 2095, "left": 885}, {"solidity": 0.9961981463151264, "top": 4150, "right": 3270, "bottom": 5790, "left": 845}, {"solidity": 0.9966554536746469, "top": 2335, "right": 3290, "bottom": 3960, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702500f.jpg"} -{"rects": [{"solidity": 0.9970727299338819, "top": 415, "right": 3150, "bottom": 2045, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702008f.jpg"} -{"rects": [{"solidity": 0.9970728773348482, "top": 440, "right": 3070, "bottom": 2015, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728607f.jpg"} -{"rects": [{"solidity": 0.9970729337107297, "top": 405, "right": 5160, "bottom": 3630, "left": 1155}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722325f.jpg"} -{"rects": [{"solidity": 0.9970731115664758, "top": 425, "right": 3195, "bottom": 2050, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701624f.jpg"} -{"rects": [{"solidity": 0.9970733205073347, "top": 445, "right": 3185, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723307f.jpg"} -{"rects": [{"solidity": 0.9970734608435539, "top": 1320, "right": 3540, "bottom": 5315, "left": 330}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717226f.jpg"} -{"rects": [{"solidity": 0.9970735214125985, "top": 375, "right": 3180, "bottom": 2010, "left": 750}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703948f.jpg"} -{"rects": [{"solidity": 0.9970736159511865, "top": 380, "right": 3135, "bottom": 2010, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701753f.jpg"} -{"rects": [{"solidity": 0.997073667863729, "top": 740, "right": 2665, "bottom": 2155, "left": 830}, {"solidity": 0.9973055916269071, "top": 720, "right": 5240, "bottom": 2130, "left": 3400}, {"solidity": 0.994673701019779, "top": 2200, "right": 2650, "bottom": 3580, "left": 830}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719744f.jpg"} -{"rects": [{"solidity": 0.9970737528557606, "top": 465, "right": 5125, "bottom": 3775, "left": 1065}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721542f.jpg"} -{"rects": [{"solidity": 0.9970738422628099, "top": 795, "right": 5190, "bottom": 3220, "left": 3565}, {"solidity": 0.9967916950919693, "top": 790, "right": 3190, "bottom": 2410, "left": 770}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704660f.jpg"} -{"rects": [{"solidity": 0.9970741995334239, "top": 465, "right": 5015, "bottom": 3640, "left": 1020}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720851f.jpg"} -{"rects": [{"solidity": 0.9970743204351394, "top": 305, "right": 3795, "bottom": 2760, "left": 780}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509823.jpg"} -{"rects": [{"solidity": 0.9970743346241608, "top": 600, "right": 5260, "bottom": 2035, "left": 3400}, {"solidity": 0.9946484346179386, "top": 2095, "right": 5240, "bottom": 3505, "left": 3420}, {"solidity": 0.9950163895522167, "top": 2100, "right": 2660, "bottom": 3510, "left": 845}, {"solidity": 0.9965568565191506, "top": 615, "right": 2665, "bottom": 2020, "left": 855}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704307f.jpg"} -{"rects": [{"solidity": 0.9970743723604135, "top": 465, "right": 3120, "bottom": 2060, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717837f.jpg"} -{"rects": [{"solidity": 0.9970745961811358, "top": 400, "right": 3175, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704710f.jpg"} -{"rects": [{"solidity": 0.9970746135350901, "top": 770, "right": 3800, "bottom": 3180, "left": 2185}, {"solidity": 0.9979104321917317, "top": 775, "right": 1970, "bottom": 3180, "left": 365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730228f.jpg"} -{"rects": [{"solidity": 0.99707486548356, "top": 1330, "right": 3210, "bottom": 4700, "left": 675}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715653f.jpg"} -{"rects": [{"solidity": 0.9970748898678414, "top": 380, "right": 5080, "bottom": 3695, "left": 995}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712363f.jpg"} -{"rects": [{"solidity": 0.9970749226454939, "top": 700, "right": 3400, "bottom": 2735, "left": 320}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722989f.jpg"} -{"rects": [{"solidity": 0.9970751287239468, "top": 735, "right": 2055, "bottom": 3130, "left": 455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711067f.jpg"} -{"rects": [{"solidity": 0.9970753407779205, "top": 905, "right": 3885, "bottom": 3305, "left": 2260}, {"solidity": 0.9980070228717851, "top": 920, "right": 2020, "bottom": 3310, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709467f.jpg"} -{"rects": [{"solidity": 0.9970754072399635, "top": 685, "right": 3855, "bottom": 3120, "left": 2235}, {"solidity": 0.9986789693264766, "top": 705, "right": 1985, "bottom": 3090, "left": 420}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727929f.jpg"} -{"rects": [{"solidity": 0.9970755278817429, "top": 2130, "right": 2715, "bottom": 3565, "left": 895}, {"solidity": 0.9952744066158308, "top": 650, "right": 2720, "bottom": 2080, "left": 905}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705488f.jpg"} -{"rects": [{"solidity": 0.9970755892397177, "top": 845, "right": 2035, "bottom": 3255, "left": 415}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700134f.jpg"} -{"rects": [{"solidity": 0.9970757385456279, "top": 530, "right": 2650, "bottom": 3540, "left": 250}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508047.jpg"} -{"rects": [{"solidity": 0.9970758794514074, "top": 475, "right": 3150, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710142f.jpg"} -{"rects": [{"solidity": 0.9970759313673597, "top": 965, "right": 3505, "bottom": 5005, "left": 240}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719125f.jpg"} -{"rects": [{"solidity": 0.9970763364971201, "top": 400, "right": 3075, "bottom": 2005, "left": 660}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/729321f.jpg"} -{"rects": [{"solidity": 0.9970764281664887, "top": 850, "right": 3985, "bottom": 3240, "left": 2385}, {"solidity": 0.9985133548625269, "top": 860, "right": 2075, "bottom": 3245, "left": 490}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712988f.jpg"} -{"rects": [{"solidity": 0.9970764900007022, "top": 715, "right": 2010, "bottom": 3145, "left": 385}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706172f.jpg"} -{"rects": [{"solidity": 0.9970764994246228, "top": 415, "right": 3235, "bottom": 3860, "left": 575}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714726f.jpg"} -{"rects": [{"solidity": 0.9970765861428192, "top": 450, "right": 3150, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727616f.jpg"} -{"rects": [{"solidity": 0.9970767853897562, "top": 950, "right": 2750, "bottom": 3985, "left": 315}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517213.jpg"} -{"rects": [{"solidity": 0.9970769357090074, "top": 670, "right": 3485, "bottom": 3070, "left": 290}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718984f.jpg"} -{"rects": [{"solidity": 0.9970769730431959, "top": 735, "right": 2015, "bottom": 3160, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715256f.jpg"} -{"rects": [{"solidity": 0.9970770380652394, "top": 440, "right": 3155, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727995f.jpg"} -{"rects": [{"solidity": 0.9970774523670046, "top": 755, "right": 2035, "bottom": 3165, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719957f.jpg"} -{"rects": [{"solidity": 0.9970778097796397, "top": 765, "right": 2025, "bottom": 3185, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721757f.jpg"} -{"rects": [{"solidity": 0.9970779664757828, "top": 4055, "right": 3200, "bottom": 5975, "left": 465}, {"solidity": 0.9938565195410121, "top": 155, "right": 3220, "bottom": 2055, "left": 440}, {"solidity": 0.9950097645472561, "top": 2095, "right": 3215, "bottom": 4005, "left": 460}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726361f.jpg"} -{"rects": [{"solidity": 0.9970780279683974, "top": 400, "right": 3170, "bottom": 1985, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717944f.jpg"} -{"rects": [{"solidity": 0.997078178044503, "top": 355, "right": 3150, "bottom": 1975, "left": 735}, {"solidity": 0.9984137127879403, "top": 2220, "right": 3145, "bottom": 3830, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719409f.jpg"} -{"rects": [{"solidity": 0.9970782755684716, "top": 600, "right": 5000, "bottom": 3710, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730166f.jpg"} -{"rects": [{"solidity": 0.997078567069608, "top": 390, "right": 3205, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726341f.jpg"} -{"rects": [{"solidity": 0.9970786061629996, "top": 485, "right": 5190, "bottom": 3515, "left": 1150}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730013f.jpg"} -{"rects": [{"solidity": 0.9970787333526925, "top": 280, "right": 3300, "bottom": 2690, "left": 295}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507501.jpg"} -{"rects": [{"solidity": 0.9970787540756875, "top": 410, "right": 3210, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719899f.jpg"} -{"rects": [{"solidity": 0.9970789310130516, "top": 2230, "right": 3135, "bottom": 3880, "left": 680}, {"solidity": 0.9977067458064193, "top": 4120, "right": 3120, "bottom": 5765, "left": 680}, {"solidity": 0.9986127182210003, "top": 410, "right": 3120, "bottom": 2045, "left": 680}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700008f.jpg"} -{"rects": [{"solidity": 0.9970790127062947, "top": 3865, "right": 3190, "bottom": 5505, "left": 755}, {"solidity": 0.9956988834991788, "top": 405, "right": 3195, "bottom": 2035, "left": 765}, {"solidity": 0.9973105972075035, "top": 2155, "right": 3175, "bottom": 3775, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733232f.jpg"} -{"rects": [{"solidity": 0.9970792869984828, "top": 420, "right": 3200, "bottom": 1995, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719969f.jpg"} -{"rects": [{"solidity": 0.9970793153523586, "top": 275, "right": 3185, "bottom": 1890, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720268f.jpg"} -{"rects": [{"solidity": 0.9970796614875217, "top": 280, "right": 2695, "bottom": 3285, "left": 235}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507606.jpg"} -{"rects": [{"solidity": 0.9970797383756733, "top": 475, "right": 3105, "bottom": 2085, "left": 690}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/700834f.jpg"} -{"rects": [{"solidity": 0.9970798913099066, "top": 480, "right": 2675, "bottom": 3510, "left": 210}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508043.jpg"} -{"rects": [{"solidity": 0.9970799800584004, "top": 725, "right": 2670, "bottom": 2115, "left": 885}, {"solidity": 0.996290960559073, "top": 2190, "right": 2665, "bottom": 3300, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725990f.jpg"} -{"rects": [{"solidity": 0.9970801560433369, "top": 380, "right": 3365, "bottom": 2295, "left": 610}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718537f.jpg"} -{"rects": [{"solidity": 0.9970802113680135, "top": 4115, "right": 3045, "bottom": 5730, "left": 635}, {"solidity": 0.9962168937612844, "top": 2285, "right": 3060, "bottom": 3895, "left": 640}, {"solidity": 0.9976025616285573, "top": 475, "right": 3035, "bottom": 2080, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731858f.jpg"} -{"rects": [{"solidity": 0.9970804425095304, "top": 790, "right": 3820, "bottom": 3225, "left": 2200}, {"solidity": 0.9949736319006829, "top": 810, "right": 5690, "bottom": 3245, "left": 4090}, {"solidity": 0.9544285714285714, "top": 785, "right": 1935, "bottom": 3225, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731812f.jpg"} -{"rects": [{"solidity": 0.9970804584592575, "top": 915, "right": 4500, "bottom": 3270, "left": 3075}, {"solidity": 0.9947124079855311, "top": 920, "right": 5930, "bottom": 3260, "left": 4525}, {"solidity": 0.996293313708189, "top": 900, "right": 3040, "bottom": 3250, "left": 1630}, {"solidity": 0.9962259433188257, "top": 910, "right": 1600, "bottom": 3235, "left": 210}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732948f.jpg"} -{"rects": [{"solidity": 0.9970805522222691, "top": 380, "right": 3160, "bottom": 3620, "left": 1130}, {"solidity": 0.9985256509609424, "top": 390, "right": 5590, "bottom": 3610, "left": 3575}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703739f.jpg"} -{"rects": [{"solidity": 0.9970807003686151, "top": 565, "right": 3120, "bottom": 2160, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723144f.jpg"} -{"rects": [{"solidity": 0.9970808490813844, "top": 685, "right": 2725, "bottom": 2100, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726390f.jpg"} -{"rects": [{"solidity": 0.9970808655444722, "top": 830, "right": 2025, "bottom": 3245, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719246f.jpg"} -{"rects": [{"solidity": 0.9970809633759457, "top": 3255, "right": 3255, "bottom": 5185, "left": 475}, {"solidity": 0.9849021023531536, "top": 785, "right": 3290, "bottom": 2705, "left": 520}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727651f.jpg"} -{"rects": [{"solidity": 0.9970810329370721, "top": 415, "right": 5215, "bottom": 3670, "left": 1215}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726576f.jpg"} -{"rects": [{"solidity": 0.9970810489959787, "top": 690, "right": 2075, "bottom": 3095, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722103f.jpg"} -{"rects": [{"solidity": 0.9970812077143169, "top": 830, "right": 2060, "bottom": 3260, "left": 435}, {"solidity": 0.9966787138383705, "top": 845, "right": 3945, "bottom": 3265, "left": 2320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728790f.jpg"} -{"rects": [{"solidity": 0.9970813409299013, "top": 685, "right": 2080, "bottom": 3110, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705998f.jpg"} -{"rects": [{"solidity": 0.9970819816441974, "top": 755, "right": 3910, "bottom": 3160, "left": 2300}, {"solidity": 0.9956321170174159, "top": 770, "right": 2065, "bottom": 3170, "left": 460}, {"solidity": 0.9961259048051277, "top": 755, "right": 5760, "bottom": 3155, "left": 4155}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733605f.jpg"} -{"rects": [{"solidity": 0.9970821152951947, "top": 1195, "right": 2575, "bottom": 4425, "left": 410}], "shape": {"h": 5195, "w": 8085}, "file": "/usr/local/google/home/danvk/milstein/716318f.jpg"} -{"rects": [{"solidity": 0.9970822577684246, "top": 590, "right": 5100, "bottom": 3710, "left": 1150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730767f.jpg"} -{"rects": [{"solidity": 0.9970823424257418, "top": 470, "right": 3320, "bottom": 2110, "left": 900}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707813f.jpg"} -{"rects": [{"solidity": 0.997082346149683, "top": 655, "right": 3310, "bottom": 2565, "left": 560}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716697f.jpg"} -{"rects": [{"solidity": 0.9970824263722431, "top": 700, "right": 3220, "bottom": 2720, "left": 365}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733767f.jpg"} -{"rects": [{"solidity": 0.9970824815993823, "top": 2095, "right": 3140, "bottom": 3735, "left": 705}, {"solidity": 0.9966021142400284, "top": 340, "right": 3125, "bottom": 1985, "left": 690}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707948f.jpg"} -{"rects": [{"solidity": 0.9970825268454586, "top": 760, "right": 3875, "bottom": 3210, "left": 2225}, {"solidity": 0.9968290175416051, "top": 760, "right": 2020, "bottom": 3180, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701240f.jpg"} -{"rects": [{"solidity": 0.9970825442705737, "top": 605, "right": 2425, "bottom": 3690, "left": 435}, {"solidity": 0.9971612156370518, "top": 950, "right": 5905, "bottom": 3370, "left": 4300}, {"solidity": 0.9958160089955806, "top": 950, "right": 4215, "bottom": 3355, "left": 2605}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714613f.jpg"} -{"rects": [{"solidity": 0.9970825793931765, "top": 740, "right": 3860, "bottom": 3145, "left": 2255}, {"solidity": 0.9981130834976989, "top": 735, "right": 2025, "bottom": 3135, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725177f.jpg"} -{"rects": [{"solidity": 0.9970826776805691, "top": 490, "right": 5005, "bottom": 2115, "left": 2575}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702260f.jpg"} -{"rects": [{"solidity": 0.9970827214880078, "top": 490, "right": 3250, "bottom": 2095, "left": 840}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709133f.jpg"} -{"rects": [{"solidity": 0.9970828394200465, "top": 285, "right": 5145, "bottom": 3570, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705337f.jpg"} -{"rects": [{"solidity": 0.9970831956483058, "top": 800, "right": 5735, "bottom": 3230, "left": 4100}, {"solidity": 0.9965928777670837, "top": 790, "right": 3880, "bottom": 3215, "left": 2260}, {"solidity": 0.995763463902346, "top": 795, "right": 2020, "bottom": 3185, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724001f.jpg"} -{"rects": [{"solidity": 0.9970833642185188, "top": 445, "right": 3090, "bottom": 2070, "left": 680}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705594f.jpg"} -{"rects": [{"solidity": 0.997083386407209, "top": 390, "right": 3145, "bottom": 2000, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721774f.jpg"} -{"rects": [{"solidity": 0.9970835720769731, "top": 2170, "right": 3135, "bottom": 3800, "left": 730}, {"solidity": 0.9985370747969059, "top": 315, "right": 3145, "bottom": 1935, "left": 745}, {"solidity": 0.992724559276187, "top": 4055, "right": 2850, "bottom": 5575, "left": 975}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707684f.jpg"} -{"rects": [{"solidity": 0.997083583788924, "top": 760, "right": 3920, "bottom": 3190, "left": 2285}, {"solidity": 0.9977533755935776, "top": 780, "right": 2045, "bottom": 3190, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717998f.jpg"} -{"rects": [{"solidity": 0.9970835957311385, "top": 720, "right": 1990, "bottom": 3105, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720927f.jpg"} -{"rects": [{"solidity": 0.9970836581421691, "top": 880, "right": 2290, "bottom": 3605, "left": 455}], "shape": {"h": 4415, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/711641f.jpg"} -{"rects": [{"solidity": 0.9970837973721989, "top": 400, "right": 3105, "bottom": 2020, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703738f.jpg"} -{"rects": [{"solidity": 0.9970838875888832, "top": 795, "right": 5650, "bottom": 3205, "left": 4035}, {"solidity": 0.997764046520889, "top": 810, "right": 3785, "bottom": 3190, "left": 2165}, {"solidity": 0.9960540643137569, "top": 805, "right": 1905, "bottom": 3190, "left": 320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723573f.jpg"} -{"rects": [{"solidity": 0.9970840138372706, "top": 460, "right": 3085, "bottom": 2085, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701283f.jpg"} -{"rects": [{"solidity": 0.9970842617340371, "top": 965, "right": 2315, "bottom": 3665, "left": 510}], "shape": {"h": 4430, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708879f.jpg"} -{"rects": [{"solidity": 0.9970843744566225, "top": 380, "right": 5080, "bottom": 3645, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727242f.jpg"} -{"rects": [{"solidity": 0.9970843981548452, "top": 780, "right": 2090, "bottom": 3205, "left": 470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703275f.jpg"} -{"rects": [{"solidity": 0.9970846773044819, "top": 425, "right": 3095, "bottom": 2060, "left": 655}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704547f.jpg"} -{"rects": [{"solidity": 0.9970851008365523, "top": 585, "right": 3420, "bottom": 2720, "left": 320}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509809.jpg"} -{"rects": [{"solidity": 0.9970851260411495, "top": 360, "right": 3900, "bottom": 2785, "left": 890}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716299f.jpg"} -{"rects": [{"solidity": 0.9970852127270511, "top": 605, "right": 4935, "bottom": 3440, "left": 1295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720721f.jpg"} -{"rects": [{"solidity": 0.9970855181283331, "top": 805, "right": 2040, "bottom": 3230, "left": 410}, {"solidity": 0.9973737056692726, "top": 820, "right": 3785, "bottom": 3250, "left": 2165}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702496f.jpg"} -{"rects": [{"solidity": 0.9970857738907165, "top": 430, "right": 3040, "bottom": 2055, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702054f.jpg"} -{"rects": [{"solidity": 0.9970859631412182, "top": 415, "right": 5090, "bottom": 3700, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714517f.jpg"} -{"rects": [{"solidity": 0.9970860348218838, "top": 770, "right": 2065, "bottom": 3160, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710997f.jpg"} -{"rects": [{"solidity": 0.9970860590415286, "top": 425, "right": 2960, "bottom": 2040, "left": 560}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705342f.jpg"} -{"rects": [{"solidity": 0.9970861140146338, "top": 410, "right": 3220, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700160f.jpg"} -{"rects": [{"solidity": 0.9970862226094669, "top": 830, "right": 3510, "bottom": 4865, "left": 240}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719260f.jpg"} -{"rects": [{"solidity": 0.9970862375736602, "top": 565, "right": 1385, "bottom": 2090, "left": 370}], "shape": {"h": 2635, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/715762f.jpg"} -{"rects": [{"solidity": 0.9970865068444479, "top": 305, "right": 3140, "bottom": 1925, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702330f.jpg"} -{"rects": [{"solidity": 0.997086605135407, "top": 865, "right": 2085, "bottom": 3230, "left": 500}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712364f.jpg"} -{"rects": [{"solidity": 0.9970867000672803, "top": 420, "right": 3195, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730391f.jpg"} -{"rects": [{"solidity": 0.9970867362558142, "top": 445, "right": 3195, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719181f.jpg"} -{"rects": [{"solidity": 0.997086814802413, "top": 1070, "right": 3510, "bottom": 4995, "left": 450}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721392f.jpg"} -{"rects": [{"solidity": 0.9970869962863271, "top": 425, "right": 3170, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730904f.jpg"} -{"rects": [{"solidity": 0.9970870442672709, "top": 415, "right": 3195, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701560f.jpg"} -{"rects": [{"solidity": 0.997087252675965, "top": 805, "right": 2045, "bottom": 3215, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720949f.jpg"} -{"rects": [{"solidity": 0.9970873598513683, "top": 410, "right": 3120, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703398f.jpg"} -{"rects": [{"solidity": 0.997087362913285, "top": 440, "right": 3170, "bottom": 2055, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721211f.jpg"} -{"rects": [{"solidity": 0.9970873754382956, "top": 825, "right": 2065, "bottom": 3225, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712981f.jpg"} -{"rects": [{"solidity": 0.9970875478346396, "top": 605, "right": 3360, "bottom": 2545, "left": 635}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/714482f.jpg"} -{"rects": [{"solidity": 0.9970876620217722, "top": 620, "right": 2790, "bottom": 3465, "left": 730}, {"solidity": 0.9992686739202571, "top": 625, "right": 5470, "bottom": 3445, "left": 3430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733819f.jpg"} -{"rects": [{"solidity": 0.997088001018404, "top": 645, "right": 5175, "bottom": 3440, "left": 3170}, {"solidity": 0.9581387523474766, "top": 650, "right": 2900, "bottom": 3450, "left": 900}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726032f.jpg"} -{"rects": [{"solidity": 0.9970880986019037, "top": 370, "right": 3215, "bottom": 2005, "left": 795}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707983f.jpg"} -{"rects": [{"solidity": 0.9970881818398956, "top": 670, "right": 5410, "bottom": 3670, "left": 1520}], "shape": {"h": 4415, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711652f.jpg"} -{"rects": [{"solidity": 0.997088190384572, "top": 415, "right": 3115, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729102f.jpg"} -{"rects": [{"solidity": 0.9970884016135367, "top": 725, "right": 3895, "bottom": 3185, "left": 2250}, {"solidity": 0.9965771854076716, "top": 735, "right": 5755, "bottom": 3200, "left": 4115}, {"solidity": 0.9972264420925234, "top": 725, "right": 2035, "bottom": 3175, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700117f.jpg"} -{"rects": [{"solidity": 0.9970884904793639, "top": 2320, "right": 3250, "bottom": 3940, "left": 845}, {"solidity": 0.9977154218898135, "top": 455, "right": 3255, "bottom": 2050, "left": 855}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710490f.jpg"} -{"rects": [{"solidity": 0.9970885456205785, "top": 1375, "right": 3285, "bottom": 4800, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718556f.jpg"} -{"rects": [{"solidity": 0.9970887404549525, "top": 800, "right": 3865, "bottom": 3220, "left": 2245}, {"solidity": 0.9980007346893662, "top": 805, "right": 2045, "bottom": 3225, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734283f.jpg"} -{"rects": [{"solidity": 0.9970887499840216, "top": 4135, "right": 3135, "bottom": 5765, "left": 710}, {"solidity": 0.9976830800574571, "top": 2275, "right": 3150, "bottom": 3895, "left": 730}, {"solidity": 0.9958566776919541, "top": 425, "right": 3160, "bottom": 2035, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734494f.jpg"} -{"rects": [{"solidity": 0.9970887918486172, "top": 445, "right": 3245, "bottom": 2060, "left": 835}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717953f.jpg"} -{"rects": [{"solidity": 0.9970888105573996, "top": 395, "right": 3010, "bottom": 2030, "left": 595}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715485f.jpg"} -{"rects": [{"solidity": 0.9970889171600841, "top": 2260, "right": 3085, "bottom": 3905, "left": 670}, {"solidity": 0.9968613550310159, "top": 4135, "right": 3085, "bottom": 5770, "left": 685}, {"solidity": 0.9984056267413088, "top": 405, "right": 3085, "bottom": 2020, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719548f.jpg"} -{"rects": [{"solidity": 0.9970889746762962, "top": 635, "right": 3385, "bottom": 2255, "left": 1270}, {"solidity": 0.9418137424539547, "top": 2650, "right": 3290, "bottom": 4095, "left": 1425}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706367f.jpg"} -{"rects": [{"solidity": 0.9970891929557836, "top": 830, "right": 3855, "bottom": 3280, "left": 2220}, {"solidity": 0.9962840183452147, "top": 825, "right": 2010, "bottom": 3240, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720711f.jpg"} -{"rects": [{"solidity": 0.9970892108882705, "top": 385, "right": 3090, "bottom": 2010, "left": 665}, {"solidity": 0.9951356760023381, "top": 4095, "right": 3105, "bottom": 5685, "left": 700}, {"solidity": 0.995738349223392, "top": 2270, "right": 3095, "bottom": 3860, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729003f.jpg"} -{"rects": [{"solidity": 0.9970893611019397, "top": 760, "right": 3900, "bottom": 3185, "left": 2275}, {"solidity": 0.9957161963747903, "top": 765, "right": 2040, "bottom": 3175, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732500f.jpg"} -{"rects": [{"solidity": 0.997089774409756, "top": 440, "right": 3220, "bottom": 2080, "left": 795}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715196f.jpg"} -{"rects": [{"solidity": 0.9970900346756347, "top": 620, "right": 1485, "bottom": 2430, "left": 285}, {"solidity": 0.9955619829388104, "top": 630, "right": 2865, "bottom": 2425, "left": 1660}, {"solidity": 0.935607098405442, "top": 800, "right": 4160, "bottom": 2250, "left": 3045}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715892f.jpg"} -{"rects": [{"solidity": 0.9970903660216549, "top": 755, "right": 2010, "bottom": 3185, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727206f.jpg"} -{"rects": [{"solidity": 0.9970903726997532, "top": 530, "right": 3905, "bottom": 2630, "left": 2420}, {"solidity": 0.9963744315954028, "top": 630, "right": 2165, "bottom": 2535, "left": 860}], "shape": {"h": 3020, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715785f.jpg"} -{"rects": [{"solidity": 0.9970904186042912, "top": 1035, "right": 3500, "bottom": 5080, "left": 285}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721869f.jpg"} -{"rects": [{"solidity": 0.9970907133519596, "top": 805, "right": 5740, "bottom": 3240, "left": 4120}, {"solidity": 0.9963368646698604, "top": 805, "right": 3910, "bottom": 3210, "left": 2305}, {"solidity": 0.9976663315589103, "top": 800, "right": 2060, "bottom": 3200, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734489f.jpg"} -{"rects": [{"solidity": 0.9970907495073382, "top": 995, "right": 3350, "bottom": 5050, "left": 395}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/716788f.jpg"} -{"rects": [{"solidity": 0.9970908848051275, "top": 1160, "right": 3450, "bottom": 5160, "left": 250}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/717874f.jpg"} -{"rects": [{"solidity": 0.9970908972976479, "top": 265, "right": 3900, "bottom": 2725, "left": 735}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507743.jpg"} -{"rects": [{"solidity": 0.9970909043997652, "top": 380, "right": 3150, "bottom": 2000, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701951f.jpg"} -{"rects": [{"solidity": 0.9970910057920442, "top": 520, "right": 2965, "bottom": 2135, "left": 555}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704557f.jpg"} -{"rects": [{"solidity": 0.9970912199841222, "top": 425, "right": 3185, "bottom": 2045, "left": 765}, {"solidity": 0.9954984796189441, "top": 2275, "right": 3170, "bottom": 3870, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724068f.jpg"} -{"rects": [{"solidity": 0.9970914396887159, "top": 765, "right": 3895, "bottom": 3185, "left": 2290}, {"solidity": 0.9978400250205246, "top": 775, "right": 2040, "bottom": 3185, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713752f.jpg"} -{"rects": [{"solidity": 0.9970915891218621, "top": 1130, "right": 3445, "bottom": 4925, "left": 435}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721287f.jpg"} -{"rects": [{"solidity": 0.997091591652202, "top": 660, "right": 2575, "bottom": 3715, "left": 520}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715048f.jpg"} -{"rects": [{"solidity": 0.9970918885158873, "top": 770, "right": 3900, "bottom": 3175, "left": 2290}, {"solidity": 0.9948803239098312, "top": 765, "right": 2045, "bottom": 3180, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719752f.jpg"} -{"rects": [{"solidity": 0.9970919844337566, "top": 750, "right": 2035, "bottom": 3150, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713286f.jpg"} -{"rects": [{"solidity": 0.9970921647470411, "top": 745, "right": 1990, "bottom": 3155, "left": 380}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721903f.jpg"} -{"rects": [{"solidity": 0.9970923236361672, "top": 2295, "right": 2970, "bottom": 3700, "left": 1140}, {"solidity": 0.9970969470800747, "top": 510, "right": 2970, "bottom": 1925, "left": 1165}, {"solidity": 0.995369956825964, "top": 4125, "right": 2945, "bottom": 5550, "left": 1140}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727024f.jpg"} -{"rects": [{"solidity": 0.9970923926241319, "top": 785, "right": 2110, "bottom": 3205, "left": 505}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721163f.jpg"} -{"rects": [{"solidity": 0.9970924770630515, "top": 650, "right": 3855, "bottom": 3060, "left": 2205}, {"solidity": 0.9963954070509197, "top": 620, "right": 1995, "bottom": 3040, "left": 370}, {"solidity": 0.9968005964440266, "top": 690, "right": 5740, "bottom": 3060, "left": 4090}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704753f.jpg"} -{"rects": [{"solidity": 0.9970925211583856, "top": 655, "right": 2040, "bottom": 3085, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726227f.jpg"} -{"rects": [{"solidity": 0.9970925323395967, "top": 730, "right": 4065, "bottom": 3325, "left": 2335}, {"solidity": 0.9997930640998732, "top": 795, "right": 2160, "bottom": 3245, "left": 425}, {"solidity": 0.9964330312246491, "top": 785, "right": 5900, "bottom": 3235, "left": 4200}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721878f.jpg"} -{"rects": [{"solidity": 0.9970927733286631, "top": 2225, "right": 3150, "bottom": 3865, "left": 725}, {"solidity": 0.9978400824052018, "top": 360, "right": 3140, "bottom": 1985, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718805f.jpg"} -{"rects": [{"solidity": 0.9970928725141953, "top": 2210, "right": 3070, "bottom": 3820, "left": 655}, {"solidity": 0.9972154201813563, "top": 390, "right": 3075, "bottom": 1990, "left": 660}, {"solidity": 0.9946709037885624, "top": 4055, "right": 3070, "bottom": 5665, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730337f.jpg"} -{"rects": [{"solidity": 0.997092916160104, "top": 850, "right": 1915, "bottom": 3200, "left": 315}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724935f.jpg"} -{"rects": [{"solidity": 0.9970932238986691, "top": 650, "right": 2560, "bottom": 3735, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714678f.jpg"} -{"rects": [{"solidity": 0.9970934575190143, "top": 800, "right": 3840, "bottom": 3205, "left": 2220}, {"solidity": 0.9977151710041531, "top": 805, "right": 2050, "bottom": 3215, "left": 445}, {"solidity": 0.9978451315388123, "top": 815, "right": 5615, "bottom": 3210, "left": 4010}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716672f.jpg"} -{"rects": [{"solidity": 0.9970934974419812, "top": 1225, "right": 2465, "bottom": 4300, "left": 260}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508803.jpg"} -{"rects": [{"solidity": 0.9970936357646681, "top": 435, "right": 3190, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723749f.jpg"} -{"rects": [{"solidity": 0.9970938065360484, "top": 725, "right": 2640, "bottom": 2160, "left": 815}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725452f.jpg"} -{"rects": [{"solidity": 0.9970938931856118, "top": 830, "right": 2055, "bottom": 3210, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717401f.jpg"} -{"rects": [{"solidity": 0.9970939018891105, "top": 1015, "right": 3505, "bottom": 5040, "left": 305}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709209f.jpg"} -{"rects": [{"solidity": 0.9970943687323219, "top": 4235, "right": 3135, "bottom": 5860, "left": 720}, {"solidity": 0.9964763710551566, "top": 2400, "right": 3125, "bottom": 4005, "left": 720}, {"solidity": 0.9950288360539858, "top": 550, "right": 3140, "bottom": 2150, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/731599f.jpg"} -{"rects": [{"solidity": 0.9970944118490016, "top": 405, "right": 3125, "bottom": 1995, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728685f.jpg"} -{"rects": [{"solidity": 0.9970945103297012, "top": 765, "right": 2005, "bottom": 3155, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719339f.jpg"} -{"rects": [{"solidity": 0.9970945838227208, "top": 420, "right": 3065, "bottom": 2030, "left": 660}, {"solidity": 0.9953705229167353, "top": 2285, "right": 3075, "bottom": 3885, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701801f.jpg"} -{"rects": [{"solidity": 0.9970946285452745, "top": 655, "right": 2620, "bottom": 2065, "left": 820}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704294f.jpg"} -{"rects": [{"solidity": 0.997094676980547, "top": 500, "right": 5345, "bottom": 3450, "left": 975}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716831f.jpg"} -{"rects": [{"solidity": 0.9970947367064878, "top": 375, "right": 3145, "bottom": 1995, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701897f.jpg"} -{"rects": [{"solidity": 0.9970947539650264, "top": 765, "right": 2035, "bottom": 3175, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709756f.jpg"} -{"rects": [{"solidity": 0.9970947978166426, "top": 500, "right": 5855, "bottom": 1980, "left": 3935}, {"solidity": 0.995998617033537, "top": 2070, "right": 5850, "bottom": 3545, "left": 3980}, {"solidity": 0.9958051628051582, "top": 1020, "right": 3755, "bottom": 2900, "left": 2290}, {"solidity": 0.9974835651444511, "top": 2190, "right": 2160, "bottom": 3560, "left": 270}, {"solidity": 0.997478271017368, "top": 505, "right": 2110, "bottom": 1930, "left": 365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731458f.jpg"} -{"rects": [{"solidity": 0.9970948538817278, "top": 700, "right": 3335, "bottom": 2615, "left": 660}, {"solidity": 0.9969840628418801, "top": 3290, "right": 3330, "bottom": 5190, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714318f.jpg"} -{"rects": [{"solidity": 0.9970949370729494, "top": 290, "right": 3200, "bottom": 1915, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725764f.jpg"} -{"rects": [{"solidity": 0.9970949856508928, "top": 855, "right": 3860, "bottom": 3275, "left": 2225}, {"solidity": 0.9968509851505172, "top": 860, "right": 5740, "bottom": 3290, "left": 4125}, {"solidity": 0.9968197675539194, "top": 830, "right": 1995, "bottom": 3245, "left": 365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707848f.jpg"} -{"rects": [{"solidity": 0.9970950806171426, "top": 2290, "right": 3150, "bottom": 3910, "left": 735}, {"solidity": 0.9978261290885246, "top": 440, "right": 3140, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701376f.jpg"} -{"rects": [{"solidity": 0.9970951659254474, "top": 550, "right": 2505, "bottom": 3580, "left": 490}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707717f.jpg"} -{"rects": [{"solidity": 0.9970952297074412, "top": 440, "right": 3200, "bottom": 2065, "left": 770}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/704675f.jpg"} -{"rects": [{"solidity": 0.9970952332323473, "top": 480, "right": 3235, "bottom": 3880, "left": 615}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714404f.jpg"} -{"rects": [{"solidity": 0.9970953222613228, "top": 915, "right": 4990, "bottom": 3385, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734310f.jpg"} -{"rects": [{"solidity": 0.9970953506082677, "top": 885, "right": 3330, "bottom": 2725, "left": 1925}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703147f.jpg"} -{"rects": [{"solidity": 0.9970953794140929, "top": 2645, "right": 1855, "bottom": 5085, "left": 215}, {"solidity": 0.9990982315676922, "top": 465, "right": 3215, "bottom": 2075, "left": 790}, {"solidity": 0.997152027485195, "top": 2650, "right": 3750, "bottom": 5065, "left": 2130}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701296f.jpg"} -{"rects": [{"solidity": 0.9970955131796725, "top": 775, "right": 2055, "bottom": 3195, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702190f.jpg"} -{"rects": [{"solidity": 0.99709565810633, "top": 805, "right": 3860, "bottom": 3210, "left": 2245}, {"solidity": 0.9949344757247235, "top": 800, "right": 2025, "bottom": 3215, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730181f.jpg"} -{"rects": [{"solidity": 0.9970958570268075, "top": 1110, "right": 3485, "bottom": 5145, "left": 250}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730623f.jpg"} -{"rects": [{"solidity": 0.9970960021844232, "top": 425, "right": 3145, "bottom": 2050, "left": 720}, {"solidity": 0.995722477689817, "top": 2300, "right": 3140, "bottom": 3930, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729819f.jpg"} -{"rects": [{"solidity": 0.9970961852225935, "top": 395, "right": 3160, "bottom": 2010, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700140f.jpg"} -{"rects": [{"solidity": 0.9970962540392263, "top": 445, "right": 3590, "bottom": 2070, "left": 1170}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704564f.jpg"} -{"rects": [{"solidity": 0.9970963536522736, "top": 420, "right": 3095, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728885f.jpg"} -{"rects": [{"solidity": 0.9970966760062124, "top": 375, "right": 2955, "bottom": 1975, "left": 940}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709426f.jpg"} -{"rects": [{"solidity": 0.9970968395064954, "top": 780, "right": 1990, "bottom": 3180, "left": 375}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724807f.jpg"} -{"rects": [{"solidity": 0.9970969744768681, "top": 425, "right": 3185, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715002f.jpg"} -{"rects": [{"solidity": 0.9970970350141739, "top": 815, "right": 3820, "bottom": 3225, "left": 2210}, {"solidity": 0.9941444221825395, "top": 830, "right": 2000, "bottom": 3230, "left": 400}, {"solidity": 0.9939408310294029, "top": 800, "right": 5715, "bottom": 2195, "left": 3910}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718854f.jpg"} -{"rects": [{"solidity": 0.997097039791681, "top": 455, "right": 5120, "bottom": 3765, "left": 1090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722099f.jpg"} -{"rects": [{"solidity": 0.9970970807614403, "top": 995, "right": 3495, "bottom": 5070, "left": 275}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718634f.jpg"} -{"rects": [{"solidity": 0.9970971452606355, "top": 290, "right": 3140, "bottom": 1920, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703160f.jpg"} -{"rects": [{"solidity": 0.9970971485464731, "top": 470, "right": 3175, "bottom": 2090, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704842f.jpg"} -{"rects": [{"solidity": 0.9970972096484756, "top": 360, "right": 2990, "bottom": 1980, "left": 570}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707912f.jpg"} -{"rects": [{"solidity": 0.9970972470875172, "top": 360, "right": 3055, "bottom": 1965, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728982f.jpg"} -{"rects": [{"solidity": 0.997097322401536, "top": 415, "right": 3150, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702938f.jpg"} -{"rects": [{"solidity": 0.9970974940200029, "top": 565, "right": 2995, "bottom": 2190, "left": 570}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706562f.jpg"} -{"rects": [{"solidity": 0.9970976138619121, "top": 2245, "right": 2785, "bottom": 3680, "left": 965}, {"solidity": 0.9960206459396481, "top": 2250, "right": 5025, "bottom": 3675, "left": 3205}, {"solidity": 0.9946149991973576, "top": 625, "right": 5045, "bottom": 2060, "left": 3210}, {"solidity": 0.9974274885611609, "top": 605, "right": 2780, "bottom": 2020, "left": 965}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725077f.jpg"} -{"rects": [{"solidity": 0.9970976167156382, "top": 2240, "right": 3210, "bottom": 3845, "left": 805}, {"solidity": 0.9966001507387184, "top": 430, "right": 3190, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/734740f.jpg"} -{"rects": [{"solidity": 0.9970976218802704, "top": 2250, "right": 3065, "bottom": 3850, "left": 655}, {"solidity": 0.9934682423128375, "top": 485, "right": 3080, "bottom": 2095, "left": 665}, {"solidity": 0.9955183491215899, "top": 4030, "right": 3065, "bottom": 5620, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728552f.jpg"} -{"rects": [{"solidity": 0.9970976476011765, "top": 2275, "right": 3190, "bottom": 3880, "left": 775}, {"solidity": 0.9966283854727108, "top": 440, "right": 3175, "bottom": 2045, "left": 770}, {"solidity": 0.9971879378537531, "top": 4110, "right": 3190, "bottom": 5710, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734653f.jpg"} -{"rects": [{"solidity": 0.997097663146511, "top": 285, "right": 4140, "bottom": 2755, "left": 970}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508751.jpg"} -{"rects": [{"solidity": 0.9970984505822347, "top": 680, "right": 2765, "bottom": 2110, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705723f.jpg"} -{"rects": [{"solidity": 0.9970985955898652, "top": 795, "right": 2045, "bottom": 3205, "left": 435}, {"solidity": 0.9960976062226286, "top": 795, "right": 3930, "bottom": 3185, "left": 2335}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724209f.jpg"} -{"rects": [{"solidity": 0.9970987508373724, "top": 640, "right": 2570, "bottom": 2065, "left": 775}, {"solidity": 0.995968657173027, "top": 635, "right": 5290, "bottom": 2055, "left": 3490}, {"solidity": 0.9969704020157717, "top": 2130, "right": 2565, "bottom": 3550, "left": 770}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725088f.jpg"} -{"rects": [{"solidity": 0.9970990195518532, "top": 1070, "right": 3545, "bottom": 5070, "left": 300}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726444f.jpg"} -{"rects": [{"solidity": 0.9970998669350711, "top": 450, "right": 3110, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724646f.jpg"} -{"rects": [{"solidity": 0.9970998969301348, "top": 835, "right": 2000, "bottom": 3210, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714143f.jpg"} -{"rects": [{"solidity": 0.9971000058585741, "top": 2200, "right": 3000, "bottom": 3825, "left": 615}, {"solidity": 0.9959092880518354, "top": 4010, "right": 2990, "bottom": 5625, "left": 605}, {"solidity": 0.9960389632505705, "top": 475, "right": 2975, "bottom": 2050, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718583f.jpg"} -{"rects": [{"solidity": 0.9971001082135853, "top": 490, "right": 5025, "bottom": 3705, "left": 970}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706322f.jpg"} -{"rects": [{"solidity": 0.9971002376658585, "top": 430, "right": 3325, "bottom": 2330, "left": 545}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707147f.jpg"} -{"rects": [{"solidity": 0.9971003937808579, "top": 1080, "right": 3525, "bottom": 5120, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708995f.jpg"} -{"rects": [{"solidity": 0.9971004818266622, "top": 945, "right": 2705, "bottom": 3985, "left": 265}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517211.jpg"} -{"rects": [{"solidity": 0.9971005302763261, "top": 515, "right": 4955, "bottom": 3790, "left": 900}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701811f.jpg"} -{"rects": [{"solidity": 0.9971006579674887, "top": 855, "right": 2030, "bottom": 3220, "left": 490}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712729f.jpg"} -{"rects": [{"solidity": 0.9971008865592441, "top": 435, "right": 3175, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703727f.jpg"} -{"rects": [{"solidity": 0.9971010509089979, "top": 890, "right": 2020, "bottom": 3310, "left": 390}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706659f.jpg"} -{"rects": [{"solidity": 0.9971010643466544, "top": 910, "right": 2000, "bottom": 3310, "left": 380}, {"solidity": 0.9966566604981836, "top": 930, "right": 3870, "bottom": 3335, "left": 2255}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710613f.jpg"} -{"rects": [{"solidity": 0.9971011501887961, "top": 2300, "right": 3135, "bottom": 3915, "left": 715}, {"solidity": 0.996607839086989, "top": 425, "right": 3120, "bottom": 2040, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728470f.jpg"} -{"rects": [{"solidity": 0.9971012189501454, "top": 865, "right": 1975, "bottom": 3285, "left": 335}, {"solidity": 0.9977874556695254, "top": 870, "right": 3850, "bottom": 3290, "left": 2215}, {"solidity": 0.9971778654341733, "top": 885, "right": 5720, "bottom": 3305, "left": 4100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714917f.jpg"} -{"rects": [{"solidity": 0.9971012341241782, "top": 440, "right": 5845, "bottom": 3635, "left": 3805}, {"solidity": 0.9964509702943419, "top": 900, "right": 3715, "bottom": 2910, "left": 515}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725151f.jpg"} -{"rects": [{"solidity": 0.9971012568596211, "top": 295, "right": 2800, "bottom": 2735, "left": 1165}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700085f.jpg"} -{"rects": [{"solidity": 0.997101458518013, "top": 875, "right": 3895, "bottom": 3295, "left": 2260}, {"solidity": 0.9971698956020114, "top": 865, "right": 2005, "bottom": 3290, "left": 375}, {"solidity": 0.9971776632203438, "top": 890, "right": 5770, "bottom": 3315, "left": 4145}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720224f.jpg"} -{"rects": [{"solidity": 0.9971015243714841, "top": 810, "right": 3835, "bottom": 3225, "left": 2220}, {"solidity": 0.9969318144726964, "top": 825, "right": 2010, "bottom": 3230, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700385f.jpg"} -{"rects": [{"solidity": 0.997101579526816, "top": 780, "right": 2080, "bottom": 3190, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713015f.jpg"} -{"rects": [{"solidity": 0.997101909692394, "top": 435, "right": 3130, "bottom": 2045, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706205f.jpg"} -{"rects": [{"solidity": 0.9971019754336686, "top": 2245, "right": 3190, "bottom": 3875, "left": 760}, {"solidity": 0.9978942969202084, "top": 4130, "right": 3205, "bottom": 5750, "left": 790}, {"solidity": 0.996706834283656, "top": 405, "right": 3195, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719595f.jpg"} -{"rects": [{"solidity": 0.9971020455622837, "top": 325, "right": 5070, "bottom": 3510, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705843f.jpg"} -{"rects": [{"solidity": 0.9971023585378553, "top": 400, "right": 3055, "bottom": 2015, "left": 640}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705814f.jpg"} -{"rects": [{"solidity": 0.9971023876972885, "top": 405, "right": 3225, "bottom": 2015, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705440f.jpg"} -{"rects": [{"solidity": 0.9971024748017593, "top": 295, "right": 3740, "bottom": 2780, "left": 700}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509833.jpg"} -{"rects": [{"solidity": 0.9971025014422672, "top": 435, "right": 2990, "bottom": 2050, "left": 580}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707515f.jpg"} -{"rects": [{"solidity": 0.9971026231574406, "top": 1070, "right": 3545, "bottom": 3155, "left": 325}, {"solidity": 0.9964909752800227, "top": 3475, "right": 3450, "bottom": 5435, "left": 370}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706352f.jpg"} -{"rects": [{"solidity": 0.9971026265908476, "top": 1055, "right": 3575, "bottom": 5005, "left": 360}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/731791f.jpg"} -{"rects": [{"solidity": 0.9971027549816252, "top": 810, "right": 3970, "bottom": 2845, "left": 735}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732979f.jpg"} -{"rects": [{"solidity": 0.9971029990764594, "top": 780, "right": 2035, "bottom": 3195, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713391f.jpg"} -{"rects": [{"solidity": 0.9971031360311046, "top": 2175, "right": 3175, "bottom": 3800, "left": 745}, {"solidity": 0.9965836598555746, "top": 355, "right": 3160, "bottom": 1970, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716674f.jpg"} -{"rects": [{"solidity": 0.9971032558500023, "top": 685, "right": 4550, "bottom": 3100, "left": 2935}, {"solidity": 0.9964133400439723, "top": 2185, "right": 2865, "bottom": 3400, "left": 895}, {"solidity": 0.9967192913236875, "top": 700, "right": 2850, "bottom": 1895, "left": 895}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717525f.jpg"} -{"rects": [{"solidity": 0.9971034882277486, "top": 770, "right": 3895, "bottom": 3190, "left": 2245}, {"solidity": 0.9967572565679295, "top": 785, "right": 2030, "bottom": 3200, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723282f.jpg"} -{"rects": [{"solidity": 0.9971035254886146, "top": 620, "right": 4835, "bottom": 3495, "left": 1200}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731135f.jpg"} -{"rects": [{"solidity": 0.9971036073997104, "top": 620, "right": 2480, "bottom": 2095, "left": 390}, {"solidity": 0.9970650718995985, "top": 2470, "right": 2465, "bottom": 3945, "left": 375}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716050f.jpg"} -{"rects": [{"solidity": 0.9971037937692429, "top": 765, "right": 2025, "bottom": 3175, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724496f.jpg"} -{"rects": [{"solidity": 0.9971038053797668, "top": 1165, "right": 4790, "bottom": 3610, "left": 705}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725355f.jpg"} -{"rects": [{"solidity": 0.9971039535079375, "top": 395, "right": 3275, "bottom": 2010, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711742f.jpg"} -{"rects": [{"solidity": 0.9971040357190718, "top": 340, "right": 3045, "bottom": 1940, "left": 635}, {"solidity": 0.9947518040673519, "top": 2180, "right": 3030, "bottom": 3780, "left": 630}, {"solidity": 0.995391812865497, "top": 4030, "right": 2990, "bottom": 5630, "left": 605}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729231f.jpg"} -{"rects": [{"solidity": 0.9971041260034265, "top": 660, "right": 2580, "bottom": 3690, "left": 530}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712254f.jpg"} -{"rects": [{"solidity": 0.9971041439145099, "top": 1085, "right": 3475, "bottom": 5030, "left": 400}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721394f.jpg"} -{"rects": [{"solidity": 0.9971043206583861, "top": 290, "right": 3230, "bottom": 2140, "left": 515}, {"solidity": 0.9970199705311029, "top": 2165, "right": 3230, "bottom": 4005, "left": 525}, {"solidity": 0.9655282564480104, "top": 4040, "right": 3245, "bottom": 5875, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705873f.jpg"} -{"rects": [{"solidity": 0.9971045632607072, "top": 820, "right": 2050, "bottom": 3225, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733947f.jpg"} -{"rects": [{"solidity": 0.9971047247148187, "top": 655, "right": 3295, "bottom": 2665, "left": 480}, {"solidity": 0.9981227594766048, "top": 3275, "right": 3285, "bottom": 5280, "left": 475}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734201f.jpg"} -{"rects": [{"solidity": 0.9971048216894853, "top": 280, "right": 3215, "bottom": 3510, "left": 1175}, {"solidity": 0.9984672531769306, "top": 3690, "right": 3545, "bottom": 5690, "left": 330}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/733071f.jpg"} -{"rects": [{"solidity": 0.9971048233046801, "top": 850, "right": 1995, "bottom": 3245, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712497f.jpg"} -{"rects": [{"solidity": 0.9971049174083914, "top": 465, "right": 2695, "bottom": 3710, "left": 635}, {"solidity": 0.9969139845429538, "top": 510, "right": 5045, "bottom": 3750, "left": 2995}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733089f.jpg"} -{"rects": [{"solidity": 0.9971054480753486, "top": 435, "right": 3175, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707478f.jpg"} -{"rects": [{"solidity": 0.9971057268442245, "top": 740, "right": 2030, "bottom": 3170, "left": 390}, {"solidity": 0.9964586353348084, "top": 770, "right": 5690, "bottom": 3205, "left": 4045}, {"solidity": 0.9965605014477076, "top": 750, "right": 3860, "bottom": 3185, "left": 2220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731545f.jpg"} -{"rects": [{"solidity": 0.9971058201276493, "top": 525, "right": 5005, "bottom": 3670, "left": 1120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716977f.jpg"} -{"rects": [{"solidity": 0.9971059502184373, "top": 410, "right": 3190, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719936f.jpg"} -{"rects": [{"solidity": 0.9971059976590737, "top": 395, "right": 3220, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702556f.jpg"} -{"rects": [{"solidity": 0.9971060432625987, "top": 440, "right": 5065, "bottom": 3660, "left": 1075}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708257f.jpg"} -{"rects": [{"solidity": 0.9971063091523492, "top": 755, "right": 2035, "bottom": 3165, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715469f.jpg"} -{"rects": [{"solidity": 0.9971065104059144, "top": 1385, "right": 3545, "bottom": 5250, "left": 555}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711662f.jpg"} -{"rects": [{"solidity": 0.9971065322227093, "top": 530, "right": 5030, "bottom": 3665, "left": 1060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700709f.jpg"} -{"rects": [{"solidity": 0.9971065583597134, "top": 420, "right": 3070, "bottom": 2035, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729472f.jpg"} -{"rects": [{"solidity": 0.9971065874109256, "top": 885, "right": 1965, "bottom": 3300, "left": 340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703949f.jpg"} -{"rects": [{"solidity": 0.9971068429313441, "top": 405, "right": 3320, "bottom": 2010, "left": 895}, {"solidity": 0.9952687025976642, "top": 2250, "right": 3305, "bottom": 3860, "left": 885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726060f.jpg"} -{"rects": [{"solidity": 0.9971068659714553, "top": 560, "right": 3180, "bottom": 2570, "left": 360}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724263f.jpg"} -{"rects": [{"solidity": 0.9971070522177075, "top": 4165, "right": 3050, "bottom": 5760, "left": 645}, {"solidity": 0.9956264666332691, "top": 445, "right": 3085, "bottom": 2045, "left": 685}, {"solidity": 0.9947726101945659, "top": 2290, "right": 3060, "bottom": 3895, "left": 665}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/734595f.jpg"} -{"rects": [{"solidity": 0.9971071048472926, "top": 720, "right": 3735, "bottom": 3130, "left": 2110}, {"solidity": 0.9962470796277413, "top": 740, "right": 2010, "bottom": 3155, "left": 385}, {"solidity": 0.9950314468407726, "top": 960, "right": 5400, "bottom": 2815, "left": 3955}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723331f.jpg"} -{"rects": [{"solidity": 0.9971073086729378, "top": 445, "right": 4955, "bottom": 3690, "left": 945}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727989f.jpg"} -{"rects": [{"solidity": 0.9971074312482597, "top": 825, "right": 2065, "bottom": 3215, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717828f.jpg"} -{"rects": [{"solidity": 0.9971075127191963, "top": 785, "right": 2115, "bottom": 3200, "left": 495}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706313f.jpg"} -{"rects": [{"solidity": 0.9971075155044747, "top": 480, "right": 4915, "bottom": 3680, "left": 860}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717893f.jpg"} -{"rects": [{"solidity": 0.9971077157740981, "top": 425, "right": 3190, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707326f.jpg"} -{"rects": [{"solidity": 0.9971078628965016, "top": 965, "right": 3510, "bottom": 5005, "left": 245}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714595f.jpg"} -{"rects": [{"solidity": 0.9971079129286241, "top": 695, "right": 2685, "bottom": 3750, "left": 210}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509023.jpg"} -{"rects": [{"solidity": 0.9971079350479357, "top": 515, "right": 5045, "bottom": 3720, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709734f.jpg"} -{"rects": [{"solidity": 0.9971080849168451, "top": 2275, "right": 3125, "bottom": 3875, "left": 720}, {"solidity": 0.9971745201442602, "top": 430, "right": 3125, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708693f.jpg"} -{"rects": [{"solidity": 0.9971080853114833, "top": 1105, "right": 3455, "bottom": 4975, "left": 355}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715225f.jpg"} -{"rects": [{"solidity": 0.9971082377815728, "top": 735, "right": 2030, "bottom": 3140, "left": 420}, {"solidity": 0.9965338858267203, "top": 725, "right": 3855, "bottom": 3130, "left": 2250}, {"solidity": 0.9960433652427382, "top": 740, "right": 5685, "bottom": 3135, "left": 4085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708089f.jpg"} -{"rects": [{"solidity": 0.9971086917722649, "top": 1270, "right": 5610, "bottom": 2885, "left": 3200}, {"solidity": 0.9919255056251749, "top": 1265, "right": 2895, "bottom": 2865, "left": 500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734304f.jpg"} -{"rects": [{"solidity": 0.9971088642286783, "top": 2250, "right": 3190, "bottom": 3880, "left": 765}, {"solidity": 0.9964899084868999, "top": 440, "right": 3175, "bottom": 2070, "left": 745}, {"solidity": 0.9980545438680968, "top": 4075, "right": 3195, "bottom": 5685, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730565f.jpg"} -{"rects": [{"solidity": 0.997108977831146, "top": 750, "right": 2035, "bottom": 3155, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712514f.jpg"} -{"rects": [{"solidity": 0.9971091933537608, "top": 470, "right": 3170, "bottom": 2075, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712370f.jpg"} -{"rects": [{"solidity": 0.9971096302892634, "top": 1695, "right": 2165, "bottom": 2835, "left": 695}, {"solidity": 0.995675292995052, "top": 330, "right": 2155, "bottom": 1450, "left": 685}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716530f.jpg"} -{"rects": [{"solidity": 0.9971096752230755, "top": 745, "right": 3930, "bottom": 3145, "left": 2325}, {"solidity": 0.9967390722091279, "top": 765, "right": 2105, "bottom": 3145, "left": 525}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710400f.jpg"} -{"rects": [{"solidity": 0.997109695481145, "top": 4115, "right": 3050, "bottom": 5725, "left": 630}, {"solidity": 0.9927523090275528, "top": 2265, "right": 3055, "bottom": 3895, "left": 635}, {"solidity": 0.9959923099193583, "top": 435, "right": 3055, "bottom": 2045, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710819f.jpg"} -{"rects": [{"solidity": 0.9971098599793589, "top": 515, "right": 5060, "bottom": 3720, "left": 955}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709516f.jpg"} -{"rects": [{"solidity": 0.9971099914440537, "top": 935, "right": 3910, "bottom": 3360, "left": 2270}, {"solidity": 0.9974793250686519, "top": 930, "right": 2045, "bottom": 3355, "left": 405}, {"solidity": 0.9970637719089028, "top": 955, "right": 5755, "bottom": 3365, "left": 4130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722832f.jpg"} -{"rects": [{"solidity": 0.9971100590050561, "top": 660, "right": 2645, "bottom": 2055, "left": 845}, {"solidity": 0.9975819424379349, "top": 2110, "right": 2625, "bottom": 3505, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727352f.jpg"} -{"rects": [{"solidity": 0.9971100628005584, "top": 745, "right": 1985, "bottom": 3155, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712142f.jpg"} -{"rects": [{"solidity": 0.9971103400087638, "top": 675, "right": 3185, "bottom": 2625, "left": 455}, {"solidity": 0.9946940538746342, "top": 3225, "right": 3145, "bottom": 5140, "left": 440}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715211f.jpg"} -{"rects": [{"solidity": 0.9971104176988557, "top": 620, "right": 5045, "bottom": 3625, "left": 1225}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720889f.jpg"} -{"rects": [{"solidity": 0.9971104305716445, "top": 790, "right": 2335, "bottom": 3490, "left": 525}], "shape": {"h": 4415, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708350f.jpg"} -{"rects": [{"solidity": 0.9971108587312874, "top": 2210, "right": 3135, "bottom": 3825, "left": 710}, {"solidity": 0.9964795529424851, "top": 410, "right": 3125, "bottom": 2010, "left": 715}, {"solidity": 0.9974749799445022, "top": 4010, "right": 3125, "bottom": 5600, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724423f.jpg"} -{"rects": [{"solidity": 0.997110877803029, "top": 2440, "right": 3510, "bottom": 4260, "left": 825}, {"solidity": 0.9980717094465362, "top": 325, "right": 3495, "bottom": 2145, "left": 845}], "shape": {"h": 6875, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/707543f.jpg"} -{"rects": [{"solidity": 0.9971110415738186, "top": 860, "right": 3880, "bottom": 3300, "left": 2245}, {"solidity": 0.9956441309385121, "top": 850, "right": 5780, "bottom": 3275, "left": 4145}, {"solidity": 0.9971917126337261, "top": 885, "right": 1995, "bottom": 3295, "left": 380}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728293f.jpg"} -{"rects": [{"solidity": 0.99711117174084, "top": 2145, "right": 3135, "bottom": 3780, "left": 730}, {"solidity": 0.9960959896194815, "top": 295, "right": 2965, "bottom": 1940, "left": 930}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718929f.jpg"} -{"rects": [{"solidity": 0.9971111965155008, "top": 420, "right": 3190, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707405f.jpg"} -{"rects": [{"solidity": 0.9971113791716928, "top": 445, "right": 3160, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701171f.jpg"} -{"rects": [{"solidity": 0.9971114267604451, "top": 350, "right": 5840, "bottom": 3610, "left": 3790}, {"solidity": 0.9977719964274109, "top": 345, "right": 3290, "bottom": 3575, "left": 1290}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707037f.jpg"} -{"rects": [{"solidity": 0.9971114715374669, "top": 765, "right": 5725, "bottom": 3165, "left": 4125}, {"solidity": 0.9958717073908271, "top": 755, "right": 3885, "bottom": 3160, "left": 2285}, {"solidity": 0.9965852064196757, "top": 775, "right": 2015, "bottom": 3140, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724252f.jpg"} -{"rects": [{"solidity": 0.9971115515596026, "top": 775, "right": 3785, "bottom": 3205, "left": 2160}, {"solidity": 0.9968928033744753, "top": 765, "right": 1915, "bottom": 3165, "left": 335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709702f.jpg"} -{"rects": [{"solidity": 0.9971117485335425, "top": 705, "right": 2235, "bottom": 3090, "left": 635}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711847f.jpg"} -{"rects": [{"solidity": 0.9971117954274742, "top": 2130, "right": 5260, "bottom": 3735, "left": 3290}, {"solidity": 0.9862810580350906, "top": 390, "right": 2900, "bottom": 1930, "left": 1070}, {"solidity": 0.9782579475984556, "top": 405, "right": 5200, "bottom": 1930, "left": 3355}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708710f.jpg"} -{"rects": [{"solidity": 0.9971119480727623, "top": 400, "right": 3140, "bottom": 2025, "left": 720}, {"solidity": 0.9975782731002274, "top": 2075, "right": 3140, "bottom": 3700, "left": 725}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704561f.jpg"} -{"rects": [{"solidity": 0.9971120766236493, "top": 460, "right": 3160, "bottom": 2075, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721700f.jpg"} -{"rects": [{"solidity": 0.9971123450275695, "top": 645, "right": 4010, "bottom": 3395, "left": 2110}, {"solidity": 0.9964354431685236, "top": 745, "right": 2025, "bottom": 3165, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703577f.jpg"} -{"rects": [{"solidity": 0.9971128110021422, "top": 425, "right": 3455, "bottom": 2250, "left": 760}], "shape": {"h": 6850, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711694f.jpg"} -{"rects": [{"solidity": 0.9971128395823523, "top": 700, "right": 2090, "bottom": 3110, "left": 475}, {"solidity": 0.9968970530282709, "top": 725, "right": 3915, "bottom": 3120, "left": 2325}], "shape": {"h": 3920, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723097f.jpg"} -{"rects": [{"solidity": 0.9971129867638596, "top": 775, "right": 3875, "bottom": 3205, "left": 2255}, {"solidity": 0.9967838669045198, "top": 775, "right": 5735, "bottom": 3205, "left": 4110}, {"solidity": 0.9969760230373812, "top": 795, "right": 2035, "bottom": 3225, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722984f.jpg"} -{"rects": [{"solidity": 0.9971134346180606, "top": 670, "right": 2730, "bottom": 2090, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707197f.jpg"} -{"rects": [{"solidity": 0.997113635566424, "top": 390, "right": 2765, "bottom": 2735, "left": 615}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517093.jpg"} -{"rects": [{"solidity": 0.9971137233646126, "top": 760, "right": 2015, "bottom": 3130, "left": 445}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714761f.jpg"} -{"rects": [{"solidity": 0.9971138275854642, "top": 430, "right": 2750, "bottom": 3635, "left": 735}, {"solidity": 0.9980954252862267, "top": 415, "right": 5435, "bottom": 3615, "left": 3430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733103f.jpg"} -{"rects": [{"solidity": 0.9971139785223312, "top": 445, "right": 5740, "bottom": 2070, "left": 3325}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700663f.jpg"} -{"rects": [{"solidity": 0.9971144250053408, "top": 795, "right": 3820, "bottom": 3220, "left": 2190}, {"solidity": 0.9974972991286893, "top": 790, "right": 1970, "bottom": 3210, "left": 340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719086f.jpg"} -{"rects": [{"solidity": 0.9971144288209691, "top": 530, "right": 3040, "bottom": 2155, "left": 625}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704196f.jpg"} -{"rects": [{"solidity": 0.9971145313986224, "top": 440, "right": 3040, "bottom": 2070, "left": 605}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704590f.jpg"} -{"rects": [{"solidity": 0.9971145321189651, "top": 420, "right": 3130, "bottom": 2040, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729152f.jpg"} -{"rects": [{"solidity": 0.9971145574158699, "top": 1050, "right": 3425, "bottom": 5095, "left": 345}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708534f.jpg"} -{"rects": [{"solidity": 0.997114614638954, "top": 755, "right": 2070, "bottom": 3165, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723033f.jpg"} -{"rects": [{"solidity": 0.997114627383245, "top": 450, "right": 3145, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702415f.jpg"} -{"rects": [{"solidity": 0.9971147570644834, "top": 455, "right": 3180, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706107f.jpg"} -{"rects": [{"solidity": 0.9971149034491422, "top": 310, "right": 3410, "bottom": 2415, "left": 505}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722246f.jpg"} -{"rects": [{"solidity": 0.997114989226442, "top": 430, "right": 3175, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734204f.jpg"} -{"rects": [{"solidity": 0.9971150212726799, "top": 450, "right": 5065, "bottom": 3665, "left": 1070}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709141f.jpg"} -{"rects": [{"solidity": 0.9971151278747141, "top": 350, "right": 2440, "bottom": 1555, "left": 635}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716421f.jpg"} -{"rects": [{"solidity": 0.9971151299308461, "top": 865, "right": 3900, "bottom": 3285, "left": 2265}, {"solidity": 0.9974394703065846, "top": 880, "right": 2025, "bottom": 3290, "left": 410}, {"solidity": 0.9965239209126667, "top": 890, "right": 5745, "bottom": 3290, "left": 4135}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710187f.jpg"} -{"rects": [{"solidity": 0.9971151444109225, "top": 3320, "right": 3170, "bottom": 5220, "left": 405}, {"solidity": 0.9970193740685543, "top": 840, "right": 3225, "bottom": 2755, "left": 505}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706250f.jpg"} -{"rects": [{"solidity": 0.9971151881023126, "top": 855, "right": 2335, "bottom": 3545, "left": 545}], "shape": {"h": 4415, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711354f.jpg"} -{"rects": [{"solidity": 0.9971152463860714, "top": 2295, "right": 3210, "bottom": 3925, "left": 790}, {"solidity": 0.9970225544693629, "top": 410, "right": 3215, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727592f.jpg"} -{"rects": [{"solidity": 0.9971155056092769, "top": 4115, "right": 3200, "bottom": 5730, "left": 780}, {"solidity": 0.996607893828045, "top": 430, "right": 3180, "bottom": 2045, "left": 765}, {"solidity": 0.99671853047804, "top": 2285, "right": 3170, "bottom": 3890, "left": 775}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719896f.jpg"} -{"rects": [{"solidity": 0.997115524129192, "top": 465, "right": 5095, "bottom": 3685, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726290f.jpg"} -{"rects": [{"solidity": 0.9971159254887807, "top": 810, "right": 3830, "bottom": 3215, "left": 2215}, {"solidity": 0.9954150926131684, "top": 805, "right": 5630, "bottom": 3210, "left": 4020}, {"solidity": 0.9987425224408855, "top": 780, "right": 2000, "bottom": 3175, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722875f.jpg"} -{"rects": [{"solidity": 0.9971159852388062, "top": 495, "right": 3660, "bottom": 2525, "left": 850}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706355f.jpg"} -{"rects": [{"solidity": 0.9971160084014722, "top": 405, "right": 3215, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702994f.jpg"} -{"rects": [{"solidity": 0.9971161158233401, "top": 730, "right": 3075, "bottom": 2525, "left": 1870}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509401.jpg"} -{"rects": [{"solidity": 0.9971162312645048, "top": 735, "right": 2060, "bottom": 3125, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723706f.jpg"} -{"rects": [{"solidity": 0.9971166958142975, "top": 405, "right": 5075, "bottom": 3660, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708475f.jpg"} -{"rects": [{"solidity": 0.9971167278515968, "top": 850, "right": 2705, "bottom": 4055, "left": 275}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507851.jpg"} -{"rects": [{"solidity": 0.9971168379769481, "top": 955, "right": 3240, "bottom": 3920, "left": 1320}, {"solidity": 0.932921739559924, "top": 1160, "right": 4355, "bottom": 3775, "left": 3315}], "shape": {"h": 6010, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465653.jpg"} -{"rects": [{"solidity": 0.9971168680738401, "top": 435, "right": 5060, "bottom": 3665, "left": 1060}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707634f.jpg"} -{"rects": [{"solidity": 0.9971169177703296, "top": 445, "right": 3130, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709120f.jpg"} -{"rects": [{"solidity": 0.9971170595285658, "top": 810, "right": 3860, "bottom": 3240, "left": 2235}, {"solidity": 0.9966587464206581, "top": 795, "right": 5745, "bottom": 3225, "left": 4120}, {"solidity": 0.9955442040402261, "top": 815, "right": 1995, "bottom": 3230, "left": 390}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730428f.jpg"} -{"rects": [{"solidity": 0.9971174618047421, "top": 395, "right": 3150, "bottom": 2000, "left": 735}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728946f.jpg"} -{"rects": [{"solidity": 0.9971175350281727, "top": 425, "right": 2665, "bottom": 3620, "left": 660}, {"solidity": 0.9972244807523774, "top": 455, "right": 5040, "bottom": 3645, "left": 3035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733063f.jpg"} -{"rects": [{"solidity": 0.9971176609656808, "top": 450, "right": 3175, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720854f.jpg"} -{"rects": [{"solidity": 0.9971179691871768, "top": 4155, "right": 3165, "bottom": 5760, "left": 740}, {"solidity": 0.9966999796175212, "top": 2290, "right": 3165, "bottom": 3905, "left": 750}, {"solidity": 0.9980538109889824, "top": 435, "right": 3160, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700575f.jpg"} -{"rects": [{"solidity": 0.9971180043611656, "top": 500, "right": 5130, "bottom": 3775, "left": 1095}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708051f.jpg"} -{"rects": [{"solidity": 0.9971180793371913, "top": 870, "right": 2055, "bottom": 3255, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713787f.jpg"} -{"rects": [{"solidity": 0.9971181084847335, "top": 555, "right": 3110, "bottom": 2160, "left": 710}, {"solidity": 0.9853950821820675, "top": 2390, "right": 3115, "bottom": 3990, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722052f.jpg"} -{"rects": [{"solidity": 0.9971181180397987, "top": 775, "right": 2030, "bottom": 3185, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712731f.jpg"} -{"rects": [{"solidity": 0.9971181842902908, "top": 430, "right": 3215, "bottom": 2020, "left": 825}, {"solidity": 0.995051129489368, "top": 2250, "right": 3220, "bottom": 3840, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718889f.jpg"} -{"rects": [{"solidity": 0.9971183235423432, "top": 655, "right": 2630, "bottom": 3685, "left": 275}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507551.jpg"} -{"rects": [{"solidity": 0.9971183641782404, "top": 810, "right": 2055, "bottom": 3210, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733464f.jpg"} -{"rects": [{"solidity": 0.9971185203432463, "top": 730, "right": 2325, "bottom": 3535, "left": 330}, {"solidity": 0.9966251723572689, "top": 925, "right": 4155, "bottom": 3345, "left": 2535}, {"solidity": 0.9960566550669706, "top": 1035, "right": 5760, "bottom": 3230, "left": 4370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722521f.jpg"} -{"rects": [{"solidity": 0.9971185347946792, "top": 675, "right": 3305, "bottom": 2510, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713360f.jpg"} -{"rects": [{"solidity": 0.9971188111304875, "top": 2230, "right": 3185, "bottom": 3875, "left": 755}, {"solidity": 0.9979457473141603, "top": 400, "right": 3190, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734597f.jpg"} -{"rects": [{"solidity": 0.9971189144548422, "top": 350, "right": 2680, "bottom": 3365, "left": 215}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507515.jpg"} -{"rects": [{"solidity": 0.9971190392538887, "top": 905, "right": 3885, "bottom": 3330, "left": 2250}, {"solidity": 0.9967413494419722, "top": 885, "right": 2005, "bottom": 3310, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726668f.jpg"} -{"rects": [{"solidity": 0.9971190853337892, "top": 420, "right": 3150, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718774f.jpg"} -{"rects": [{"solidity": 0.997119105731754, "top": 345, "right": 3505, "bottom": 2750, "left": 465}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509467.jpg"} -{"rects": [{"solidity": 0.9971191655868896, "top": 800, "right": 3875, "bottom": 3220, "left": 2245}, {"solidity": 0.9965361053075494, "top": 825, "right": 5720, "bottom": 3245, "left": 4085}, {"solidity": 0.9968996453969423, "top": 790, "right": 2015, "bottom": 3210, "left": 395}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712699f.jpg"} -{"rects": [{"solidity": 0.9971193271866275, "top": 415, "right": 3400, "bottom": 2050, "left": 970}, {"solidity": 0.9968980944066567, "top": 2110, "right": 3380, "bottom": 3750, "left": 970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704532f.jpg"} -{"rects": [{"solidity": 0.9971193381638122, "top": 770, "right": 4840, "bottom": 3410, "left": 1365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701014f.jpg"} -{"rects": [{"solidity": 0.9971193772459706, "top": 445, "right": 3170, "bottom": 2065, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706843f.jpg"} -{"rects": [{"solidity": 0.9971193898690084, "top": 485, "right": 2985, "bottom": 2130, "left": 555}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705039f.jpg"} -{"rects": [{"solidity": 0.9971194659765639, "top": 360, "right": 3365, "bottom": 2275, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713056f.jpg"} -{"rects": [{"solidity": 0.9971196130585146, "top": 380, "right": 5365, "bottom": 3650, "left": 1310}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732580f.jpg"} -{"rects": [{"solidity": 0.9971196706175479, "top": 1550, "right": 2930, "bottom": 4560, "left": 1035}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721415f.jpg"} -{"rects": [{"solidity": 0.9971197249290363, "top": 1080, "right": 3660, "bottom": 4955, "left": 555}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718292f.jpg"} -{"rects": [{"solidity": 0.9971197696576434, "top": 485, "right": 5080, "bottom": 3765, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731463f.jpg"} -{"rects": [{"solidity": 0.9971199928240089, "top": 890, "right": 3800, "bottom": 3310, "left": 2170}, {"solidity": 0.9962300843253146, "top": 870, "right": 1935, "bottom": 3270, "left": 345}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709274f.jpg"} -{"rects": [{"solidity": 0.9971200136144811, "top": 800, "right": 2020, "bottom": 3205, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730307f.jpg"} -{"rects": [{"solidity": 0.9971201189696594, "top": 930, "right": 3660, "bottom": 5040, "left": 410}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722973f.jpg"} -{"rects": [{"solidity": 0.9971201230798817, "top": 805, "right": 2255, "bottom": 3355, "left": 200}], "shape": {"h": 3950, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/720631f.jpg"} -{"rects": [{"solidity": 0.9971202842589469, "top": 1610, "right": 3535, "bottom": 5685, "left": 315}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700431f.jpg"} -{"rects": [{"solidity": 0.9971203687923216, "top": 1080, "right": 3405, "bottom": 4950, "left": 275}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713390f.jpg"} -{"rects": [{"solidity": 0.9971204112593852, "top": 395, "right": 3145, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701553f.jpg"} -{"rects": [{"solidity": 0.997120417995433, "top": 795, "right": 3965, "bottom": 3200, "left": 2355}, {"solidity": 0.9960665826837782, "top": 805, "right": 2105, "bottom": 3210, "left": 505}, {"solidity": 0.995679975201079, "top": 795, "right": 5805, "bottom": 3200, "left": 4215}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717917f.jpg"} -{"rects": [{"solidity": 0.99712046147923, "top": 975, "right": 3625, "bottom": 5090, "left": 380}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/732277f.jpg"} -{"rects": [{"solidity": 0.9971205730891757, "top": 405, "right": 3200, "bottom": 1990, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717727f.jpg"} -{"rects": [{"solidity": 0.997120645893652, "top": 290, "right": 3155, "bottom": 1925, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702541f.jpg"} -{"rects": [{"solidity": 0.9971207310613324, "top": 390, "right": 3260, "bottom": 2000, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725036f.jpg"} -{"rects": [{"solidity": 0.997120733674064, "top": 410, "right": 5150, "bottom": 3690, "left": 1130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725384f.jpg"} -{"rects": [{"solidity": 0.9971207372772034, "top": 465, "right": 5005, "bottom": 3695, "left": 985}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722934f.jpg"} -{"rects": [{"solidity": 0.9971207718157096, "top": 455, "right": 5085, "bottom": 3635, "left": 1105}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718534f.jpg"} -{"rects": [{"solidity": 0.9971208196516096, "top": 390, "right": 3340, "bottom": 2025, "left": 930}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705425f.jpg"} -{"rects": [{"solidity": 0.9971208802491529, "top": 510, "right": 2865, "bottom": 2060, "left": 950}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720194f.jpg"} -{"rects": [{"solidity": 0.9971212712879084, "top": 405, "right": 3205, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705448f.jpg"} -{"rects": [{"solidity": 0.9971212837618073, "top": 1165, "right": 3595, "bottom": 5165, "left": 340}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724004f.jpg"} -{"rects": [{"solidity": 0.9971214203002665, "top": 830, "right": 2285, "bottom": 3570, "left": 445}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711321f.jpg"} -{"rects": [{"solidity": 0.9971214342265462, "top": 645, "right": 4970, "bottom": 3645, "left": 1185}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709887f.jpg"} -{"rects": [{"solidity": 0.9971215861523901, "top": 480, "right": 3125, "bottom": 2085, "left": 715}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708155f.jpg"} -{"rects": [{"solidity": 0.9971216033982171, "top": 495, "right": 4970, "bottom": 3605, "left": 1085}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711467f.jpg"} -{"rects": [{"solidity": 0.9971217410082609, "top": 360, "right": 3125, "bottom": 1975, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728366f.jpg"} -{"rects": [{"solidity": 0.9971218438619482, "top": 865, "right": 3545, "bottom": 4900, "left": 270}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708608f.jpg"} -{"rects": [{"solidity": 0.9971218574153976, "top": 880, "right": 2400, "bottom": 3605, "left": 575}], "shape": {"h": 4410, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/711012f.jpg"} -{"rects": [{"solidity": 0.9971218820388754, "top": 805, "right": 3860, "bottom": 3230, "left": 2240}, {"solidity": 0.9955378496287427, "top": 820, "right": 5700, "bottom": 3245, "left": 4070}, {"solidity": 0.998434160484022, "top": 810, "right": 2020, "bottom": 3230, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731651f.jpg"} -{"rects": [{"solidity": 0.9971218897841215, "top": 600, "right": 3345, "bottom": 2640, "left": 275}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719644f.jpg"} -{"rects": [{"solidity": 0.997122071180386, "top": 450, "right": 5220, "bottom": 3695, "left": 1205}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701336f.jpg"} -{"rects": [{"solidity": 0.997122373958316, "top": 420, "right": 3220, "bottom": 2005, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725635f.jpg"} -{"rects": [{"solidity": 0.9971225180902916, "top": 2285, "right": 3190, "bottom": 3885, "left": 780}, {"solidity": 0.9969560985806013, "top": 425, "right": 3180, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724211f.jpg"} -{"rects": [{"solidity": 0.9971226556117737, "top": 475, "right": 5090, "bottom": 3755, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730046f.jpg"} -{"rects": [{"solidity": 0.99712285788177, "top": 310, "right": 4005, "bottom": 2765, "left": 985}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509305.jpg"} -{"rects": [{"solidity": 0.9971229293809939, "top": 420, "right": 3145, "bottom": 2020, "left": 785}, {"solidity": 0.9963414838807122, "top": 4060, "right": 3145, "bottom": 5665, "left": 780}, {"solidity": 0.9957866964604212, "top": 2235, "right": 3155, "bottom": 3820, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731607f.jpg"} -{"rects": [{"solidity": 0.9971230851884122, "top": 750, "right": 4765, "bottom": 3375, "left": 1325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701485f.jpg"} -{"rects": [{"solidity": 0.9971230950115493, "top": 420, "right": 3160, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715342f.jpg"} -{"rects": [{"solidity": 0.9971234193893602, "top": 1005, "right": 3455, "bottom": 3075, "left": 425}, {"solidity": 0.9962793751538861, "top": 3465, "right": 3495, "bottom": 5425, "left": 440}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/706354f.jpg"} -{"rects": [{"solidity": 0.9971236558233324, "top": 410, "right": 3185, "bottom": 1985, "left": 810}, {"solidity": 0.9885402076260695, "top": 2265, "right": 3180, "bottom": 3850, "left": 815}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724686f.jpg"} -{"rects": [{"solidity": 0.997123686357603, "top": 850, "right": 3180, "bottom": 2720, "left": 405}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703195f.jpg"} -{"rects": [{"solidity": 0.9971237745374958, "top": 435, "right": 3085, "bottom": 2055, "left": 675}, {"solidity": 0.9969505977411116, "top": 2315, "right": 3090, "bottom": 3930, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731365f.jpg"} -{"rects": [{"solidity": 0.9971238718635327, "top": 360, "right": 3175, "bottom": 1940, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730148f.jpg"} -{"rects": [{"solidity": 0.9971240365686285, "top": 430, "right": 3195, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713484f.jpg"} -{"rects": [{"solidity": 0.9971241427733266, "top": 760, "right": 2045, "bottom": 3185, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733287f.jpg"} -{"rects": [{"solidity": 0.9971241463016974, "top": 675, "right": 4200, "bottom": 3035, "left": 1840}, {"solidity": 0.9463203348433984, "top": 3465, "right": 2300, "bottom": 5505, "left": 375}, {"solidity": 0.955299864128098, "top": 3385, "right": 4305, "bottom": 5465, "left": 2475}], "shape": {"h": 5995, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/464757.jpg"} -{"rects": [{"solidity": 0.9971242198335645, "top": 710, "right": 3240, "bottom": 2770, "left": 405}, {"solidity": 0.997293761039754, "top": 3385, "right": 3230, "bottom": 5430, "left": 400}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733810f.jpg"} -{"rects": [{"solidity": 0.9971242404555356, "top": 775, "right": 2050, "bottom": 3205, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703995f.jpg"} -{"rects": [{"solidity": 0.9971244033957474, "top": 870, "right": 3395, "bottom": 2870, "left": 320}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709696f.jpg"} -{"rects": [{"solidity": 0.997124416246337, "top": 595, "right": 3355, "bottom": 2630, "left": 285}, {"solidity": 0.9953778494323076, "top": 2640, "right": 3080, "bottom": 4280, "left": 665}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/720413f.jpg"} -{"rects": [{"solidity": 0.9971244576619238, "top": 2060, "right": 3220, "bottom": 3700, "left": 790}, {"solidity": 0.9972524407696991, "top": 340, "right": 3195, "bottom": 1975, "left": 770}, {"solidity": 0.9979209045348666, "top": 340, "right": 5710, "bottom": 1965, "left": 3295}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707947f.jpg"} -{"rects": [{"solidity": 0.9971246027197416, "top": 440, "right": 3170, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730002f.jpg"} -{"rects": [{"solidity": 0.9971247506161248, "top": 725, "right": 2000, "bottom": 3130, "left": 395}, {"solidity": 0.9960614517853883, "top": 720, "right": 3840, "bottom": 3125, "left": 2235}, {"solidity": 0.9972501720690898, "top": 725, "right": 5680, "bottom": 3130, "left": 4080}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731624f.jpg"} -{"rects": [{"solidity": 0.9971248401371051, "top": 555, "right": 4845, "bottom": 3665, "left": 990}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718082f.jpg"} -{"rects": [{"solidity": 0.9971251269762718, "top": 305, "right": 3180, "bottom": 1930, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706585f.jpg"} -{"rects": [{"solidity": 0.9971251806733011, "top": 440, "right": 3060, "bottom": 2075, "left": 635}, {"solidity": 0.9949148094573663, "top": 2340, "right": 3065, "bottom": 3985, "left": 625}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718783f.jpg"} -{"rects": [{"solidity": 0.9971257665991085, "top": 2270, "right": 3185, "bottom": 3870, "left": 785}, {"solidity": 0.9972133456012083, "top": 510, "right": 3180, "bottom": 2105, "left": 785}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/726951f.jpg"} -{"rects": [{"solidity": 0.9971258695267504, "top": 1065, "right": 3500, "bottom": 4965, "left": 325}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713225f.jpg"} -{"rects": [{"solidity": 0.997125984768047, "top": 770, "right": 2010, "bottom": 3170, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713365f.jpg"} -{"rects": [{"solidity": 0.9971264367816092, "top": 785, "right": 5675, "bottom": 3210, "left": 4055}, {"solidity": 0.997223700120919, "top": 785, "right": 2035, "bottom": 3200, "left": 420}, {"solidity": 0.9971926122059489, "top": 785, "right": 3850, "bottom": 3200, "left": 2250}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732122f.jpg"} -{"rects": [{"solidity": 0.9971267024920405, "top": 480, "right": 5075, "bottom": 3700, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730922f.jpg"} -{"rects": [{"solidity": 0.9971268034029263, "top": 655, "right": 2700, "bottom": 2045, "left": 920}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726598f.jpg"} -{"rects": [{"solidity": 0.9971270166133387, "top": 570, "right": 3165, "bottom": 2200, "left": 745}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703267f.jpg"} -{"rects": [{"solidity": 0.9971271462237684, "top": 490, "right": 3515, "bottom": 2120, "left": 1095}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700563f.jpg"} -{"rects": [{"solidity": 0.9971271527286965, "top": 575, "right": 3445, "bottom": 2390, "left": 720}], "shape": {"h": 4420, "w": 6925}, "file": "/usr/local/google/home/danvk/milstein/702236f.jpg"} -{"rects": [{"solidity": 0.9971272118681247, "top": 425, "right": 3200, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719932f.jpg"} -{"rects": [{"solidity": 0.9971272181682657, "top": 630, "right": 3880, "bottom": 3060, "left": 2255}, {"solidity": 0.9960303081283243, "top": 620, "right": 2000, "bottom": 3045, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734166f.jpg"} -{"rects": [{"solidity": 0.9971272532671392, "top": 875, "right": 2680, "bottom": 3880, "left": 270}], "shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508959.jpg"} -{"rects": [{"solidity": 0.997127323205059, "top": 420, "right": 3105, "bottom": 2040, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729608f.jpg"} -{"rects": [{"solidity": 0.9971274273239112, "top": 930, "right": 2035, "bottom": 3355, "left": 400}, {"solidity": 0.9969005742770148, "top": 945, "right": 3905, "bottom": 3355, "left": 2270}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724409f.jpg"} -{"rects": [{"solidity": 0.9971275082951493, "top": 820, "right": 2045, "bottom": 3260, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711579f.jpg"} -{"rects": [{"solidity": 0.9971275542755323, "top": 490, "right": 4865, "bottom": 3775, "left": 820}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706054f.jpg"} -{"rects": [{"solidity": 0.9971276317952785, "top": 440, "right": 3190, "bottom": 2070, "left": 780}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712113f.jpg"} -{"rects": [{"solidity": 0.9971276793529236, "top": 540, "right": 4935, "bottom": 3640, "left": 1055}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714710f.jpg"} -{"rects": [{"solidity": 0.9971278713182616, "top": 815, "right": 2055, "bottom": 3230, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721256f.jpg"} -{"rects": [{"solidity": 0.9971279204853492, "top": 430, "right": 3170, "bottom": 2050, "left": 755}, {"solidity": 0.9974262970363617, "top": 2275, "right": 3165, "bottom": 3885, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723034f.jpg"} -{"rects": [{"solidity": 0.997128229924563, "top": 810, "right": 3895, "bottom": 3220, "left": 2295}, {"solidity": 0.9968404682000491, "top": 815, "right": 2065, "bottom": 3220, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732379f.jpg"} -{"rects": [{"solidity": 0.997128371371777, "top": 435, "right": 3200, "bottom": 2065, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733934f.jpg"} -{"rects": [{"solidity": 0.9971285065661698, "top": 765, "right": 2005, "bottom": 3170, "left": 370}, {"solidity": 0.9990687417342745, "top": 795, "right": 3830, "bottom": 3195, "left": 2210}, {"solidity": 0.9980736038476208, "top": 805, "right": 5675, "bottom": 3210, "left": 4055}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722579f.jpg"} -{"rects": [{"solidity": 0.9971286235627922, "top": 3200, "right": 3285, "bottom": 5125, "left": 585}, {"solidity": 0.9956506261760038, "top": 710, "right": 3270, "bottom": 2520, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713313f.jpg"} -{"rects": [{"solidity": 0.9971286627955365, "top": 755, "right": 5715, "bottom": 3185, "left": 4090}, {"solidity": 0.997091160716574, "top": 735, "right": 1980, "bottom": 3165, "left": 360}, {"solidity": 0.9965186581718892, "top": 755, "right": 3855, "bottom": 3165, "left": 2240}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723241f.jpg"} -{"rects": [{"solidity": 0.9971289561154199, "top": 2090, "right": 3190, "bottom": 3715, "left": 775}, {"solidity": 0.9972410544012442, "top": 370, "right": 3165, "bottom": 1990, "left": 750}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714928f.jpg"} -{"rects": [{"solidity": 0.997129125484999, "top": 705, "right": 3870, "bottom": 3125, "left": 2240}, {"solidity": 0.995844268034895, "top": 710, "right": 2025, "bottom": 3120, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725175f.jpg"} -{"rects": [{"solidity": 0.9971291460188106, "top": 755, "right": 3815, "bottom": 3160, "left": 2210}, {"solidity": 0.998147995855195, "top": 760, "right": 2010, "bottom": 3160, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714317f.jpg"} -{"rects": [{"solidity": 0.997129156791653, "top": 3285, "right": 3180, "bottom": 5210, "left": 445}, {"solidity": 0.9949432804625212, "top": 725, "right": 3200, "bottom": 2660, "left": 475}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/717768f.jpg"} -{"rects": [{"solidity": 0.9971292040848816, "top": 740, "right": 3090, "bottom": 2575, "left": 455}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714352f.jpg"} -{"rects": [{"solidity": 0.9971292562217473, "top": 2700, "right": 3460, "bottom": 4805, "left": 405}, {"solidity": 0.9941576575239942, "top": 540, "right": 3150, "bottom": 2145, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709286f.jpg"} -{"rects": [{"solidity": 0.9971292579164115, "top": 810, "right": 2045, "bottom": 3220, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712726f.jpg"} -{"rects": [{"solidity": 0.99712934006896, "top": 420, "right": 3165, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701991f.jpg"} -{"rects": [{"solidity": 0.9971293560935182, "top": 425, "right": 3160, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715054f.jpg"} -{"rects": [{"solidity": 0.9971293683001162, "top": 385, "right": 3100, "bottom": 2010, "left": 685}, {"solidity": 0.9967256859623453, "top": 2270, "right": 3090, "bottom": 3890, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709353f.jpg"} -{"rects": [{"solidity": 0.9971295440693628, "top": 835, "right": 2030, "bottom": 3235, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712688f.jpg"} -{"rects": [{"solidity": 0.9971298938393544, "top": 475, "right": 5090, "bottom": 3680, "left": 1065}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722734f.jpg"} -{"rects": [{"solidity": 0.9971299266727772, "top": 410, "right": 5105, "bottom": 3660, "left": 1015}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/711544f.jpg"} -{"rects": [{"solidity": 0.9971300882939217, "top": 530, "right": 3875, "bottom": 2620, "left": 930}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517087.jpg"} -{"rects": [{"solidity": 0.9971301108172553, "top": 665, "right": 3695, "bottom": 2510, "left": 950}], "shape": {"h": 4440, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706436f.jpg"} -{"rects": [{"solidity": 0.9971301405199325, "top": 475, "right": 3100, "bottom": 3625, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715019f.jpg"} -{"rects": [{"solidity": 0.9971301812162565, "top": 420, "right": 2750, "bottom": 3655, "left": 690}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733036f.jpg"} -{"rects": [{"solidity": 0.997130219679936, "top": 440, "right": 2665, "bottom": 3655, "left": 635}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733015f.jpg"} -{"rects": [{"solidity": 0.9971302449610003, "top": 450, "right": 3180, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704058f.jpg"} -{"rects": [{"solidity": 0.9971306648622943, "top": 850, "right": 3905, "bottom": 3270, "left": 2275}, {"solidity": 0.9966601153544774, "top": 830, "right": 2040, "bottom": 3250, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712524f.jpg"} -{"rects": [{"solidity": 0.9971307144932877, "top": 615, "right": 5070, "bottom": 3445, "left": 1070}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718319f.jpg"} -{"rects": [{"solidity": 0.9971308121431856, "top": 395, "right": 3230, "bottom": 2010, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718074f.jpg"} -{"rects": [{"solidity": 0.9971308829905101, "top": 375, "right": 5255, "bottom": 3625, "left": 1240}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726707f.jpg"} -{"rects": [{"solidity": 0.9971312163914925, "top": 445, "right": 5730, "bottom": 4170, "left": 1245}], "shape": {"h": 4430, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708399f.jpg"} -{"rects": [{"solidity": 0.9971314546290668, "top": 360, "right": 3210, "bottom": 1980, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719889f.jpg"} -{"rects": [{"solidity": 0.9971316865024565, "top": 500, "right": 3505, "bottom": 2585, "left": 1105}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508079.jpg"} -{"rects": [{"solidity": 0.9971317539923076, "top": 495, "right": 5095, "bottom": 3780, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707837f.jpg"} -{"rects": [{"solidity": 0.9971317868464751, "top": 425, "right": 3165, "bottom": 1995, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710534f.jpg"} -{"rects": [{"solidity": 0.9971318246497547, "top": 2255, "right": 3180, "bottom": 3880, "left": 740}, {"solidity": 0.9997739645963977, "top": 435, "right": 3175, "bottom": 2040, "left": 750}, {"solidity": 0.9992878645647881, "top": 4075, "right": 3175, "bottom": 5680, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701713f.jpg"} -{"rects": [{"solidity": 0.9971318688481846, "top": 2290, "right": 3220, "bottom": 3900, "left": 820}, {"solidity": 0.9965915914925068, "top": 515, "right": 3220, "bottom": 2120, "left": 835}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710758f.jpg"} -{"rects": [{"solidity": 0.9971318703006921, "top": 2265, "right": 3025, "bottom": 3895, "left": 595}, {"solidity": 0.9959493815886188, "top": 405, "right": 3030, "bottom": 2045, "left": 600}, {"solidity": 0.9978540841263079, "top": 4105, "right": 3010, "bottom": 5735, "left": 595}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707081f.jpg"} -{"rects": [{"solidity": 0.9971318889820412, "top": 2115, "right": 2890, "bottom": 3745, "left": 960}, {"solidity": 0.997279866085715, "top": 425, "right": 5025, "bottom": 2045, "left": 3125}, {"solidity": 0.996325924704136, "top": 2120, "right": 5035, "bottom": 3715, "left": 3110}, {"solidity": 0.9961829447810756, "top": 465, "right": 2895, "bottom": 2005, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719578f.jpg"} -{"rects": [{"solidity": 0.9971320565962698, "top": 470, "right": 3295, "bottom": 2510, "left": 270}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714937f.jpg"} -{"rects": [{"solidity": 0.9971321014073947, "top": 340, "right": 3085, "bottom": 1990, "left": 635}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700024f.jpg"} -{"rects": [{"solidity": 0.9971321755135797, "top": 485, "right": 5085, "bottom": 3685, "left": 1035}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722813f.jpg"} -{"rects": [{"solidity": 0.9971322081996863, "top": 440, "right": 3210, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734716f.jpg"} -{"rects": [{"solidity": 0.9971323543563194, "top": 370, "right": 3205, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701832f.jpg"} -{"rects": [{"solidity": 0.99713251175928, "top": 1435, "right": 3390, "bottom": 4820, "left": 765}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/734432f.jpg"} -{"rects": [{"solidity": 0.9971325929692755, "top": 790, "right": 2020, "bottom": 3190, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730374f.jpg"} -{"rects": [{"solidity": 0.9971327249089295, "top": 465, "right": 2980, "bottom": 2090, "left": 565}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704376f.jpg"} -{"rects": [{"solidity": 0.9971328693755813, "top": 720, "right": 2010, "bottom": 3145, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707010f.jpg"} -{"rects": [{"solidity": 0.9971330778457128, "top": 895, "right": 3140, "bottom": 2725, "left": 530}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709981f.jpg"} -{"rects": [{"solidity": 0.9971335319994323, "top": 735, "right": 3830, "bottom": 3175, "left": 2185}, {"solidity": 0.9936386330377894, "top": 985, "right": 1925, "bottom": 2955, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723234f.jpg"} -{"rects": [{"solidity": 0.9971336713639054, "top": 770, "right": 2045, "bottom": 3200, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703732f.jpg"} -{"rects": [{"solidity": 0.9971337466670536, "top": 310, "right": 3905, "bottom": 2770, "left": 730}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508841.jpg"} -{"rects": [{"solidity": 0.9971338614732543, "top": 450, "right": 3245, "bottom": 2050, "left": 840}, {"solidity": 0.9960785215303619, "top": 2300, "right": 3245, "bottom": 3900, "left": 845}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709708f.jpg"} -{"rects": [{"solidity": 0.9971340689541102, "top": 775, "right": 3920, "bottom": 3200, "left": 2285}, {"solidity": 0.9960886571056062, "top": 760, "right": 2050, "bottom": 3190, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725165f.jpg"} -{"rects": [{"solidity": 0.9971341919623771, "top": 785, "right": 2020, "bottom": 3160, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713749f.jpg"} -{"rects": [{"solidity": 0.9971343121627718, "top": 1050, "right": 3535, "bottom": 5080, "left": 295}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717384f.jpg"} -{"rects": [{"solidity": 0.9971344488412309, "top": 320, "right": 4285, "bottom": 2745, "left": 1260}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517233.jpg"} -{"rects": [{"solidity": 0.9971346256669283, "top": 1325, "right": 3285, "bottom": 4710, "left": 675}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723167f.jpg"} -{"rects": [{"solidity": 0.997134670487106, "top": 2365, "right": 3185, "bottom": 3985, "left": 775}, {"solidity": 0.9991016905729398, "top": 4125, "right": 3170, "bottom": 5735, "left": 760}, {"solidity": 0.9978137981591594, "top": 605, "right": 3185, "bottom": 2215, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733237f.jpg"} -{"rects": [{"solidity": 0.9971350703508512, "top": 720, "right": 3350, "bottom": 2750, "left": 320}, {"solidity": 0.996312429566436, "top": 2910, "right": 3195, "bottom": 4540, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720383f.jpg"} -{"rects": [{"solidity": 0.9971351894232511, "top": 390, "right": 4110, "bottom": 2790, "left": 925}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508801.jpg"} -{"rects": [{"solidity": 0.9971354479421041, "top": 945, "right": 1785, "bottom": 2935, "left": 360}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713649f.jpg"} -{"rects": [{"solidity": 0.9971356778127414, "top": 410, "right": 2385, "bottom": 1625, "left": 580}, {"solidity": 0.9990939082756377, "top": 1740, "right": 2380, "bottom": 2945, "left": 580}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715947f.jpg"} -{"rects": [{"solidity": 0.9971359202128433, "top": 720, "right": 4270, "bottom": 3405, "left": 2325}, {"solidity": 0.993805925502029, "top": 905, "right": 2235, "bottom": 3130, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716824f.jpg"} -{"rects": [{"solidity": 0.9971359895706021, "top": 500, "right": 2150, "bottom": 2585, "left": 665}, {"solidity": 0.9953648923235109, "top": 500, "right": 3940, "bottom": 2590, "left": 2460}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716096f.jpg"} -{"rects": [{"solidity": 0.9971361699805118, "top": 485, "right": 3165, "bottom": 2110, "left": 750}, {"solidity": 0.9974661501134852, "top": 2290, "right": 3160, "bottom": 3895, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708023f.jpg"} -{"rects": [{"solidity": 0.9971362025019775, "top": 715, "right": 3335, "bottom": 2610, "left": 600}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714478f.jpg"} -{"rects": [{"solidity": 0.9971362580653474, "top": 920, "right": 3815, "bottom": 3340, "left": 2195}, {"solidity": 0.9965002876033271, "top": 935, "right": 5680, "bottom": 3355, "left": 4065}, {"solidity": 0.995959484142359, "top": 925, "right": 1955, "bottom": 3340, "left": 345}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734741f.jpg"} -{"rects": [{"solidity": 0.9971363448525233, "top": 420, "right": 3045, "bottom": 2030, "left": 625}, {"solidity": 0.9980006011264587, "top": 2260, "right": 3045, "bottom": 3860, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729702f.jpg"} -{"rects": [{"solidity": 0.9971364969482389, "top": 320, "right": 3185, "bottom": 1920, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724617f.jpg"} -{"rects": [{"solidity": 0.9971366938487285, "top": 470, "right": 3150, "bottom": 2095, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706956f.jpg"} -{"rects": [{"solidity": 0.9971367579828778, "top": 915, "right": 3885, "bottom": 3345, "left": 2250}, {"solidity": 0.9964777498436682, "top": 910, "right": 2020, "bottom": 3340, "left": 385}, {"solidity": 0.9981143753226888, "top": 930, "right": 5740, "bottom": 3350, "left": 4120}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701031f.jpg"} -{"rects": [{"solidity": 0.9971367677073828, "top": 855, "right": 5685, "bottom": 3280, "left": 4070}, {"solidity": 0.9973893042350208, "top": 835, "right": 1975, "bottom": 3255, "left": 365}, {"solidity": 0.9968136871216865, "top": 850, "right": 3820, "bottom": 3265, "left": 2215}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729104f.jpg"} -{"rects": [{"solidity": 0.9971367766910512, "top": 385, "right": 3245, "bottom": 2010, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706627f.jpg"} -{"rects": [{"solidity": 0.9971370740960812, "top": 775, "right": 2045, "bottom": 3200, "left": 410}, {"solidity": 0.9987456355877409, "top": 770, "right": 3865, "bottom": 3180, "left": 2250}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707950f.jpg"} -{"rects": [{"solidity": 0.9971371007051636, "top": 480, "right": 2885, "bottom": 2095, "left": 475}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705429f.jpg"} -{"rects": [{"solidity": 0.9971371279474295, "top": 655, "right": 2790, "bottom": 3710, "left": 730}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718690f.jpg"} -{"rects": [{"solidity": 0.9971373766124646, "top": 2395, "right": 3145, "bottom": 4005, "left": 735}, {"solidity": 0.9963282631532152, "top": 4240, "right": 3140, "bottom": 5840, "left": 735}, {"solidity": 0.9970369588242863, "top": 545, "right": 3140, "bottom": 2140, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731951f.jpg"} -{"rects": [{"solidity": 0.997137526109328, "top": 805, "right": 5720, "bottom": 3240, "left": 4085}, {"solidity": 0.996921056004101, "top": 810, "right": 3880, "bottom": 3235, "left": 2250}, {"solidity": 0.9967371114263344, "top": 810, "right": 2020, "bottom": 3220, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723258f.jpg"} -{"rects": [{"solidity": 0.997137560394594, "top": 475, "right": 2790, "bottom": 2895, "left": 1160}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707824f.jpg"} -{"rects": [{"solidity": 0.9971376372208484, "top": 795, "right": 3925, "bottom": 3230, "left": 2285}, {"solidity": 0.9968657435011208, "top": 790, "right": 2055, "bottom": 3220, "left": 425}, {"solidity": 0.9987600385480244, "top": 790, "right": 5775, "bottom": 3215, "left": 4160}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715394f.jpg"} -{"rects": [{"solidity": 0.9971380728629459, "top": 715, "right": 5690, "bottom": 3145, "left": 4055}, {"solidity": 0.9969409703885934, "top": 695, "right": 3850, "bottom": 3115, "left": 2230}, {"solidity": 0.9935927088767064, "top": 670, "right": 2025, "bottom": 3085, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705350f.jpg"} -{"rects": [{"solidity": 0.9971382372568144, "top": 445, "right": 3175, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703863f.jpg"} -{"rects": [{"solidity": 0.9971382694441406, "top": 465, "right": 5050, "bottom": 3690, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720777f.jpg"} -{"rects": [{"solidity": 0.9971384237148097, "top": 1970, "right": 3035, "bottom": 3390, "left": 830}, {"solidity": 0.9940669520927142, "top": 405, "right": 2945, "bottom": 1745, "left": 875}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/710135f.jpg"} -{"rects": [{"solidity": 0.9971386266052885, "top": 800, "right": 2035, "bottom": 3215, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705825f.jpg"} -{"rects": [{"solidity": 0.9971386967369035, "top": 700, "right": 2245, "bottom": 3130, "left": 615}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704392f.jpg"} -{"rects": [{"solidity": 0.9971391157448595, "top": 690, "right": 3365, "bottom": 2760, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721476f.jpg"} -{"rects": [{"solidity": 0.99713917434643, "top": 395, "right": 3080, "bottom": 2015, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700874f.jpg"} -{"rects": [{"solidity": 0.9971393014723708, "top": 760, "right": 2045, "bottom": 3170, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718787f.jpg"} -{"rects": [{"solidity": 0.9971397090427475, "top": 1340, "right": 3305, "bottom": 4780, "left": 690}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/711096f.jpg"} -{"rects": [{"solidity": 0.9971397104595298, "top": 810, "right": 2040, "bottom": 3245, "left": 420}, {"solidity": 0.9963956119937132, "top": 810, "right": 3840, "bottom": 3245, "left": 2220}, {"solidity": 0.9976150911375886, "top": 825, "right": 5645, "bottom": 3245, "left": 4025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734520f.jpg"} -{"rects": [{"solidity": 0.9971397361388029, "top": 455, "right": 4840, "bottom": 3635, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721446f.jpg"} -{"rects": [{"solidity": 0.9971399492405406, "top": 780, "right": 2060, "bottom": 3200, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704819f.jpg"} -{"rects": [{"solidity": 0.9971399707853817, "top": 485, "right": 3195, "bottom": 2470, "left": 390}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704147f.jpg"} -{"rects": [{"solidity": 0.9971399842378454, "top": 1075, "right": 3240, "bottom": 5105, "left": 360}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708938f.jpg"} -{"rects": [{"solidity": 0.9971401672695852, "top": 2110, "right": 3185, "bottom": 3745, "left": 785}, {"solidity": 0.9971985780908587, "top": 275, "right": 3185, "bottom": 1900, "left": 805}, {"solidity": 0.9995659836388984, "top": 3975, "right": 3165, "bottom": 5595, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702294f.jpg"} -{"rects": [{"solidity": 0.9971402565377092, "top": 405, "right": 3205, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725634f.jpg"} -{"rects": [{"solidity": 0.9971403972389355, "top": 385, "right": 5420, "bottom": 3565, "left": 1440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733403f.jpg"} -{"rects": [{"solidity": 0.9971404144924972, "top": 420, "right": 3185, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712690f.jpg"} -{"rects": [{"solidity": 0.9971405723239808, "top": 425, "right": 5180, "bottom": 3705, "left": 1155}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725395f.jpg"} -{"rects": [{"solidity": 0.9971406813512077, "top": 665, "right": 2465, "bottom": 3710, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718124f.jpg"} -{"rects": [{"solidity": 0.9971406834906461, "top": 530, "right": 3285, "bottom": 2460, "left": 475}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704145f.jpg"} -{"rects": [{"solidity": 0.9971407084010919, "top": 380, "right": 3340, "bottom": 2285, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708265f.jpg"} -{"rects": [{"solidity": 0.9971407254085538, "top": 2090, "right": 5215, "bottom": 3510, "left": 3370}, {"solidity": 0.9983717604313627, "top": 2125, "right": 2745, "bottom": 3545, "left": 910}, {"solidity": 0.9969101177926926, "top": 640, "right": 2740, "bottom": 2070, "left": 915}, {"solidity": 0.9967515073590291, "top": 610, "right": 5225, "bottom": 2030, "left": 3400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704299f.jpg"} -{"rects": [{"solidity": 0.9971407339603049, "top": 725, "right": 2775, "bottom": 2145, "left": 970}, {"solidity": 0.9969896264832726, "top": 2220, "right": 2780, "bottom": 3615, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725105f.jpg"} -{"rects": [{"solidity": 0.9971410221235627, "top": 705, "right": 3915, "bottom": 3110, "left": 2230}, {"solidity": 0.9911058577324782, "top": 705, "right": 5790, "bottom": 3115, "left": 4160}, {"solidity": 0.9935268681970529, "top": 715, "right": 2065, "bottom": 3130, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702125f.jpg"} -{"rects": [{"solidity": 0.9971410905289461, "top": 565, "right": 3155, "bottom": 2200, "left": 730}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707271f.jpg"} -{"rects": [{"solidity": 0.9971411196330733, "top": 380, "right": 5270, "bottom": 3605, "left": 1205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734659f.jpg"} -{"rects": [{"solidity": 0.9971411505032534, "top": 725, "right": 3800, "bottom": 3140, "left": 2165}, {"solidity": 0.9973002406307264, "top": 730, "right": 1915, "bottom": 3120, "left": 300}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707919f.jpg"} -{"rects": [{"solidity": 0.997141173575767, "top": 3430, "right": 3295, "bottom": 5035, "left": 870}, {"solidity": 0.9968964141746635, "top": 995, "right": 3240, "bottom": 2610, "left": 830}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730957f.jpg"} -{"rects": [{"solidity": 0.9971412180896835, "top": 405, "right": 3240, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705740f.jpg"} -{"rects": [{"solidity": 0.9971412291412292, "top": 1955, "right": 3110, "bottom": 3560, "left": 695}, {"solidity": 0.995964737707951, "top": 425, "right": 2815, "bottom": 1825, "left": 1005}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726100f.jpg"} -{"rects": [{"solidity": 0.9971413401708074, "top": 445, "right": 3130, "bottom": 2060, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719206f.jpg"} -{"rects": [{"solidity": 0.9971413851305889, "top": 380, "right": 3035, "bottom": 3620, "left": 1010}, {"solidity": 0.9992396493895968, "top": 400, "right": 5485, "bottom": 3630, "left": 3470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724973f.jpg"} -{"rects": [{"solidity": 0.997141686270907, "top": 1130, "right": 3425, "bottom": 5085, "left": 335}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723728f.jpg"} -{"rects": [{"solidity": 0.997141758942737, "top": 545, "right": 5305, "bottom": 2160, "left": 3395}, {"solidity": 0.9936271518568495, "top": 2255, "right": 5325, "bottom": 3775, "left": 3385}, {"solidity": 0.9969943616857901, "top": 595, "right": 2850, "bottom": 1915, "left": 1105}, {"solidity": 0.9913070091285232, "top": 2200, "right": 2820, "bottom": 3505, "left": 1170}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706745f.jpg"} -{"rects": [{"solidity": 0.9971418294236023, "top": 370, "right": 3120, "bottom": 1980, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729522f.jpg"} -{"rects": [{"solidity": 0.9971418980794989, "top": 360, "right": 2990, "bottom": 1980, "left": 595}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721126f.jpg"} -{"rects": [{"solidity": 0.9971422505307855, "top": 425, "right": 3035, "bottom": 1975, "left": 1115}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702176f.jpg"} -{"rects": [{"solidity": 0.9971423572636613, "top": 3440, "right": 3450, "bottom": 5615, "left": 2060}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721194f.jpg"} -{"rects": [{"solidity": 0.9971424440607911, "top": 870, "right": 3605, "bottom": 4985, "left": 360}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/701859f.jpg"} -{"rects": [{"solidity": 0.9971425038544319, "top": 975, "right": 3570, "bottom": 5010, "left": 335}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/733377f.jpg"} -{"rects": [{"solidity": 0.997142665504058, "top": 775, "right": 1995, "bottom": 3155, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713145f.jpg"} -{"rects": [{"solidity": 0.9971427463250029, "top": 375, "right": 3240, "bottom": 1990, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703052f.jpg"} -{"rects": [{"solidity": 0.9971427813390967, "top": 635, "right": 2560, "bottom": 3685, "left": 530}, {"solidity": 0.9992833366531205, "top": 660, "right": 4760, "bottom": 3695, "left": 2745}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715518f.jpg"} -{"rects": [{"solidity": 0.9971427837633069, "top": 800, "right": 2040, "bottom": 3220, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705696f.jpg"} -{"rects": [{"solidity": 0.9971430437195938, "top": 4040, "right": 3235, "bottom": 5645, "left": 825}, {"solidity": 0.9956636457496846, "top": 2310, "right": 3230, "bottom": 3915, "left": 820}, {"solidity": 0.9954706874708713, "top": 575, "right": 3230, "bottom": 2185, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733165f.jpg"} -{"rects": [{"solidity": 0.997143053281472, "top": 710, "right": 3910, "bottom": 3235, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717316f.jpg"} -{"rects": [{"solidity": 0.9971431845886165, "top": 655, "right": 2515, "bottom": 3675, "left": 515}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720109f.jpg"} -{"rects": [{"solidity": 0.9971431949561733, "top": 705, "right": 3870, "bottom": 3135, "left": 2240}, {"solidity": 0.9953688495552421, "top": 710, "right": 2030, "bottom": 3135, "left": 395}, {"solidity": 0.99629300503347, "top": 715, "right": 5725, "bottom": 3130, "left": 4110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732295f.jpg"} -{"rects": [{"solidity": 0.9971434269868945, "top": 820, "right": 3870, "bottom": 3245, "left": 2255}, {"solidity": 0.998135711164695, "top": 825, "right": 2045, "bottom": 3240, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710578f.jpg"} -{"rects": [{"solidity": 0.9971438889071271, "top": 840, "right": 2065, "bottom": 3235, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709344f.jpg"} -{"rects": [{"solidity": 0.997144008494416, "top": 925, "right": 2035, "bottom": 3350, "left": 405}, {"solidity": 0.9965545768650542, "top": 940, "right": 3935, "bottom": 3355, "left": 2320}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709298f.jpg"} -{"rects": [{"solidity": 0.9971442537755023, "top": 425, "right": 3115, "bottom": 2055, "left": 695}, {"solidity": 0.9976916991946884, "top": 2280, "right": 3110, "bottom": 3895, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709355f.jpg"} -{"rects": [{"solidity": 0.997144317093995, "top": 745, "right": 2005, "bottom": 3165, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711528f.jpg"} -{"rects": [{"solidity": 0.9971443704214207, "top": 830, "right": 3930, "bottom": 3255, "left": 2300}, {"solidity": 0.9969746498734096, "top": 850, "right": 5780, "bottom": 3280, "left": 4150}, {"solidity": 0.9979875955649453, "top": 815, "right": 2040, "bottom": 3225, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731664f.jpg"} -{"rects": [{"solidity": 0.9971445284906284, "top": 405, "right": 5090, "bottom": 3665, "left": 1085}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722752f.jpg"} -{"rects": [{"solidity": 0.9971446053436671, "top": 435, "right": 3165, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/711090f.jpg"} -{"rects": [{"solidity": 0.9971446499423225, "top": 2180, "right": 3305, "bottom": 3830, "left": 880}, {"solidity": 0.9983567063928908, "top": 430, "right": 3340, "bottom": 2055, "left": 915}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704948f.jpg"} -{"rects": [{"solidity": 0.9971447551595791, "top": 1095, "right": 3910, "bottom": 5660, "left": 225}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/703429f.jpg"} -{"rects": [{"solidity": 0.9971449304338951, "top": 1210, "right": 3315, "bottom": 4705, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708720f.jpg"} -{"rects": [{"solidity": 0.9971449646887578, "top": 935, "right": 3515, "bottom": 4925, "left": 315}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713010f.jpg"} -{"rects": [{"solidity": 0.9971450487474665, "top": 470, "right": 5030, "bottom": 3635, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720864f.jpg"} -{"rects": [{"solidity": 0.9971452159987267, "top": 740, "right": 2005, "bottom": 3130, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711848f.jpg"} -{"rects": [{"solidity": 0.9971455309425198, "top": 910, "right": 3575, "bottom": 5020, "left": 310}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732291f.jpg"} -{"rects": [{"solidity": 0.9971455552217023, "top": 545, "right": 4910, "bottom": 3500, "left": 1145}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730324f.jpg"} -{"rects": [{"solidity": 0.997145618268043, "top": 705, "right": 3805, "bottom": 3125, "left": 2175}, {"solidity": 0.9985936112673766, "top": 720, "right": 1980, "bottom": 3085, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711759f.jpg"} -{"rects": [{"solidity": 0.9971460292580983, "top": 405, "right": 3190, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716673f.jpg"} -{"rects": [{"solidity": 0.9971461280295889, "top": 425, "right": 3205, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704329f.jpg"} -{"rects": [{"solidity": 0.9971461410864255, "top": 415, "right": 3155, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732530f.jpg"} -{"rects": [{"solidity": 0.9971464082191027, "top": 505, "right": 5035, "bottom": 3805, "left": 995}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712460f.jpg"} -{"rects": [{"solidity": 0.9971464785985895, "top": 815, "right": 3890, "bottom": 3220, "left": 2275}, {"solidity": 0.9965569570680286, "top": 800, "right": 2050, "bottom": 3205, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710091f.jpg"} -{"rects": [{"solidity": 0.9971468483546606, "top": 370, "right": 3085, "bottom": 1965, "left": 685}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724658f.jpg"} -{"rects": [{"solidity": 0.9971468918412635, "top": 430, "right": 3210, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704629f.jpg"} -{"rects": [{"solidity": 0.9971472241396312, "top": 480, "right": 5100, "bottom": 3630, "left": 1055}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700548f.jpg"} -{"rects": [{"solidity": 0.9971473830620234, "top": 740, "right": 2065, "bottom": 3160, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722507f.jpg"} -{"rects": [{"solidity": 0.9971473984144317, "top": 440, "right": 3325, "bottom": 2050, "left": 905}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725497f.jpg"} -{"rects": [{"solidity": 0.9971476536893437, "top": 335, "right": 3205, "bottom": 1960, "left": 780}, {"solidity": 0.9938871087010106, "top": 2200, "right": 3195, "bottom": 3815, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710786f.jpg"} -{"rects": [{"solidity": 0.9971476881515159, "top": 815, "right": 2060, "bottom": 3235, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717211f.jpg"} -{"rects": [{"solidity": 0.9971477448646399, "top": 775, "right": 2045, "bottom": 3180, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733309f.jpg"} -{"rects": [{"solidity": 0.9971479127758462, "top": 810, "right": 2025, "bottom": 3220, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716644f.jpg"} -{"rects": [{"solidity": 0.9971479368842137, "top": 715, "right": 2480, "bottom": 2190, "left": 400}, {"solidity": 0.9963792841153587, "top": 2525, "right": 2470, "bottom": 3935, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716090f.jpg"} -{"rects": [{"solidity": 0.9971479846728428, "top": 305, "right": 3170, "bottom": 1920, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701860f.jpg"} -{"rects": [{"solidity": 0.9971481182071319, "top": 535, "right": 3000, "bottom": 2165, "left": 585}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702954f.jpg"} -{"rects": [{"solidity": 0.9971481481481481, "top": 435, "right": 5475, "bottom": 3650, "left": 3440}, {"solidity": 0.9973996214787355, "top": 430, "right": 3170, "bottom": 3635, "left": 1150}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733025f.jpg"} -{"rects": [{"solidity": 0.9971483254813601, "top": 2340, "right": 3115, "bottom": 3975, "left": 700}, {"solidity": 0.998011423055265, "top": 440, "right": 3115, "bottom": 2065, "left": 705}, {"solidity": 0.9969221678587314, "top": 4230, "right": 3100, "bottom": 5845, "left": 685}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/712408f.jpg"} -{"rects": [{"solidity": 0.9971484607712543, "top": 860, "right": 3910, "bottom": 3225, "left": 2320}, {"solidity": 0.9983446827981589, "top": 865, "right": 2095, "bottom": 3225, "left": 510}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713211f.jpg"} -{"rects": [{"solidity": 0.9971489954709093, "top": 1030, "right": 3520, "bottom": 5070, "left": 305}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713149f.jpg"} -{"rects": [{"solidity": 0.9971490149377379, "top": 2230, "right": 3105, "bottom": 3845, "left": 695}, {"solidity": 0.998568539683261, "top": 370, "right": 3095, "bottom": 1985, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710059f.jpg"} -{"rects": [{"solidity": 0.9971490727036129, "top": 2275, "right": 3085, "bottom": 3865, "left": 690}, {"solidity": 0.9969215716292041, "top": 4150, "right": 3100, "bottom": 5740, "left": 710}, {"solidity": 0.9963362033074092, "top": 400, "right": 3085, "bottom": 1985, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729147f.jpg"} -{"rects": [{"solidity": 0.9971492916912046, "top": 540, "right": 3195, "bottom": 2155, "left": 775}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/704896f.jpg"} -{"rects": [{"solidity": 0.997149294374809, "top": 470, "right": 3245, "bottom": 2045, "left": 855}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727814f.jpg"} -{"rects": [{"solidity": 0.9971493149467322, "top": 465, "right": 2540, "bottom": 2900, "left": 900}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707275f.jpg"} -{"rects": [{"solidity": 0.9971494423139706, "top": 620, "right": 2835, "bottom": 2030, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703918f.jpg"} -{"rects": [{"solidity": 0.9971494463161827, "top": 375, "right": 3100, "bottom": 1990, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729830f.jpg"} -{"rects": [{"solidity": 0.9971494864576504, "top": 820, "right": 2070, "bottom": 3245, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724251f.jpg"} -{"rects": [{"solidity": 0.997149523979195, "top": 675, "right": 3255, "bottom": 2800, "left": 530}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509441.jpg"} -{"rects": [{"solidity": 0.9971496031446314, "top": 355, "right": 3090, "bottom": 1950, "left": 685}, {"solidity": 0.9984313235419859, "top": 2190, "right": 3075, "bottom": 3790, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729648f.jpg"} -{"rects": [{"solidity": 0.9971496067962697, "top": 750, "right": 2680, "bottom": 3595, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702860f.jpg"} -{"rects": [{"solidity": 0.9971497320238177, "top": 365, "right": 4750, "bottom": 3455, "left": 900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727572f.jpg"} -{"rects": [{"solidity": 0.9971497506836094, "top": 2460, "right": 3080, "bottom": 4080, "left": 660}, {"solidity": 0.9928509490316986, "top": 485, "right": 3080, "bottom": 2110, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701914f.jpg"} -{"rects": [{"solidity": 0.9971500828631369, "top": 660, "right": 2675, "bottom": 2095, "left": 840}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705722f.jpg"} -{"rects": [{"solidity": 0.9971501367099019, "top": 425, "right": 3130, "bottom": 2055, "left": 715}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709343f.jpg"} -{"rects": [{"solidity": 0.9971502801952629, "top": 600, "right": 4845, "bottom": 3590, "left": 1230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721221f.jpg"} -{"rects": [{"solidity": 0.9971503149293537, "top": 595, "right": 4880, "bottom": 3610, "left": 1205}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704214f.jpg"} -{"rects": [{"solidity": 0.997150321278763, "top": 1385, "right": 3585, "bottom": 5505, "left": 270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733461f.jpg"} -{"rects": [{"solidity": 0.9971505263611028, "top": 840, "right": 5020, "bottom": 3230, "left": 1210}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702842f.jpg"} -{"rects": [{"solidity": 0.9971505563506492, "top": 765, "right": 2030, "bottom": 3180, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708025f.jpg"} -{"rects": [{"solidity": 0.9971508954560352, "top": 445, "right": 3150, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700757f.jpg"} -{"rects": [{"solidity": 0.997151024480086, "top": 450, "right": 3215, "bottom": 2070, "left": 780}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/704673f.jpg"} -{"rects": [{"solidity": 0.9971510795064013, "top": 2215, "right": 3115, "bottom": 3840, "left": 700}, {"solidity": 0.9981817183568935, "top": 385, "right": 3125, "bottom": 2000, "left": 710}, {"solidity": 0.9954330825563119, "top": 4080, "right": 3095, "bottom": 5705, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709408f.jpg"} -{"rects": [{"solidity": 0.9971511055155966, "top": 490, "right": 5020, "bottom": 3800, "left": 975}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707579f.jpg"} -{"rects": [{"solidity": 0.9971511196992959, "top": 430, "right": 3255, "bottom": 2025, "left": 870}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710901f.jpg"} -{"rects": [{"solidity": 0.9971511425736699, "top": 460, "right": 3055, "bottom": 2095, "left": 630}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707136f.jpg"} -{"rects": [{"solidity": 0.9971514511015365, "top": 720, "right": 2020, "bottom": 3130, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719684f.jpg"} -{"rects": [{"solidity": 0.997151473432327, "top": 775, "right": 3845, "bottom": 3180, "left": 2240}, {"solidity": 0.9966867015802893, "top": 785, "right": 5670, "bottom": 3190, "left": 4060}, {"solidity": 0.997267399749786, "top": 775, "right": 2020, "bottom": 3175, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718146f.jpg"} -{"rects": [{"solidity": 0.9971515077805445, "top": 840, "right": 2115, "bottom": 3255, "left": 485}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708010f.jpg"} -{"rects": [{"solidity": 0.9971518026166739, "top": 950, "right": 5985, "bottom": 3005, "left": 2750}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704856f.jpg"} -{"rects": [{"solidity": 0.9971518181774518, "top": 960, "right": 3530, "bottom": 5020, "left": 290}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712047f.jpg"} -{"rects": [{"solidity": 0.9971519213177716, "top": 2245, "right": 3090, "bottom": 3860, "left": 680}, {"solidity": 0.9962114951468897, "top": 4115, "right": 3075, "bottom": 5725, "left": 655}, {"solidity": 0.9983692096363109, "top": 405, "right": 3085, "bottom": 2005, "left": 670}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728960f.jpg"} -{"rects": [{"solidity": 0.9971522547968575, "top": 440, "right": 3015, "bottom": 2035, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729469f.jpg"} -{"rects": [{"solidity": 0.9971525543771658, "top": 365, "right": 5205, "bottom": 3590, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732225f.jpg"} -{"rects": [{"solidity": 0.9971525654545174, "top": 1005, "right": 3410, "bottom": 4830, "left": 430}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712877f.jpg"} -{"rects": [{"solidity": 0.9971526611666789, "top": 655, "right": 2750, "bottom": 2055, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703172f.jpg"} -{"rects": [{"solidity": 0.9971528509849942, "top": 740, "right": 2145, "bottom": 3305, "left": 410}, {"solidity": 0.9965152580049361, "top": 805, "right": 4015, "bottom": 3205, "left": 2410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731426f.jpg"} -{"rects": [{"solidity": 0.9971529262308032, "top": 815, "right": 2060, "bottom": 3235, "left": 445}, {"solidity": 0.9953017638594732, "top": 830, "right": 3915, "bottom": 3255, "left": 2300}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722036f.jpg"} -{"rects": [{"solidity": 0.9971529766468972, "top": 570, "right": 5020, "bottom": 3635, "left": 1080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722501f.jpg"} -{"rects": [{"solidity": 0.9971530527958523, "top": 1985, "right": 3235, "bottom": 3595, "left": 835}, {"solidity": 0.9983457974045792, "top": 240, "right": 3250, "bottom": 1835, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719841f.jpg"} -{"rects": [{"solidity": 0.9971531441011471, "top": 2345, "right": 3280, "bottom": 3970, "left": 865}, {"solidity": 0.9959383767034822, "top": 525, "right": 3250, "bottom": 2175, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710330f.jpg"} -{"rects": [{"solidity": 0.9971532165767429, "top": 2200, "right": 3330, "bottom": 3830, "left": 910}, {"solidity": 0.9958412731111912, "top": 4065, "right": 3325, "bottom": 5690, "left": 895}, {"solidity": 0.9976141675772486, "top": 340, "right": 3305, "bottom": 1955, "left": 890}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733172f.jpg"} -{"rects": [{"solidity": 0.9971534190878178, "top": 505, "right": 4970, "bottom": 3300, "left": 1010}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731800f.jpg"} -{"rects": [{"solidity": 0.9971534288643193, "top": 355, "right": 2890, "bottom": 1850, "left": 975}, {"solidity": 0.9940300715936123, "top": 3495, "right": 2525, "bottom": 5410, "left": 1355}, {"solidity": 0.9964957479558529, "top": 2125, "right": 2555, "bottom": 3050, "left": 1295}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702082f.jpg"} -{"rects": [{"solidity": 0.997153518874282, "top": 655, "right": 2730, "bottom": 2050, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727691f.jpg"} -{"rects": [{"solidity": 0.9971535594707261, "top": 390, "right": 3180, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728818f.jpg"} -{"rects": [{"solidity": 0.9971535806947278, "top": 495, "right": 5145, "bottom": 3740, "left": 1115}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705957f.jpg"} -{"rects": [{"solidity": 0.9971537032342531, "top": 435, "right": 3255, "bottom": 2060, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705175f.jpg"} -{"rects": [{"solidity": 0.9971537365593115, "top": 855, "right": 2045, "bottom": 3275, "left": 415}, {"solidity": 0.9985033965124603, "top": 850, "right": 3945, "bottom": 3255, "left": 2330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717199f.jpg"} -{"rects": [{"solidity": 0.9971537586270613, "top": 430, "right": 3220, "bottom": 2040, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717762f.jpg"} -{"rects": [{"solidity": 0.9971538120751037, "top": 390, "right": 3135, "bottom": 2010, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729759f.jpg"} -{"rects": [{"solidity": 0.9971538508916097, "top": 420, "right": 3195, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704380f.jpg"} -{"rects": [{"solidity": 0.9971538761648322, "top": 740, "right": 1985, "bottom": 3165, "left": 360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703321f.jpg"} -{"rects": [{"solidity": 0.9971540712195818, "top": 320, "right": 5115, "bottom": 3565, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705000f.jpg"} -{"rects": [{"solidity": 0.9971543471887627, "top": 320, "right": 3135, "bottom": 1955, "left": 710}, {"solidity": 0.9972164208642933, "top": 2200, "right": 3140, "bottom": 3820, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715434f.jpg"} -{"rects": [{"solidity": 0.9971544969815932, "top": 425, "right": 3050, "bottom": 2030, "left": 660}, {"solidity": 0.9961430598391943, "top": 2275, "right": 3055, "bottom": 3880, "left": 680}, {"solidity": 0.9959683383843769, "top": 4115, "right": 3060, "bottom": 5680, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719553f.jpg"} -{"rects": [{"solidity": 0.997154516957896, "top": 465, "right": 5105, "bottom": 3755, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714839f.jpg"} -{"rects": [{"solidity": 0.9971545394190211, "top": 535, "right": 5370, "bottom": 3390, "left": 925}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726910f.jpg"} -{"rects": [{"solidity": 0.9971545403638542, "top": 470, "right": 5125, "bottom": 3775, "left": 1005}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704467f.jpg"} -{"rects": [{"solidity": 0.9971545412248696, "top": 615, "right": 2900, "bottom": 2045, "left": 1100}, {"solidity": 0.9965023129865734, "top": 620, "right": 5075, "bottom": 2055, "left": 3280}, {"solidity": 0.9959341580010842, "top": 2255, "right": 5090, "bottom": 3660, "left": 3265}, {"solidity": 0.996144759344016, "top": 2240, "right": 2905, "bottom": 3640, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725690f.jpg"} -{"rects": [{"solidity": 0.9971547620212936, "top": 720, "right": 3490, "bottom": 3115, "left": 1870}, {"solidity": 0.995574033092899, "top": 960, "right": 1610, "bottom": 3055, "left": 310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723445f.jpg"} -{"rects": [{"solidity": 0.9971548171888286, "top": 395, "right": 3060, "bottom": 2000, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728638f.jpg"} -{"rects": [{"solidity": 0.9971549404075356, "top": 650, "right": 2385, "bottom": 3070, "left": 750}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703623f.jpg"} -{"rects": [{"solidity": 0.9971550405891653, "top": 400, "right": 3220, "bottom": 2020, "left": 805}, {"solidity": 0.9963150532342046, "top": 2270, "right": 3250, "bottom": 3885, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715121f.jpg"} -{"rects": [{"solidity": 0.9971550798238146, "top": 480, "right": 5100, "bottom": 3660, "left": 980}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702807f.jpg"} -{"rects": [{"solidity": 0.9971551488324671, "top": 445, "right": 2850, "bottom": 1855, "left": 1050}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722035f.jpg"} -{"rects": [{"solidity": 0.9971553117901071, "top": 920, "right": 3385, "bottom": 4820, "left": 335}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704410f.jpg"} -{"rects": [{"solidity": 0.9971553596275634, "top": 845, "right": 3900, "bottom": 3260, "left": 2295}, {"solidity": 0.995531739380925, "top": 840, "right": 5730, "bottom": 3255, "left": 4125}, {"solidity": 0.997516161509114, "top": 850, "right": 2045, "bottom": 3250, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733657f.jpg"} -{"rects": [{"solidity": 0.9971555014157698, "top": 725, "right": 2035, "bottom": 3140, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719962f.jpg"} -{"rects": [{"solidity": 0.9971555025446358, "top": 415, "right": 3115, "bottom": 2000, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713542f.jpg"} -{"rects": [{"solidity": 0.9971555396821348, "top": 335, "right": 3510, "bottom": 1970, "left": 1090}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706602f.jpg"} -{"rects": [{"solidity": 0.9971556858142826, "top": 485, "right": 5110, "bottom": 3510, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718618f.jpg"} -{"rects": [{"solidity": 0.9971556891033359, "top": 415, "right": 3180, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701538f.jpg"} -{"rects": [{"solidity": 0.9971560080574241, "top": 460, "right": 3110, "bottom": 2045, "left": 710}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/712778f.jpg"} -{"rects": [{"solidity": 0.997156057725295, "top": 750, "right": 2025, "bottom": 3180, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706554f.jpg"} -{"rects": [{"solidity": 0.9971561085163987, "top": 785, "right": 3800, "bottom": 3200, "left": 2195}, {"solidity": 0.9945372396019293, "top": 775, "right": 2005, "bottom": 3195, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723908f.jpg"} -{"rects": [{"solidity": 0.9971561983928283, "top": 1210, "right": 3380, "bottom": 4925, "left": 485}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703144f.jpg"} -{"rects": [{"solidity": 0.9971564123277153, "top": 770, "right": 2345, "bottom": 3470, "left": 480}, {"solidity": 0.9972064539860224, "top": 780, "right": 4205, "bottom": 2175, "left": 2385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701669f.jpg"} -{"rects": [{"solidity": 0.9971564654865999, "top": 760, "right": 5620, "bottom": 3190, "left": 4015}, {"solidity": 0.9991124482397434, "top": 750, "right": 3765, "bottom": 3150, "left": 2160}, {"solidity": 0.9951285805261396, "top": 765, "right": 1925, "bottom": 3160, "left": 305}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724852f.jpg"} -{"rects": [{"solidity": 0.9971567072357206, "top": 915, "right": 3390, "bottom": 5265, "left": 470}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722486f.jpg"} -{"rects": [{"solidity": 0.9971567276697515, "top": 755, "right": 2050, "bottom": 3165, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715023f.jpg"} -{"rects": [{"solidity": 0.9971569803529332, "top": 405, "right": 3155, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704338f.jpg"} -{"rects": [{"solidity": 0.9971571529751977, "top": 445, "right": 3220, "bottom": 2050, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721616f.jpg"} -{"rects": [{"solidity": 0.9971577635882262, "top": 2100, "right": 2545, "bottom": 3530, "left": 735}, {"solidity": 0.9949570962256407, "top": 645, "right": 2575, "bottom": 2070, "left": 755}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702581f.jpg"} -{"rects": [{"solidity": 0.9971580353941922, "top": 2260, "right": 3105, "bottom": 3865, "left": 695}, {"solidity": 0.9955040274344047, "top": 405, "right": 3095, "bottom": 1995, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733618f.jpg"} -{"rects": [{"solidity": 0.997158084126162, "top": 790, "right": 2015, "bottom": 3150, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732105f.jpg"} -{"rects": [{"solidity": 0.9971582538321012, "top": 2165, "right": 3180, "bottom": 3785, "left": 805}, {"solidity": 0.9977150984581853, "top": 285, "right": 3180, "bottom": 1900, "left": 810}, {"solidity": 0.9972091809247181, "top": 4055, "right": 3165, "bottom": 5660, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707985f.jpg"} -{"rects": [{"solidity": 0.9971582951120651, "top": 1290, "right": 3405, "bottom": 5015, "left": 400}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716996f.jpg"} -{"rects": [{"solidity": 0.9971583250965945, "top": 875, "right": 2900, "bottom": 2800, "left": 1730}, {"solidity": 0.9966434864353464, "top": 870, "right": 1480, "bottom": 2805, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712830f.jpg"} -{"rects": [{"solidity": 0.9971583277646918, "top": 645, "right": 3210, "bottom": 2660, "left": 390}, {"solidity": 0.9980052629001163, "top": 3390, "right": 3205, "bottom": 5400, "left": 390}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729938f.jpg"} -{"rects": [{"solidity": 0.9971583845416119, "top": 390, "right": 3240, "bottom": 2015, "left": 835}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700827f.jpg"} -{"rects": [{"solidity": 0.9971587185796066, "top": 505, "right": 3335, "bottom": 2400, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714100f.jpg"} -{"rects": [{"solidity": 0.9971589608793163, "top": 790, "right": 2030, "bottom": 3190, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722638f.jpg"} -{"rects": [{"solidity": 0.9971590367418537, "top": 845, "right": 3910, "bottom": 3280, "left": 2275}, {"solidity": 0.9971124400385905, "top": 870, "right": 2010, "bottom": 3250, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719820f.jpg"} -{"rects": [{"solidity": 0.9971590909090909, "top": 780, "right": 2040, "bottom": 3145, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724688f.jpg"} -{"rects": [{"solidity": 0.9971590963093915, "top": 400, "right": 5110, "bottom": 3635, "left": 1015}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722214f.jpg"} -{"rects": [{"solidity": 0.997159172797238, "top": 815, "right": 3875, "bottom": 3245, "left": 2255}, {"solidity": 0.9962356623495392, "top": 830, "right": 5690, "bottom": 3255, "left": 4080}, {"solidity": 0.9965648893410833, "top": 835, "right": 2030, "bottom": 3220, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723784f.jpg"} -{"rects": [{"solidity": 0.9971592195942667, "top": 875, "right": 3890, "bottom": 3290, "left": 2275}, {"solidity": 0.9962804398159487, "top": 880, "right": 5750, "bottom": 3300, "left": 4140}, {"solidity": 0.9988688199248335, "top": 900, "right": 2005, "bottom": 3280, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734802f.jpg"} -{"rects": [{"solidity": 0.9971592847471081, "top": 420, "right": 5125, "bottom": 3640, "left": 1040}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731772f.jpg"} -{"rects": [{"solidity": 0.9971595101077173, "top": 1635, "right": 1850, "bottom": 3245, "left": 785}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509413.jpg"} -{"rects": [{"solidity": 0.9971596640270008, "top": 405, "right": 3395, "bottom": 2040, "left": 980}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704567f.jpg"} -{"rects": [{"solidity": 0.997159718597599, "top": 790, "right": 5705, "bottom": 3220, "left": 4075}, {"solidity": 0.9967673761549094, "top": 785, "right": 3880, "bottom": 3210, "left": 2260}, {"solidity": 0.9980391141714449, "top": 785, "right": 2065, "bottom": 3195, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713330f.jpg"} -{"rects": [{"solidity": 0.9971597925413682, "top": 810, "right": 3960, "bottom": 3210, "left": 2340}, {"solidity": 0.9970640589962319, "top": 820, "right": 2055, "bottom": 3205, "left": 455}, {"solidity": 0.9903294302809926, "top": 825, "right": 5775, "bottom": 3195, "left": 4205}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713052f.jpg"} -{"rects": [{"solidity": 0.9971599303936698, "top": 535, "right": 3150, "bottom": 2135, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720858f.jpg"} -{"rects": [{"solidity": 0.9971600270473615, "top": 540, "right": 4135, "bottom": 2765, "left": 1155}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508877.jpg"} -{"rects": [{"solidity": 0.9971600833214734, "top": 450, "right": 3100, "bottom": 2065, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729785f.jpg"} -{"rects": [{"solidity": 0.9971601416391418, "top": 2150, "right": 3200, "bottom": 3770, "left": 780}, {"solidity": 0.996311415421146, "top": 395, "right": 3195, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709218f.jpg"} -{"rects": [{"solidity": 0.9971601515875488, "top": 1000, "right": 5845, "bottom": 3050, "left": 2630}, {"solidity": 0.9965410841047357, "top": 465, "right": 2610, "bottom": 3685, "left": 555}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733006f.jpg"} -{"rects": [{"solidity": 0.9971602609334275, "top": 370, "right": 5060, "bottom": 3620, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732662f.jpg"} -{"rects": [{"solidity": 0.9971603983275725, "top": 770, "right": 2040, "bottom": 3175, "left": 435}, {"solidity": 0.9961244620033751, "top": 780, "right": 3880, "bottom": 3190, "left": 2280}, {"solidity": 0.995840799618603, "top": 790, "right": 5720, "bottom": 3195, "left": 4125}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730301f.jpg"} -{"rects": [{"solidity": 0.997160522787888, "top": 1125, "right": 3630, "bottom": 5215, "left": 365}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717556f.jpg"} -{"rects": [{"solidity": 0.9971605831818413, "top": 675, "right": 3350, "bottom": 2585, "left": 630}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708109f.jpg"} -{"rects": [{"solidity": 0.9971606777136474, "top": 305, "right": 5050, "bottom": 3520, "left": 1000}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706897f.jpg"} -{"rects": [{"solidity": 0.9971609870440095, "top": 395, "right": 3125, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702389f.jpg"} -{"rects": [{"solidity": 0.9971610050303851, "top": 4070, "right": 3160, "bottom": 5690, "left": 780}, {"solidity": 0.9963222302205353, "top": 300, "right": 3170, "bottom": 1920, "left": 790}, {"solidity": 0.9952407072263079, "top": 2170, "right": 3160, "bottom": 3800, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715717f.jpg"} -{"rects": [{"solidity": 0.9971611345185489, "top": 2270, "right": 3070, "bottom": 3890, "left": 650}, {"solidity": 0.9969201618705622, "top": 405, "right": 3075, "bottom": 2010, "left": 655}, {"solidity": 0.995635901891332, "top": 4135, "right": 3060, "bottom": 5720, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734322f.jpg"} -{"rects": [{"solidity": 0.9971614119956985, "top": 795, "right": 3850, "bottom": 3205, "left": 2225}, {"solidity": 0.9977424950139998, "top": 800, "right": 2025, "bottom": 3210, "left": 415}, {"solidity": 0.9955824830207772, "top": 790, "right": 5665, "bottom": 3205, "left": 4050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713476f.jpg"} -{"rects": [{"solidity": 0.9971615668693473, "top": 835, "right": 2075, "bottom": 3200, "left": 495}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713222f.jpg"} -{"rects": [{"solidity": 0.9971617846190924, "top": 460, "right": 3020, "bottom": 2100, "left": 585}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705024f.jpg"} -{"rects": [{"solidity": 0.997161788404292, "top": 510, "right": 2685, "bottom": 3590, "left": 700}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715107f.jpg"} -{"rects": [{"solidity": 0.9971620206413034, "top": 590, "right": 2530, "bottom": 2125, "left": 1500}, {"solidity": 0.9926672996672757, "top": 585, "right": 3685, "bottom": 2125, "left": 2655}, {"solidity": 0.9973585966039099, "top": 595, "right": 1375, "bottom": 2130, "left": 350}], "shape": {"h": 2635, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/716535f.jpg"} -{"rects": [{"solidity": 0.9971620844134436, "top": 815, "right": 2025, "bottom": 3230, "left": 410}, {"solidity": 0.9983281319661168, "top": 825, "right": 3830, "bottom": 3225, "left": 2230}, {"solidity": 0.9963146415808283, "top": 840, "right": 5645, "bottom": 3235, "left": 4040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721766f.jpg"} -{"rects": [{"solidity": 0.9971622233645521, "top": 1020, "right": 3475, "bottom": 5040, "left": 200}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700441f.jpg"} -{"rects": [{"solidity": 0.9971622649303827, "top": 710, "right": 2765, "bottom": 3455, "left": 810}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708790f.jpg"} -{"rects": [{"solidity": 0.9971624768734385, "top": 1985, "right": 2685, "bottom": 3395, "left": 890}, {"solidity": 0.9970039144835893, "top": 580, "right": 2695, "bottom": 1980, "left": 895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703050f.jpg"} -{"rects": [{"solidity": 0.9971625115807619, "top": 2245, "right": 3155, "bottom": 3860, "left": 740}, {"solidity": 0.9966615022591582, "top": 4080, "right": 3150, "bottom": 5695, "left": 735}, {"solidity": 0.9970311337726556, "top": 425, "right": 3140, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732109f.jpg"} -{"rects": [{"solidity": 0.9971625115807619, "top": 2350, "right": 3240, "bottom": 3975, "left": 825}, {"solidity": 0.9971309972380981, "top": 605, "right": 3225, "bottom": 2210, "left": 805}, {"solidity": 0.9963054267722508, "top": 4110, "right": 3250, "bottom": 5725, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733157f.jpg"} -{"rects": [{"solidity": 0.9971625600445698, "top": 765, "right": 3765, "bottom": 3180, "left": 2145}, {"solidity": 0.9962627046750584, "top": 765, "right": 2000, "bottom": 3165, "left": 390}, {"solidity": 0.9938230520811134, "top": 795, "right": 5575, "bottom": 3200, "left": 3965}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719017f.jpg"} -{"rects": [{"solidity": 0.9971625670500618, "top": 425, "right": 3175, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722974f.jpg"} -{"rects": [{"solidity": 0.9971625849055641, "top": 785, "right": 2350, "bottom": 3505, "left": 535}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/710985f.jpg"} -{"rects": [{"solidity": 0.9971625904328957, "top": 510, "right": 4950, "bottom": 3745, "left": 875}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708998f.jpg"} -{"rects": [{"solidity": 0.9971626754113481, "top": 900, "right": 3935, "bottom": 3320, "left": 2305}, {"solidity": 0.9983370973725487, "top": 910, "right": 2045, "bottom": 3305, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720289f.jpg"} -{"rects": [{"solidity": 0.9971627010565932, "top": 775, "right": 3830, "bottom": 3190, "left": 2215}, {"solidity": 0.9964717610571034, "top": 760, "right": 2035, "bottom": 3175, "left": 420}, {"solidity": 0.9962896001303038, "top": 795, "right": 5615, "bottom": 3210, "left": 3995}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730451f.jpg"} -{"rects": [{"solidity": 0.9971627659836828, "top": 1145, "right": 3320, "bottom": 4900, "left": 325}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709850f.jpg"} -{"rects": [{"solidity": 0.9971628210795795, "top": 1020, "right": 3910, "bottom": 3410, "left": 2310}, {"solidity": 0.9958088124968741, "top": 985, "right": 2005, "bottom": 3375, "left": 425}, {"solidity": 0.9970111721052095, "top": 1040, "right": 5670, "bottom": 3370, "left": 4125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714040f.jpg"} -{"rects": [{"solidity": 0.9971628289473684, "top": 875, "right": 2060, "bottom": 3215, "left": 490}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714834f.jpg"} -{"rects": [{"solidity": 0.9971628316033728, "top": 645, "right": 2620, "bottom": 2015, "left": 770}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706941f.jpg"} -{"rects": [{"solidity": 0.9971628547239438, "top": 440, "right": 3100, "bottom": 2050, "left": 680}, {"solidity": 0.996440177538877, "top": 4145, "right": 3105, "bottom": 5755, "left": 685}, {"solidity": 0.9981345035868703, "top": 2310, "right": 3105, "bottom": 3915, "left": 685}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729663f.jpg"} -{"rects": [{"solidity": 0.9971629488316388, "top": 835, "right": 2025, "bottom": 3230, "left": 415}, {"solidity": 0.9892438646461408, "top": 915, "right": 3805, "bottom": 3090, "left": 2390}, {"solidity": 0.9946098095721356, "top": 980, "right": 5485, "bottom": 2990, "left": 4170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710138f.jpg"} -{"rects": [{"solidity": 0.9971630393215554, "top": 285, "right": 3465, "bottom": 2770, "left": 420}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509893.jpg"} -{"rects": [{"solidity": 0.9971635037482272, "top": 2265, "right": 3245, "bottom": 3890, "left": 825}, {"solidity": 0.9961410890130739, "top": 4075, "right": 3250, "bottom": 5690, "left": 825}, {"solidity": 0.9976436817147748, "top": 445, "right": 3220, "bottom": 2050, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732045f.jpg"} -{"rects": [{"solidity": 0.9971635555214842, "top": 910, "right": 3890, "bottom": 3325, "left": 2255}, {"solidity": 0.9964434561543813, "top": 910, "right": 2045, "bottom": 3330, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719568f.jpg"} -{"rects": [{"solidity": 0.9971635689037907, "top": 510, "right": 2825, "bottom": 3585, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717693f.jpg"} -{"rects": [{"solidity": 0.9971636489590787, "top": 765, "right": 1980, "bottom": 3175, "left": 380}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719988f.jpg"} -{"rects": [{"solidity": 0.9971637363432457, "top": 2020, "right": 2690, "bottom": 3445, "left": 855}, {"solidity": 0.9976436617882096, "top": 565, "right": 5185, "bottom": 1990, "left": 3350}, {"solidity": 0.996525420344263, "top": 2030, "right": 5175, "bottom": 3440, "left": 3375}, {"solidity": 0.9965086129438041, "top": 570, "right": 2670, "bottom": 1940, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707240f.jpg"} -{"rects": [{"solidity": 0.9971637903669426, "top": 1045, "right": 3525, "bottom": 5060, "left": 355}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722196f.jpg"} -{"rects": [{"solidity": 0.9971639251276234, "top": 865, "right": 2040, "bottom": 3275, "left": 415}, {"solidity": 0.9963969558481547, "top": 875, "right": 3875, "bottom": 3275, "left": 2245}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704419f.jpg"} -{"rects": [{"solidity": 0.9971639396037172, "top": 765, "right": 3870, "bottom": 3200, "left": 2245}, {"solidity": 0.9966577518748223, "top": 755, "right": 2060, "bottom": 3190, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703883f.jpg"} -{"rects": [{"solidity": 0.9971640876662516, "top": 380, "right": 3095, "bottom": 1980, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718008f.jpg"} -{"rects": [{"solidity": 0.997164201079268, "top": 840, "right": 5730, "bottom": 3270, "left": 4105}, {"solidity": 0.9964356359339276, "top": 825, "right": 3870, "bottom": 3250, "left": 2245}, {"solidity": 0.9937229766220494, "top": 795, "right": 2020, "bottom": 3220, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734640f.jpg"} -{"rects": [{"solidity": 0.9971642045622384, "top": 1040, "right": 3500, "bottom": 5080, "left": 230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717091f.jpg"} -{"rects": [{"solidity": 0.9971642873137886, "top": 3220, "right": 3425, "bottom": 5255, "left": 615}, {"solidity": 0.9967427216370321, "top": 830, "right": 3470, "bottom": 2855, "left": 665}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/732041f.jpg"} -{"rects": [{"solidity": 0.99716442465886, "top": 795, "right": 1985, "bottom": 3215, "left": 370}, {"solidity": 0.9971356153577571, "top": 825, "right": 3870, "bottom": 3230, "left": 2245}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717087f.jpg"} -{"rects": [{"solidity": 0.9971644428907145, "top": 500, "right": 2985, "bottom": 1930, "left": 1170}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727774f.jpg"} -{"rects": [{"solidity": 0.9971644886886002, "top": 830, "right": 3835, "bottom": 3240, "left": 2215}, {"solidity": 0.997111544774287, "top": 835, "right": 2000, "bottom": 3245, "left": 380}, {"solidity": 0.9966051120733735, "top": 835, "right": 5680, "bottom": 3260, "left": 4070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719221f.jpg"} -{"rects": [{"solidity": 0.9971646272182014, "top": 955, "right": 2675, "bottom": 3985, "left": 260}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509359.jpg"} -{"rects": [{"solidity": 0.9971646403209052, "top": 815, "right": 2015, "bottom": 3220, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715153f.jpg"} -{"rects": [{"solidity": 0.9971646914775107, "top": 760, "right": 2010, "bottom": 3170, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719165f.jpg"} -{"rects": [{"solidity": 0.9971649579853197, "top": 1050, "right": 3530, "bottom": 5100, "left": 335}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/719136f.jpg"} -{"rects": [{"solidity": 0.9971649921397496, "top": 835, "right": 2055, "bottom": 3210, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729581f.jpg"} -{"rects": [{"solidity": 0.9971650253655625, "top": 340, "right": 3050, "bottom": 1980, "left": 620}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706534f.jpg"} -{"rects": [{"solidity": 0.9971651057970826, "top": 390, "right": 3115, "bottom": 2000, "left": 705}, {"solidity": 0.9981785893174263, "top": 2250, "right": 3100, "bottom": 3860, "left": 695}, {"solidity": 0.9952268784569194, "top": 4105, "right": 3100, "bottom": 5710, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729730f.jpg"} -{"rects": [{"solidity": 0.9971652036112012, "top": 335, "right": 3855, "bottom": 2750, "left": 845}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716302f.jpg"} -{"rects": [{"solidity": 0.9971654003506721, "top": 425, "right": 3170, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716829f.jpg"} -{"rects": [{"solidity": 0.9971654531842064, "top": 395, "right": 3225, "bottom": 1995, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707026f.jpg"} -{"rects": [{"solidity": 0.9971657574741718, "top": 735, "right": 2735, "bottom": 2115, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726320f.jpg"} -{"rects": [{"solidity": 0.9971659043341624, "top": 355, "right": 3195, "bottom": 1985, "left": 760}, {"solidity": 0.9950127897810453, "top": 4090, "right": 3180, "bottom": 5720, "left": 755}, {"solidity": 0.9957225628329596, "top": 2235, "right": 3195, "bottom": 3845, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727539f.jpg"} -{"rects": [{"solidity": 0.9971659050370033, "top": 890, "right": 5740, "bottom": 3315, "left": 4115}, {"solidity": 0.9979564141966655, "top": 875, "right": 2025, "bottom": 3290, "left": 400}, {"solidity": 0.9958859330927858, "top": 875, "right": 3890, "bottom": 3295, "left": 2260}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729208f.jpg"} -{"rects": [{"solidity": 0.9971659450174032, "top": 830, "right": 2005, "bottom": 3255, "left": 380}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732416f.jpg"} -{"rects": [{"solidity": 0.9971660605362734, "top": 420, "right": 3190, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705997f.jpg"} -{"rects": [{"solidity": 0.9971661502188968, "top": 490, "right": 5100, "bottom": 3720, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733447f.jpg"} -{"rects": [{"solidity": 0.9971661725797711, "top": 415, "right": 3220, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703994f.jpg"} -{"rects": [{"solidity": 0.9971662569559887, "top": 465, "right": 3155, "bottom": 2085, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721133f.jpg"} -{"rects": [{"solidity": 0.997166409067491, "top": 450, "right": 3125, "bottom": 2055, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724920f.jpg"} -{"rects": [{"solidity": 0.9971664137767134, "top": 655, "right": 5220, "bottom": 2160, "left": 3385}, {"solidity": 0.9984531553761029, "top": 2165, "right": 5225, "bottom": 3645, "left": 3405}, {"solidity": 0.9961351266874712, "top": 2150, "right": 2690, "bottom": 3560, "left": 890}, {"solidity": 0.9943451966498896, "top": 685, "right": 2695, "bottom": 2090, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725099f.jpg"} -{"rects": [{"solidity": 0.9971664580725907, "top": 780, "right": 1985, "bottom": 3160, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712154f.jpg"} -{"rects": [{"solidity": 0.9971665141871746, "top": 770, "right": 3875, "bottom": 3160, "left": 2275}, {"solidity": 0.9962896092494741, "top": 775, "right": 2010, "bottom": 3160, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718367f.jpg"} -{"rects": [{"solidity": 0.9971665499387579, "top": 410, "right": 3340, "bottom": 2040, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700104f.jpg"} -{"rects": [{"solidity": 0.9971665678603064, "top": 385, "right": 4940, "bottom": 3565, "left": 925}], "shape": {"h": 3850, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/711686f.jpg"} -{"rects": [{"solidity": 0.9971665952452526, "top": 795, "right": 2025, "bottom": 3230, "left": 405}, {"solidity": 0.9967555010894988, "top": 790, "right": 3850, "bottom": 3225, "left": 2230}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719782f.jpg"} -{"rects": [{"solidity": 0.9971666453778, "top": 2235, "right": 3335, "bottom": 4200, "left": 575}, {"solidity": 0.996785427270292, "top": 380, "right": 3195, "bottom": 2010, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723393f.jpg"} -{"rects": [{"solidity": 0.9971667648640208, "top": 795, "right": 5645, "bottom": 3215, "left": 4030}, {"solidity": 0.9986345870111045, "top": 780, "right": 3815, "bottom": 3195, "left": 2205}, {"solidity": 0.9972089262613195, "top": 780, "right": 2020, "bottom": 3200, "left": 410}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732397f.jpg"} -{"rects": [{"solidity": 0.9971668036154478, "top": 430, "right": 3150, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723317f.jpg"} -{"rects": [{"solidity": 0.997166905582891, "top": 270, "right": 4995, "bottom": 3510, "left": 990}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726493f.jpg"} -{"rects": [{"solidity": 0.9971670296209216, "top": 460, "right": 3315, "bottom": 2085, "left": 895}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726829f.jpg"} -{"rects": [{"solidity": 0.9971671930328261, "top": 360, "right": 2885, "bottom": 3585, "left": 820}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732991f.jpg"} -{"rects": [{"solidity": 0.9971676511528015, "top": 435, "right": 3170, "bottom": 2050, "left": 755}, {"solidity": 0.9960247934150961, "top": 2255, "right": 3170, "bottom": 3870, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703673f.jpg"} -{"rects": [{"solidity": 0.9971677911073246, "top": 400, "right": 3140, "bottom": 2000, "left": 745}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/729217f.jpg"} -{"rects": [{"solidity": 0.9971681588641409, "top": 430, "right": 5085, "bottom": 3660, "left": 1080}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708213f.jpg"} -{"rects": [{"solidity": 0.9971682096942409, "top": 2295, "right": 3175, "bottom": 3875, "left": 810}, {"solidity": 0.9738814595840367, "top": 425, "right": 3170, "bottom": 2005, "left": 880}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717524f.jpg"} -{"rects": [{"solidity": 0.9971683965616789, "top": 345, "right": 5265, "bottom": 3580, "left": 1160}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732620f.jpg"} -{"rects": [{"solidity": 0.9971685946726915, "top": 2195, "right": 3185, "bottom": 3805, "left": 760}, {"solidity": 0.9966398566683807, "top": 360, "right": 3175, "bottom": 1975, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715336f.jpg"} -{"rects": [{"solidity": 0.9971686809080836, "top": 330, "right": 3195, "bottom": 1955, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711162f.jpg"} -{"rects": [{"solidity": 0.9971687232806389, "top": 880, "right": 3315, "bottom": 2940, "left": 490}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716556f.jpg"} -{"rects": [{"solidity": 0.9971697772880367, "top": 870, "right": 1985, "bottom": 3270, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700285f.jpg"} -{"rects": [{"solidity": 0.9971698143826657, "top": 4105, "right": 3195, "bottom": 5715, "left": 785}, {"solidity": 0.9949895642930294, "top": 2270, "right": 3185, "bottom": 3890, "left": 780}, {"solidity": 0.9973569575644854, "top": 405, "right": 3185, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734025f.jpg"} -{"rects": [{"solidity": 0.9971699867036862, "top": 1060, "right": 3525, "bottom": 4980, "left": 350}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714538f.jpg"} -{"rects": [{"solidity": 0.9971701348305119, "top": 485, "right": 4955, "bottom": 3575, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711476f.jpg"} -{"rects": [{"solidity": 0.9971702439770107, "top": 425, "right": 3130, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700734f.jpg"} -{"rects": [{"solidity": 0.997170536279834, "top": 825, "right": 2070, "bottom": 3250, "left": 455}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703733f.jpg"} -{"rects": [{"solidity": 0.9971705497039725, "top": 1180, "right": 3435, "bottom": 4920, "left": 460}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721283f.jpg"} -{"rects": [{"solidity": 0.9971705539982806, "top": 445, "right": 3150, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717615f.jpg"} -{"rects": [{"solidity": 0.9971708050199746, "top": 465, "right": 3245, "bottom": 2090, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725199f.jpg"} -{"rects": [{"solidity": 0.9971708985112975, "top": 635, "right": 2365, "bottom": 3400, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705707f.jpg"} -{"rects": [{"solidity": 0.9971712602634972, "top": 840, "right": 2305, "bottom": 3255, "left": 690}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722564f.jpg"} -{"rects": [{"solidity": 0.9971713625745494, "top": 375, "right": 3180, "bottom": 1980, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726264f.jpg"} -{"rects": [{"solidity": 0.9971714057178244, "top": 500, "right": 3195, "bottom": 2120, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702102f.jpg"} -{"rects": [{"solidity": 0.9971714317820622, "top": 775, "right": 2035, "bottom": 3205, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724130f.jpg"} -{"rects": [{"solidity": 0.9971714590262885, "top": 345, "right": 3290, "bottom": 1975, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700281f.jpg"} -{"rects": [{"solidity": 0.9971714886051398, "top": 820, "right": 2025, "bottom": 3235, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715497f.jpg"} -{"rects": [{"solidity": 0.9971715282019955, "top": 780, "right": 3790, "bottom": 3215, "left": 2160}, {"solidity": 0.9980606202123589, "top": 785, "right": 1920, "bottom": 3190, "left": 305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720261f.jpg"} -{"rects": [{"solidity": 0.9971715662356673, "top": 300, "right": 3545, "bottom": 2125, "left": 830}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/706419f.jpg"} -{"rects": [{"solidity": 0.9971716257495192, "top": 440, "right": 3130, "bottom": 2055, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705663f.jpg"} -{"rects": [{"solidity": 0.9971716642660731, "top": 495, "right": 5070, "bottom": 3720, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718215f.jpg"} -{"rects": [{"solidity": 0.997171856381986, "top": 1030, "right": 3320, "bottom": 4685, "left": 435}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723887f.jpg"} -{"rects": [{"solidity": 0.9971719174732248, "top": 1130, "right": 2845, "bottom": 2715, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707604f.jpg"} -{"rects": [{"solidity": 0.997172219215459, "top": 530, "right": 3265, "bottom": 2155, "left": 840}, {"solidity": 0.9964837940407201, "top": 2295, "right": 3265, "bottom": 3920, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733241f.jpg"} -{"rects": [{"solidity": 0.9971722207729049, "top": 480, "right": 3150, "bottom": 2105, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721784f.jpg"} -{"rects": [{"solidity": 0.9971722779947707, "top": 775, "right": 3850, "bottom": 3205, "left": 2245}, {"solidity": 0.9973497433775904, "top": 775, "right": 5690, "bottom": 3200, "left": 4085}, {"solidity": 0.996179669709446, "top": 800, "right": 2020, "bottom": 3205, "left": 410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730907f.jpg"} -{"rects": [{"solidity": 0.9971722950987549, "top": 765, "right": 2035, "bottom": 3155, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713957f.jpg"} -{"rects": [{"solidity": 0.9971723246921556, "top": 505, "right": 5050, "bottom": 3640, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700293f.jpg"} -{"rects": [{"solidity": 0.9971723352533646, "top": 1015, "right": 3570, "bottom": 5025, "left": 335}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709077f.jpg"} -{"rects": [{"solidity": 0.9971723416086089, "top": 1240, "right": 2630, "bottom": 4395, "left": 185}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508839.jpg"} -{"rects": [{"solidity": 0.997172361349854, "top": 660, "right": 5600, "bottom": 3085, "left": 3975}, {"solidity": 0.9968427984814442, "top": 670, "right": 2010, "bottom": 3090, "left": 390}, {"solidity": 0.9976937358890923, "top": 670, "right": 3850, "bottom": 3090, "left": 2240}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706574f.jpg"} -{"rects": [{"solidity": 0.9971724818116611, "top": 2260, "right": 3200, "bottom": 3885, "left": 775}, {"solidity": 0.9967987182003327, "top": 4115, "right": 3200, "bottom": 5735, "left": 775}, {"solidity": 0.9960135972338452, "top": 400, "right": 3185, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733693f.jpg"} -{"rects": [{"solidity": 0.9971727132905094, "top": 380, "right": 3200, "bottom": 1995, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705870f.jpg"} -{"rects": [{"solidity": 0.9971729208692672, "top": 940, "right": 2595, "bottom": 3930, "left": 295}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509157.jpg"} -{"rects": [{"solidity": 0.9971730647798844, "top": 2285, "right": 3150, "bottom": 3895, "left": 735}, {"solidity": 0.9973253418974454, "top": 430, "right": 3150, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713432f.jpg"} -{"rects": [{"solidity": 0.9971731364705043, "top": 555, "right": 2825, "bottom": 3665, "left": 785}, {"solidity": 0.997715682447867, "top": 805, "right": 4975, "bottom": 3230, "left": 3350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709506f.jpg"} -{"rects": [{"solidity": 0.9971731472803874, "top": 920, "right": 2735, "bottom": 3955, "left": 280}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516919.jpg"} -{"rects": [{"solidity": 0.997173263587245, "top": 450, "right": 5035, "bottom": 3580, "left": 1145}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709760f.jpg"} -{"rects": [{"solidity": 0.9971733554392843, "top": 620, "right": 4945, "bottom": 3630, "left": 1140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720807f.jpg"} -{"rects": [{"solidity": 0.9971735780878488, "top": 505, "right": 5025, "bottom": 3715, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718916f.jpg"} -{"rects": [{"solidity": 0.997173640691556, "top": 810, "right": 2045, "bottom": 3190, "left": 460}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704187f.jpg"} -{"rects": [{"solidity": 0.99717376407578, "top": 880, "right": 2055, "bottom": 3240, "left": 490}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713788f.jpg"} -{"rects": [{"solidity": 0.9971737659105299, "top": 510, "right": 4960, "bottom": 3545, "left": 1145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718265f.jpg"} -{"rects": [{"solidity": 0.997173908195029, "top": 885, "right": 3895, "bottom": 3315, "left": 2265}, {"solidity": 0.997632015155103, "top": 900, "right": 5735, "bottom": 3330, "left": 4115}, {"solidity": 0.9983378915882583, "top": 870, "right": 2030, "bottom": 3295, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733471f.jpg"} -{"rects": [{"solidity": 0.9971743771082178, "top": 425, "right": 3125, "bottom": 2030, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717559f.jpg"} -{"rects": [{"solidity": 0.9971744637230712, "top": 390, "right": 3215, "bottom": 1985, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732435f.jpg"} -{"rects": [{"solidity": 0.9971745696819042, "top": 435, "right": 2485, "bottom": 1965, "left": 205}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715765f.jpg"} -{"rects": [{"solidity": 0.997174679635195, "top": 690, "right": 3340, "bottom": 2605, "left": 555}, {"solidity": 0.9974459604099258, "top": 3215, "right": 3310, "bottom": 5115, "left": 595}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715380f.jpg"} -{"rects": [{"solidity": 0.9971747412861041, "top": 635, "right": 3700, "bottom": 3055, "left": 2080}, {"solidity": 0.9964323535489203, "top": 645, "right": 5605, "bottom": 3055, "left": 3980}, {"solidity": 0.9953726802257897, "top": 950, "right": 1850, "bottom": 2765, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704833f.jpg"} -{"rects": [{"solidity": 0.997175002857656, "top": 820, "right": 2165, "bottom": 3220, "left": 560}, {"solidity": 0.9972351856935566, "top": 825, "right": 4020, "bottom": 3225, "left": 2415}, {"solidity": 0.9955011108166384, "top": 820, "right": 5870, "bottom": 3225, "left": 4265}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710188f.jpg"} -{"rects": [{"solidity": 0.9971752396454482, "top": 360, "right": 3205, "bottom": 1995, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701299f.jpg"} -{"rects": [{"solidity": 0.9971752526497412, "top": 465, "right": 2875, "bottom": 1870, "left": 1055}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711876f.jpg"} -{"rects": [{"solidity": 0.9971754140311911, "top": 2290, "right": 2855, "bottom": 3735, "left": 1050}, {"solidity": 0.9960092636768448, "top": 640, "right": 2870, "bottom": 2050, "left": 1060}, {"solidity": 0.9946211026739519, "top": 2265, "right": 5055, "bottom": 3665, "left": 3245}, {"solidity": 0.9945754799673426, "top": 620, "right": 5045, "bottom": 2030, "left": 3255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726262f.jpg"} -{"rects": [{"solidity": 0.9971756597909924, "top": 2210, "right": 3135, "bottom": 3830, "left": 715}, {"solidity": 0.9957154186896725, "top": 365, "right": 3150, "bottom": 1990, "left": 725}, {"solidity": 0.9969286873533044, "top": 4065, "right": 3125, "bottom": 5680, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701797f.jpg"} -{"rects": [{"solidity": 0.9971756942817438, "top": 425, "right": 3110, "bottom": 2050, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700502f.jpg"} -{"rects": [{"solidity": 0.9971757797962812, "top": 650, "right": 4790, "bottom": 3300, "left": 1345}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701503f.jpg"} -{"rects": [{"solidity": 0.9971757986037656, "top": 495, "right": 3070, "bottom": 1845, "left": 1295}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726752f.jpg"} -{"rects": [{"solidity": 0.9971759819366359, "top": 765, "right": 2010, "bottom": 3180, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713113f.jpg"} -{"rects": [{"solidity": 0.9971760765912359, "top": 370, "right": 3370, "bottom": 2305, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718541f.jpg"} -{"rects": [{"solidity": 0.9971761383692199, "top": 435, "right": 3100, "bottom": 2060, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701111f.jpg"} -{"rects": [{"solidity": 0.997176216257703, "top": 2250, "right": 3360, "bottom": 3885, "left": 940}, {"solidity": 0.996279182957249, "top": 4085, "right": 3335, "bottom": 5730, "left": 915}, {"solidity": 0.9964069664393327, "top": 400, "right": 3370, "bottom": 2030, "left": 950}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704759f.jpg"} -{"rects": [{"solidity": 0.9971765508441923, "top": 800, "right": 2055, "bottom": 3245, "left": 425}, {"solidity": 0.9971960452819656, "top": 805, "right": 3895, "bottom": 3240, "left": 2265}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733976f.jpg"} -{"rects": [{"solidity": 0.9971766749918558, "top": 500, "right": 5020, "bottom": 3665, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729982f.jpg"} -{"rects": [{"solidity": 0.9971767508490672, "top": 400, "right": 3335, "bottom": 2030, "left": 920}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705918f.jpg"} -{"rects": [{"solidity": 0.9971768403896154, "top": 670, "right": 2625, "bottom": 2115, "left": 825}, {"solidity": 0.9958246346555324, "top": 2145, "right": 2635, "bottom": 3560, "left": 815}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729970f.jpg"} -{"rects": [{"solidity": 0.9971768539598338, "top": 955, "right": 2635, "bottom": 3990, "left": 190}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507599.jpg"} -{"rects": [{"solidity": 0.9971769320680706, "top": 565, "right": 2775, "bottom": 1980, "left": 975}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707359f.jpg"} -{"rects": [{"solidity": 0.9971769641230211, "top": 1035, "right": 3520, "bottom": 5000, "left": 860}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/731401f.jpg"} -{"rects": [{"solidity": 0.9971771325305837, "top": 780, "right": 5680, "bottom": 3195, "left": 4050}, {"solidity": 0.9990225991788547, "top": 770, "right": 3800, "bottom": 3185, "left": 2180}, {"solidity": 0.9974049055656082, "top": 765, "right": 1935, "bottom": 3180, "left": 315}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700243f.jpg"} -{"rects": [{"solidity": 0.9971771415909167, "top": 655, "right": 2665, "bottom": 2080, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705637f.jpg"} -{"rects": [{"solidity": 0.997177307385621, "top": 325, "right": 3520, "bottom": 2145, "left": 800}], "shape": {"h": 6885, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/703403f.jpg"} -{"rects": [{"solidity": 0.9971773158840134, "top": 780, "right": 2035, "bottom": 3180, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712615f.jpg"} -{"rects": [{"solidity": 0.9971774335814839, "top": 440, "right": 3015, "bottom": 2075, "left": 605}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706337f.jpg"} -{"rects": [{"solidity": 0.9971774729727356, "top": 3300, "right": 3155, "bottom": 5170, "left": 470}, {"solidity": 0.9940890875868207, "top": 765, "right": 3145, "bottom": 2610, "left": 525}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715349f.jpg"} -{"rects": [{"solidity": 0.9971775874787517, "top": 800, "right": 3810, "bottom": 3225, "left": 2185}, {"solidity": 0.9962442187910939, "top": 820, "right": 2015, "bottom": 3250, "left": 385}, {"solidity": 0.9962487394094334, "top": 780, "right": 5625, "bottom": 3205, "left": 4000}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731766f.jpg"} -{"rects": [{"solidity": 0.9971780031543135, "top": 1390, "right": 2495, "bottom": 4445, "left": 200}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508795.jpg"} -{"rects": [{"solidity": 0.9971780755514006, "top": 725, "right": 5625, "bottom": 2760, "left": 2400}, {"solidity": 0.9976189689904561, "top": 765, "right": 2090, "bottom": 3160, "left": 500}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708653f.jpg"} -{"rects": [{"solidity": 0.9971781458975744, "top": 435, "right": 3130, "bottom": 2010, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734074f.jpg"} -{"rects": [{"solidity": 0.997179078939545, "top": 435, "right": 3120, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728882f.jpg"} -{"rects": [{"solidity": 0.9971791654480787, "top": 380, "right": 3090, "bottom": 2035, "left": 660}, {"solidity": 0.9973095162820107, "top": 2265, "right": 3100, "bottom": 3900, "left": 660}, {"solidity": 0.9962207657637613, "top": 4135, "right": 3090, "bottom": 5755, "left": 640}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731276f.jpg"} -{"rects": [{"solidity": 0.9971791797824122, "top": 375, "right": 3045, "bottom": 2000, "left": 630}, {"solidity": 0.9932710798161385, "top": 2215, "right": 3060, "bottom": 3845, "left": 625}, {"solidity": 0.9947523082994413, "top": 4070, "right": 3030, "bottom": 5690, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728426f.jpg"} -{"rects": [{"solidity": 0.9971792261986822, "top": 1010, "right": 3475, "bottom": 5070, "left": 290}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711858f.jpg"} -{"rects": [{"solidity": 0.9971792511654146, "top": 735, "right": 2010, "bottom": 3135, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722669f.jpg"} -{"rects": [{"solidity": 0.9971795577795601, "top": 735, "right": 2380, "bottom": 3485, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704282f.jpg"} -{"rects": [{"solidity": 0.9971797413010156, "top": 380, "right": 3245, "bottom": 2010, "left": 815}, {"solidity": 0.9961706695720443, "top": 4120, "right": 3270, "bottom": 5740, "left": 835}, {"solidity": 0.9974914078309189, "top": 2265, "right": 3265, "bottom": 3885, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731659f.jpg"} -{"rects": [{"solidity": 0.9971797440178075, "top": 670, "right": 3240, "bottom": 2680, "left": 425}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729141f.jpg"} -{"rects": [{"solidity": 0.9971798232089629, "top": 425, "right": 3150, "bottom": 2045, "left": 720}, {"solidity": 0.9948833262895728, "top": 2245, "right": 3175, "bottom": 3860, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720451f.jpg"} -{"rects": [{"solidity": 0.9971799137499394, "top": 795, "right": 3900, "bottom": 3210, "left": 2285}, {"solidity": 0.9946193838399892, "top": 800, "right": 2015, "bottom": 3215, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721569f.jpg"} -{"rects": [{"solidity": 0.9971800155789349, "top": 655, "right": 2640, "bottom": 2065, "left": 825}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704270f.jpg"} -{"rects": [{"solidity": 0.9971801290715605, "top": 685, "right": 3340, "bottom": 2595, "left": 560}, {"solidity": 0.9949359627687661, "top": 3285, "right": 3300, "bottom": 5195, "left": 580}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715366f.jpg"} -{"rects": [{"solidity": 0.997180357561491, "top": 500, "right": 2985, "bottom": 2130, "left": 565}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712223f.jpg"} -{"rects": [{"solidity": 0.9971806174488007, "top": 495, "right": 2450, "bottom": 2580, "left": 945}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508103.jpg"} -{"rects": [{"solidity": 0.9971806630007676, "top": 325, "right": 5345, "bottom": 3595, "left": 1260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733550f.jpg"} -{"rects": [{"solidity": 0.9971806931257802, "top": 765, "right": 5710, "bottom": 3175, "left": 4105}, {"solidity": 0.9973453347682875, "top": 755, "right": 3850, "bottom": 3155, "left": 2240}, {"solidity": 0.9973600348864513, "top": 770, "right": 1995, "bottom": 3140, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723472f.jpg"} -{"rects": [{"solidity": 0.9971809077590006, "top": 310, "right": 5125, "bottom": 3565, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703257f.jpg"} -{"rects": [{"solidity": 0.9971810122320727, "top": 1260, "right": 3475, "bottom": 4865, "left": 365}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716550f.jpg"} -{"rects": [{"solidity": 0.9971812527127698, "top": 375, "right": 3840, "bottom": 2840, "left": 815}], "shape": {"h": 3040, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715789f.jpg"} -{"rects": [{"solidity": 0.9971812948668033, "top": 410, "right": 3105, "bottom": 2030, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702105f.jpg"} -{"rects": [{"solidity": 0.9971813341684935, "top": 805, "right": 3970, "bottom": 3200, "left": 2375}, {"solidity": 0.995338670073663, "top": 790, "right": 5780, "bottom": 3190, "left": 4200}, {"solidity": 0.9559168278068227, "top": 850, "right": 2130, "bottom": 3165, "left": 900}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707600f.jpg"} -{"rects": [{"solidity": 0.997181585982936, "top": 1195, "right": 3630, "bottom": 5270, "left": 375}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723846f.jpg"} -{"rects": [{"solidity": 0.9971817847382805, "top": 480, "right": 3645, "bottom": 2530, "left": 835}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731270f.jpg"} -{"rects": [{"solidity": 0.9971818114289702, "top": 525, "right": 3740, "bottom": 2550, "left": 965}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733568f.jpg"} -{"rects": [{"solidity": 0.9971819178109865, "top": 355, "right": 3835, "bottom": 2185, "left": 1110}], "shape": {"h": 4420, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/711335f.jpg"} -{"rects": [{"solidity": 0.9971819684496012, "top": 815, "right": 2040, "bottom": 3245, "left": 420}, {"solidity": 0.9964475336697363, "top": 835, "right": 5650, "bottom": 3265, "left": 4025}, {"solidity": 0.9987367064131486, "top": 825, "right": 3830, "bottom": 3250, "left": 2220}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717505f.jpg"} -{"rects": [{"solidity": 0.9971821033318388, "top": 505, "right": 5045, "bottom": 3755, "left": 1005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705960f.jpg"} -{"rects": [{"solidity": 0.9971821547231204, "top": 645, "right": 2525, "bottom": 2145, "left": 435}, {"solidity": 0.9986893680067404, "top": 2425, "right": 2520, "bottom": 3905, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716115f.jpg"} -{"rects": [{"solidity": 0.9971822266472645, "top": 930, "right": 5710, "bottom": 3365, "left": 4080}, {"solidity": 0.9977893492636488, "top": 915, "right": 3850, "bottom": 3345, "left": 2225}, {"solidity": 0.9987072001234913, "top": 920, "right": 2015, "bottom": 3335, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701927f.jpg"} -{"rects": [{"solidity": 0.9971824945944375, "top": 620, "right": 2555, "bottom": 3670, "left": 495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715524f.jpg"} -{"rects": [{"solidity": 0.9971826835874714, "top": 1040, "right": 3415, "bottom": 5040, "left": 785}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/731788f.jpg"} -{"rects": [{"solidity": 0.9971829671673295, "top": 800, "right": 3620, "bottom": 3240, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721155f.jpg"} -{"rects": [{"solidity": 0.9971830865749404, "top": 240, "right": 3585, "bottom": 2865, "left": 210}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734430f.jpg"} -{"rects": [{"solidity": 0.9971831724888753, "top": 410, "right": 3145, "bottom": 2005, "left": 730}, {"solidity": 0.9943078939207507, "top": 2220, "right": 2790, "bottom": 3625, "left": 995}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/704130f.jpg"} -{"rects": [{"solidity": 0.9971833155825278, "top": 3970, "right": 3015, "bottom": 5565, "left": 655}, {"solidity": 0.9955362914475072, "top": 465, "right": 3000, "bottom": 2065, "left": 635}, {"solidity": 0.9963868188965611, "top": 2235, "right": 3015, "bottom": 3795, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724360f.jpg"} -{"rects": [{"solidity": 0.9971836000330593, "top": 395, "right": 3265, "bottom": 2035, "left": 835}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701409f.jpg"} -{"rects": [{"solidity": 0.9971836811060453, "top": 430, "right": 3120, "bottom": 2030, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700459f.jpg"} -{"rects": [{"solidity": 0.9971838981305758, "top": 550, "right": 5005, "bottom": 1875, "left": 3290}, {"solidity": 0.9926520002888103, "top": 2220, "right": 5025, "bottom": 3530, "left": 3275}, {"solidity": 0.9967790435110678, "top": 2205, "right": 2725, "bottom": 3520, "left": 1020}, {"solidity": 0.9981172825546157, "top": 560, "right": 2715, "bottom": 1880, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706755f.jpg"} -{"rects": [{"solidity": 0.9971839556683412, "top": 410, "right": 3105, "bottom": 2025, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729175f.jpg"} -{"rects": [{"solidity": 0.997184014899527, "top": 2295, "right": 3030, "bottom": 3930, "left": 605}, {"solidity": 0.996935380678183, "top": 425, "right": 3020, "bottom": 2065, "left": 600}, {"solidity": 0.9966700570754808, "top": 4135, "right": 3025, "bottom": 5750, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734416f.jpg"} -{"rects": [{"solidity": 0.9971842239836359, "top": 370, "right": 3110, "bottom": 2010, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704046f.jpg"} -{"rects": [{"solidity": 0.9971842547720304, "top": 590, "right": 5270, "bottom": 3510, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708353f.jpg"} -{"rects": [{"solidity": 0.9971843914379459, "top": 2255, "right": 3160, "bottom": 3865, "left": 755}, {"solidity": 0.9962551938832662, "top": 450, "right": 3160, "bottom": 2060, "left": 750}, {"solidity": 0.995915812942277, "top": 4060, "right": 3175, "bottom": 5665, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732179f.jpg"} -{"rects": [{"solidity": 0.997184420459878, "top": 450, "right": 3200, "bottom": 2075, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731447f.jpg"} -{"rects": [{"solidity": 0.9971844299995426, "top": 770, "right": 5265, "bottom": 2165, "left": 3485}, {"solidity": 0.9959202635808765, "top": 785, "right": 2575, "bottom": 2125, "left": 795}, {"solidity": 0.9951174954600319, "top": 2155, "right": 2545, "bottom": 3465, "left": 760}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725577f.jpg"} -{"rects": [{"solidity": 0.9971845015638561, "top": 315, "right": 4965, "bottom": 3685, "left": 950}], "shape": {"h": 3865, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723583f.jpg"} -{"rects": [{"solidity": 0.9971847609465395, "top": 895, "right": 3920, "bottom": 3315, "left": 2305}, {"solidity": 0.9957668848340819, "top": 895, "right": 2025, "bottom": 3310, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730472f.jpg"} -{"rects": [{"solidity": 0.9971848312851489, "top": 2275, "right": 3145, "bottom": 3880, "left": 735}, {"solidity": 0.9966496594201008, "top": 405, "right": 3155, "bottom": 2010, "left": 745}, {"solidity": 0.9957557538999391, "top": 4130, "right": 3125, "bottom": 5725, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729567f.jpg"} -{"rects": [{"solidity": 0.9971849339590318, "top": 435, "right": 5095, "bottom": 3675, "left": 1070}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703331f.jpg"} -{"rects": [{"solidity": 0.9971849845554558, "top": 690, "right": 2585, "bottom": 2080, "left": 795}, {"solidity": 0.9938002356329363, "top": 685, "right": 5235, "bottom": 2060, "left": 3475}, {"solidity": 0.9965682837728846, "top": 2145, "right": 2575, "bottom": 3500, "left": 810}, {"solidity": 0.9925689603108958, "top": 2125, "right": 5270, "bottom": 3205, "left": 3475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731347f.jpg"} -{"rects": [{"solidity": 0.9971850038649832, "top": 480, "right": 3070, "bottom": 2100, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707209f.jpg"} -{"rects": [{"solidity": 0.9971850651534123, "top": 870, "right": 2055, "bottom": 3305, "left": 435}, {"solidity": 0.996444714012408, "top": 885, "right": 3855, "bottom": 3310, "left": 2245}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730355f.jpg"} -{"rects": [{"solidity": 0.997185126996596, "top": 410, "right": 3150, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701592f.jpg"} -{"rects": [{"solidity": 0.9971854209129716, "top": 605, "right": 5205, "bottom": 3460, "left": 3370}, {"solidity": 0.9975690500930333, "top": 2100, "right": 2770, "bottom": 3530, "left": 945}, {"solidity": 0.9975103092534312, "top": 660, "right": 2760, "bottom": 2095, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703310f.jpg"} -{"rects": [{"solidity": 0.997185532176317, "top": 490, "right": 4700, "bottom": 3720, "left": 645}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725644f.jpg"} -{"rects": [{"solidity": 0.9971855972890169, "top": 520, "right": 5040, "bottom": 3675, "left": 1125}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709040f.jpg"} -{"rects": [{"solidity": 0.9971856207119791, "top": 420, "right": 5185, "bottom": 3635, "left": 1125}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700823f.jpg"} -{"rects": [{"solidity": 0.9971856548808785, "top": 675, "right": 1515, "bottom": 2485, "left": 300}, {"solidity": 0.99880994537359, "top": 680, "right": 2830, "bottom": 2480, "left": 1625}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715938f.jpg"} -{"rects": [{"solidity": 0.9971857166998142, "top": 2245, "right": 3140, "bottom": 3855, "left": 730}, {"solidity": 0.9966325036603221, "top": 420, "right": 3140, "bottom": 2030, "left": 735}, {"solidity": 0.9957860274927193, "top": 4090, "right": 3140, "bottom": 5705, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714246f.jpg"} -{"rects": [{"solidity": 0.9971857502231599, "top": 2225, "right": 3100, "bottom": 3835, "left": 690}, {"solidity": 0.9933490184832764, "top": 380, "right": 3085, "bottom": 1980, "left": 670}, {"solidity": 0.9941720834312266, "top": 4065, "right": 3090, "bottom": 5675, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722901f.jpg"} -{"rects": [{"solidity": 0.9971858008834609, "top": 2225, "right": 3095, "bottom": 3855, "left": 665}, {"solidity": 0.9974192354684455, "top": 365, "right": 3105, "bottom": 1995, "left": 680}, {"solidity": 0.9958295191944538, "top": 4095, "right": 3065, "bottom": 5720, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701635f.jpg"} -{"rects": [{"solidity": 0.9971861509861638, "top": 415, "right": 5050, "bottom": 3640, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708423f.jpg"} -{"rects": [{"solidity": 0.9971863051845945, "top": 425, "right": 3205, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718745f.jpg"} -{"rects": [{"solidity": 0.9971864047075468, "top": 355, "right": 3200, "bottom": 1975, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701894f.jpg"} -{"rects": [{"solidity": 0.9971867526816242, "top": 2050, "right": 2855, "bottom": 3690, "left": 430}, {"solidity": 0.9981958894328845, "top": 2055, "right": 5720, "bottom": 3690, "left": 3305}, {"solidity": 0.9981553485268453, "top": 365, "right": 2835, "bottom": 1990, "left": 420}, {"solidity": 0.9993657416797864, "top": 365, "right": 5715, "bottom": 1985, "left": 3305}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726516f.jpg"} -{"rects": [{"solidity": 0.9971867804372051, "top": 805, "right": 3880, "bottom": 3235, "left": 2265}, {"solidity": 0.9961538461538462, "top": 805, "right": 2065, "bottom": 3220, "left": 445}, {"solidity": 0.9950609207091546, "top": 800, "right": 5695, "bottom": 3215, "left": 4085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733195f.jpg"} -{"rects": [{"solidity": 0.9971870604781997, "top": 810, "right": 2360, "bottom": 3525, "left": 545}], "shape": {"h": 4410, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711373f.jpg"} -{"rects": [{"solidity": 0.9971874656119932, "top": 525, "right": 5665, "bottom": 2145, "left": 3255}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705950f.jpg"} -{"rects": [{"solidity": 0.9971876409778947, "top": 2070, "right": 2705, "bottom": 3510, "left": 875}, {"solidity": 0.9966950362822294, "top": 615, "right": 5290, "bottom": 2045, "left": 3460}, {"solidity": 0.9976151408988554, "top": 610, "right": 2730, "bottom": 1995, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705255f.jpg"} -{"rects": [{"solidity": 0.9971876472157424, "top": 280, "right": 5015, "bottom": 3540, "left": 865}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705945f.jpg"} -{"rects": [{"solidity": 0.9971879634563653, "top": 430, "right": 3200, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702179f.jpg"} -{"rects": [{"solidity": 0.9971879873438965, "top": 530, "right": 3920, "bottom": 2615, "left": 2440}, {"solidity": 0.9955062757183932, "top": 530, "right": 2060, "bottom": 2570, "left": 620}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716075f.jpg"} -{"rects": [{"solidity": 0.997188071774789, "top": 405, "right": 3130, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729799f.jpg"} -{"rects": [{"solidity": 0.9971881432285465, "top": 790, "right": 2085, "bottom": 3200, "left": 485}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718307f.jpg"} -{"rects": [{"solidity": 0.9971882482365884, "top": 915, "right": 2045, "bottom": 3320, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703945f.jpg"} -{"rects": [{"solidity": 0.9971882580070294, "top": 435, "right": 3155, "bottom": 2030, "left": 765}, {"solidity": 0.9956428749067396, "top": 2290, "right": 3150, "bottom": 3885, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/734007f.jpg"} -{"rects": [{"solidity": 0.997188415790381, "top": 950, "right": 2610, "bottom": 3960, "left": 175}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508319.jpg"} -{"rects": [{"solidity": 0.9971885183308146, "top": 1050, "right": 3220, "bottom": 4995, "left": 430}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708554f.jpg"} -{"rects": [{"solidity": 0.9971889018760244, "top": 805, "right": 2030, "bottom": 3215, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719902f.jpg"} -{"rects": [{"solidity": 0.9971889546998521, "top": 825, "right": 4735, "bottom": 3180, "left": 1415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701840f.jpg"} -{"rects": [{"solidity": 0.9971891158880781, "top": 485, "right": 3485, "bottom": 2865, "left": 275}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732159f.jpg"} -{"rects": [{"solidity": 0.9971893262123147, "top": 2250, "right": 3095, "bottom": 3660, "left": 1245}, {"solidity": 0.99614231228346, "top": 515, "right": 3085, "bottom": 1930, "left": 1245}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725996f.jpg"} -{"rects": [{"solidity": 0.9971894917283544, "top": 375, "right": 3370, "bottom": 2285, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718523f.jpg"} -{"rects": [{"solidity": 0.9971895806684029, "top": 365, "right": 3915, "bottom": 2830, "left": 900}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507558.jpg"} -{"rects": [{"solidity": 0.9971896280460709, "top": 980, "right": 3545, "bottom": 4930, "left": 355}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708657f.jpg"} -{"rects": [{"solidity": 0.9971896782872701, "top": 785, "right": 4755, "bottom": 3230, "left": 1410}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730507f.jpg"} -{"rects": [{"solidity": 0.9971898477674902, "top": 380, "right": 3065, "bottom": 2010, "left": 640}, {"solidity": 0.9989561786562476, "top": 2255, "right": 3060, "bottom": 3880, "left": 635}, {"solidity": 0.9997312172020991, "top": 4110, "right": 3050, "bottom": 5730, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721131f.jpg"} -{"rects": [{"solidity": 0.9971898656743048, "top": 2360, "right": 3065, "bottom": 3990, "left": 635}, {"solidity": 0.9915054925556112, "top": 460, "right": 3065, "bottom": 2080, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733466f.jpg"} -{"rects": [{"solidity": 0.9971898835808912, "top": 450, "right": 3205, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733979f.jpg"} -{"rects": [{"solidity": 0.997190086910515, "top": 2185, "right": 3185, "bottom": 3805, "left": 775}, {"solidity": 0.9970107026645584, "top": 350, "right": 3180, "bottom": 1950, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733530f.jpg"} -{"rects": [{"solidity": 0.9971901166416752, "top": 835, "right": 3830, "bottom": 3215, "left": 2230}, {"solidity": 0.9969278135720305, "top": 825, "right": 2020, "bottom": 3205, "left": 415}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702618f.jpg"} -{"rects": [{"solidity": 0.9971901377793608, "top": 775, "right": 4705, "bottom": 3395, "left": 1310}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708480f.jpg"} -{"rects": [{"solidity": 0.9971901761654056, "top": 680, "right": 3900, "bottom": 3110, "left": 2275}, {"solidity": 0.9975248006539976, "top": 685, "right": 2045, "bottom": 3105, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731935f.jpg"} -{"rects": [{"solidity": 0.9971901765990155, "top": 420, "right": 3275, "bottom": 2035, "left": 855}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706000f.jpg"} -{"rects": [{"solidity": 0.9971906280496472, "top": 460, "right": 5110, "bottom": 3720, "left": 1065}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730068f.jpg"} -{"rects": [{"solidity": 0.9971906941340016, "top": 400, "right": 3150, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729802f.jpg"} -{"rects": [{"solidity": 0.9971910250062503, "top": 2270, "right": 2725, "bottom": 3690, "left": 910}, {"solidity": 0.9970944095653413, "top": 655, "right": 4985, "bottom": 2080, "left": 3180}, {"solidity": 0.9960328761647805, "top": 660, "right": 2715, "bottom": 2060, "left": 910}, {"solidity": 0.9942364406652794, "top": 2250, "right": 4990, "bottom": 3680, "left": 3200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726218f.jpg"} -{"rects": [{"solidity": 0.9971910562718647, "top": 805, "right": 3850, "bottom": 3230, "left": 2230}, {"solidity": 0.9975986487967458, "top": 810, "right": 5655, "bottom": 3230, "left": 4040}, {"solidity": 0.9988442366796663, "top": 800, "right": 2040, "bottom": 3220, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709404f.jpg"} -{"rects": [{"solidity": 0.9971912885331673, "top": 405, "right": 5120, "bottom": 3695, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725004f.jpg"} -{"rects": [{"solidity": 0.9971914034216174, "top": 840, "right": 4000, "bottom": 3250, "left": 2390}, {"solidity": 0.9356509635241366, "top": 985, "right": 2055, "bottom": 3235, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712511f.jpg"} -{"rects": [{"solidity": 0.9971914881900242, "top": 610, "right": 2250, "bottom": 3400, "left": 285}, {"solidity": 0.9967977696169488, "top": 850, "right": 4120, "bottom": 3215, "left": 2495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715213f.jpg"} -{"rects": [{"solidity": 0.9971916049702815, "top": 485, "right": 3320, "bottom": 3890, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714748f.jpg"} -{"rects": [{"solidity": 0.9971917441845295, "top": 800, "right": 2125, "bottom": 3205, "left": 520}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721470f.jpg"} -{"rects": [{"solidity": 0.9971918967081181, "top": 395, "right": 3320, "bottom": 2020, "left": 910}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727819f.jpg"} -{"rects": [{"solidity": 0.997191902678271, "top": 895, "right": 3905, "bottom": 3310, "left": 2275}, {"solidity": 0.9968787391774371, "top": 875, "right": 2045, "bottom": 3290, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702134f.jpg"} -{"rects": [{"solidity": 0.9971922546700899, "top": 750, "right": 3950, "bottom": 3180, "left": 2305}, {"solidity": 0.9969490653460059, "top": 740, "right": 2055, "bottom": 3160, "left": 450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726075f.jpg"} -{"rects": [{"solidity": 0.9971922943012199, "top": 410, "right": 3265, "bottom": 2030, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703115f.jpg"} -{"rects": [{"solidity": 0.9971923832073464, "top": 530, "right": 3130, "bottom": 2155, "left": 725}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710875f.jpg"} -{"rects": [{"solidity": 0.9971924352158031, "top": 595, "right": 4990, "bottom": 3595, "left": 1215}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717312f.jpg"} -{"rects": [{"solidity": 0.9971925722936589, "top": 635, "right": 5640, "bottom": 3060, "left": 4010}, {"solidity": 0.9981206169293274, "top": 635, "right": 3830, "bottom": 3030, "left": 2205}, {"solidity": 0.9972610988626761, "top": 625, "right": 1985, "bottom": 3040, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703938f.jpg"} -{"rects": [{"solidity": 0.9971926965192646, "top": 410, "right": 3210, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734448f.jpg"} -{"rects": [{"solidity": 0.9971927424325048, "top": 855, "right": 1945, "bottom": 3265, "left": 325}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713670f.jpg"} -{"rects": [{"solidity": 0.9971927550527442, "top": 1255, "right": 3255, "bottom": 5135, "left": 515}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716934f.jpg"} -{"rects": [{"solidity": 0.9971928847561015, "top": 360, "right": 3205, "bottom": 1975, "left": 795}, {"solidity": 0.998796862059746, "top": 2235, "right": 3200, "bottom": 3845, "left": 805}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/733908f.jpg"} -{"rects": [{"solidity": 0.9971930636401276, "top": 1070, "right": 2665, "bottom": 3840, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1517139.jpg"} -{"rects": [{"solidity": 0.997193070858003, "top": 395, "right": 3270, "bottom": 2015, "left": 855}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/706951f.jpg"} -{"rects": [{"solidity": 0.9971931477284574, "top": 390, "right": 2770, "bottom": 3610, "left": 740}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732993f.jpg"} -{"rects": [{"solidity": 0.9971933872833869, "top": 625, "right": 3225, "bottom": 2250, "left": 825}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706489f.jpg"} -{"rects": [{"solidity": 0.99719346627474, "top": 440, "right": 5160, "bottom": 3660, "left": 1075}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708224f.jpg"} -{"rects": [{"solidity": 0.9971935849709427, "top": 890, "right": 3970, "bottom": 3310, "left": 2340}, {"solidity": 0.9988906964033337, "top": 885, "right": 2060, "bottom": 3300, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701892f.jpg"} -{"rects": [{"solidity": 0.9971935861137828, "top": 695, "right": 2595, "bottom": 3515, "left": 615}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703581f.jpg"} -{"rects": [{"solidity": 0.9971936570509973, "top": 285, "right": 2660, "bottom": 3445, "left": 190}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508847.jpg"} -{"rects": [{"solidity": 0.9971938270683766, "top": 760, "right": 2005, "bottom": 3170, "left": 390}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719236f.jpg"} -{"rects": [{"solidity": 0.9971939063881852, "top": 835, "right": 2060, "bottom": 3220, "left": 470}, {"solidity": 0.9962709633676989, "top": 830, "right": 3890, "bottom": 3215, "left": 2300}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709628f.jpg"} -{"rects": [{"solidity": 0.9971940526115135, "top": 705, "right": 4990, "bottom": 2105, "left": 3215}, {"solidity": 0.9961856519483689, "top": 2240, "right": 2845, "bottom": 3635, "left": 1060}, {"solidity": 0.9983869074054222, "top": 705, "right": 2835, "bottom": 2100, "left": 1065}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702645f.jpg"} -{"rects": [{"solidity": 0.9971940942052656, "top": 370, "right": 3070, "bottom": 1975, "left": 665}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/712694f.jpg"} -{"rects": [{"solidity": 0.9971942543489057, "top": 805, "right": 3915, "bottom": 3225, "left": 2300}, {"solidity": 0.9965166504110352, "top": 795, "right": 2060, "bottom": 3215, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731701f.jpg"} -{"rects": [{"solidity": 0.9971942612799328, "top": 425, "right": 5010, "bottom": 3655, "left": 995}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707554f.jpg"} -{"rects": [{"solidity": 0.997194352208185, "top": 390, "right": 3270, "bottom": 1985, "left": 845}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725720f.jpg"} -{"rects": [{"solidity": 0.9971943756255229, "top": 680, "right": 2430, "bottom": 3720, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714174f.jpg"} -{"rects": [{"solidity": 0.9971944787341488, "top": 430, "right": 3230, "bottom": 2055, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705827f.jpg"} -{"rects": [{"solidity": 0.9971945239740678, "top": 280, "right": 2045, "bottom": 1290, "left": 525}], "shape": {"h": 3920, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727047f.jpg"} -{"rects": [{"solidity": 0.9971945633693846, "top": 395, "right": 3225, "bottom": 2010, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719681f.jpg"} -{"rects": [{"solidity": 0.997194595669097, "top": 2225, "right": 3180, "bottom": 3845, "left": 750}, {"solidity": 0.9967418156353945, "top": 430, "right": 3175, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733147f.jpg"} -{"rects": [{"solidity": 0.9971946832568391, "top": 2210, "right": 3120, "bottom": 3850, "left": 700}, {"solidity": 0.9974437889510257, "top": 340, "right": 3135, "bottom": 1970, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723135f.jpg"} -{"rects": [{"solidity": 0.9971948352756654, "top": 460, "right": 5085, "bottom": 3690, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708194f.jpg"} -{"rects": [{"solidity": 0.9971948387592039, "top": 840, "right": 3845, "bottom": 3270, "left": 2220}, {"solidity": 0.9965583198665905, "top": 845, "right": 1970, "bottom": 3270, "left": 345}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728972f.jpg"} -{"rects": [{"solidity": 0.997194856055214, "top": 415, "right": 3235, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713680f.jpg"} -{"rects": [{"solidity": 0.9971950466408814, "top": 780, "right": 2005, "bottom": 3180, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718724f.jpg"} -{"rects": [{"solidity": 0.9971951035986565, "top": 1190, "right": 2860, "bottom": 2825, "left": 445}, {"solidity": 0.9971314361792788, "top": 1205, "right": 5555, "bottom": 2835, "left": 3150}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722890f.jpg"} -{"rects": [{"solidity": 0.9971951892009444, "top": 435, "right": 5055, "bottom": 3665, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708476f.jpg"} -{"rects": [{"solidity": 0.9971952486482836, "top": 505, "right": 3185, "bottom": 2125, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718121f.jpg"} -{"rects": [{"solidity": 0.9971952981197139, "top": 480, "right": 5130, "bottom": 3715, "left": 1120}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708591f.jpg"} -{"rects": [{"solidity": 0.9971953757903275, "top": 260, "right": 3265, "bottom": 1865, "left": 855}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734159f.jpg"} -{"rects": [{"solidity": 0.9971956403993254, "top": 440, "right": 4935, "bottom": 3720, "left": 920}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722727f.jpg"} -{"rects": [{"solidity": 0.9971958090091009, "top": 3520, "right": 2750, "bottom": 5935, "left": 1115}, {"solidity": 0.9963268846886881, "top": 1830, "right": 3155, "bottom": 3460, "left": 740}, {"solidity": 0.9974718991871183, "top": 160, "right": 3145, "bottom": 1770, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710604f.jpg"} -{"rects": [{"solidity": 0.9971958641166104, "top": 410, "right": 5160, "bottom": 3660, "left": 1135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732696f.jpg"} -{"rects": [{"solidity": 0.9971958851385961, "top": 635, "right": 2490, "bottom": 3695, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719622f.jpg"} -{"rects": [{"solidity": 0.9971961000003264, "top": 780, "right": 1980, "bottom": 3185, "left": 375}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721527f.jpg"} -{"rects": [{"solidity": 0.9971962223466907, "top": 445, "right": 3195, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722679f.jpg"} -{"rects": [{"solidity": 0.9971962376974504, "top": 905, "right": 3955, "bottom": 3335, "left": 2335}, {"solidity": 0.9969172570556321, "top": 910, "right": 2070, "bottom": 3305, "left": 485}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701357f.jpg"} -{"rects": [{"solidity": 0.9971964088832888, "top": 1010, "right": 3565, "bottom": 2920, "left": 2095}, {"solidity": 0.9978155306667638, "top": 995, "right": 1815, "bottom": 2885, "left": 345}, {"solidity": 0.995823094519072, "top": 1090, "right": 5225, "bottom": 2905, "left": 3895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731406f.jpg"} -{"rects": [{"solidity": 0.9971964852408822, "top": 805, "right": 3880, "bottom": 3235, "left": 2250}, {"solidity": 0.9971924205001543, "top": 790, "right": 2150, "bottom": 3225, "left": 540}, {"solidity": 0.9974565930581089, "top": 805, "right": 5645, "bottom": 3235, "left": 4035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733182f.jpg"} -{"rects": [{"solidity": 0.9971966958558192, "top": 2185, "right": 3215, "bottom": 3830, "left": 790}, {"solidity": 0.9966356282465705, "top": 4050, "right": 3210, "bottom": 5675, "left": 800}, {"solidity": 0.9970211133427687, "top": 350, "right": 3200, "bottom": 1975, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730531f.jpg"} -{"rects": [{"solidity": 0.997196739672284, "top": 2310, "right": 3075, "bottom": 3925, "left": 665}, {"solidity": 0.996654489396707, "top": 440, "right": 3080, "bottom": 2055, "left": 670}, {"solidity": 0.994718703699501, "top": 4160, "right": 3075, "bottom": 5770, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729880f.jpg"} -{"rects": [{"solidity": 0.9971967754927219, "top": 440, "right": 3270, "bottom": 2065, "left": 840}, {"solidity": 0.998638806505544, "top": 2280, "right": 3260, "bottom": 3900, "left": 835}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700040f.jpg"} -{"rects": [{"solidity": 0.9971968732602545, "top": 770, "right": 2050, "bottom": 3180, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712641f.jpg"} -{"rects": [{"solidity": 0.9971968917432494, "top": 615, "right": 3335, "bottom": 2240, "left": 925}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706493f.jpg"} -{"rects": [{"solidity": 0.9971968964956422, "top": 770, "right": 2035, "bottom": 3190, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710960f.jpg"} -{"rects": [{"solidity": 0.9971970194346257, "top": 325, "right": 5140, "bottom": 3685, "left": 960}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732089f.jpg"} -{"rects": [{"solidity": 0.9971973674002431, "top": 440, "right": 3160, "bottom": 2050, "left": 740}, {"solidity": 0.9969367323635682, "top": 2265, "right": 3145, "bottom": 3880, "left": 730}, {"solidity": 0.9969620548972259, "top": 4110, "right": 3135, "bottom": 5720, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718085f.jpg"} -{"rects": [{"solidity": 0.9971974343785629, "top": 380, "right": 3415, "bottom": 2015, "left": 990}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704988f.jpg"} -{"rects": [{"solidity": 0.9971974589001045, "top": 360, "right": 5085, "bottom": 3585, "left": 1060}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726848f.jpg"} -{"rects": [{"solidity": 0.9971975404296005, "top": 2145, "right": 3175, "bottom": 3765, "left": 810}, {"solidity": 0.995650842877964, "top": 305, "right": 3160, "bottom": 1925, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714877f.jpg"} -{"rects": [{"solidity": 0.9971975428733586, "top": 355, "right": 3195, "bottom": 3790, "left": 585}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722718f.jpg"} -{"rects": [{"solidity": 0.9971977751638161, "top": 420, "right": 3190, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708150f.jpg"} -{"rects": [{"solidity": 0.9971978835702682, "top": 485, "right": 2925, "bottom": 2100, "left": 525}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707814f.jpg"} -{"rects": [{"solidity": 0.9971980403525297, "top": 600, "right": 2545, "bottom": 3640, "left": 610}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713626f.jpg"} -{"rects": [{"solidity": 0.9971980619928784, "top": 2235, "right": 2735, "bottom": 3650, "left": 905}, {"solidity": 0.994722294550043, "top": 2245, "right": 5020, "bottom": 3640, "left": 3200}, {"solidity": 0.9966096579476861, "top": 605, "right": 2705, "bottom": 1985, "left": 885}, {"solidity": 0.9948653168518868, "top": 625, "right": 4995, "bottom": 2005, "left": 3210}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725571f.jpg"} -{"rects": [{"solidity": 0.9971982881326982, "top": 720, "right": 2390, "bottom": 3490, "left": 470}, {"solidity": 0.9925117556591768, "top": 725, "right": 5155, "bottom": 2140, "left": 3320}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706306f.jpg"} -{"rects": [{"solidity": 0.9971982997670696, "top": 1480, "right": 3605, "bottom": 5535, "left": 395}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724542f.jpg"} -{"rects": [{"solidity": 0.997198397600296, "top": 405, "right": 3115, "bottom": 2010, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728926f.jpg"} -{"rects": [{"solidity": 0.99719840850769, "top": 845, "right": 1900, "bottom": 3215, "left": 320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709736f.jpg"} -{"rects": [{"solidity": 0.9971984282907662, "top": 2890, "right": 2490, "bottom": 4410, "left": 375}, {"solidity": 0.9951214818923217, "top": 225, "right": 2370, "bottom": 1465, "left": 550}, {"solidity": 0.995044221664642, "top": 1570, "right": 2375, "bottom": 2805, "left": 560}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716476f.jpg"} -{"rects": [{"solidity": 0.9971984687659609, "top": 515, "right": 3615, "bottom": 2355, "left": 900}, {"solidity": 0.9956884147475061, "top": 2685, "right": 3240, "bottom": 5415, "left": 1380}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710243f.jpg"} -{"rects": [{"solidity": 0.9971985038818603, "top": 1095, "right": 3635, "bottom": 5195, "left": 345}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/723417f.jpg"} -{"rects": [{"solidity": 0.9971985718209283, "top": 2255, "right": 3050, "bottom": 3870, "left": 635}, {"solidity": 0.9949223750287196, "top": 4115, "right": 3040, "bottom": 5720, "left": 630}, {"solidity": 0.9972501400081154, "top": 425, "right": 3045, "bottom": 2005, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731581f.jpg"} -{"rects": [{"solidity": 0.997198698332805, "top": 345, "right": 3180, "bottom": 1955, "left": 760}, {"solidity": 0.9948480014525458, "top": 4050, "right": 3145, "bottom": 5655, "left": 725}, {"solidity": 0.9949548365905732, "top": 2185, "right": 3160, "bottom": 3790, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734040f.jpg"} -{"rects": [{"solidity": 0.9971987422123726, "top": 520, "right": 2480, "bottom": 2920, "left": 870}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703911f.jpg"} -{"rects": [{"solidity": 0.9971987437965261, "top": 795, "right": 2035, "bottom": 3205, "left": 420}, {"solidity": 0.998194887245385, "top": 800, "right": 5660, "bottom": 3215, "left": 4055}, {"solidity": 0.9961777057776824, "top": 785, "right": 3850, "bottom": 3195, "left": 2245}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719883f.jpg"} -{"rects": [{"solidity": 0.9971987895687036, "top": 430, "right": 3195, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702707f.jpg"} -{"rects": [{"solidity": 0.9971989689142974, "top": 340, "right": 3180, "bottom": 1975, "left": 760}, {"solidity": 0.9964811577342619, "top": 2235, "right": 3165, "bottom": 3870, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721699f.jpg"} -{"rects": [{"solidity": 0.9971989716412316, "top": 785, "right": 3760, "bottom": 3170, "left": 2145}, {"solidity": 0.9970140301035861, "top": 780, "right": 1900, "bottom": 3165, "left": 300}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717623f.jpg"} -{"rects": [{"solidity": 0.9971990149815632, "top": 2235, "right": 3290, "bottom": 3860, "left": 880}, {"solidity": 0.9980360207840526, "top": 435, "right": 3290, "bottom": 2010, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704340f.jpg"} -{"rects": [{"solidity": 0.9971990292739673, "top": 520, "right": 5725, "bottom": 4240, "left": 1175}], "shape": {"h": 4425, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/702204f.jpg"} -{"rects": [{"solidity": 0.997199095240387, "top": 365, "right": 3180, "bottom": 1985, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729075f.jpg"} -{"rects": [{"solidity": 0.9971992304307468, "top": 350, "right": 3090, "bottom": 1980, "left": 675}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702409f.jpg"} -{"rects": [{"solidity": 0.9971993163785888, "top": 615, "right": 3260, "bottom": 2255, "left": 840}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706186f.jpg"} -{"rects": [{"solidity": 0.9971993447041428, "top": 375, "right": 3060, "bottom": 2005, "left": 635}, {"solidity": 0.9952834899596971, "top": 4110, "right": 3060, "bottom": 5730, "left": 620}, {"solidity": 0.9962822397002535, "top": 2250, "right": 3050, "bottom": 3865, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734815f.jpg"} -{"rects": [{"solidity": 0.9971995289773805, "top": 480, "right": 4920, "bottom": 3595, "left": 1175}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731737f.jpg"} -{"rects": [{"solidity": 0.997199581221779, "top": 785, "right": 2065, "bottom": 3195, "left": 435}, {"solidity": 0.9972298367788979, "top": 790, "right": 3940, "bottom": 3200, "left": 2310}, {"solidity": 0.9956540115699439, "top": 795, "right": 5780, "bottom": 3205, "left": 4160}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722574f.jpg"} -{"rects": [{"solidity": 0.9971997648096428, "top": 505, "right": 3270, "bottom": 2390, "left": 535}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724291f.jpg"} -{"rects": [{"solidity": 0.997199779955935, "top": 1070, "right": 3490, "bottom": 5115, "left": 170}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713780f.jpg"} -{"rects": [{"solidity": 0.9971998185797953, "top": 1015, "right": 3175, "bottom": 2925, "left": 1500}, {"solidity": 0.9302280417391824, "top": 3385, "right": 4265, "bottom": 5325, "left": 2510}], "shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465625.jpg"} -{"rects": [{"solidity": 0.9972000605044397, "top": 405, "right": 3170, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711747f.jpg"} -{"rects": [{"solidity": 0.9972001486716152, "top": 430, "right": 5270, "bottom": 3645, "left": 1275}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722736f.jpg"} -{"rects": [{"solidity": 0.9972006821326298, "top": 815, "right": 2160, "bottom": 3225, "left": 530}, {"solidity": 0.9987374232968298, "top": 830, "right": 3960, "bottom": 3225, "left": 2355}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717919f.jpg"} -{"rects": [{"solidity": 0.9972008735593679, "top": 425, "right": 3265, "bottom": 2050, "left": 850}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709222f.jpg"} -{"rects": [{"solidity": 0.9972008833611077, "top": 485, "right": 4560, "bottom": 3675, "left": 1610}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717274f.jpg"} -{"rects": [{"solidity": 0.9972009361707154, "top": 1015, "right": 3580, "bottom": 5000, "left": 355}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717310f.jpg"} -{"rects": [{"solidity": 0.9972009499416731, "top": 445, "right": 3180, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707482f.jpg"} -{"rects": [{"solidity": 0.9972011348822943, "top": 870, "right": 2310, "bottom": 3595, "left": 505}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711214f.jpg"} -{"rects": [{"solidity": 0.9972011350057813, "top": 815, "right": 5550, "bottom": 3235, "left": 3935}, {"solidity": 0.9973046611783318, "top": 815, "right": 3775, "bottom": 3225, "left": 2170}, {"solidity": 0.9988955619890341, "top": 820, "right": 2025, "bottom": 3225, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719777f.jpg"} -{"rects": [{"solidity": 0.9972012993736087, "top": 2280, "right": 3210, "bottom": 3900, "left": 795}, {"solidity": 0.9956025110018121, "top": 4125, "right": 3215, "bottom": 5745, "left": 795}, {"solidity": 0.9970204064046347, "top": 420, "right": 3160, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734403f.jpg"} -{"rects": [{"solidity": 0.9972013755078538, "top": 750, "right": 3855, "bottom": 3175, "left": 2240}, {"solidity": 0.9959388768738376, "top": 760, "right": 5670, "bottom": 3180, "left": 4050}, {"solidity": 0.9991991362343839, "top": 755, "right": 2035, "bottom": 3170, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734706f.jpg"} -{"rects": [{"solidity": 0.9972014025155209, "top": 860, "right": 2050, "bottom": 3280, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707926f.jpg"} -{"rects": [{"solidity": 0.9972014195130862, "top": 390, "right": 3185, "bottom": 1985, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706455f.jpg"} -{"rects": [{"solidity": 0.9972015480797857, "top": 700, "right": 2025, "bottom": 1740, "left": 595}, {"solidity": 0.9990335437300081, "top": 695, "right": 3795, "bottom": 1730, "left": 2370}, {"solidity": 0.9946160748621972, "top": 2100, "right": 2030, "bottom": 3145, "left": 610}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728463f.jpg"} -{"rects": [{"solidity": 0.9972018009981621, "top": 1040, "right": 3525, "bottom": 5105, "left": 305}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724484f.jpg"} -{"rects": [{"solidity": 0.9972018815770332, "top": 640, "right": 2860, "bottom": 2050, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705872f.jpg"} -{"rects": [{"solidity": 0.9972019608658252, "top": 855, "right": 1985, "bottom": 3285, "left": 360}, {"solidity": 0.9960716601087354, "top": 855, "right": 3920, "bottom": 3280, "left": 2300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729618f.jpg"} -{"rects": [{"solidity": 0.997202041544859, "top": 840, "right": 5720, "bottom": 3260, "left": 4100}, {"solidity": 0.9984719825702418, "top": 825, "right": 2030, "bottom": 3225, "left": 410}, {"solidity": 0.9970513492017304, "top": 850, "right": 3860, "bottom": 3255, "left": 2240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712123f.jpg"} -{"rects": [{"solidity": 0.9972020886656446, "top": 425, "right": 3125, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720585f.jpg"} -{"rects": [{"solidity": 0.9972021172470636, "top": 2250, "right": 3120, "bottom": 3870, "left": 700}, {"solidity": 0.9964204678820123, "top": 4125, "right": 3100, "bottom": 5730, "left": 675}, {"solidity": 0.9951738780003538, "top": 395, "right": 3115, "bottom": 2005, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728768f.jpg"} -{"rects": [{"solidity": 0.9972022447333971, "top": 425, "right": 3185, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/703064f.jpg"} -{"rects": [{"solidity": 0.9972022485751891, "top": 405, "right": 3210, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706508f.jpg"} -{"rects": [{"solidity": 0.9972024506271663, "top": 755, "right": 3885, "bottom": 3155, "left": 2275}, {"solidity": 0.9962307241786611, "top": 760, "right": 2030, "bottom": 3165, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713112f.jpg"} -{"rects": [{"solidity": 0.9972024927901774, "top": 2315, "right": 3365, "bottom": 3935, "left": 935}, {"solidity": 0.9964172853973163, "top": 450, "right": 3370, "bottom": 2070, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726404f.jpg"} -{"rects": [{"solidity": 0.9972027452912317, "top": 420, "right": 3245, "bottom": 2000, "left": 880}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709470f.jpg"} -{"rects": [{"solidity": 0.9972027882504305, "top": 2225, "right": 3270, "bottom": 3855, "left": 845}, {"solidity": 0.996810911905069, "top": 4055, "right": 3270, "bottom": 5675, "left": 850}, {"solidity": 0.9966846690964029, "top": 410, "right": 3260, "bottom": 2020, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732056f.jpg"} -{"rects": [{"solidity": 0.9972029613402313, "top": 410, "right": 3120, "bottom": 2010, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729407f.jpg"} -{"rects": [{"solidity": 0.9972034246117724, "top": 810, "right": 3905, "bottom": 3235, "left": 2270}, {"solidity": 0.9972856552782203, "top": 815, "right": 2000, "bottom": 3215, "left": 400}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717982f.jpg"} -{"rects": [{"solidity": 0.9972034985197828, "top": 345, "right": 3395, "bottom": 1965, "left": 970}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/704540f.jpg"} -{"rects": [{"solidity": 0.9972040045869787, "top": 645, "right": 3795, "bottom": 3065, "left": 2175}, {"solidity": 0.9965186020001037, "top": 635, "right": 1975, "bottom": 3055, "left": 370}, {"solidity": 0.996302757567948, "top": 660, "right": 5635, "bottom": 3060, "left": 4030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728073f.jpg"} -{"rects": [{"solidity": 0.997204088616831, "top": 450, "right": 3160, "bottom": 2065, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722668f.jpg"} -{"rects": [{"solidity": 0.9972042463603735, "top": 1015, "right": 3550, "bottom": 5020, "left": 310}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721403f.jpg"} -{"rects": [{"solidity": 0.9972042534465054, "top": 325, "right": 5080, "bottom": 3545, "left": 1005}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700515f.jpg"} -{"rects": [{"solidity": 0.997204321301969, "top": 405, "right": 3075, "bottom": 2015, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729765f.jpg"} -{"rects": [{"solidity": 0.9972044388932848, "top": 800, "right": 3900, "bottom": 3195, "left": 2290}, {"solidity": 0.9957241055206034, "top": 795, "right": 2140, "bottom": 3190, "left": 545}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711048f.jpg"} -{"rects": [{"solidity": 0.9972044922032802, "top": 785, "right": 3865, "bottom": 3205, "left": 2255}, {"solidity": 0.9957571390255961, "top": 780, "right": 5745, "bottom": 3200, "left": 4130}, {"solidity": 0.9966861111741607, "top": 775, "right": 2010, "bottom": 3190, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731229f.jpg"} -{"rects": [{"solidity": 0.9972046839379582, "top": 435, "right": 3210, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733222f.jpg"} -{"rects": [{"solidity": 0.9972048217630579, "top": 2235, "right": 3155, "bottom": 3850, "left": 735}, {"solidity": 0.9953969969195039, "top": 4050, "right": 3145, "bottom": 5675, "left": 720}, {"solidity": 0.9968421018503208, "top": 420, "right": 3155, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732166f.jpg"} -{"rects": [{"solidity": 0.9972049704153224, "top": 2100, "right": 2655, "bottom": 3530, "left": 795}, {"solidity": 0.9961778996603108, "top": 2090, "right": 5265, "bottom": 3520, "left": 3415}, {"solidity": 0.9960252245365947, "top": 585, "right": 2655, "bottom": 2015, "left": 800}, {"solidity": 0.9962762959501708, "top": 585, "right": 5270, "bottom": 2005, "left": 3425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707475f.jpg"} -{"rects": [{"solidity": 0.9972049799824867, "top": 845, "right": 2055, "bottom": 3260, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729848f.jpg"} -{"rects": [{"solidity": 0.9972050047383654, "top": 445, "right": 3180, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704681f.jpg"} -{"rects": [{"solidity": 0.997205085272112, "top": 455, "right": 3115, "bottom": 2075, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701517f.jpg"} -{"rects": [{"solidity": 0.9972051962157562, "top": 1105, "right": 3350, "bottom": 4930, "left": 365}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712661f.jpg"} -{"rects": [{"solidity": 0.9972052301208402, "top": 810, "right": 2050, "bottom": 3240, "left": 430}, {"solidity": 0.9989646831156265, "top": 820, "right": 3835, "bottom": 3235, "left": 2220}, {"solidity": 0.9967704468462655, "top": 815, "right": 5650, "bottom": 3230, "left": 4030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732343f.jpg"} -{"rects": [{"solidity": 0.9972052910594924, "top": 375, "right": 3285, "bottom": 2000, "left": 860}, {"solidity": 0.9959548234684962, "top": 2215, "right": 3275, "bottom": 3840, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727290f.jpg"} -{"rects": [{"solidity": 0.9972053584628517, "top": 465, "right": 3005, "bottom": 1860, "left": 1105}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718678f.jpg"} -{"rects": [{"solidity": 0.9972053908911197, "top": 460, "right": 3090, "bottom": 2085, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700480f.jpg"} -{"rects": [{"solidity": 0.9972055565110938, "top": 580, "right": 5265, "bottom": 3475, "left": 965}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711930f.jpg"} -{"rects": [{"solidity": 0.9972057219172664, "top": 465, "right": 5115, "bottom": 3690, "left": 1040}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734540f.jpg"} -{"rects": [{"solidity": 0.997205836992243, "top": 310, "right": 5095, "bottom": 3595, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725102f.jpg"} -{"rects": [{"solidity": 0.9972058823529412, "top": 810, "right": 3760, "bottom": 3215, "left": 2120}, {"solidity": 0.9982848990975685, "top": 790, "right": 1900, "bottom": 3210, "left": 280}, {"solidity": 0.9971086300820755, "top": 830, "right": 5615, "bottom": 3215, "left": 4005}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709455f.jpg"} -{"rects": [{"solidity": 0.997206003076808, "top": 1070, "right": 3375, "bottom": 4830, "left": 325}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731288f.jpg"} -{"rects": [{"solidity": 0.9972060705203998, "top": 560, "right": 2910, "bottom": 3615, "left": 865}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721905f.jpg"} -{"rects": [{"solidity": 0.997206076399563, "top": 710, "right": 4905, "bottom": 3605, "left": 1230}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708561f.jpg"} -{"rects": [{"solidity": 0.9972061733470861, "top": 520, "right": 5055, "bottom": 3170, "left": 1085}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731402f.jpg"} -{"rects": [{"solidity": 0.9972062082826568, "top": 800, "right": 2075, "bottom": 3215, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720766f.jpg"} -{"rects": [{"solidity": 0.9972062818472618, "top": 365, "right": 3145, "bottom": 1980, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702017f.jpg"} -{"rects": [{"solidity": 0.9972064512195842, "top": 1025, "right": 3535, "bottom": 5005, "left": 325}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722336f.jpg"} -{"rects": [{"solidity": 0.9972065333046165, "top": 405, "right": 3120, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701269f.jpg"} -{"rects": [{"solidity": 0.9972065852710266, "top": 455, "right": 3200, "bottom": 2055, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702882f.jpg"} -{"rects": [{"solidity": 0.9972067129100124, "top": 390, "right": 3075, "bottom": 2010, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729236f.jpg"} -{"rects": [{"solidity": 0.9972068111357237, "top": 755, "right": 2680, "bottom": 3525, "left": 670}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721824f.jpg"} -{"rects": [{"solidity": 0.9972069191354933, "top": 2015, "right": 5145, "bottom": 3445, "left": 3310}, {"solidity": 0.9954085077650237, "top": 575, "right": 5150, "bottom": 2000, "left": 3310}, {"solidity": 0.994530007370912, "top": 625, "right": 2640, "bottom": 2070, "left": 805}, {"solidity": 0.9947554105101374, "top": 2075, "right": 2650, "bottom": 3500, "left": 845}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702777f.jpg"} -{"rects": [{"solidity": 0.9972073658927142, "top": 405, "right": 3230, "bottom": 2035, "left": 805}, {"solidity": 0.9964902382701795, "top": 2235, "right": 3235, "bottom": 3825, "left": 820}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710971f.jpg"} -{"rects": [{"solidity": 0.9972076662849493, "top": 460, "right": 3160, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724597f.jpg"} -{"rects": [{"solidity": 0.9972077438570365, "top": 2285, "right": 3205, "bottom": 3905, "left": 780}, {"solidity": 0.9991873693986534, "top": 4040, "right": 3205, "bottom": 5655, "left": 790}, {"solidity": 0.9970246911990108, "top": 485, "right": 3190, "bottom": 2105, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700035f.jpg"} -{"rects": [{"solidity": 0.9972078193939004, "top": 795, "right": 2060, "bottom": 3220, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723371f.jpg"} -{"rects": [{"solidity": 0.9972079346301643, "top": 320, "right": 3680, "bottom": 2775, "left": 505}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508851.jpg"} -{"rects": [{"solidity": 0.9972080891350551, "top": 385, "right": 3165, "bottom": 1995, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703643f.jpg"} -{"rects": [{"solidity": 0.9972081357374745, "top": 815, "right": 2080, "bottom": 3235, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720265f.jpg"} -{"rects": [{"solidity": 0.9972082526140018, "top": 415, "right": 3085, "bottom": 2020, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729280f.jpg"} -{"rects": [{"solidity": 0.9972083262471882, "top": 330, "right": 3175, "bottom": 1955, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703162f.jpg"} -{"rects": [{"solidity": 0.9972084133906697, "top": 480, "right": 3415, "bottom": 2505, "left": 360}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707716f.jpg"} -{"rects": [{"solidity": 0.997208474456901, "top": 380, "right": 3260, "bottom": 2010, "left": 840}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702996f.jpg"} -{"rects": [{"solidity": 0.9972088334837905, "top": 395, "right": 3085, "bottom": 2025, "left": 655}, {"solidity": 0.9987771460766236, "top": 2315, "right": 3075, "bottom": 3940, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701446f.jpg"} -{"rects": [{"solidity": 0.9972090392110269, "top": 360, "right": 5460, "bottom": 3580, "left": 1390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723284f.jpg"} -{"rects": [{"solidity": 0.997209221479016, "top": 440, "right": 3165, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714987f.jpg"} -{"rects": [{"solidity": 0.9972092728252941, "top": 400, "right": 3190, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700054f.jpg"} -{"rects": [{"solidity": 0.9972093329113768, "top": 695, "right": 2505, "bottom": 2165, "left": 415}, {"solidity": 0.9985305517458749, "top": 2455, "right": 2485, "bottom": 3905, "left": 445}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716000f.jpg"} -{"rects": [{"solidity": 0.9972093627665968, "top": 745, "right": 3795, "bottom": 3160, "left": 2190}, {"solidity": 0.9980689417602109, "top": 750, "right": 2015, "bottom": 3130, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723233f.jpg"} -{"rects": [{"solidity": 0.9972094703800605, "top": 435, "right": 2960, "bottom": 2055, "left": 550}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724704f.jpg"} -{"rects": [{"solidity": 0.9972095184018995, "top": 530, "right": 5010, "bottom": 3640, "left": 1080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720536f.jpg"} -{"rects": [{"solidity": 0.9972095234373982, "top": 795, "right": 3890, "bottom": 3200, "left": 2280}, {"solidity": 0.9972272964509394, "top": 785, "right": 2010, "bottom": 3190, "left": 400}, {"solidity": 0.9960299162488923, "top": 790, "right": 5745, "bottom": 3195, "left": 4140}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733353f.jpg"} -{"rects": [{"solidity": 0.9972095545992392, "top": 390, "right": 3030, "bottom": 2030, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723625f.jpg"} -{"rects": [{"solidity": 0.9972098178533216, "top": 840, "right": 3925, "bottom": 3270, "left": 2305}, {"solidity": 0.9969028761311761, "top": 835, "right": 2030, "bottom": 3270, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728762f.jpg"} -{"rects": [{"solidity": 0.9972098703677839, "top": 480, "right": 3190, "bottom": 2095, "left": 785}, {"solidity": 0.9960060396473626, "top": 2285, "right": 3200, "bottom": 3905, "left": 790}, {"solidity": 0.9969722461351131, "top": 4095, "right": 3180, "bottom": 5700, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710696f.jpg"} -{"rects": [{"solidity": 0.9972099056468606, "top": 415, "right": 5075, "bottom": 3720, "left": 1020}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708689f.jpg"} -{"rects": [{"solidity": 0.9972099872124414, "top": 385, "right": 3310, "bottom": 2000, "left": 895}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725301f.jpg"} -{"rects": [{"solidity": 0.9972100142405523, "top": 400, "right": 3280, "bottom": 2020, "left": 870}, {"solidity": 0.9967988380726596, "top": 2240, "right": 3270, "bottom": 3850, "left": 865}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725801f.jpg"} -{"rects": [{"solidity": 0.9972100500489949, "top": 920, "right": 3295, "bottom": 4630, "left": 445}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708668f.jpg"} -{"rects": [{"solidity": 0.9972103224482467, "top": 2145, "right": 3195, "bottom": 3770, "left": 775}, {"solidity": 0.9968322670702884, "top": 315, "right": 3190, "bottom": 1935, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706196f.jpg"} -{"rects": [{"solidity": 0.9972105723237701, "top": 390, "right": 3195, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715573f.jpg"} -{"rects": [{"solidity": 0.9972106573879412, "top": 810, "right": 3795, "bottom": 3245, "left": 2165}, {"solidity": 0.9994320683559974, "top": 815, "right": 1940, "bottom": 3240, "left": 315}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703620f.jpg"} -{"rects": [{"solidity": 0.9972107410108869, "top": 760, "right": 2110, "bottom": 3130, "left": 535}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721105f.jpg"} -{"rects": [{"solidity": 0.997210801565635, "top": 2295, "right": 3235, "bottom": 3905, "left": 845}, {"solidity": 0.9973997200719057, "top": 465, "right": 3215, "bottom": 2060, "left": 830}, {"solidity": 0.996821145514633, "top": 4155, "right": 3245, "bottom": 5745, "left": 855}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733269f.jpg"} -{"rects": [{"solidity": 0.9972112690671371, "top": 780, "right": 1965, "bottom": 3180, "left": 345}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719733f.jpg"} -{"rects": [{"solidity": 0.9972113674307732, "top": 385, "right": 2895, "bottom": 1765, "left": 885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721073f.jpg"} -{"rects": [{"solidity": 0.9972113931842346, "top": 2520, "right": 3210, "bottom": 4470, "left": 440}, {"solidity": 0.9958154411387595, "top": 490, "right": 3210, "bottom": 2440, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728017f.jpg"} -{"rects": [{"solidity": 0.9972117197108288, "top": 390, "right": 5065, "bottom": 3565, "left": 1075}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708263f.jpg"} -{"rects": [{"solidity": 0.9972118333637788, "top": 405, "right": 3105, "bottom": 2035, "left": 685}, {"solidity": 0.9971557799651979, "top": 2265, "right": 3110, "bottom": 3890, "left": 700}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720192f.jpg"} -{"rects": [{"solidity": 0.997211992577373, "top": 1160, "right": 3975, "bottom": 5700, "left": 310}], "shape": {"h": 6910, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708373f.jpg"} -{"rects": [{"solidity": 0.9972122370452877, "top": 415, "right": 2925, "bottom": 2050, "left": 490}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707133f.jpg"} -{"rects": [{"solidity": 0.9972122621701069, "top": 575, "right": 5345, "bottom": 2195, "left": 2930}, {"solidity": 0.9971860064617629, "top": 2085, "right": 2730, "bottom": 3505, "left": 940}, {"solidity": 0.9961372830484144, "top": 635, "right": 2705, "bottom": 2030, "left": 960}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702765f.jpg"} -{"rects": [{"solidity": 0.9972122845328254, "top": 440, "right": 3180, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719436f.jpg"} -{"rects": [{"solidity": 0.9972123934891312, "top": 485, "right": 5050, "bottom": 3670, "left": 1050}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709198f.jpg"} -{"rects": [{"solidity": 0.9972124538982761, "top": 820, "right": 2060, "bottom": 3225, "left": 470}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713497f.jpg"} -{"rects": [{"solidity": 0.9972124702928977, "top": 825, "right": 2080, "bottom": 3250, "left": 445}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717709f.jpg"} -{"rects": [{"solidity": 0.9972125320144838, "top": 310, "right": 3060, "bottom": 1495, "left": 1125}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700539f.jpg"} -{"rects": [{"solidity": 0.9972126918545202, "top": 445, "right": 3490, "bottom": 2245, "left": 795}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711248f.jpg"} -{"rects": [{"solidity": 0.9972128563131256, "top": 2095, "right": 2960, "bottom": 3735, "left": 915}, {"solidity": 0.9955144168148005, "top": 390, "right": 2955, "bottom": 1970, "left": 925}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718957f.jpg"} -{"rects": [{"solidity": 0.997212892619303, "top": 2240, "right": 3195, "bottom": 3855, "left": 765}, {"solidity": 0.9983006139717263, "top": 4055, "right": 3205, "bottom": 5660, "left": 775}, {"solidity": 0.9961803864132731, "top": 420, "right": 3185, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723438f.jpg"} -{"rects": [{"solidity": 0.9972129643607818, "top": 650, "right": 2870, "bottom": 2455, "left": 1665}, {"solidity": 0.9944602870366042, "top": 645, "right": 1540, "bottom": 2445, "left": 340}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716492f.jpg"} -{"rects": [{"solidity": 0.9972130353199806, "top": 2260, "right": 3255, "bottom": 3870, "left": 850}, {"solidity": 0.9964449850871515, "top": 405, "right": 3260, "bottom": 2025, "left": 850}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725000f.jpg"} -{"rects": [{"solidity": 0.9972131114888193, "top": 335, "right": 4015, "bottom": 2815, "left": 955}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509987.jpg"} -{"rects": [{"solidity": 0.997213172214465, "top": 400, "right": 5035, "bottom": 3680, "left": 995}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723769f.jpg"} -{"rects": [{"solidity": 0.9972132855090846, "top": 940, "right": 3595, "bottom": 3405, "left": 1165}], "shape": {"h": 5985, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465614.jpg"} -{"rects": [{"solidity": 0.9972137956175869, "top": 870, "right": 2040, "bottom": 3265, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729761f.jpg"} -{"rects": [{"solidity": 0.9972138632611681, "top": 595, "right": 2805, "bottom": 1985, "left": 965}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702761f.jpg"} -{"rects": [{"solidity": 0.9972140574099746, "top": 445, "right": 2650, "bottom": 3685, "left": 600}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733072f.jpg"} -{"rects": [{"solidity": 0.9972140864935609, "top": 490, "right": 3150, "bottom": 2125, "left": 715}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707524f.jpg"} -{"rects": [{"solidity": 0.9972141482084567, "top": 465, "right": 5130, "bottom": 3725, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712014f.jpg"} -{"rects": [{"solidity": 0.9972142190618253, "top": 480, "right": 3115, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723764f.jpg"} -{"rects": [{"solidity": 0.9972144388309357, "top": 1050, "right": 3495, "bottom": 5120, "left": 275}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733448f.jpg"} -{"rects": [{"solidity": 0.9972145384367964, "top": 785, "right": 3880, "bottom": 3210, "left": 2265}, {"solidity": 0.9961945752592707, "top": 780, "right": 5700, "bottom": 3215, "left": 4090}, {"solidity": 0.9983273002044052, "top": 785, "right": 2060, "bottom": 3205, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719774f.jpg"} -{"rects": [{"solidity": 0.9972145957840015, "top": 1165, "right": 4185, "bottom": 2760, "left": 1805}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719867f.jpg"} -{"rects": [{"solidity": 0.9972148038744465, "top": 770, "right": 2005, "bottom": 3205, "left": 380}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707295f.jpg"} -{"rects": [{"solidity": 0.9972149597900273, "top": 455, "right": 3510, "bottom": 2275, "left": 790}], "shape": {"h": 6885, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711622f.jpg"} -{"rects": [{"solidity": 0.9972150173649272, "top": 3325, "right": 3535, "bottom": 5370, "left": 720}, {"solidity": 0.9985949975737791, "top": 965, "right": 3565, "bottom": 3000, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733575f.jpg"} -{"rects": [{"solidity": 0.997215243912451, "top": 795, "right": 2040, "bottom": 3200, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709846f.jpg"} -{"rects": [{"solidity": 0.9972155614083362, "top": 805, "right": 3950, "bottom": 3205, "left": 2350}, {"solidity": 0.9982320172781626, "top": 810, "right": 2095, "bottom": 3205, "left": 500}, {"solidity": 0.9957648452539613, "top": 805, "right": 5810, "bottom": 3205, "left": 4215}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731236f.jpg"} -{"rects": [{"solidity": 0.9972157606788735, "top": 755, "right": 2040, "bottom": 3165, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719305f.jpg"} -{"rects": [{"solidity": 0.9972159347375565, "top": 400, "right": 3270, "bottom": 2000, "left": 880}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725954f.jpg"} -{"rects": [{"solidity": 0.997215974196834, "top": 1390, "right": 1990, "bottom": 2375, "left": 480}, {"solidity": 0.9907909270723625, "top": 350, "right": 1940, "bottom": 1225, "left": 810}], "shape": {"h": 3950, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727105f.jpg"} -{"rects": [{"solidity": 0.9972159940815538, "top": 2240, "right": 3140, "bottom": 3850, "left": 730}, {"solidity": 0.9939984475896352, "top": 380, "right": 3135, "bottom": 1985, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729056f.jpg"} -{"rects": [{"solidity": 0.9972160685046, "top": 1045, "right": 3480, "bottom": 5005, "left": 395}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721395f.jpg"} -{"rects": [{"solidity": 0.99721607135068, "top": 890, "right": 2215, "bottom": 3600, "left": 405}], "shape": {"h": 4415, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/711355f.jpg"} -{"rects": [{"solidity": 0.9972164730040254, "top": 430, "right": 3260, "bottom": 2030, "left": 840}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704824f.jpg"} -{"rects": [{"solidity": 0.9972165155570534, "top": 750, "right": 2045, "bottom": 3160, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718615f.jpg"} -{"rects": [{"solidity": 0.9972165869485988, "top": 765, "right": 2040, "bottom": 3175, "left": 420}, {"solidity": 0.9963813215733693, "top": 770, "right": 3750, "bottom": 2700, "left": 2280}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721822f.jpg"} -{"rects": [{"solidity": 0.9972165900434764, "top": 810, "right": 2145, "bottom": 3205, "left": 545}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711007f.jpg"} -{"rects": [{"solidity": 0.9972166048311333, "top": 935, "right": 2080, "bottom": 3360, "left": 440}, {"solidity": 0.9966045876361037, "top": 950, "right": 5725, "bottom": 3390, "left": 4100}, {"solidity": 0.9981282035586684, "top": 945, "right": 3895, "bottom": 3365, "left": 2280}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718751f.jpg"} -{"rects": [{"solidity": 0.9972167824446199, "top": 395, "right": 3105, "bottom": 2015, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720967f.jpg"} -{"rects": [{"solidity": 0.9972167946158145, "top": 905, "right": 2040, "bottom": 3110, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722663f.jpg"} -{"rects": [{"solidity": 0.9972170447972235, "top": 775, "right": 2035, "bottom": 3195, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732351f.jpg"} -{"rects": [{"solidity": 0.9972171059048996, "top": 625, "right": 4000, "bottom": 1800, "left": 2130}, {"solidity": 0.9969601842596003, "top": 630, "right": 5975, "bottom": 1785, "left": 4105}, {"solidity": 0.999712057729487, "top": 625, "right": 2015, "bottom": 1780, "left": 160}, {"solidity": 0.9969442187444801, "top": 2220, "right": 5955, "bottom": 3375, "left": 4090}, {"solidity": 0.996264557240167, "top": 2195, "right": 1980, "bottom": 3335, "left": 160}, {"solidity": 0.9934588677495332, "top": 2220, "right": 3950, "bottom": 3350, "left": 2100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720440f.jpg"} -{"rects": [{"solidity": 0.9972171462397694, "top": 2285, "right": 3370, "bottom": 3900, "left": 945}, {"solidity": 0.999163866102357, "top": 435, "right": 3375, "bottom": 2045, "left": 955}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/726925f.jpg"} -{"rects": [{"solidity": 0.997217265152585, "top": 790, "right": 2070, "bottom": 3210, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712606f.jpg"} -{"rects": [{"solidity": 0.9972174827037573, "top": 505, "right": 2580, "bottom": 2055, "left": 305}, {"solidity": 0.9960901470545581, "top": 2055, "right": 2335, "bottom": 3270, "left": 535}, {"solidity": 0.9965984806936066, "top": 3290, "right": 2335, "bottom": 4495, "left": 540}], "shape": {"h": 4660, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715805f.jpg"} -{"rects": [{"solidity": 0.9972175187396647, "top": 605, "right": 2810, "bottom": 1985, "left": 965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706120f.jpg"} -{"rects": [{"solidity": 0.9972176011051767, "top": 465, "right": 2990, "bottom": 2080, "left": 580}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704521f.jpg"} -{"rects": [{"solidity": 0.9972177621186612, "top": 755, "right": 2020, "bottom": 3165, "left": 410}, {"solidity": 0.9975896107303316, "top": 755, "right": 3880, "bottom": 3155, "left": 2280}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724601f.jpg"} -{"rects": [{"solidity": 0.9972177621186612, "top": 800, "right": 2000, "bottom": 3220, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711993f.jpg"} -{"rects": [{"solidity": 0.9972177640482791, "top": 2095, "right": 2680, "bottom": 3510, "left": 910}, {"solidity": 0.9958044426514712, "top": 670, "right": 2680, "bottom": 2090, "left": 915}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726339f.jpg"} -{"rects": [{"solidity": 0.9972178560708511, "top": 820, "right": 3920, "bottom": 3225, "left": 2295}, {"solidity": 0.9961504725021929, "top": 830, "right": 2045, "bottom": 3220, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717934f.jpg"} -{"rects": [{"solidity": 0.9972179480134088, "top": 925, "right": 2705, "bottom": 3955, "left": 270}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517217.jpg"} -{"rects": [{"solidity": 0.997217981231754, "top": 2215, "right": 3185, "bottom": 3840, "left": 755}, {"solidity": 0.9961580041041709, "top": 410, "right": 3175, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705413f.jpg"} -{"rects": [{"solidity": 0.9972180128016647, "top": 410, "right": 3140, "bottom": 2025, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719906f.jpg"} -{"rects": [{"solidity": 0.9972180302721824, "top": 250, "right": 3675, "bottom": 2695, "left": 355}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727309f.jpg"} -{"rects": [{"solidity": 0.9972181100143567, "top": 565, "right": 3270, "bottom": 2565, "left": 455}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718345f.jpg"} -{"rects": [{"solidity": 0.9972181780366056, "top": 2405, "right": 3045, "bottom": 4015, "left": 635}, {"solidity": 0.9958528545858234, "top": 480, "right": 3060, "bottom": 2085, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730598f.jpg"} -{"rects": [{"solidity": 0.9972183259256756, "top": 130, "right": 3130, "bottom": 1680, "left": 720}], "shape": {"h": 3585, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704887f.jpg"} -{"rects": [{"solidity": 0.997218535032088, "top": 435, "right": 5020, "bottom": 3730, "left": 970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714508f.jpg"} -{"rects": [{"solidity": 0.9972189982606683, "top": 870, "right": 2040, "bottom": 3290, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728794f.jpg"} -{"rects": [{"solidity": 0.9972190879247683, "top": 775, "right": 3875, "bottom": 3195, "left": 2245}, {"solidity": 0.9958178691627092, "top": 785, "right": 2065, "bottom": 3205, "left": 440}, {"solidity": 0.9962079808700167, "top": 775, "right": 5685, "bottom": 3195, "left": 4060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732342f.jpg"} -{"rects": [{"solidity": 0.9972191471099722, "top": 585, "right": 2735, "bottom": 3630, "left": 705}, {"solidity": 0.9954319807956744, "top": 880, "right": 4590, "bottom": 3270, "left": 3005}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721944f.jpg"} -{"rects": [{"solidity": 0.9972191571875964, "top": 615, "right": 2490, "bottom": 3685, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715506f.jpg"} -{"rects": [{"solidity": 0.9972192649325473, "top": 755, "right": 2040, "bottom": 3195, "left": 410}, {"solidity": 0.996370640390952, "top": 735, "right": 3895, "bottom": 3175, "left": 2265}, {"solidity": 0.9947479094332241, "top": 755, "right": 5755, "bottom": 3165, "left": 4150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722554f.jpg"} -{"rects": [{"solidity": 0.9972193155834593, "top": 405, "right": 3195, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713937f.jpg"} -{"rects": [{"solidity": 0.9972193675597799, "top": 650, "right": 3290, "bottom": 2550, "left": 585}, {"solidity": 0.9960311984927586, "top": 3210, "right": 3260, "bottom": 5100, "left": 600}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712015f.jpg"} -{"rects": [{"solidity": 0.9972194936214736, "top": 595, "right": 2025, "bottom": 3025, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728057f.jpg"} -{"rects": [{"solidity": 0.9972196538145703, "top": 420, "right": 3150, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719482f.jpg"} -{"rects": [{"solidity": 0.9972197283442903, "top": 2165, "right": 3270, "bottom": 3790, "left": 860}, {"solidity": 0.9970224507215595, "top": 665, "right": 2745, "bottom": 2065, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704065f.jpg"} -{"rects": [{"solidity": 0.9972199528742101, "top": 1075, "right": 3470, "bottom": 5060, "left": 270}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732242f.jpg"} -{"rects": [{"solidity": 0.9972199828528286, "top": 755, "right": 2025, "bottom": 3180, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715535f.jpg"} -{"rects": [{"solidity": 0.997220240820194, "top": 495, "right": 5000, "bottom": 3560, "left": 1150}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730170f.jpg"} -{"rects": [{"solidity": 0.997220423672834, "top": 415, "right": 3145, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728319f.jpg"} -{"rects": [{"solidity": 0.9972205214923662, "top": 585, "right": 2615, "bottom": 2010, "left": 795}, {"solidity": 0.9958391123439667, "top": 2045, "right": 5275, "bottom": 3455, "left": 3445}, {"solidity": 0.9962840099224318, "top": 590, "right": 5260, "bottom": 2000, "left": 3435}, {"solidity": 0.997156229634457, "top": 2065, "right": 2615, "bottom": 3470, "left": 795}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706726f.jpg"} -{"rects": [{"solidity": 0.9972205390310088, "top": 760, "right": 2040, "bottom": 3135, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713696f.jpg"} -{"rects": [{"solidity": 0.9972205528846154, "top": 570, "right": 1590, "bottom": 2375, "left": 380}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716418f.jpg"} -{"rects": [{"solidity": 0.9972206048340748, "top": 460, "right": 5055, "bottom": 3755, "left": 1000}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714712f.jpg"} -{"rects": [{"solidity": 0.997220652827644, "top": 620, "right": 2090, "bottom": 2095, "left": 205}, {"solidity": 0.994603191033863, "top": 2245, "right": 2095, "bottom": 3690, "left": 215}, {"solidity": 0.9962863666076148, "top": 620, "right": 4045, "bottom": 2050, "left": 2185}, {"solidity": 0.9966199143775207, "top": 2250, "right": 4020, "bottom": 3690, "left": 2180}, {"solidity": 0.9937671475140287, "top": 610, "right": 5950, "bottom": 2055, "left": 4115}, {"solidity": 0.9942184994252913, "top": 2420, "right": 5935, "bottom": 3450, "left": 4150}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732945f.jpg"} -{"rects": [{"solidity": 0.9972208176310643, "top": 530, "right": 5050, "bottom": 3790, "left": 1000}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701120f.jpg"} -{"rects": [{"solidity": 0.9972211123503804, "top": 510, "right": 5015, "bottom": 3810, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708044f.jpg"} -{"rects": [{"solidity": 0.9972211143004728, "top": 435, "right": 3225, "bottom": 2040, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707660f.jpg"} -{"rects": [{"solidity": 0.9972212066628621, "top": 1140, "right": 3400, "bottom": 4900, "left": 375}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708537f.jpg"} -{"rects": [{"solidity": 0.9972214585869693, "top": 595, "right": 3045, "bottom": 2010, "left": 1230}, {"solidity": 0.9916088589657114, "top": 2485, "right": 3060, "bottom": 3615, "left": 1230}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727403f.jpg"} -{"rects": [{"solidity": 0.9972214806245241, "top": 395, "right": 3190, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710625f.jpg"} -{"rects": [{"solidity": 0.997221574570607, "top": 2275, "right": 3135, "bottom": 3890, "left": 720}, {"solidity": 0.9951246855161446, "top": 455, "right": 3130, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732031f.jpg"} -{"rects": [{"solidity": 0.9972216382307755, "top": 405, "right": 3085, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729376f.jpg"} -{"rects": [{"solidity": 0.9972216461986283, "top": 910, "right": 5945, "bottom": 2955, "left": 2715}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704864f.jpg"} -{"rects": [{"solidity": 0.9972217123126458, "top": 1045, "right": 3270, "bottom": 5080, "left": 500}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717176f.jpg"} -{"rects": [{"solidity": 0.9972218399229285, "top": 390, "right": 3170, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705046f.jpg"} -{"rects": [{"solidity": 0.9972218461183574, "top": 545, "right": 5100, "bottom": 3645, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705833f.jpg"} -{"rects": [{"solidity": 0.9972223692945551, "top": 715, "right": 2525, "bottom": 2200, "left": 440}, {"solidity": 0.9927402942220084, "top": 2465, "right": 2515, "bottom": 3955, "left": 425}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716139f.jpg"} -{"rects": [{"solidity": 0.9972223713821265, "top": 405, "right": 2845, "bottom": 1830, "left": 1030}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705119f.jpg"} -{"rects": [{"solidity": 0.9972226038824661, "top": 840, "right": 2015, "bottom": 3240, "left": 410}, {"solidity": 0.9959944218615554, "top": 810, "right": 3920, "bottom": 3210, "left": 2325}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734006f.jpg"} -{"rects": [{"solidity": 0.9972226622996615, "top": 755, "right": 3865, "bottom": 3170, "left": 2250}, {"solidity": 0.9974355279275267, "top": 755, "right": 2015, "bottom": 3155, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730314f.jpg"} -{"rects": [{"solidity": 0.9972227882548593, "top": 390, "right": 3130, "bottom": 1995, "left": 735}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701833f.jpg"} -{"rects": [{"solidity": 0.9972228991511312, "top": 2490, "right": 3425, "bottom": 4320, "left": 705}, {"solidity": 0.9959877314200803, "top": 4350, "right": 3420, "bottom": 6170, "left": 715}, {"solidity": 0.994303986154386, "top": 670, "right": 3400, "bottom": 2455, "left": 715}], "shape": {"h": 6910, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708952f.jpg"} -{"rects": [{"solidity": 0.9972229137098834, "top": 2220, "right": 3240, "bottom": 3835, "left": 825}, {"solidity": 0.9987316784447126, "top": 395, "right": 3235, "bottom": 2000, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726087f.jpg"} -{"rects": [{"solidity": 0.997223179358291, "top": 680, "right": 2630, "bottom": 3710, "left": 565}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713576f.jpg"} -{"rects": [{"solidity": 0.9972231819106446, "top": 2260, "right": 3130, "bottom": 3870, "left": 705}, {"solidity": 0.9979890938293353, "top": 395, "right": 3125, "bottom": 2005, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728465f.jpg"} -{"rects": [{"solidity": 0.9972232240602847, "top": 315, "right": 3185, "bottom": 1940, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725760f.jpg"} -{"rects": [{"solidity": 0.9972233738305856, "top": 385, "right": 5020, "bottom": 3645, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726174f.jpg"} -{"rects": [{"solidity": 0.9972233886377027, "top": 795, "right": 3745, "bottom": 3170, "left": 2115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719063f.jpg"} -{"rects": [{"solidity": 0.9972234928332209, "top": 855, "right": 3865, "bottom": 3280, "left": 2240}, {"solidity": 0.9993925817845241, "top": 870, "right": 2005, "bottom": 3285, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721559f.jpg"} -{"rects": [{"solidity": 0.997223669967526, "top": 2310, "right": 3345, "bottom": 3905, "left": 975}, {"solidity": 0.9979443220293438, "top": 440, "right": 3350, "bottom": 2025, "left": 985}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727845f.jpg"} -{"rects": [{"solidity": 0.997223674312453, "top": 520, "right": 3045, "bottom": 2160, "left": 625}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704233f.jpg"} -{"rects": [{"solidity": 0.9972237456278259, "top": 465, "right": 3180, "bottom": 2340, "left": 425}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716689f.jpg"} -{"rects": [{"solidity": 0.9972237462861725, "top": 495, "right": 4920, "bottom": 3825, "left": 865}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712466f.jpg"} -{"rects": [{"solidity": 0.997223750711828, "top": 480, "right": 5070, "bottom": 3730, "left": 1040}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705963f.jpg"} -{"rects": [{"solidity": 0.9972238814655578, "top": 325, "right": 3960, "bottom": 2765, "left": 930}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517219.jpg"} -{"rects": [{"solidity": 0.9972239118747033, "top": 825, "right": 3645, "bottom": 5480, "left": 200}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714070f.jpg"} -{"rects": [{"solidity": 0.9972239599624648, "top": 385, "right": 3065, "bottom": 1985, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728623f.jpg"} -{"rects": [{"solidity": 0.9972240344033338, "top": 850, "right": 3940, "bottom": 3240, "left": 2355}, {"solidity": 0.9965342299105651, "top": 830, "right": 2070, "bottom": 3220, "left": 495}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724742f.jpg"} -{"rects": [{"solidity": 0.9972240423753159, "top": 2255, "right": 3100, "bottom": 3865, "left": 670}, {"solidity": 0.995444788702299, "top": 4085, "right": 3100, "bottom": 5710, "left": 685}, {"solidity": 0.9971154377737814, "top": 405, "right": 3105, "bottom": 2015, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731572f.jpg"} -{"rects": [{"solidity": 0.9972240470226533, "top": 450, "right": 4980, "bottom": 3580, "left": 1030}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705071f.jpg"} -{"rects": [{"solidity": 0.9972241015640546, "top": 355, "right": 2750, "bottom": 2750, "left": 1155}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727628f.jpg"} -{"rects": [{"solidity": 0.9972243901664933, "top": 925, "right": 3885, "bottom": 4215, "left": 1240}], "shape": {"h": 5140, "w": 4235}, "file": "/usr/local/google/home/danvk/milstein/717305f.jpg"} -{"rects": [{"solidity": 0.9972244058190429, "top": 385, "right": 3070, "bottom": 1995, "left": 650}, {"solidity": 0.9966993816194387, "top": 2260, "right": 3065, "bottom": 3875, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729408f.jpg"} -{"rects": [{"solidity": 0.9972244099489342, "top": 860, "right": 3900, "bottom": 3315, "left": 2285}, {"solidity": 0.995204712139917, "top": 855, "right": 2060, "bottom": 3310, "left": 420}, {"solidity": 0.998280111632903, "top": 885, "right": 5755, "bottom": 3305, "left": 4130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710606f.jpg"} -{"rects": [{"solidity": 0.9972245400239478, "top": 740, "right": 3255, "bottom": 2755, "left": 425}, {"solidity": 0.9954250857796416, "top": 3245, "right": 3080, "bottom": 4885, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729356f.jpg"} -{"rects": [{"solidity": 0.997224574124139, "top": 850, "right": 1985, "bottom": 3245, "left": 375}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714958f.jpg"} -{"rects": [{"solidity": 0.9972246418738913, "top": 525, "right": 2995, "bottom": 2160, "left": 565}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706162f.jpg"} -{"rects": [{"solidity": 0.9972246848860964, "top": 720, "right": 2005, "bottom": 3150, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727451f.jpg"} -{"rects": [{"solidity": 0.9972249720062966, "top": 745, "right": 2040, "bottom": 3155, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721980f.jpg"} -{"rects": [{"solidity": 0.9972250630785071, "top": 725, "right": 2655, "bottom": 3730, "left": 225}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508203.jpg"} -{"rects": [{"solidity": 0.9972251604921272, "top": 605, "right": 2410, "bottom": 3645, "left": 420}, {"solidity": 0.9953632501657148, "top": 820, "right": 4180, "bottom": 3225, "left": 2570}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720677f.jpg"} -{"rects": [{"solidity": 0.9972252227348076, "top": 1035, "right": 3520, "bottom": 5080, "left": 230}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714495f.jpg"} -{"rects": [{"solidity": 0.9972252890458815, "top": 795, "right": 2020, "bottom": 3210, "left": 405}, {"solidity": 0.9976181525937832, "top": 810, "right": 3875, "bottom": 3225, "left": 2265}, {"solidity": 0.997746956928839, "top": 835, "right": 5755, "bottom": 3240, "left": 4145}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729935f.jpg"} -{"rects": [{"solidity": 0.9972253549606943, "top": 1045, "right": 3435, "bottom": 5000, "left": 375}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708529f.jpg"} -{"rects": [{"solidity": 0.9972254290398627, "top": 410, "right": 3080, "bottom": 2020, "left": 655}, {"solidity": 0.9962182603997839, "top": 2315, "right": 3085, "bottom": 3930, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729378f.jpg"} -{"rects": [{"solidity": 0.9972254715248305, "top": 435, "right": 3305, "bottom": 2050, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725665f.jpg"} -{"rects": [{"solidity": 0.9972255238777538, "top": 745, "right": 2000, "bottom": 3155, "left": 395}, {"solidity": 0.9957500675238123, "top": 765, "right": 3800, "bottom": 3175, "left": 2180}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724517f.jpg"} -{"rects": [{"solidity": 0.9972255519894823, "top": 775, "right": 2025, "bottom": 3195, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717262f.jpg"} -{"rects": [{"solidity": 0.99722562703465, "top": 485, "right": 3155, "bottom": 2090, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710464f.jpg"} -{"rects": [{"solidity": 0.9972256503924569, "top": 430, "right": 3065, "bottom": 2030, "left": 665}, {"solidity": 0.9948345307182666, "top": 2280, "right": 3050, "bottom": 3895, "left": 645}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729583f.jpg"} -{"rects": [{"solidity": 0.9972257304934176, "top": 995, "right": 3700, "bottom": 2895, "left": 2145}, {"solidity": 0.9946255822285919, "top": 925, "right": 1895, "bottom": 2950, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721079f.jpg"} -{"rects": [{"solidity": 0.9972258805104202, "top": 720, "right": 3230, "bottom": 2735, "left": 415}, {"solidity": 0.9976358546418956, "top": 3345, "right": 3220, "bottom": 5350, "left": 410}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728727f.jpg"} -{"rects": [{"solidity": 0.9972260303659778, "top": 2235, "right": 3180, "bottom": 3855, "left": 760}, {"solidity": 0.9974684764275962, "top": 440, "right": 3190, "bottom": 2060, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710999f.jpg"} -{"rects": [{"solidity": 0.9972263349475331, "top": 395, "right": 3130, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701515f.jpg"} -{"rects": [{"solidity": 0.9972263884775707, "top": 775, "right": 2025, "bottom": 3210, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706615f.jpg"} -{"rects": [{"solidity": 0.9972264237854578, "top": 755, "right": 2020, "bottom": 3165, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723379f.jpg"} -{"rects": [{"solidity": 0.9972264706919716, "top": 2285, "right": 3220, "bottom": 3900, "left": 785}, {"solidity": 0.9953939090465552, "top": 435, "right": 3230, "bottom": 2065, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730910f.jpg"} -{"rects": [{"solidity": 0.9972267122006436, "top": 455, "right": 5090, "bottom": 3715, "left": 1040}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731325f.jpg"} -{"rects": [{"solidity": 0.9972270820033236, "top": 1325, "right": 3635, "bottom": 5255, "left": 320}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718498f.jpg"} -{"rects": [{"solidity": 0.9972272297039891, "top": 705, "right": 2500, "bottom": 2230, "left": 400}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517059.jpg"} -{"rects": [{"solidity": 0.9972272766658002, "top": 2270, "right": 3160, "bottom": 3890, "left": 740}, {"solidity": 0.997932284744713, "top": 435, "right": 3145, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724119f.jpg"} -{"rects": [{"solidity": 0.9972273178749025, "top": 745, "right": 1970, "bottom": 3165, "left": 350}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718140f.jpg"} -{"rects": [{"solidity": 0.997227465785748, "top": 440, "right": 3175, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/732496f.jpg"} -{"rects": [{"solidity": 0.9972274717029583, "top": 605, "right": 3320, "bottom": 2665, "left": 265}, {"solidity": 0.9960641586583571, "top": 2780, "right": 2790, "bottom": 4195, "left": 980}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720659f.jpg"} -{"rects": [{"solidity": 0.9972275608401163, "top": 330, "right": 3965, "bottom": 2755, "left": 955}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517257.jpg"} -{"rects": [{"solidity": 0.9972276486842064, "top": 1025, "right": 3445, "bottom": 5065, "left": 395}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708506f.jpg"} -{"rects": [{"solidity": 0.9972278177458034, "top": 920, "right": 3905, "bottom": 3340, "left": 2275}, {"solidity": 0.9949162649202066, "top": 945, "right": 2035, "bottom": 3320, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701855f.jpg"} -{"rects": [{"solidity": 0.9972278667558251, "top": 775, "right": 2020, "bottom": 3185, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702887f.jpg"} -{"rects": [{"solidity": 0.9972279390146583, "top": 2190, "right": 3145, "bottom": 3800, "left": 725}, {"solidity": 0.9963125588943567, "top": 405, "right": 3150, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/734584f.jpg"} -{"rects": [{"solidity": 0.9972279457916571, "top": 1140, "right": 5480, "bottom": 2760, "left": 670}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722408f.jpg"} -{"rects": [{"solidity": 0.9972279463835706, "top": 410, "right": 3100, "bottom": 2050, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701760f.jpg"} -{"rects": [{"solidity": 0.9972280107879298, "top": 745, "right": 3870, "bottom": 3145, "left": 2260}, {"solidity": 0.9971085707191327, "top": 750, "right": 2025, "bottom": 3155, "left": 420}, {"solidity": 0.9960041792354881, "top": 725, "right": 5715, "bottom": 3135, "left": 4115}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733358f.jpg"} -{"rects": [{"solidity": 0.9972281552618478, "top": 725, "right": 2070, "bottom": 3145, "left": 440}, {"solidity": 0.9962231486944738, "top": 745, "right": 4000, "bottom": 3165, "left": 2380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732411f.jpg"} -{"rects": [{"solidity": 0.9972282428135234, "top": 2215, "right": 3210, "bottom": 3850, "left": 770}, {"solidity": 0.9957262638048463, "top": 420, "right": 3190, "bottom": 2000, "left": 820}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/700800f.jpg"} -{"rects": [{"solidity": 0.9972284419850631, "top": 565, "right": 2980, "bottom": 1995, "left": 1125}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727605f.jpg"} -{"rects": [{"solidity": 0.9972285037353883, "top": 565, "right": 3275, "bottom": 2465, "left": 560}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712345f.jpg"} -{"rects": [{"solidity": 0.9972287160252787, "top": 750, "right": 1990, "bottom": 3180, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723174f.jpg"} -{"rects": [{"solidity": 0.9972287698286296, "top": 460, "right": 3250, "bottom": 2095, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706751f.jpg"} -{"rects": [{"solidity": 0.9972289238341617, "top": 2265, "right": 3200, "bottom": 3885, "left": 785}, {"solidity": 0.9980013606372209, "top": 440, "right": 3185, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/710096f.jpg"} -{"rects": [{"solidity": 0.9972289472916606, "top": 765, "right": 1960, "bottom": 3170, "left": 340}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717858f.jpg"} -{"rects": [{"solidity": 0.9972289485078337, "top": 525, "right": 3495, "bottom": 2155, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702250f.jpg"} -{"rects": [{"solidity": 0.9972290060495778, "top": 515, "right": 3035, "bottom": 2155, "left": 610}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703032f.jpg"} -{"rects": [{"solidity": 0.9972291680746097, "top": 425, "right": 3230, "bottom": 2040, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725353f.jpg"} -{"rects": [{"solidity": 0.997229212658733, "top": 735, "right": 2025, "bottom": 3155, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722287f.jpg"} -{"rects": [{"solidity": 0.9972293677109819, "top": 515, "right": 2965, "bottom": 2420, "left": 1630}, {"solidity": 0.9960282480216368, "top": 520, "right": 4410, "bottom": 2425, "left": 3085}, {"solidity": 0.9957240420645473, "top": 515, "right": 1520, "bottom": 2430, "left": 200}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716511f.jpg"} -{"rects": [{"solidity": 0.9972293882278614, "top": 2190, "right": 3130, "bottom": 3815, "left": 770}, {"solidity": 0.9966377597347055, "top": 345, "right": 3145, "bottom": 1965, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733930f.jpg"} -{"rects": [{"solidity": 0.9972296308866511, "top": 1100, "right": 3405, "bottom": 5005, "left": 250}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730470f.jpg"} -{"rects": [{"solidity": 0.9972297559085626, "top": 455, "right": 3245, "bottom": 2065, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727841f.jpg"} -{"rects": [{"solidity": 0.9972297690584717, "top": 335, "right": 3395, "bottom": 2850, "left": 315}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509913.jpg"} -{"rects": [{"solidity": 0.997229791539389, "top": 725, "right": 2025, "bottom": 3155, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727208f.jpg"} -{"rects": [{"solidity": 0.9972300703562129, "top": 785, "right": 3845, "bottom": 3190, "left": 2235}, {"solidity": 0.9961810662674045, "top": 785, "right": 2020, "bottom": 3175, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719904f.jpg"} -{"rects": [{"solidity": 0.9972301428319751, "top": 385, "right": 3105, "bottom": 1985, "left": 690}, {"solidity": 0.9946532417366063, "top": 4135, "right": 3095, "bottom": 5745, "left": 675}, {"solidity": 0.9953344005633932, "top": 2260, "right": 3095, "bottom": 3880, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728363f.jpg"} -{"rects": [{"solidity": 0.997230174428483, "top": 470, "right": 3230, "bottom": 2090, "left": 805}, {"solidity": 0.9971726156855277, "top": 2245, "right": 3225, "bottom": 3855, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733242f.jpg"} -{"rects": [{"solidity": 0.9972303770456716, "top": 335, "right": 3145, "bottom": 1965, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703163f.jpg"} -{"rects": [{"solidity": 0.9972306181628489, "top": 525, "right": 3545, "bottom": 2340, "left": 830}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711374f.jpg"} -{"rects": [{"solidity": 0.9972306677829866, "top": 1000, "right": 3500, "bottom": 5020, "left": 230}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722756f.jpg"} -{"rects": [{"solidity": 0.9972308037072015, "top": 2165, "right": 3200, "bottom": 3795, "left": 780}, {"solidity": 0.9961774638247316, "top": 305, "right": 3200, "bottom": 1930, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705399f.jpg"} -{"rects": [{"solidity": 0.9972308151261049, "top": 2325, "right": 3230, "bottom": 3940, "left": 820}, {"solidity": 0.9966250179520322, "top": 620, "right": 3205, "bottom": 2230, "left": 805}, {"solidity": 0.9979036398341341, "top": 4025, "right": 3210, "bottom": 5630, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733125f.jpg"} -{"rects": [{"solidity": 0.9972308585754857, "top": 1275, "right": 4160, "bottom": 3920, "left": 800}], "shape": {"h": 4220, "w": 5140}, "file": "/usr/local/google/home/danvk/milstein/720868f.jpg"} -{"rects": [{"solidity": 0.9972308601680758, "top": 380, "right": 3200, "bottom": 2000, "left": 775}, {"solidity": 0.9958704328147465, "top": 2230, "right": 3200, "bottom": 3855, "left": 775}, {"solidity": 0.9975580809312459, "top": 4105, "right": 3185, "bottom": 5710, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727466f.jpg"} -{"rects": [{"solidity": 0.9972309908051836, "top": 505, "right": 5035, "bottom": 3710, "left": 990}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722447f.jpg"} -{"rects": [{"solidity": 0.9972310462568162, "top": 780, "right": 2690, "bottom": 3785, "left": 220}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716359f.jpg"} -{"rects": [{"solidity": 0.9972315023520976, "top": 310, "right": 3220, "bottom": 1935, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715543f.jpg"} -{"rects": [{"solidity": 0.9972315634338385, "top": 2425, "right": 2500, "bottom": 3915, "left": 420}, {"solidity": 0.9991996635320155, "top": 645, "right": 2510, "bottom": 2130, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716009f.jpg"} -{"rects": [{"solidity": 0.9972320121019006, "top": 745, "right": 2095, "bottom": 3165, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713439f.jpg"} -{"rects": [{"solidity": 0.9972320437711306, "top": 905, "right": 2000, "bottom": 3330, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706660f.jpg"} -{"rects": [{"solidity": 0.9972321062767958, "top": 4130, "right": 3245, "bottom": 5745, "left": 825}, {"solidity": 0.9974185179179503, "top": 415, "right": 3230, "bottom": 2025, "left": 815}, {"solidity": 0.995791174771711, "top": 2265, "right": 3235, "bottom": 3880, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719776f.jpg"} -{"rects": [{"solidity": 0.9972324693629222, "top": 405, "right": 3225, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/725280f.jpg"} -{"rects": [{"solidity": 0.9972325392157653, "top": 960, "right": 3580, "bottom": 3015, "left": 525}, {"solidity": 0.9955282481446639, "top": 765, "right": 5420, "bottom": 3175, "left": 3800}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714780f.jpg"} -{"rects": [{"solidity": 0.9972327311782179, "top": 830, "right": 2015, "bottom": 3240, "left": 385}, {"solidity": 0.9954705700043907, "top": 870, "right": 3880, "bottom": 3290, "left": 2250}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724073f.jpg"} -{"rects": [{"solidity": 0.9972330167534709, "top": 420, "right": 3125, "bottom": 2035, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728510f.jpg"} -{"rects": [{"solidity": 0.9972330532888478, "top": 420, "right": 3185, "bottom": 2005, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719420f.jpg"} -{"rects": [{"solidity": 0.9972331553719652, "top": 745, "right": 2080, "bottom": 3150, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723993f.jpg"} -{"rects": [{"solidity": 0.997233267661685, "top": 425, "right": 3160, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720126f.jpg"} -{"rects": [{"solidity": 0.9972334920739249, "top": 450, "right": 3235, "bottom": 2105, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716771f.jpg"} -{"rects": [{"solidity": 0.9972334926077567, "top": 2265, "right": 2980, "bottom": 3960, "left": 570}, {"solidity": 0.9956354122774469, "top": 4150, "right": 2990, "bottom": 5825, "left": 575}, {"solidity": 0.9975408003577018, "top": 485, "right": 2955, "bottom": 2080, "left": 575}], "shape": {"h": 6140, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/731150f.jpg"} -{"rects": [{"solidity": 0.997233576153235, "top": 380, "right": 2675, "bottom": 3615, "left": 620}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733038f.jpg"} -{"rects": [{"solidity": 0.9972336574615304, "top": 480, "right": 5055, "bottom": 3680, "left": 1040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708190f.jpg"} -{"rects": [{"solidity": 0.9972336683739618, "top": 4050, "right": 3155, "bottom": 5670, "left": 730}, {"solidity": 0.9965070165225195, "top": 2240, "right": 3165, "bottom": 3860, "left": 740}, {"solidity": 0.9993416785575302, "top": 450, "right": 3160, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723719f.jpg"} -{"rects": [{"solidity": 0.9972337136861251, "top": 1010, "right": 3590, "bottom": 5095, "left": 245}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/714643f.jpg"} -{"rects": [{"solidity": 0.9972337860811926, "top": 625, "right": 3930, "bottom": 3425, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704030f.jpg"} -{"rects": [{"solidity": 0.99723379715155, "top": 390, "right": 2570, "bottom": 2805, "left": 940}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719057f.jpg"} -{"rects": [{"solidity": 0.9972340253655384, "top": 750, "right": 2105, "bottom": 3165, "left": 490}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708066f.jpg"} -{"rects": [{"solidity": 0.9972340589382893, "top": 760, "right": 3860, "bottom": 3180, "left": 2235}, {"solidity": 0.9985357861602766, "top": 760, "right": 2035, "bottom": 3170, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732360f.jpg"} -{"rects": [{"solidity": 0.9972344486425427, "top": 445, "right": 2965, "bottom": 2055, "left": 555}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706815f.jpg"} -{"rects": [{"solidity": 0.9972344502900573, "top": 805, "right": 1965, "bottom": 3205, "left": 345}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715566f.jpg"} -{"rects": [{"solidity": 0.9972345640586702, "top": 1090, "right": 3215, "bottom": 4650, "left": 935}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/713159f.jpg"} -{"rects": [{"solidity": 0.997234587241847, "top": 2040, "right": 2640, "bottom": 3475, "left": 795}, {"solidity": 0.9992855156275474, "top": 575, "right": 2635, "bottom": 1995, "left": 785}, {"solidity": 0.9958239543592803, "top": 585, "right": 5270, "bottom": 1955, "left": 3425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705254f.jpg"} -{"rects": [{"solidity": 0.9972353264552091, "top": 435, "right": 3200, "bottom": 2060, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704947f.jpg"} -{"rects": [{"solidity": 0.9972353590488825, "top": 2060, "right": 5230, "bottom": 3445, "left": 3425}, {"solidity": 0.9967573621115325, "top": 2055, "right": 2640, "bottom": 3455, "left": 860}, {"solidity": 0.9969311230542288, "top": 610, "right": 5230, "bottom": 1995, "left": 3460}, {"solidity": 0.9973622706237789, "top": 615, "right": 2620, "bottom": 1995, "left": 855}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707108f.jpg"} -{"rects": [{"solidity": 0.997235534383639, "top": 450, "right": 3275, "bottom": 2085, "left": 850}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704630f.jpg"} -{"rects": [{"solidity": 0.9972356846796513, "top": 430, "right": 3200, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702889f.jpg"} -{"rects": [{"solidity": 0.9972360063075182, "top": 580, "right": 3260, "bottom": 2585, "left": 445}, {"solidity": 0.9958992028536179, "top": 2600, "right": 3060, "bottom": 4245, "left": 625}, {"solidity": 0.9954967279656735, "top": 4295, "right": 3030, "bottom": 5940, "left": 600}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729399f.jpg"} -{"rects": [{"solidity": 0.9972364608870069, "top": 530, "right": 3360, "bottom": 2540, "left": 275}, {"solidity": 0.9977069941475583, "top": 2590, "right": 3075, "bottom": 4220, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719376f.jpg"} -{"rects": [{"solidity": 0.9972364977369471, "top": 755, "right": 2760, "bottom": 3560, "left": 825}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705748f.jpg"} -{"rects": [{"solidity": 0.997236701904244, "top": 895, "right": 1830, "bottom": 2960, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705336f.jpg"} -{"rects": [{"solidity": 0.9972367070003423, "top": 735, "right": 3275, "bottom": 2600, "left": 595}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712048f.jpg"} -{"rects": [{"solidity": 0.9972368880251273, "top": 1155, "right": 3440, "bottom": 4995, "left": 370}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721732f.jpg"} -{"rects": [{"solidity": 0.9972370005602803, "top": 1125, "right": 3530, "bottom": 5095, "left": 310}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720015f.jpg"} -{"rects": [{"solidity": 0.9972372606130985, "top": 850, "right": 3875, "bottom": 3280, "left": 2245}, {"solidity": 0.9978694272406203, "top": 835, "right": 5730, "bottom": 3260, "left": 4105}, {"solidity": 0.9973256037409519, "top": 830, "right": 2040, "bottom": 3265, "left": 420}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700881f.jpg"} -{"rects": [{"solidity": 0.9972373422917113, "top": 2295, "right": 3185, "bottom": 3935, "left": 745}, {"solidity": 0.9963118070533467, "top": 430, "right": 3145, "bottom": 2060, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716778f.jpg"} -{"rects": [{"solidity": 0.997237352560837, "top": 345, "right": 3240, "bottom": 1950, "left": 835}, {"solidity": 0.9975098785738157, "top": 2200, "right": 3225, "bottom": 3820, "left": 850}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/717610f.jpg"} -{"rects": [{"solidity": 0.9972374293553159, "top": 360, "right": 3530, "bottom": 2000, "left": 1095}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706078f.jpg"} -{"rects": [{"solidity": 0.9972374445396063, "top": 725, "right": 2055, "bottom": 3145, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716599f.jpg"} -{"rects": [{"solidity": 0.9972376312446738, "top": 790, "right": 2020, "bottom": 3215, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705377f.jpg"} -{"rects": [{"solidity": 0.9972377906174709, "top": 820, "right": 2065, "bottom": 3250, "left": 445}, {"solidity": 0.9972649374635996, "top": 820, "right": 3920, "bottom": 3245, "left": 2305}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729737f.jpg"} -{"rects": [{"solidity": 0.9972378691757393, "top": 815, "right": 2000, "bottom": 3210, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712695f.jpg"} -{"rects": [{"solidity": 0.9972380306470479, "top": 340, "right": 3130, "bottom": 1955, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704746f.jpg"} -{"rects": [{"solidity": 0.9972380800924319, "top": 475, "right": 5715, "bottom": 2085, "left": 3305}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711058f.jpg"} -{"rects": [{"solidity": 0.997238110225094, "top": 730, "right": 5680, "bottom": 3160, "left": 4060}, {"solidity": 0.995803484652468, "top": 725, "right": 3865, "bottom": 3150, "left": 2250}, {"solidity": 0.9965708239377781, "top": 740, "right": 2035, "bottom": 3160, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731731f.jpg"} -{"rects": [{"solidity": 0.9972381333171083, "top": 640, "right": 3190, "bottom": 2780, "left": 450}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508399.jpg"} -{"rects": [{"solidity": 0.9972381571548723, "top": 860, "right": 3540, "bottom": 4905, "left": 255}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708607f.jpg"} -{"rects": [{"solidity": 0.9972382842841115, "top": 455, "right": 3170, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705625f.jpg"} -{"rects": [{"solidity": 0.9972383451934261, "top": 1000, "right": 3555, "bottom": 5020, "left": 275}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/711611f.jpg"} -{"rects": [{"solidity": 0.9972385605592723, "top": 2250, "right": 3045, "bottom": 3865, "left": 630}, {"solidity": 0.9958852003291839, "top": 390, "right": 3060, "bottom": 2005, "left": 640}, {"solidity": 0.9950707553361863, "top": 4130, "right": 3035, "bottom": 5735, "left": 620}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728387f.jpg"} -{"rects": [{"solidity": 0.9972385763110685, "top": 600, "right": 2730, "bottom": 2025, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703796f.jpg"} -{"rects": [{"solidity": 0.9972385788808094, "top": 455, "right": 5170, "bottom": 3665, "left": 1205}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731310f.jpg"} -{"rects": [{"solidity": 0.9972385950746872, "top": 765, "right": 2000, "bottom": 3190, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703638f.jpg"} -{"rects": [{"solidity": 0.9972386944909691, "top": 800, "right": 2025, "bottom": 3220, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705453f.jpg"} -{"rects": [{"solidity": 0.9972387806559084, "top": 685, "right": 3340, "bottom": 2740, "left": 500}, {"solidity": 0.9976757635607739, "top": 3235, "right": 3330, "bottom": 5280, "left": 500}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733820f.jpg"} -{"rects": [{"solidity": 0.997239124622228, "top": 645, "right": 2690, "bottom": 3725, "left": 655}, {"solidity": 0.997007425091718, "top": 695, "right": 5300, "bottom": 3695, "left": 3280}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713678f.jpg"} -{"rects": [{"solidity": 0.9972391829814533, "top": 2170, "right": 2985, "bottom": 3810, "left": 975}, {"solidity": 0.9959956541983548, "top": 440, "right": 2955, "bottom": 1895, "left": 1000}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723595f.jpg"} -{"rects": [{"solidity": 0.9972392328640798, "top": 730, "right": 4845, "bottom": 3270, "left": 1400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701941f.jpg"} -{"rects": [{"solidity": 0.9972393357694026, "top": 865, "right": 2055, "bottom": 3285, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700301f.jpg"} -{"rects": [{"solidity": 0.9972394208067099, "top": 365, "right": 3155, "bottom": 1970, "left": 770}, {"solidity": 0.9971287069554999, "top": 2210, "right": 3145, "bottom": 3805, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707661f.jpg"} -{"rects": [{"solidity": 0.9972394651426193, "top": 440, "right": 5425, "bottom": 3605, "left": 1445}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733404f.jpg"} -{"rects": [{"solidity": 0.9972394814641983, "top": 1035, "right": 3655, "bottom": 5080, "left": 340}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715034f.jpg"} -{"rects": [{"solidity": 0.997239655512637, "top": 765, "right": 3200, "bottom": 2760, "left": 410}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705888f.jpg"} -{"rects": [{"solidity": 0.9972400829960653, "top": 510, "right": 3160, "bottom": 2095, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709661f.jpg"} -{"rects": [{"solidity": 0.9972401490448782, "top": 340, "right": 2965, "bottom": 1965, "left": 570}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702718f.jpg"} -{"rects": [{"solidity": 0.9972403135003863, "top": 795, "right": 2055, "bottom": 3180, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717439f.jpg"} -{"rects": [{"solidity": 0.9972403880392208, "top": 1075, "right": 3470, "bottom": 4940, "left": 470}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720999f.jpg"} -{"rects": [{"solidity": 0.9972403934362261, "top": 3675, "right": 3720, "bottom": 5850, "left": 630}, {"solidity": 0.9965276668664637, "top": 780, "right": 3745, "bottom": 2955, "left": 645}], "shape": {"h": 6850, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710265f.jpg"} -{"rects": [{"solidity": 0.9972405050948272, "top": 300, "right": 3160, "bottom": 1925, "left": 770}, {"solidity": 0.9960677211337202, "top": 2135, "right": 3145, "bottom": 3760, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710378f.jpg"} -{"rects": [{"solidity": 0.9972405835783444, "top": 385, "right": 3295, "bottom": 3840, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715262f.jpg"} -{"rects": [{"solidity": 0.9972407472407473, "top": 800, "right": 3985, "bottom": 3210, "left": 2375}, {"solidity": 0.9970941798803754, "top": 785, "right": 5740, "bottom": 3195, "left": 4135}, {"solidity": 0.9972465426081142, "top": 800, "right": 2225, "bottom": 3205, "left": 625}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710522f.jpg"} -{"rects": [{"solidity": 0.9972409863568737, "top": 735, "right": 4680, "bottom": 3545, "left": 1125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705223f.jpg"} -{"rects": [{"solidity": 0.9972409973222057, "top": 870, "right": 3395, "bottom": 2845, "left": 335}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716611f.jpg"} -{"rects": [{"solidity": 0.9972411231811972, "top": 780, "right": 2005, "bottom": 3170, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716917f.jpg"} -{"rects": [{"solidity": 0.9972411570381113, "top": 755, "right": 2075, "bottom": 3175, "left": 455}, {"solidity": 0.9961683726531283, "top": 765, "right": 3975, "bottom": 3185, "left": 2335}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711803f.jpg"} -{"rects": [{"solidity": 0.9972411797523999, "top": 390, "right": 4920, "bottom": 3710, "left": 1095}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721574f.jpg"} -{"rects": [{"solidity": 0.9972412517381709, "top": 2260, "right": 3175, "bottom": 3890, "left": 750}, {"solidity": 0.9969388800655772, "top": 430, "right": 3170, "bottom": 2060, "left": 750}, {"solidity": 0.9967996751331857, "top": 4110, "right": 3175, "bottom": 5725, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717708f.jpg"} -{"rects": [{"solidity": 0.997241325272308, "top": 380, "right": 5070, "bottom": 3605, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732657f.jpg"} -{"rects": [{"solidity": 0.9972413724790998, "top": 655, "right": 2730, "bottom": 2070, "left": 930}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728013f.jpg"} -{"rects": [{"solidity": 0.9972413891423357, "top": 775, "right": 1915, "bottom": 3100, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724777f.jpg"} -{"rects": [{"solidity": 0.9972416406572836, "top": 995, "right": 3560, "bottom": 5080, "left": 315}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711296f.jpg"} -{"rects": [{"solidity": 0.9972420244508242, "top": 2165, "right": 3190, "bottom": 3775, "left": 765}, {"solidity": 0.996338797276878, "top": 360, "right": 3165, "bottom": 1960, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719678f.jpg"} -{"rects": [{"solidity": 0.9972424362874746, "top": 475, "right": 5090, "bottom": 3720, "left": 1020}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734638f.jpg"} -{"rects": [{"solidity": 0.9972424381195866, "top": 815, "right": 2155, "bottom": 3205, "left": 555}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710986f.jpg"} -{"rects": [{"solidity": 0.9972424521636766, "top": 460, "right": 5085, "bottom": 3740, "left": 1055}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714407f.jpg"} -{"rects": [{"solidity": 0.997242629397862, "top": 415, "right": 2980, "bottom": 2045, "left": 560}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707120f.jpg"} -{"rects": [{"solidity": 0.9972426322033405, "top": 420, "right": 3050, "bottom": 2035, "left": 635}, {"solidity": 0.9969131179462466, "top": 2275, "right": 3050, "bottom": 3885, "left": 635}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730591f.jpg"} -{"rects": [{"solidity": 0.9972426677109648, "top": 390, "right": 3035, "bottom": 2010, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729822f.jpg"} -{"rects": [{"solidity": 0.9972428515532096, "top": 445, "right": 5035, "bottom": 3700, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733977f.jpg"} -{"rects": [{"solidity": 0.9972428722361733, "top": 445, "right": 5105, "bottom": 3720, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708621f.jpg"} -{"rects": [{"solidity": 0.9972430460615407, "top": 810, "right": 2025, "bottom": 3225, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713193f.jpg"} -{"rects": [{"solidity": 0.9972433480790603, "top": 795, "right": 2205, "bottom": 3340, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730162f.jpg"} -{"rects": [{"solidity": 0.997243442026205, "top": 655, "right": 3450, "bottom": 2660, "left": 415}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713426f.jpg"} -{"rects": [{"solidity": 0.9972435020293946, "top": 415, "right": 5070, "bottom": 3575, "left": 1430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708574f.jpg"} -{"rects": [{"solidity": 0.9972435209937411, "top": 815, "right": 3810, "bottom": 3245, "left": 2190}, {"solidity": 0.998486705318196, "top": 810, "right": 2000, "bottom": 3225, "left": 390}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724844f.jpg"} -{"rects": [{"solidity": 0.9972435956469134, "top": 780, "right": 2020, "bottom": 3220, "left": 385}, {"solidity": 0.9976419077603541, "top": 790, "right": 3855, "bottom": 3230, "left": 2235}, {"solidity": 0.9958213849397609, "top": 790, "right": 5690, "bottom": 3230, "left": 4070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700945f.jpg"} -{"rects": [{"solidity": 0.9972436391673092, "top": 850, "right": 3965, "bottom": 3260, "left": 2335}, {"solidity": 0.9969276129966537, "top": 855, "right": 2065, "bottom": 3265, "left": 455}, {"solidity": 0.9959955484336296, "top": 855, "right": 5770, "bottom": 3265, "left": 4165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712745f.jpg"} -{"rects": [{"solidity": 0.9972437896928014, "top": 300, "right": 3165, "bottom": 1920, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705348f.jpg"} -{"rects": [{"solidity": 0.9972440605027831, "top": 870, "right": 3865, "bottom": 3300, "left": 2235}, {"solidity": 0.9967169824786782, "top": 865, "right": 2005, "bottom": 3275, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710480f.jpg"} -{"rects": [{"solidity": 0.9972441033093166, "top": 2245, "right": 3185, "bottom": 3865, "left": 750}, {"solidity": 0.9969179706021811, "top": 380, "right": 3175, "bottom": 2005, "left": 740}, {"solidity": 0.9966994144122344, "top": 4105, "right": 3185, "bottom": 5715, "left": 760}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/700888f.jpg"} -{"rects": [{"solidity": 0.9972447217844552, "top": 1055, "right": 3570, "bottom": 5090, "left": 320}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722293f.jpg"} -{"rects": [{"solidity": 0.9972450331125828, "top": 1055, "right": 3490, "bottom": 4855, "left": 240}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721419f.jpg"} -{"rects": [{"solidity": 0.9972450603558727, "top": 435, "right": 5170, "bottom": 3680, "left": 1090}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709154f.jpg"} -{"rects": [{"solidity": 0.9972451790633609, "top": 645, "right": 2855, "bottom": 2035, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706925f.jpg"} -{"rects": [{"solidity": 0.9972453551318842, "top": 425, "right": 3195, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702540f.jpg"} -{"rects": [{"solidity": 0.997245469585998, "top": 1045, "right": 3550, "bottom": 5065, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722401f.jpg"} -{"rects": [{"solidity": 0.9972456067427546, "top": 515, "right": 2930, "bottom": 1920, "left": 1140}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726213f.jpg"} -{"rects": [{"solidity": 0.9972456430249422, "top": 915, "right": 3485, "bottom": 4990, "left": 265}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717856f.jpg"} -{"rects": [{"solidity": 0.9972459277180307, "top": 765, "right": 1985, "bottom": 3160, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713513f.jpg"} -{"rects": [{"solidity": 0.9972460098626651, "top": 815, "right": 2090, "bottom": 3210, "left": 500}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710058f.jpg"} -{"rects": [{"solidity": 0.9972461833924677, "top": 710, "right": 2060, "bottom": 3115, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710175f.jpg"} -{"rects": [{"solidity": 0.9972466619037832, "top": 445, "right": 3220, "bottom": 2050, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710864f.jpg"} -{"rects": [{"solidity": 0.9972468207024511, "top": 2235, "right": 3310, "bottom": 4005, "left": 580}, {"solidity": 0.9634712908177254, "top": 330, "right": 3330, "bottom": 2135, "left": 595}, {"solidity": 0.9389602736094991, "top": 4085, "right": 3320, "bottom": 5880, "left": 580}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705220f.jpg"} -{"rects": [{"solidity": 0.9972468791953033, "top": 475, "right": 5040, "bottom": 3660, "left": 1105}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708704f.jpg"} -{"rects": [{"solidity": 0.9972471924582732, "top": 2300, "right": 3205, "bottom": 3925, "left": 790}, {"solidity": 0.9969864956328359, "top": 475, "right": 3185, "bottom": 2095, "left": 770}, {"solidity": 0.9979019230207112, "top": 4130, "right": 3215, "bottom": 5735, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715344f.jpg"} -{"rects": [{"solidity": 0.9972474583255533, "top": 370, "right": 2985, "bottom": 1995, "left": 575}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704940f.jpg"} -{"rects": [{"solidity": 0.9972476821717209, "top": 750, "right": 3850, "bottom": 3140, "left": 2255}, {"solidity": 0.997845640648889, "top": 750, "right": 2005, "bottom": 3140, "left": 415}, {"solidity": 0.9966148000543754, "top": 755, "right": 5700, "bottom": 3150, "left": 4110}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721818f.jpg"} -{"rects": [{"solidity": 0.9972477552731944, "top": 475, "right": 3140, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723805f.jpg"} -{"rects": [{"solidity": 0.9972478810620017, "top": 760, "right": 2085, "bottom": 3170, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715083f.jpg"} -{"rects": [{"solidity": 0.997247929816079, "top": 870, "right": 2685, "bottom": 3875, "left": 290}], "shape": {"h": 4655, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/724450f.jpg"} -{"rects": [{"solidity": 0.9972479721900348, "top": 2115, "right": 3225, "bottom": 3740, "left": 810}, {"solidity": 0.9970257392908872, "top": 270, "right": 3240, "bottom": 1890, "left": 820}, {"solidity": 0.9957799241740386, "top": 3995, "right": 3205, "bottom": 5620, "left": 785}], "shape": {"h": 6140, "w": 4095}, "file": "/usr/local/google/home/danvk/milstein/712698f.jpg"} -{"rects": [{"solidity": 0.9972480869271197, "top": 420, "right": 5120, "bottom": 3660, "left": 1040}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708413f.jpg"} -{"rects": [{"solidity": 0.9972481802482287, "top": 305, "right": 3455, "bottom": 2775, "left": 280}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508843.jpg"} -{"rects": [{"solidity": 0.9972482221292617, "top": 765, "right": 3920, "bottom": 3165, "left": 2315}, {"solidity": 0.9959238005675554, "top": 775, "right": 5770, "bottom": 3165, "left": 4170}, {"solidity": 0.9955149507175747, "top": 775, "right": 2065, "bottom": 3160, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709043f.jpg"} -{"rects": [{"solidity": 0.9972484796262189, "top": 955, "right": 2705, "bottom": 3985, "left": 270}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517263.jpg"} -{"rects": [{"solidity": 0.997248812722059, "top": 385, "right": 3205, "bottom": 2000, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701781f.jpg"} -{"rects": [{"solidity": 0.9972488236569286, "top": 405, "right": 3220, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719498f.jpg"} -{"rects": [{"solidity": 0.9972488694879369, "top": 4100, "right": 3235, "bottom": 5705, "left": 825}, {"solidity": 0.9968100560121447, "top": 2335, "right": 3235, "bottom": 3935, "left": 820}, {"solidity": 0.9970897268669336, "top": 560, "right": 3235, "bottom": 2165, "left": 830}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733176f.jpg"} -{"rects": [{"solidity": 0.9972489481272251, "top": 610, "right": 2740, "bottom": 2035, "left": 935}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707341f.jpg"} -{"rects": [{"solidity": 0.9972489482704893, "top": 600, "right": 2720, "bottom": 2015, "left": 890}, {"solidity": 0.9977460226080762, "top": 2085, "right": 2715, "bottom": 3505, "left": 895}, {"solidity": 0.9968053455591864, "top": 610, "right": 5200, "bottom": 2030, "left": 3375}, {"solidity": 0.9965167994603937, "top": 2130, "right": 5185, "bottom": 3490, "left": 3420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707140f.jpg"} -{"rects": [{"solidity": 0.9972490911756634, "top": 415, "right": 5060, "bottom": 3720, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710948f.jpg"} -{"rects": [{"solidity": 0.9972495254914095, "top": 410, "right": 5100, "bottom": 3625, "left": 1110}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701974f.jpg"} -{"rects": [{"solidity": 0.9972495767940109, "top": 805, "right": 2025, "bottom": 3195, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713203f.jpg"} -{"rects": [{"solidity": 0.9972496501321723, "top": 430, "right": 3210, "bottom": 2045, "left": 800}, {"solidity": 0.9963463859721988, "top": 2220, "right": 3205, "bottom": 3835, "left": 795}, {"solidity": 0.9963428140843881, "top": 4015, "right": 3195, "bottom": 5625, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715120f.jpg"} -{"rects": [{"solidity": 0.9972499284338101, "top": 875, "right": 2010, "bottom": 3295, "left": 390}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700817f.jpg"} -{"rects": [{"solidity": 0.9972500096631474, "top": 1030, "right": 3530, "bottom": 5100, "left": 250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717123f.jpg"} -{"rects": [{"solidity": 0.9972500289132474, "top": 420, "right": 3110, "bottom": 2035, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701327f.jpg"} -{"rects": [{"solidity": 0.9972501153742103, "top": 440, "right": 3265, "bottom": 2070, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726504f.jpg"} -{"rects": [{"solidity": 0.9972502944900654, "top": 835, "right": 2055, "bottom": 3205, "left": 490}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701381f.jpg"} -{"rects": [{"solidity": 0.9972503816196329, "top": 800, "right": 2070, "bottom": 3210, "left": 465}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717871f.jpg"} -{"rects": [{"solidity": 0.9972505082110036, "top": 400, "right": 5110, "bottom": 3715, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720079f.jpg"} -{"rects": [{"solidity": 0.9972507068680209, "top": 755, "right": 3880, "bottom": 3155, "left": 2270}, {"solidity": 0.9967053655475369, "top": 765, "right": 5700, "bottom": 3165, "left": 4095}, {"solidity": 0.9954471072635135, "top": 750, "right": 2050, "bottom": 3145, "left": 455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717936f.jpg"} -{"rects": [{"solidity": 0.9972509304044503, "top": 785, "right": 2030, "bottom": 3200, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712643f.jpg"} -{"rects": [{"solidity": 0.997251037004515, "top": 435, "right": 3155, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719471f.jpg"} -{"rects": [{"solidity": 0.9972510522779934, "top": 1095, "right": 3480, "bottom": 5115, "left": 285}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717077f.jpg"} -{"rects": [{"solidity": 0.9972512663514675, "top": 990, "right": 2010, "bottom": 2990, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701661f.jpg"} -{"rects": [{"solidity": 0.9972513534515423, "top": 415, "right": 3210, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734709f.jpg"} -{"rects": [{"solidity": 0.9972515288168625, "top": 785, "right": 3875, "bottom": 3200, "left": 2265}, {"solidity": 0.9950217595191811, "top": 795, "right": 5650, "bottom": 3200, "left": 4035}, {"solidity": 0.9951216326530612, "top": 790, "right": 2105, "bottom": 3205, "left": 500}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719806f.jpg"} -{"rects": [{"solidity": 0.9972515578247219, "top": 390, "right": 3125, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701096f.jpg"} -{"rects": [{"solidity": 0.9972515773129009, "top": 415, "right": 3200, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717539f.jpg"} -{"rects": [{"solidity": 0.9972517588053628, "top": 990, "right": 3490, "bottom": 5000, "left": 280}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714721f.jpg"} -{"rects": [{"solidity": 0.9972517704940087, "top": 415, "right": 3170, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707404f.jpg"} -{"rects": [{"solidity": 0.9972519172296754, "top": 690, "right": 3865, "bottom": 3110, "left": 2245}, {"solidity": 0.9963289730479524, "top": 675, "right": 2015, "bottom": 3095, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707267f.jpg"} -{"rects": [{"solidity": 0.9972519603651323, "top": 490, "right": 3340, "bottom": 2505, "left": 325}, {"solidity": 0.9942451882455475, "top": 2570, "right": 2960, "bottom": 4175, "left": 570}, {"solidity": 0.995784401273778, "top": 4240, "right": 2945, "bottom": 5825, "left": 570}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/717779f.jpg"} -{"rects": [{"solidity": 0.9972519677759748, "top": 1205, "right": 3480, "bottom": 5045, "left": 380}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708546f.jpg"} -{"rects": [{"solidity": 0.9972520641397558, "top": 740, "right": 2060, "bottom": 3170, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715533f.jpg"} -{"rects": [{"solidity": 0.997252203030245, "top": 410, "right": 3210, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726076f.jpg"} -{"rects": [{"solidity": 0.9972523263962452, "top": 735, "right": 2000, "bottom": 3140, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716753f.jpg"} -{"rects": [{"solidity": 0.9972524133034134, "top": 395, "right": 5120, "bottom": 3645, "left": 1110}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709648f.jpg"} -{"rects": [{"solidity": 0.9972524441638901, "top": 1065, "right": 3505, "bottom": 5085, "left": 245}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716984f.jpg"} -{"rects": [{"solidity": 0.9972527031667732, "top": 415, "right": 3140, "bottom": 2040, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701930f.jpg"} -{"rects": [{"solidity": 0.9972527824793558, "top": 400, "right": 3225, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702993f.jpg"} -{"rects": [{"solidity": 0.9972530164557706, "top": 450, "right": 3175, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725891f.jpg"} -{"rects": [{"solidity": 0.997253093094644, "top": 435, "right": 3145, "bottom": 2050, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703109f.jpg"} -{"rects": [{"solidity": 0.9972532620721699, "top": 825, "right": 2305, "bottom": 3530, "left": 490}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711245f.jpg"} -{"rects": [{"solidity": 0.997253445908143, "top": 475, "right": 3040, "bottom": 2115, "left": 615}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702455f.jpg"} -{"rects": [{"solidity": 0.9972539972443847, "top": 910, "right": 3840, "bottom": 3335, "left": 2220}, {"solidity": 0.9986167629035112, "top": 905, "right": 5720, "bottom": 3325, "left": 4105}, {"solidity": 0.9954070940321601, "top": 930, "right": 1995, "bottom": 3335, "left": 380}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728974f.jpg"} -{"rects": [{"solidity": 0.9972540384627766, "top": 420, "right": 3025, "bottom": 2040, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714863f.jpg"} -{"rects": [{"solidity": 0.997254048535054, "top": 835, "right": 5200, "bottom": 3075, "left": 935}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730254f.jpg"} -{"rects": [{"solidity": 0.9972541500871928, "top": 445, "right": 3085, "bottom": 2070, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702046f.jpg"} -{"rects": [{"solidity": 0.9972541965664745, "top": 600, "right": 2830, "bottom": 3630, "left": 865}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716730f.jpg"} -{"rects": [{"solidity": 0.9972542238216531, "top": 430, "right": 5070, "bottom": 3665, "left": 1075}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708197f.jpg"} -{"rects": [{"solidity": 0.9972544034388761, "top": 2280, "right": 3125, "bottom": 3880, "left": 720}, {"solidity": 0.9968082437749202, "top": 410, "right": 3115, "bottom": 2005, "left": 715}, {"solidity": 0.9960708308803587, "top": 4155, "right": 3130, "bottom": 5740, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733655f.jpg"} -{"rects": [{"solidity": 0.9972546847724739, "top": 675, "right": 4760, "bottom": 3305, "left": 1335}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722217f.jpg"} -{"rects": [{"solidity": 0.9972548285185391, "top": 490, "right": 5080, "bottom": 3800, "left": 1040}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714485f.jpg"} -{"rects": [{"solidity": 0.9972550580771923, "top": 765, "right": 3850, "bottom": 3185, "left": 2230}, {"solidity": 0.995471011560413, "top": 775, "right": 2025, "bottom": 3185, "left": 405}, {"solidity": 0.9957858607355117, "top": 770, "right": 5670, "bottom": 3185, "left": 4060}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707492f.jpg"} -{"rects": [{"solidity": 0.9972551224328781, "top": 2150, "right": 5250, "bottom": 3600, "left": 3410}, {"solidity": 0.9981993508185846, "top": 645, "right": 5255, "bottom": 2090, "left": 3415}, {"solidity": 0.9973051843120854, "top": 2140, "right": 2710, "bottom": 3595, "left": 880}, {"solidity": 0.9987669962767171, "top": 660, "right": 2710, "bottom": 2090, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703325f.jpg"} -{"rects": [{"solidity": 0.9972551441324036, "top": 600, "right": 2665, "bottom": 3540, "left": 715}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715682f.jpg"} -{"rects": [{"solidity": 0.9972552490156091, "top": 370, "right": 3175, "bottom": 1990, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705574f.jpg"} -{"rects": [{"solidity": 0.9972553109732667, "top": 295, "right": 3465, "bottom": 2100, "left": 410}, {"solidity": 0.9957516586852815, "top": 4055, "right": 3380, "bottom": 5895, "left": 365}, {"solidity": 0.9964386889765322, "top": 2175, "right": 3450, "bottom": 3975, "left": 375}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717157f.jpg"} -{"rects": [{"solidity": 0.9972553144553754, "top": 485, "right": 5020, "bottom": 3800, "left": 955}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712312f.jpg"} -{"rects": [{"solidity": 0.997255397447682, "top": 405, "right": 3185, "bottom": 2020, "left": 775}, {"solidity": 0.9963706331628086, "top": 2200, "right": 3180, "bottom": 3805, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718775f.jpg"} -{"rects": [{"solidity": 0.9972554043234587, "top": 2270, "right": 3240, "bottom": 3890, "left": 815}, {"solidity": 0.9981454053705969, "top": 435, "right": 3225, "bottom": 2055, "left": 810}, {"solidity": 0.9952905808391153, "top": 4110, "right": 3240, "bottom": 5730, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724325f.jpg"} -{"rects": [{"solidity": 0.9972554285527134, "top": 750, "right": 2050, "bottom": 3145, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722082f.jpg"} -{"rects": [{"solidity": 0.9972555589598503, "top": 1025, "right": 4315, "bottom": 2635, "left": 1910}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702397f.jpg"} -{"rects": [{"solidity": 0.9972556108909445, "top": 745, "right": 2705, "bottom": 2155, "left": 925}, {"solidity": 0.9976487042536156, "top": 730, "right": 5210, "bottom": 2105, "left": 3400}, {"solidity": 0.994038695119658, "top": 2190, "right": 2695, "bottom": 3605, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731355f.jpg"} -{"rects": [{"solidity": 0.9972559943267124, "top": 2145, "right": 3300, "bottom": 3775, "left": 880}, {"solidity": 0.9968988976700172, "top": 3970, "right": 3295, "bottom": 5605, "left": 875}, {"solidity": 0.9958330379183882, "top": 385, "right": 3315, "bottom": 2025, "left": 885}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705805f.jpg"} -{"rects": [{"solidity": 0.9972560797618044, "top": 515, "right": 3055, "bottom": 2130, "left": 645}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710977f.jpg"} -{"rects": [{"solidity": 0.9972561182292726, "top": 490, "right": 2750, "bottom": 3515, "left": 295}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508117.jpg"} -{"rects": [{"solidity": 0.9972561478125131, "top": 415, "right": 2940, "bottom": 2030, "left": 530}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723123f.jpg"} -{"rects": [{"solidity": 0.9972561939636267, "top": 525, "right": 2790, "bottom": 3545, "left": 740}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715188f.jpg"} -{"rects": [{"solidity": 0.9972566351511234, "top": 480, "right": 3420, "bottom": 2465, "left": 360}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709688f.jpg"} -{"rects": [{"solidity": 0.9972569950537259, "top": 805, "right": 2160, "bottom": 3500, "left": 365}], "shape": {"h": 4415, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/711615f.jpg"} -{"rects": [{"solidity": 0.9972570903538759, "top": 490, "right": 3185, "bottom": 2055, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714054f.jpg"} -{"rects": [{"solidity": 0.9972571341797621, "top": 3215, "right": 3345, "bottom": 5160, "left": 595}, {"solidity": 0.9943639510110573, "top": 705, "right": 3340, "bottom": 2610, "left": 645}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711903f.jpg"} -{"rects": [{"solidity": 0.9972571598813487, "top": 445, "right": 3205, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721794f.jpg"} -{"rects": [{"solidity": 0.9972571672255713, "top": 395, "right": 2975, "bottom": 2015, "left": 565}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704793f.jpg"} -{"rects": [{"solidity": 0.9972572381130832, "top": 490, "right": 3155, "bottom": 2105, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704311f.jpg"} -{"rects": [{"solidity": 0.9972573961091286, "top": 4025, "right": 3215, "bottom": 5760, "left": 690}, {"solidity": 0.9964230500185167, "top": 465, "right": 3215, "bottom": 2155, "left": 675}, {"solidity": 0.9945019327267053, "top": 2260, "right": 3210, "bottom": 3925, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718360f.jpg"} -{"rects": [{"solidity": 0.997257461853972, "top": 520, "right": 4000, "bottom": 2610, "left": 2510}, {"solidity": 0.9968274859146061, "top": 505, "right": 2180, "bottom": 2595, "left": 695}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716071f.jpg"} -{"rects": [{"solidity": 0.9972576443164678, "top": 700, "right": 4180, "bottom": 3580, "left": 2130}, {"solidity": 0.9961095524209561, "top": 890, "right": 1920, "bottom": 3310, "left": 300}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713204f.jpg"} -{"rects": [{"solidity": 0.9972579844301396, "top": 675, "right": 4295, "bottom": 3490, "left": 2280}, {"solidity": 0.9965500825187255, "top": 805, "right": 2090, "bottom": 3245, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718773f.jpg"} -{"rects": [{"solidity": 0.9972580044437024, "top": 440, "right": 3195, "bottom": 2060, "left": 775}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714585f.jpg"} -{"rects": [{"solidity": 0.9972580211889115, "top": 2150, "right": 3170, "bottom": 3775, "left": 805}, {"solidity": 0.9990808002989052, "top": 300, "right": 3175, "bottom": 1910, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704348f.jpg"} -{"rects": [{"solidity": 0.9972580264174311, "top": 770, "right": 3830, "bottom": 3195, "left": 2200}, {"solidity": 0.9965335131007645, "top": 780, "right": 5665, "bottom": 3210, "left": 4030}, {"solidity": 0.9974760849238575, "top": 780, "right": 1985, "bottom": 3190, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718698f.jpg"} -{"rects": [{"solidity": 0.9972583090188919, "top": 4065, "right": 3130, "bottom": 5670, "left": 725}, {"solidity": 0.996011274796575, "top": 455, "right": 3100, "bottom": 2065, "left": 710}, {"solidity": 0.998403550071705, "top": 2285, "right": 3085, "bottom": 3845, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718035f.jpg"} -{"rects": [{"solidity": 0.9972584419926446, "top": 730, "right": 5745, "bottom": 3160, "left": 4115}, {"solidity": 0.9956900311778104, "top": 735, "right": 2015, "bottom": 3155, "left": 395}, {"solidity": 0.9963272055373444, "top": 735, "right": 3885, "bottom": 3155, "left": 2270}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734737f.jpg"} -{"rects": [{"solidity": 0.9972585719290769, "top": 455, "right": 4245, "bottom": 2705, "left": 1130}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508895.jpg"} -{"rects": [{"solidity": 0.9972587562981398, "top": 2540, "right": 2470, "bottom": 4020, "left": 380}, {"solidity": 0.9969916206826078, "top": 665, "right": 2475, "bottom": 2140, "left": 380}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716042f.jpg"} -{"rects": [{"solidity": 0.9972588218461819, "top": 415, "right": 3225, "bottom": 2025, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724910f.jpg"} -{"rects": [{"solidity": 0.9972588353361215, "top": 410, "right": 5140, "bottom": 3750, "left": 1065}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720828f.jpg"} -{"rects": [{"solidity": 0.9972593607644161, "top": 1045, "right": 3500, "bottom": 3070, "left": 635}, {"solidity": 0.9973595655878932, "top": 3435, "right": 3605, "bottom": 4695, "left": 390}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732085f.jpg"} -{"rects": [{"solidity": 0.9972593775612347, "top": 845, "right": 2050, "bottom": 3255, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700733f.jpg"} -{"rects": [{"solidity": 0.9972594338718641, "top": 430, "right": 3285, "bottom": 2060, "left": 865}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706657f.jpg"} -{"rects": [{"solidity": 0.997259512272619, "top": 745, "right": 1990, "bottom": 3140, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718781f.jpg"} -{"rects": [{"solidity": 0.9972596170314801, "top": 490, "right": 5040, "bottom": 3735, "left": 955}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734457f.jpg"} -{"rects": [{"solidity": 0.9972596409937171, "top": 450, "right": 3165, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704368f.jpg"} -{"rects": [{"solidity": 0.9972597731267341, "top": 450, "right": 5080, "bottom": 3690, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733769f.jpg"} -{"rects": [{"solidity": 0.9972599256174703, "top": 435, "right": 3105, "bottom": 2075, "left": 680}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711043f.jpg"} -{"rects": [{"solidity": 0.9972603354050688, "top": 465, "right": 2940, "bottom": 3520, "left": 920}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714650f.jpg"} -{"rects": [{"solidity": 0.9972604817068749, "top": 430, "right": 3110, "bottom": 2020, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729725f.jpg"} -{"rects": [{"solidity": 0.9972605349511725, "top": 500, "right": 3090, "bottom": 2100, "left": 695}, {"solidity": 0.9956361272188766, "top": 2340, "right": 3105, "bottom": 3940, "left": 705}, {"solidity": 0.995475957278112, "top": 4180, "right": 3090, "bottom": 5770, "left": 705}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731294f.jpg"} -{"rects": [{"solidity": 0.9972606563389516, "top": 795, "right": 2070, "bottom": 3200, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714874f.jpg"} -{"rects": [{"solidity": 0.9972608055883447, "top": 780, "right": 3865, "bottom": 3190, "left": 2250}, {"solidity": 0.9982928741261913, "top": 780, "right": 2050, "bottom": 3185, "left": 435}, {"solidity": 0.9962032833486392, "top": 780, "right": 5690, "bottom": 3190, "left": 4080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719468f.jpg"} -{"rects": [{"solidity": 0.9972609109608717, "top": 1075, "right": 3555, "bottom": 5135, "left": 330}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709180f.jpg"} -{"rects": [{"solidity": 0.997260938226949, "top": 395, "right": 2425, "bottom": 1445, "left": 590}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715974f.jpg"} -{"rects": [{"solidity": 0.9972610492910059, "top": 795, "right": 1995, "bottom": 3170, "left": 420}, {"solidity": 0.9998339574049915, "top": 795, "right": 3830, "bottom": 3165, "left": 2265}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724508f.jpg"} -{"rects": [{"solidity": 0.9972610517079716, "top": 770, "right": 2650, "bottom": 3780, "left": 215}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508309.jpg"} -{"rects": [{"solidity": 0.9972611564148453, "top": 645, "right": 5070, "bottom": 3550, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733738f.jpg"} -{"rects": [{"solidity": 0.9972611819199915, "top": 1080, "right": 3515, "bottom": 5165, "left": 270}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721872f.jpg"} -{"rects": [{"solidity": 0.9972612097075616, "top": 440, "right": 3110, "bottom": 2055, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701915f.jpg"} -{"rects": [{"solidity": 0.9972612653286149, "top": 800, "right": 2015, "bottom": 3195, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718007f.jpg"} -{"rects": [{"solidity": 0.9972613019398576, "top": 800, "right": 4280, "bottom": 3230, "left": 2665}, {"solidity": 0.9958708204646166, "top": 610, "right": 2565, "bottom": 2045, "left": 730}, {"solidity": 0.9961907120743034, "top": 2065, "right": 2550, "bottom": 3480, "left": 750}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706461f.jpg"} -{"rects": [{"solidity": 0.9972614438258882, "top": 1125, "right": 3025, "bottom": 4875, "left": 935}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722289f.jpg"} -{"rects": [{"solidity": 0.9972616355135447, "top": 800, "right": 2030, "bottom": 3165, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714994f.jpg"} -{"rects": [{"solidity": 0.997261829568209, "top": 780, "right": 2000, "bottom": 3155, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713503f.jpg"} -{"rects": [{"solidity": 0.997262200219024, "top": 835, "right": 2085, "bottom": 3250, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708034f.jpg"} -{"rects": [{"solidity": 0.9972622004616171, "top": 815, "right": 4000, "bottom": 3220, "left": 2385}, {"solidity": 0.9967295398630557, "top": 835, "right": 5830, "bottom": 3230, "left": 4225}, {"solidity": 0.997576728649887, "top": 815, "right": 2145, "bottom": 3205, "left": 555}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731956f.jpg"} -{"rects": [{"solidity": 0.9972624006542128, "top": 910, "right": 2095, "bottom": 3330, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724380f.jpg"} -{"rects": [{"solidity": 0.9972624793463843, "top": 725, "right": 3845, "bottom": 3130, "left": 2240}, {"solidity": 0.9959900225213429, "top": 735, "right": 2025, "bottom": 3140, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716857f.jpg"} -{"rects": [{"solidity": 0.9972625159524204, "top": 665, "right": 2740, "bottom": 2090, "left": 925}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703104f.jpg"} -{"rects": [{"solidity": 0.9972625347094881, "top": 375, "right": 3090, "bottom": 1980, "left": 690}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702150f.jpg"} -{"rects": [{"solidity": 0.9972628003857406, "top": 710, "right": 2070, "bottom": 3120, "left": 455}, {"solidity": 0.9959115424665581, "top": 740, "right": 3875, "bottom": 3125, "left": 2285}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722032f.jpg"} -{"rects": [{"solidity": 0.9972628262999174, "top": 795, "right": 2030, "bottom": 3215, "left": 400}, {"solidity": 0.9976701986325783, "top": 810, "right": 3840, "bottom": 3215, "left": 2220}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724809f.jpg"} -{"rects": [{"solidity": 0.9972628607710705, "top": 430, "right": 3180, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713108f.jpg"} -{"rects": [{"solidity": 0.9972628932135467, "top": 395, "right": 3055, "bottom": 2005, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718650f.jpg"} -{"rects": [{"solidity": 0.9972630305304738, "top": 805, "right": 2090, "bottom": 3220, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717946f.jpg"} -{"rects": [{"solidity": 0.9972630628727276, "top": 435, "right": 3145, "bottom": 2065, "left": 730}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714970f.jpg"} -{"rects": [{"solidity": 0.9972633979475485, "top": 890, "right": 2140, "bottom": 3280, "left": 570}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713905f.jpg"} -{"rects": [{"solidity": 0.9972634318858054, "top": 405, "right": 4940, "bottom": 3695, "left": 895}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716548f.jpg"} -{"rects": [{"solidity": 0.9972637607381483, "top": 890, "right": 3885, "bottom": 3315, "left": 2255}, {"solidity": 0.9991957753984787, "top": 890, "right": 1990, "bottom": 3300, "left": 375}, {"solidity": 0.9967987725930914, "top": 905, "right": 5750, "bottom": 3315, "left": 4130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710765f.jpg"} -{"rects": [{"solidity": 0.9972637811024881, "top": 2270, "right": 3275, "bottom": 3890, "left": 845}, {"solidity": 0.9966189713633682, "top": 400, "right": 3270, "bottom": 2020, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725124f.jpg"} -{"rects": [{"solidity": 0.9972640506611743, "top": 535, "right": 3400, "bottom": 3010, "left": 255}, {"solidity": 0.9973128470660336, "top": 3445, "right": 3225, "bottom": 5620, "left": 265}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724348f.jpg"} -{"rects": [{"solidity": 0.997264113631283, "top": 335, "right": 3800, "bottom": 2765, "left": 775}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1510013.jpg"} -{"rects": [{"solidity": 0.997264290680451, "top": 590, "right": 4990, "bottom": 1980, "left": 3190}, {"solidity": 0.9929897542562206, "top": 2200, "right": 2875, "bottom": 3590, "left": 1080}, {"solidity": 0.993319175980035, "top": 2200, "right": 4980, "bottom": 3580, "left": 3185}, {"solidity": 0.9952550847678325, "top": 580, "right": 2860, "bottom": 1945, "left": 1085}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728104f.jpg"} -{"rects": [{"solidity": 0.9972643348531472, "top": 775, "right": 2040, "bottom": 3190, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709700f.jpg"} -{"rects": [{"solidity": 0.9972643987443142, "top": 430, "right": 3175, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705392f.jpg"} -{"rects": [{"solidity": 0.9972647240504304, "top": 785, "right": 3290, "bottom": 2795, "left": 470}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729695f.jpg"} -{"rects": [{"solidity": 0.99726477894007, "top": 425, "right": 3190, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700984f.jpg"} -{"rects": [{"solidity": 0.9972648935857343, "top": 485, "right": 3195, "bottom": 2080, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706171f.jpg"} -{"rects": [{"solidity": 0.9972648960916132, "top": 740, "right": 3870, "bottom": 3160, "left": 2235}, {"solidity": 0.9990014025608046, "top": 740, "right": 2025, "bottom": 3150, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718702f.jpg"} -{"rects": [{"solidity": 0.9972649672274803, "top": 675, "right": 2575, "bottom": 3710, "left": 575}, {"solidity": 0.9962588754619771, "top": 970, "right": 4325, "bottom": 3390, "left": 2695}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715705f.jpg"} -{"rects": [{"solidity": 0.9972652718480649, "top": 780, "right": 2015, "bottom": 3200, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715516f.jpg"} -{"rects": [{"solidity": 0.9972653191856028, "top": 1045, "right": 3545, "bottom": 4975, "left": 295}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709062f.jpg"} -{"rects": [{"solidity": 0.997265426949937, "top": 2380, "right": 3140, "bottom": 3985, "left": 740}, {"solidity": 0.9937547275298451, "top": 545, "right": 3140, "bottom": 2145, "left": 735}, {"solidity": 0.9957734127219617, "top": 4210, "right": 3120, "bottom": 5810, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718444f.jpg"} -{"rects": [{"solidity": 0.9972654702287003, "top": 800, "right": 2045, "bottom": 3210, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716640f.jpg"} -{"rects": [{"solidity": 0.9972654781587553, "top": 595, "right": 4965, "bottom": 3585, "left": 1175}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717651f.jpg"} -{"rects": [{"solidity": 0.9972658142249184, "top": 2270, "right": 3205, "bottom": 3875, "left": 790}, {"solidity": 0.9974169594112667, "top": 400, "right": 3190, "bottom": 1980, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724666f.jpg"} -{"rects": [{"solidity": 0.9972660566963941, "top": 2155, "right": 3185, "bottom": 3780, "left": 770}, {"solidity": 0.997082560013381, "top": 4015, "right": 3175, "bottom": 5645, "left": 765}, {"solidity": 0.9967625527739403, "top": 295, "right": 3180, "bottom": 1930, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707688f.jpg"} -{"rects": [{"solidity": 0.9972661330503485, "top": 395, "right": 3145, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708184f.jpg"} -{"rects": [{"solidity": 0.9972662685426353, "top": 300, "right": 3965, "bottom": 2730, "left": 935}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516951.jpg"} -{"rects": [{"solidity": 0.9972664420089083, "top": 480, "right": 5080, "bottom": 3730, "left": 1005}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708624f.jpg"} -{"rects": [{"solidity": 0.997266663274054, "top": 475, "right": 5080, "bottom": 3685, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730620f.jpg"} -{"rects": [{"solidity": 0.997266674760547, "top": 615, "right": 3140, "bottom": 2215, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710551f.jpg"} -{"rects": [{"solidity": 0.9972667014463438, "top": 435, "right": 3110, "bottom": 2060, "left": 685}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/702375f.jpg"} -{"rects": [{"solidity": 0.9972667153658973, "top": 450, "right": 5060, "bottom": 3690, "left": 1050}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725060f.jpg"} -{"rects": [{"solidity": 0.9972667579891056, "top": 875, "right": 1980, "bottom": 3285, "left": 355}, {"solidity": 0.9967442596582119, "top": 855, "right": 5675, "bottom": 3275, "left": 4060}, {"solidity": 0.9949903038138332, "top": 845, "right": 3825, "bottom": 3280, "left": 2205}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729255f.jpg"} -{"rects": [{"solidity": 0.9972671320962705, "top": 815, "right": 3935, "bottom": 3215, "left": 2335}, {"solidity": 0.997734705913892, "top": 830, "right": 2055, "bottom": 3210, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713102f.jpg"} -{"rects": [{"solidity": 0.9972671380663946, "top": 1230, "right": 2885, "bottom": 2845, "left": 480}, {"solidity": 0.9971682712010158, "top": 1255, "right": 5640, "bottom": 2825, "left": 3245}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734610f.jpg"} -{"rects": [{"solidity": 0.9972672781335054, "top": 740, "right": 3660, "bottom": 3235, "left": 440}, {"solidity": 0.9965455533186336, "top": 775, "right": 5485, "bottom": 3210, "left": 3855}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732165f.jpg"} -{"rects": [{"solidity": 0.9972673142013366, "top": 405, "right": 3200, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704150f.jpg"} -{"rects": [{"solidity": 0.9972674431309136, "top": 985, "right": 5420, "bottom": 3920, "left": 1505}], "shape": {"h": 4425, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/708873f.jpg"} -{"rects": [{"solidity": 0.9972675276165412, "top": 535, "right": 4950, "bottom": 3600, "left": 1090}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730079f.jpg"} -{"rects": [{"solidity": 0.9972677862237879, "top": 455, "right": 3155, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717958f.jpg"} -{"rects": [{"solidity": 0.9972679338967615, "top": 595, "right": 1540, "bottom": 2400, "left": 335}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716460f.jpg"} -{"rects": [{"solidity": 0.9972681292484133, "top": 2185, "right": 3060, "bottom": 3805, "left": 640}, {"solidity": 0.9966091852366061, "top": 360, "right": 3045, "bottom": 1950, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729774f.jpg"} -{"rects": [{"solidity": 0.9972684970949663, "top": 495, "right": 2945, "bottom": 2120, "left": 530}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703031f.jpg"} -{"rects": [{"solidity": 0.9972685130467899, "top": 825, "right": 3850, "bottom": 3230, "left": 2255}, {"solidity": 0.9989085205920184, "top": 835, "right": 2045, "bottom": 3205, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714817f.jpg"} -{"rects": [{"solidity": 0.9972685789315848, "top": 610, "right": 2545, "bottom": 2100, "left": 455}, {"solidity": 0.9957379681746663, "top": 2405, "right": 2535, "bottom": 3900, "left": 450}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716123f.jpg"} -{"rects": [{"solidity": 0.997268653298878, "top": 950, "right": 3400, "bottom": 4940, "left": 890}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/721337f.jpg"} -{"rects": [{"solidity": 0.9972687545520758, "top": 450, "right": 3325, "bottom": 2040, "left": 935}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727274f.jpg"} -{"rects": [{"solidity": 0.9972687646287115, "top": 2300, "right": 3155, "bottom": 3905, "left": 745}, {"solidity": 0.9956805149401251, "top": 470, "right": 3150, "bottom": 2070, "left": 745}, {"solidity": 0.9972994294430932, "top": 4120, "right": 3145, "bottom": 5720, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719159f.jpg"} -{"rects": [{"solidity": 0.997268801634194, "top": 880, "right": 2010, "bottom": 3295, "left": 395}, {"solidity": 0.9975780636196586, "top": 900, "right": 5695, "bottom": 3310, "left": 4085}, {"solidity": 0.9958584644059292, "top": 895, "right": 3850, "bottom": 3305, "left": 2245}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707791f.jpg"} -{"rects": [{"solidity": 0.997269092611815, "top": 815, "right": 2050, "bottom": 3215, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717522f.jpg"} -{"rects": [{"solidity": 0.9972692080086794, "top": 585, "right": 2645, "bottom": 3625, "left": 625}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724516f.jpg"} -{"rects": [{"solidity": 0.9972693841411001, "top": 455, "right": 2980, "bottom": 2075, "left": 565}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707803f.jpg"} -{"rects": [{"solidity": 0.9972694710649835, "top": 440, "right": 4970, "bottom": 3670, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732634f.jpg"} -{"rects": [{"solidity": 0.9972698907956318, "top": 780, "right": 2035, "bottom": 3170, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714107f.jpg"} -{"rects": [{"solidity": 0.9972700838058396, "top": 460, "right": 3145, "bottom": 2070, "left": 720}, {"solidity": 0.9971946740871366, "top": 2270, "right": 3160, "bottom": 3880, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702937f.jpg"} -{"rects": [{"solidity": 0.9972702386300515, "top": 655, "right": 4925, "bottom": 3630, "left": 1105}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717666f.jpg"} -{"rects": [{"solidity": 0.9972704946262863, "top": 350, "right": 3090, "bottom": 1965, "left": 665}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/701042f.jpg"} -{"rects": [{"solidity": 0.9972705094506168, "top": 430, "right": 3085, "bottom": 2035, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700297f.jpg"} -{"rects": [{"solidity": 0.9972705353272648, "top": 420, "right": 3150, "bottom": 1995, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713543f.jpg"} -{"rects": [{"solidity": 0.9972706863373958, "top": 790, "right": 2030, "bottom": 3210, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708673f.jpg"} -{"rects": [{"solidity": 0.9972708490724522, "top": 465, "right": 5000, "bottom": 3655, "left": 990}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723648f.jpg"} -{"rects": [{"solidity": 0.99727108349328, "top": 670, "right": 2705, "bottom": 3490, "left": 685}, {"solidity": 0.9969580428145453, "top": 685, "right": 5345, "bottom": 3500, "left": 3335}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733698f.jpg"} -{"rects": [{"solidity": 0.9972711036730819, "top": 675, "right": 2375, "bottom": 2075, "left": 925}], "shape": {"h": 3880, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728131f.jpg"} -{"rects": [{"solidity": 0.9972711485983627, "top": 2265, "right": 3095, "bottom": 3890, "left": 685}, {"solidity": 0.9963907890871408, "top": 4105, "right": 3095, "bottom": 5735, "left": 680}, {"solidity": 0.9989147618307158, "top": 420, "right": 3085, "bottom": 2035, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710817f.jpg"} -{"rects": [{"solidity": 0.9972712411991093, "top": 2275, "right": 3120, "bottom": 3895, "left": 700}, {"solidity": 0.9965341263959768, "top": 395, "right": 3115, "bottom": 2010, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732059f.jpg"} -{"rects": [{"solidity": 0.9972712783160553, "top": 495, "right": 5100, "bottom": 3735, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733780f.jpg"} -{"rects": [{"solidity": 0.9972712929674366, "top": 795, "right": 3890, "bottom": 3215, "left": 2280}, {"solidity": 0.9966446427531402, "top": 790, "right": 2055, "bottom": 3210, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723035f.jpg"} -{"rects": [{"solidity": 0.9972714076497574, "top": 800, "right": 2095, "bottom": 3210, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723616f.jpg"} -{"rects": [{"solidity": 0.9972715394666052, "top": 400, "right": 5030, "bottom": 3650, "left": 1005}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730508f.jpg"} -{"rects": [{"solidity": 0.9972715495243205, "top": 785, "right": 3845, "bottom": 3185, "left": 2240}, {"solidity": 0.9991077315715405, "top": 780, "right": 2010, "bottom": 3175, "left": 410}, {"solidity": 0.9980423007564734, "top": 785, "right": 5665, "bottom": 3180, "left": 4065}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730430f.jpg"} -{"rects": [{"solidity": 0.9972716829408386, "top": 630, "right": 2515, "bottom": 3685, "left": 500}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715512f.jpg"} -{"rects": [{"solidity": 0.9972719305234643, "top": 445, "right": 3010, "bottom": 2080, "left": 585}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705541f.jpg"} -{"rects": [{"solidity": 0.9972721338732776, "top": 425, "right": 3120, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728791f.jpg"} -{"rects": [{"solidity": 0.99727213654758, "top": 405, "right": 3200, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704799f.jpg"} -{"rects": [{"solidity": 0.9972722107530488, "top": 435, "right": 5105, "bottom": 3745, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721062f.jpg"} -{"rects": [{"solidity": 0.997272333576798, "top": 735, "right": 2300, "bottom": 3150, "left": 685}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724314f.jpg"} -{"rects": [{"solidity": 0.9972727509982514, "top": 445, "right": 3080, "bottom": 2050, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700302f.jpg"} -{"rects": [{"solidity": 0.9972728479164823, "top": 365, "right": 3265, "bottom": 2380, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729326f.jpg"} -{"rects": [{"solidity": 0.9972729317903724, "top": 500, "right": 4905, "bottom": 3545, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729979f.jpg"} -{"rects": [{"solidity": 0.9972729341113963, "top": 795, "right": 2045, "bottom": 3220, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719879f.jpg"} -{"rects": [{"solidity": 0.9972730189284569, "top": 855, "right": 2080, "bottom": 3285, "left": 460}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729967f.jpg"} -{"rects": [{"solidity": 0.9972730864229253, "top": 370, "right": 3140, "bottom": 1985, "left": 710}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728866f.jpg"} -{"rects": [{"solidity": 0.9972734009335672, "top": 445, "right": 3280, "bottom": 2075, "left": 840}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726512f.jpg"} -{"rects": [{"solidity": 0.9972734867586653, "top": 1120, "right": 3965, "bottom": 5665, "left": 310}], "shape": {"h": 6925, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/711169f.jpg"} -{"rects": [{"solidity": 0.9972735514299915, "top": 430, "right": 5140, "bottom": 3670, "left": 1075}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723627f.jpg"} -{"rects": [{"solidity": 0.9972736581897873, "top": 705, "right": 2135, "bottom": 3110, "left": 530}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710914f.jpg"} -{"rects": [{"solidity": 0.9972738488806309, "top": 290, "right": 3560, "bottom": 2820, "left": 440}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509889.jpg"} -{"rects": [{"solidity": 0.9972739948100303, "top": 865, "right": 3505, "bottom": 4865, "left": 285}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717095f.jpg"} -{"rects": [{"solidity": 0.997274217528878, "top": 1050, "right": 3530, "bottom": 5080, "left": 235}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715656f.jpg"} -{"rects": [{"solidity": 0.9972742526229198, "top": 430, "right": 3150, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718059f.jpg"} -{"rects": [{"solidity": 0.9972742650302518, "top": 885, "right": 3460, "bottom": 4930, "left": 225}], "shape": {"h": 6080, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/715589f.jpg"} -{"rects": [{"solidity": 0.9972742667984968, "top": 795, "right": 3400, "bottom": 2795, "left": 360}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710103f.jpg"} -{"rects": [{"solidity": 0.9972743322454497, "top": 950, "right": 2745, "bottom": 3985, "left": 290}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516917.jpg"} -{"rects": [{"solidity": 0.9972743599504162, "top": 655, "right": 3270, "bottom": 2575, "left": 575}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714314f.jpg"} -{"rects": [{"solidity": 0.9972745914332194, "top": 800, "right": 1930, "bottom": 3180, "left": 310}, {"solidity": 0.9985824518672023, "top": 800, "right": 3790, "bottom": 3180, "left": 2175}, {"solidity": 0.9972393233545347, "top": 815, "right": 5680, "bottom": 3175, "left": 4060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710346f.jpg"} -{"rects": [{"solidity": 0.9972746940488876, "top": 790, "right": 2045, "bottom": 3220, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721136f.jpg"} -{"rects": [{"solidity": 0.9972747727360893, "top": 780, "right": 5690, "bottom": 3200, "left": 4080}, {"solidity": 0.9998082622712147, "top": 1130, "right": 3890, "bottom": 2745, "left": 1495}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730769f.jpg"} -{"rects": [{"solidity": 0.9972747964170178, "top": 420, "right": 5115, "bottom": 3635, "left": 1120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709762f.jpg"} -{"rects": [{"solidity": 0.997274866435819, "top": 405, "right": 3050, "bottom": 2010, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731361f.jpg"} -{"rects": [{"solidity": 0.9972749546629626, "top": 650, "right": 2780, "bottom": 2090, "left": 965}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707207f.jpg"} -{"rects": [{"solidity": 0.9972749568534836, "top": 350, "right": 3050, "bottom": 1970, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700153f.jpg"} -{"rects": [{"solidity": 0.997275107569082, "top": 1045, "right": 3435, "bottom": 4740, "left": 465}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708580f.jpg"} -{"rects": [{"solidity": 0.997275204359673, "top": 840, "right": 2040, "bottom": 3260, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728582f.jpg"} -{"rects": [{"solidity": 0.9972752748158468, "top": 420, "right": 3190, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/721942f.jpg"} -{"rects": [{"solidity": 0.9972753108001211, "top": 370, "right": 3350, "bottom": 2285, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718525f.jpg"} -{"rects": [{"solidity": 0.997275421669764, "top": 1000, "right": 3605, "bottom": 5140, "left": 285}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722222f.jpg"} -{"rects": [{"solidity": 0.9972754694949888, "top": 635, "right": 2585, "bottom": 1970, "left": 835}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705693f.jpg"} -{"rects": [{"solidity": 0.9972759108573038, "top": 810, "right": 2025, "bottom": 3230, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701649f.jpg"} -{"rects": [{"solidity": 0.997276149606198, "top": 460, "right": 3120, "bottom": 2080, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706813f.jpg"} -{"rects": [{"solidity": 0.997276219365804, "top": 450, "right": 5150, "bottom": 3685, "left": 1080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708688f.jpg"} -{"rects": [{"solidity": 0.9972763188767907, "top": 945, "right": 3855, "bottom": 3370, "left": 2210}, {"solidity": 0.9966704507258417, "top": 935, "right": 2015, "bottom": 3365, "left": 370}, {"solidity": 0.9972030728059219, "top": 965, "right": 5735, "bottom": 3390, "left": 4095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729772f.jpg"} -{"rects": [{"solidity": 0.9972763198818712, "top": 415, "right": 5275, "bottom": 3630, "left": 1295}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708800f.jpg"} -{"rects": [{"solidity": 0.9972763409726653, "top": 1185, "right": 3615, "bottom": 5185, "left": 410}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708663f.jpg"} -{"rects": [{"solidity": 0.9972763722893465, "top": 355, "right": 2785, "bottom": 3575, "left": 750}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733088f.jpg"} -{"rects": [{"solidity": 0.9972764741010505, "top": 825, "right": 3585, "bottom": 2845, "left": 370}, {"solidity": 0.9980700483378663, "top": 3650, "right": 3550, "bottom": 5640, "left": 355}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/704953f.jpg"} -{"rects": [{"solidity": 0.997276585370548, "top": 710, "right": 2060, "bottom": 3125, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704188f.jpg"} -{"rects": [{"solidity": 0.9972766351698182, "top": 780, "right": 4685, "bottom": 3420, "left": 1370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704553f.jpg"} -{"rects": [{"solidity": 0.9972768712377419, "top": 1450, "right": 3435, "bottom": 5110, "left": 640}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711327f.jpg"} -{"rects": [{"solidity": 0.9972769726373389, "top": 545, "right": 3620, "bottom": 2345, "left": 930}], "shape": {"h": 6915, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711536f.jpg"} -{"rects": [{"solidity": 0.9972769727023254, "top": 665, "right": 5720, "bottom": 3200, "left": 520}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709486f.jpg"} -{"rects": [{"solidity": 0.9972772073723358, "top": 2120, "right": 2700, "bottom": 3550, "left": 875}, {"solidity": 0.997458279473065, "top": 625, "right": 2700, "bottom": 2050, "left": 870}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702867f.jpg"} -{"rects": [{"solidity": 0.997277211657039, "top": 365, "right": 3170, "bottom": 1990, "left": 780}, {"solidity": 0.997847164999658, "top": 2280, "right": 3170, "bottom": 3905, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707924f.jpg"} -{"rects": [{"solidity": 0.9972773829211535, "top": 455, "right": 3135, "bottom": 1710, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707469f.jpg"} -{"rects": [{"solidity": 0.997277455886226, "top": 730, "right": 2070, "bottom": 3125, "left": 470}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711150f.jpg"} -{"rects": [{"solidity": 0.9972775035521105, "top": 480, "right": 5040, "bottom": 3730, "left": 950}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706983f.jpg"} -{"rects": [{"solidity": 0.9972775413404373, "top": 415, "right": 3185, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710679f.jpg"} -{"rects": [{"solidity": 0.9972777068218626, "top": 465, "right": 3065, "bottom": 2060, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729137f.jpg"} -{"rects": [{"solidity": 0.9972777238060997, "top": 475, "right": 5115, "bottom": 3710, "left": 1040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700545f.jpg"} -{"rects": [{"solidity": 0.9972781174512546, "top": 955, "right": 2440, "bottom": 2165, "left": 635}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509687.jpg"} -{"rects": [{"solidity": 0.9972781620229966, "top": 555, "right": 4840, "bottom": 3565, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730144f.jpg"} -{"rects": [{"solidity": 0.9972783213637313, "top": 2235, "right": 3155, "bottom": 3860, "left": 740}, {"solidity": 0.9984176042334727, "top": 440, "right": 3150, "bottom": 2060, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719528f.jpg"} -{"rects": [{"solidity": 0.9972784828939155, "top": 1460, "right": 3455, "bottom": 5125, "left": 550}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/731204f.jpg"} -{"rects": [{"solidity": 0.9972785404143244, "top": 760, "right": 3780, "bottom": 3155, "left": 2160}, {"solidity": 0.9983207498047384, "top": 775, "right": 1925, "bottom": 3155, "left": 300}, {"solidity": 0.9976908872044319, "top": 765, "right": 5645, "bottom": 3145, "left": 4030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712537f.jpg"} -{"rects": [{"solidity": 0.9972785580904441, "top": 770, "right": 2035, "bottom": 3185, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723370f.jpg"} -{"rects": [{"solidity": 0.9972785901738014, "top": 420, "right": 3095, "bottom": 2030, "left": 675}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729222f.jpg"} -{"rects": [{"solidity": 0.9972786253771471, "top": 305, "right": 4215, "bottom": 2725, "left": 1030}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508879.jpg"} -{"rects": [{"solidity": 0.9972786319086803, "top": 425, "right": 4985, "bottom": 3675, "left": 885}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732913f.jpg"} -{"rects": [{"solidity": 0.9972786529825006, "top": 785, "right": 4900, "bottom": 3185, "left": 1175}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719194f.jpg"} -{"rects": [{"solidity": 0.9972787815059109, "top": 715, "right": 3945, "bottom": 3145, "left": 2315}, {"solidity": 0.997817809490289, "top": 735, "right": 2055, "bottom": 3155, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715299f.jpg"} -{"rects": [{"solidity": 0.9972788540627001, "top": 825, "right": 2035, "bottom": 3225, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708214f.jpg"} -{"rects": [{"solidity": 0.9972789290688212, "top": 3500, "right": 2805, "bottom": 5915, "left": 1185}, {"solidity": 0.9968026840710558, "top": 160, "right": 3205, "bottom": 1775, "left": 780}, {"solidity": 0.9977986223636728, "top": 1835, "right": 3200, "bottom": 3450, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725692f.jpg"} -{"rects": [{"solidity": 0.9972789803032818, "top": 375, "right": 3365, "bottom": 2290, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718535f.jpg"} -{"rects": [{"solidity": 0.9972790036041927, "top": 430, "right": 5030, "bottom": 3730, "left": 920}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/724612f.jpg"} -{"rects": [{"solidity": 0.9972794059562367, "top": 2150, "right": 3165, "bottom": 3795, "left": 730}, {"solidity": 0.9967299075221661, "top": 4035, "right": 3175, "bottom": 5670, "left": 745}, {"solidity": 0.9974774647070573, "top": 305, "right": 3150, "bottom": 1930, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703040f.jpg"} -{"rects": [{"solidity": 0.9972795647303568, "top": 450, "right": 3160, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734527f.jpg"} -{"rects": [{"solidity": 0.9972797790501334, "top": 420, "right": 3085, "bottom": 2045, "left": 660}, {"solidity": 0.9998841102240535, "top": 2235, "right": 3070, "bottom": 3855, "left": 660}, {"solidity": 0.9968445135666637, "top": 4050, "right": 3090, "bottom": 5670, "left": 665}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700932f.jpg"} -{"rects": [{"solidity": 0.9972797805668042, "top": 425, "right": 3200, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724812f.jpg"} -{"rects": [{"solidity": 0.997279924043162, "top": 395, "right": 3105, "bottom": 2015, "left": 680}, {"solidity": 0.9947468529311597, "top": 2255, "right": 3120, "bottom": 3900, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704207f.jpg"} -{"rects": [{"solidity": 0.9972800199435526, "top": 515, "right": 3260, "bottom": 2520, "left": 440}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728422f.jpg"} -{"rects": [{"solidity": 0.9972801632347569, "top": 695, "right": 2740, "bottom": 3510, "left": 735}, {"solidity": 0.9966793571163965, "top": 685, "right": 5315, "bottom": 3500, "left": 3310}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729244f.jpg"} -{"rects": [{"solidity": 0.997280272956924, "top": 805, "right": 2065, "bottom": 3200, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710922f.jpg"} -{"rects": [{"solidity": 0.997280277101453, "top": 390, "right": 3325, "bottom": 2025, "left": 885}, {"solidity": 0.9965175729123122, "top": 2280, "right": 3300, "bottom": 3910, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703728f.jpg"} -{"rects": [{"solidity": 0.997280411739814, "top": 335, "right": 4205, "bottom": 2760, "left": 1180}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517241.jpg"} -{"rects": [{"solidity": 0.9972804998355804, "top": 410, "right": 3200, "bottom": 2015, "left": 810}, {"solidity": 0.997167875808061, "top": 2275, "right": 3200, "bottom": 3870, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717613f.jpg"} -{"rects": [{"solidity": 0.9972806987221589, "top": 410, "right": 5045, "bottom": 3670, "left": 1020}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708970f.jpg"} -{"rects": [{"solidity": 0.9972807349784887, "top": 410, "right": 5025, "bottom": 3630, "left": 1005}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724441f.jpg"} -{"rects": [{"solidity": 0.9972807857389424, "top": 385, "right": 3175, "bottom": 2000, "left": 775}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710902f.jpg"} -{"rects": [{"solidity": 0.9972810216291293, "top": 660, "right": 2725, "bottom": 2085, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726381f.jpg"} -{"rects": [{"solidity": 0.9972812978208851, "top": 820, "right": 3835, "bottom": 3250, "left": 2210}, {"solidity": 0.9979157600604659, "top": 835, "right": 2010, "bottom": 3240, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717937f.jpg"} -{"rects": [{"solidity": 0.9972814340195391, "top": 795, "right": 1925, "bottom": 3215, "left": 300}, {"solidity": 0.9974266150486656, "top": 805, "right": 3750, "bottom": 3210, "left": 2125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730787f.jpg"} -{"rects": [{"solidity": 0.9972815040650407, "top": 625, "right": 2730, "bottom": 2015, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704813f.jpg"} -{"rects": [{"solidity": 0.9972815293479514, "top": 605, "right": 5845, "bottom": 3465, "left": 3770}, {"solidity": 0.9962009823401313, "top": 810, "right": 3610, "bottom": 3250, "left": 1965}, {"solidity": 0.9954168281899416, "top": 970, "right": 1800, "bottom": 2790, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726266f.jpg"} -{"rects": [{"solidity": 0.9972818309069451, "top": 390, "right": 5075, "bottom": 3600, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732604f.jpg"} -{"rects": [{"solidity": 0.9972820559512902, "top": 385, "right": 5060, "bottom": 3615, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721487f.jpg"} -{"rects": [{"solidity": 0.9972820710410397, "top": 665, "right": 2655, "bottom": 2010, "left": 855}], "shape": {"h": 3855, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728114f.jpg"} -{"rects": [{"solidity": 0.9972821152697736, "top": 1035, "right": 3510, "bottom": 5045, "left": 280}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714788f.jpg"} -{"rects": [{"solidity": 0.9972825648977013, "top": 475, "right": 3195, "bottom": 2090, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703637f.jpg"} -{"rects": [{"solidity": 0.9972825823545568, "top": 455, "right": 3145, "bottom": 2065, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723082f.jpg"} -{"rects": [{"solidity": 0.9972826086956522, "top": 405, "right": 3085, "bottom": 2035, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701468f.jpg"} -{"rects": [{"solidity": 0.9972826788288603, "top": 400, "right": 1895, "bottom": 2675, "left": 390}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716468f.jpg"} -{"rects": [{"solidity": 0.9972828561887125, "top": 730, "right": 2825, "bottom": 2125, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704797f.jpg"} -{"rects": [{"solidity": 0.9972829842175531, "top": 790, "right": 5255, "bottom": 3545, "left": 1250}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718168f.jpg"} -{"rects": [{"solidity": 0.9972831721796831, "top": 400, "right": 5100, "bottom": 3645, "left": 1070}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726053f.jpg"} -{"rects": [{"solidity": 0.9972833088189731, "top": 820, "right": 2080, "bottom": 3225, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713169f.jpg"} -{"rects": [{"solidity": 0.9972835042794794, "top": 670, "right": 2700, "bottom": 2100, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705772f.jpg"} -{"rects": [{"solidity": 0.9972837015500042, "top": 455, "right": 3225, "bottom": 2055, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712264f.jpg"} -{"rects": [{"solidity": 0.9972838155311685, "top": 800, "right": 2130, "bottom": 3220, "left": 510}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720865f.jpg"} -{"rects": [{"solidity": 0.9972838169621281, "top": 450, "right": 3180, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702007f.jpg"} -{"rects": [{"solidity": 0.997283960249271, "top": 625, "right": 2715, "bottom": 2045, "left": 890}, {"solidity": 0.9969149338374291, "top": 2100, "right": 2685, "bottom": 3520, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702902f.jpg"} -{"rects": [{"solidity": 0.9972844447590428, "top": 490, "right": 2895, "bottom": 2105, "left": 475}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721927f.jpg"} -{"rects": [{"solidity": 0.9972845473067208, "top": 440, "right": 3150, "bottom": 2060, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728789f.jpg"} -{"rects": [{"solidity": 0.9972848142851621, "top": 725, "right": 2040, "bottom": 3145, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711170f.jpg"} -{"rects": [{"solidity": 0.997284817166853, "top": 1350, "right": 3285, "bottom": 4760, "left": 665}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724458f.jpg"} -{"rects": [{"solidity": 0.9972850531785338, "top": 4050, "right": 3150, "bottom": 5660, "left": 740}, {"solidity": 0.9961524188980684, "top": 2290, "right": 3150, "bottom": 3905, "left": 750}, {"solidity": 0.9951360820504791, "top": 540, "right": 3160, "bottom": 2160, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733178f.jpg"} -{"rects": [{"solidity": 0.9972850708334833, "top": 710, "right": 3830, "bottom": 3110, "left": 2225}, {"solidity": 0.9993436978503631, "top": 725, "right": 1970, "bottom": 3115, "left": 375}, {"solidity": 0.9967338482196174, "top": 710, "right": 5680, "bottom": 3100, "left": 4080}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733361f.jpg"} -{"rects": [{"solidity": 0.9972851010749533, "top": 820, "right": 3895, "bottom": 3205, "left": 2305}, {"solidity": 0.9969643138980023, "top": 830, "right": 2060, "bottom": 3205, "left": 470}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707635f.jpg"} -{"rects": [{"solidity": 0.9972854942053184, "top": 460, "right": 5085, "bottom": 3740, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707975f.jpg"} -{"rects": [{"solidity": 0.9972856951256, "top": 435, "right": 5085, "bottom": 3745, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719075f.jpg"} -{"rects": [{"solidity": 0.9972857042849597, "top": 2230, "right": 3295, "bottom": 3855, "left": 855}, {"solidity": 0.9960008311621885, "top": 410, "right": 3315, "bottom": 2045, "left": 875}, {"solidity": 0.9953231970078869, "top": 4085, "right": 3275, "bottom": 5700, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726809f.jpg"} -{"rects": [{"solidity": 0.997285849168286, "top": 1010, "right": 3520, "bottom": 5065, "left": 300}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713648f.jpg"} -{"rects": [{"solidity": 0.9972858926286706, "top": 975, "right": 3120, "bottom": 3015, "left": 320}, {"solidity": 0.9968572594994723, "top": 1020, "right": 5835, "bottom": 2900, "left": 3220}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717800f.jpg"} -{"rects": [{"solidity": 0.9972859578652941, "top": 405, "right": 3205, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701105f.jpg"} -{"rects": [{"solidity": 0.9972859879532665, "top": 295, "right": 3680, "bottom": 2745, "left": 665}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507951.jpg"} -{"rects": [{"solidity": 0.9972860305874286, "top": 455, "right": 3260, "bottom": 2080, "left": 840}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711526f.jpg"} -{"rects": [{"solidity": 0.9972862160255487, "top": 490, "right": 5080, "bottom": 3770, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701090f.jpg"} -{"rects": [{"solidity": 0.9972863165963971, "top": 620, "right": 3310, "bottom": 2480, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714914f.jpg"} -{"rects": [{"solidity": 0.9972866031229488, "top": 585, "right": 3985, "bottom": 2060, "left": 2135}, {"solidity": 0.9970690348618424, "top": 600, "right": 2035, "bottom": 2080, "left": 185}, {"solidity": 0.9970529554578015, "top": 2235, "right": 2030, "bottom": 3660, "left": 185}, {"solidity": 0.9961376573591594, "top": 2225, "right": 3970, "bottom": 3655, "left": 2115}, {"solidity": 0.9947835230337501, "top": 740, "right": 5860, "bottom": 1775, "left": 4070}, {"solidity": 0.9930303595244583, "top": 2415, "right": 5410, "bottom": 3375, "left": 4485}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732944f.jpg"} -{"rects": [{"solidity": 0.997286806660715, "top": 610, "right": 2595, "bottom": 3460, "left": 315}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508413.jpg"} -{"rects": [{"solidity": 0.9972869673780451, "top": 400, "right": 5085, "bottom": 3720, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725617f.jpg"} -{"rects": [{"solidity": 0.9972873268011352, "top": 880, "right": 2015, "bottom": 2955, "left": 415}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701118f.jpg"} -{"rects": [{"solidity": 0.9972873666048949, "top": 575, "right": 3030, "bottom": 2205, "left": 610}, {"solidity": 0.9978851456505033, "top": 580, "right": 5675, "bottom": 2195, "left": 3260}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704191f.jpg"} -{"rects": [{"solidity": 0.9972876893529883, "top": 555, "right": 3095, "bottom": 2190, "left": 665}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702724f.jpg"} -{"rects": [{"solidity": 0.9972878219138569, "top": 425, "right": 2670, "bottom": 3655, "left": 645}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733094f.jpg"} -{"rects": [{"solidity": 0.9972878802743134, "top": 655, "right": 2470, "bottom": 3095, "left": 835}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721787f.jpg"} -{"rects": [{"solidity": 0.9972880279453795, "top": 660, "right": 2465, "bottom": 3095, "left": 835}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722456f.jpg"} -{"rects": [{"solidity": 0.9972882188173063, "top": 520, "right": 3135, "bottom": 1940, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725888f.jpg"} -{"rects": [{"solidity": 0.9972882349111271, "top": 745, "right": 3860, "bottom": 3150, "left": 2250}, {"solidity": 0.9993811881188119, "top": 735, "right": 2020, "bottom": 3135, "left": 420}, {"solidity": 0.9962405278285864, "top": 755, "right": 5725, "bottom": 3165, "left": 4115}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733364f.jpg"} -{"rects": [{"solidity": 0.9972883689362236, "top": 435, "right": 3195, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/734027f.jpg"} -{"rects": [{"solidity": 0.9972883788125103, "top": 785, "right": 2060, "bottom": 3200, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717246f.jpg"} -{"rects": [{"solidity": 0.9972884963421784, "top": 850, "right": 5745, "bottom": 3270, "left": 4105}, {"solidity": 0.9971842676541949, "top": 850, "right": 2020, "bottom": 3270, "left": 385}, {"solidity": 0.9974956341514901, "top": 855, "right": 3885, "bottom": 3270, "left": 2255}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729694f.jpg"} -{"rects": [{"solidity": 0.9972886762360447, "top": 2205, "right": 3040, "bottom": 3810, "left": 625}, {"solidity": 0.9871673266610804, "top": 540, "right": 2995, "bottom": 2030, "left": 995}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715391f.jpg"} -{"rects": [{"solidity": 0.9972889304851333, "top": 2110, "right": 3360, "bottom": 4145, "left": 340}, {"solidity": 0.9970388853960694, "top": 400, "right": 3120, "bottom": 2010, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715319f.jpg"} -{"rects": [{"solidity": 0.9972889320144112, "top": 785, "right": 5290, "bottom": 3580, "left": 1235}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718173f.jpg"} -{"rects": [{"solidity": 0.9972890481693534, "top": 375, "right": 5130, "bottom": 3730, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727844f.jpg"} -{"rects": [{"solidity": 0.997289416670739, "top": 425, "right": 3225, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703957f.jpg"} -{"rects": [{"solidity": 0.9972895412752493, "top": 495, "right": 5085, "bottom": 3745, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702685f.jpg"} -{"rects": [{"solidity": 0.9972895469533867, "top": 2225, "right": 3175, "bottom": 3845, "left": 745}, {"solidity": 0.9967789336421405, "top": 390, "right": 3170, "bottom": 2000, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733843f.jpg"} -{"rects": [{"solidity": 0.9972895480870081, "top": 475, "right": 4965, "bottom": 3775, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707844f.jpg"} -{"rects": [{"solidity": 0.997289680515778, "top": 790, "right": 2035, "bottom": 3195, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715243f.jpg"} -{"rects": [{"solidity": 0.9972897118231505, "top": 2015, "right": 3255, "bottom": 3645, "left": 845}, {"solidity": 0.996381746702903, "top": 270, "right": 3225, "bottom": 1895, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707499f.jpg"} -{"rects": [{"solidity": 0.9972900594016426, "top": 1830, "right": 3200, "bottom": 3460, "left": 775}, {"solidity": 0.9963290617541909, "top": 160, "right": 3210, "bottom": 1800, "left": 780}, {"solidity": 0.9963566634707575, "top": 3490, "right": 1960, "bottom": 5915, "left": 325}, {"solidity": 0.9979236133620455, "top": 3500, "right": 3645, "bottom": 5915, "left": 2020}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700784f.jpg"} -{"rects": [{"solidity": 0.997290257048772, "top": 390, "right": 3030, "bottom": 1990, "left": 625}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729166f.jpg"} -{"rects": [{"solidity": 0.9972903276222478, "top": 495, "right": 5055, "bottom": 3700, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734467f.jpg"} -{"rects": [{"solidity": 0.9972905042297704, "top": 470, "right": 3215, "bottom": 2090, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713210f.jpg"} -{"rects": [{"solidity": 0.9972906355111778, "top": 640, "right": 5745, "bottom": 3025, "left": 4145}, {"solidity": 0.9996017840076458, "top": 625, "right": 3905, "bottom": 3000, "left": 2310}, {"solidity": 0.9984196599612883, "top": 620, "right": 2025, "bottom": 2995, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728005f.jpg"} -{"rects": [{"solidity": 0.9972906602179077, "top": 270, "right": 5070, "bottom": 3570, "left": 935}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702458f.jpg"} -{"rects": [{"solidity": 0.9972907132665575, "top": 1580, "right": 3485, "bottom": 5240, "left": 580}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731201f.jpg"} -{"rects": [{"solidity": 0.9972908574142116, "top": 595, "right": 3275, "bottom": 4015, "left": 650}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715263f.jpg"} -{"rects": [{"solidity": 0.9972909143642095, "top": 2020, "right": 2780, "bottom": 3650, "left": 355}, {"solidity": 0.9984139241439196, "top": 210, "right": 5760, "bottom": 1835, "left": 3345}, {"solidity": 0.9979366533288339, "top": 205, "right": 2775, "bottom": 1840, "left": 375}, {"solidity": 0.9989786186542253, "top": 2025, "right": 5745, "bottom": 3645, "left": 3335}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730863f.jpg"} -{"rects": [{"solidity": 0.9972910468122702, "top": 390, "right": 3130, "bottom": 2005, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728566f.jpg"} -{"rects": [{"solidity": 0.9972910730893577, "top": 940, "right": 3365, "bottom": 1995, "left": 1740}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509603.jpg"} -{"rects": [{"solidity": 0.9972911614467778, "top": 725, "right": 2005, "bottom": 3145, "left": 385}, {"solidity": 0.9952407661238131, "top": 750, "right": 3835, "bottom": 3135, "left": 2240}, {"solidity": 0.995143988359108, "top": 940, "right": 5640, "bottom": 2895, "left": 4085}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722523f.jpg"} -{"rects": [{"solidity": 0.9972911763399795, "top": 585, "right": 3240, "bottom": 2600, "left": 415}, {"solidity": 0.9975269269175768, "top": 3285, "right": 3245, "bottom": 5290, "left": 425}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728756f.jpg"} -{"rects": [{"solidity": 0.9972912169663584, "top": 4090, "right": 3160, "bottom": 5695, "left": 750}, {"solidity": 0.9972899905540537, "top": 2240, "right": 3175, "bottom": 3840, "left": 760}, {"solidity": 0.9966723541137207, "top": 390, "right": 3180, "bottom": 1995, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734771f.jpg"} -{"rects": [{"solidity": 0.9972913099418599, "top": 320, "right": 3190, "bottom": 1955, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706230f.jpg"} -{"rects": [{"solidity": 0.997291387187557, "top": 470, "right": 3130, "bottom": 2100, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700782f.jpg"} -{"rects": [{"solidity": 0.9972916901204587, "top": 370, "right": 3245, "bottom": 1995, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704858f.jpg"} -{"rects": [{"solidity": 0.9972917333229915, "top": 415, "right": 3155, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705710f.jpg"} -{"rects": [{"solidity": 0.997291759264142, "top": 405, "right": 5210, "bottom": 3680, "left": 1135}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/733428f.jpg"} -{"rects": [{"solidity": 0.9972917656483463, "top": 285, "right": 5005, "bottom": 3555, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726866f.jpg"} -{"rects": [{"solidity": 0.9972920992450411, "top": 375, "right": 3290, "bottom": 2005, "left": 860}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726827f.jpg"} -{"rects": [{"solidity": 0.9972921986046285, "top": 680, "right": 2490, "bottom": 2175, "left": 400}, {"solidity": 0.9963436928702011, "top": 2440, "right": 2490, "bottom": 3925, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716161f.jpg"} -{"rects": [{"solidity": 0.9972922073963804, "top": 785, "right": 2025, "bottom": 3210, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724063f.jpg"} -{"rects": [{"solidity": 0.9972922257904003, "top": 1065, "right": 2450, "bottom": 4080, "left": 350}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508809.jpg"} -{"rects": [{"solidity": 0.9972922714513873, "top": 4155, "right": 3185, "bottom": 5780, "left": 760}, {"solidity": 0.9986736122708528, "top": 430, "right": 3175, "bottom": 2050, "left": 755}, {"solidity": 0.9958060998664404, "top": 2300, "right": 3175, "bottom": 3910, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734512f.jpg"} -{"rects": [{"solidity": 0.9972924052395385, "top": 490, "right": 4990, "bottom": 3535, "left": 1130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732861f.jpg"} -{"rects": [{"solidity": 0.9972926404353182, "top": 330, "right": 4955, "bottom": 3610, "left": 920}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701406f.jpg"} -{"rects": [{"solidity": 0.9972926759760615, "top": 395, "right": 3260, "bottom": 2000, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704628f.jpg"} -{"rects": [{"solidity": 0.9972928379138617, "top": 475, "right": 5090, "bottom": 3790, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707831f.jpg"} -{"rects": [{"solidity": 0.9972929162467425, "top": 540, "right": 3145, "bottom": 2145, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723128f.jpg"} -{"rects": [{"solidity": 0.997292998254484, "top": 350, "right": 3200, "bottom": 1970, "left": 790}, {"solidity": 0.9977650012146733, "top": 2210, "right": 3185, "bottom": 3830, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713929f.jpg"} -{"rects": [{"solidity": 0.9972934830939355, "top": 730, "right": 2045, "bottom": 3150, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727693f.jpg"} -{"rects": [{"solidity": 0.9972935089430475, "top": 445, "right": 3085, "bottom": 2060, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731196f.jpg"} -{"rects": [{"solidity": 0.9972936652524619, "top": 920, "right": 3290, "bottom": 2575, "left": 835}, {"solidity": 0.996826096813364, "top": 555, "right": 5270, "bottom": 3020, "left": 3620}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700003f.jpg"} -{"rects": [{"solidity": 0.9972938280753758, "top": 745, "right": 1995, "bottom": 3130, "left": 400}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732358f.jpg"} -{"rects": [{"solidity": 0.9972938332495093, "top": 440, "right": 3325, "bottom": 2055, "left": 920}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725922f.jpg"} -{"rects": [{"solidity": 0.9972939606322038, "top": 1275, "right": 3055, "bottom": 4610, "left": 485}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714802f.jpg"} -{"rects": [{"solidity": 0.9972940623813538, "top": 380, "right": 3195, "bottom": 1995, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707009f.jpg"} -{"rects": [{"solidity": 0.9972941431291602, "top": 810, "right": 2090, "bottom": 3220, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701223f.jpg"} -{"rects": [{"solidity": 0.9972942285729463, "top": 395, "right": 3170, "bottom": 1985, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714075f.jpg"} -{"rects": [{"solidity": 0.9972944053314996, "top": 420, "right": 3175, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705103f.jpg"} -{"rects": [{"solidity": 0.9972944687276226, "top": 410, "right": 3140, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706794f.jpg"} -{"rects": [{"solidity": 0.997294535733335, "top": 455, "right": 3210, "bottom": 2080, "left": 795}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723115f.jpg"} -{"rects": [{"solidity": 0.9972945574761256, "top": 470, "right": 3170, "bottom": 2085, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732001f.jpg"} -{"rects": [{"solidity": 0.9972946549345761, "top": 565, "right": 5265, "bottom": 2030, "left": 3330}, {"solidity": 0.9984855572176861, "top": 590, "right": 2770, "bottom": 1990, "left": 825}, {"solidity": 0.9960930250730116, "top": 2070, "right": 5245, "bottom": 3455, "left": 3370}, {"solidity": 0.9960308925603676, "top": 2035, "right": 2730, "bottom": 3410, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731430f.jpg"} -{"rects": [{"solidity": 0.9972946847367021, "top": 855, "right": 1970, "bottom": 3265, "left": 350}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721922f.jpg"} -{"rects": [{"solidity": 0.9972947213370431, "top": 790, "right": 3795, "bottom": 3210, "left": 2175}, {"solidity": 0.9996170273533345, "top": 795, "right": 1920, "bottom": 3200, "left": 310}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711811f.jpg"} -{"rects": [{"solidity": 0.9972947564321483, "top": 1115, "right": 3525, "bottom": 5145, "left": 260}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721709f.jpg"} -{"rects": [{"solidity": 0.9972948602344455, "top": 745, "right": 3170, "bottom": 2600, "left": 395}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702617f.jpg"} -{"rects": [{"solidity": 0.9972952822363303, "top": 500, "right": 3025, "bottom": 2120, "left": 610}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707375f.jpg"} -{"rects": [{"solidity": 0.997295354979937, "top": 370, "right": 5060, "bottom": 3655, "left": 995}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706242f.jpg"} -{"rects": [{"solidity": 0.9972953567070324, "top": 785, "right": 3885, "bottom": 3200, "left": 2265}, {"solidity": 0.9962420327812896, "top": 790, "right": 2080, "bottom": 3175, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709684f.jpg"} -{"rects": [{"solidity": 0.9972957142315952, "top": 785, "right": 2200, "bottom": 3245, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731763f.jpg"} -{"rects": [{"solidity": 0.9972960600053673, "top": 3465, "right": 3785, "bottom": 5550, "left": 1100}, {"solidity": 0.9915280828365234, "top": 665, "right": 3795, "bottom": 2725, "left": 1110}], "shape": {"h": 6020, "w": 4675}, "file": "/usr/local/google/home/danvk/milstein/464820.jpg"} -{"rects": [{"solidity": 0.9972967557784719, "top": 915, "right": 2005, "bottom": 3315, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729129f.jpg"} -{"rects": [{"solidity": 0.9972968131058781, "top": 440, "right": 3365, "bottom": 2605, "left": 445}, {"solidity": 0.9975881900824256, "top": 2765, "right": 3150, "bottom": 4355, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716656f.jpg"} -{"rects": [{"solidity": 0.9972968860775066, "top": 565, "right": 3130, "bottom": 2180, "left": 720}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705491f.jpg"} -{"rects": [{"solidity": 0.9972971605000759, "top": 760, "right": 2055, "bottom": 3130, "left": 480}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721098f.jpg"} -{"rects": [{"solidity": 0.9972975151974459, "top": 230, "right": 3190, "bottom": 1855, "left": 780}, {"solidity": 0.9994424010017217, "top": 1970, "right": 3205, "bottom": 3580, "left": 810}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/717836f.jpg"} -{"rects": [{"solidity": 0.9972975308728484, "top": 1190, "right": 3865, "bottom": 5720, "left": 300}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708342f.jpg"} -{"rects": [{"solidity": 0.9972977542966345, "top": 565, "right": 3235, "bottom": 2200, "left": 815}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706220f.jpg"} -{"rects": [{"solidity": 0.997297962133034, "top": 525, "right": 5035, "bottom": 3785, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720613f.jpg"} -{"rects": [{"solidity": 0.9972979986376463, "top": 2260, "right": 3290, "bottom": 3865, "left": 870}, {"solidity": 0.9959399542310293, "top": 410, "right": 3290, "bottom": 2030, "left": 870}, {"solidity": 0.9956564749968881, "top": 4100, "right": 3270, "bottom": 5705, "left": 855}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/726930f.jpg"} -{"rects": [{"solidity": 0.9972980483829158, "top": 755, "right": 3250, "bottom": 2700, "left": 465}, {"solidity": 0.9967083873233754, "top": 3440, "right": 3230, "bottom": 5370, "left": 470}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704258f.jpg"} -{"rects": [{"solidity": 0.997298115268322, "top": 445, "right": 5085, "bottom": 3715, "left": 1040}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725683f.jpg"} -{"rects": [{"solidity": 0.9972982371666266, "top": 1050, "right": 3595, "bottom": 5055, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722359f.jpg"} -{"rects": [{"solidity": 0.997298255795209, "top": 470, "right": 3160, "bottom": 2090, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720799f.jpg"} -{"rects": [{"solidity": 0.9972982766183323, "top": 910, "right": 1985, "bottom": 3345, "left": 355}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728823f.jpg"} -{"rects": [{"solidity": 0.9972983379926307, "top": 450, "right": 5140, "bottom": 3575, "left": 1265}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727292f.jpg"} -{"rects": [{"solidity": 0.9972987642878228, "top": 430, "right": 3250, "bottom": 2075, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727965f.jpg"} -{"rects": [{"solidity": 0.9972990674482879, "top": 780, "right": 3410, "bottom": 2820, "left": 360}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708156f.jpg"} -{"rects": [{"solidity": 0.9972991576256187, "top": 815, "right": 2060, "bottom": 3215, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724152f.jpg"} -{"rects": [{"solidity": 0.9972995640463479, "top": 1285, "right": 3295, "bottom": 4685, "left": 660}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724480f.jpg"} -{"rects": [{"solidity": 0.9973004736179738, "top": 400, "right": 3210, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732467f.jpg"} -{"rects": [{"solidity": 0.9973005890500323, "top": 370, "right": 3105, "bottom": 1985, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701441f.jpg"} -{"rects": [{"solidity": 0.9973007437519015, "top": 405, "right": 3095, "bottom": 2020, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730195f.jpg"} -{"rects": [{"solidity": 0.9973008312809498, "top": 1090, "right": 3485, "bottom": 5010, "left": 420}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721396f.jpg"} -{"rects": [{"solidity": 0.9973010033121855, "top": 555, "right": 2715, "bottom": 1980, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705880f.jpg"} -{"rects": [{"solidity": 0.9973010566076259, "top": 395, "right": 2910, "bottom": 2020, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705032f.jpg"} -{"rects": [{"solidity": 0.997301106546316, "top": 480, "right": 5035, "bottom": 3700, "left": 995}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717821f.jpg"} -{"rects": [{"solidity": 0.9973012929194512, "top": 680, "right": 3370, "bottom": 2605, "left": 645}, {"solidity": 0.9959316162182226, "top": 3260, "right": 3335, "bottom": 5180, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712146f.jpg"} -{"rects": [{"solidity": 0.9973013402332774, "top": 500, "right": 3075, "bottom": 1890, "left": 1280}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728216f.jpg"} -{"rects": [{"solidity": 0.9973013610103496, "top": 920, "right": 2710, "bottom": 4080, "left": 255}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507897.jpg"} -{"rects": [{"solidity": 0.9973013960233249, "top": 2580, "right": 3495, "bottom": 4400, "left": 785}, {"solidity": 0.9964437958446944, "top": 455, "right": 3500, "bottom": 2280, "left": 790}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/1552835.jpg"} -{"rects": [{"solidity": 0.9973014208251991, "top": 420, "right": 5440, "bottom": 3640, "left": 3395}, {"solidity": 0.9974463618489594, "top": 415, "right": 3005, "bottom": 3615, "left": 990}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733031f.jpg"} -{"rects": [{"solidity": 0.9973014314006473, "top": 400, "right": 3045, "bottom": 2025, "left": 630}, {"solidity": 0.9960389094290688, "top": 2235, "right": 3035, "bottom": 3865, "left": 620}, {"solidity": 0.9965826886285019, "top": 4095, "right": 3020, "bottom": 5720, "left": 600}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734048f.jpg"} -{"rects": [{"solidity": 0.9973016427109955, "top": 520, "right": 3305, "bottom": 2385, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715266f.jpg"} -{"rects": [{"solidity": 0.9973018009357175, "top": 385, "right": 3160, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700991f.jpg"} -{"rects": [{"solidity": 0.9973019353608542, "top": 695, "right": 2060, "bottom": 3125, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704074f.jpg"} -{"rects": [{"solidity": 0.9973019588388438, "top": 585, "right": 5095, "bottom": 3550, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720302f.jpg"} -{"rects": [{"solidity": 0.9973020126621222, "top": 3260, "right": 3345, "bottom": 5310, "left": 305}, {"solidity": 0.9969638075677786, "top": 730, "right": 3350, "bottom": 2695, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723143f.jpg"} -{"rects": [{"solidity": 0.997302212888646, "top": 2225, "right": 3215, "bottom": 3850, "left": 790}, {"solidity": 0.9967361171763046, "top": 4120, "right": 3190, "bottom": 5735, "left": 775}, {"solidity": 0.9969580220008302, "top": 340, "right": 3215, "bottom": 1955, "left": 810}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734272f.jpg"} -{"rects": [{"solidity": 0.9973024951396781, "top": 1200, "right": 3510, "bottom": 4925, "left": 285}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724479f.jpg"} -{"rects": [{"solidity": 0.9973026373589399, "top": 430, "right": 5070, "bottom": 3725, "left": 960}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/719249f.jpg"} -{"rects": [{"solidity": 0.9973027624984327, "top": 765, "right": 2000, "bottom": 3180, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733829f.jpg"} -{"rects": [{"solidity": 0.9973033507301565, "top": 675, "right": 3415, "bottom": 2640, "left": 395}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/715645f.jpg"} -{"rects": [{"solidity": 0.9973033854591753, "top": 415, "right": 3160, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721978f.jpg"} -{"rects": [{"solidity": 0.9973034327104766, "top": 775, "right": 3390, "bottom": 2805, "left": 530}, {"solidity": 0.9978777729880293, "top": 3175, "right": 3385, "bottom": 5190, "left": 560}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704278f.jpg"} -{"rects": [{"solidity": 0.9973034613576096, "top": 840, "right": 2055, "bottom": 3270, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701655f.jpg"} -{"rects": [{"solidity": 0.9973035240151664, "top": 930, "right": 2695, "bottom": 3950, "left": 280}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517281.jpg"} -{"rects": [{"solidity": 0.9973036630024955, "top": 380, "right": 3110, "bottom": 2010, "left": 680}, {"solidity": 0.9967758444216991, "top": 2220, "right": 3100, "bottom": 3850, "left": 680}, {"solidity": 0.9974641799407669, "top": 4085, "right": 3105, "bottom": 5710, "left": 685}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704114f.jpg"} -{"rects": [{"solidity": 0.9973037881456339, "top": 330, "right": 3485, "bottom": 1960, "left": 1070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707353f.jpg"} -{"rects": [{"solidity": 0.9973038122443556, "top": 595, "right": 4830, "bottom": 3865, "left": 775}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725663f.jpg"} -{"rects": [{"solidity": 0.9973038519233184, "top": 2220, "right": 3130, "bottom": 3810, "left": 735}, {"solidity": 0.9945023977851387, "top": 365, "right": 3150, "bottom": 1970, "left": 745}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728199f.jpg"} -{"rects": [{"solidity": 0.9973043261086739, "top": 800, "right": 3095, "bottom": 2705, "left": 645}, {"solidity": 0.9968275270005575, "top": 2810, "right": 2770, "bottom": 4210, "left": 945}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703777f.jpg"} -{"rects": [{"solidity": 0.9973043283887322, "top": 410, "right": 5100, "bottom": 3675, "left": 1050}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732663f.jpg"} -{"rects": [{"solidity": 0.9973043717943034, "top": 430, "right": 5075, "bottom": 3650, "left": 1015}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708702f.jpg"} -{"rects": [{"solidity": 0.9973044265564514, "top": 520, "right": 2635, "bottom": 3575, "left": 635}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713575f.jpg"} -{"rects": [{"solidity": 0.9973045645759596, "top": 470, "right": 3140, "bottom": 2065, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729264f.jpg"} -{"rects": [{"solidity": 0.997304577535024, "top": 355, "right": 3835, "bottom": 2770, "left": 830}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716298f.jpg"} -{"rects": [{"solidity": 0.9973046434822708, "top": 845, "right": 3875, "bottom": 3260, "left": 2270}, {"solidity": 0.9965428736053638, "top": 860, "right": 5745, "bottom": 3270, "left": 4140}, {"solidity": 0.9969083846965042, "top": 850, "right": 1990, "bottom": 3260, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734131f.jpg"} -{"rects": [{"solidity": 0.9973047294128229, "top": 880, "right": 3925, "bottom": 3290, "left": 2295}, {"solidity": 0.9977403577282029, "top": 890, "right": 2060, "bottom": 3295, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719566f.jpg"} -{"rects": [{"solidity": 0.9973048506264054, "top": 1975, "right": 3245, "bottom": 3595, "left": 820}, {"solidity": 0.9969576847465275, "top": 210, "right": 3250, "bottom": 1825, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723992f.jpg"} -{"rects": [{"solidity": 0.9973051862181722, "top": 440, "right": 5115, "bottom": 3645, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721095f.jpg"} -{"rects": [{"solidity": 0.9973052444909744, "top": 865, "right": 2230, "bottom": 3365, "left": 345}, {"solidity": 0.9961367665681722, "top": 945, "right": 4065, "bottom": 3315, "left": 2475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700344f.jpg"} -{"rects": [{"solidity": 0.997305251330226, "top": 540, "right": 3305, "bottom": 2140, "left": 895}, {"solidity": 0.9887810059822211, "top": 4235, "right": 2945, "bottom": 5480, "left": 1305}, {"solidity": 0.9875246554518387, "top": 2530, "right": 2980, "bottom": 3770, "left": 1325}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707319f.jpg"} -{"rects": [{"solidity": 0.9973053521609552, "top": 565, "right": 2735, "bottom": 2015, "left": 905}, {"solidity": 0.9965645050467905, "top": 2055, "right": 2745, "bottom": 3470, "left": 900}, {"solidity": 0.9949225208879003, "top": 555, "right": 5240, "bottom": 1985, "left": 3400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707430f.jpg"} -{"rects": [{"solidity": 0.9973053631964767, "top": 715, "right": 3275, "bottom": 2540, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713364f.jpg"} -{"rects": [{"solidity": 0.9973054103008852, "top": 2240, "right": 3160, "bottom": 3865, "left": 735}, {"solidity": 0.9976879992003121, "top": 400, "right": 3165, "bottom": 2015, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734113f.jpg"} -{"rects": [{"solidity": 0.9973054382031122, "top": 415, "right": 3145, "bottom": 2040, "left": 720}, {"solidity": 0.9968854203388844, "top": 2225, "right": 3155, "bottom": 3840, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719767f.jpg"} -{"rects": [{"solidity": 0.9973056222682004, "top": 820, "right": 2020, "bottom": 3200, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709144f.jpg"} -{"rects": [{"solidity": 0.9973057518312468, "top": 830, "right": 2010, "bottom": 3240, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720071f.jpg"} -{"rects": [{"solidity": 0.9973057633940889, "top": 490, "right": 3190, "bottom": 2100, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710558f.jpg"} -{"rects": [{"solidity": 0.997305774150132, "top": 890, "right": 3510, "bottom": 4550, "left": 615}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/721860f.jpg"} -{"rects": [{"solidity": 0.9973057882020611, "top": 510, "right": 3325, "bottom": 2430, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724596f.jpg"} -{"rects": [{"solidity": 0.9973058293724578, "top": 1410, "right": 3375, "bottom": 5195, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717426f.jpg"} -{"rects": [{"solidity": 0.9973058466034571, "top": 600, "right": 2455, "bottom": 3675, "left": 480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715274f.jpg"} -{"rects": [{"solidity": 0.9973059206001456, "top": 820, "right": 2020, "bottom": 3200, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721005f.jpg"} -{"rects": [{"solidity": 0.9973064321502072, "top": 885, "right": 3470, "bottom": 4935, "left": 290}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711122f.jpg"} -{"rects": [{"solidity": 0.9973065308629337, "top": 360, "right": 2800, "bottom": 2790, "left": 1175}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700120f.jpg"} -{"rects": [{"solidity": 0.9973067057350922, "top": 540, "right": 5015, "bottom": 3755, "left": 1005}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708577f.jpg"} -{"rects": [{"solidity": 0.9973067420905772, "top": 410, "right": 5060, "bottom": 3655, "left": 985}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722023f.jpg"} -{"rects": [{"solidity": 0.9973067654186013, "top": 490, "right": 3190, "bottom": 2075, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721441f.jpg"} -{"rects": [{"solidity": 0.997306870407775, "top": 430, "right": 3120, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700660f.jpg"} -{"rects": [{"solidity": 0.9973070331899416, "top": 850, "right": 2360, "bottom": 2285, "left": 345}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508063.jpg"} -{"rects": [{"solidity": 0.9973071178725907, "top": 780, "right": 2025, "bottom": 3195, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733803f.jpg"} -{"rects": [{"solidity": 0.9973071218660131, "top": 455, "right": 5180, "bottom": 3660, "left": 1180}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723995f.jpg"} -{"rects": [{"solidity": 0.997307177851783, "top": 445, "right": 2645, "bottom": 3640, "left": 615}, {"solidity": 0.9988606212571014, "top": 460, "right": 5025, "bottom": 3640, "left": 3020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733105f.jpg"} -{"rects": [{"solidity": 0.9973073706498566, "top": 2090, "right": 2745, "bottom": 3515, "left": 915}, {"solidity": 0.9957858659972968, "top": 2070, "right": 5290, "bottom": 3510, "left": 3475}, {"solidity": 0.998404878956982, "top": 635, "right": 2710, "bottom": 2030, "left": 915}, {"solidity": 0.9950574913429032, "top": 635, "right": 5275, "bottom": 2010, "left": 3475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705274f.jpg"} -{"rects": [{"solidity": 0.9973075401115331, "top": 615, "right": 2545, "bottom": 3670, "left": 515}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715492f.jpg"} -{"rects": [{"solidity": 0.9973075463312886, "top": 885, "right": 3890, "bottom": 3285, "left": 2270}, {"solidity": 0.9970833834051661, "top": 890, "right": 2005, "bottom": 3295, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728684f.jpg"} -{"rects": [{"solidity": 0.9973077559541237, "top": 750, "right": 3905, "bottom": 3185, "left": 2275}, {"solidity": 0.9979429423638163, "top": 775, "right": 5745, "bottom": 3195, "left": 4125}, {"solidity": 0.9979199753097533, "top": 765, "right": 2045, "bottom": 3190, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719451f.jpg"} -{"rects": [{"solidity": 0.9973078823728989, "top": 1050, "right": 3395, "bottom": 5155, "left": 475}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717112f.jpg"} -{"rects": [{"solidity": 0.9973078910675807, "top": 1010, "right": 3520, "bottom": 5030, "left": 295}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732252f.jpg"} -{"rects": [{"solidity": 0.9973080850273832, "top": 405, "right": 3315, "bottom": 2030, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700065f.jpg"} -{"rects": [{"solidity": 0.9973081310242388, "top": 915, "right": 3410, "bottom": 4635, "left": 580}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721921f.jpg"} -{"rects": [{"solidity": 0.9973082013131352, "top": 815, "right": 3890, "bottom": 3245, "left": 2275}, {"solidity": 0.9977488930708014, "top": 820, "right": 2025, "bottom": 3240, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732824f.jpg"} -{"rects": [{"solidity": 0.9973082056312209, "top": 410, "right": 3250, "bottom": 2030, "left": 835}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724964f.jpg"} -{"rects": [{"solidity": 0.9973082359608084, "top": 2235, "right": 3085, "bottom": 3860, "left": 675}, {"solidity": 0.9974303088143309, "top": 395, "right": 3085, "bottom": 2020, "left": 675}, {"solidity": 0.9965064372129132, "top": 4085, "right": 3055, "bottom": 5710, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730251f.jpg"} -{"rects": [{"solidity": 0.9973087137652514, "top": 2190, "right": 3140, "bottom": 3830, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707607f.jpg"} -{"rects": [{"solidity": 0.9973087537183836, "top": 295, "right": 3175, "bottom": 1890, "left": 750}, {"solidity": 0.9970226614043938, "top": 2120, "right": 3165, "bottom": 3710, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730131f.jpg"} -{"rects": [{"solidity": 0.9973088107337049, "top": 750, "right": 2060, "bottom": 3165, "left": 445}, {"solidity": 0.9985052544107662, "top": 765, "right": 3930, "bottom": 2150, "left": 2135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719289f.jpg"} -{"rects": [{"solidity": 0.9973091012538096, "top": 400, "right": 5740, "bottom": 4005, "left": 1250}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706370f.jpg"} -{"rects": [{"solidity": 0.9973092972575028, "top": 410, "right": 3195, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714177f.jpg"} -{"rects": [{"solidity": 0.9973093797832805, "top": 805, "right": 3800, "bottom": 3225, "left": 2170}, {"solidity": 0.9981321765429567, "top": 795, "right": 1925, "bottom": 3215, "left": 300}, {"solidity": 0.9957033481154416, "top": 800, "right": 5680, "bottom": 3220, "left": 4050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724779f.jpg"} -{"rects": [{"solidity": 0.9973094822571262, "top": 740, "right": 2025, "bottom": 3130, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713824f.jpg"} -{"rects": [{"solidity": 0.9973095337053876, "top": 800, "right": 2050, "bottom": 3240, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720762f.jpg"} -{"rects": [{"solidity": 0.9973096839108668, "top": 2310, "right": 3165, "bottom": 4020, "left": 765}, {"solidity": 0.9929539904896543, "top": 460, "right": 3185, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700636f.jpg"} -{"rects": [{"solidity": 0.9973097142708611, "top": 410, "right": 3125, "bottom": 2015, "left": 710}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728567f.jpg"} -{"rects": [{"solidity": 0.9973098048007174, "top": 390, "right": 3160, "bottom": 2010, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707970f.jpg"} -{"rects": [{"solidity": 0.997309908777137, "top": 365, "right": 5080, "bottom": 3595, "left": 1055}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708266f.jpg"} -{"rects": [{"solidity": 0.9973099452779474, "top": 500, "right": 2920, "bottom": 3375, "left": 875}, {"solidity": 0.998068281485171, "top": 510, "right": 5330, "bottom": 3385, "left": 3305}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705205f.jpg"} -{"rects": [{"solidity": 0.9973101998646193, "top": 745, "right": 2620, "bottom": 3560, "left": 610}, {"solidity": 0.9987500922338021, "top": 740, "right": 5305, "bottom": 3550, "left": 3305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728719f.jpg"} -{"rects": [{"solidity": 0.9973102252093553, "top": 455, "right": 3165, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714292f.jpg"} -{"rects": [{"solidity": 0.9973103230607256, "top": 475, "right": 5025, "bottom": 3415, "left": 1280}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707820f.jpg"} -{"rects": [{"solidity": 0.9973104723482938, "top": 635, "right": 2380, "bottom": 3430, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705487f.jpg"} -{"rects": [{"solidity": 0.9973106613745719, "top": 1080, "right": 3500, "bottom": 4980, "left": 450}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721397f.jpg"} -{"rects": [{"solidity": 0.997310706322611, "top": 410, "right": 3295, "bottom": 2015, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711770f.jpg"} -{"rects": [{"solidity": 0.9973108850695662, "top": 465, "right": 3095, "bottom": 2075, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718081f.jpg"} -{"rects": [{"solidity": 0.9973112884471417, "top": 760, "right": 2025, "bottom": 3195, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704465f.jpg"} -{"rects": [{"solidity": 0.9973113292237716, "top": 440, "right": 5675, "bottom": 4135, "left": 1130}], "shape": {"h": 4425, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/708898f.jpg"} -{"rects": [{"solidity": 0.9973113557194212, "top": 680, "right": 5365, "bottom": 3530, "left": 3295}, {"solidity": 0.9971869713276533, "top": 675, "right": 2665, "bottom": 3520, "left": 635}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733816f.jpg"} -{"rects": [{"solidity": 0.9973114498350426, "top": 960, "right": 5460, "bottom": 2595, "left": 635}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710823f.jpg"} -{"rects": [{"solidity": 0.9973115698511762, "top": 420, "right": 3195, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700577f.jpg"} -{"rects": [{"solidity": 0.9973116734673027, "top": 795, "right": 2055, "bottom": 3225, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707131f.jpg"} -{"rects": [{"solidity": 0.9973118628660477, "top": 395, "right": 3255, "bottom": 2005, "left": 840}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706073f.jpg"} -{"rects": [{"solidity": 0.997311991150144, "top": 440, "right": 3240, "bottom": 2015, "left": 865}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709217f.jpg"} -{"rects": [{"solidity": 0.9973120897528291, "top": 420, "right": 3125, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729069f.jpg"} -{"rects": [{"solidity": 0.9973123054957924, "top": 830, "right": 2035, "bottom": 3230, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720453f.jpg"} -{"rects": [{"solidity": 0.9973123609799576, "top": 450, "right": 4950, "bottom": 3665, "left": 965}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724649f.jpg"} -{"rects": [{"solidity": 0.9973124420784931, "top": 3350, "right": 3285, "bottom": 5420, "left": 450}, {"solidity": 0.9968542688792951, "top": 730, "right": 3295, "bottom": 2785, "left": 475}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733727f.jpg"} -{"rects": [{"solidity": 0.997312508437964, "top": 680, "right": 4745, "bottom": 3275, "left": 1295}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722332f.jpg"} -{"rects": [{"solidity": 0.997312585195906, "top": 435, "right": 3135, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732314f.jpg"} -{"rects": [{"solidity": 0.9973127328868098, "top": 1020, "right": 3385, "bottom": 2225, "left": 1580}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509747.jpg"} -{"rects": [{"solidity": 0.9973131024278776, "top": 470, "right": 5140, "bottom": 3720, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710212f.jpg"} -{"rects": [{"solidity": 0.9973133329472255, "top": 790, "right": 2155, "bottom": 3215, "left": 535}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718135f.jpg"} -{"rects": [{"solidity": 0.9973133736814578, "top": 380, "right": 3105, "bottom": 1995, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700259f.jpg"} -{"rects": [{"solidity": 0.9973134784119961, "top": 795, "right": 2010, "bottom": 3200, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703284f.jpg"} -{"rects": [{"solidity": 0.9973135319508588, "top": 3965, "right": 3240, "bottom": 6695, "left": 1400}, {"solidity": 0.9973309049012233, "top": 2105, "right": 3630, "bottom": 3940, "left": 900}, {"solidity": 0.9996019875272525, "top": 240, "right": 3625, "bottom": 2065, "left": 910}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/710275f.jpg"} -{"rects": [{"solidity": 0.9973137155115214, "top": 2285, "right": 3055, "bottom": 3910, "left": 645}, {"solidity": 0.9974967616580311, "top": 385, "right": 3055, "bottom": 2000, "left": 645}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700553f.jpg"} -{"rects": [{"solidity": 0.9973137218229091, "top": 395, "right": 5115, "bottom": 3635, "left": 1110}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708251f.jpg"} -{"rects": [{"solidity": 0.9973137800512824, "top": 400, "right": 2860, "bottom": 2810, "left": 1230}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700128f.jpg"} -{"rects": [{"solidity": 0.9973138617449409, "top": 2335, "right": 3090, "bottom": 3965, "left": 655}, {"solidity": 0.9959216211476221, "top": 435, "right": 3105, "bottom": 2075, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719503f.jpg"} -{"rects": [{"solidity": 0.9973140009292794, "top": 2105, "right": 3085, "bottom": 3740, "left": 660}, {"solidity": 0.9968489644086376, "top": 440, "right": 3060, "bottom": 2080, "left": 640}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702220f.jpg"} -{"rects": [{"solidity": 0.9973142794435952, "top": 425, "right": 5095, "bottom": 3695, "left": 975}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/707998f.jpg"} -{"rects": [{"solidity": 0.9973144993117725, "top": 685, "right": 5275, "bottom": 3515, "left": 3225}, {"solidity": 0.9973384355793894, "top": 680, "right": 2905, "bottom": 3525, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731194f.jpg"} -{"rects": [{"solidity": 0.9973145738974013, "top": 810, "right": 2060, "bottom": 3225, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720924f.jpg"} -{"rects": [{"solidity": 0.9973145762619446, "top": 1190, "right": 3380, "bottom": 4940, "left": 420}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732346f.jpg"} -{"rects": [{"solidity": 0.9973146899129233, "top": 410, "right": 5095, "bottom": 3655, "left": 1090}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707789f.jpg"} -{"rects": [{"solidity": 0.9973147186917086, "top": 530, "right": 5030, "bottom": 3670, "left": 1155}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717161f.jpg"} -{"rects": [{"solidity": 0.9973148521234588, "top": 2265, "right": 3085, "bottom": 3885, "left": 665}, {"solidity": 0.9970549547389633, "top": 425, "right": 3075, "bottom": 2040, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729430f.jpg"} -{"rects": [{"solidity": 0.9973149451719644, "top": 815, "right": 1930, "bottom": 3195, "left": 305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720339f.jpg"} -{"rects": [{"solidity": 0.9973149916716508, "top": 490, "right": 2990, "bottom": 2115, "left": 575}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704559f.jpg"} -{"rects": [{"solidity": 0.9973151284529626, "top": 510, "right": 5135, "bottom": 3745, "left": 1120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702141f.jpg"} -{"rects": [{"solidity": 0.9973151570425127, "top": 375, "right": 3090, "bottom": 2000, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723293f.jpg"} -{"rects": [{"solidity": 0.9973154234482671, "top": 330, "right": 3175, "bottom": 1965, "left": 745}, {"solidity": 0.9988154186635247, "top": 4080, "right": 3170, "bottom": 5710, "left": 745}, {"solidity": 0.9971858216287892, "top": 2180, "right": 3175, "bottom": 3820, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710506f.jpg"} -{"rects": [{"solidity": 0.9973156896182136, "top": 2255, "right": 3215, "bottom": 3885, "left": 795}, {"solidity": 0.9994324412721011, "top": 405, "right": 3225, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727212f.jpg"} -{"rects": [{"solidity": 0.9973160027565378, "top": 480, "right": 3155, "bottom": 2080, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710499f.jpg"} -{"rects": [{"solidity": 0.9973160877321859, "top": 520, "right": 3570, "bottom": 2385, "left": 980}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507613.jpg"} -{"rects": [{"solidity": 0.9973164022517912, "top": 425, "right": 4060, "bottom": 2850, "left": 2435}, {"solidity": 0.998558648588917, "top": 415, "right": 2275, "bottom": 2840, "left": 655}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713663f.jpg"} -{"rects": [{"solidity": 0.997316440253737, "top": 840, "right": 2605, "bottom": 3855, "left": 160}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716332f.jpg"} -{"rects": [{"solidity": 0.9973165119310473, "top": 460, "right": 3320, "bottom": 2050, "left": 930}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728020f.jpg"} -{"rects": [{"solidity": 0.9973165895571712, "top": 505, "right": 3160, "bottom": 2100, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715010f.jpg"} -{"rects": [{"solidity": 0.9973166454541665, "top": 465, "right": 2895, "bottom": 2095, "left": 480}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706169f.jpg"} -{"rects": [{"solidity": 0.997316648867216, "top": 505, "right": 3070, "bottom": 2080, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707628f.jpg"} -{"rects": [{"solidity": 0.9973169218038891, "top": 920, "right": 5495, "bottom": 2940, "left": 2470}, {"solidity": 0.9968802558255285, "top": 725, "right": 2015, "bottom": 3145, "left": 410}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716716f.jpg"} -{"rects": [{"solidity": 0.9973171649538046, "top": 745, "right": 2025, "bottom": 3145, "left": 405}, {"solidity": 0.9985045881208424, "top": 745, "right": 3850, "bottom": 3145, "left": 2255}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719415f.jpg"} -{"rects": [{"solidity": 0.9973174395378533, "top": 405, "right": 3230, "bottom": 2030, "left": 810}, {"solidity": 0.9998746494100688, "top": 4185, "right": 3840, "bottom": 6010, "left": 2520}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710835f.jpg"} -{"rects": [{"solidity": 0.9973175419392613, "top": 395, "right": 3085, "bottom": 2030, "left": 660}, {"solidity": 0.9969170065989732, "top": 2295, "right": 3080, "bottom": 3895, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728405f.jpg"} -{"rects": [{"solidity": 0.9973176224176092, "top": 415, "right": 3095, "bottom": 2035, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729043f.jpg"} -{"rects": [{"solidity": 0.9973178149003874, "top": 395, "right": 3200, "bottom": 2005, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701559f.jpg"} -{"rects": [{"solidity": 0.9973178899008364, "top": 820, "right": 3780, "bottom": 3235, "left": 2165}, {"solidity": 0.9958034700826982, "top": 810, "right": 1970, "bottom": 3220, "left": 350}, {"solidity": 0.9963826166214493, "top": 1195, "right": 5130, "bottom": 2745, "left": 3985}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718668f.jpg"} -{"rects": [{"solidity": 0.9973179266323157, "top": 2220, "right": 3130, "bottom": 3845, "left": 710}, {"solidity": 0.9985903680526435, "top": 4080, "right": 3115, "bottom": 5705, "left": 715}, {"solidity": 0.9950250278843277, "top": 390, "right": 3095, "bottom": 1960, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703007f.jpg"} -{"rects": [{"solidity": 0.9973184008566839, "top": 665, "right": 2610, "bottom": 3470, "left": 600}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714866f.jpg"} -{"rects": [{"solidity": 0.9973184493893451, "top": 465, "right": 3155, "bottom": 2085, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732101f.jpg"} -{"rects": [{"solidity": 0.9973184639090886, "top": 535, "right": 4880, "bottom": 3525, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717510f.jpg"} -{"rects": [{"solidity": 0.997318572714562, "top": 340, "right": 3070, "bottom": 1970, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702438f.jpg"} -{"rects": [{"solidity": 0.9973186238211894, "top": 315, "right": 3190, "bottom": 1935, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711946f.jpg"} -{"rects": [{"solidity": 0.9973186699047006, "top": 675, "right": 5025, "bottom": 3485, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724328f.jpg"} -{"rects": [{"solidity": 0.9973187058472125, "top": 910, "right": 3125, "bottom": 2890, "left": 365}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702854f.jpg"} -{"rects": [{"solidity": 0.997318821343244, "top": 425, "right": 3080, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729513f.jpg"} -{"rects": [{"solidity": 0.997318865875417, "top": 670, "right": 2725, "bottom": 2090, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704515f.jpg"} -{"rects": [{"solidity": 0.997318930806423, "top": 245, "right": 3175, "bottom": 1870, "left": 770}, {"solidity": 0.9946238305613305, "top": 2000, "right": 3205, "bottom": 3615, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709636f.jpg"} -{"rects": [{"solidity": 0.997319024668202, "top": 965, "right": 3550, "bottom": 5075, "left": 315}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714462f.jpg"} -{"rects": [{"solidity": 0.9973192352184255, "top": 705, "right": 3900, "bottom": 3115, "left": 2290}, {"solidity": 0.9973232407416486, "top": 705, "right": 2050, "bottom": 3100, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712027f.jpg"} -{"rects": [{"solidity": 0.997319346942471, "top": 355, "right": 3155, "bottom": 1965, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719735f.jpg"} -{"rects": [{"solidity": 0.9973193963738298, "top": 580, "right": 2450, "bottom": 2060, "left": 365}, {"solidity": 0.9983357245337159, "top": 2460, "right": 2445, "bottom": 3935, "left": 360}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716048f.jpg"} -{"rects": [{"solidity": 0.9973194230806361, "top": 760, "right": 2045, "bottom": 3180, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714259f.jpg"} -{"rects": [{"solidity": 0.9973195270617611, "top": 955, "right": 2715, "bottom": 2015, "left": 1090}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509579.jpg"} -{"rects": [{"solidity": 0.9973196881091618, "top": 470, "right": 3165, "bottom": 2085, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703875f.jpg"} -{"rects": [{"solidity": 0.9973197069235968, "top": 515, "right": 5015, "bottom": 3570, "left": 1120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708511f.jpg"} -{"rects": [{"solidity": 0.997319876144336, "top": 420, "right": 3210, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704655f.jpg"} -{"rects": [{"solidity": 0.9973199372942266, "top": 655, "right": 3370, "bottom": 2285, "left": 950}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700472f.jpg"} -{"rects": [{"solidity": 0.9973201021468312, "top": 640, "right": 2625, "bottom": 2070, "left": 805}, {"solidity": 0.9956536974952536, "top": 2135, "right": 2605, "bottom": 3485, "left": 820}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702665f.jpg"} -{"rects": [{"solidity": 0.9973201242224007, "top": 4085, "right": 3135, "bottom": 5700, "left": 715}, {"solidity": 0.9967380270397838, "top": 2245, "right": 3135, "bottom": 3855, "left": 715}, {"solidity": 0.9975879207747221, "top": 365, "right": 3135, "bottom": 1975, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733664f.jpg"} -{"rects": [{"solidity": 0.9973201574407503, "top": 895, "right": 3960, "bottom": 3305, "left": 2335}, {"solidity": 0.997522143410815, "top": 895, "right": 2075, "bottom": 3290, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717478f.jpg"} -{"rects": [{"solidity": 0.9973202811878427, "top": 770, "right": 3860, "bottom": 3165, "left": 2275}, {"solidity": 0.9982555589410138, "top": 780, "right": 2010, "bottom": 3160, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711855f.jpg"} -{"rects": [{"solidity": 0.9973203557631228, "top": 475, "right": 5165, "bottom": 3770, "left": 1115}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714496f.jpg"} -{"rects": [{"solidity": 0.997320393051502, "top": 500, "right": 3310, "bottom": 2130, "left": 880}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704004f.jpg"} -{"rects": [{"solidity": 0.9973204257228755, "top": 415, "right": 3585, "bottom": 2215, "left": 890}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711229f.jpg"} -{"rects": [{"solidity": 0.997320435066874, "top": 415, "right": 5150, "bottom": 3655, "left": 1085}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708449f.jpg"} -{"rects": [{"solidity": 0.99732057847199, "top": 390, "right": 3195, "bottom": 2015, "left": 780}, {"solidity": 0.9968549409939288, "top": 2260, "right": 3195, "bottom": 3880, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707971f.jpg"} -{"rects": [{"solidity": 0.9973206797367962, "top": 1770, "right": 2835, "bottom": 2945, "left": 925}, {"solidity": 0.9966212398580695, "top": 370, "right": 2840, "bottom": 1535, "left": 915}, {"solidity": 0.9963963963963964, "top": 3185, "right": 2830, "bottom": 4345, "left": 925}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717792f.jpg"} -{"rects": [{"solidity": 0.9973207659910757, "top": 2080, "right": 2730, "bottom": 3500, "left": 885}, {"solidity": 0.9972485223090793, "top": 600, "right": 5235, "bottom": 2030, "left": 3440}, {"solidity": 0.9969703559461089, "top": 620, "right": 2725, "bottom": 2010, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706315f.jpg"} -{"rects": [{"solidity": 0.9973208350271408, "top": 1035, "right": 3535, "bottom": 5110, "left": 305}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714920f.jpg"} -{"rects": [{"solidity": 0.9973210575109491, "top": 795, "right": 5740, "bottom": 3230, "left": 4120}, {"solidity": 0.9967942522069722, "top": 785, "right": 3870, "bottom": 3210, "left": 2255}, {"solidity": 0.9981360701332076, "top": 795, "right": 2015, "bottom": 3205, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734651f.jpg"} -{"rects": [{"solidity": 0.9973212091422954, "top": 2045, "right": 2745, "bottom": 3460, "left": 930}, {"solidity": 0.994935145771424, "top": 670, "right": 5215, "bottom": 2070, "left": 3420}, {"solidity": 0.9974367676931416, "top": 2080, "right": 5210, "bottom": 3475, "left": 3425}, {"solidity": 0.9963710151446227, "top": 660, "right": 2730, "bottom": 2030, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725479f.jpg"} -{"rects": [{"solidity": 0.9973212301966533, "top": 510, "right": 5100, "bottom": 3715, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701837f.jpg"} -{"rects": [{"solidity": 0.9973215939782178, "top": 460, "right": 5105, "bottom": 3680, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731513f.jpg"} -{"rects": [{"solidity": 0.9973216013713401, "top": 790, "right": 2650, "bottom": 3815, "left": 220}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509215.jpg"} -{"rects": [{"solidity": 0.9973218530965265, "top": 440, "right": 3195, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/700843f.jpg"} -{"rects": [{"solidity": 0.9973220285066008, "top": 400, "right": 3200, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710710f.jpg"} -{"rects": [{"solidity": 0.9973220328059038, "top": 2255, "right": 3295, "bottom": 3870, "left": 875}, {"solidity": 0.9975445930970758, "top": 425, "right": 3315, "bottom": 2040, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725687f.jpg"} -{"rects": [{"solidity": 0.9973220548793068, "top": 2365, "right": 2505, "bottom": 3840, "left": 425}, {"solidity": 0.9923810777024804, "top": 625, "right": 2495, "bottom": 2055, "left": 465}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715995f.jpg"} -{"rects": [{"solidity": 0.9973221314543085, "top": 4065, "right": 3165, "bottom": 5680, "left": 750}, {"solidity": 0.9980091913309331, "top": 2270, "right": 3160, "bottom": 3885, "left": 750}, {"solidity": 0.9974598682000932, "top": 505, "right": 3170, "bottom": 2110, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701822f.jpg"} -{"rects": [{"solidity": 0.9973221677764882, "top": 565, "right": 2525, "bottom": 2680, "left": 1015}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509307.jpg"} -{"rects": [{"solidity": 0.99732245314293, "top": 845, "right": 2085, "bottom": 3210, "left": 495}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717380f.jpg"} -{"rects": [{"solidity": 0.9973225211754068, "top": 780, "right": 3870, "bottom": 3215, "left": 2250}, {"solidity": 0.9973468349244856, "top": 785, "right": 2025, "bottom": 3220, "left": 405}, {"solidity": 0.9957721648823643, "top": 775, "right": 5720, "bottom": 3210, "left": 4105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720484f.jpg"} -{"rects": [{"solidity": 0.9973227214139212, "top": 910, "right": 2220, "bottom": 3295, "left": 625}, {"solidity": 0.9963957146839778, "top": 920, "right": 5490, "bottom": 3310, "left": 3900}, {"solidity": 0.9966806045220848, "top": 920, "right": 3855, "bottom": 3290, "left": 2280}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709114f.jpg"} -{"rects": [{"solidity": 0.9973227608914264, "top": 495, "right": 5025, "bottom": 3585, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730104f.jpg"} -{"rects": [{"solidity": 0.997322885640728, "top": 815, "right": 3915, "bottom": 3240, "left": 2295}, {"solidity": 0.9965414797846606, "top": 810, "right": 5765, "bottom": 3235, "left": 4145}, {"solidity": 0.9966667630958924, "top": 820, "right": 2070, "bottom": 3240, "left": 450}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731662f.jpg"} -{"rects": [{"solidity": 0.997323120464022, "top": 735, "right": 5300, "bottom": 3550, "left": 3285}, {"solidity": 0.9967133936989664, "top": 715, "right": 2715, "bottom": 3540, "left": 700}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728712f.jpg"} -{"rects": [{"solidity": 0.9973233473600226, "top": 765, "right": 3845, "bottom": 3185, "left": 2225}, {"solidity": 0.9974648640464893, "top": 785, "right": 2015, "bottom": 3205, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724285f.jpg"} -{"rects": [{"solidity": 0.9973233609166137, "top": 755, "right": 3920, "bottom": 3190, "left": 2295}, {"solidity": 0.9973166139382373, "top": 765, "right": 2070, "bottom": 3195, "left": 450}, {"solidity": 0.9860240692909844, "top": 770, "right": 5755, "bottom": 3170, "left": 4160}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732187f.jpg"} -{"rects": [{"solidity": 0.9973236943336482, "top": 765, "right": 3880, "bottom": 3180, "left": 2260}, {"solidity": 0.9990241308766936, "top": 765, "right": 2025, "bottom": 3175, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718134f.jpg"} -{"rects": [{"solidity": 0.9973237081869905, "top": 825, "right": 2020, "bottom": 3245, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718714f.jpg"} -{"rects": [{"solidity": 0.9973237471512058, "top": 565, "right": 3275, "bottom": 2490, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720287f.jpg"} -{"rects": [{"solidity": 0.9973240071597873, "top": 755, "right": 3330, "bottom": 2760, "left": 520}, {"solidity": 0.996755279145069, "top": 3445, "right": 3300, "bottom": 5455, "left": 520}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734202f.jpg"} -{"rects": [{"solidity": 0.9973240988509365, "top": 1025, "right": 3575, "bottom": 5060, "left": 275}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/714157f.jpg"} -{"rects": [{"solidity": 0.9973242057946562, "top": 825, "right": 2215, "bottom": 3255, "left": 605}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715431f.jpg"} -{"rects": [{"solidity": 0.9973242885548601, "top": 825, "right": 5645, "bottom": 3245, "left": 4015}, {"solidity": 0.9972281149258801, "top": 815, "right": 1960, "bottom": 3240, "left": 340}, {"solidity": 0.998300116664997, "top": 820, "right": 3800, "bottom": 3230, "left": 2185}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709395f.jpg"} -{"rects": [{"solidity": 0.9973243000148829, "top": 735, "right": 3855, "bottom": 3150, "left": 2240}, {"solidity": 0.9965551053274111, "top": 735, "right": 2040, "bottom": 3150, "left": 425}, {"solidity": 0.9964185221931265, "top": 755, "right": 5680, "bottom": 3170, "left": 4065}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730316f.jpg"} -{"rects": [{"solidity": 0.997324717002539, "top": 480, "right": 5125, "bottom": 3740, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722654f.jpg"} -{"rects": [{"solidity": 0.9973248550829359, "top": 805, "right": 1995, "bottom": 3225, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713628f.jpg"} -{"rects": [{"solidity": 0.9973250856808493, "top": 660, "right": 2665, "bottom": 2070, "left": 845}, {"solidity": 0.9963131069049529, "top": 2080, "right": 2645, "bottom": 3490, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704577f.jpg"} -{"rects": [{"solidity": 0.9973253409352981, "top": 485, "right": 5145, "bottom": 3755, "left": 1130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714490f.jpg"} -{"rects": [{"solidity": 0.9973253710439807, "top": 450, "right": 3345, "bottom": 2065, "left": 935}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/703860f.jpg"} -{"rects": [{"solidity": 0.9973253911492981, "top": 2255, "right": 3145, "bottom": 3880, "left": 765}, {"solidity": 0.9883978992454261, "top": 420, "right": 3185, "bottom": 2045, "left": 760}, {"solidity": 0.9999702953631062, "top": 4120, "right": 3140, "bottom": 5730, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710354f.jpg"} -{"rects": [{"solidity": 0.997325835436519, "top": 830, "right": 3895, "bottom": 3255, "left": 2270}, {"solidity": 0.9973775368416933, "top": 850, "right": 2030, "bottom": 3250, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712289f.jpg"} -{"rects": [{"solidity": 0.9973259017027241, "top": 765, "right": 3880, "bottom": 3185, "left": 2260}, {"solidity": 0.9965595997796598, "top": 740, "right": 2005, "bottom": 3160, "left": 385}, {"solidity": 0.9975132593787034, "top": 780, "right": 5745, "bottom": 3190, "left": 4130}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732540f.jpg"} -{"rects": [{"solidity": 0.9973260203300622, "top": 740, "right": 3830, "bottom": 3160, "left": 2225}, {"solidity": 0.9957409453365688, "top": 755, "right": 2050, "bottom": 3145, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723111f.jpg"} -{"rects": [{"solidity": 0.997326134629442, "top": 450, "right": 5680, "bottom": 2075, "left": 3260}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703158f.jpg"} -{"rects": [{"solidity": 0.9973262222656651, "top": 420, "right": 5090, "bottom": 3590, "left": 1190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711484f.jpg"} -{"rects": [{"solidity": 0.9973265898275457, "top": 440, "right": 3165, "bottom": 2060, "left": 745}, {"solidity": 0.9974174915899633, "top": 2315, "right": 3160, "bottom": 3935, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719892f.jpg"} -{"rects": [{"solidity": 0.9973265938175656, "top": 705, "right": 2755, "bottom": 2135, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727707f.jpg"} -{"rects": [{"solidity": 0.9973266992188794, "top": 855, "right": 2000, "bottom": 3255, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729343f.jpg"} -{"rects": [{"solidity": 0.9973271796550834, "top": 900, "right": 3875, "bottom": 3340, "left": 2230}, {"solidity": 0.9972387258467226, "top": 895, "right": 2020, "bottom": 3330, "left": 375}, {"solidity": 0.9965811750557999, "top": 915, "right": 5760, "bottom": 3350, "left": 4115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731165f.jpg"} -{"rects": [{"solidity": 0.9973272181822818, "top": 470, "right": 3250, "bottom": 3865, "left": 635}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714297f.jpg"} -{"rects": [{"solidity": 0.997327226587502, "top": 940, "right": 5725, "bottom": 3355, "left": 4100}, {"solidity": 0.9957691553420843, "top": 930, "right": 3865, "bottom": 3350, "left": 2240}, {"solidity": 0.9974223099239434, "top": 940, "right": 1980, "bottom": 3340, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729114f.jpg"} -{"rects": [{"solidity": 0.9973273799007404, "top": 2255, "right": 3080, "bottom": 3875, "left": 655}, {"solidity": 0.9971123050237447, "top": 360, "right": 3065, "bottom": 1970, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728999f.jpg"} -{"rects": [{"solidity": 0.9973274008157211, "top": 475, "right": 4970, "bottom": 3670, "left": 985}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708414f.jpg"} -{"rects": [{"solidity": 0.9973276271071564, "top": 455, "right": 4985, "bottom": 3700, "left": 970}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717526f.jpg"} -{"rects": [{"solidity": 0.9973276598488146, "top": 775, "right": 3920, "bottom": 3195, "left": 2300}, {"solidity": 0.9972622268301771, "top": 785, "right": 2035, "bottom": 3200, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723360f.jpg"} -{"rects": [{"solidity": 0.997327850649586, "top": 3275, "right": 3175, "bottom": 4870, "left": 780}, {"solidity": 0.9954984473430302, "top": 1270, "right": 3180, "bottom": 2870, "left": 785}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707800f.jpg"} -{"rects": [{"solidity": 0.9973278955954323, "top": 415, "right": 3155, "bottom": 2020, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715249f.jpg"} -{"rects": [{"solidity": 0.9973280965554807, "top": 470, "right": 5095, "bottom": 3745, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714370f.jpg"} -{"rects": [{"solidity": 0.9973281053808352, "top": 475, "right": 3165, "bottom": 2075, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710676f.jpg"} -{"rects": [{"solidity": 0.9973281507838284, "top": 840, "right": 3195, "bottom": 2450, "left": 770}, {"solidity": 0.9963369074765902, "top": 3220, "right": 2900, "bottom": 4630, "left": 1055}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730834f.jpg"} -{"rects": [{"solidity": 0.9973282699826482, "top": 2190, "right": 3200, "bottom": 3820, "left": 785}, {"solidity": 0.9961439713848921, "top": 300, "right": 3195, "bottom": 1930, "left": 805}, {"solidity": 0.99668829613, "top": 4070, "right": 3180, "bottom": 5695, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707072f.jpg"} -{"rects": [{"solidity": 0.9973285028564839, "top": 2195, "right": 2700, "bottom": 3630, "left": 870}, {"solidity": 0.9971335347432024, "top": 720, "right": 2695, "bottom": 2155, "left": 875}, {"solidity": 0.996463354648303, "top": 2185, "right": 5285, "bottom": 3595, "left": 3465}, {"solidity": 0.9978268489309499, "top": 735, "right": 5265, "bottom": 2135, "left": 3465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726296f.jpg"} -{"rects": [{"solidity": 0.9973285057923571, "top": 465, "right": 5075, "bottom": 3610, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731154f.jpg"} -{"rects": [{"solidity": 0.997328661717593, "top": 600, "right": 2650, "bottom": 2040, "left": 840}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705331f.jpg"} -{"rects": [{"solidity": 0.9973287306631394, "top": 2225, "right": 3200, "bottom": 3840, "left": 785}, {"solidity": 0.9971280184946543, "top": 390, "right": 3200, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/712751f.jpg"} -{"rects": [{"solidity": 0.9973287565168018, "top": 260, "right": 3175, "bottom": 1880, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702510f.jpg"} -{"rects": [{"solidity": 0.9973287626189609, "top": 1145, "right": 3510, "bottom": 5025, "left": 375}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713144f.jpg"} -{"rects": [{"solidity": 0.9973291161483043, "top": 865, "right": 2035, "bottom": 3285, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701482f.jpg"} -{"rects": [{"solidity": 0.9973291351912891, "top": 2215, "right": 3080, "bottom": 3845, "left": 665}, {"solidity": 0.9944210201563143, "top": 375, "right": 3075, "bottom": 1995, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723346f.jpg"} -{"rects": [{"solidity": 0.997329498767461, "top": 640, "right": 1995, "bottom": 2490, "left": 900}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714533f.jpg"} -{"rects": [{"solidity": 0.9973295845841531, "top": 1040, "right": 3555, "bottom": 5085, "left": 270}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714500f.jpg"} -{"rects": [{"solidity": 0.9973296641021739, "top": 490, "right": 4835, "bottom": 3525, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730016f.jpg"} -{"rects": [{"solidity": 0.9973299899066363, "top": 2220, "right": 3345, "bottom": 4995, "left": 465}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708947f.jpg"} -{"rects": [{"solidity": 0.9973301300022794, "top": 1195, "right": 3615, "bottom": 5240, "left": 365}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731222f.jpg"} -{"rects": [{"solidity": 0.9973303466687264, "top": 670, "right": 2690, "bottom": 2110, "left": 875}, {"solidity": 0.9936166900202398, "top": 2305, "right": 2705, "bottom": 3750, "left": 900}, {"solidity": 0.9772864753058715, "top": 680, "right": 5015, "bottom": 2075, "left": 3130}, {"solidity": 0.9730674759761886, "top": 2315, "right": 4980, "bottom": 3455, "left": 3135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727397f.jpg"} -{"rects": [{"solidity": 0.9973304065723001, "top": 445, "right": 3140, "bottom": 2060, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713486f.jpg"} -{"rects": [{"solidity": 0.9973308613166685, "top": 760, "right": 2085, "bottom": 3180, "left": 450}, {"solidity": 0.9975388692240237, "top": 755, "right": 3935, "bottom": 3170, "left": 2305}, {"solidity": 0.9967612614644898, "top": 770, "right": 5780, "bottom": 3185, "left": 4160}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733339f.jpg"} -{"rects": [{"solidity": 0.9973309403833321, "top": 825, "right": 2045, "bottom": 3220, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720570f.jpg"} -{"rects": [{"solidity": 0.9973309405334856, "top": 410, "right": 3110, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700299f.jpg"} -{"rects": [{"solidity": 0.9973311047897615, "top": 1100, "right": 3300, "bottom": 5120, "left": 355}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709028f.jpg"} -{"rects": [{"solidity": 0.9973311240061302, "top": 800, "right": 1990, "bottom": 3205, "left": 390}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718315f.jpg"} -{"rects": [{"solidity": 0.9973311723917062, "top": 455, "right": 2825, "bottom": 1870, "left": 985}, {"solidity": 0.9938911559926378, "top": 3965, "right": 2820, "bottom": 5355, "left": 970}, {"solidity": 0.9934332196014439, "top": 2190, "right": 2810, "bottom": 3595, "left": 985}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720691f.jpg"} -{"rects": [{"solidity": 0.9973312951407733, "top": 385, "right": 3025, "bottom": 2015, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729637f.jpg"} -{"rects": [{"solidity": 0.9973314483782794, "top": 325, "right": 3165, "bottom": 1950, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703220f.jpg"} -{"rects": [{"solidity": 0.9973321750067263, "top": 600, "right": 3325, "bottom": 2215, "left": 920}, {"solidity": 0.9957444873244194, "top": 4310, "right": 3320, "bottom": 5935, "left": 900}, {"solidity": 0.9967144748527207, "top": 2520, "right": 3325, "bottom": 4130, "left": 915}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710699f.jpg"} -{"rects": [{"solidity": 0.9973326525153792, "top": 370, "right": 3350, "bottom": 2285, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724837f.jpg"} -{"rects": [{"solidity": 0.9973327338335093, "top": 360, "right": 5055, "bottom": 3630, "left": 980}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733571f.jpg"} -{"rects": [{"solidity": 0.9973327431979128, "top": 655, "right": 2875, "bottom": 2445, "left": 1665}, {"solidity": 0.9800095892105914, "top": 815, "right": 4180, "bottom": 2305, "left": 3075}, {"solidity": 0.9391735359086256, "top": 775, "right": 1455, "bottom": 2260, "left": 345}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716310f.jpg"} -{"rects": [{"solidity": 0.9973327513103541, "top": 820, "right": 2070, "bottom": 3250, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703074f.jpg"} -{"rects": [{"solidity": 0.9973327776620129, "top": 2260, "right": 3205, "bottom": 3890, "left": 790}, {"solidity": 0.9976316599439503, "top": 375, "right": 3205, "bottom": 1990, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732807f.jpg"} -{"rects": [{"solidity": 0.9973327862125564, "top": 2145, "right": 3240, "bottom": 3770, "left": 815}, {"solidity": 0.9976338657404419, "top": 4010, "right": 3260, "bottom": 5620, "left": 840}, {"solidity": 0.996674976537783, "top": 380, "right": 3220, "bottom": 1995, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730766f.jpg"} -{"rects": [{"solidity": 0.9973328709287721, "top": 475, "right": 5085, "bottom": 3700, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725546f.jpg"} -{"rects": [{"solidity": 0.9973332982533949, "top": 510, "right": 5160, "bottom": 3775, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702343f.jpg"} -{"rects": [{"solidity": 0.9973335015806392, "top": 810, "right": 3900, "bottom": 3205, "left": 2315}, {"solidity": 0.9944562998701058, "top": 800, "right": 2040, "bottom": 3210, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704411f.jpg"} -{"rects": [{"solidity": 0.9973335199869342, "top": 780, "right": 2050, "bottom": 3165, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710387f.jpg"} -{"rects": [{"solidity": 0.9973337787953528, "top": 760, "right": 1995, "bottom": 3155, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723734f.jpg"} -{"rects": [{"solidity": 0.9973338033359503, "top": 920, "right": 1965, "bottom": 3340, "left": 340}, {"solidity": 0.9969597642292344, "top": 920, "right": 3820, "bottom": 3345, "left": 2195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731638f.jpg"} -{"rects": [{"solidity": 0.9973339101240883, "top": 740, "right": 2830, "bottom": 3495, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706305f.jpg"} -{"rects": [{"solidity": 0.9973339773459106, "top": 1080, "right": 3540, "bottom": 5170, "left": 300}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709018f.jpg"} -{"rects": [{"solidity": 0.9973343273357378, "top": 545, "right": 2665, "bottom": 3585, "left": 610}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711934f.jpg"} -{"rects": [{"solidity": 0.9973345544860759, "top": 970, "right": 2565, "bottom": 3980, "left": 170}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508321.jpg"} -{"rects": [{"solidity": 0.9973346566932654, "top": 475, "right": 3150, "bottom": 2070, "left": 750}, {"solidity": 0.9952023619141346, "top": 2330, "right": 3140, "bottom": 3915, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719995f.jpg"} -{"rects": [{"solidity": 0.9973348023232117, "top": 770, "right": 2035, "bottom": 3195, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732405f.jpg"} -{"rects": [{"solidity": 0.9973348433770646, "top": 515, "right": 5010, "bottom": 3570, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701373f.jpg"} -{"rects": [{"solidity": 0.9973348476244558, "top": 425, "right": 5095, "bottom": 3705, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716840f.jpg"} -{"rects": [{"solidity": 0.9973352426165079, "top": 490, "right": 5085, "bottom": 3625, "left": 1145}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711461f.jpg"} -{"rects": [{"solidity": 0.9973353071798667, "top": 780, "right": 2020, "bottom": 3150, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713099f.jpg"} -{"rects": [{"solidity": 0.997335436669852, "top": 680, "right": 3280, "bottom": 2555, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713610f.jpg"} -{"rects": [{"solidity": 0.9973358063691595, "top": 570, "right": 3170, "bottom": 2175, "left": 775}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715014f.jpg"} -{"rects": [{"solidity": 0.9973361543755895, "top": 2190, "right": 3270, "bottom": 3825, "left": 850}, {"solidity": 0.9956770770144374, "top": 4060, "right": 3260, "bottom": 5705, "left": 830}, {"solidity": 0.9981988990729723, "top": 380, "right": 3295, "bottom": 1980, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702269f.jpg"} -{"rects": [{"solidity": 0.9973362330217026, "top": 380, "right": 2720, "bottom": 2795, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704508f.jpg"} -{"rects": [{"solidity": 0.9973363292079657, "top": 2115, "right": 3115, "bottom": 3855, "left": 715}, {"solidity": 0.9975145501695071, "top": 4130, "right": 3105, "bottom": 5740, "left": 710}, {"solidity": 0.9945465930437752, "top": 400, "right": 3080, "bottom": 1835, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733867f.jpg"} -{"rects": [{"solidity": 0.997336602688763, "top": 430, "right": 3150, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717601f.jpg"} -{"rects": [{"solidity": 0.9973366745377733, "top": 815, "right": 3875, "bottom": 3245, "left": 2260}, {"solidity": 0.9966007178049063, "top": 820, "right": 2060, "bottom": 3250, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713406f.jpg"} -{"rects": [{"solidity": 0.99733668596329, "top": 815, "right": 3930, "bottom": 3250, "left": 2295}, {"solidity": 0.9978685199777809, "top": 820, "right": 2065, "bottom": 3240, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721760f.jpg"} -{"rects": [{"solidity": 0.9973367042680279, "top": 800, "right": 3875, "bottom": 3220, "left": 2255}, {"solidity": 0.9963236243447724, "top": 800, "right": 5720, "bottom": 3230, "left": 4105}, {"solidity": 0.9968264966287654, "top": 800, "right": 2025, "bottom": 3210, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734205f.jpg"} -{"rects": [{"solidity": 0.9973367518628315, "top": 1285, "right": 5680, "bottom": 2915, "left": 3260}, {"solidity": 0.9966260273314215, "top": 740, "right": 2445, "bottom": 3165, "left": 815}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720239f.jpg"} -{"rects": [{"solidity": 0.9973367845657073, "top": 820, "right": 1990, "bottom": 3230, "left": 380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730216f.jpg"} -{"rects": [{"solidity": 0.9973369182875388, "top": 360, "right": 5230, "bottom": 3600, "left": 1140}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702548f.jpg"} -{"rects": [{"solidity": 0.9973369785991089, "top": 790, "right": 3845, "bottom": 3200, "left": 2220}, {"solidity": 0.9966309980790492, "top": 770, "right": 2035, "bottom": 3180, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721174f.jpg"} -{"rects": [{"solidity": 0.997336983315847, "top": 305, "right": 5230, "bottom": 3625, "left": 1150}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725298f.jpg"} -{"rects": [{"solidity": 0.9973370233585439, "top": 355, "right": 5090, "bottom": 3590, "left": 995}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725785f.jpg"} -{"rects": [{"solidity": 0.9973374448754933, "top": 765, "right": 2055, "bottom": 3155, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712218f.jpg"} -{"rects": [{"solidity": 0.9973374757690548, "top": 2285, "right": 3225, "bottom": 3880, "left": 830}, {"solidity": 0.9951125244456505, "top": 485, "right": 3220, "bottom": 2080, "left": 825}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710695f.jpg"} -{"rects": [{"solidity": 0.9973376456899442, "top": 430, "right": 3170, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713035f.jpg"} -{"rects": [{"solidity": 0.9973376832736919, "top": 850, "right": 2035, "bottom": 3280, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702047f.jpg"} -{"rects": [{"solidity": 0.9973377125803344, "top": 2220, "right": 3275, "bottom": 3855, "left": 830}, {"solidity": 0.9974196515252158, "top": 4055, "right": 3265, "bottom": 5675, "left": 835}, {"solidity": 0.9964333093402107, "top": 420, "right": 3265, "bottom": 2025, "left": 830}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726081f.jpg"} -{"rects": [{"solidity": 0.9973378060791637, "top": 385, "right": 3195, "bottom": 1990, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725790f.jpg"} -{"rects": [{"solidity": 0.9973378742910118, "top": 2265, "right": 3060, "bottom": 3890, "left": 650}, {"solidity": 0.99616948344405, "top": 4125, "right": 3055, "bottom": 5755, "left": 635}, {"solidity": 0.9995824634655532, "top": 410, "right": 3060, "bottom": 2025, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707560f.jpg"} -{"rects": [{"solidity": 0.9973379075027026, "top": 815, "right": 3355, "bottom": 2805, "left": 620}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733055f.jpg"} -{"rects": [{"solidity": 0.9973381107391943, "top": 505, "right": 5185, "bottom": 3725, "left": 1090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705779f.jpg"} -{"rects": [{"solidity": 0.9973383142657016, "top": 445, "right": 3155, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720420f.jpg"} -{"rects": [{"solidity": 0.997338442516965, "top": 900, "right": 3445, "bottom": 3860, "left": 1155}], "shape": {"h": 5980, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465620.jpg"} -{"rects": [{"solidity": 0.9973386088918798, "top": 895, "right": 3335, "bottom": 2725, "left": 1970}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704084f.jpg"} -{"rects": [{"solidity": 0.9973387510304226, "top": 410, "right": 3130, "bottom": 2020, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729885f.jpg"} -{"rects": [{"solidity": 0.9973388356441754, "top": 350, "right": 3040, "bottom": 1975, "left": 620}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707897f.jpg"} -{"rects": [{"solidity": 0.9973390021257972, "top": 385, "right": 2865, "bottom": 1795, "left": 1075}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721003f.jpg"} -{"rects": [{"solidity": 0.9973390679492711, "top": 820, "right": 3880, "bottom": 3225, "left": 2290}, {"solidity": 0.9985239852398524, "top": 830, "right": 2020, "bottom": 3220, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723053f.jpg"} -{"rects": [{"solidity": 0.9973391087132211, "top": 885, "right": 2100, "bottom": 3315, "left": 475}, {"solidity": 0.9918823107779596, "top": 1145, "right": 3905, "bottom": 3045, "left": 2360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709789f.jpg"} -{"rects": [{"solidity": 0.9973391505230002, "top": 470, "right": 3175, "bottom": 2090, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734627f.jpg"} -{"rects": [{"solidity": 0.9973392576593925, "top": 420, "right": 3280, "bottom": 2030, "left": 870}, {"solidity": 0.995244271508863, "top": 4045, "right": 2875, "bottom": 5475, "left": 1030}, {"solidity": 0.9944267357306504, "top": 2330, "right": 2870, "bottom": 3745, "left": 1065}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/702646f.jpg"} -{"rects": [{"solidity": 0.9973393620767481, "top": 550, "right": 5025, "bottom": 3790, "left": 950}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707452f.jpg"} -{"rects": [{"solidity": 0.9973394667763374, "top": 245, "right": 4015, "bottom": 2710, "left": 995}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517031.jpg"} -{"rects": [{"solidity": 0.9973395144533839, "top": 380, "right": 3100, "bottom": 2005, "left": 670}, {"solidity": 0.9995520363011734, "top": 2225, "right": 3110, "bottom": 3840, "left": 695}, {"solidity": 0.9964236606480017, "top": 4065, "right": 3115, "bottom": 5680, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728347f.jpg"} -{"rects": [{"solidity": 0.9973395312619824, "top": 425, "right": 2670, "bottom": 3610, "left": 655}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733100f.jpg"} -{"rects": [{"solidity": 0.997339712793563, "top": 420, "right": 3055, "bottom": 2025, "left": 650}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700242f.jpg"} -{"rects": [{"solidity": 0.9973397603510606, "top": 795, "right": 2015, "bottom": 3200, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714659f.jpg"} -{"rects": [{"solidity": 0.9973399602128031, "top": 760, "right": 2000, "bottom": 3175, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710954f.jpg"} -{"rects": [{"solidity": 0.9973400056453118, "top": 620, "right": 2740, "bottom": 2075, "left": 925}, {"solidity": 0.9795249640124252, "top": 2120, "right": 2745, "bottom": 3590, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707208f.jpg"} -{"rects": [{"solidity": 0.997340055056217, "top": 420, "right": 3205, "bottom": 2015, "left": 820}, {"solidity": 0.9964747551820765, "top": 2310, "right": 3195, "bottom": 3895, "left": 800}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726281f.jpg"} -{"rects": [{"solidity": 0.9973401911798782, "top": 355, "right": 3130, "bottom": 1960, "left": 725}, {"solidity": 0.9980860774402512, "top": 2210, "right": 3130, "bottom": 3810, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713168f.jpg"} -{"rects": [{"solidity": 0.9973402602015896, "top": 3270, "right": 3195, "bottom": 5285, "left": 375}, {"solidity": 0.9968632483202339, "top": 650, "right": 3195, "bottom": 2660, "left": 380}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728711f.jpg"} -{"rects": [{"solidity": 0.9973403985958601, "top": 660, "right": 2515, "bottom": 3730, "left": 475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713640f.jpg"} -{"rects": [{"solidity": 0.9973405113706049, "top": 820, "right": 1925, "bottom": 3230, "left": 305}, {"solidity": 0.9969226288709834, "top": 835, "right": 3780, "bottom": 3245, "left": 2160}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720950f.jpg"} -{"rects": [{"solidity": 0.9973408625464397, "top": 520, "right": 2785, "bottom": 3595, "left": 740}, {"solidity": 0.9966724720030357, "top": 845, "right": 4440, "bottom": 3255, "left": 2825}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715005f.jpg"} -{"rects": [{"solidity": 0.9973409022032059, "top": 780, "right": 1990, "bottom": 3180, "left": 380}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722450f.jpg"} -{"rects": [{"solidity": 0.9973411467731839, "top": 975, "right": 5550, "bottom": 2995, "left": 2495}, {"solidity": 0.9978885694977512, "top": 795, "right": 2060, "bottom": 3205, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715462f.jpg"} -{"rects": [{"solidity": 0.9973413071644243, "top": 970, "right": 3335, "bottom": 4780, "left": 400}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712919f.jpg"} -{"rects": [{"solidity": 0.9973415824834453, "top": 930, "right": 3880, "bottom": 3340, "left": 2255}, {"solidity": 0.996774993798065, "top": 910, "right": 2030, "bottom": 3325, "left": 400}, {"solidity": 0.9970255838668706, "top": 935, "right": 5715, "bottom": 3360, "left": 4105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709527f.jpg"} -{"rects": [{"solidity": 0.9973416843347402, "top": 2270, "right": 3175, "bottom": 3880, "left": 760}, {"solidity": 0.9981036331772645, "top": 4115, "right": 3175, "bottom": 5715, "left": 770}, {"solidity": 0.9983115294179723, "top": 460, "right": 3150, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/731955f.jpg"} -{"rects": [{"solidity": 0.9973419450999875, "top": 300, "right": 3250, "bottom": 2160, "left": 530}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706024f.jpg"} -{"rects": [{"solidity": 0.9973419830043074, "top": 410, "right": 3200, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707653f.jpg"} -{"rects": [{"solidity": 0.9973421209566308, "top": 675, "right": 2335, "bottom": 2045, "left": 545}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704694f.jpg"} -{"rects": [{"solidity": 0.9973421862222049, "top": 900, "right": 2045, "bottom": 3305, "left": 430}, {"solidity": 0.9986026984168248, "top": 905, "right": 3920, "bottom": 3300, "left": 2305}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709396f.jpg"} -{"rects": [{"solidity": 0.9973422549174743, "top": 360, "right": 3070, "bottom": 1975, "left": 650}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728683f.jpg"} -{"rects": [{"solidity": 0.9973422612842566, "top": 405, "right": 5025, "bottom": 3590, "left": 1075}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731399f.jpg"} -{"rects": [{"solidity": 0.9973422986459012, "top": 430, "right": 5550, "bottom": 2020, "left": 3165}, {"solidity": 0.9950666025247582, "top": 2060, "right": 2895, "bottom": 3670, "left": 510}, {"solidity": 0.9951598675121919, "top": 2090, "right": 5550, "bottom": 3670, "left": 3150}, {"solidity": 0.9947489688229667, "top": 495, "right": 2720, "bottom": 1870, "left": 930}], "shape": {"h": 3875, "w": 6045}, "file": "/usr/local/google/home/danvk/milstein/728159f.jpg"} -{"rects": [{"solidity": 0.9973423962608299, "top": 795, "right": 1860, "bottom": 3145, "left": 355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722583f.jpg"} -{"rects": [{"solidity": 0.9973424855105366, "top": 420, "right": 3020, "bottom": 2025, "left": 660}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704775f.jpg"} -{"rects": [{"solidity": 0.997342685331295, "top": 720, "right": 5710, "bottom": 3120, "left": 4110}, {"solidity": 0.9949208967383105, "top": 755, "right": 3865, "bottom": 3135, "left": 2280}, {"solidity": 0.996731905029834, "top": 780, "right": 2010, "bottom": 3150, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710198f.jpg"} -{"rects": [{"solidity": 0.9973429095945119, "top": 410, "right": 3185, "bottom": 2025, "left": 760}, {"solidity": 0.9958526225207126, "top": 2255, "right": 3185, "bottom": 3880, "left": 765}, {"solidity": 0.9947541898353912, "top": 4135, "right": 3155, "bottom": 5755, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730651f.jpg"} -{"rects": [{"solidity": 0.9973431563815587, "top": 2275, "right": 3095, "bottom": 3905, "left": 680}, {"solidity": 0.9966470650578574, "top": 410, "right": 3105, "bottom": 2040, "left": 690}, {"solidity": 0.9978367172183789, "top": 4145, "right": 3090, "bottom": 5765, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734268f.jpg"} -{"rects": [{"solidity": 0.9973431852863224, "top": 775, "right": 2015, "bottom": 3190, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704641f.jpg"} -{"rects": [{"solidity": 0.9973434312300941, "top": 555, "right": 2575, "bottom": 2055, "left": 285}, {"solidity": 0.9974190306518661, "top": 2180, "right": 2340, "bottom": 3400, "left": 530}], "shape": {"h": 4645, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715798f.jpg"} -{"rects": [{"solidity": 0.9973435433606315, "top": 980, "right": 3495, "bottom": 4860, "left": 385}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722284f.jpg"} -{"rects": [{"solidity": 0.9973435743351474, "top": 290, "right": 2180, "bottom": 1195, "left": 775}, {"solidity": 0.9988346807337349, "top": 1350, "right": 2170, "bottom": 2220, "left": 775}], "shape": {"h": 4655, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715786f.jpg"} -{"rects": [{"solidity": 0.9973435995042154, "top": 375, "right": 5015, "bottom": 3655, "left": 990}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730976f.jpg"} -{"rects": [{"solidity": 0.9973437109957564, "top": 800, "right": 2050, "bottom": 3225, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710866f.jpg"} -{"rects": [{"solidity": 0.997343910085703, "top": 525, "right": 4580, "bottom": 3665, "left": 545}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727579f.jpg"} -{"rects": [{"solidity": 0.9973439901025584, "top": 1020, "right": 3540, "bottom": 5030, "left": 335}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721216f.jpg"} -{"rects": [{"solidity": 0.9973440211711236, "top": 3050, "right": 2770, "bottom": 5480, "left": 1145}, {"solidity": 0.9983455485922679, "top": 470, "right": 2775, "bottom": 2890, "left": 1160}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723420f.jpg"} -{"rects": [{"solidity": 0.9973444775333585, "top": 445, "right": 3110, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/701131f.jpg"} -{"rects": [{"solidity": 0.9973447197606254, "top": 295, "right": 3220, "bottom": 2335, "left": 745}], "shape": {"h": 2555, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727190f.jpg"} -{"rects": [{"solidity": 0.9973448262592834, "top": 750, "right": 2040, "bottom": 3175, "left": 420}, {"solidity": 0.99492700002846, "top": 1015, "right": 4175, "bottom": 3305, "left": 2625}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710851f.jpg"} -{"rects": [{"solidity": 0.9973448593258195, "top": 440, "right": 3195, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703112f.jpg"} -{"rects": [{"solidity": 0.9973448675939974, "top": 425, "right": 3275, "bottom": 2055, "left": 845}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727221f.jpg"} -{"rects": [{"solidity": 0.9973452030840155, "top": 2265, "right": 3195, "bottom": 3895, "left": 760}, {"solidity": 0.9985546843424137, "top": 425, "right": 3175, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726813f.jpg"} -{"rects": [{"solidity": 0.9973452855202426, "top": 770, "right": 2025, "bottom": 3180, "left": 420}, {"solidity": 0.998148764863753, "top": 775, "right": 3860, "bottom": 3185, "left": 2260}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722535f.jpg"} -{"rects": [{"solidity": 0.997345359997432, "top": 390, "right": 3135, "bottom": 2015, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701541f.jpg"} -{"rects": [{"solidity": 0.9973454671000775, "top": 785, "right": 2050, "bottom": 3195, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734646f.jpg"} -{"rects": [{"solidity": 0.9973455500125155, "top": 340, "right": 5485, "bottom": 3580, "left": 1450}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717253f.jpg"} -{"rects": [{"solidity": 0.9973456739529283, "top": 500, "right": 3530, "bottom": 2145, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702251f.jpg"} -{"rects": [{"solidity": 0.997345739962847, "top": 735, "right": 1995, "bottom": 3115, "left": 410}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717824f.jpg"} -{"rects": [{"solidity": 0.9973462002412545, "top": 725, "right": 2035, "bottom": 3125, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719654f.jpg"} -{"rects": [{"solidity": 0.9973465821527827, "top": 2330, "right": 3150, "bottom": 3950, "left": 740}, {"solidity": 0.994423033174087, "top": 550, "right": 3140, "bottom": 2140, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718439f.jpg"} -{"rects": [{"solidity": 0.9973467915495764, "top": 390, "right": 3270, "bottom": 3695, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714272f.jpg"} -{"rects": [{"solidity": 0.9973469081023858, "top": 800, "right": 2060, "bottom": 3205, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720174f.jpg"} -{"rects": [{"solidity": 0.9973470136241748, "top": 435, "right": 5705, "bottom": 4060, "left": 1090}], "shape": {"h": 4415, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/708900f.jpg"} -{"rects": [{"solidity": 0.9973471418003724, "top": 775, "right": 3910, "bottom": 3205, "left": 2280}, {"solidity": 0.9971016079634931, "top": 785, "right": 2145, "bottom": 3205, "left": 525}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715294f.jpg"} -{"rects": [{"solidity": 0.9973473059396709, "top": 770, "right": 2050, "bottom": 3170, "left": 450}, {"solidity": 0.9959482712624053, "top": 800, "right": 3925, "bottom": 3195, "left": 2340}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721407f.jpg"} -{"rects": [{"solidity": 0.9973473617645718, "top": 975, "right": 3510, "bottom": 4980, "left": 270}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711764f.jpg"} -{"rects": [{"solidity": 0.9973474045848617, "top": 420, "right": 4955, "bottom": 3690, "left": 890}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717716f.jpg"} -{"rects": [{"solidity": 0.997347488624066, "top": 405, "right": 3140, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724856f.jpg"} -{"rects": [{"solidity": 0.9973476023114691, "top": 825, "right": 3785, "bottom": 3210, "left": 2180}, {"solidity": 0.9790882529861649, "top": 925, "right": 1815, "bottom": 3090, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724825f.jpg"} -{"rects": [{"solidity": 0.9973476668106414, "top": 370, "right": 3150, "bottom": 2000, "left": 730}, {"solidity": 0.9989528795811519, "top": 2240, "right": 3155, "bottom": 3850, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704951f.jpg"} -{"rects": [{"solidity": 0.9973476837333558, "top": 410, "right": 5055, "bottom": 3670, "left": 1025}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710574f.jpg"} -{"rects": [{"solidity": 0.9973478530148224, "top": 310, "right": 5245, "bottom": 3620, "left": 1195}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724191f.jpg"} -{"rects": [{"solidity": 0.9973480192096508, "top": 405, "right": 3205, "bottom": 2005, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710671f.jpg"} -{"rects": [{"solidity": 0.9973481750332277, "top": 310, "right": 3170, "bottom": 1945, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702518f.jpg"} -{"rects": [{"solidity": 0.9973482900488557, "top": 450, "right": 3165, "bottom": 2070, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702712f.jpg"} -{"rects": [{"solidity": 0.9973484238986328, "top": 975, "right": 3215, "bottom": 2960, "left": 410}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703579f.jpg"} -{"rects": [{"solidity": 0.997348488784066, "top": 655, "right": 3415, "bottom": 2655, "left": 370}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719198f.jpg"} -{"rects": [{"solidity": 0.9973486182834786, "top": 1075, "right": 3615, "bottom": 5185, "left": 325}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/730092f.jpg"} -{"rects": [{"solidity": 0.9973486393566808, "top": 405, "right": 5085, "bottom": 3645, "left": 1090}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717631f.jpg"} -{"rects": [{"solidity": 0.9973486669554414, "top": 915, "right": 3515, "bottom": 5000, "left": 285}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724820f.jpg"} -{"rects": [{"solidity": 0.997348927374732, "top": 380, "right": 3125, "bottom": 2000, "left": 700}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700205f.jpg"} -{"rects": [{"solidity": 0.9973489638245434, "top": 490, "right": 3245, "bottom": 2055, "left": 870}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724887f.jpg"} -{"rects": [{"solidity": 0.9973492638657657, "top": 760, "right": 2015, "bottom": 3165, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721817f.jpg"} -{"rects": [{"solidity": 0.9973493929565006, "top": 380, "right": 3200, "bottom": 2000, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705108f.jpg"} -{"rects": [{"solidity": 0.9973497935248228, "top": 320, "right": 2885, "bottom": 1760, "left": 1070}, {"solidity": 0.9974121532237039, "top": 2045, "right": 2895, "bottom": 3480, "left": 1075}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707708f.jpg"} -{"rects": [{"solidity": 0.9973498405357479, "top": 455, "right": 3200, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734698f.jpg"} -{"rects": [{"solidity": 0.9973498764717164, "top": 450, "right": 5070, "bottom": 3745, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718936f.jpg"} -{"rects": [{"solidity": 0.9973502025271516, "top": 405, "right": 3295, "bottom": 2015, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725971f.jpg"} -{"rects": [{"solidity": 0.9973503576057217, "top": 535, "right": 3050, "bottom": 2165, "left": 630}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720563f.jpg"} -{"rects": [{"solidity": 0.9973504438251619, "top": 800, "right": 2110, "bottom": 3210, "left": 510}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715723f.jpg"} -{"rects": [{"solidity": 0.9973505504681551, "top": 820, "right": 3885, "bottom": 3235, "left": 2265}, {"solidity": 0.9975314801076819, "top": 820, "right": 2065, "bottom": 3225, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731590f.jpg"} -{"rects": [{"solidity": 0.9973506824507864, "top": 485, "right": 3550, "bottom": 2290, "left": 850}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/702202f.jpg"} -{"rects": [{"solidity": 0.9973507894711522, "top": 780, "right": 2115, "bottom": 3205, "left": 495}, {"solidity": 0.9957403878488958, "top": 790, "right": 3940, "bottom": 3220, "left": 2310}, {"solidity": 0.9968630602661862, "top": 795, "right": 5735, "bottom": 3210, "left": 4125}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716593f.jpg"} -{"rects": [{"solidity": 0.9973511908849573, "top": 405, "right": 5330, "bottom": 3615, "left": 1325}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708067f.jpg"} -{"rects": [{"solidity": 0.9973512205347105, "top": 760, "right": 3870, "bottom": 3195, "left": 2240}, {"solidity": 0.9985558269174607, "top": 750, "right": 2030, "bottom": 3170, "left": 410}, {"solidity": 0.9987821219356228, "top": 765, "right": 5695, "bottom": 3190, "left": 4080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711578f.jpg"} -{"rects": [{"solidity": 0.9973517826868411, "top": 805, "right": 2035, "bottom": 3230, "left": 405}, {"solidity": 0.9978864965647588, "top": 805, "right": 3860, "bottom": 3230, "left": 2235}, {"solidity": 0.9983983899774804, "top": 820, "right": 5685, "bottom": 3235, "left": 4075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705388f.jpg"} -{"rects": [{"solidity": 0.9973518041237114, "top": 875, "right": 5825, "bottom": 3290, "left": 4205}, {"solidity": 0.9978762126114826, "top": 865, "right": 2065, "bottom": 3270, "left": 445}, {"solidity": 0.9974021013674363, "top": 875, "right": 3895, "bottom": 3245, "left": 2280}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720184f.jpg"} -{"rects": [{"solidity": 0.9973518916368975, "top": 1385, "right": 3635, "bottom": 5455, "left": 390}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718923f.jpg"} -{"rects": [{"solidity": 0.9973519430627019, "top": 440, "right": 3350, "bottom": 2475, "left": 310}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719199f.jpg"} -{"rects": [{"solidity": 0.9973519530147983, "top": 430, "right": 3200, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719405f.jpg"} -{"rects": [{"solidity": 0.997352390710036, "top": 570, "right": 2715, "bottom": 1965, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705459f.jpg"} -{"rects": [{"solidity": 0.9973526187476479, "top": 410, "right": 3195, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/732326f.jpg"} -{"rects": [{"solidity": 0.9973527251073635, "top": 795, "right": 3880, "bottom": 3210, "left": 2270}, {"solidity": 0.9970042601754647, "top": 790, "right": 5790, "bottom": 3205, "left": 4180}, {"solidity": 0.9958566910313043, "top": 795, "right": 1975, "bottom": 3200, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730088f.jpg"} -{"rects": [{"solidity": 0.9973527573068989, "top": 830, "right": 3405, "bottom": 2870, "left": 380}, {"solidity": 0.9971153500204233, "top": 3435, "right": 3400, "bottom": 5400, "left": 370}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715728f.jpg"} -{"rects": [{"solidity": 0.9973527656070966, "top": 500, "right": 4965, "bottom": 3545, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711475f.jpg"} -{"rects": [{"solidity": 0.9973528859051705, "top": 855, "right": 3815, "bottom": 3250, "left": 2190}, {"solidity": 0.9968586251368463, "top": 855, "right": 1950, "bottom": 3260, "left": 340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714225f.jpg"} -{"rects": [{"solidity": 0.9973529883031566, "top": 510, "right": 3140, "bottom": 2135, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701542f.jpg"} -{"rects": [{"solidity": 0.997353029960003, "top": 380, "right": 5085, "bottom": 3660, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720915f.jpg"} -{"rects": [{"solidity": 0.9973531171473017, "top": 2075, "right": 2735, "bottom": 3505, "left": 890}, {"solidity": 0.9981730736956178, "top": 600, "right": 2730, "bottom": 2025, "left": 885}, {"solidity": 0.9973737373737374, "top": 590, "right": 5240, "bottom": 2025, "left": 3410}, {"solidity": 0.9966977289052369, "top": 2065, "right": 5255, "bottom": 3505, "left": 3430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702880f.jpg"} -{"rects": [{"solidity": 0.9973531460413281, "top": 385, "right": 3200, "bottom": 1975, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725114f.jpg"} -{"rects": [{"solidity": 0.9973531929597068, "top": 475, "right": 5085, "bottom": 3680, "left": 1045}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709187f.jpg"} -{"rects": [{"solidity": 0.9973534484977988, "top": 355, "right": 3595, "bottom": 2165, "left": 890}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711186f.jpg"} -{"rects": [{"solidity": 0.9973535800272166, "top": 2280, "right": 3215, "bottom": 3880, "left": 810}, {"solidity": 0.9960106513966004, "top": 460, "right": 3220, "bottom": 2055, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710200f.jpg"} -{"rects": [{"solidity": 0.9973536052616331, "top": 365, "right": 5115, "bottom": 3620, "left": 1045}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730826f.jpg"} -{"rects": [{"solidity": 0.9973536918751539, "top": 780, "right": 2035, "bottom": 3195, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712525f.jpg"} -{"rects": [{"solidity": 0.9973537402935644, "top": 2265, "right": 3135, "bottom": 3885, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705836f.jpg"} -{"rects": [{"solidity": 0.997353983669735, "top": 830, "right": 2055, "bottom": 3230, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711732f.jpg"} -{"rects": [{"solidity": 0.9973541532768342, "top": 1335, "right": 3605, "bottom": 5390, "left": 290}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/701211f.jpg"} -{"rects": [{"solidity": 0.9973541930288738, "top": 790, "right": 2020, "bottom": 3210, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707073f.jpg"} -{"rects": [{"solidity": 0.997354360453834, "top": 810, "right": 3880, "bottom": 3225, "left": 2265}, {"solidity": 0.9956220275020679, "top": 790, "right": 5670, "bottom": 3215, "left": 4045}, {"solidity": 0.9989879396137303, "top": 815, "right": 2075, "bottom": 3230, "left": 470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731654f.jpg"} -{"rects": [{"solidity": 0.9973543621073081, "top": 905, "right": 3870, "bottom": 3325, "left": 2240}, {"solidity": 0.9978917099715027, "top": 905, "right": 1995, "bottom": 3330, "left": 385}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706658f.jpg"} -{"rects": [{"solidity": 0.9973544041483968, "top": 780, "right": 3845, "bottom": 3200, "left": 2220}, {"solidity": 0.9976522504351848, "top": 775, "right": 2005, "bottom": 3190, "left": 380}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732484f.jpg"} -{"rects": [{"solidity": 0.9973545738871049, "top": 760, "right": 2025, "bottom": 3180, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728658f.jpg"} -{"rects": [{"solidity": 0.9973549191021691, "top": 910, "right": 2030, "bottom": 3325, "left": 425}, {"solidity": 0.9952648422702632, "top": 920, "right": 3925, "bottom": 3330, "left": 2315}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729334f.jpg"} -{"rects": [{"solidity": 0.9973553195775418, "top": 380, "right": 5270, "bottom": 3625, "left": 1200}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732608f.jpg"} -{"rects": [{"solidity": 0.9973555528444293, "top": 2225, "right": 3185, "bottom": 3820, "left": 795}, {"solidity": 0.9979505961451375, "top": 385, "right": 3195, "bottom": 1975, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732137f.jpg"} -{"rects": [{"solidity": 0.9973555885229216, "top": 775, "right": 1990, "bottom": 3160, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713776f.jpg"} -{"rects": [{"solidity": 0.9973556142469555, "top": 785, "right": 2065, "bottom": 3180, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724257f.jpg"} -{"rects": [{"solidity": 0.9973556548488118, "top": 410, "right": 5120, "bottom": 3670, "left": 1080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732645f.jpg"} -{"rects": [{"solidity": 0.9973557407154365, "top": 1065, "right": 3995, "bottom": 5715, "left": 385}], "shape": {"h": 6860, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708830f.jpg"} -{"rects": [{"solidity": 0.9973561001422606, "top": 410, "right": 5765, "bottom": 3635, "left": 3720}, {"solidity": 0.9975012725001157, "top": 380, "right": 3160, "bottom": 3610, "left": 1135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702494f.jpg"} -{"rects": [{"solidity": 0.9973561944752241, "top": 800, "right": 2015, "bottom": 3225, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727011f.jpg"} -{"rects": [{"solidity": 0.9973566438069481, "top": 580, "right": 5350, "bottom": 2200, "left": 2935}, {"solidity": 0.9935254045992301, "top": 710, "right": 2740, "bottom": 2075, "left": 885}, {"solidity": 0.9946912660277, "top": 2090, "right": 2705, "bottom": 3470, "left": 915}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707085f.jpg"} -{"rects": [{"solidity": 0.9973567631897196, "top": 2280, "right": 3180, "bottom": 3895, "left": 745}, {"solidity": 0.9991080341329899, "top": 445, "right": 3190, "bottom": 2055, "left": 765}, {"solidity": 0.9946928413188661, "top": 4120, "right": 3170, "bottom": 5735, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722823f.jpg"} -{"rects": [{"solidity": 0.9973567965383939, "top": 1100, "right": 3540, "bottom": 5145, "left": 340}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709194f.jpg"} -{"rects": [{"solidity": 0.997356894481863, "top": 735, "right": 2005, "bottom": 3140, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718778f.jpg"} -{"rects": [{"solidity": 0.9973569161569666, "top": 815, "right": 2255, "bottom": 3495, "left": 470}], "shape": {"h": 4410, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711681f.jpg"} -{"rects": [{"solidity": 0.9973569182465268, "top": 855, "right": 5480, "bottom": 2505, "left": 670}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720225f.jpg"} -{"rects": [{"solidity": 0.9973569363652589, "top": 540, "right": 4885, "bottom": 3495, "left": 1145}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709842f.jpg"} -{"rects": [{"solidity": 0.997357032710573, "top": 385, "right": 5005, "bottom": 3640, "left": 995}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722199f.jpg"} -{"rects": [{"solidity": 0.997357043009005, "top": 805, "right": 3890, "bottom": 3215, "left": 2285}, {"solidity": 0.9961830190097418, "top": 800, "right": 2060, "bottom": 3210, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718388f.jpg"} -{"rects": [{"solidity": 0.9973571623474576, "top": 930, "right": 2695, "bottom": 3950, "left": 265}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516873.jpg"} -{"rects": [{"solidity": 0.9973572989114361, "top": 2260, "right": 3255, "bottom": 3895, "left": 830}, {"solidity": 0.998591164219431, "top": 410, "right": 3250, "bottom": 2030, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705793f.jpg"} -{"rects": [{"solidity": 0.9973573193515338, "top": 950, "right": 4970, "bottom": 3370, "left": 1525}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723204f.jpg"} -{"rects": [{"solidity": 0.9973573954489545, "top": 420, "right": 3215, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703630f.jpg"} -{"rects": [{"solidity": 0.9973574191757693, "top": 555, "right": 4985, "bottom": 3810, "left": 955}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701448f.jpg"} -{"rects": [{"solidity": 0.9973575895082147, "top": 480, "right": 5020, "bottom": 3685, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700543f.jpg"} -{"rects": [{"solidity": 0.9973577392723207, "top": 425, "right": 3195, "bottom": 2005, "left": 820}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710362f.jpg"} -{"rects": [{"solidity": 0.9973581612262984, "top": 835, "right": 2100, "bottom": 3210, "left": 525}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713831f.jpg"} -{"rects": [{"solidity": 0.9973581999668464, "top": 550, "right": 3260, "bottom": 2525, "left": 215}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715676f.jpg"} -{"rects": [{"solidity": 0.9973582281293164, "top": 520, "right": 3060, "bottom": 1955, "left": 1240}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726763f.jpg"} -{"rects": [{"solidity": 0.9973582383113294, "top": 805, "right": 3880, "bottom": 3225, "left": 2255}, {"solidity": 0.9966565212344756, "top": 805, "right": 5725, "bottom": 3235, "left": 4105}, {"solidity": 0.9982000705727725, "top": 810, "right": 2040, "bottom": 3225, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713523f.jpg"} -{"rects": [{"solidity": 0.9973584843027743, "top": 365, "right": 3370, "bottom": 5795, "left": 575}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711967f.jpg"} -{"rects": [{"solidity": 0.9973584934891899, "top": 430, "right": 3020, "bottom": 2070, "left": 1035}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734184f.jpg"} -{"rects": [{"solidity": 0.9973585825356259, "top": 415, "right": 5090, "bottom": 3645, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721501f.jpg"} -{"rects": [{"solidity": 0.9973586214272518, "top": 785, "right": 1935, "bottom": 3200, "left": 325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714239f.jpg"} -{"rects": [{"solidity": 0.9973587134066825, "top": 495, "right": 5180, "bottom": 3800, "left": 1145}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712451f.jpg"} -{"rects": [{"solidity": 0.9973589299406469, "top": 675, "right": 3330, "bottom": 2705, "left": 485}, {"solidity": 0.9966890472717046, "top": 3275, "right": 3320, "bottom": 5305, "left": 480}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729014f.jpg"} -{"rects": [{"solidity": 0.9973594281304853, "top": 750, "right": 2695, "bottom": 3760, "left": 230}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507566.jpg"} -{"rects": [{"solidity": 0.9973598524340365, "top": 405, "right": 3220, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701172f.jpg"} -{"rects": [{"solidity": 0.9973598633802909, "top": 430, "right": 3170, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/702119f.jpg"} -{"rects": [{"solidity": 0.9973601900392074, "top": 800, "right": 2005, "bottom": 3165, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717668f.jpg"} -{"rects": [{"solidity": 0.9973604100034681, "top": 2155, "right": 3160, "bottom": 3780, "left": 745}, {"solidity": 0.9964153396165096, "top": 305, "right": 3165, "bottom": 1920, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707681f.jpg"} -{"rects": [{"solidity": 0.9973604314354627, "top": 595, "right": 2540, "bottom": 2095, "left": 250}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715768f.jpg"} -{"rects": [{"solidity": 0.997360434161962, "top": 790, "right": 5710, "bottom": 3215, "left": 4095}, {"solidity": 0.9964954472966716, "top": 780, "right": 3845, "bottom": 3205, "left": 2225}, {"solidity": 0.9979988528045063, "top": 780, "right": 1985, "bottom": 3205, "left": 375}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728220f.jpg"} -{"rects": [{"solidity": 0.9973604899550186, "top": 385, "right": 3240, "bottom": 2000, "left": 820}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727495f.jpg"} -{"rects": [{"solidity": 0.9973606354116795, "top": 3250, "right": 3680, "bottom": 5900, "left": 185}, {"solidity": 0.9977250075536859, "top": 280, "right": 3680, "bottom": 2955, "left": 245}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/730744f.jpg"} -{"rects": [{"solidity": 0.9973606547152035, "top": 425, "right": 3135, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715404f.jpg"} -{"rects": [{"solidity": 0.9973607297510907, "top": 1050, "right": 3515, "bottom": 5085, "left": 245}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714870f.jpg"} -{"rects": [{"solidity": 0.9973609392686972, "top": 800, "right": 2050, "bottom": 3200, "left": 455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710991f.jpg"} -{"rects": [{"solidity": 0.9973610028189288, "top": 640, "right": 2400, "bottom": 3700, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712509f.jpg"} -{"rects": [{"solidity": 0.9973610190328457, "top": 790, "right": 3835, "bottom": 3210, "left": 2220}, {"solidity": 0.9986895239574435, "top": 795, "right": 2020, "bottom": 3210, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707732f.jpg"} -{"rects": [{"solidity": 0.9973610222894667, "top": 1010, "right": 3470, "bottom": 5010, "left": 245}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709428f.jpg"} -{"rects": [{"solidity": 0.9973611959991074, "top": 435, "right": 3170, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706294f.jpg"} -{"rects": [{"solidity": 0.9973614026228163, "top": 815, "right": 3895, "bottom": 3255, "left": 2255}, {"solidity": 0.9966713076319874, "top": 800, "right": 2045, "bottom": 3230, "left": 410}, {"solidity": 0.9958326758150274, "top": 835, "right": 5735, "bottom": 3260, "left": 4115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703334f.jpg"} -{"rects": [{"solidity": 0.9973615414407436, "top": 685, "right": 2775, "bottom": 2105, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705680f.jpg"} -{"rects": [{"solidity": 0.9973621469112989, "top": 535, "right": 2725, "bottom": 3595, "left": 725}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715639f.jpg"} -{"rects": [{"solidity": 0.9973627403735073, "top": 390, "right": 3285, "bottom": 1975, "left": 880}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726475f.jpg"} -{"rects": [{"solidity": 0.9973627790763279, "top": 815, "right": 2040, "bottom": 3235, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714675f.jpg"} -{"rects": [{"solidity": 0.9973627963565815, "top": 860, "right": 1965, "bottom": 3255, "left": 365}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722737f.jpg"} -{"rects": [{"solidity": 0.9973630768593158, "top": 350, "right": 3870, "bottom": 2750, "left": 835}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715888f.jpg"} -{"rects": [{"solidity": 0.9973633545439713, "top": 820, "right": 4015, "bottom": 3225, "left": 2410}, {"solidity": 0.9969516117857814, "top": 830, "right": 2145, "bottom": 3225, "left": 550}, {"solidity": 0.9953719784709334, "top": 815, "right": 5850, "bottom": 3210, "left": 4250}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731952f.jpg"} -{"rects": [{"solidity": 0.9973634512127384, "top": 675, "right": 2760, "bottom": 3415, "left": 900}, {"solidity": 0.9957925827545451, "top": 705, "right": 5070, "bottom": 3445, "left": 3215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728268f.jpg"} -{"rects": [{"solidity": 0.9973635500329958, "top": 795, "right": 2025, "bottom": 3210, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719997f.jpg"} -{"rects": [{"solidity": 0.9973636041424916, "top": 590, "right": 2705, "bottom": 2010, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703388f.jpg"} -{"rects": [{"solidity": 0.9973636269244202, "top": 290, "right": 5205, "bottom": 3570, "left": 1090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726749f.jpg"} -{"rects": [{"solidity": 0.9973639089679968, "top": 775, "right": 2655, "bottom": 3765, "left": 425}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508857.jpg"} -{"rects": [{"solidity": 0.9973641840244146, "top": 400, "right": 3155, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700865f.jpg"} -{"rects": [{"solidity": 0.9973643559524634, "top": 470, "right": 5100, "bottom": 3775, "left": 1060}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712410f.jpg"} -{"rects": [{"solidity": 0.9973644300295934, "top": 380, "right": 5925, "bottom": 3625, "left": 3855}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724959f.jpg"} -{"rects": [{"solidity": 0.9973647330199623, "top": 470, "right": 3190, "bottom": 2050, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718986f.jpg"} -{"rects": [{"solidity": 0.9973650520993697, "top": 445, "right": 3100, "bottom": 2065, "left": 695}, {"solidity": 0.9972289878479232, "top": 2335, "right": 3095, "bottom": 3945, "left": 695}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/719095f.jpg"} -{"rects": [{"solidity": 0.9973653573194265, "top": 1025, "right": 3885, "bottom": 3450, "left": 2255}, {"solidity": 0.9965104925327741, "top": 1030, "right": 2020, "bottom": 3460, "left": 400}, {"solidity": 0.9975723244992919, "top": 1030, "right": 5730, "bottom": 3450, "left": 4110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701032f.jpg"} -{"rects": [{"solidity": 0.9973653663053828, "top": 765, "right": 3865, "bottom": 3170, "left": 2260}, {"solidity": 0.9946773603136861, "top": 770, "right": 5715, "bottom": 3170, "left": 4115}, {"solidity": 0.9974233410677488, "top": 780, "right": 2010, "bottom": 3175, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724562f.jpg"} -{"rects": [{"solidity": 0.9973655272765931, "top": 755, "right": 2035, "bottom": 3140, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713289f.jpg"} -{"rects": [{"solidity": 0.9973657436508914, "top": 445, "right": 3160, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720694f.jpg"} -{"rects": [{"solidity": 0.9973657723137023, "top": 405, "right": 3155, "bottom": 1995, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728036f.jpg"} -{"rects": [{"solidity": 0.9973658798012023, "top": 365, "right": 3315, "bottom": 2240, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713589f.jpg"} -{"rects": [{"solidity": 0.9973659582912671, "top": 510, "right": 5205, "bottom": 3575, "left": 1365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723006f.jpg"} -{"rects": [{"solidity": 0.997366059424032, "top": 750, "right": 2135, "bottom": 3160, "left": 520}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710915f.jpg"} -{"rects": [{"solidity": 0.9973660645461792, "top": 735, "right": 3790, "bottom": 3135, "left": 2190}, {"solidity": 0.9969927953078324, "top": 745, "right": 1990, "bottom": 3130, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712141f.jpg"} -{"rects": [{"solidity": 0.99736609326896, "top": 625, "right": 2600, "bottom": 2035, "left": 790}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704151f.jpg"} -{"rects": [{"solidity": 0.9973661687689769, "top": 2510, "right": 3600, "bottom": 4325, "left": 880}, {"solidity": 0.9961645227332201, "top": 470, "right": 3605, "bottom": 2285, "left": 895}], "shape": {"h": 6890, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711259f.jpg"} -{"rects": [{"solidity": 0.9973664993606244, "top": 2175, "right": 3315, "bottom": 3770, "left": 925}, {"solidity": 0.9934085747643984, "top": 455, "right": 3045, "bottom": 1880, "left": 1235}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727910f.jpg"} -{"rects": [{"solidity": 0.9973666627363126, "top": 820, "right": 3660, "bottom": 3185, "left": 2030}, {"solidity": 0.9978972602171587, "top": 900, "right": 1855, "bottom": 3085, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719619f.jpg"} -{"rects": [{"solidity": 0.9973666864733406, "top": 440, "right": 3160, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733987f.jpg"} -{"rects": [{"solidity": 0.9973668250277974, "top": 700, "right": 2560, "bottom": 2105, "left": 780}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725576f.jpg"} -{"rects": [{"solidity": 0.9973669392254677, "top": 490, "right": 2460, "bottom": 2035, "left": 1430}, {"solidity": 0.9957195044472681, "top": 490, "right": 1310, "bottom": 2030, "left": 275}, {"solidity": 0.9968581507284109, "top": 500, "right": 3615, "bottom": 2035, "left": 2590}], "shape": {"h": 2540, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/719263f.jpg"} -{"rects": [{"solidity": 0.9973669860056597, "top": 805, "right": 2020, "bottom": 3230, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701342f.jpg"} -{"rects": [{"solidity": 0.997367030370854, "top": 445, "right": 3130, "bottom": 2135, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701795f.jpg"} -{"rects": [{"solidity": 0.997367479425446, "top": 2180, "right": 3110, "bottom": 3810, "left": 690}, {"solidity": 0.9988572061131333, "top": 4040, "right": 3090, "bottom": 5660, "left": 705}, {"solidity": 0.9969166484685912, "top": 315, "right": 3100, "bottom": 1940, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731098f.jpg"} -{"rects": [{"solidity": 0.9973675529458336, "top": 400, "right": 3125, "bottom": 1995, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724069f.jpg"} -{"rects": [{"solidity": 0.9973676324080899, "top": 2460, "right": 2505, "bottom": 3950, "left": 415}, {"solidity": 0.9977100166470421, "top": 645, "right": 2500, "bottom": 2130, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716026f.jpg"} -{"rects": [{"solidity": 0.997367904478243, "top": 1065, "right": 3625, "bottom": 5120, "left": 270}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725755f.jpg"} -{"rects": [{"solidity": 0.9973679774916696, "top": 420, "right": 3205, "bottom": 2035, "left": 795}, {"solidity": 0.9984103046208886, "top": 4020, "right": 3200, "bottom": 5625, "left": 800}, {"solidity": 0.9976232798737742, "top": 2225, "right": 3190, "bottom": 3810, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720085f.jpg"} -{"rects": [{"solidity": 0.9973681685907071, "top": 315, "right": 3145, "bottom": 1945, "left": 725}, {"solidity": 0.9996691337085293, "top": 2175, "right": 3150, "bottom": 3795, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702558f.jpg"} -{"rects": [{"solidity": 0.9973682248806464, "top": 795, "right": 1970, "bottom": 3200, "left": 345}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701722f.jpg"} -{"rects": [{"solidity": 0.9973685212326551, "top": 775, "right": 5865, "bottom": 3545, "left": 3955}, {"solidity": 0.9966763579543272, "top": 770, "right": 3885, "bottom": 3195, "left": 2260}, {"solidity": 0.9971517515759016, "top": 785, "right": 2050, "bottom": 3200, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704831f.jpg"} -{"rects": [{"solidity": 0.9973686411508496, "top": 2220, "right": 3085, "bottom": 3840, "left": 665}, {"solidity": 0.9960168342687494, "top": 380, "right": 3100, "bottom": 2005, "left": 670}, {"solidity": 0.9973722921000279, "top": 4085, "right": 3080, "bottom": 5695, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726623f.jpg"} -{"rects": [{"solidity": 0.9973688211922281, "top": 2240, "right": 3180, "bottom": 3830, "left": 780}, {"solidity": 0.996160996124018, "top": 415, "right": 3180, "bottom": 2000, "left": 795}, {"solidity": 0.9698834358897394, "top": 4815, "right": 3055, "bottom": 5580, "left": 855}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731552f.jpg"} -{"rects": [{"solidity": 0.9973688298574702, "top": 760, "right": 3875, "bottom": 3170, "left": 2255}, {"solidity": 0.9975858770554207, "top": 775, "right": 5705, "bottom": 3180, "left": 4090}, {"solidity": 0.998522420870887, "top": 765, "right": 2035, "bottom": 3165, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731829f.jpg"} -{"rects": [{"solidity": 0.9973689058979821, "top": 455, "right": 3130, "bottom": 2065, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707445f.jpg"} -{"rects": [{"solidity": 0.9973690413245252, "top": 395, "right": 3000, "bottom": 2030, "left": 580}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706740f.jpg"} -{"rects": [{"solidity": 0.9973694185730361, "top": 480, "right": 5290, "bottom": 3400, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716930f.jpg"} -{"rects": [{"solidity": 0.9973696491451359, "top": 375, "right": 3045, "bottom": 1990, "left": 655}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702291f.jpg"} -{"rects": [{"solidity": 0.997369750126262, "top": 675, "right": 2770, "bottom": 2080, "left": 975}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705605f.jpg"} -{"rects": [{"solidity": 0.9973697848567693, "top": 960, "right": 3560, "bottom": 5030, "left": 290}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723845f.jpg"} -{"rects": [{"solidity": 0.997370184952968, "top": 810, "right": 2025, "bottom": 3235, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705049f.jpg"} -{"rects": [{"solidity": 0.9973702952939243, "top": 450, "right": 3165, "bottom": 2065, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701057f.jpg"} -{"rects": [{"solidity": 0.9973704400336584, "top": 435, "right": 3120, "bottom": 3720, "left": 595}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714792f.jpg"} -{"rects": [{"solidity": 0.9973704477402947, "top": 960, "right": 2640, "bottom": 4115, "left": 195}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508761.jpg"} -{"rects": [{"solidity": 0.9973705952552686, "top": 410, "right": 3310, "bottom": 2000, "left": 895}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725976f.jpg"} -{"rects": [{"solidity": 0.9973709690864438, "top": 370, "right": 3200, "bottom": 2005, "left": 790}, {"solidity": 0.9960563578815177, "top": 2190, "right": 3205, "bottom": 3825, "left": 785}, {"solidity": 0.9971486067713357, "top": 4050, "right": 3200, "bottom": 5675, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734747f.jpg"} -{"rects": [{"solidity": 0.9973710582141416, "top": 520, "right": 3360, "bottom": 2550, "left": 505}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703785f.jpg"} -{"rects": [{"solidity": 0.9973711298001006, "top": 2295, "right": 3265, "bottom": 3995, "left": 725}, {"solidity": 0.9979663328161, "top": 430, "right": 3250, "bottom": 2120, "left": 715}, {"solidity": 0.9971143599506688, "top": 4165, "right": 3260, "bottom": 5810, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724696f.jpg"} -{"rects": [{"solidity": 0.9973713086065854, "top": 355, "right": 5765, "bottom": 4055, "left": 1125}], "shape": {"h": 4415, "w": 6850}, "file": "/usr/local/google/home/danvk/milstein/706396f.jpg"} -{"rects": [{"solidity": 0.997371691673949, "top": 950, "right": 3535, "bottom": 5045, "left": 295}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714187f.jpg"} -{"rects": [{"solidity": 0.9973717014853641, "top": 565, "right": 4875, "bottom": 3230, "left": 1405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704415f.jpg"} -{"rects": [{"solidity": 0.9973717205173419, "top": 845, "right": 2050, "bottom": 3215, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717434f.jpg"} -{"rects": [{"solidity": 0.997371908050401, "top": 610, "right": 4760, "bottom": 3525, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703888f.jpg"} -{"rects": [{"solidity": 0.9973720672270253, "top": 875, "right": 3480, "bottom": 4880, "left": 340}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709029f.jpg"} -{"rects": [{"solidity": 0.9973721427653084, "top": 930, "right": 3540, "bottom": 4935, "left": 315}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713500f.jpg"} -{"rects": [{"solidity": 0.9973723681848652, "top": 885, "right": 5810, "bottom": 3115, "left": 230}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726702f.jpg"} -{"rects": [{"solidity": 0.9973725141295373, "top": 830, "right": 2085, "bottom": 3260, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712742f.jpg"} -{"rects": [{"solidity": 0.9973725932174156, "top": 520, "right": 3355, "bottom": 2450, "left": 590}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/714415f.jpg"} -{"rects": [{"solidity": 0.997372608879218, "top": 410, "right": 3155, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715021f.jpg"} -{"rects": [{"solidity": 0.9973726322296886, "top": 805, "right": 2070, "bottom": 3220, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704453f.jpg"} -{"rects": [{"solidity": 0.9973728382022896, "top": 890, "right": 3670, "bottom": 2965, "left": 410}, {"solidity": 0.9980482960122876, "top": 3435, "right": 3635, "bottom": 5460, "left": 410}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702497f.jpg"} -{"rects": [{"solidity": 0.9973728470352812, "top": 975, "right": 3535, "bottom": 5050, "left": 290}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713514f.jpg"} -{"rects": [{"solidity": 0.9973729383276876, "top": 865, "right": 3785, "bottom": 3270, "left": 2180}, {"solidity": 0.9958080249245345, "top": 880, "right": 1990, "bottom": 3265, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718608f.jpg"} -{"rects": [{"solidity": 0.9973730749867685, "top": 430, "right": 3170, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732069f.jpg"} -{"rects": [{"solidity": 0.997373087823392, "top": 660, "right": 3370, "bottom": 2675, "left": 350}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715479f.jpg"} -{"rects": [{"solidity": 0.9973730923646934, "top": 335, "right": 2685, "bottom": 3520, "left": 675}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733056f.jpg"} -{"rects": [{"solidity": 0.9973734291364863, "top": 665, "right": 5000, "bottom": 3695, "left": 2985}, {"solidity": 0.9987063277634156, "top": 680, "right": 2465, "bottom": 3690, "left": 530}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713674f.jpg"} -{"rects": [{"solidity": 0.997373459627696, "top": 470, "right": 2735, "bottom": 3495, "left": 255}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509171.jpg"} -{"rects": [{"solidity": 0.9973734968388429, "top": 2410, "right": 6045, "bottom": 4235, "left": 3315}, {"solidity": 0.9966950418046892, "top": 520, "right": 6025, "bottom": 2360, "left": 3300}, {"solidity": 0.9976132290958015, "top": 690, "right": 3065, "bottom": 2300, "left": 1005}, {"solidity": 0.9972612458661214, "top": 2370, "right": 3055, "bottom": 3975, "left": 1000}], "shape": {"h": 4435, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/702217f.jpg"} -{"rects": [{"solidity": 0.9973735037779906, "top": 755, "right": 2075, "bottom": 3175, "left": 450}, {"solidity": 0.998599548743484, "top": 750, "right": 3885, "bottom": 3160, "left": 2275}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732272f.jpg"} -{"rects": [{"solidity": 0.9973737247292984, "top": 365, "right": 3315, "bottom": 2245, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713592f.jpg"} -{"rects": [{"solidity": 0.9973737337415497, "top": 1180, "right": 3175, "bottom": 5005, "left": 610}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718350f.jpg"} -{"rects": [{"solidity": 0.9973737670738553, "top": 495, "right": 5040, "bottom": 3770, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708057f.jpg"} -{"rects": [{"solidity": 0.9973743574571946, "top": 435, "right": 2640, "bottom": 3640, "left": 615}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733004f.jpg"} -{"rects": [{"solidity": 0.997374385233856, "top": 2280, "right": 3190, "bottom": 3880, "left": 775}, {"solidity": 0.9961096508190381, "top": 445, "right": 3170, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730980f.jpg"} -{"rects": [{"solidity": 0.9973745041522788, "top": 915, "right": 3505, "bottom": 5290, "left": 545}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/718991f.jpg"} -{"rects": [{"solidity": 0.997374650171318, "top": 805, "right": 1985, "bottom": 3220, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700306f.jpg"} -{"rects": [{"solidity": 0.9973748247679001, "top": 595, "right": 3165, "bottom": 2190, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709263f.jpg"} -{"rects": [{"solidity": 0.9973748781903706, "top": 465, "right": 5110, "bottom": 3715, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709189f.jpg"} -{"rects": [{"solidity": 0.997374940557456, "top": 375, "right": 5225, "bottom": 3595, "left": 1140}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732606f.jpg"} -{"rects": [{"solidity": 0.9973750246708207, "top": 2305, "right": 3200, "bottom": 4070, "left": 665}, {"solidity": 0.996638784611838, "top": 405, "right": 3205, "bottom": 2155, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732583f.jpg"} -{"rects": [{"solidity": 0.9973751592274733, "top": 385, "right": 3220, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725637f.jpg"} -{"rects": [{"solidity": 0.9973751856050325, "top": 425, "right": 3220, "bottom": 2055, "left": 795}, {"solidity": 0.9967721812568979, "top": 2240, "right": 3200, "bottom": 3875, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705142f.jpg"} -{"rects": [{"solidity": 0.997375319568631, "top": 415, "right": 3255, "bottom": 2030, "left": 850}, {"solidity": 0.9971846626678449, "top": 4005, "right": 3895, "bottom": 6010, "left": 3090}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/703361f.jpg"} -{"rects": [{"solidity": 0.9973753706073911, "top": 420, "right": 3050, "bottom": 2030, "left": 635}, {"solidity": 0.9956480574600065, "top": 2280, "right": 3050, "bottom": 3895, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729504f.jpg"} -{"rects": [{"solidity": 0.9973755256311665, "top": 880, "right": 1990, "bottom": 3275, "left": 380}, {"solidity": 0.9902105202624094, "top": 1125, "right": 3790, "bottom": 2975, "left": 2235}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708166f.jpg"} -{"rects": [{"solidity": 0.9973756684537602, "top": 465, "right": 3155, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/701156f.jpg"} -{"rects": [{"solidity": 0.9973760340976733, "top": 375, "right": 3830, "bottom": 2785, "left": 825}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716296f.jpg"} -{"rects": [{"solidity": 0.9973763575160313, "top": 485, "right": 5010, "bottom": 3770, "left": 980}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721897f.jpg"} -{"rects": [{"solidity": 0.9973767051416579, "top": 815, "right": 2080, "bottom": 3215, "left": 490}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711804f.jpg"} -{"rects": [{"solidity": 0.9973768370725591, "top": 630, "right": 4910, "bottom": 3640, "left": 1130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709940f.jpg"} -{"rects": [{"solidity": 0.9973768791099117, "top": 760, "right": 1905, "bottom": 3150, "left": 295}, {"solidity": 0.9922808573406513, "top": 990, "right": 5405, "bottom": 2855, "left": 3900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719270f.jpg"} -{"rects": [{"solidity": 0.9973769408314271, "top": 470, "right": 3600, "bottom": 2270, "left": 895}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/701704f.jpg"} -{"rects": [{"solidity": 0.9973770830523406, "top": 435, "right": 5095, "bottom": 3660, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721518f.jpg"} -{"rects": [{"solidity": 0.9973772154824543, "top": 885, "right": 3845, "bottom": 3310, "left": 2225}, {"solidity": 0.9966695436504753, "top": 905, "right": 5700, "bottom": 3340, "left": 4070}, {"solidity": 0.999108766175894, "top": 880, "right": 2015, "bottom": 3290, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731174f.jpg"} -{"rects": [{"solidity": 0.9973772696704775, "top": 660, "right": 3885, "bottom": 3075, "left": 2255}, {"solidity": 0.9985306600133752, "top": 660, "right": 1995, "bottom": 3075, "left": 375}, {"solidity": 0.9991398168164202, "top": 670, "right": 5755, "bottom": 3080, "left": 4135}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700241f.jpg"} -{"rects": [{"solidity": 0.9973773654821686, "top": 790, "right": 2085, "bottom": 3220, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716762f.jpg"} -{"rects": [{"solidity": 0.997377425961236, "top": 410, "right": 3190, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704017f.jpg"} -{"rects": [{"solidity": 0.9973774754633814, "top": 2085, "right": 3125, "bottom": 3725, "left": 700}, {"solidity": 0.9986936412103238, "top": 405, "right": 3110, "bottom": 2025, "left": 690}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702254f.jpg"} -{"rects": [{"solidity": 0.9973776307742553, "top": 405, "right": 2980, "bottom": 2040, "left": 570}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706724f.jpg"} -{"rects": [{"solidity": 0.997377777609848, "top": 1070, "right": 3505, "bottom": 5170, "left": 250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709508f.jpg"} -{"rects": [{"solidity": 0.9973778480758454, "top": 365, "right": 5105, "bottom": 3590, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703919f.jpg"} -{"rects": [{"solidity": 0.9973778569557922, "top": 375, "right": 3170, "bottom": 1990, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724604f.jpg"} -{"rects": [{"solidity": 0.9973778950736727, "top": 1070, "right": 3475, "bottom": 5075, "left": 330}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723718f.jpg"} -{"rects": [{"solidity": 0.9973780654216539, "top": 795, "right": 2045, "bottom": 3205, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700724f.jpg"} -{"rects": [{"solidity": 0.9973785050571499, "top": 830, "right": 2150, "bottom": 3230, "left": 555}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709657f.jpg"} -{"rects": [{"solidity": 0.99737867569757, "top": 1095, "right": 3400, "bottom": 4895, "left": 285}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723738f.jpg"} -{"rects": [{"solidity": 0.9973788933955766, "top": 740, "right": 4695, "bottom": 3155, "left": 1430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708679f.jpg"} -{"rects": [{"solidity": 0.9973790590344644, "top": 2220, "right": 3335, "bottom": 4200, "left": 255}, {"solidity": 0.996750561651418, "top": 365, "right": 3145, "bottom": 1975, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722635f.jpg"} -{"rects": [{"solidity": 0.9973790895677951, "top": 265, "right": 3445, "bottom": 2725, "left": 410}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509897.jpg"} -{"rects": [{"solidity": 0.9973791421231544, "top": 375, "right": 3060, "bottom": 1990, "left": 655}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702280f.jpg"} -{"rects": [{"solidity": 0.9973792327318416, "top": 1080, "right": 3195, "bottom": 2025, "left": 1460}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508653.jpg"} -{"rects": [{"solidity": 0.9973793811937066, "top": 830, "right": 3955, "bottom": 3230, "left": 2350}, {"solidity": 0.9970682766522543, "top": 835, "right": 2060, "bottom": 3225, "left": 455}, {"solidity": 0.9970670321866795, "top": 835, "right": 5815, "bottom": 3230, "left": 4220}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733363f.jpg"} -{"rects": [{"solidity": 0.9973796752792621, "top": 975, "right": 3395, "bottom": 4945, "left": 280}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724552f.jpg"} -{"rects": [{"solidity": 0.9973797153828778, "top": 430, "right": 3190, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714961f.jpg"} -{"rects": [{"solidity": 0.9973797418850215, "top": 780, "right": 3670, "bottom": 2815, "left": 470}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733101f.jpg"} -{"rects": [{"solidity": 0.9973800692522328, "top": 1095, "right": 3575, "bottom": 3410, "left": 1135}], "shape": {"h": 5990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/464762.jpg"} -{"rects": [{"solidity": 0.9973801273567909, "top": 445, "right": 3160, "bottom": 2020, "left": 785}, {"solidity": 0.986487977525229, "top": 2365, "right": 3060, "bottom": 3750, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734286f.jpg"} -{"rects": [{"solidity": 0.9973803611949609, "top": 520, "right": 5035, "bottom": 3465, "left": 1150}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730236f.jpg"} -{"rects": [{"solidity": 0.9973803617688056, "top": 820, "right": 2020, "bottom": 3240, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702932f.jpg"} -{"rects": [{"solidity": 0.9973804426449956, "top": 995, "right": 3500, "bottom": 5030, "left": 295}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/706473f.jpg"} -{"rects": [{"solidity": 0.9973806789589812, "top": 2260, "right": 3035, "bottom": 3880, "left": 620}, {"solidity": 0.9987795245001554, "top": 4110, "right": 3040, "bottom": 5715, "left": 620}, {"solidity": 0.9959144591914963, "top": 385, "right": 3040, "bottom": 2000, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730597f.jpg"} -{"rects": [{"solidity": 0.9973807399007065, "top": 435, "right": 3200, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705137f.jpg"} -{"rects": [{"solidity": 0.9973809187789436, "top": 695, "right": 5085, "bottom": 3550, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700739f.jpg"} -{"rects": [{"solidity": 0.9973809349058025, "top": 1090, "right": 2305, "bottom": 2695, "left": 275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733900f.jpg"} -{"rects": [{"solidity": 0.9973809608077194, "top": 435, "right": 3180, "bottom": 2050, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705590f.jpg"} -{"rects": [{"solidity": 0.9973809668650686, "top": 690, "right": 1900, "bottom": 3115, "left": 275}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715116f.jpg"} -{"rects": [{"solidity": 0.9973810084407647, "top": 365, "right": 3145, "bottom": 1975, "left": 720}, {"solidity": 0.996378791356951, "top": 2200, "right": 3125, "bottom": 3825, "left": 705}, {"solidity": 0.9950310197563034, "top": 4100, "right": 3105, "bottom": 5725, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726626f.jpg"} -{"rects": [{"solidity": 0.9973813790542613, "top": 905, "right": 2045, "bottom": 3310, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701334f.jpg"} -{"rects": [{"solidity": 0.9973818734004882, "top": 505, "right": 3185, "bottom": 2105, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720300f.jpg"} -{"rects": [{"solidity": 0.9973819193864177, "top": 535, "right": 3150, "bottom": 2155, "left": 745}, {"solidity": 0.9999889240856833, "top": 4865, "right": 3820, "bottom": 6010, "left": 2825}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707500f.jpg"} -{"rects": [{"solidity": 0.9973822582553254, "top": 460, "right": 3345, "bottom": 2295, "left": 615}], "shape": {"h": 4425, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/706405f.jpg"} -{"rects": [{"solidity": 0.9973823251508899, "top": 2255, "right": 2930, "bottom": 3690, "left": 1110}, {"solidity": 0.9961255121240997, "top": 600, "right": 2920, "bottom": 2040, "left": 1100}, {"solidity": 0.9955378578807735, "top": 2245, "right": 5100, "bottom": 3680, "left": 3285}, {"solidity": 0.994835261825553, "top": 590, "right": 5095, "bottom": 2025, "left": 3280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726870f.jpg"} -{"rects": [{"solidity": 0.9973823964521303, "top": 445, "right": 3120, "bottom": 2040, "left": 715}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721590f.jpg"} -{"rects": [{"solidity": 0.997382502142642, "top": 405, "right": 3305, "bottom": 2000, "left": 915}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728019f.jpg"} -{"rects": [{"solidity": 0.9973825650862155, "top": 600, "right": 5135, "bottom": 3415, "left": 3115}, {"solidity": 0.994800183138204, "top": 775, "right": 2610, "bottom": 3180, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709454f.jpg"} -{"rects": [{"solidity": 0.9973826495917523, "top": 455, "right": 5020, "bottom": 3720, "left": 975}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730174f.jpg"} -{"rects": [{"solidity": 0.9973829068083052, "top": 2255, "right": 3180, "bottom": 3865, "left": 750}, {"solidity": 0.9986588175404476, "top": 415, "right": 3185, "bottom": 2015, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700576f.jpg"} -{"rects": [{"solidity": 0.9973829807047007, "top": 2225, "right": 3155, "bottom": 3845, "left": 730}, {"solidity": 0.9966579435878925, "top": 4060, "right": 3180, "bottom": 5670, "left": 755}, {"solidity": 0.9984042673709901, "top": 445, "right": 3135, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723322f.jpg"} -{"rects": [{"solidity": 0.997383130465462, "top": 435, "right": 4975, "bottom": 3620, "left": 1035}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731783f.jpg"} -{"rects": [{"solidity": 0.9973832420105518, "top": 1285, "right": 3720, "bottom": 5370, "left": 445}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/719171f.jpg"} -{"rects": [{"solidity": 0.9973833119463211, "top": 395, "right": 5010, "bottom": 3625, "left": 970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700173f.jpg"} -{"rects": [{"solidity": 0.9973835891457807, "top": 810, "right": 5705, "bottom": 3230, "left": 4095}, {"solidity": 0.9984124092340525, "top": 815, "right": 3870, "bottom": 3230, "left": 2270}, {"solidity": 0.9954905274973407, "top": 825, "right": 2045, "bottom": 3235, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731228f.jpg"} -{"rects": [{"solidity": 0.9973836130468846, "top": 855, "right": 3380, "bottom": 2880, "left": 360}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709682f.jpg"} -{"rects": [{"solidity": 0.9973838715930986, "top": 475, "right": 4990, "bottom": 3655, "left": 995}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720846f.jpg"} -{"rects": [{"solidity": 0.9973839080773544, "top": 535, "right": 3240, "bottom": 2510, "left": 430}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727632f.jpg"} -{"rects": [{"solidity": 0.9973839277453604, "top": 2270, "right": 2815, "bottom": 4695, "left": 1185}, {"solidity": 0.9967370242438774, "top": 380, "right": 3195, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733388f.jpg"} -{"rects": [{"solidity": 0.9973839295833176, "top": 360, "right": 3215, "bottom": 2000, "left": 770}, {"solidity": 0.9968170718961701, "top": 4130, "right": 3205, "bottom": 5760, "left": 765}, {"solidity": 0.9969236734136102, "top": 2250, "right": 3210, "bottom": 3880, "left": 775}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732138f.jpg"} -{"rects": [{"solidity": 0.9973840744027079, "top": 840, "right": 3310, "bottom": 2855, "left": 460}, {"solidity": 0.9967375076842013, "top": 3295, "right": 3305, "bottom": 5310, "left": 460}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727868f.jpg"} -{"rects": [{"solidity": 0.9973841267893033, "top": 510, "right": 5180, "bottom": 3735, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733963f.jpg"} -{"rects": [{"solidity": 0.9973842129558393, "top": 875, "right": 3850, "bottom": 3290, "left": 2220}, {"solidity": 0.9976971402142912, "top": 870, "right": 2015, "bottom": 3280, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721707f.jpg"} -{"rects": [{"solidity": 0.9973842379240065, "top": 395, "right": 3100, "bottom": 2005, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700546f.jpg"} -{"rects": [{"solidity": 0.9973842557732978, "top": 455, "right": 3235, "bottom": 2055, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710213f.jpg"} -{"rects": [{"solidity": 0.9973842700983321, "top": 745, "right": 2480, "bottom": 3160, "left": 865}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722462f.jpg"} -{"rects": [{"solidity": 0.9973843038857619, "top": 720, "right": 2035, "bottom": 3135, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706635f.jpg"} -{"rects": [{"solidity": 0.9973844626405184, "top": 1085, "right": 3540, "bottom": 5095, "left": 310}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722368f.jpg"} -{"rects": [{"solidity": 0.9973846707962477, "top": 765, "right": 1980, "bottom": 3180, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717275f.jpg"} -{"rects": [{"solidity": 0.9973848005179661, "top": 535, "right": 5010, "bottom": 3475, "left": 1120}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722283f.jpg"} -{"rects": [{"solidity": 0.9973848809404817, "top": 405, "right": 5135, "bottom": 3695, "left": 1125}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734423f.jpg"} -{"rects": [{"solidity": 0.9973849268244118, "top": 475, "right": 3130, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724706f.jpg"} -{"rects": [{"solidity": 0.9973850785441353, "top": 395, "right": 3210, "bottom": 2015, "left": 790}, {"solidity": 0.9961005129200848, "top": 2270, "right": 3200, "bottom": 3885, "left": 785}, {"solidity": 0.9954770032046052, "top": 4135, "right": 3185, "bottom": 5750, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715118f.jpg"} -{"rects": [{"solidity": 0.9973850986353788, "top": 785, "right": 2105, "bottom": 3200, "left": 500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724293f.jpg"} -{"rects": [{"solidity": 0.997385295600574, "top": 2245, "right": 3280, "bottom": 3860, "left": 865}, {"solidity": 0.9970834640169948, "top": 405, "right": 3275, "bottom": 2020, "left": 860}, {"solidity": 0.9961938421803846, "top": 4080, "right": 3270, "bottom": 5695, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726093f.jpg"} -{"rects": [{"solidity": 0.9973854016615032, "top": 390, "right": 2990, "bottom": 2000, "left": 605}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710478f.jpg"} -{"rects": [{"solidity": 0.9973856879229034, "top": 670, "right": 2615, "bottom": 2040, "left": 820}, {"solidity": 0.9966047367483825, "top": 2110, "right": 2475, "bottom": 3530, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706989f.jpg"} -{"rects": [{"solidity": 0.9973857017746625, "top": 765, "right": 2015, "bottom": 3175, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724307f.jpg"} -{"rects": [{"solidity": 0.9973858639774243, "top": 1230, "right": 3285, "bottom": 4710, "left": 630}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707876f.jpg"} -{"rects": [{"solidity": 0.9973861730779003, "top": 775, "right": 3555, "bottom": 3210, "left": 1925}, {"solidity": 0.9967995679416721, "top": 1010, "right": 1785, "bottom": 2840, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707487f.jpg"} -{"rects": [{"solidity": 0.9973864306393805, "top": 1095, "right": 2915, "bottom": 2690, "left": 525}, {"solidity": 0.9933691370804039, "top": 1095, "right": 5600, "bottom": 2680, "left": 3225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707557f.jpg"} -{"rects": [{"solidity": 0.9973864483487206, "top": 685, "right": 2440, "bottom": 3530, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723103f.jpg"} -{"rects": [{"solidity": 0.9973866427108915, "top": 1035, "right": 3760, "bottom": 5080, "left": 555}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722876f.jpg"} -{"rects": [{"solidity": 0.997386837536468, "top": 715, "right": 3265, "bottom": 2725, "left": 460}, {"solidity": 0.9964337339919562, "top": 3365, "right": 3085, "bottom": 4965, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728629f.jpg"} -{"rects": [{"solidity": 0.997387100092583, "top": 925, "right": 2335, "bottom": 3625, "left": 515}], "shape": {"h": 4420, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/711212f.jpg"} -{"rects": [{"solidity": 0.997387135095646, "top": 425, "right": 3115, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729563f.jpg"} -{"rects": [{"solidity": 0.9973872806963996, "top": 1015, "right": 1530, "bottom": 2845, "left": 400}, {"solidity": 0.9926739926739927, "top": 1000, "right": 2910, "bottom": 2840, "left": 1755}, {"solidity": 0.996639884023785, "top": 1005, "right": 4280, "bottom": 2830, "left": 3155}, {"solidity": 0.9944742891563303, "top": 1030, "right": 5685, "bottom": 2860, "left": 4555}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727239f.jpg"} -{"rects": [{"solidity": 0.9973873142029113, "top": 790, "right": 3210, "bottom": 2715, "left": 530}, {"solidity": 0.9962740390492443, "top": 3355, "right": 3205, "bottom": 5275, "left": 515}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717885f.jpg"} -{"rects": [{"solidity": 0.9973875091866901, "top": 605, "right": 4960, "bottom": 3605, "left": 1150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720785f.jpg"} -{"rects": [{"solidity": 0.9973879719604192, "top": 310, "right": 3120, "bottom": 1940, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706229f.jpg"} -{"rects": [{"solidity": 0.9973881776779168, "top": 1085, "right": 2630, "bottom": 4215, "left": 235}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507737.jpg"} -{"rects": [{"solidity": 0.9973882747820587, "top": 295, "right": 3960, "bottom": 2745, "left": 935}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509861.jpg"} -{"rects": [{"solidity": 0.9973883069318602, "top": 550, "right": 2965, "bottom": 3595, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708087f.jpg"} -{"rects": [{"solidity": 0.9973883982913928, "top": 520, "right": 3000, "bottom": 2160, "left": 570}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730934f.jpg"} -{"rects": [{"solidity": 0.9973885988713773, "top": 290, "right": 3210, "bottom": 2355, "left": 750}], "shape": {"h": 2555, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727191f.jpg"} -{"rects": [{"solidity": 0.9973891038202942, "top": 1095, "right": 3595, "bottom": 5065, "left": 390}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723886f.jpg"} -{"rects": [{"solidity": 0.9973891408635411, "top": 1030, "right": 3450, "bottom": 4990, "left": 275}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714387f.jpg"} -{"rects": [{"solidity": 0.9973892867169877, "top": 395, "right": 3130, "bottom": 2010, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729466f.jpg"} -{"rects": [{"solidity": 0.9973894010320973, "top": 415, "right": 3080, "bottom": 2045, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729106f.jpg"} -{"rects": [{"solidity": 0.9973894423966287, "top": 440, "right": 3085, "bottom": 2040, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729305f.jpg"} -{"rects": [{"solidity": 0.9973894786880051, "top": 445, "right": 5060, "bottom": 3650, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718255f.jpg"} -{"rects": [{"solidity": 0.9973899658687845, "top": 780, "right": 2030, "bottom": 3205, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718699f.jpg"} -{"rects": [{"solidity": 0.9973902666972806, "top": 770, "right": 2040, "bottom": 3190, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700921f.jpg"} -{"rects": [{"solidity": 0.9973905699521122, "top": 725, "right": 5180, "bottom": 3540, "left": 3170}, {"solidity": 0.9988134343366629, "top": 695, "right": 2735, "bottom": 3505, "left": 735}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728714f.jpg"} -{"rects": [{"solidity": 0.9973907209065381, "top": 445, "right": 5295, "bottom": 3675, "left": 1220}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732630f.jpg"} -{"rects": [{"solidity": 0.9973907982799315, "top": 710, "right": 2315, "bottom": 3115, "left": 695}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715217f.jpg"} -{"rects": [{"solidity": 0.997390810030531, "top": 2215, "right": 3045, "bottom": 3840, "left": 610}, {"solidity": 0.9973501297633425, "top": 380, "right": 3045, "bottom": 1995, "left": 615}, {"solidity": 0.9991081094181706, "top": 4105, "right": 3055, "bottom": 5710, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726606f.jpg"} -{"rects": [{"solidity": 0.9973909338228064, "top": 445, "right": 3285, "bottom": 2040, "left": 875}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726271f.jpg"} -{"rects": [{"solidity": 0.9973911588916125, "top": 455, "right": 3090, "bottom": 2080, "left": 680}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700657f.jpg"} -{"rects": [{"solidity": 0.9973912580524943, "top": 755, "right": 3335, "bottom": 2670, "left": 610}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713692f.jpg"} -{"rects": [{"solidity": 0.997391381621758, "top": 1070, "right": 3800, "bottom": 5105, "left": 520}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710647f.jpg"} -{"rects": [{"solidity": 0.9973915682364006, "top": 1020, "right": 3830, "bottom": 5615, "left": 355}], "shape": {"h": 6900, "w": 4390}, "file": "/usr/local/google/home/danvk/milstein/711356f.jpg"} -{"rects": [{"solidity": 0.9973917865456163, "top": 770, "right": 2040, "bottom": 3180, "left": 415}, {"solidity": 0.9969594506041781, "top": 775, "right": 3890, "bottom": 3175, "left": 2290}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721965f.jpg"} -{"rects": [{"solidity": 0.9973918061901558, "top": 385, "right": 3230, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726108f.jpg"} -{"rects": [{"solidity": 0.997391837499722, "top": 345, "right": 3580, "bottom": 1975, "left": 1145}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706291f.jpg"} -{"rects": [{"solidity": 0.9973921106517791, "top": 395, "right": 3200, "bottom": 2015, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717955f.jpg"} -{"rects": [{"solidity": 0.9973922808791572, "top": 1065, "right": 3485, "bottom": 5120, "left": 290}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717110f.jpg"} -{"rects": [{"solidity": 0.99739232942067, "top": 295, "right": 3765, "bottom": 2710, "left": 750}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508305.jpg"} -{"rects": [{"solidity": 0.9973923543315178, "top": 760, "right": 2020, "bottom": 3185, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723782f.jpg"} -{"rects": [{"solidity": 0.9973924757976098, "top": 470, "right": 3155, "bottom": 2090, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703383f.jpg"} -{"rects": [{"solidity": 0.9973926280050185, "top": 980, "right": 3545, "bottom": 4950, "left": 345}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731911f.jpg"} -{"rects": [{"solidity": 0.9973927034466715, "top": 410, "right": 3280, "bottom": 2025, "left": 865}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726526f.jpg"} -{"rects": [{"solidity": 0.9973927209844231, "top": 780, "right": 2120, "bottom": 3165, "left": 540}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708630f.jpg"} -{"rects": [{"solidity": 0.9973928204793951, "top": 465, "right": 3310, "bottom": 2540, "left": 1815}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508071.jpg"} -{"rects": [{"solidity": 0.997392965047543, "top": 610, "right": 2485, "bottom": 3685, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713573f.jpg"} -{"rects": [{"solidity": 0.9973929711624012, "top": 845, "right": 2000, "bottom": 3245, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717588f.jpg"} -{"rects": [{"solidity": 0.9973930433540461, "top": 450, "right": 5095, "bottom": 3640, "left": 1120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718160f.jpg"} -{"rects": [{"solidity": 0.9973930797539778, "top": 2120, "right": 3145, "bottom": 3755, "left": 715}, {"solidity": 0.9964153598329291, "top": 285, "right": 3150, "bottom": 1920, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705372f.jpg"} -{"rects": [{"solidity": 0.9973931678607983, "top": 435, "right": 3205, "bottom": 2060, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704036f.jpg"} -{"rects": [{"solidity": 0.9973933558799748, "top": 370, "right": 4505, "bottom": 2775, "left": 1340}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507797.jpg"} -{"rects": [{"solidity": 0.9973934429675512, "top": 1625, "right": 2120, "bottom": 2830, "left": 625}, {"solidity": 0.9961149417241258, "top": 350, "right": 3815, "bottom": 1565, "left": 2325}, {"solidity": 0.9945134438099764, "top": 1630, "right": 3820, "bottom": 2845, "left": 2330}, {"solidity": 0.9917783383811056, "top": 345, "right": 2105, "bottom": 1550, "left": 615}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716289f.jpg"} -{"rects": [{"solidity": 0.9973934571627286, "top": 800, "right": 3835, "bottom": 3220, "left": 2200}, {"solidity": 0.9984011352581781, "top": 785, "right": 1955, "bottom": 3205, "left": 335}, {"solidity": 0.9971865264797508, "top": 805, "right": 5705, "bottom": 3215, "left": 4095}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718796f.jpg"} -{"rects": [{"solidity": 0.9973935112147609, "top": 3110, "right": 1845, "bottom": 5070, "left": 250}, {"solidity": 0.9960910675611431, "top": 800, "right": 1840, "bottom": 2745, "left": 230}, {"solidity": 0.9957289774669583, "top": 3145, "right": 3510, "bottom": 5055, "left": 1905}, {"solidity": 0.9976393516200867, "top": 815, "right": 3490, "bottom": 2730, "left": 1965}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719579f.jpg"} -{"rects": [{"solidity": 0.9973937564715473, "top": 2165, "right": 3490, "bottom": 3935, "left": 260}, {"solidity": 0.994269340974212, "top": 4255, "right": 3495, "bottom": 5665, "left": 260}, {"solidity": 0.9898019163494627, "top": 520, "right": 3490, "bottom": 1930, "left": 290}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730539f.jpg"} -{"rects": [{"solidity": 0.997393843782763, "top": 770, "right": 2035, "bottom": 3165, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718624f.jpg"} -{"rects": [{"solidity": 0.9973939253717914, "top": 425, "right": 3345, "bottom": 2050, "left": 930}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725120f.jpg"} -{"rects": [{"solidity": 0.9973942647636507, "top": 415, "right": 3135, "bottom": 2015, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728676f.jpg"} -{"rects": [{"solidity": 0.9973943322512901, "top": 790, "right": 2055, "bottom": 3155, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712064f.jpg"} -{"rects": [{"solidity": 0.9973946824750812, "top": 575, "right": 5285, "bottom": 3505, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710879f.jpg"} -{"rects": [{"solidity": 0.9973947166673164, "top": 775, "right": 2025, "bottom": 3185, "left": 415}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721933f.jpg"} -{"rects": [{"solidity": 0.997394790231766, "top": 800, "right": 2165, "bottom": 3205, "left": 560}, {"solidity": 0.9988937691053931, "top": 805, "right": 3980, "bottom": 3215, "left": 2385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719819f.jpg"} -{"rects": [{"solidity": 0.9973949016827439, "top": 410, "right": 3060, "bottom": 2020, "left": 650}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729177f.jpg"} -{"rects": [{"solidity": 0.9973951113203046, "top": 430, "right": 3150, "bottom": 2040, "left": 725}, {"solidity": 0.9966670010452026, "top": 4065, "right": 3135, "bottom": 5675, "left": 715}, {"solidity": 0.9939639356383475, "top": 2250, "right": 3140, "bottom": 3855, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723305f.jpg"} -{"rects": [{"solidity": 0.9973951421486476, "top": 4075, "right": 2935, "bottom": 5740, "left": 915}, {"solidity": 0.9972729446797349, "top": 2200, "right": 2950, "bottom": 3840, "left": 950}, {"solidity": 0.9976264257928397, "top": 330, "right": 2950, "bottom": 1960, "left": 955}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720150f.jpg"} -{"rects": [{"solidity": 0.9973953229731934, "top": 955, "right": 3505, "bottom": 5025, "left": 305}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719127f.jpg"} -{"rects": [{"solidity": 0.9973953835872561, "top": 1100, "right": 3550, "bottom": 5220, "left": 255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721926f.jpg"} -{"rects": [{"solidity": 0.997395398755943, "top": 750, "right": 2050, "bottom": 3155, "left": 450}, {"solidity": 0.9947379838031132, "top": 735, "right": 3935, "bottom": 3140, "left": 2340}], "shape": {"h": 3890, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723613f.jpg"} -{"rects": [{"solidity": 0.9973954551175919, "top": 875, "right": 1985, "bottom": 3290, "left": 365}, {"solidity": 0.996070675876223, "top": 875, "right": 3840, "bottom": 3290, "left": 2225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712382f.jpg"} -{"rects": [{"solidity": 0.9973956312144809, "top": 670, "right": 2885, "bottom": 2160, "left": 920}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710333f.jpg"} -{"rects": [{"solidity": 0.9973961804144656, "top": 405, "right": 3205, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728348f.jpg"} -{"rects": [{"solidity": 0.9973961947748977, "top": 430, "right": 5115, "bottom": 3715, "left": 1090}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715629f.jpg"} -{"rects": [{"solidity": 0.9973962759049705, "top": 2250, "right": 3215, "bottom": 3880, "left": 800}, {"solidity": 0.9971471772239417, "top": 365, "right": 3205, "bottom": 1980, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701473f.jpg"} -{"rects": [{"solidity": 0.99739635684502, "top": 430, "right": 3205, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703389f.jpg"} -{"rects": [{"solidity": 0.9973964094819432, "top": 860, "right": 2030, "bottom": 3285, "left": 400}, {"solidity": 0.9973770745983241, "top": 865, "right": 3880, "bottom": 3285, "left": 2270}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728290f.jpg"} -{"rects": [{"solidity": 0.9973965784203174, "top": 1060, "right": 3475, "bottom": 4990, "left": 410}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721398f.jpg"} -{"rects": [{"solidity": 0.997396707686768, "top": 2260, "right": 4855, "bottom": 3685, "left": 3040}, {"solidity": 0.996645496019322, "top": 640, "right": 2730, "bottom": 2040, "left": 920}, {"solidity": 0.9950569567744532, "top": 620, "right": 4850, "bottom": 2035, "left": 3045}, {"solidity": 0.9946099903552483, "top": 2255, "right": 2715, "bottom": 3665, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726359f.jpg"} -{"rects": [{"solidity": 0.9973967964265987, "top": 1020, "right": 1815, "bottom": 2925, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721444f.jpg"} -{"rects": [{"solidity": 0.9973974011936874, "top": 2190, "right": 2555, "bottom": 3605, "left": 675}, {"solidity": 0.9951858290042531, "top": 585, "right": 2535, "bottom": 1995, "left": 740}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710148f.jpg"} -{"rects": [{"solidity": 0.997397451366313, "top": 420, "right": 4965, "bottom": 3610, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710152f.jpg"} -{"rects": [{"solidity": 0.9973975784467447, "top": 780, "right": 3865, "bottom": 3185, "left": 2255}, {"solidity": 0.996458301103654, "top": 780, "right": 2010, "bottom": 3180, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718377f.jpg"} -{"rects": [{"solidity": 0.9973975914414654, "top": 310, "right": 3305, "bottom": 3750, "left": 680}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732888f.jpg"} -{"rects": [{"solidity": 0.9973975999771969, "top": 510, "right": 5090, "bottom": 3795, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707826f.jpg"} -{"rects": [{"solidity": 0.997397622346681, "top": 410, "right": 2395, "bottom": 1610, "left": 590}], "shape": {"h": 4630, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715750f.jpg"} -{"rects": [{"solidity": 0.9973977963202088, "top": 880, "right": 3950, "bottom": 3275, "left": 2345}, {"solidity": 0.9995198708759122, "top": 910, "right": 2080, "bottom": 3240, "left": 495}, {"solidity": 0.9988839704712921, "top": 900, "right": 5750, "bottom": 3255, "left": 4185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713706f.jpg"} -{"rects": [{"solidity": 0.9973978160930618, "top": 810, "right": 2015, "bottom": 3235, "left": 395}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714545f.jpg"} -{"rects": [{"solidity": 0.997397873709288, "top": 2250, "right": 3235, "bottom": 3885, "left": 815}, {"solidity": 0.9986334119574853, "top": 4125, "right": 3225, "bottom": 5750, "left": 805}, {"solidity": 0.9967249759571648, "top": 405, "right": 3260, "bottom": 2010, "left": 845}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702284f.jpg"} -{"rects": [{"solidity": 0.9973978887926332, "top": 380, "right": 3315, "bottom": 2010, "left": 900}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706191f.jpg"} -{"rects": [{"solidity": 0.997398199783821, "top": 315, "right": 3185, "bottom": 1945, "left": 760}, {"solidity": 0.9971596361263578, "top": 2145, "right": 3185, "bottom": 3770, "left": 760}, {"solidity": 0.9960433339965215, "top": 4110, "right": 3160, "bottom": 5750, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706185f.jpg"} -{"rects": [{"solidity": 0.9973982855866963, "top": 450, "right": 2935, "bottom": 1875, "left": 1110}, {"solidity": 0.9964635341373255, "top": 2180, "right": 2945, "bottom": 3610, "left": 1125}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726095f.jpg"} -{"rects": [{"solidity": 0.9973983632504818, "top": 800, "right": 3820, "bottom": 4115, "left": 1160}], "shape": {"h": 5140, "w": 4180}, "file": "/usr/local/google/home/danvk/milstein/716723f.jpg"} -{"rects": [{"solidity": 0.9973984709380207, "top": 485, "right": 3325, "bottom": 2505, "left": 270}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721785f.jpg"} -{"rects": [{"solidity": 0.9973984803821915, "top": 2150, "right": 3220, "bottom": 3775, "left": 780}, {"solidity": 0.9999451658893125, "top": 4035, "right": 3195, "bottom": 5655, "left": 790}, {"solidity": 0.9960010724103068, "top": 290, "right": 3200, "bottom": 1900, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720532f.jpg"} -{"rects": [{"solidity": 0.9973985892847365, "top": 1025, "right": 3435, "bottom": 5090, "left": 325}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721750f.jpg"} -{"rects": [{"solidity": 0.997398847732295, "top": 420, "right": 3005, "bottom": 2025, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733283f.jpg"} -{"rects": [{"solidity": 0.9973988893303641, "top": 560, "right": 6010, "bottom": 2010, "left": 4125}, {"solidity": 0.9930290156209417, "top": 580, "right": 3945, "bottom": 2000, "left": 2005}, {"solidity": 0.9944036293622598, "top": 605, "right": 2005, "bottom": 2040, "left": 130}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723418f.jpg"} -{"rects": [{"solidity": 0.9973992381530538, "top": 460, "right": 5165, "bottom": 3725, "left": 1055}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716741f.jpg"} -{"rects": [{"solidity": 0.9973992945663003, "top": 570, "right": 4840, "bottom": 3355, "left": 1150}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712871f.jpg"} -{"rects": [{"solidity": 0.9973992968615679, "top": 1110, "right": 3555, "bottom": 5095, "left": 345}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721500f.jpg"} -{"rects": [{"solidity": 0.9973993955525802, "top": 855, "right": 3930, "bottom": 3275, "left": 2310}, {"solidity": 0.9966812604017147, "top": 850, "right": 2050, "bottom": 3250, "left": 440}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712739f.jpg"} -{"rects": [{"solidity": 0.9973994123271921, "top": 1055, "right": 3495, "bottom": 5065, "left": 260}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708454f.jpg"} -{"rects": [{"solidity": 0.9973994539148402, "top": 2320, "right": 3270, "bottom": 3995, "left": 720}, {"solidity": 0.9961967321379083, "top": 4165, "right": 3300, "bottom": 5830, "left": 730}, {"solidity": 0.9957631438492123, "top": 435, "right": 3230, "bottom": 2120, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732071f.jpg"} -{"rects": [{"solidity": 0.9973994908004181, "top": 830, "right": 2005, "bottom": 3250, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701237f.jpg"} -{"rects": [{"solidity": 0.9973995982961547, "top": 420, "right": 3185, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703760f.jpg"} -{"rects": [{"solidity": 0.9973996611873813, "top": 2270, "right": 3195, "bottom": 3890, "left": 770}, {"solidity": 0.9968816907022947, "top": 430, "right": 3195, "bottom": 2050, "left": 770}, {"solidity": 0.9974809057157381, "top": 4120, "right": 3185, "bottom": 5735, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734169f.jpg"} -{"rects": [{"solidity": 0.9973996775697304, "top": 585, "right": 3340, "bottom": 2490, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713065f.jpg"} -{"rects": [{"solidity": 0.997399781917193, "top": 435, "right": 3175, "bottom": 2050, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730575f.jpg"} -{"rects": [{"solidity": 0.9973998144802376, "top": 1135, "right": 5505, "bottom": 2755, "left": 695}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718730f.jpg"} -{"rects": [{"solidity": 0.9973999092421151, "top": 380, "right": 5320, "bottom": 3640, "left": 1235}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721507f.jpg"} -{"rects": [{"solidity": 0.9973999930778356, "top": 995, "right": 3405, "bottom": 5005, "left": 405}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713954f.jpg"} -{"rects": [{"solidity": 0.9974001554150638, "top": 770, "right": 2040, "bottom": 3195, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720025f.jpg"} -{"rects": [{"solidity": 0.9974001613952687, "top": 490, "right": 5115, "bottom": 3740, "left": 995}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714510f.jpg"} -{"rects": [{"solidity": 0.9974001749159583, "top": 285, "right": 3925, "bottom": 2730, "left": 905}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508109.jpg"} -{"rects": [{"solidity": 0.9974001852272351, "top": 600, "right": 3515, "bottom": 2410, "left": 790}], "shape": {"h": 6910, "w": 4390}, "file": "/usr/local/google/home/danvk/milstein/711302f.jpg"} -{"rects": [{"solidity": 0.9974003242328534, "top": 810, "right": 3910, "bottom": 3225, "left": 2295}, {"solidity": 0.9989066017960198, "top": 815, "right": 2060, "bottom": 3230, "left": 450}, {"solidity": 0.9978101457854202, "top": 815, "right": 5735, "bottom": 3230, "left": 4120}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719928f.jpg"} -{"rects": [{"solidity": 0.9974007400513042, "top": 445, "right": 5085, "bottom": 3740, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724661f.jpg"} -{"rects": [{"solidity": 0.9974008139145754, "top": 405, "right": 3830, "bottom": 2820, "left": 815}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716512f.jpg"} -{"rects": [{"solidity": 0.9974009028037725, "top": 560, "right": 5145, "bottom": 3790, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731151f.jpg"} -{"rects": [{"solidity": 0.9974009138931199, "top": 390, "right": 3065, "bottom": 2005, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714943f.jpg"} -{"rects": [{"solidity": 0.9974012657213811, "top": 785, "right": 3855, "bottom": 3205, "left": 2230}, {"solidity": 0.9953719432069486, "top": 775, "right": 5685, "bottom": 3210, "left": 4055}, {"solidity": 0.9962492620447136, "top": 775, "right": 2035, "bottom": 3200, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732178f.jpg"} -{"rects": [{"solidity": 0.9974016417944768, "top": 1245, "right": 2765, "bottom": 2845, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722886f.jpg"} -{"rects": [{"solidity": 0.9974019620166267, "top": 520, "right": 5085, "bottom": 3740, "left": 1050}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706496f.jpg"} -{"rects": [{"solidity": 0.9974020561117007, "top": 1150, "right": 3480, "bottom": 4990, "left": 440}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721326f.jpg"} -{"rects": [{"solidity": 0.9974022607819137, "top": 485, "right": 5100, "bottom": 3740, "left": 1045}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705983f.jpg"} -{"rects": [{"solidity": 0.99740234375, "top": 405, "right": 2885, "bottom": 1825, "left": 1060}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704056f.jpg"} -{"rects": [{"solidity": 0.9974023972437798, "top": 2020, "right": 3210, "bottom": 3640, "left": 790}, {"solidity": 0.996301179465863, "top": 210, "right": 3185, "bottom": 1835, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720845f.jpg"} -{"rects": [{"solidity": 0.9974025053255087, "top": 2240, "right": 3115, "bottom": 3860, "left": 700}, {"solidity": 0.9966874387160035, "top": 4105, "right": 3105, "bottom": 5715, "left": 680}, {"solidity": 0.9952875306193865, "top": 405, "right": 3110, "bottom": 1995, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734372f.jpg"} -{"rects": [{"solidity": 0.9974028171947822, "top": 555, "right": 3135, "bottom": 2160, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709625f.jpg"} -{"rects": [{"solidity": 0.9974028837393286, "top": 2070, "right": 3245, "bottom": 3675, "left": 825}, {"solidity": 0.9961681095790765, "top": 3760, "right": 3215, "bottom": 5385, "left": 800}, {"solidity": 0.9957866087434412, "top": 350, "right": 3260, "bottom": 1950, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734097f.jpg"} -{"rects": [{"solidity": 0.997402980480673, "top": 860, "right": 3895, "bottom": 3275, "left": 2265}, {"solidity": 0.9965128514416969, "top": 860, "right": 2020, "bottom": 3275, "left": 385}, {"solidity": 0.9971282038073837, "top": 875, "right": 5755, "bottom": 3285, "left": 4130}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714842f.jpg"} -{"rects": [{"solidity": 0.9974032219283482, "top": 2330, "right": 3225, "bottom": 3950, "left": 800}, {"solidity": 0.9966052501174487, "top": 440, "right": 3200, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711187f.jpg"} -{"rects": [{"solidity": 0.9974032718774344, "top": 435, "right": 3165, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702664f.jpg"} -{"rects": [{"solidity": 0.9974032909014243, "top": 1420, "right": 3870, "bottom": 5715, "left": 275}], "shape": {"h": 6920, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708804f.jpg"} -{"rects": [{"solidity": 0.9974033572711335, "top": 415, "right": 5300, "bottom": 3460, "left": 1425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700650f.jpg"} -{"rects": [{"solidity": 0.9974034104316253, "top": 390, "right": 5050, "bottom": 3640, "left": 1035}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708490f.jpg"} -{"rects": [{"solidity": 0.9974034711989045, "top": 2120, "right": 2705, "bottom": 3575, "left": 875}, {"solidity": 0.9942871407859742, "top": 630, "right": 5235, "bottom": 2075, "left": 3395}, {"solidity": 0.9974126716220856, "top": 625, "right": 2710, "bottom": 2050, "left": 880}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705267f.jpg"} -{"rects": [{"solidity": 0.9974034955556859, "top": 470, "right": 3235, "bottom": 2305, "left": 1010}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711219f.jpg"} -{"rects": [{"solidity": 0.9974035083203563, "top": 395, "right": 3225, "bottom": 2015, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727245f.jpg"} -{"rects": [{"solidity": 0.9974036199654467, "top": 1510, "right": 4705, "bottom": 3130, "left": 2315}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702709f.jpg"} -{"rects": [{"solidity": 0.9974038245863539, "top": 650, "right": 2705, "bottom": 2080, "left": 855}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702537f.jpg"} -{"rects": [{"solidity": 0.9974038711166239, "top": 365, "right": 3800, "bottom": 2825, "left": 785}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/710946f.jpg"} -{"rects": [{"solidity": 0.997404045281747, "top": 810, "right": 2060, "bottom": 3225, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718895f.jpg"} -{"rects": [{"solidity": 0.9974040632054176, "top": 920, "right": 1860, "bottom": 2740, "left": 450}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707316f.jpg"} -{"rects": [{"solidity": 0.9974041031917292, "top": 625, "right": 1870, "bottom": 3030, "left": 245}, {"solidity": 0.99360454562724, "top": 1070, "right": 3930, "bottom": 2600, "left": 1965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719096f.jpg"} -{"rects": [{"solidity": 0.9974041353922316, "top": 505, "right": 5075, "bottom": 3685, "left": 1080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720761f.jpg"} -{"rects": [{"solidity": 0.9974045028597888, "top": 480, "right": 3305, "bottom": 3900, "left": 660}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713154f.jpg"} -{"rects": [{"solidity": 0.9974045400515531, "top": 620, "right": 2680, "bottom": 3560, "left": 755}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720038f.jpg"} -{"rects": [{"solidity": 0.9974045852327554, "top": 705, "right": 2030, "bottom": 3095, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724886f.jpg"} -{"rects": [{"solidity": 0.9974049789154537, "top": 1315, "right": 3675, "bottom": 5410, "left": 380}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/719100f.jpg"} -{"rects": [{"solidity": 0.9974050379050612, "top": 305, "right": 3255, "bottom": 2315, "left": 430}, {"solidity": 0.9953533340568057, "top": 4220, "right": 3100, "bottom": 5820, "left": 695}, {"solidity": 0.9973405657641506, "top": 2445, "right": 3100, "bottom": 4035, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729500f.jpg"} -{"rects": [{"solidity": 0.9974050754034497, "top": 480, "right": 5035, "bottom": 3720, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702668f.jpg"} -{"rects": [{"solidity": 0.9974052397416829, "top": 770, "right": 2045, "bottom": 3185, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719675f.jpg"} -{"rects": [{"solidity": 0.9974054511151755, "top": 485, "right": 2995, "bottom": 2115, "left": 580}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706582f.jpg"} -{"rects": [{"solidity": 0.9974057631029977, "top": 625, "right": 5560, "bottom": 2030, "left": 3210}, {"solidity": 0.9972442615215642, "top": 645, "right": 2835, "bottom": 2025, "left": 530}, {"solidity": 0.9960040483707727, "top": 2210, "right": 2840, "bottom": 3605, "left": 580}, {"solidity": 0.9987757342076748, "top": 2175, "right": 5370, "bottom": 3615, "left": 3505}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732942f.jpg"} -{"rects": [{"solidity": 0.9974058410982621, "top": 435, "right": 5025, "bottom": 3655, "left": 1025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709627f.jpg"} -{"rects": [{"solidity": 0.9974058495549252, "top": 885, "right": 3745, "bottom": 2905, "left": 545}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733003f.jpg"} -{"rects": [{"solidity": 0.9974058522427542, "top": 430, "right": 5045, "bottom": 3645, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723700f.jpg"} -{"rects": [{"solidity": 0.9974060400469228, "top": 1040, "right": 3415, "bottom": 5015, "left": 305}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718109f.jpg"} -{"rects": [{"solidity": 0.9974063960694474, "top": 885, "right": 3865, "bottom": 3315, "left": 2235}, {"solidity": 0.9996789446033506, "top": 900, "right": 1995, "bottom": 3315, "left": 390}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706875f.jpg"} -{"rects": [{"solidity": 0.9974065054739865, "top": 545, "right": 4950, "bottom": 3720, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726352f.jpg"} -{"rects": [{"solidity": 0.997406523417188, "top": 4115, "right": 3155, "bottom": 5745, "left": 750}, {"solidity": 0.9974746903181373, "top": 2260, "right": 3145, "bottom": 3880, "left": 740}, {"solidity": 0.9968160190196708, "top": 400, "right": 3155, "bottom": 2015, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719558f.jpg"} -{"rects": [{"solidity": 0.9974066466612668, "top": 495, "right": 5055, "bottom": 3705, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701966f.jpg"} -{"rects": [{"solidity": 0.9974068639959174, "top": 850, "right": 3875, "bottom": 3280, "left": 2245}, {"solidity": 0.9957327064415051, "top": 860, "right": 5735, "bottom": 3295, "left": 4100}, {"solidity": 0.997049754957645, "top": 805, "right": 2015, "bottom": 3225, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724843f.jpg"} -{"rects": [{"solidity": 0.9974070232627056, "top": 595, "right": 2685, "bottom": 2000, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706705f.jpg"} -{"rects": [{"solidity": 0.9974071223109022, "top": 1110, "right": 2890, "bottom": 3115, "left": 1645}, {"solidity": 0.9467501555427443, "top": 3500, "right": 1995, "bottom": 5570, "left": 865}, {"solidity": 0.9502874349849438, "top": 3505, "right": 3655, "bottom": 5460, "left": 2525}], "shape": {"h": 6005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465677.jpg"} -{"rects": [{"solidity": 0.9974071879301237, "top": 445, "right": 5105, "bottom": 3730, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723647f.jpg"} -{"rects": [{"solidity": 0.997407331807813, "top": 270, "right": 4090, "bottom": 2655, "left": 1145}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507509.jpg"} -{"rects": [{"solidity": 0.997407567434109, "top": 420, "right": 3210, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724952f.jpg"} -{"rects": [{"solidity": 0.9974077747817914, "top": 745, "right": 3305, "bottom": 2665, "left": 520}, {"solidity": 0.9951094140108679, "top": 3285, "right": 3250, "bottom": 5210, "left": 535}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715375f.jpg"} -{"rects": [{"solidity": 0.9974079867412259, "top": 760, "right": 2060, "bottom": 3185, "left": 440}, {"solidity": 0.9979818234742391, "top": 755, "right": 5720, "bottom": 3175, "left": 4110}, {"solidity": 0.9943187768352707, "top": 765, "right": 3880, "bottom": 3165, "left": 2265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713461f.jpg"} -{"rects": [{"solidity": 0.9974080035163244, "top": 410, "right": 3225, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713474f.jpg"} -{"rects": [{"solidity": 0.9974080234146019, "top": 610, "right": 4580, "bottom": 3290, "left": 1150}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733416f.jpg"} -{"rects": [{"solidity": 0.9974080403645833, "top": 460, "right": 4935, "bottom": 3590, "left": 990}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711462f.jpg"} -{"rects": [{"solidity": 0.9974080661589213, "top": 2045, "right": 3105, "bottom": 3465, "left": 765}, {"solidity": 0.9963799678649554, "top": 405, "right": 3115, "bottom": 1825, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705055f.jpg"} -{"rects": [{"solidity": 0.9974081726814982, "top": 515, "right": 3155, "bottom": 2045, "left": 1100}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711547f.jpg"} -{"rects": [{"solidity": 0.9974086267650917, "top": 370, "right": 3150, "bottom": 1990, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729296f.jpg"} -{"rects": [{"solidity": 0.9974088557851358, "top": 655, "right": 2710, "bottom": 2085, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702445f.jpg"} -{"rects": [{"solidity": 0.9974089957624955, "top": 2090, "right": 3160, "bottom": 3720, "left": 735}, {"solidity": 0.9771951307354318, "top": 410, "right": 2910, "bottom": 1835, "left": 1050}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720669f.jpg"} -{"rects": [{"solidity": 0.9974090153125269, "top": 430, "right": 4935, "bottom": 3460, "left": 1210}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719191f.jpg"} -{"rects": [{"solidity": 0.997409125813883, "top": 2270, "right": 3190, "bottom": 3885, "left": 770}, {"solidity": 0.9974133304017745, "top": 495, "right": 3195, "bottom": 2105, "left": 775}, {"solidity": 0.9946866591272472, "top": 4050, "right": 3190, "bottom": 5665, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/719808f.jpg"} -{"rects": [{"solidity": 0.9974092758974893, "top": 740, "right": 1985, "bottom": 3160, "left": 385}, {"solidity": 0.9960831823076721, "top": 750, "right": 3835, "bottom": 3150, "left": 2235}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724520f.jpg"} -{"rects": [{"solidity": 0.9974094014125275, "top": 690, "right": 3345, "bottom": 2615, "left": 615}, {"solidity": 0.993979242302537, "top": 3240, "right": 3305, "bottom": 5155, "left": 600}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/714618f.jpg"} -{"rects": [{"solidity": 0.9974095040351014, "top": 645, "right": 3320, "bottom": 2565, "left": 610}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712149f.jpg"} -{"rects": [{"solidity": 0.9974095084773915, "top": 2185, "right": 3195, "bottom": 3815, "left": 775}, {"solidity": 0.9972061703815213, "top": 4075, "right": 3185, "bottom": 5700, "left": 790}, {"solidity": 0.9947026034408658, "top": 305, "right": 3185, "bottom": 1920, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721567f.jpg"} -{"rects": [{"solidity": 0.9974095255665222, "top": 490, "right": 5025, "bottom": 3765, "left": 1005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712369f.jpg"} -{"rects": [{"solidity": 0.997409595196566, "top": 515, "right": 2980, "bottom": 2125, "left": 565}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720249f.jpg"} -{"rects": [{"solidity": 0.9974097392448237, "top": 485, "right": 2675, "bottom": 3600, "left": 270}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507633.jpg"} -{"rects": [{"solidity": 0.9974098510031554, "top": 1040, "right": 2560, "bottom": 3860, "left": 445}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507991.jpg"} -{"rects": [{"solidity": 0.9974102547397224, "top": 855, "right": 2085, "bottom": 3265, "left": 480}, {"solidity": 0.9977404124906817, "top": 865, "right": 5715, "bottom": 3265, "left": 4130}, {"solidity": 0.997552363373726, "top": 865, "right": 3900, "bottom": 3235, "left": 2310}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716558f.jpg"} -{"rects": [{"solidity": 0.9974102605818256, "top": 455, "right": 5100, "bottom": 3755, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707828f.jpg"} -{"rects": [{"solidity": 0.9974103335124567, "top": 395, "right": 5760, "bottom": 3640, "left": 3710}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702493f.jpg"} -{"rects": [{"solidity": 0.997410536283089, "top": 265, "right": 3145, "bottom": 1885, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709985f.jpg"} -{"rects": [{"solidity": 0.9974106455003162, "top": 630, "right": 4885, "bottom": 3455, "left": 1180}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704994f.jpg"} -{"rects": [{"solidity": 0.9974108966335068, "top": 420, "right": 3110, "bottom": 2010, "left": 705}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700322f.jpg"} -{"rects": [{"solidity": 0.9974109041747576, "top": 2245, "right": 3185, "bottom": 3870, "left": 755}, {"solidity": 0.998178191446785, "top": 4095, "right": 3180, "bottom": 5715, "left": 755}, {"solidity": 0.9997585069936374, "top": 405, "right": 3180, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734339f.jpg"} -{"rects": [{"solidity": 0.9974110134710676, "top": 1335, "right": 4110, "bottom": 3985, "left": 800}, {"solidity": 0.9942192937079344, "top": 130, "right": 5010, "bottom": 1045, "left": 130}], "shape": {"h": 4280, "w": 5140}, "file": "/usr/local/google/home/danvk/milstein/716750f.jpg"} -{"rects": [{"solidity": 0.9974111637078593, "top": 605, "right": 2595, "bottom": 3540, "left": 360}, {"solidity": 0.9914768654473143, "top": 3715, "right": 2870, "bottom": 4735, "left": 130}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507632.jpg"} -{"rects": [{"solidity": 0.9974113038110982, "top": 365, "right": 5205, "bottom": 3560, "left": 1160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709109f.jpg"} -{"rects": [{"solidity": 0.997411471706614, "top": 675, "right": 2460, "bottom": 3690, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715517f.jpg"} -{"rects": [{"solidity": 0.9974115312109602, "top": 795, "right": 2020, "bottom": 3220, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719959f.jpg"} -{"rects": [{"solidity": 0.9974116407448977, "top": 2155, "right": 3145, "bottom": 3760, "left": 745}, {"solidity": 0.9530810439166929, "top": 915, "right": 3130, "bottom": 1900, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730141f.jpg"} -{"rects": [{"solidity": 0.9974121555043123, "top": 495, "right": 3550, "bottom": 2315, "left": 820}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/703404f.jpg"} -{"rects": [{"solidity": 0.9974121782120855, "top": 455, "right": 3240, "bottom": 2075, "left": 820}, {"solidity": 0.9967929644652743, "top": 4100, "right": 3220, "bottom": 5720, "left": 795}, {"solidity": 0.9966504498243175, "top": 2280, "right": 3230, "bottom": 3895, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732806f.jpg"} -{"rects": [{"solidity": 0.9974121996303142, "top": 455, "right": 2190, "bottom": 2545, "left": 705}, {"solidity": 0.9953811185972887, "top": 475, "right": 3930, "bottom": 2560, "left": 2435}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716234f.jpg"} -{"rects": [{"solidity": 0.9974123005597638, "top": 1355, "right": 2950, "bottom": 4890, "left": 845}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721260f.jpg"} -{"rects": [{"solidity": 0.9974123522422924, "top": 640, "right": 2650, "bottom": 2035, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725641f.jpg"} -{"rects": [{"solidity": 0.997412433146507, "top": 940, "right": 3900, "bottom": 3370, "left": 2285}, {"solidity": 0.9987176347772293, "top": 935, "right": 2055, "bottom": 3360, "left": 445}, {"solidity": 0.9973769162190259, "top": 935, "right": 5730, "bottom": 3360, "left": 4115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730440f.jpg"} -{"rects": [{"solidity": 0.9974126127047408, "top": 450, "right": 5730, "bottom": 4135, "left": 1185}], "shape": {"h": 4415, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/708360f.jpg"} -{"rects": [{"solidity": 0.9974126636352626, "top": 955, "right": 2645, "bottom": 3985, "left": 375}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508149.jpg"} -{"rects": [{"solidity": 0.9974126979949904, "top": 1385, "right": 3450, "bottom": 5080, "left": 600}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/731203f.jpg"} -{"rects": [{"solidity": 0.9974127115173341, "top": 450, "right": 3990, "bottom": 2850, "left": 2375}, {"solidity": 0.9966318702376854, "top": 465, "right": 5775, "bottom": 2870, "left": 4160}, {"solidity": 0.9973738571717159, "top": 450, "right": 2215, "bottom": 2850, "left": 605}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701470f.jpg"} -{"rects": [{"solidity": 0.9974127564856982, "top": 3985, "right": 3110, "bottom": 5620, "left": 690}, {"solidity": 0.9962644954512483, "top": 2205, "right": 3130, "bottom": 3855, "left": 715}, {"solidity": 0.9967212585720049, "top": 455, "right": 3140, "bottom": 2085, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704524f.jpg"} -{"rects": [{"solidity": 0.9974130275300205, "top": 790, "right": 5670, "bottom": 3205, "left": 4050}, {"solidity": 0.997834269763099, "top": 795, "right": 3830, "bottom": 3210, "left": 2220}, {"solidity": 0.9973145206996086, "top": 810, "right": 1985, "bottom": 3200, "left": 385}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717981f.jpg"} -{"rects": [{"solidity": 0.9974132058714479, "top": 445, "right": 5050, "bottom": 3705, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703831f.jpg"} -{"rects": [{"solidity": 0.9974132214584441, "top": 780, "right": 3840, "bottom": 3175, "left": 2240}, {"solidity": 0.9952262601655378, "top": 785, "right": 5685, "bottom": 3180, "left": 4080}, {"solidity": 0.9968829706184372, "top": 785, "right": 2000, "bottom": 3175, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724351f.jpg"} -{"rects": [{"solidity": 0.9974132866837816, "top": 575, "right": 3180, "bottom": 2180, "left": 765}, {"solidity": 0.9974935536821826, "top": 2315, "right": 3185, "bottom": 3920, "left": 790}, {"solidity": 0.9961092575909077, "top": 4050, "right": 3205, "bottom": 5640, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733136f.jpg"} -{"rects": [{"solidity": 0.9974135196203474, "top": 465, "right": 3155, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712266f.jpg"} -{"rects": [{"solidity": 0.9974136429817502, "top": 1095, "right": 3510, "bottom": 5100, "left": 435}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722202f.jpg"} -{"rects": [{"solidity": 0.9974136480737151, "top": 525, "right": 2770, "bottom": 3575, "left": 730}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711502f.jpg"} -{"rects": [{"solidity": 0.9974136611637594, "top": 1395, "right": 3640, "bottom": 5305, "left": 525}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/719701f.jpg"} -{"rects": [{"solidity": 0.9974141730740976, "top": 745, "right": 3860, "bottom": 3150, "left": 2255}, {"solidity": 0.997968590018286, "top": 735, "right": 2035, "bottom": 3140, "left": 435}, {"solidity": 0.9957882109453786, "top": 765, "right": 5690, "bottom": 3165, "left": 4100}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708927f.jpg"} -{"rects": [{"solidity": 0.9974145898731859, "top": 695, "right": 2680, "bottom": 3730, "left": 680}, {"solidity": 0.9958585536795158, "top": 725, "right": 5125, "bottom": 3150, "left": 3495}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715688f.jpg"} -{"rects": [{"solidity": 0.9974146317334168, "top": 410, "right": 3165, "bottom": 2000, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718651f.jpg"} -{"rects": [{"solidity": 0.9974149115704656, "top": 815, "right": 3940, "bottom": 3225, "left": 2330}, {"solidity": 0.9958983472076958, "top": 815, "right": 2145, "bottom": 3215, "left": 545}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710124f.jpg"} -{"rects": [{"solidity": 0.9974150133722732, "top": 405, "right": 3100, "bottom": 2030, "left": 670}, {"solidity": 0.9960545286030585, "top": 2280, "right": 3080, "bottom": 3900, "left": 655}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733649f.jpg"} -{"rects": [{"solidity": 0.9974151721267769, "top": 710, "right": 2095, "bottom": 3115, "left": 485}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709226f.jpg"} -{"rects": [{"solidity": 0.9974151744836708, "top": 815, "right": 5770, "bottom": 3255, "left": 4145}, {"solidity": 0.9975010092078199, "top": 805, "right": 2025, "bottom": 3235, "left": 405}, {"solidity": 0.9964597630444115, "top": 820, "right": 3905, "bottom": 3245, "left": 2280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730515f.jpg"} -{"rects": [{"solidity": 0.99741519274843, "top": 490, "right": 5085, "bottom": 3690, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701179f.jpg"} -{"rects": [{"solidity": 0.9974153339976906, "top": 505, "right": 2980, "bottom": 2145, "left": 550}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703136f.jpg"} -{"rects": [{"solidity": 0.9974154203571947, "top": 2115, "right": 5375, "bottom": 3740, "left": 2970}, {"solidity": 0.9741541722270194, "top": 670, "right": 5190, "bottom": 2040, "left": 3275}, {"solidity": 0.996401028277635, "top": 2265, "right": 2635, "bottom": 3590, "left": 750}, {"solidity": 0.9897469888252535, "top": 680, "right": 2670, "bottom": 1940, "left": 710}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701081f.jpg"} -{"rects": [{"solidity": 0.9974156566515265, "top": 715, "right": 2690, "bottom": 2135, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703944f.jpg"} -{"rects": [{"solidity": 0.9974156801357732, "top": 415, "right": 3140, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702578f.jpg"} -{"rects": [{"solidity": 0.9974158771643253, "top": 840, "right": 1970, "bottom": 3245, "left": 365}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715557f.jpg"} -{"rects": [{"solidity": 0.9974160206718347, "top": 795, "right": 2335, "bottom": 3505, "left": 520}], "shape": {"h": 4425, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711362f.jpg"} -{"rects": [{"solidity": 0.9974160413433385, "top": 955, "right": 3420, "bottom": 3010, "left": 355}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708149f.jpg"} -{"rects": [{"solidity": 0.9974160939278207, "top": 2465, "right": 2510, "bottom": 3960, "left": 425}, {"solidity": 0.9985690591563954, "top": 680, "right": 2520, "bottom": 2165, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716008f.jpg"} -{"rects": [{"solidity": 0.9974162910261888, "top": 2280, "right": 3170, "bottom": 3990, "left": 635}, {"solidity": 0.9980329575740007, "top": 4135, "right": 3170, "bottom": 5815, "left": 630}, {"solidity": 0.9975702161114791, "top": 415, "right": 3155, "bottom": 2130, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723586f.jpg"} -{"rects": [{"solidity": 0.997416410471844, "top": 510, "right": 5135, "bottom": 3780, "left": 1110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707594f.jpg"} -{"rects": [{"solidity": 0.9974164679334308, "top": 885, "right": 3915, "bottom": 3305, "left": 2285}, {"solidity": 0.9972570368915661, "top": 885, "right": 2025, "bottom": 3305, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728545f.jpg"} -{"rects": [{"solidity": 0.9974166792622076, "top": 415, "right": 5325, "bottom": 3640, "left": 1345}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721602f.jpg"} -{"rects": [{"solidity": 0.9974167149673155, "top": 500, "right": 5075, "bottom": 3770, "left": 1000}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731369f.jpg"} -{"rects": [{"solidity": 0.9974168077665938, "top": 285, "right": 3365, "bottom": 2735, "left": 340}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509917.jpg"} -{"rects": [{"solidity": 0.9974168740803411, "top": 770, "right": 3855, "bottom": 3385, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718600f.jpg"} -{"rects": [{"solidity": 0.9974176530927918, "top": 355, "right": 3070, "bottom": 1955, "left": 655}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724602f.jpg"} -{"rects": [{"solidity": 0.9974178652852407, "top": 855, "right": 2055, "bottom": 3275, "left": 435}, {"solidity": 0.9954413166095758, "top": 850, "right": 3925, "bottom": 3275, "left": 2295}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729623f.jpg"} -{"rects": [{"solidity": 0.9974178878708173, "top": 775, "right": 3810, "bottom": 3195, "left": 2185}, {"solidity": 0.9968342060802625, "top": 785, "right": 2020, "bottom": 3205, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706090f.jpg"} -{"rects": [{"solidity": 0.9974179780405956, "top": 870, "right": 3495, "bottom": 2355, "left": 1410}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507562.jpg"} -{"rects": [{"solidity": 0.997418074769194, "top": 440, "right": 3155, "bottom": 2050, "left": 735}, {"solidity": 0.9953474969727972, "top": 2275, "right": 3160, "bottom": 3890, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720813f.jpg"} -{"rects": [{"solidity": 0.9974183138362243, "top": 1305, "right": 5555, "bottom": 2925, "left": 3145}, {"solidity": 0.9946771469856026, "top": 1380, "right": 2635, "bottom": 2860, "left": 665}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721715f.jpg"} -{"rects": [{"solidity": 0.9974188912839219, "top": 660, "right": 2085, "bottom": 1835, "left": 140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723136f.jpg"} -{"rects": [{"solidity": 0.9974189008990929, "top": 465, "right": 4615, "bottom": 3340, "left": 990}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731794f.jpg"} -{"rects": [{"solidity": 0.997418978235863, "top": 330, "right": 2220, "bottom": 1545, "left": 405}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715929f.jpg"} -{"rects": [{"solidity": 0.9974191277825029, "top": 745, "right": 1975, "bottom": 3155, "left": 370}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724527f.jpg"} -{"rects": [{"solidity": 0.9974193177366194, "top": 445, "right": 3105, "bottom": 1920, "left": 725}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/702805f.jpg"} -{"rects": [{"solidity": 0.9974195028242108, "top": 930, "right": 5885, "bottom": 2970, "left": 2650}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703749f.jpg"} -{"rects": [{"solidity": 0.9974195824296428, "top": 845, "right": 5825, "bottom": 3245, "left": 4215}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717617f.jpg"} -{"rects": [{"solidity": 0.9974196846317394, "top": 250, "right": 3915, "bottom": 2700, "left": 755}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508703.jpg"} -{"rects": [{"solidity": 0.9974197278632715, "top": 515, "right": 2795, "bottom": 3350, "left": 730}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731928f.jpg"} -{"rects": [{"solidity": 0.9974198196794735, "top": 660, "right": 2715, "bottom": 2080, "left": 890}, {"solidity": 0.9981343004374916, "top": 2145, "right": 2710, "bottom": 3555, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703068f.jpg"} -{"rects": [{"solidity": 0.9974199909091491, "top": 400, "right": 3055, "bottom": 2025, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729809f.jpg"} -{"rects": [{"solidity": 0.9974202122461743, "top": 665, "right": 3305, "bottom": 2720, "left": 480}, {"solidity": 0.995914958040224, "top": 3355, "right": 3280, "bottom": 5435, "left": 445}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733817f.jpg"} -{"rects": [{"solidity": 0.9974202590389692, "top": 930, "right": 2725, "bottom": 3955, "left": 300}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516947.jpg"} -{"rects": [{"solidity": 0.9974204094142286, "top": 1330, "right": 2395, "bottom": 2775, "left": 345}, {"solidity": 0.9953123468522409, "top": 2870, "right": 2375, "bottom": 4320, "left": 325}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508101.jpg"} -{"rects": [{"solidity": 0.9974205561475972, "top": 655, "right": 2375, "bottom": 3470, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706837f.jpg"} -{"rects": [{"solidity": 0.9974209958626463, "top": 355, "right": 2990, "bottom": 1985, "left": 585}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702574f.jpg"} -{"rects": [{"solidity": 0.9974211092421955, "top": 355, "right": 3140, "bottom": 1985, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702669f.jpg"} -{"rects": [{"solidity": 0.9974211286655534, "top": 895, "right": 2585, "bottom": 4010, "left": 215}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507761.jpg"} -{"rects": [{"solidity": 0.9974212448167021, "top": 220, "right": 3030, "bottom": 1735, "left": 995}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709927f.jpg"} -{"rects": [{"solidity": 0.9974213081056985, "top": 1040, "right": 3490, "bottom": 4960, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708234f.jpg"} -{"rects": [{"solidity": 0.9974215094730633, "top": 465, "right": 3325, "bottom": 2520, "left": 255}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711074f.jpg"} -{"rects": [{"solidity": 0.9974216953324911, "top": 2285, "right": 3065, "bottom": 3895, "left": 650}, {"solidity": 0.9955462422458381, "top": 385, "right": 3035, "bottom": 1995, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729044f.jpg"} -{"rects": [{"solidity": 0.9974217598275111, "top": 2225, "right": 3075, "bottom": 3835, "left": 665}, {"solidity": 0.9954680566362692, "top": 4080, "right": 3070, "bottom": 5705, "left": 650}, {"solidity": 0.9969834333420298, "top": 365, "right": 3065, "bottom": 1970, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709406f.jpg"} -{"rects": [{"solidity": 0.9974219083014211, "top": 615, "right": 2605, "bottom": 3665, "left": 195}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/707088f.jpg"} -{"rects": [{"solidity": 0.9974220027575592, "top": 3650, "right": 3120, "bottom": 5280, "left": 705}, {"solidity": 0.9956901447760855, "top": 1760, "right": 3115, "bottom": 3375, "left": 700}, {"solidity": 0.9960427537778123, "top": 300, "right": 2675, "bottom": 1520, "left": 1070}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731109f.jpg"} -{"rects": [{"solidity": 0.9974221561179606, "top": 760, "right": 2075, "bottom": 3150, "left": 495}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709718f.jpg"} -{"rects": [{"solidity": 0.9974225169929999, "top": 520, "right": 3095, "bottom": 2155, "left": 665}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706164f.jpg"} -{"rects": [{"solidity": 0.9974225720596462, "top": 900, "right": 1995, "bottom": 3315, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728985f.jpg"} -{"rects": [{"solidity": 0.9974229233084075, "top": 780, "right": 5540, "bottom": 3190, "left": 3930}, {"solidity": 0.9976865559944555, "top": 785, "right": 3795, "bottom": 3190, "left": 2185}, {"solidity": 0.9993504183110223, "top": 790, "right": 2055, "bottom": 3190, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733108f.jpg"} -{"rects": [{"solidity": 0.9974230096359445, "top": 1955, "right": 5795, "bottom": 3135, "left": 3865}, {"solidity": 0.9969611534111052, "top": 415, "right": 2360, "bottom": 1595, "left": 455}, {"solidity": 0.9977233461033971, "top": 850, "right": 3700, "bottom": 2730, "left": 2535}, {"solidity": 0.9972117444351308, "top": 1995, "right": 2340, "bottom": 3155, "left": 470}, {"solidity": 0.9949633886042305, "top": 425, "right": 5765, "bottom": 1565, "left": 3860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719833f.jpg"} -{"rects": [{"solidity": 0.9974230103834626, "top": 730, "right": 1985, "bottom": 3130, "left": 385}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711837f.jpg"} -{"rects": [{"solidity": 0.9974232460596799, "top": 495, "right": 3885, "bottom": 2580, "left": 2400}, {"solidity": 0.9976729710707994, "top": 500, "right": 2135, "bottom": 2585, "left": 650}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716126f.jpg"} -{"rects": [{"solidity": 0.9974235433424523, "top": 495, "right": 2165, "bottom": 2580, "left": 685}, {"solidity": 0.9945684923364502, "top": 500, "right": 3920, "bottom": 2585, "left": 2440}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716163f.jpg"} -{"rects": [{"solidity": 0.9974237117732072, "top": 485, "right": 3205, "bottom": 2075, "left": 810}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711606f.jpg"} -{"rects": [{"solidity": 0.9974237620821684, "top": 405, "right": 3245, "bottom": 2020, "left": 830}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721102f.jpg"} -{"rects": [{"solidity": 0.9974242986868311, "top": 715, "right": 1980, "bottom": 3095, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727956f.jpg"} -{"rects": [{"solidity": 0.9974243202428498, "top": 430, "right": 2720, "bottom": 3660, "left": 675}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733002f.jpg"} -{"rects": [{"solidity": 0.9974244266225872, "top": 705, "right": 2710, "bottom": 2145, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702563f.jpg"} -{"rects": [{"solidity": 0.9974244806416954, "top": 840, "right": 2575, "bottom": 3565, "left": 755}], "shape": {"h": 4415, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711709f.jpg"} -{"rects": [{"solidity": 0.9974245651117979, "top": 725, "right": 2085, "bottom": 3435, "left": 345}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719894f.jpg"} -{"rects": [{"solidity": 0.9974246238829209, "top": 470, "right": 4015, "bottom": 3705, "left": 515}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726322f.jpg"} -{"rects": [{"solidity": 0.9974247537807566, "top": 3100, "right": 3365, "bottom": 5040, "left": 630}, {"solidity": 0.9938309685379395, "top": 535, "right": 3405, "bottom": 2475, "left": 665}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/714577f.jpg"} -{"rects": [{"solidity": 0.9974247576540585, "top": 1130, "right": 3545, "bottom": 5180, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721423f.jpg"} -{"rects": [{"solidity": 0.9974249372450071, "top": 730, "right": 2015, "bottom": 3150, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702466f.jpg"} -{"rects": [{"solidity": 0.9974250128586589, "top": 340, "right": 2955, "bottom": 1960, "left": 565}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702273f.jpg"} -{"rects": [{"solidity": 0.9974250199976632, "top": 650, "right": 2575, "bottom": 3445, "left": 570}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711134f.jpg"} -{"rects": [{"solidity": 0.9974251209609423, "top": 775, "right": 3820, "bottom": 3180, "left": 2205}, {"solidity": 0.9955869373345102, "top": 785, "right": 2020, "bottom": 3195, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716636f.jpg"} -{"rects": [{"solidity": 0.9974251497005988, "top": 350, "right": 3760, "bottom": 2790, "left": 745}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509911.jpg"} -{"rects": [{"solidity": 0.9974251679412567, "top": 770, "right": 2020, "bottom": 3205, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702559f.jpg"} -{"rects": [{"solidity": 0.9974252194160845, "top": 455, "right": 3175, "bottom": 2075, "left": 745}, {"solidity": 0.9967586023554583, "top": 2365, "right": 3155, "bottom": 3985, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721036f.jpg"} -{"rects": [{"solidity": 0.9974254943890637, "top": 805, "right": 2045, "bottom": 3215, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716757f.jpg"} -{"rects": [{"solidity": 0.9974256836808822, "top": 655, "right": 2710, "bottom": 2080, "left": 895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731984f.jpg"} -{"rects": [{"solidity": 0.9974257175041471, "top": 780, "right": 2025, "bottom": 3190, "left": 415}, {"solidity": 0.9980311623965057, "top": 780, "right": 3880, "bottom": 3185, "left": 2275}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722951f.jpg"} -{"rects": [{"solidity": 0.9974258221496303, "top": 1010, "right": 3470, "bottom": 5085, "left": 255}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724469f.jpg"} -{"rects": [{"solidity": 0.9974259712724847, "top": 290, "right": 3885, "bottom": 2760, "left": 860}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509789.jpg"} -{"rects": [{"solidity": 0.997425983118815, "top": 500, "right": 5255, "bottom": 3600, "left": 1240}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726481f.jpg"} -{"rects": [{"solidity": 0.9974264960785674, "top": 595, "right": 2510, "bottom": 2075, "left": 420}, {"solidity": 0.9990566076431188, "top": 2450, "right": 2500, "bottom": 3925, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716057f.jpg"} -{"rects": [{"solidity": 0.9974265501347374, "top": 800, "right": 2035, "bottom": 3200, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712545f.jpg"} -{"rects": [{"solidity": 0.9974266153270023, "top": 415, "right": 3225, "bottom": 2040, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704011f.jpg"} -{"rects": [{"solidity": 0.9974268974981526, "top": 590, "right": 3630, "bottom": 4335, "left": 830}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708348f.jpg"} -{"rects": [{"solidity": 0.9974269011531565, "top": 3365, "right": 3330, "bottom": 5285, "left": 630}, {"solidity": 0.9929681616730245, "top": 725, "right": 3325, "bottom": 2635, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713694f.jpg"} -{"rects": [{"solidity": 0.9974269465358778, "top": 785, "right": 2045, "bottom": 3190, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722576f.jpg"} -{"rects": [{"solidity": 0.9974271162456169, "top": 480, "right": 5695, "bottom": 3695, "left": 3680}, {"solidity": 0.9983125516264799, "top": 435, "right": 3260, "bottom": 3655, "left": 1265}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725148f.jpg"} -{"rects": [{"solidity": 0.9974272064045452, "top": 395, "right": 3035, "bottom": 2025, "left": 635}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704761f.jpg"} -{"rects": [{"solidity": 0.9974274049077199, "top": 325, "right": 5135, "bottom": 3580, "left": 1035}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702460f.jpg"} -{"rects": [{"solidity": 0.9974275625747849, "top": 410, "right": 3095, "bottom": 2020, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728325f.jpg"} -{"rects": [{"solidity": 0.9974275855539995, "top": 795, "right": 2160, "bottom": 3200, "left": 555}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730777f.jpg"} -{"rects": [{"solidity": 0.9974276066463553, "top": 480, "right": 5110, "bottom": 3730, "left": 1005}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710423f.jpg"} -{"rects": [{"solidity": 0.9974277506284251, "top": 415, "right": 4785, "bottom": 3655, "left": 780}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715252f.jpg"} -{"rects": [{"solidity": 0.9974279156459344, "top": 830, "right": 2040, "bottom": 3250, "left": 420}, {"solidity": 0.9984844903127196, "top": 835, "right": 3865, "bottom": 3255, "left": 2260}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729268f.jpg"} -{"rects": [{"solidity": 0.9974279869890346, "top": 260, "right": 3265, "bottom": 2760, "left": 210}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509887.jpg"} -{"rects": [{"solidity": 0.9974280672531695, "top": 845, "right": 3915, "bottom": 3270, "left": 2285}, {"solidity": 0.9976640093568153, "top": 845, "right": 2015, "bottom": 3265, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700879f.jpg"} -{"rects": [{"solidity": 0.9974284340776935, "top": 860, "right": 2010, "bottom": 3250, "left": 405}, {"solidity": 0.9966575508963841, "top": 865, "right": 3855, "bottom": 3260, "left": 2255}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729668f.jpg"} -{"rects": [{"solidity": 0.9974285760376841, "top": 805, "right": 2055, "bottom": 3225, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705196f.jpg"} -{"rects": [{"solidity": 0.9974286034122861, "top": 795, "right": 2010, "bottom": 3200, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721202f.jpg"} -{"rects": [{"solidity": 0.9974286144298601, "top": 2055, "right": 3175, "bottom": 3680, "left": 755}, {"solidity": 0.9974087495845286, "top": 250, "right": 3160, "bottom": 1870, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730529f.jpg"} -{"rects": [{"solidity": 0.9974287147754829, "top": 530, "right": 4960, "bottom": 3780, "left": 875}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705067f.jpg"} -{"rects": [{"solidity": 0.9974288084662487, "top": 825, "right": 3390, "bottom": 2810, "left": 535}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707546f.jpg"} -{"rects": [{"solidity": 0.9974289000654052, "top": 485, "right": 3055, "bottom": 1965, "left": 1165}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726867f.jpg"} -{"rects": [{"solidity": 0.9974289493209458, "top": 2265, "right": 3170, "bottom": 3880, "left": 745}, {"solidity": 0.9971968690287976, "top": 365, "right": 3175, "bottom": 1975, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719551f.jpg"} -{"rects": [{"solidity": 0.9974294136999026, "top": 2305, "right": 3045, "bottom": 3920, "left": 625}, {"solidity": 0.9968920621587568, "top": 415, "right": 3035, "bottom": 2035, "left": 615}, {"solidity": 0.9963949108427502, "top": 4160, "right": 3035, "bottom": 5775, "left": 620}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710739f.jpg"} -{"rects": [{"solidity": 0.9974296896804637, "top": 400, "right": 2970, "bottom": 2010, "left": 560}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729605f.jpg"} -{"rects": [{"solidity": 0.9974298851775893, "top": 415, "right": 3185, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702363f.jpg"} -{"rects": [{"solidity": 0.9974299127566763, "top": 440, "right": 3005, "bottom": 2025, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729515f.jpg"} -{"rects": [{"solidity": 0.9974302570962719, "top": 690, "right": 2495, "bottom": 2180, "left": 410}, {"solidity": 0.995356596919739, "top": 2435, "right": 2500, "bottom": 3920, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716171f.jpg"} -{"rects": [{"solidity": 0.9974303135888501, "top": 435, "right": 3120, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728661f.jpg"} -{"rects": [{"solidity": 0.9974303562707287, "top": 835, "right": 1965, "bottom": 3265, "left": 340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707285f.jpg"} -{"rects": [{"solidity": 0.9974311783412566, "top": 400, "right": 3105, "bottom": 2005, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729339f.jpg"} -{"rects": [{"solidity": 0.9974316215274988, "top": 445, "right": 3200, "bottom": 2030, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705378f.jpg"} -{"rects": [{"solidity": 0.9974318769881982, "top": 785, "right": 1940, "bottom": 3195, "left": 315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712052f.jpg"} -{"rects": [{"solidity": 0.9974318792375592, "top": 2240, "right": 3275, "bottom": 3870, "left": 855}, {"solidity": 0.998238194777713, "top": 395, "right": 3275, "bottom": 2010, "left": 855}, {"solidity": 0.9979291257814163, "top": 4095, "right": 3255, "bottom": 5715, "left": 845}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703736f.jpg"} -{"rects": [{"solidity": 0.9974319033385256, "top": 4145, "right": 3135, "bottom": 5755, "left": 720}, {"solidity": 0.9946711829451749, "top": 2310, "right": 3130, "bottom": 3930, "left": 725}, {"solidity": 0.9953643101089534, "top": 435, "right": 3135, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/732170f.jpg"} -{"rects": [{"solidity": 0.9974322268370812, "top": 395, "right": 3155, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701923f.jpg"} -{"rects": [{"solidity": 0.9974324601384705, "top": 710, "right": 2380, "bottom": 3145, "left": 735}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702249f.jpg"} -{"rects": [{"solidity": 0.9974325561567787, "top": 2170, "right": 2725, "bottom": 3600, "left": 905}, {"solidity": 0.9966735702702174, "top": 700, "right": 2715, "bottom": 2125, "left": 905}, {"solidity": 0.9943992181725279, "top": 705, "right": 5155, "bottom": 2120, "left": 3345}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734761f.jpg"} -{"rects": [{"solidity": 0.9974325767386908, "top": 785, "right": 2110, "bottom": 3195, "left": 500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734076f.jpg"} -{"rects": [{"solidity": 0.9974326266328656, "top": 300, "right": 3185, "bottom": 1910, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723701f.jpg"} -{"rects": [{"solidity": 0.9974327502985751, "top": 435, "right": 3185, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724944f.jpg"} -{"rects": [{"solidity": 0.9974328237094959, "top": 980, "right": 3245, "bottom": 5025, "left": 705}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712503f.jpg"} -{"rects": [{"solidity": 0.9974329115583567, "top": 1025, "right": 3485, "bottom": 5045, "left": 245}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722449f.jpg"} -{"rects": [{"solidity": 0.9974329704280465, "top": 465, "right": 5140, "bottom": 3755, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724861f.jpg"} -{"rects": [{"solidity": 0.9974330155162068, "top": 720, "right": 2740, "bottom": 2150, "left": 890}, {"solidity": 0.9983443312485943, "top": 2190, "right": 2730, "bottom": 3620, "left": 890}, {"solidity": 0.9940922506027535, "top": 2125, "right": 5240, "bottom": 3505, "left": 3435}, {"solidity": 0.9940683714840114, "top": 720, "right": 5250, "bottom": 2065, "left": 3455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727356f.jpg"} -{"rects": [{"solidity": 0.997433057696468, "top": 435, "right": 3110, "bottom": 2050, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728554f.jpg"} -{"rects": [{"solidity": 0.9974332745754523, "top": 790, "right": 3575, "bottom": 2755, "left": 180}, {"solidity": 0.9968978129770415, "top": 3255, "right": 3610, "bottom": 5225, "left": 205}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/706348f.jpg"} -{"rects": [{"solidity": 0.9974334295797241, "top": 430, "right": 3205, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723514f.jpg"} -{"rects": [{"solidity": 0.9974334615325682, "top": 870, "right": 3700, "bottom": 3145, "left": 2250}, {"solidity": 0.9967728259835094, "top": 940, "right": 1845, "bottom": 3080, "left": 480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710714f.jpg"} -{"rects": [{"solidity": 0.9974335036740908, "top": 400, "right": 3190, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702898f.jpg"} -{"rects": [{"solidity": 0.9974335937537859, "top": 1400, "right": 3610, "bottom": 5410, "left": 345}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724203f.jpg"} -{"rects": [{"solidity": 0.9974336458107185, "top": 560, "right": 3080, "bottom": 2180, "left": 675}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704549f.jpg"} -{"rects": [{"solidity": 0.9974337866130049, "top": 475, "right": 3440, "bottom": 2295, "left": 715}], "shape": {"h": 4405, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711627f.jpg"} -{"rects": [{"solidity": 0.9974339505091213, "top": 375, "right": 5075, "bottom": 3610, "left": 1080}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708275f.jpg"} -{"rects": [{"solidity": 0.9974341577388067, "top": 450, "right": 5030, "bottom": 3695, "left": 1020}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713028f.jpg"} -{"rects": [{"solidity": 0.9974341797037485, "top": 2195, "right": 2960, "bottom": 3700, "left": 1045}, {"solidity": 0.9944693897369261, "top": 475, "right": 2935, "bottom": 1920, "left": 1040}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733450f.jpg"} -{"rects": [{"solidity": 0.9974342384150287, "top": 395, "right": 3220, "bottom": 2020, "left": 780}, {"solidity": 0.9972277493348835, "top": 2165, "right": 3220, "bottom": 3790, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706682f.jpg"} -{"rects": [{"solidity": 0.9974343624390661, "top": 515, "right": 5130, "bottom": 3780, "left": 1110}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712371f.jpg"} -{"rects": [{"solidity": 0.99743446589036, "top": 3240, "right": 3225, "bottom": 5255, "left": 405}, {"solidity": 0.9968476722466492, "top": 820, "right": 3225, "bottom": 2830, "left": 405}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733830f.jpg"} -{"rects": [{"solidity": 0.9974345938497147, "top": 790, "right": 2095, "bottom": 3170, "left": 510}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721011f.jpg"} -{"rects": [{"solidity": 0.9974347412194999, "top": 750, "right": 2670, "bottom": 2155, "left": 880}, {"solidity": 0.9963085203615314, "top": 2210, "right": 2685, "bottom": 3590, "left": 885}, {"solidity": 0.9943909513119732, "top": 740, "right": 5245, "bottom": 1855, "left": 3405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725041f.jpg"} -{"rects": [{"solidity": 0.9974347924234029, "top": 650, "right": 2445, "bottom": 3690, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713569f.jpg"} -{"rects": [{"solidity": 0.9974349212085232, "top": 415, "right": 3275, "bottom": 2030, "left": 860}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/727716f.jpg"} -{"rects": [{"solidity": 0.997434955723838, "top": 1620, "right": 2410, "bottom": 2815, "left": 600}, {"solidity": 0.9965457988497686, "top": 2995, "right": 2420, "bottom": 4190, "left": 615}, {"solidity": 0.9953311195892798, "top": 270, "right": 2375, "bottom": 1460, "left": 575}], "shape": {"h": 4565, "w": 2955}, "file": "/usr/local/google/home/danvk/milstein/707740f.jpg"} -{"rects": [{"solidity": 0.9974349823565045, "top": 1025, "right": 3385, "bottom": 5085, "left": 365}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722599f.jpg"} -{"rects": [{"solidity": 0.9974350155731198, "top": 580, "right": 4950, "bottom": 3655, "left": 1130}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700687f.jpg"} -{"rects": [{"solidity": 0.9974351486835061, "top": 2060, "right": 2835, "bottom": 3480, "left": 1010}, {"solidity": 0.99821249680803, "top": 625, "right": 2830, "bottom": 2040, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705219f.jpg"} -{"rects": [{"solidity": 0.9974352888431768, "top": 460, "right": 3110, "bottom": 2060, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729505f.jpg"} -{"rects": [{"solidity": 0.9974358034629923, "top": 130, "right": 3755, "bottom": 2890, "left": 140}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509981.jpg"} -{"rects": [{"solidity": 0.9974360912309669, "top": 520, "right": 4985, "bottom": 3745, "left": 945}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700623f.jpg"} -{"rects": [{"solidity": 0.9974361102951507, "top": 315, "right": 3195, "bottom": 1940, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704393f.jpg"} -{"rects": [{"solidity": 0.9974362939102538, "top": 765, "right": 4975, "bottom": 3475, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732189f.jpg"} -{"rects": [{"solidity": 0.9974363373941479, "top": 2240, "right": 3145, "bottom": 3810, "left": 760}, {"solidity": 0.9887000604495246, "top": 435, "right": 3135, "bottom": 1995, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701595f.jpg"} -{"rects": [{"solidity": 0.9974363639908242, "top": 805, "right": 3800, "bottom": 3215, "left": 2190}, {"solidity": 0.9954792131810107, "top": 805, "right": 5570, "bottom": 3215, "left": 3950}, {"solidity": 0.9935246803039314, "top": 805, "right": 2040, "bottom": 3205, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709320f.jpg"} -{"rects": [{"solidity": 0.9974363776080176, "top": 420, "right": 3210, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703295f.jpg"} -{"rects": [{"solidity": 0.9974364177107934, "top": 420, "right": 5070, "bottom": 3710, "left": 985}], "shape": {"h": 4030, "w": 6230}, "file": "/usr/local/google/home/danvk/milstein/707029f.jpg"} -{"rects": [{"solidity": 0.9974364653841393, "top": 315, "right": 3145, "bottom": 1925, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712252f.jpg"} -{"rects": [{"solidity": 0.9974365153506646, "top": 980, "right": 3530, "bottom": 5045, "left": 300}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708437f.jpg"} -{"rects": [{"solidity": 0.9974367168890046, "top": 760, "right": 2055, "bottom": 3160, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712235f.jpg"} -{"rects": [{"solidity": 0.9974368446360505, "top": 455, "right": 3275, "bottom": 2470, "left": 240}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714044f.jpg"} -{"rects": [{"solidity": 0.9974372549720176, "top": 720, "right": 2055, "bottom": 3135, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723251f.jpg"} -{"rects": [{"solidity": 0.9974373259052924, "top": 790, "right": 1970, "bottom": 3190, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723875f.jpg"} -{"rects": [{"solidity": 0.9974375012610722, "top": 810, "right": 2025, "bottom": 3180, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708875f.jpg"} -{"rects": [{"solidity": 0.9974376802637, "top": 425, "right": 3115, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705201f.jpg"} -{"rects": [{"solidity": 0.9974378354834164, "top": 690, "right": 3880, "bottom": 3120, "left": 2260}, {"solidity": 0.9965874138434252, "top": 715, "right": 5740, "bottom": 3145, "left": 4115}, {"solidity": 0.998830669321015, "top": 710, "right": 2005, "bottom": 3135, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713477f.jpg"} -{"rects": [{"solidity": 0.9974378614632806, "top": 385, "right": 4950, "bottom": 3635, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718194f.jpg"} -{"rects": [{"solidity": 0.9974379771606607, "top": 730, "right": 3870, "bottom": 3160, "left": 2260}, {"solidity": 0.9958838988946432, "top": 720, "right": 2030, "bottom": 3135, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727007f.jpg"} -{"rects": [{"solidity": 0.9974380062090673, "top": 3315, "right": 3280, "bottom": 5380, "left": 440}, {"solidity": 0.9970475192173306, "top": 620, "right": 3285, "bottom": 2665, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733821f.jpg"} -{"rects": [{"solidity": 0.9974380189049926, "top": 1320, "right": 2775, "bottom": 2950, "left": 355}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720606f.jpg"} -{"rects": [{"solidity": 0.9974381453341126, "top": 390, "right": 3310, "bottom": 1995, "left": 895}, {"solidity": 0.9962934413592902, "top": 2205, "right": 3275, "bottom": 3835, "left": 910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726904f.jpg"} -{"rects": [{"solidity": 0.9974383475308517, "top": 440, "right": 3075, "bottom": 2010, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729213f.jpg"} -{"rects": [{"solidity": 0.9974388015135525, "top": 385, "right": 3005, "bottom": 2015, "left": 600}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702270f.jpg"} -{"rects": [{"solidity": 0.9974389175735549, "top": 990, "right": 3385, "bottom": 4775, "left": 370}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714584f.jpg"} -{"rects": [{"solidity": 0.9974389558219879, "top": 575, "right": 3215, "bottom": 2180, "left": 800}, {"solidity": 0.9961182578767425, "top": 4085, "right": 3240, "bottom": 5690, "left": 830}, {"solidity": 0.9954830015634506, "top": 2335, "right": 3220, "bottom": 3935, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733256f.jpg"} -{"rects": [{"solidity": 0.9974390993434339, "top": 925, "right": 2720, "bottom": 4080, "left": 265}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508861.jpg"} -{"rects": [{"solidity": 0.9974391763608249, "top": 2210, "right": 3170, "bottom": 3815, "left": 765}, {"solidity": 0.9986234587479033, "top": 390, "right": 3165, "bottom": 1990, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715569f.jpg"} -{"rects": [{"solidity": 0.9974393370585188, "top": 415, "right": 3170, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702526f.jpg"} -{"rects": [{"solidity": 0.9974398361495136, "top": 405, "right": 3180, "bottom": 2020, "left": 755}, {"solidity": 0.9973961955343945, "top": 2200, "right": 3180, "bottom": 3815, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733741f.jpg"} -{"rects": [{"solidity": 0.9974398773717362, "top": 420, "right": 3095, "bottom": 2030, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702118f.jpg"} -{"rects": [{"solidity": 0.997440080473037, "top": 425, "right": 3170, "bottom": 2040, "left": 750}, {"solidity": 0.9964863713798978, "top": 3980, "right": 3185, "bottom": 5595, "left": 765}, {"solidity": 0.996039533422711, "top": 2195, "right": 3180, "bottom": 3805, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705620f.jpg"} -{"rects": [{"solidity": 0.9974400940031055, "top": 775, "right": 2045, "bottom": 3190, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717183f.jpg"} -{"rects": [{"solidity": 0.9974402152184372, "top": 285, "right": 3440, "bottom": 2750, "left": 425}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509915.jpg"} -{"rects": [{"solidity": 0.9974403149230808, "top": 410, "right": 3270, "bottom": 2360, "left": 500}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703028f.jpg"} -{"rects": [{"solidity": 0.9974408484837989, "top": 395, "right": 5150, "bottom": 3645, "left": 1125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732665f.jpg"} -{"rects": [{"solidity": 0.997440879497607, "top": 950, "right": 2740, "bottom": 3965, "left": 315}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516921.jpg"} -{"rects": [{"solidity": 0.9974412026347617, "top": 810, "right": 2050, "bottom": 3205, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721917f.jpg"} -{"rects": [{"solidity": 0.997441535157326, "top": 1055, "right": 3500, "bottom": 5085, "left": 295}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720780f.jpg"} -{"rects": [{"solidity": 0.9974416929063223, "top": 480, "right": 5090, "bottom": 3735, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701287f.jpg"} -{"rects": [{"solidity": 0.9974418344697635, "top": 4110, "right": 3115, "bottom": 5735, "left": 685}, {"solidity": 0.996276916884685, "top": 2225, "right": 3115, "bottom": 3830, "left": 690}, {"solidity": 0.9977884765930797, "top": 380, "right": 3110, "bottom": 1975, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722882f.jpg"} -{"rects": [{"solidity": 0.997441865464402, "top": 1000, "right": 3450, "bottom": 5365, "left": 495}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723933f.jpg"} -{"rects": [{"solidity": 0.9974419252388155, "top": 980, "right": 3540, "bottom": 5085, "left": 305}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721233f.jpg"} -{"rects": [{"solidity": 0.9974420289390511, "top": 2285, "right": 3185, "bottom": 3915, "left": 770}, {"solidity": 0.9960641742999299, "top": 415, "right": 3185, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706862f.jpg"} -{"rects": [{"solidity": 0.9974420533771119, "top": 1070, "right": 3470, "bottom": 5045, "left": 365}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714669f.jpg"} -{"rects": [{"solidity": 0.997442054541792, "top": 3940, "right": 3255, "bottom": 5570, "left": 830}, {"solidity": 0.9973917093619004, "top": 2105, "right": 3265, "bottom": 3735, "left": 855}, {"solidity": 0.997842684400276, "top": 275, "right": 3275, "bottom": 1905, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703614f.jpg"} -{"rects": [{"solidity": 0.9974421286442895, "top": 360, "right": 2775, "bottom": 3585, "left": 755}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733011f.jpg"} -{"rects": [{"solidity": 0.9974423111703206, "top": 390, "right": 5180, "bottom": 3600, "left": 1190}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723205f.jpg"} -{"rects": [{"solidity": 0.997442381837722, "top": 240, "right": 3140, "bottom": 1865, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722985f.jpg"} -{"rects": [{"solidity": 0.9974425421228357, "top": 650, "right": 5185, "bottom": 2090, "left": 3380}, {"solidity": 0.9952031408357851, "top": 2130, "right": 5200, "bottom": 3535, "left": 3375}, {"solidity": 0.9988940367658048, "top": 685, "right": 2640, "bottom": 2075, "left": 820}, {"solidity": 0.9998947642719692, "top": 2120, "right": 2615, "bottom": 3535, "left": 840}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704330f.jpg"} -{"rects": [{"solidity": 0.9974425536006153, "top": 730, "right": 3920, "bottom": 3160, "left": 2300}, {"solidity": 0.9959519874972779, "top": 715, "right": 5770, "bottom": 3150, "left": 4140}, {"solidity": 0.996486646046434, "top": 770, "right": 2060, "bottom": 3200, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705586f.jpg"} -{"rects": [{"solidity": 0.9974425885564797, "top": 395, "right": 3015, "bottom": 2005, "left": 615}, {"solidity": 0.9957284311840815, "top": 2260, "right": 3020, "bottom": 3870, "left": 610}, {"solidity": 0.9978216861786807, "top": 4125, "right": 3010, "bottom": 5725, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729534f.jpg"} -{"rects": [{"solidity": 0.9974429467676893, "top": 345, "right": 3035, "bottom": 1965, "left": 645}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702575f.jpg"} -{"rects": [{"solidity": 0.9974430958708926, "top": 330, "right": 3170, "bottom": 1925, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717547f.jpg"} -{"rects": [{"solidity": 0.9974431610376311, "top": 420, "right": 3300, "bottom": 2005, "left": 910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725879f.jpg"} -{"rects": [{"solidity": 0.9974431958406687, "top": 350, "right": 3195, "bottom": 1950, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724226f.jpg"} -{"rects": [{"solidity": 0.9974434549609899, "top": 2245, "right": 3185, "bottom": 3885, "left": 745}, {"solidity": 0.9964035143164149, "top": 415, "right": 3185, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700043f.jpg"} -{"rects": [{"solidity": 0.9974437882521567, "top": 405, "right": 2590, "bottom": 3640, "left": 540}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733018f.jpg"} -{"rects": [{"solidity": 0.9974438375829893, "top": 335, "right": 3940, "bottom": 2760, "left": 925}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516931.jpg"} -{"rects": [{"solidity": 0.9974439103224796, "top": 435, "right": 5045, "bottom": 3525, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711470f.jpg"} -{"rects": [{"solidity": 0.9974443299137747, "top": 845, "right": 1995, "bottom": 3240, "left": 380}, {"solidity": 0.9963770144622995, "top": 845, "right": 3735, "bottom": 3240, "left": 2135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713716f.jpg"} -{"rects": [{"solidity": 0.9974444518468789, "top": 315, "right": 3855, "bottom": 2750, "left": 825}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716372f.jpg"} -{"rects": [{"solidity": 0.9974445453366195, "top": 785, "right": 2015, "bottom": 3195, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723328f.jpg"} -{"rects": [{"solidity": 0.9974445706782187, "top": 455, "right": 3115, "bottom": 2070, "left": 695}, {"solidity": 0.9956745136256059, "top": 2260, "right": 3120, "bottom": 3880, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729928f.jpg"} -{"rects": [{"solidity": 0.9974448568161638, "top": 495, "right": 4940, "bottom": 2125, "left": 2515}, {"solidity": 0.9971008563181835, "top": 755, "right": 2035, "bottom": 3190, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702481f.jpg"} -{"rects": [{"solidity": 0.9974449282969904, "top": 510, "right": 5095, "bottom": 3780, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700588f.jpg"} -{"rects": [{"solidity": 0.9974452507949533, "top": 820, "right": 2055, "bottom": 3250, "left": 435}, {"solidity": 0.9986796851854237, "top": 820, "right": 3835, "bottom": 3240, "left": 2220}, {"solidity": 0.9963806000160862, "top": 815, "right": 5625, "bottom": 3245, "left": 4015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721138f.jpg"} -{"rects": [{"solidity": 0.9974455178352446, "top": 450, "right": 5175, "bottom": 3715, "left": 1155}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731313f.jpg"} -{"rects": [{"solidity": 0.9974457228226072, "top": 540, "right": 5045, "bottom": 3770, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734832f.jpg"} -{"rects": [{"solidity": 0.997445803999284, "top": 1095, "right": 3505, "bottom": 5060, "left": 460}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708532f.jpg"} -{"rects": [{"solidity": 0.9974458763353812, "top": 425, "right": 5170, "bottom": 3675, "left": 1070}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/713397f.jpg"} -{"rects": [{"solidity": 0.997445980857954, "top": 2180, "right": 3000, "bottom": 3790, "left": 605}, {"solidity": 0.9956126979919147, "top": 305, "right": 3000, "bottom": 1910, "left": 610}], "shape": {"h": 6010, "w": 3870}, "file": "/usr/local/google/home/danvk/milstein/734331f.jpg"} -{"rects": [{"solidity": 0.9974460046839311, "top": 420, "right": 3150, "bottom": 2040, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702653f.jpg"} -{"rects": [{"solidity": 0.9974460793911263, "top": 415, "right": 4715, "bottom": 3460, "left": 895}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718713f.jpg"} -{"rects": [{"solidity": 0.9974460963741707, "top": 1085, "right": 3560, "bottom": 4990, "left": 310}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721348f.jpg"} -{"rects": [{"solidity": 0.9974461015856486, "top": 565, "right": 4850, "bottom": 3400, "left": 1270}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710147f.jpg"} -{"rects": [{"solidity": 0.9974461190986397, "top": 815, "right": 1840, "bottom": 3110, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712552f.jpg"} -{"rects": [{"solidity": 0.9974461717516003, "top": 710, "right": 3815, "bottom": 3105, "left": 2235}, {"solidity": 0.9969565289779065, "top": 710, "right": 1995, "bottom": 3100, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726897f.jpg"} -{"rects": [{"solidity": 0.9974462068660805, "top": 870, "right": 3460, "bottom": 2910, "left": 655}, {"solidity": 0.9960801973433188, "top": 3070, "right": 3450, "bottom": 5110, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717235f.jpg"} -{"rects": [{"solidity": 0.9974465833167957, "top": 460, "right": 3190, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710615f.jpg"} -{"rects": [{"solidity": 0.9974466928361774, "top": 415, "right": 3165, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718727f.jpg"} -{"rects": [{"solidity": 0.9974468291264958, "top": 660, "right": 2695, "bottom": 2100, "left": 885}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706979f.jpg"} -{"rects": [{"solidity": 0.9974469061021305, "top": 440, "right": 3165, "bottom": 2010, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733972f.jpg"} -{"rects": [{"solidity": 0.9974470389078124, "top": 1405, "right": 3390, "bottom": 5155, "left": 430}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712956f.jpg"} -{"rects": [{"solidity": 0.9974471482424597, "top": 315, "right": 3180, "bottom": 1945, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711530f.jpg"} -{"rects": [{"solidity": 0.9974474674557844, "top": 605, "right": 3270, "bottom": 2565, "left": 475}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702614f.jpg"} -{"rects": [{"solidity": 0.9974475478301061, "top": 620, "right": 4245, "bottom": 3665, "left": 2235}, {"solidity": 0.9996811898774532, "top": 760, "right": 2045, "bottom": 3160, "left": 435}, {"solidity": 0.9956477850878306, "top": 1165, "right": 5795, "bottom": 2945, "left": 4395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716797f.jpg"} -{"rects": [{"solidity": 0.9974475958639902, "top": 420, "right": 5135, "bottom": 3720, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725009f.jpg"} -{"rects": [{"solidity": 0.9974476863442445, "top": 330, "right": 5540, "bottom": 3530, "left": 3510}, {"solidity": 0.9990855992653466, "top": 325, "right": 3170, "bottom": 3525, "left": 1165}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724961f.jpg"} -{"rects": [{"solidity": 0.9974478710639816, "top": 400, "right": 3230, "bottom": 2010, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705495f.jpg"} -{"rects": [{"solidity": 0.9974479227932715, "top": 310, "right": 3545, "bottom": 2135, "left": 850}], "shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/706411f.jpg"} -{"rects": [{"solidity": 0.9974481159306843, "top": 385, "right": 5080, "bottom": 3615, "left": 1090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730732f.jpg"} -{"rects": [{"solidity": 0.9974481401425944, "top": 2145, "right": 3270, "bottom": 3765, "left": 860}, {"solidity": 0.997107297938627, "top": 310, "right": 3260, "bottom": 1930, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707941f.jpg"} -{"rects": [{"solidity": 0.9974483393752854, "top": 495, "right": 4965, "bottom": 3515, "left": 1200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730018f.jpg"} -{"rects": [{"solidity": 0.9974483568571445, "top": 445, "right": 5125, "bottom": 3670, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732638f.jpg"} -{"rects": [{"solidity": 0.9974484330262363, "top": 500, "right": 5115, "bottom": 3715, "left": 3095}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725144f.jpg"} -{"rects": [{"solidity": 0.9974484961693603, "top": 895, "right": 5000, "bottom": 3200, "left": 960}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730320f.jpg"} -{"rects": [{"solidity": 0.997448529859573, "top": 775, "right": 3910, "bottom": 3185, "left": 2275}, {"solidity": 0.9983689147975138, "top": 765, "right": 2015, "bottom": 3180, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715620f.jpg"} -{"rects": [{"solidity": 0.9974487097715057, "top": 795, "right": 3930, "bottom": 3220, "left": 2310}, {"solidity": 0.9966801149782574, "top": 795, "right": 2120, "bottom": 3225, "left": 500}, {"solidity": 0.9966634721186952, "top": 800, "right": 5755, "bottom": 3220, "left": 4140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702188f.jpg"} -{"rects": [{"solidity": 0.9974488661785113, "top": 420, "right": 5185, "bottom": 3675, "left": 1090}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732723f.jpg"} -{"rects": [{"solidity": 0.9974489552788836, "top": 795, "right": 3900, "bottom": 3220, "left": 2255}, {"solidity": 0.9974613711144167, "top": 805, "right": 2025, "bottom": 3240, "left": 395}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713479f.jpg"} -{"rects": [{"solidity": 0.9974489714265595, "top": 2205, "right": 3190, "bottom": 3825, "left": 760}, {"solidity": 0.995987628521274, "top": 370, "right": 3215, "bottom": 1990, "left": 790}, {"solidity": 0.9959127531250612, "top": 4055, "right": 3185, "bottom": 5665, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733115f.jpg"} -{"rects": [{"solidity": 0.9974490529504236, "top": 1440, "right": 3340, "bottom": 5085, "left": 440}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/722465f.jpg"} -{"rects": [{"solidity": 0.9974490622791834, "top": 820, "right": 2040, "bottom": 3230, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718722f.jpg"} -{"rects": [{"solidity": 0.9974491163532404, "top": 440, "right": 4980, "bottom": 3660, "left": 980}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715147f.jpg"} -{"rects": [{"solidity": 0.9974491376418837, "top": 435, "right": 4875, "bottom": 3530, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726203f.jpg"} -{"rects": [{"solidity": 0.997449368861246, "top": 410, "right": 5090, "bottom": 3660, "left": 1085}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708905f.jpg"} -{"rects": [{"solidity": 0.9974496529555376, "top": 435, "right": 5120, "bottom": 3710, "left": 1030}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/722580f.jpg"} -{"rects": [{"solidity": 0.9974497895992861, "top": 755, "right": 1985, "bottom": 3130, "left": 395}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730238f.jpg"} -{"rects": [{"solidity": 0.9974498996237086, "top": 635, "right": 3690, "bottom": 3060, "left": 2060}, {"solidity": 0.9961201052328422, "top": 625, "right": 1880, "bottom": 3040, "left": 265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719103f.jpg"} -{"rects": [{"solidity": 0.9974500440446937, "top": 4100, "right": 3045, "bottom": 5690, "left": 655}, {"solidity": 0.9961662522679927, "top": 415, "right": 3070, "bottom": 1990, "left": 670}, {"solidity": 0.9975995172062696, "top": 2250, "right": 3055, "bottom": 3810, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730915f.jpg"} -{"rects": [{"solidity": 0.997450248133575, "top": 485, "right": 3330, "bottom": 2065, "left": 940}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724976f.jpg"} -{"rects": [{"solidity": 0.9974504477543221, "top": 670, "right": 1585, "bottom": 2475, "left": 370}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715803f.jpg"} -{"rects": [{"solidity": 0.9974504657236554, "top": 1310, "right": 2875, "bottom": 2920, "left": 485}, {"solidity": 0.9952254450285849, "top": 1295, "right": 5655, "bottom": 2910, "left": 3260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734608f.jpg"} -{"rects": [{"solidity": 0.9974506411226389, "top": 430, "right": 3165, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730180f.jpg"} -{"rects": [{"solidity": 0.9974509842123379, "top": 540, "right": 3150, "bottom": 2150, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710726f.jpg"} -{"rects": [{"solidity": 0.9974510179419281, "top": 890, "right": 2010, "bottom": 3270, "left": 405}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715288f.jpg"} -{"rects": [{"solidity": 0.9974510503330795, "top": 450, "right": 5135, "bottom": 3695, "left": 1110}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715254f.jpg"} -{"rects": [{"solidity": 0.9974510924348167, "top": 790, "right": 2430, "bottom": 3205, "left": 805}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720250f.jpg"} -{"rects": [{"solidity": 0.997451168504675, "top": 2280, "right": 3085, "bottom": 3925, "left": 660}, {"solidity": 0.9966743721247175, "top": 415, "right": 3090, "bottom": 2020, "left": 680}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710523f.jpg"} -{"rects": [{"solidity": 0.9974512581023836, "top": 820, "right": 3870, "bottom": 3245, "left": 2240}, {"solidity": 0.9967610817730836, "top": 805, "right": 2050, "bottom": 3235, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706679f.jpg"} -{"rects": [{"solidity": 0.9974513392769282, "top": 735, "right": 2110, "bottom": 3135, "left": 510}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709855f.jpg"} -{"rects": [{"solidity": 0.9974514589317726, "top": 1110, "right": 3610, "bottom": 5220, "left": 355}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732619f.jpg"} -{"rects": [{"solidity": 0.9974515453585554, "top": 1535, "right": 3470, "bottom": 5240, "left": 590}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731206f.jpg"} -{"rects": [{"solidity": 0.9974517022628884, "top": 375, "right": 2400, "bottom": 1560, "left": 620}], "shape": {"h": 4655, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715781f.jpg"} -{"rects": [{"solidity": 0.9974520551957086, "top": 490, "right": 5055, "bottom": 3695, "left": 1040}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725246f.jpg"} -{"rects": [{"solidity": 0.9974521859086806, "top": 795, "right": 2725, "bottom": 3815, "left": 280}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507525.jpg"} -{"rects": [{"solidity": 0.9974521900378576, "top": 580, "right": 2625, "bottom": 1975, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702926f.jpg"} -{"rects": [{"solidity": 0.9974523653832458, "top": 780, "right": 3940, "bottom": 3195, "left": 2330}, {"solidity": 0.9951103265092478, "top": 785, "right": 2140, "bottom": 3195, "left": 515}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721208f.jpg"} -{"rects": [{"solidity": 0.9974523940383434, "top": 765, "right": 3825, "bottom": 3175, "left": 2210}, {"solidity": 0.9971830516939981, "top": 780, "right": 2015, "bottom": 3175, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718005f.jpg"} -{"rects": [{"solidity": 0.9974527200694608, "top": 1635, "right": 2805, "bottom": 2800, "left": 915}, {"solidity": 0.9956798384635251, "top": 3055, "right": 2795, "bottom": 4200, "left": 910}, {"solidity": 0.997784311219055, "top": 310, "right": 2820, "bottom": 1400, "left": 910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722608f.jpg"} -{"rects": [{"solidity": 0.997452747937253, "top": 465, "right": 5085, "bottom": 3695, "left": 1090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731506f.jpg"} -{"rects": [{"solidity": 0.9974528033545014, "top": 855, "right": 2175, "bottom": 3265, "left": 540}, {"solidity": 0.9967118373854125, "top": 845, "right": 4105, "bottom": 3260, "left": 2480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708017f.jpg"} -{"rects": [{"solidity": 0.9974529755613005, "top": 2030, "right": 3085, "bottom": 3665, "left": 660}, {"solidity": 0.9969193918200566, "top": 335, "right": 3045, "bottom": 1970, "left": 625}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727896f.jpg"} -{"rects": [{"solidity": 0.9974531070321428, "top": 650, "right": 4930, "bottom": 3385, "left": 1045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717126f.jpg"} -{"rects": [{"solidity": 0.9974532025977334, "top": 620, "right": 2935, "bottom": 2510, "left": 1625}, {"solidity": 0.9941901067494527, "top": 620, "right": 1530, "bottom": 2420, "left": 330}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716490f.jpg"} -{"rects": [{"solidity": 0.9974532824623338, "top": 2100, "right": 2700, "bottom": 3530, "left": 845}, {"solidity": 0.9975172373973334, "top": 590, "right": 2690, "bottom": 2020, "left": 855}, {"solidity": 0.9964081266135368, "top": 560, "right": 5290, "bottom": 1975, "left": 3455}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705272f.jpg"} -{"rects": [{"solidity": 0.9974542183048549, "top": 575, "right": 3335, "bottom": 2195, "left": 940}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705499f.jpg"} -{"rects": [{"solidity": 0.9974545289255125, "top": 2255, "right": 3180, "bottom": 3865, "left": 770}, {"solidity": 0.9967402231092806, "top": 435, "right": 3180, "bottom": 2045, "left": 765}, {"solidity": 0.995485952675836, "top": 4045, "right": 3185, "bottom": 5655, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734222f.jpg"} -{"rects": [{"solidity": 0.9974550569563132, "top": 1460, "right": 2015, "bottom": 2480, "left": 490}, {"solidity": 0.9956502260416242, "top": 270, "right": 2020, "bottom": 1285, "left": 490}, {"solidity": 0.9930440788337732, "top": 2640, "right": 2005, "bottom": 3650, "left": 480}], "shape": {"h": 3940, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/729568f.jpg"} -{"rects": [{"solidity": 0.9974550634328536, "top": 325, "right": 5250, "bottom": 3600, "left": 1185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720870f.jpg"} -{"rects": [{"solidity": 0.997455343863854, "top": 1270, "right": 2695, "bottom": 4290, "left": 275}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516869.jpg"} -{"rects": [{"solidity": 0.9974553629610322, "top": 555, "right": 3140, "bottom": 2160, "left": 730}, {"solidity": 0.9958071962336493, "top": 2395, "right": 3150, "bottom": 4000, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710840f.jpg"} -{"rects": [{"solidity": 0.9974555703436937, "top": 470, "right": 5090, "bottom": 3705, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712987f.jpg"} -{"rects": [{"solidity": 0.997455800192919, "top": 805, "right": 3875, "bottom": 3220, "left": 2265}, {"solidity": 0.9981877739932531, "top": 805, "right": 2055, "bottom": 3215, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700304f.jpg"} -{"rects": [{"solidity": 0.9974558424326528, "top": 350, "right": 3340, "bottom": 2275, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715029f.jpg"} -{"rects": [{"solidity": 0.9974558633008042, "top": 1100, "right": 3525, "bottom": 5135, "left": 270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723967f.jpg"} -{"rects": [{"solidity": 0.9974559807081231, "top": 405, "right": 3130, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701895f.jpg"} -{"rects": [{"solidity": 0.9974560747843438, "top": 465, "right": 3220, "bottom": 2090, "left": 805}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705674f.jpg"} -{"rects": [{"solidity": 0.9974561474623761, "top": 930, "right": 3500, "bottom": 4900, "left": 300}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712020f.jpg"} -{"rects": [{"solidity": 0.9974564026649767, "top": 435, "right": 5140, "bottom": 3660, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732626f.jpg"} -{"rects": [{"solidity": 0.9974564151288865, "top": 660, "right": 2655, "bottom": 2070, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704401f.jpg"} -{"rects": [{"solidity": 0.9974565758864968, "top": 775, "right": 1990, "bottom": 3180, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720454f.jpg"} -{"rects": [{"solidity": 0.9974567682883534, "top": 2305, "right": 3115, "bottom": 3915, "left": 690}, {"solidity": 0.996749785485842, "top": 4155, "right": 3090, "bottom": 5765, "left": 685}, {"solidity": 0.9967572253581718, "top": 425, "right": 3115, "bottom": 2040, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700169f.jpg"} -{"rects": [{"solidity": 0.9974569667978617, "top": 1275, "right": 3280, "bottom": 4675, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721323f.jpg"} -{"rects": [{"solidity": 0.9974570537097193, "top": 760, "right": 2000, "bottom": 3190, "left": 380}, {"solidity": 0.9979175403148945, "top": 1055, "right": 3550, "bottom": 2905, "left": 2115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702747f.jpg"} -{"rects": [{"solidity": 0.9974571022262743, "top": 1130, "right": 3550, "bottom": 5100, "left": 355}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/708973f.jpg"} -{"rects": [{"solidity": 0.997457109572661, "top": 590, "right": 3505, "bottom": 2400, "left": 795}], "shape": {"h": 6900, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711346f.jpg"} -{"rects": [{"solidity": 0.9974571387091239, "top": 555, "right": 5420, "bottom": 3180, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718545f.jpg"} -{"rects": [{"solidity": 0.9974571851525527, "top": 855, "right": 1960, "bottom": 3245, "left": 330}, {"solidity": 0.9920862188780523, "top": 1220, "right": 3470, "bottom": 2890, "left": 2200}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723549f.jpg"} -{"rects": [{"solidity": 0.9974572773997897, "top": 1030, "right": 3460, "bottom": 5140, "left": 230}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731835f.jpg"} -{"rects": [{"solidity": 0.9974573459856857, "top": 1125, "right": 3400, "bottom": 5060, "left": 185}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731241f.jpg"} -{"rects": [{"solidity": 0.9974573750829294, "top": 825, "right": 2015, "bottom": 3235, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723344f.jpg"} -{"rects": [{"solidity": 0.997457381328349, "top": 400, "right": 3140, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728664f.jpg"} -{"rects": [{"solidity": 0.997457396370007, "top": 840, "right": 3535, "bottom": 4885, "left": 315}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722954f.jpg"} -{"rects": [{"solidity": 0.9974574657903312, "top": 430, "right": 3180, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724922f.jpg"} -{"rects": [{"solidity": 0.997457734841744, "top": 400, "right": 3170, "bottom": 1980, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711949f.jpg"} -{"rects": [{"solidity": 0.9974580846815925, "top": 1310, "right": 3335, "bottom": 5265, "left": 430}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730294f.jpg"} -{"rects": [{"solidity": 0.9974582104417177, "top": 445, "right": 5065, "bottom": 3690, "left": 1035}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722446f.jpg"} -{"rects": [{"solidity": 0.9974582178346221, "top": 735, "right": 2135, "bottom": 3145, "left": 520}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724044f.jpg"} -{"rects": [{"solidity": 0.9974582429029883, "top": 315, "right": 5080, "bottom": 3575, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702597f.jpg"} -{"rects": [{"solidity": 0.997458261130898, "top": 820, "right": 5145, "bottom": 3250, "left": 3520}, {"solidity": 0.9981289547456949, "top": 2080, "right": 3130, "bottom": 3705, "left": 710}, {"solidity": 0.9984610728704533, "top": 385, "right": 3115, "bottom": 2000, "left": 695}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702258f.jpg"} -{"rects": [{"solidity": 0.997458299226342, "top": 815, "right": 5775, "bottom": 3245, "left": 4145}, {"solidity": 0.9972658615085561, "top": 800, "right": 3910, "bottom": 3230, "left": 2280}, {"solidity": 0.997845833253431, "top": 780, "right": 2055, "bottom": 3205, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703882f.jpg"} -{"rects": [{"solidity": 0.9974583376375032, "top": 360, "right": 3340, "bottom": 2295, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724702f.jpg"} -{"rects": [{"solidity": 0.9974584337297743, "top": 315, "right": 3990, "bottom": 2755, "left": 960}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517279.jpg"} -{"rects": [{"solidity": 0.9974584810837012, "top": 840, "right": 2065, "bottom": 3275, "left": 445}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704501f.jpg"} -{"rects": [{"solidity": 0.9974585120568059, "top": 810, "right": 5510, "bottom": 3235, "left": 3890}, {"solidity": 0.9969460325864133, "top": 800, "right": 3765, "bottom": 3215, "left": 2145}, {"solidity": 0.9967738650214035, "top": 800, "right": 2035, "bottom": 3200, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733121f.jpg"} -{"rects": [{"solidity": 0.9974585893414547, "top": 300, "right": 5025, "bottom": 3535, "left": 930}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705082f.jpg"} -{"rects": [{"solidity": 0.9974586165451285, "top": 875, "right": 2700, "bottom": 3895, "left": 275}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516865.jpg"} -{"rects": [{"solidity": 0.9974589054842322, "top": 785, "right": 2045, "bottom": 3195, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710673f.jpg"} -{"rects": [{"solidity": 0.9974590502144646, "top": 1060, "right": 3585, "bottom": 5090, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722027f.jpg"} -{"rects": [{"solidity": 0.9974591028852938, "top": 415, "right": 3360, "bottom": 2025, "left": 940}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725043f.jpg"} -{"rects": [{"solidity": 0.9974594412081914, "top": 445, "right": 3130, "bottom": 2045, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728343f.jpg"} -{"rects": [{"solidity": 0.9974595240952141, "top": 585, "right": 2725, "bottom": 3610, "left": 715}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715707f.jpg"} -{"rects": [{"solidity": 0.9974596480658684, "top": 4565, "right": 3565, "bottom": 6410, "left": 840}, {"solidity": 0.9994129252197751, "top": 2435, "right": 3575, "bottom": 4265, "left": 850}, {"solidity": 0.9973928224427485, "top": 335, "right": 3575, "bottom": 2145, "left": 860}], "shape": {"h": 6855, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711415f.jpg"} -{"rects": [{"solidity": 0.9974597626402211, "top": 500, "right": 3935, "bottom": 2595, "left": 2450}, {"solidity": 0.9921732991430797, "top": 485, "right": 2210, "bottom": 2575, "left": 720}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716274f.jpg"} -{"rects": [{"solidity": 0.9974598056646524, "top": 410, "right": 5185, "bottom": 3675, "left": 1145}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712004f.jpg"} -{"rects": [{"solidity": 0.9974598566633402, "top": 465, "right": 3120, "bottom": 2080, "left": 710}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711990f.jpg"} -{"rects": [{"solidity": 0.9974600372658625, "top": 770, "right": 2055, "bottom": 3170, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715290f.jpg"} -{"rects": [{"solidity": 0.9974602770878841, "top": 445, "right": 4150, "bottom": 2740, "left": 1225}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508873.jpg"} -{"rects": [{"solidity": 0.9974603349545511, "top": 510, "right": 5000, "bottom": 3780, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702569f.jpg"} -{"rects": [{"solidity": 0.997460471904646, "top": 420, "right": 3110, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729888f.jpg"} -{"rects": [{"solidity": 0.9974605824827484, "top": 585, "right": 4980, "bottom": 3705, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722234f.jpg"} -{"rects": [{"solidity": 0.9974606151171536, "top": 430, "right": 3130, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724928f.jpg"} -{"rects": [{"solidity": 0.9974606213500586, "top": 450, "right": 3260, "bottom": 2035, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726149f.jpg"} -{"rects": [{"solidity": 0.9974606443253499, "top": 410, "right": 5065, "bottom": 3670, "left": 1055}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711923f.jpg"} -{"rects": [{"solidity": 0.9974608077641692, "top": 440, "right": 3195, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/717830f.jpg"} -{"rects": [{"solidity": 0.9974609078930491, "top": 330, "right": 5495, "bottom": 3540, "left": 1470}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733405f.jpg"} -{"rects": [{"solidity": 0.9974610825891015, "top": 730, "right": 1855, "bottom": 3120, "left": 260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722692f.jpg"} -{"rects": [{"solidity": 0.9974611773083155, "top": 435, "right": 3190, "bottom": 2020, "left": 805}, {"solidity": 0.9969090890844682, "top": 2285, "right": 3190, "bottom": 3865, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718036f.jpg"} -{"rects": [{"solidity": 0.9974615209441267, "top": 2285, "right": 3070, "bottom": 3865, "left": 685}, {"solidity": 0.9965431800731599, "top": 410, "right": 3080, "bottom": 1995, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729842f.jpg"} -{"rects": [{"solidity": 0.9974615273034168, "top": 895, "right": 1945, "bottom": 3285, "left": 345}, {"solidity": 0.9979645332327184, "top": 880, "right": 3770, "bottom": 3270, "left": 2180}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719278f.jpg"} -{"rects": [{"solidity": 0.997461536976623, "top": 470, "right": 3070, "bottom": 2085, "left": 645}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722879f.jpg"} -{"rects": [{"solidity": 0.9974618391211336, "top": 780, "right": 3850, "bottom": 3200, "left": 2230}, {"solidity": 0.9974627624978266, "top": 775, "right": 2045, "bottom": 3195, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713536f.jpg"} -{"rects": [{"solidity": 0.9974619317214605, "top": 990, "right": 3425, "bottom": 4805, "left": 425}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712878f.jpg"} -{"rects": [{"solidity": 0.9974620641691134, "top": 945, "right": 4430, "bottom": 3405, "left": 2605}, {"solidity": 0.9765315971142993, "top": 3710, "right": 4495, "bottom": 5565, "left": 2340}, {"solidity": 0.9980897707053412, "top": 960, "right": 2475, "bottom": 2665, "left": 275}], "shape": {"h": 6020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465692.jpg"} -{"rects": [{"solidity": 0.9974621409250657, "top": 2305, "right": 3135, "bottom": 3925, "left": 715}, {"solidity": 0.997607709494685, "top": 4140, "right": 3140, "bottom": 5755, "left": 720}, {"solidity": 0.9972051861853557, "top": 450, "right": 3155, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720561f.jpg"} -{"rects": [{"solidity": 0.9974621578752667, "top": 495, "right": 5015, "bottom": 3645, "left": 1070}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730695f.jpg"} -{"rects": [{"solidity": 0.9974622493404761, "top": 2295, "right": 3055, "bottom": 3905, "left": 640}, {"solidity": 0.995596112653966, "top": 410, "right": 3070, "bottom": 2035, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718752f.jpg"} -{"rects": [{"solidity": 0.9974623975317354, "top": 460, "right": 4950, "bottom": 3580, "left": 1010}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713451f.jpg"} -{"rects": [{"solidity": 0.9974627685370452, "top": 425, "right": 3215, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700954f.jpg"} -{"rects": [{"solidity": 0.9974630709737665, "top": 1030, "right": 3550, "bottom": 5135, "left": 285}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723429f.jpg"} -{"rects": [{"solidity": 0.997463170120423, "top": 815, "right": 3385, "bottom": 2245, "left": 1360}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508387.jpg"} -{"rects": [{"solidity": 0.9974633091500006, "top": 2210, "right": 3220, "bottom": 3830, "left": 790}, {"solidity": 0.997375639267358, "top": 410, "right": 3230, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730559f.jpg"} -{"rects": [{"solidity": 0.9974634146341463, "top": 900, "right": 3195, "bottom": 2475, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709186f.jpg"} -{"rects": [{"solidity": 0.997463504559673, "top": 950, "right": 2695, "bottom": 3975, "left": 270}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516861.jpg"} -{"rects": [{"solidity": 0.9974637202422195, "top": 400, "right": 3080, "bottom": 2020, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700464f.jpg"} -{"rects": [{"solidity": 0.9974637611411631, "top": 685, "right": 2785, "bottom": 2110, "left": 945}, {"solidity": 0.9942935005822465, "top": 2115, "right": 2780, "bottom": 3545, "left": 955}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704396f.jpg"} -{"rects": [{"solidity": 0.9974637718694347, "top": 470, "right": 5155, "bottom": 3750, "left": 1075}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/727044f.jpg"} -{"rects": [{"solidity": 0.9974639000955333, "top": 720, "right": 2705, "bottom": 3725, "left": 255}], "shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508281.jpg"} -{"rects": [{"solidity": 0.9974641602371439, "top": 2230, "right": 3175, "bottom": 3860, "left": 740}, {"solidity": 0.9973424254304499, "top": 4045, "right": 3180, "bottom": 5670, "left": 760}, {"solidity": 0.9960236309929561, "top": 415, "right": 3165, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730822f.jpg"} -{"rects": [{"solidity": 0.9974643322759255, "top": 1075, "right": 3445, "bottom": 4985, "left": 395}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708531f.jpg"} -{"rects": [{"solidity": 0.9974643874643875, "top": 500, "right": 5005, "bottom": 3615, "left": 1030}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711486f.jpg"} -{"rects": [{"solidity": 0.9974644067344824, "top": 435, "right": 3075, "bottom": 2020, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729873f.jpg"} -{"rects": [{"solidity": 0.9974644154885736, "top": 1130, "right": 3545, "bottom": 5120, "left": 330}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717086f.jpg"} -{"rects": [{"solidity": 0.997464419033523, "top": 1135, "right": 3525, "bottom": 5105, "left": 325}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721184f.jpg"} -{"rects": [{"solidity": 0.9974650546679255, "top": 905, "right": 2000, "bottom": 3320, "left": 405}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728883f.jpg"} -{"rects": [{"solidity": 0.9974652332829449, "top": 425, "right": 3615, "bottom": 2240, "left": 905}], "shape": {"h": 6870, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/706435f.jpg"} -{"rects": [{"solidity": 0.9974656585403747, "top": 450, "right": 3145, "bottom": 2065, "left": 730}, {"solidity": 0.9947446283447678, "top": 2285, "right": 3155, "bottom": 3900, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719398f.jpg"} -{"rects": [{"solidity": 0.9974657403826712, "top": 545, "right": 5375, "bottom": 3480, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719880f.jpg"} -{"rects": [{"solidity": 0.99746596905781, "top": 830, "right": 2025, "bottom": 3250, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707756f.jpg"} -{"rects": [{"solidity": 0.9974661695329432, "top": 1385, "right": 3505, "bottom": 5390, "left": 270}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718406f.jpg"} -{"rects": [{"solidity": 0.9974661830371757, "top": 750, "right": 2030, "bottom": 3160, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713270f.jpg"} -{"rects": [{"solidity": 0.997466379544866, "top": 465, "right": 3125, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730964f.jpg"} -{"rects": [{"solidity": 0.9974664142376571, "top": 460, "right": 5045, "bottom": 3565, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711456f.jpg"} -{"rects": [{"solidity": 0.9974668396629823, "top": 730, "right": 1995, "bottom": 3140, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732412f.jpg"} -{"rects": [{"solidity": 0.9974668801863444, "top": 410, "right": 3120, "bottom": 2020, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700551f.jpg"} -{"rects": [{"solidity": 0.9974668839445618, "top": 510, "right": 2620, "bottom": 3565, "left": 570}, {"solidity": 0.9979990424865887, "top": 515, "right": 5510, "bottom": 3560, "left": 3490}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715085f.jpg"} -{"rects": [{"solidity": 0.9974670137559656, "top": 735, "right": 2015, "bottom": 3160, "left": 385}, {"solidity": 0.998675043125106, "top": 745, "right": 3845, "bottom": 3170, "left": 2225}, {"solidity": 0.9973442804439852, "top": 740, "right": 5665, "bottom": 3170, "left": 4045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731732f.jpg"} -{"rects": [{"solidity": 0.9974674373247341, "top": 775, "right": 3880, "bottom": 3190, "left": 2270}, {"solidity": 0.9970839299751775, "top": 775, "right": 2020, "bottom": 3185, "left": 420}, {"solidity": 0.9988400288354414, "top": 785, "right": 5730, "bottom": 3185, "left": 4130}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721763f.jpg"} -{"rects": [{"solidity": 0.9974677409583813, "top": 510, "right": 2905, "bottom": 3550, "left": 850}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712510f.jpg"} -{"rects": [{"solidity": 0.9974678106000443, "top": 435, "right": 3155, "bottom": 2040, "left": 745}, {"solidity": 0.9965097182634134, "top": 2235, "right": 3155, "bottom": 3835, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706595f.jpg"} -{"rects": [{"solidity": 0.9974679308780521, "top": 2250, "right": 3190, "bottom": 3865, "left": 765}, {"solidity": 0.995205450781006, "top": 4095, "right": 3185, "bottom": 5710, "left": 760}, {"solidity": 0.9982775825558303, "top": 430, "right": 3190, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734649f.jpg"} -{"rects": [{"solidity": 0.9974688090865349, "top": 860, "right": 2030, "bottom": 3220, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708601f.jpg"} -{"rects": [{"solidity": 0.99746882331152, "top": 450, "right": 3135, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733902f.jpg"} -{"rects": [{"solidity": 0.9974689512683076, "top": 750, "right": 2025, "bottom": 3145, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714805f.jpg"} -{"rects": [{"solidity": 0.9974690626645603, "top": 410, "right": 3115, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704825f.jpg"} -{"rects": [{"solidity": 0.9974693643994375, "top": 545, "right": 2650, "bottom": 3600, "left": 605}, {"solidity": 0.9985752040269064, "top": 810, "right": 4605, "bottom": 3220, "left": 2990}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723142f.jpg"} -{"rects": [{"solidity": 0.9974693758977421, "top": 520, "right": 3065, "bottom": 2140, "left": 650}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707523f.jpg"} -{"rects": [{"solidity": 0.99746964222828, "top": 695, "right": 3880, "bottom": 3095, "left": 2270}, {"solidity": 0.9951680418660951, "top": 695, "right": 2090, "bottom": 3115, "left": 495}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709383f.jpg"} -{"rects": [{"solidity": 0.9974696948042667, "top": 890, "right": 3880, "bottom": 3305, "left": 2275}, {"solidity": 0.9964650301188763, "top": 890, "right": 1995, "bottom": 3280, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729784f.jpg"} -{"rects": [{"solidity": 0.9974697502239812, "top": 2275, "right": 3165, "bottom": 3870, "left": 760}, {"solidity": 0.9956951075887569, "top": 400, "right": 3165, "bottom": 1980, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730136f.jpg"} -{"rects": [{"solidity": 0.9974697870396126, "top": 440, "right": 5080, "bottom": 3675, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730797f.jpg"} -{"rects": [{"solidity": 0.9974697963071464, "top": 440, "right": 3160, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732145f.jpg"} -{"rects": [{"solidity": 0.9974699516522567, "top": 425, "right": 3185, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722505f.jpg"} -{"rects": [{"solidity": 0.9974701555404878, "top": 490, "right": 3505, "bottom": 2295, "left": 790}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711197f.jpg"} -{"rects": [{"solidity": 0.9974701831444879, "top": 430, "right": 3155, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728804f.jpg"} -{"rects": [{"solidity": 0.9974702821877918, "top": 415, "right": 3260, "bottom": 2045, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725798f.jpg"} -{"rects": [{"solidity": 0.9974703352211227, "top": 580, "right": 2500, "bottom": 2070, "left": 410}, {"solidity": 0.9973245523770323, "top": 2450, "right": 2480, "bottom": 3935, "left": 410}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716019f.jpg"} -{"rects": [{"solidity": 0.9974704186649718, "top": 345, "right": 3230, "bottom": 1965, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702365f.jpg"} -{"rects": [{"solidity": 0.997470443696172, "top": 550, "right": 2890, "bottom": 3585, "left": 880}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708126f.jpg"} -{"rects": [{"solidity": 0.9974704726953195, "top": 4125, "right": 3190, "bottom": 5745, "left": 780}, {"solidity": 0.997838170709968, "top": 2245, "right": 3195, "bottom": 3855, "left": 780}, {"solidity": 0.9974448187864187, "top": 360, "right": 3190, "bottom": 1975, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720434f.jpg"} -{"rects": [{"solidity": 0.9974708823007745, "top": 440, "right": 3155, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700398f.jpg"} -{"rects": [{"solidity": 0.9974711645190869, "top": 755, "right": 2195, "bottom": 3180, "left": 580}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728795f.jpg"} -{"rects": [{"solidity": 0.9974712509182154, "top": 500, "right": 2930, "bottom": 2110, "left": 520}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703020f.jpg"} -{"rects": [{"solidity": 0.997471321892821, "top": 725, "right": 2100, "bottom": 3120, "left": 505}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711115f.jpg"} -{"rects": [{"solidity": 0.9974715049726754, "top": 310, "right": 5105, "bottom": 3595, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725428f.jpg"} -{"rects": [{"solidity": 0.9974715887677478, "top": 1020, "right": 3560, "bottom": 5050, "left": 295}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709864f.jpg"} -{"rects": [{"solidity": 0.9974715921139774, "top": 805, "right": 4020, "bottom": 3210, "left": 2415}, {"solidity": 0.9964667999908652, "top": 795, "right": 2155, "bottom": 3200, "left": 545}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711107f.jpg"} -{"rects": [{"solidity": 0.9974716120730523, "top": 355, "right": 3215, "bottom": 1965, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704519f.jpg"} -{"rects": [{"solidity": 0.9974716703266628, "top": 2295, "right": 3135, "bottom": 3905, "left": 735}, {"solidity": 0.9976680523167393, "top": 410, "right": 3145, "bottom": 2010, "left": 740}, {"solidity": 0.9973844126728156, "top": 4135, "right": 3120, "bottom": 5735, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733702f.jpg"} -{"rects": [{"solidity": 0.9974716709404516, "top": 920, "right": 4590, "bottom": 3550, "left": 730}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701647f.jpg"} -{"rects": [{"solidity": 0.9974721931651328, "top": 365, "right": 5100, "bottom": 3630, "left": 1080}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722387f.jpg"} -{"rects": [{"solidity": 0.9974723843519367, "top": 570, "right": 3105, "bottom": 2190, "left": 685}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707269f.jpg"} -{"rects": [{"solidity": 0.9974728950217324, "top": 410, "right": 3170, "bottom": 2030, "left": 765}, {"solidity": 0.9959272463983606, "top": 2165, "right": 3180, "bottom": 3785, "left": 775}, {"solidity": 0.9943633044272022, "top": 3925, "right": 3165, "bottom": 5560, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733187f.jpg"} -{"rects": [{"solidity": 0.9974731892491427, "top": 1185, "right": 2110, "bottom": 3315, "left": 595}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507552.jpg"} -{"rects": [{"solidity": 0.997473326882709, "top": 2300, "right": 3065, "bottom": 3920, "left": 645}, {"solidity": 0.9963593915766188, "top": 420, "right": 3080, "bottom": 2045, "left": 655}, {"solidity": 0.9978237998944675, "top": 4165, "right": 3035, "bottom": 5765, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734407f.jpg"} -{"rects": [{"solidity": 0.9974733779976694, "top": 710, "right": 4765, "bottom": 3330, "left": 1285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701180f.jpg"} -{"rects": [{"solidity": 0.9974734800634092, "top": 455, "right": 5010, "bottom": 3700, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717406f.jpg"} -{"rects": [{"solidity": 0.9974737415149802, "top": 1100, "right": 3490, "bottom": 5065, "left": 290}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708568f.jpg"} -{"rects": [{"solidity": 0.9974741372922366, "top": 420, "right": 3175, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706674f.jpg"} -{"rects": [{"solidity": 0.9974742483560759, "top": 490, "right": 5105, "bottom": 3765, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702084f.jpg"} -{"rects": [{"solidity": 0.9974743994487267, "top": 2270, "right": 3205, "bottom": 3890, "left": 780}, {"solidity": 0.9979238576396254, "top": 425, "right": 3205, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719601f.jpg"} -{"rects": [{"solidity": 0.997474477653984, "top": 800, "right": 3830, "bottom": 3220, "left": 2225}, {"solidity": 0.9976750068096035, "top": 805, "right": 2040, "bottom": 3225, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711795f.jpg"} -{"rects": [{"solidity": 0.9974746208072724, "top": 1040, "right": 3510, "bottom": 5100, "left": 295}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730277f.jpg"} -{"rects": [{"solidity": 0.9974747311654342, "top": 435, "right": 3150, "bottom": 2045, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703396f.jpg"} -{"rects": [{"solidity": 0.9974748596263046, "top": 690, "right": 5745, "bottom": 3125, "left": 4110}, {"solidity": 0.9990433057169731, "top": 690, "right": 3890, "bottom": 3100, "left": 2270}, {"solidity": 0.9973750913886894, "top": 680, "right": 2035, "bottom": 3095, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702958f.jpg"} -{"rects": [{"solidity": 0.9974748701014908, "top": 500, "right": 3865, "bottom": 2805, "left": 935}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509125.jpg"} -{"rects": [{"solidity": 0.9974749879950313, "top": 475, "right": 5035, "bottom": 3650, "left": 1045}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719132f.jpg"} -{"rects": [{"solidity": 0.9974750965799559, "top": 820, "right": 3615, "bottom": 2875, "left": 395}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733016f.jpg"} -{"rects": [{"solidity": 0.9974751474985857, "top": 775, "right": 2015, "bottom": 3190, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715514f.jpg"} -{"rects": [{"solidity": 0.9974752747164503, "top": 435, "right": 3180, "bottom": 2050, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734170f.jpg"} -{"rects": [{"solidity": 0.9974753825261632, "top": 1110, "right": 3275, "bottom": 4725, "left": 430}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721237f.jpg"} -{"rects": [{"solidity": 0.9974754676318202, "top": 370, "right": 5085, "bottom": 3640, "left": 1045}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722385f.jpg"} -{"rects": [{"solidity": 0.997475794963809, "top": 880, "right": 5005, "bottom": 3305, "left": 3385}, {"solidity": 0.9935559422717103, "top": 910, "right": 2525, "bottom": 3310, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722310f.jpg"} -{"rects": [{"solidity": 0.9974758236354696, "top": 3970, "right": 3270, "bottom": 5565, "left": 860}, {"solidity": 0.9945146566184998, "top": 2215, "right": 2990, "bottom": 3615, "left": 1175}, {"solidity": 0.9966845436342232, "top": 490, "right": 2975, "bottom": 1890, "left": 1185}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726877f.jpg"} -{"rects": [{"solidity": 0.9974758475173104, "top": 1205, "right": 3645, "bottom": 5345, "left": 380}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/716903f.jpg"} -{"rects": [{"solidity": 0.9974760449719083, "top": 515, "right": 4950, "bottom": 3610, "left": 1080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708515f.jpg"} -{"rects": [{"solidity": 0.9974761072859932, "top": 640, "right": 3860, "bottom": 3660, "left": 1830}, {"solidity": 0.9936180315512301, "top": 905, "right": 5675, "bottom": 3295, "left": 4085}, {"solidity": 0.9962032158696459, "top": 1205, "right": 1620, "bottom": 2835, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714676f.jpg"} -{"rects": [{"solidity": 0.9974761693682037, "top": 1260, "right": 3230, "bottom": 4835, "left": 585}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722725f.jpg"} -{"rects": [{"solidity": 0.9974763102338912, "top": 1195, "right": 3370, "bottom": 4885, "left": 270}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715591f.jpg"} -{"rects": [{"solidity": 0.9974763846500709, "top": 400, "right": 5770, "bottom": 3640, "left": 3755}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725149f.jpg"} -{"rects": [{"solidity": 0.997476607067464, "top": 440, "right": 3170, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730309f.jpg"} -{"rects": [{"solidity": 0.9974766477980972, "top": 205, "right": 3550, "bottom": 2840, "left": 245}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731190f.jpg"} -{"rects": [{"solidity": 0.9974768850110691, "top": 785, "right": 3860, "bottom": 3185, "left": 2250}, {"solidity": 0.9958460260315702, "top": 790, "right": 2050, "bottom": 3195, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708113f.jpg"} -{"rects": [{"solidity": 0.9974771636963193, "top": 830, "right": 2040, "bottom": 3220, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720360f.jpg"} -{"rects": [{"solidity": 0.9974775398481396, "top": 2085, "right": 3180, "bottom": 3715, "left": 765}, {"solidity": 0.9959450608722453, "top": 220, "right": 3185, "bottom": 1860, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702489f.jpg"} -{"rects": [{"solidity": 0.9974777443375835, "top": 2055, "right": 3265, "bottom": 3700, "left": 835}, {"solidity": 0.9978208517447502, "top": 250, "right": 3225, "bottom": 1880, "left": 795}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/720882f.jpg"} -{"rects": [{"solidity": 0.9974779673729608, "top": 2100, "right": 5240, "bottom": 3555, "left": 3390}, {"solidity": 0.9980758671503592, "top": 2105, "right": 2795, "bottom": 3565, "left": 955}, {"solidity": 0.9968314529850432, "top": 580, "right": 5235, "bottom": 2040, "left": 3385}, {"solidity": 0.9979759366576186, "top": 590, "right": 2805, "bottom": 2045, "left": 960}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703329f.jpg"} -{"rects": [{"solidity": 0.9974780038954933, "top": 430, "right": 3300, "bottom": 2005, "left": 920}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725337f.jpg"} -{"rects": [{"solidity": 0.9974780694718064, "top": 640, "right": 2050, "bottom": 3055, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702342f.jpg"} -{"rects": [{"solidity": 0.9974780892585648, "top": 420, "right": 3195, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710453f.jpg"} -{"rects": [{"solidity": 0.9974782785933345, "top": 1100, "right": 3605, "bottom": 5170, "left": 335}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/723819f.jpg"} -{"rects": [{"solidity": 0.9974784437299857, "top": 410, "right": 3230, "bottom": 2035, "left": 800}, {"solidity": 0.996444401618809, "top": 2210, "right": 3200, "bottom": 3845, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704062f.jpg"} -{"rects": [{"solidity": 0.9974786004292845, "top": 490, "right": 3210, "bottom": 2115, "left": 805}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713472f.jpg"} -{"rects": [{"solidity": 0.9974786519449025, "top": 465, "right": 3120, "bottom": 2090, "left": 700}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710405f.jpg"} -{"rects": [{"solidity": 0.9974789722621211, "top": 440, "right": 3135, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719474f.jpg"} -{"rects": [{"solidity": 0.9974790975169111, "top": 1030, "right": 3490, "bottom": 5060, "left": 225}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702131f.jpg"} -{"rects": [{"solidity": 0.9974792242530331, "top": 755, "right": 2690, "bottom": 3565, "left": 685}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733697f.jpg"} -{"rects": [{"solidity": 0.9974792714195332, "top": 725, "right": 2000, "bottom": 3105, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713520f.jpg"} -{"rects": [{"solidity": 0.997479348686879, "top": 2250, "right": 3250, "bottom": 3870, "left": 830}, {"solidity": 0.9975441900195106, "top": 410, "right": 3230, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701246f.jpg"} -{"rects": [{"solidity": 0.9974794023404181, "top": 430, "right": 3020, "bottom": 2065, "left": 600}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702410f.jpg"} -{"rects": [{"solidity": 0.9974794616688567, "top": 970, "right": 3460, "bottom": 5075, "left": 215}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714486f.jpg"} -{"rects": [{"solidity": 0.9974795251297726, "top": 755, "right": 2035, "bottom": 3185, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705694f.jpg"} -{"rects": [{"solidity": 0.997479933692552, "top": 780, "right": 2030, "bottom": 3210, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723400f.jpg"} -{"rects": [{"solidity": 0.9974803189485713, "top": 550, "right": 2910, "bottom": 2180, "left": 470}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717997f.jpg"} -{"rects": [{"solidity": 0.9974805643535848, "top": 2275, "right": 3185, "bottom": 3875, "left": 780}, {"solidity": 0.9956858895871069, "top": 465, "right": 3185, "bottom": 2035, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713142f.jpg"} -{"rects": [{"solidity": 0.997480955706273, "top": 685, "right": 1995, "bottom": 3120, "left": 370}, {"solidity": 0.9974492727713858, "top": 685, "right": 3845, "bottom": 3120, "left": 2225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727332f.jpg"} -{"rects": [{"solidity": 0.9974809603613624, "top": 1125, "right": 3620, "bottom": 5180, "left": 335}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/708806f.jpg"} -{"rects": [{"solidity": 0.9974809995664016, "top": 415, "right": 4980, "bottom": 3700, "left": 880}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/721514f.jpg"} -{"rects": [{"solidity": 0.9974810432973764, "top": 445, "right": 5105, "bottom": 3720, "left": 1060}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708622f.jpg"} -{"rects": [{"solidity": 0.9974810921058135, "top": 560, "right": 5605, "bottom": 2190, "left": 3200}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706187f.jpg"} -{"rects": [{"solidity": 0.9974811715481171, "top": 280, "right": 2115, "bottom": 1280, "left": 605}], "shape": {"h": 3935, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727072f.jpg"} -{"rects": [{"solidity": 0.9974811731363737, "top": 405, "right": 3235, "bottom": 2020, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725715f.jpg"} -{"rects": [{"solidity": 0.9974814050001003, "top": 400, "right": 3335, "bottom": 2245, "left": 600}], "shape": {"h": 4430, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/703425f.jpg"} -{"rects": [{"solidity": 0.9974815308936871, "top": 1075, "right": 3480, "bottom": 5070, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702463f.jpg"} -{"rects": [{"solidity": 0.9974815427461572, "top": 470, "right": 5255, "bottom": 3405, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724757f.jpg"} -{"rects": [{"solidity": 0.9974818636143802, "top": 375, "right": 3250, "bottom": 1990, "left": 825}, {"solidity": 0.9983830882043206, "top": 2240, "right": 3240, "bottom": 3845, "left": 820}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/726927f.jpg"} -{"rects": [{"solidity": 0.9974825003792124, "top": 1560, "right": 3490, "bottom": 5295, "left": 605}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/731202f.jpg"} -{"rects": [{"solidity": 0.9974826257425076, "top": 775, "right": 1985, "bottom": 3150, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724834f.jpg"} -{"rects": [{"solidity": 0.9974827199550186, "top": 315, "right": 3225, "bottom": 1935, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712219f.jpg"} -{"rects": [{"solidity": 0.9974827806914471, "top": 795, "right": 4300, "bottom": 3480, "left": 2335}, {"solidity": 0.9955820144169313, "top": 830, "right": 2150, "bottom": 3230, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722641f.jpg"} -{"rects": [{"solidity": 0.9974828197595413, "top": 730, "right": 2025, "bottom": 3145, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720364f.jpg"} -{"rects": [{"solidity": 0.9974829092476152, "top": 825, "right": 2005, "bottom": 3230, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728353f.jpg"} -{"rects": [{"solidity": 0.9974829804750236, "top": 440, "right": 5060, "bottom": 3685, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709149f.jpg"} -{"rects": [{"solidity": 0.9974833651755716, "top": 385, "right": 5135, "bottom": 3630, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714201f.jpg"} -{"rects": [{"solidity": 0.9974833764558466, "top": 600, "right": 4840, "bottom": 3695, "left": 990}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730165f.jpg"} -{"rects": [{"solidity": 0.9974835893595634, "top": 790, "right": 2030, "bottom": 3165, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712566f.jpg"} -{"rects": [{"solidity": 0.9974836243492959, "top": 765, "right": 2080, "bottom": 3180, "left": 445}, {"solidity": 0.99829342212252, "top": 775, "right": 3900, "bottom": 3185, "left": 2275}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704039f.jpg"} -{"rects": [{"solidity": 0.9974837854622984, "top": 2220, "right": 3215, "bottom": 3850, "left": 800}, {"solidity": 0.9967772365366722, "top": 4065, "right": 3205, "bottom": 5690, "left": 795}, {"solidity": 0.9977821332783164, "top": 360, "right": 3205, "bottom": 1985, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730530f.jpg"} -{"rects": [{"solidity": 0.9974838502444769, "top": 855, "right": 2315, "bottom": 3575, "left": 500}], "shape": {"h": 4410, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/711556f.jpg"} -{"rects": [{"solidity": 0.9974839495103623, "top": 1155, "right": 3465, "bottom": 5060, "left": 330}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717237f.jpg"} -{"rects": [{"solidity": 0.9974839772464029, "top": 2225, "right": 3160, "bottom": 3845, "left": 740}, {"solidity": 0.9974890652843026, "top": 420, "right": 3145, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707675f.jpg"} -{"rects": [{"solidity": 0.9974844163290976, "top": 545, "right": 2715, "bottom": 3530, "left": 660}, {"solidity": 0.9988287699360537, "top": 550, "right": 5405, "bottom": 3535, "left": 3395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715275f.jpg"} -{"rects": [{"solidity": 0.9974846757474679, "top": 2240, "right": 3210, "bottom": 3865, "left": 795}, {"solidity": 0.9974206008444616, "top": 425, "right": 3205, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719607f.jpg"} -{"rects": [{"solidity": 0.9974847818056247, "top": 790, "right": 2045, "bottom": 3205, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713481f.jpg"} -{"rects": [{"solidity": 0.9974852850387389, "top": 2245, "right": 3130, "bottom": 3865, "left": 725}, {"solidity": 0.9971409361802124, "top": 4120, "right": 3130, "bottom": 5725, "left": 720}, {"solidity": 0.9979146510472505, "top": 410, "right": 3125, "bottom": 2010, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713207f.jpg"} -{"rects": [{"solidity": 0.99748547993539, "top": 390, "right": 2430, "bottom": 1610, "left": 620}], "shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715840f.jpg"} -{"rects": [{"solidity": 0.9974854932301741, "top": 740, "right": 3895, "bottom": 3285, "left": 2230}, {"solidity": 0.9971920428973042, "top": 785, "right": 2040, "bottom": 3165, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733608f.jpg"} -{"rects": [{"solidity": 0.9974855112205855, "top": 430, "right": 3185, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716572f.jpg"} -{"rects": [{"solidity": 0.997485631187054, "top": 385, "right": 5000, "bottom": 3085, "left": 1580}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723820f.jpg"} -{"rects": [{"solidity": 0.9974856518174364, "top": 625, "right": 3705, "bottom": 3045, "left": 2085}, {"solidity": 0.9962797906136256, "top": 645, "right": 5615, "bottom": 3070, "left": 3980}, {"solidity": 0.9938489600486409, "top": 915, "right": 1810, "bottom": 2725, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703683f.jpg"} -{"rects": [{"solidity": 0.9974857435910972, "top": 430, "right": 5080, "bottom": 3730, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718589f.jpg"} -{"rects": [{"solidity": 0.9974860880601386, "top": 360, "right": 2370, "bottom": 1530, "left": 600}, {"solidity": 0.9947857239255524, "top": 1725, "right": 2370, "bottom": 2895, "left": 605}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715813f.jpg"} -{"rects": [{"solidity": 0.9974861815991534, "top": 370, "right": 5110, "bottom": 3595, "left": 1010}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703621f.jpg"} -{"rects": [{"solidity": 0.9974862014317722, "top": 4035, "right": 3155, "bottom": 5655, "left": 735}, {"solidity": 0.9937560804193415, "top": 2160, "right": 3160, "bottom": 3770, "left": 750}, {"solidity": 0.9938692729149573, "top": 305, "right": 3175, "bottom": 1900, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724218f.jpg"} -{"rects": [{"solidity": 0.9974866409719114, "top": 485, "right": 2575, "bottom": 3665, "left": 575}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733078f.jpg"} -{"rects": [{"solidity": 0.9974866498054844, "top": 420, "right": 3295, "bottom": 2045, "left": 845}], "shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/700950f.jpg"} -{"rects": [{"solidity": 0.9974866516434212, "top": 445, "right": 3850, "bottom": 2540, "left": 2365}, {"solidity": 0.9968063969575446, "top": 430, "right": 2130, "bottom": 2520, "left": 645}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716276f.jpg"} -{"rects": [{"solidity": 0.9974867238364402, "top": 800, "right": 2080, "bottom": 3220, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718025f.jpg"} -{"rects": [{"solidity": 0.9974867720435224, "top": 465, "right": 3180, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713974f.jpg"} -{"rects": [{"solidity": 0.9974868921429594, "top": 470, "right": 5700, "bottom": 4205, "left": 1130}], "shape": {"h": 4415, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/711658f.jpg"} -{"rects": [{"solidity": 0.99748692297705, "top": 695, "right": 2815, "bottom": 3525, "left": 785}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732869f.jpg"} -{"rects": [{"solidity": 0.9974871069255333, "top": 400, "right": 4645, "bottom": 3620, "left": 2610}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733022f.jpg"} -{"rects": [{"solidity": 0.9974874493262016, "top": 480, "right": 5075, "bottom": 3705, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731370f.jpg"} -{"rects": [{"solidity": 0.9974875104484575, "top": 630, "right": 2750, "bottom": 2060, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706237f.jpg"} -{"rects": [{"solidity": 0.997487784413405, "top": 765, "right": 2695, "bottom": 2175, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727436f.jpg"} -{"rects": [{"solidity": 0.9974878799821845, "top": 4045, "right": 3135, "bottom": 5675, "left": 725}, {"solidity": 0.9983985747958826, "top": 2160, "right": 3135, "bottom": 3790, "left": 735}, {"solidity": 0.9976221971285691, "top": 295, "right": 3150, "bottom": 1915, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704867f.jpg"} -{"rects": [{"solidity": 0.997487973999236, "top": 845, "right": 2035, "bottom": 3250, "left": 415}, {"solidity": 0.9967827862883258, "top": 835, "right": 3905, "bottom": 3240, "left": 2280}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707862f.jpg"} -{"rects": [{"solidity": 0.9974880417312301, "top": 390, "right": 3210, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727612f.jpg"} -{"rects": [{"solidity": 0.997488284549738, "top": 525, "right": 3025, "bottom": 2145, "left": 605}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707011f.jpg"} -{"rects": [{"solidity": 0.9974884875716834, "top": 460, "right": 3185, "bottom": 2090, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706623f.jpg"} -{"rects": [{"solidity": 0.9974886268387411, "top": 415, "right": 3255, "bottom": 2045, "left": 835}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702226f.jpg"} -{"rects": [{"solidity": 0.9974887499764644, "top": 620, "right": 3410, "bottom": 2540, "left": 620}, {"solidity": 0.9971002766547143, "top": 3200, "right": 3330, "bottom": 5085, "left": 665}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721823f.jpg"} -{"rects": [{"solidity": 0.9974887714165316, "top": 2405, "right": 3165, "bottom": 3970, "left": 815}, {"solidity": 0.9384480507907147, "top": 925, "right": 3165, "bottom": 2155, "left": 895}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/707632f.jpg"} -{"rects": [{"solidity": 0.9974888464811615, "top": 410, "right": 3130, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729325f.jpg"} -{"rects": [{"solidity": 0.9974892820767901, "top": 550, "right": 2485, "bottom": 2660, "left": 970}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509039.jpg"} -{"rects": [{"solidity": 0.9974893704521787, "top": 855, "right": 2020, "bottom": 3240, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728511f.jpg"} -{"rects": [{"solidity": 0.9974894236323328, "top": 910, "right": 3950, "bottom": 3315, "left": 2325}, {"solidity": 0.9975533815065574, "top": 900, "right": 2060, "bottom": 3315, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712385f.jpg"} -{"rects": [{"solidity": 0.9974896747547755, "top": 410, "right": 3215, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702943f.jpg"} -{"rects": [{"solidity": 0.997489675534995, "top": 4110, "right": 3150, "bottom": 5735, "left": 710}, {"solidity": 0.9961374114293169, "top": 2260, "right": 3160, "bottom": 3895, "left": 720}, {"solidity": 0.9957257068656032, "top": 425, "right": 3180, "bottom": 2065, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734173f.jpg"} -{"rects": [{"solidity": 0.997489789244885, "top": 2305, "right": 3220, "bottom": 3925, "left": 795}, {"solidity": 0.9969316606075705, "top": 450, "right": 3180, "bottom": 2045, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731953f.jpg"} -{"rects": [{"solidity": 0.9974899744158061, "top": 405, "right": 3100, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729107f.jpg"} -{"rects": [{"solidity": 0.9974900393787509, "top": 635, "right": 3675, "bottom": 2675, "left": 450}, {"solidity": 0.9974602178284572, "top": 3060, "right": 3685, "bottom": 5085, "left": 470}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732985f.jpg"} -{"rects": [{"solidity": 0.9974901637263612, "top": 2110, "right": 3215, "bottom": 3745, "left": 785}, {"solidity": 0.9974129911175114, "top": 385, "right": 3200, "bottom": 2015, "left": 775}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703367f.jpg"} -{"rects": [{"solidity": 0.9974902586994742, "top": 1200, "right": 3495, "bottom": 5170, "left": 315}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/717128f.jpg"} -{"rects": [{"solidity": 0.9974903563106606, "top": 405, "right": 3180, "bottom": 2015, "left": 780}, {"solidity": 0.9980382784648782, "top": 2230, "right": 3185, "bottom": 3815, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722666f.jpg"} -{"rects": [{"solidity": 0.9974906881003724, "top": 735, "right": 1995, "bottom": 3145, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723059f.jpg"} -{"rects": [{"solidity": 0.9974906995404479, "top": 880, "right": 2800, "bottom": 4055, "left": 335}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508827.jpg"} -{"rects": [{"solidity": 0.997490722742534, "top": 445, "right": 3180, "bottom": 2070, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703669f.jpg"} -{"rects": [{"solidity": 0.9974909632149692, "top": 790, "right": 2120, "bottom": 3195, "left": 520}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709843f.jpg"} -{"rects": [{"solidity": 0.9974911427636796, "top": 1050, "right": 3510, "bottom": 5175, "left": 215}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717585f.jpg"} -{"rects": [{"solidity": 0.997491219267436, "top": 595, "right": 2675, "bottom": 2025, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705215f.jpg"} -{"rects": [{"solidity": 0.9974915926112456, "top": 2245, "right": 3130, "bottom": 3850, "left": 715}, {"solidity": 0.9921320757822659, "top": 4070, "right": 3100, "bottom": 5670, "left": 700}, {"solidity": 0.9929688143523171, "top": 410, "right": 3115, "bottom": 2010, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728721f.jpg"} -{"rects": [{"solidity": 0.9974919953271382, "top": 340, "right": 3600, "bottom": 2170, "left": 875}, {"solidity": 0.9979460866746358, "top": 2425, "right": 3595, "bottom": 4250, "left": 875}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706406f.jpg"} -{"rects": [{"solidity": 0.9974924948040952, "top": 505, "right": 5095, "bottom": 3725, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718219f.jpg"} -{"rects": [{"solidity": 0.9974925272581211, "top": 500, "right": 5145, "bottom": 3805, "left": 1110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712461f.jpg"} -{"rects": [{"solidity": 0.9974925895057, "top": 690, "right": 4820, "bottom": 3315, "left": 1410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722815f.jpg"} -{"rects": [{"solidity": 0.997492641447727, "top": 740, "right": 3250, "bottom": 2750, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728760f.jpg"} -{"rects": [{"solidity": 0.9974928616198899, "top": 785, "right": 1980, "bottom": 3175, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712709f.jpg"} -{"rects": [{"solidity": 0.9974928970930175, "top": 410, "right": 3255, "bottom": 2015, "left": 870}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726845f.jpg"} -{"rects": [{"solidity": 0.9974929211892402, "top": 825, "right": 2025, "bottom": 3235, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718679f.jpg"} -{"rects": [{"solidity": 0.9974929653426995, "top": 480, "right": 5085, "bottom": 3730, "left": 995}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715581f.jpg"} -{"rects": [{"solidity": 0.997493103824417, "top": 390, "right": 5075, "bottom": 3600, "left": 1075}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708273f.jpg"} -{"rects": [{"solidity": 0.9974931289690171, "top": 840, "right": 3160, "bottom": 2790, "left": 405}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703208f.jpg"} -{"rects": [{"solidity": 0.9974931804404931, "top": 435, "right": 3295, "bottom": 2075, "left": 860}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/725386f.jpg"} -{"rects": [{"solidity": 0.9974936020895444, "top": 420, "right": 3180, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734221f.jpg"} -{"rects": [{"solidity": 0.9974937600788849, "top": 670, "right": 2695, "bottom": 2040, "left": 905}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725087f.jpg"} -{"rects": [{"solidity": 0.9974940513708564, "top": 680, "right": 5305, "bottom": 3505, "left": 3260}, {"solidity": 0.9947019983345391, "top": 650, "right": 2760, "bottom": 3480, "left": 705}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730073f.jpg"} -{"rects": [{"solidity": 0.9974940760216834, "top": 740, "right": 1970, "bottom": 3160, "left": 365}, {"solidity": 0.99677230809196, "top": 755, "right": 3780, "bottom": 3160, "left": 2160}, {"solidity": 0.996935826227884, "top": 775, "right": 5600, "bottom": 3175, "left": 4000}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721931f.jpg"} -{"rects": [{"solidity": 0.99749415572448, "top": 1935, "right": 3160, "bottom": 3550, "left": 745}, {"solidity": 0.9700057485590449, "top": 320, "right": 2860, "bottom": 1695, "left": 1035}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731544f.jpg"} -{"rects": [{"solidity": 0.9974941674587402, "top": 945, "right": 3905, "bottom": 3365, "left": 2275}, {"solidity": 0.9970219470946334, "top": 920, "right": 2050, "bottom": 3335, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710530f.jpg"} -{"rects": [{"solidity": 0.9974942010519782, "top": 4040, "right": 3185, "bottom": 5640, "left": 775}, {"solidity": 0.9974121170721455, "top": 2285, "right": 3165, "bottom": 3885, "left": 765}, {"solidity": 0.997345505803001, "top": 555, "right": 3185, "bottom": 2140, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733137f.jpg"} -{"rects": [{"solidity": 0.9974942667837653, "top": 400, "right": 5130, "bottom": 3695, "left": 1090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725408f.jpg"} -{"rects": [{"solidity": 0.997494280422704, "top": 775, "right": 2050, "bottom": 3165, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712551f.jpg"} -{"rects": [{"solidity": 0.9974943240716598, "top": 755, "right": 2035, "bottom": 3185, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705701f.jpg"} -{"rects": [{"solidity": 0.9974943822459085, "top": 810, "right": 2045, "bottom": 3195, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714702f.jpg"} -{"rects": [{"solidity": 0.9974946494949875, "top": 435, "right": 5090, "bottom": 3665, "left": 950}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/707413f.jpg"} -{"rects": [{"solidity": 0.9974946648629975, "top": 435, "right": 3170, "bottom": 2045, "left": 750}, {"solidity": 0.998465314157315, "top": 2305, "right": 3175, "bottom": 3910, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732000f.jpg"} -{"rects": [{"solidity": 0.9974946812839323, "top": 405, "right": 5050, "bottom": 3640, "left": 1025}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709728f.jpg"} -{"rects": [{"solidity": 0.9974947516632946, "top": 440, "right": 3250, "bottom": 2080, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705140f.jpg"} -{"rects": [{"solidity": 0.9974948844042768, "top": 990, "right": 3500, "bottom": 4990, "left": 260}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716906f.jpg"} -{"rects": [{"solidity": 0.9974948882178499, "top": 840, "right": 2590, "bottom": 3605, "left": 570}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716664f.jpg"} -{"rects": [{"solidity": 0.9974951470453185, "top": 2240, "right": 3185, "bottom": 3865, "left": 740}, {"solidity": 0.9954572362901923, "top": 385, "right": 3190, "bottom": 2015, "left": 740}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/716543f.jpg"} -{"rects": [{"solidity": 0.997495167280587, "top": 515, "right": 5265, "bottom": 3795, "left": 1235}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712093f.jpg"} -{"rects": [{"solidity": 0.9974954651051777, "top": 400, "right": 3225, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707163f.jpg"} -{"rects": [{"solidity": 0.9974955732300257, "top": 830, "right": 2060, "bottom": 3230, "left": 450}, {"solidity": 0.9952971564429283, "top": 845, "right": 3915, "bottom": 3255, "left": 2285}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712581f.jpg"} -{"rects": [{"solidity": 0.9974958081178426, "top": 460, "right": 5090, "bottom": 3745, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724866f.jpg"} -{"rects": [{"solidity": 0.9974958872262666, "top": 335, "right": 5270, "bottom": 3540, "left": 1285}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708666f.jpg"} -{"rects": [{"solidity": 0.9974959821150932, "top": 920, "right": 2040, "bottom": 3325, "left": 440}, {"solidity": 0.9954841388962464, "top": 910, "right": 3905, "bottom": 3320, "left": 2295}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728384f.jpg"} -{"rects": [{"solidity": 0.9974961553869813, "top": 760, "right": 3880, "bottom": 3170, "left": 2260}, {"solidity": 0.9977336761458877, "top": 765, "right": 2015, "bottom": 3175, "left": 400}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733335f.jpg"} -{"rects": [{"solidity": 0.9974962675738512, "top": 420, "right": 4955, "bottom": 3440, "left": 1155}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709161f.jpg"} -{"rects": [{"solidity": 0.9974965613872714, "top": 905, "right": 2010, "bottom": 3310, "left": 380}, {"solidity": 0.997968947902056, "top": 910, "right": 3865, "bottom": 3320, "left": 2250}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716576f.jpg"} -{"rects": [{"solidity": 0.9974966367997563, "top": 750, "right": 2050, "bottom": 3175, "left": 410}, {"solidity": 0.9958223646560604, "top": 780, "right": 5790, "bottom": 3210, "left": 4145}, {"solidity": 0.9958898270037093, "top": 735, "right": 3940, "bottom": 3180, "left": 2290}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718694f.jpg"} -{"rects": [{"solidity": 0.9974967019530873, "top": 2385, "right": 3240, "bottom": 4005, "left": 820}, {"solidity": 0.9989734260281983, "top": 515, "right": 3230, "bottom": 2130, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703189f.jpg"} -{"rects": [{"solidity": 0.9974967669240323, "top": 850, "right": 2050, "bottom": 3280, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701432f.jpg"} -{"rects": [{"solidity": 0.9974970534523178, "top": 410, "right": 3145, "bottom": 2020, "left": 725}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/710900f.jpg"} -{"rects": [{"solidity": 0.9974970681317975, "top": 805, "right": 3860, "bottom": 3210, "left": 2230}, {"solidity": 0.9985587891243513, "top": 800, "right": 1955, "bottom": 3210, "left": 340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710441f.jpg"} -{"rects": [{"solidity": 0.997497075691626, "top": 425, "right": 5645, "bottom": 4110, "left": 1080}], "shape": {"h": 4415, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/708359f.jpg"} -{"rects": [{"solidity": 0.9974970984315278, "top": 435, "right": 5105, "bottom": 3670, "left": 1035}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708456f.jpg"} -{"rects": [{"solidity": 0.9974971971245795, "top": 410, "right": 3195, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711986f.jpg"} -{"rects": [{"solidity": 0.9974972073940997, "top": 1060, "right": 3390, "bottom": 5045, "left": 320}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709169f.jpg"} -{"rects": [{"solidity": 0.9974973746300615, "top": 785, "right": 1940, "bottom": 3145, "left": 375}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723398f.jpg"} -{"rects": [{"solidity": 0.9974974216309559, "top": 390, "right": 5170, "bottom": 3600, "left": 1195}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723413f.jpg"} -{"rects": [{"solidity": 0.9974974437363795, "top": 1170, "right": 3370, "bottom": 5255, "left": 395}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718193f.jpg"} -{"rects": [{"solidity": 0.9974974621155352, "top": 1030, "right": 3625, "bottom": 5110, "left": 340}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/722582f.jpg"} -{"rects": [{"solidity": 0.9974977556204992, "top": 1195, "right": 3370, "bottom": 2905, "left": 1440}, {"solidity": 0.9435727646975172, "top": 3475, "right": 4510, "bottom": 5340, "left": 2605}], "shape": {"h": 5995, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465532.jpg"} -{"rects": [{"solidity": 0.9974979310433659, "top": 445, "right": 3215, "bottom": 2065, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702989f.jpg"} -{"rects": [{"solidity": 0.9974980047379556, "top": 460, "right": 3555, "bottom": 2095, "left": 1120}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705028f.jpg"} -{"rects": [{"solidity": 0.9974980612107526, "top": 490, "right": 5060, "bottom": 3790, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708060f.jpg"} -{"rects": [{"solidity": 0.9974981464673163, "top": 740, "right": 4580, "bottom": 3220, "left": 1530}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732837f.jpg"} -{"rects": [{"solidity": 0.9974981767508456, "top": 395, "right": 2865, "bottom": 3625, "left": 815}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733064f.jpg"} -{"rects": [{"solidity": 0.9974983089792353, "top": 285, "right": 3995, "bottom": 2745, "left": 955}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516909.jpg"} -{"rects": [{"solidity": 0.9974983708672283, "top": 495, "right": 4950, "bottom": 3795, "left": 910}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707574f.jpg"} -{"rects": [{"solidity": 0.9974986490115942, "top": 390, "right": 3205, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704234f.jpg"} -{"rects": [{"solidity": 0.9974987335359676, "top": 405, "right": 3185, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700002f.jpg"} -{"rects": [{"solidity": 0.9974987703670162, "top": 955, "right": 3490, "bottom": 4975, "left": 280}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715585f.jpg"} -{"rects": [{"solidity": 0.9974987720557675, "top": 485, "right": 5115, "bottom": 3740, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718576f.jpg"} -{"rects": [{"solidity": 0.997499155119973, "top": 2195, "right": 3180, "bottom": 3825, "left": 775}, {"solidity": 0.9965355548751994, "top": 335, "right": 3195, "bottom": 1965, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715408f.jpg"} -{"rects": [{"solidity": 0.9974993393873381, "top": 770, "right": 2040, "bottom": 3185, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712442f.jpg"} -{"rects": [{"solidity": 0.9974996144418595, "top": 450, "right": 3090, "bottom": 2045, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729020f.jpg"} -{"rects": [{"solidity": 0.9974999650833112, "top": 365, "right": 3835, "bottom": 2755, "left": 820}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715954f.jpg"} -{"rects": [{"solidity": 0.9975000925488385, "top": 720, "right": 2480, "bottom": 3560, "left": 445}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733324f.jpg"} -{"rects": [{"solidity": 0.9975001546128331, "top": 2255, "right": 3200, "bottom": 3865, "left": 795}, {"solidity": 0.9975293290451948, "top": 420, "right": 3190, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721674f.jpg"} -{"rects": [{"solidity": 0.9975002132014327, "top": 325, "right": 2410, "bottom": 1580, "left": 520}], "shape": {"h": 4590, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/700405f.jpg"} -{"rects": [{"solidity": 0.9975003217549229, "top": 720, "right": 4035, "bottom": 3270, "left": 2310}, {"solidity": 0.9963142065223801, "top": 730, "right": 2105, "bottom": 3275, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711714f.jpg"} -{"rects": [{"solidity": 0.997500344062757, "top": 4080, "right": 3180, "bottom": 5700, "left": 750}, {"solidity": 0.9967898097367194, "top": 2255, "right": 3165, "bottom": 3870, "left": 740}, {"solidity": 0.9973266343325938, "top": 435, "right": 3160, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732048f.jpg"} -{"rects": [{"solidity": 0.9975006837035462, "top": 390, "right": 3510, "bottom": 2220, "left": 790}], "shape": {"h": 4430, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/710280f.jpg"} -{"rects": [{"solidity": 0.99750074714852, "top": 430, "right": 3195, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/712787f.jpg"} -{"rects": [{"solidity": 0.9975011887389529, "top": 2295, "right": 3210, "bottom": 3895, "left": 810}, {"solidity": 0.9976916802334043, "top": 480, "right": 3185, "bottom": 2055, "left": 825}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721615f.jpg"} -{"rects": [{"solidity": 0.9975014445782315, "top": 2205, "right": 3155, "bottom": 3820, "left": 740}, {"solidity": 0.9969566525118128, "top": 365, "right": 3165, "bottom": 1975, "left": 745}, {"solidity": 0.9962560107305988, "top": 4060, "right": 3155, "bottom": 5670, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734052f.jpg"} -{"rects": [{"solidity": 0.9975015091014149, "top": 850, "right": 3920, "bottom": 3260, "left": 2300}, {"solidity": 0.9981919215442736, "top": 850, "right": 2090, "bottom": 3260, "left": 475}, {"solidity": 0.9983422707970401, "top": 855, "right": 5785, "bottom": 3265, "left": 4175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720214f.jpg"} -{"rects": [{"solidity": 0.9975015615240475, "top": 265, "right": 3180, "bottom": 1895, "left": 760}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/724392f.jpg"} -{"rects": [{"solidity": 0.9975018192213733, "top": 830, "right": 2090, "bottom": 3235, "left": 480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710966f.jpg"} -{"rects": [{"solidity": 0.9975018959459421, "top": 690, "right": 4595, "bottom": 3320, "left": 1215}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718933f.jpg"} -{"rects": [{"solidity": 0.9975019087078607, "top": 2170, "right": 3215, "bottom": 3800, "left": 795}, {"solidity": 0.9963173676959235, "top": 320, "right": 3195, "bottom": 1945, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707695f.jpg"} -{"rects": [{"solidity": 0.9975019271304787, "top": 820, "right": 2105, "bottom": 3250, "left": 485}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705697f.jpg"} -{"rects": [{"solidity": 0.9975020404939312, "top": 780, "right": 2010, "bottom": 3175, "left": 410}, {"solidity": 0.9962067876459054, "top": 770, "right": 3825, "bottom": 3175, "left": 2230}, {"solidity": 0.9966355610599307, "top": 785, "right": 5680, "bottom": 3180, "left": 4080}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718246f.jpg"} -{"rects": [{"solidity": 0.997502242391749, "top": 375, "right": 3325, "bottom": 2240, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713617f.jpg"} -{"rects": [{"solidity": 0.9975023022117389, "top": 1200, "right": 2985, "bottom": 2810, "left": 565}, {"solidity": 0.995435266125278, "top": 1175, "right": 5635, "bottom": 2790, "left": 3215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713932f.jpg"} -{"rects": [{"solidity": 0.9975024763581872, "top": 300, "right": 3445, "bottom": 2765, "left": 420}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509813.jpg"} -{"rects": [{"solidity": 0.9975026433491566, "top": 710, "right": 2735, "bottom": 3515, "left": 700}, {"solidity": 0.9655680104054701, "top": 765, "right": 3975, "bottom": 2025, "left": 2850}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721889f.jpg"} -{"rects": [{"solidity": 0.9975030556438479, "top": 420, "right": 3285, "bottom": 2010, "left": 870}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727498f.jpg"} -{"rects": [{"solidity": 0.9975031776269191, "top": 770, "right": 3740, "bottom": 3160, "left": 2110}, {"solidity": 0.9980321597613954, "top": 775, "right": 5600, "bottom": 3180, "left": 3985}, {"solidity": 0.9967038161908031, "top": 755, "right": 1885, "bottom": 3155, "left": 260}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723353f.jpg"} -{"rects": [{"solidity": 0.9975032906758255, "top": 415, "right": 3315, "bottom": 2030, "left": 895}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728176f.jpg"} -{"rects": [{"solidity": 0.997503359918381, "top": 670, "right": 5205, "bottom": 2085, "left": 3390}, {"solidity": 0.9965505978303904, "top": 2110, "right": 2710, "bottom": 3530, "left": 915}, {"solidity": 0.9933418923357119, "top": 665, "right": 2740, "bottom": 2060, "left": 920}, {"solidity": 0.9957054382713258, "top": 2130, "right": 5190, "bottom": 3540, "left": 3405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725051f.jpg"} -{"rects": [{"solidity": 0.9975034144820574, "top": 410, "right": 3385, "bottom": 2370, "left": 625}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706459f.jpg"} -{"rects": [{"solidity": 0.9975038013177902, "top": 295, "right": 1835, "bottom": 1175, "left": 700}], "shape": {"h": 3935, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727180f.jpg"} -{"rects": [{"solidity": 0.9975039882414096, "top": 1995, "right": 2825, "bottom": 4875, "left": 875}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718506f.jpg"} -{"rects": [{"solidity": 0.9975043070829375, "top": 760, "right": 2035, "bottom": 3180, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704808f.jpg"} -{"rects": [{"solidity": 0.9975043114619295, "top": 395, "right": 3085, "bottom": 2020, "left": 665}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706288f.jpg"} -{"rects": [{"solidity": 0.9975043729536819, "top": 845, "right": 3930, "bottom": 3265, "left": 2305}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719157f.jpg"} -{"rects": [{"solidity": 0.9975045513953772, "top": 400, "right": 3255, "bottom": 2000, "left": 865}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728202f.jpg"} -{"rects": [{"solidity": 0.9975045648204504, "top": 2295, "right": 3175, "bottom": 3915, "left": 750}, {"solidity": 0.9963573576561281, "top": 410, "right": 3185, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/706861f.jpg"} -{"rects": [{"solidity": 0.9975046707033549, "top": 2245, "right": 3065, "bottom": 3860, "left": 640}, {"solidity": 0.9952907099734757, "top": 4110, "right": 3050, "bottom": 5715, "left": 625}, {"solidity": 0.996202001674708, "top": 380, "right": 3050, "bottom": 1970, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728887f.jpg"} -{"rects": [{"solidity": 0.9975046948584432, "top": 415, "right": 3170, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710576f.jpg"} -{"rects": [{"solidity": 0.9975047479541786, "top": 570, "right": 2990, "bottom": 2205, "left": 560}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705033f.jpg"} -{"rects": [{"solidity": 0.997504832191179, "top": 790, "right": 2030, "bottom": 3220, "left": 405}, {"solidity": 0.9977825340814871, "top": 785, "right": 3895, "bottom": 3210, "left": 2280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722016f.jpg"} -{"rects": [{"solidity": 0.9975048963939499, "top": 830, "right": 2025, "bottom": 3205, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734220f.jpg"} -{"rects": [{"solidity": 0.9975049900199601, "top": 865, "right": 2045, "bottom": 3275, "left": 440}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730554f.jpg"} -{"rects": [{"solidity": 0.9975051640421708, "top": 505, "right": 3875, "bottom": 2515, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732081f.jpg"} -{"rects": [{"solidity": 0.9975052057287032, "top": 485, "right": 5095, "bottom": 3800, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718336f.jpg"} -{"rects": [{"solidity": 0.9975052342105314, "top": 430, "right": 2710, "bottom": 3650, "left": 665}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733084f.jpg"} -{"rects": [{"solidity": 0.9975055972199992, "top": 430, "right": 4970, "bottom": 3675, "left": 955}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712249f.jpg"} -{"rects": [{"solidity": 0.9975056708322522, "top": 870, "right": 3385, "bottom": 2850, "left": 350}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708125f.jpg"} -{"rects": [{"solidity": 0.9975058843500773, "top": 775, "right": 1980, "bottom": 3180, "left": 375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721410f.jpg"} -{"rects": [{"solidity": 0.9975059131232611, "top": 1205, "right": 4050, "bottom": 5775, "left": 345}], "shape": {"h": 6855, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708892f.jpg"} -{"rects": [{"solidity": 0.9975061539826088, "top": 455, "right": 4930, "bottom": 3250, "left": 1030}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708738f.jpg"} -{"rects": [{"solidity": 0.9975063542784193, "top": 1315, "right": 3605, "bottom": 5365, "left": 310}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730030f.jpg"} -{"rects": [{"solidity": 0.997506414553524, "top": 1035, "right": 3495, "bottom": 5060, "left": 255}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700767f.jpg"} -{"rects": [{"solidity": 0.9975065214055547, "top": 770, "right": 3850, "bottom": 3185, "left": 2215}, {"solidity": 0.9957835966436398, "top": 775, "right": 5745, "bottom": 3190, "left": 4120}, {"solidity": 0.9969795591912112, "top": 770, "right": 1955, "bottom": 3175, "left": 345}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710448f.jpg"} -{"rects": [{"solidity": 0.9975065589764813, "top": 465, "right": 5130, "bottom": 3730, "left": 1020}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700010f.jpg"} -{"rects": [{"solidity": 0.9975065685415877, "top": 785, "right": 2025, "bottom": 3180, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732361f.jpg"} -{"rects": [{"solidity": 0.9975066412552798, "top": 400, "right": 5055, "bottom": 3705, "left": 990}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731280f.jpg"} -{"rects": [{"solidity": 0.9975067012803478, "top": 355, "right": 5235, "bottom": 3635, "left": 1200}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733476f.jpg"} -{"rects": [{"solidity": 0.9975067498611273, "top": 385, "right": 3105, "bottom": 2000, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701546f.jpg"} -{"rects": [{"solidity": 0.9975068530293226, "top": 460, "right": 5000, "bottom": 3675, "left": 930}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709686f.jpg"} -{"rects": [{"solidity": 0.9975069449390982, "top": 730, "right": 2040, "bottom": 3145, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717530f.jpg"} -{"rects": [{"solidity": 0.9975069876014866, "top": 370, "right": 3325, "bottom": 2230, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713616f.jpg"} -{"rects": [{"solidity": 0.9975071472237778, "top": 1115, "right": 3590, "bottom": 5165, "left": 290}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726804f.jpg"} -{"rects": [{"solidity": 0.9975073754045153, "top": 405, "right": 5105, "bottom": 3680, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725379f.jpg"} -{"rects": [{"solidity": 0.9975077534177237, "top": 695, "right": 4690, "bottom": 3335, "left": 1365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701502f.jpg"} -{"rects": [{"solidity": 0.9975080320302689, "top": 2190, "right": 3115, "bottom": 3810, "left": 730}, {"solidity": 0.9964191783059707, "top": 325, "right": 3115, "bottom": 1945, "left": 735}, {"solidity": 0.9966629221996383, "top": 4065, "right": 3110, "bottom": 5680, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719583f.jpg"} -{"rects": [{"solidity": 0.997508101896683, "top": 800, "right": 3770, "bottom": 3220, "left": 2155}, {"solidity": 0.9970392422016623, "top": 785, "right": 1915, "bottom": 3200, "left": 305}, {"solidity": 0.9956541211206396, "top": 1050, "right": 5625, "bottom": 2950, "left": 4015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712528f.jpg"} -{"rects": [{"solidity": 0.9975081091448195, "top": 600, "right": 4765, "bottom": 3255, "left": 1330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717240f.jpg"} -{"rects": [{"solidity": 0.9975082303357542, "top": 650, "right": 4795, "bottom": 3510, "left": 1165}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723888f.jpg"} -{"rects": [{"solidity": 0.9975083056478405, "top": 565, "right": 6000, "bottom": 3390, "left": 3970}, {"solidity": 0.9972274370160541, "top": 770, "right": 2005, "bottom": 3150, "left": 420}, {"solidity": 0.9327852922885572, "top": 890, "right": 3840, "bottom": 3170, "left": 2360}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711238f.jpg"} -{"rects": [{"solidity": 0.9975084432679896, "top": 1000, "right": 5510, "bottom": 3035, "left": 2485}, {"solidity": 0.9972625919138663, "top": 805, "right": 2050, "bottom": 3210, "left": 445}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715488f.jpg"} -{"rects": [{"solidity": 0.9975085703877653, "top": 420, "right": 3160, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702632f.jpg"} -{"rects": [{"solidity": 0.9975086406924172, "top": 415, "right": 3015, "bottom": 2030, "left": 600}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729631f.jpg"} -{"rects": [{"solidity": 0.9975086693764212, "top": 2260, "right": 3195, "bottom": 3880, "left": 790}, {"solidity": 0.9963238057270205, "top": 430, "right": 3185, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719539f.jpg"} -{"rects": [{"solidity": 0.9975088262382317, "top": 380, "right": 3210, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706739f.jpg"} -{"rects": [{"solidity": 0.9975090149169081, "top": 760, "right": 2050, "bottom": 3180, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722388f.jpg"} -{"rects": [{"solidity": 0.9975091692520548, "top": 745, "right": 2550, "bottom": 3760, "left": 565}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715448f.jpg"} -{"rects": [{"solidity": 0.99750942596667, "top": 470, "right": 5040, "bottom": 3755, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734474f.jpg"} -{"rects": [{"solidity": 0.9975095181275218, "top": 835, "right": 1995, "bottom": 3240, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712044f.jpg"} -{"rects": [{"solidity": 0.9975098165299254, "top": 1240, "right": 3430, "bottom": 5130, "left": 550}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717370f.jpg"} -{"rects": [{"solidity": 0.9975098376783079, "top": 345, "right": 5300, "bottom": 3595, "left": 1270}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721856f.jpg"} -{"rects": [{"solidity": 0.997510192848045, "top": 775, "right": 2020, "bottom": 3210, "left": 405}, {"solidity": 0.9966025896030901, "top": 780, "right": 3835, "bottom": 3210, "left": 2215}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706647f.jpg"} -{"rects": [{"solidity": 0.9975104002063917, "top": 365, "right": 3045, "bottom": 1990, "left": 640}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712302f.jpg"} -{"rects": [{"solidity": 0.9975104370893745, "top": 335, "right": 3745, "bottom": 2450, "left": 720}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715976f.jpg"} -{"rects": [{"solidity": 0.9975104786041524, "top": 420, "right": 4970, "bottom": 3645, "left": 975}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722770f.jpg"} -{"rects": [{"solidity": 0.9975108678151666, "top": 410, "right": 3225, "bottom": 2020, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734011f.jpg"} -{"rects": [{"solidity": 0.9975109960523689, "top": 735, "right": 2720, "bottom": 3905, "left": 255}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508819.jpg"} -{"rects": [{"solidity": 0.9975111635833912, "top": 475, "right": 5080, "bottom": 3760, "left": 1055}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714408f.jpg"} -{"rects": [{"solidity": 0.9975113033734218, "top": 750, "right": 2030, "bottom": 3165, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720896f.jpg"} -{"rects": [{"solidity": 0.9975113475498864, "top": 405, "right": 3375, "bottom": 2240, "left": 645}], "shape": {"h": 4425, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706409f.jpg"} -{"rects": [{"solidity": 0.9975113519480193, "top": 3430, "right": 3330, "bottom": 5315, "left": 670}, {"solidity": 0.997977199354318, "top": 795, "right": 3350, "bottom": 2670, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719429f.jpg"} -{"rects": [{"solidity": 0.9975113865249938, "top": 460, "right": 4695, "bottom": 3740, "left": 1440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717079f.jpg"} -{"rects": [{"solidity": 0.9975114356816124, "top": 420, "right": 5115, "bottom": 3685, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716766f.jpg"} -{"rects": [{"solidity": 0.997511521333049, "top": 795, "right": 1950, "bottom": 3210, "left": 335}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711118f.jpg"} -{"rects": [{"solidity": 0.9975118148139716, "top": 500, "right": 2965, "bottom": 2110, "left": 560}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702253f.jpg"} -{"rects": [{"solidity": 0.9975118571413414, "top": 1070, "right": 1650, "bottom": 3010, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724003f.jpg"} -{"rects": [{"solidity": 0.9975119523855986, "top": 840, "right": 1925, "bottom": 3245, "left": 315}, {"solidity": 0.9982513204814089, "top": 850, "right": 3790, "bottom": 3245, "left": 2180}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711810f.jpg"} -{"rects": [{"solidity": 0.9975120403551619, "top": 465, "right": 2985, "bottom": 2070, "left": 580}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703947f.jpg"} -{"rects": [{"solidity": 0.9975122940821488, "top": 2240, "right": 3230, "bottom": 3855, "left": 800}, {"solidity": 0.9963895880377605, "top": 500, "right": 3225, "bottom": 2115, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734343f.jpg"} -{"rects": [{"solidity": 0.9975123895920965, "top": 415, "right": 3175, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705575f.jpg"} -{"rects": [{"solidity": 0.9975124254842594, "top": 550, "right": 2880, "bottom": 1940, "left": 1050}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703357f.jpg"} -{"rects": [{"solidity": 0.9975126946130966, "top": 895, "right": 3895, "bottom": 3305, "left": 2275}, {"solidity": 0.9789357790885286, "top": 905, "right": 2015, "bottom": 3295, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708966f.jpg"} -{"rects": [{"solidity": 0.9975126952189326, "top": 400, "right": 5070, "bottom": 3655, "left": 1040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707536f.jpg"} -{"rects": [{"solidity": 0.997512895489043, "top": 405, "right": 3195, "bottom": 2010, "left": 805}, {"solidity": 0.9963326066400504, "top": 2280, "right": 3200, "bottom": 3880, "left": 805}, {"solidity": 0.9958033732505749, "top": 4130, "right": 3185, "bottom": 5720, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718240f.jpg"} -{"rects": [{"solidity": 0.9975129133459418, "top": 1025, "right": 3490, "bottom": 5030, "left": 260}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714536f.jpg"} -{"rects": [{"solidity": 0.9975129597314406, "top": 445, "right": 2880, "bottom": 1830, "left": 1095}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703606f.jpg"} -{"rects": [{"solidity": 0.997512968439424, "top": 2125, "right": 2670, "bottom": 3555, "left": 850}, {"solidity": 0.9990801800705682, "top": 625, "right": 2675, "bottom": 2050, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731982f.jpg"} -{"rects": [{"solidity": 0.9975130382061437, "top": 455, "right": 3740, "bottom": 2715, "left": 850}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715883f.jpg"} -{"rects": [{"solidity": 0.9975130382556866, "top": 385, "right": 5140, "bottom": 3615, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732679f.jpg"} -{"rects": [{"solidity": 0.9975130839058218, "top": 775, "right": 2045, "bottom": 3175, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722578f.jpg"} -{"rects": [{"solidity": 0.9975134156709664, "top": 375, "right": 2165, "bottom": 1405, "left": 825}], "shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715930f.jpg"} -{"rects": [{"solidity": 0.9975135616627095, "top": 310, "right": 3190, "bottom": 1940, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703767f.jpg"} -{"rects": [{"solidity": 0.9975135740202259, "top": 760, "right": 1935, "bottom": 3180, "left": 315}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715503f.jpg"} -{"rects": [{"solidity": 0.9975136683991751, "top": 2165, "right": 3020, "bottom": 3795, "left": 610}, {"solidity": 0.998081177479796, "top": 500, "right": 3000, "bottom": 2120, "left": 590}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704530f.jpg"} -{"rects": [{"solidity": 0.9975140638060087, "top": 435, "right": 4995, "bottom": 3705, "left": 895}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/723314f.jpg"} -{"rects": [{"solidity": 0.9975140982455899, "top": 920, "right": 2705, "bottom": 3945, "left": 280}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516929.jpg"} -{"rects": [{"solidity": 0.9975146948597577, "top": 780, "right": 2030, "bottom": 3170, "left": 425}, {"solidity": 0.9967307040826731, "top": 790, "right": 3875, "bottom": 3185, "left": 2275}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712559f.jpg"} -{"rects": [{"solidity": 0.9975148379725141, "top": 460, "right": 3190, "bottom": 2090, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700070f.jpg"} -{"rects": [{"solidity": 0.997515034232154, "top": 525, "right": 5170, "bottom": 3805, "left": 1110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733562f.jpg"} -{"rects": [{"solidity": 0.9975151506522967, "top": 460, "right": 5125, "bottom": 3705, "left": 1045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730093f.jpg"} -{"rects": [{"solidity": 0.9975152917517999, "top": 2255, "right": 3225, "bottom": 3875, "left": 810}, {"solidity": 0.9972391905926065, "top": 380, "right": 3235, "bottom": 1995, "left": 810}, {"solidity": 0.9971235512480807, "top": 4155, "right": 3200, "bottom": 5780, "left": 805}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702682f.jpg"} -{"rects": [{"solidity": 0.9975157279389507, "top": 475, "right": 5075, "bottom": 3690, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733607f.jpg"} -{"rects": [{"solidity": 0.997515824752728, "top": 715, "right": 2010, "bottom": 3135, "left": 420}, {"solidity": 0.9975271797058196, "top": 720, "right": 3885, "bottom": 3135, "left": 2295}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725591f.jpg"} -{"rects": [{"solidity": 0.9975160030332884, "top": 1010, "right": 3555, "bottom": 5115, "left": 275}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/723702f.jpg"} -{"rects": [{"solidity": 0.9975161899840119, "top": 830, "right": 3905, "bottom": 3245, "left": 2290}, {"solidity": 0.9964483877462775, "top": 850, "right": 2060, "bottom": 3245, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711750f.jpg"} -{"rects": [{"solidity": 0.9975162136056299, "top": 495, "right": 2405, "bottom": 2920, "left": 785}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707273f.jpg"} -{"rects": [{"solidity": 0.9975162492137477, "top": 815, "right": 2005, "bottom": 3235, "left": 395}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707368f.jpg"} -{"rects": [{"solidity": 0.9975162999605607, "top": 605, "right": 5015, "bottom": 3590, "left": 1130}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709034f.jpg"} -{"rects": [{"solidity": 0.9975163811427251, "top": 565, "right": 2230, "bottom": 2965, "left": 615}, {"solidity": 0.9984638715665896, "top": 350, "right": 5305, "bottom": 1955, "left": 2905}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702297f.jpg"} -{"rects": [{"solidity": 0.9975163854053775, "top": 390, "right": 3030, "bottom": 2015, "left": 620}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703152f.jpg"} -{"rects": [{"solidity": 0.9975164842952259, "top": 2200, "right": 3195, "bottom": 3810, "left": 770}, {"solidity": 0.9976262199487831, "top": 3945, "right": 3200, "bottom": 5555, "left": 775}, {"solidity": 0.9966358419910138, "top": 475, "right": 3170, "bottom": 2085, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733231f.jpg"} -{"rects": [{"solidity": 0.9975167770142858, "top": 385, "right": 3115, "bottom": 2000, "left": 690}, {"solidity": 0.9963350970812817, "top": 2230, "right": 3105, "bottom": 3860, "left": 680}, {"solidity": 0.9955732810595753, "top": 4085, "right": 3080, "bottom": 5710, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729743f.jpg"} -{"rects": [{"solidity": 0.9975168358529172, "top": 845, "right": 1910, "bottom": 3215, "left": 305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709361f.jpg"} -{"rects": [{"solidity": 0.9975169107764348, "top": 430, "right": 5300, "bottom": 3670, "left": 1225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732699f.jpg"} -{"rects": [{"solidity": 0.9975169497279314, "top": 725, "right": 3945, "bottom": 3135, "left": 2330}, {"solidity": 0.9936755708689785, "top": 735, "right": 2075, "bottom": 3140, "left": 470}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708656f.jpg"} -{"rects": [{"solidity": 0.99751722607924, "top": 740, "right": 2020, "bottom": 3145, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715570f.jpg"} -{"rects": [{"solidity": 0.9975173142219148, "top": 475, "right": 5100, "bottom": 3740, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719565f.jpg"} -{"rects": [{"solidity": 0.9975173976371581, "top": 340, "right": 3175, "bottom": 1955, "left": 765}, {"solidity": 0.9971962464300286, "top": 2170, "right": 3155, "bottom": 3780, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734280f.jpg"} -{"rects": [{"solidity": 0.9975176883909675, "top": 325, "right": 3580, "bottom": 2975, "left": 180}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723842f.jpg"} -{"rects": [{"solidity": 0.9975176973011011, "top": 2265, "right": 3135, "bottom": 3880, "left": 715}, {"solidity": 0.99771361294687, "top": 4140, "right": 3150, "bottom": 5740, "left": 730}, {"solidity": 0.9960310984326756, "top": 400, "right": 3140, "bottom": 2005, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733729f.jpg"} -{"rects": [{"solidity": 0.9975178684414032, "top": 350, "right": 5320, "bottom": 3630, "left": 1220}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709746f.jpg"} -{"rects": [{"solidity": 0.9975180035627059, "top": 460, "right": 3210, "bottom": 2050, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727197f.jpg"} -{"rects": [{"solidity": 0.9975182057697893, "top": 655, "right": 2590, "bottom": 2045, "left": 810}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723296f.jpg"} -{"rects": [{"solidity": 0.99751849919747, "top": 495, "right": 5115, "bottom": 3745, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733557f.jpg"} -{"rects": [{"solidity": 0.9975186025075511, "top": 750, "right": 2065, "bottom": 3175, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722002f.jpg"} -{"rects": [{"solidity": 0.9975186679653077, "top": 1045, "right": 3425, "bottom": 4980, "left": 370}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722364f.jpg"} -{"rects": [{"solidity": 0.997519030887426, "top": 785, "right": 3880, "bottom": 3210, "left": 2255}, {"solidity": 0.9972277645614305, "top": 795, "right": 2015, "bottom": 3215, "left": 385}, {"solidity": 0.9985605144958435, "top": 790, "right": 5730, "bottom": 3215, "left": 4110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732457f.jpg"} -{"rects": [{"solidity": 0.9975191710294788, "top": 695, "right": 2630, "bottom": 3530, "left": 585}, {"solidity": 0.9954980865782637, "top": 690, "right": 5310, "bottom": 3530, "left": 3255}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709490f.jpg"} -{"rects": [{"solidity": 0.9975196309005153, "top": 475, "right": 3140, "bottom": 2095, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707027f.jpg"} -{"rects": [{"solidity": 0.9975199125993296, "top": 425, "right": 5135, "bottom": 3685, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720520f.jpg"} -{"rects": [{"solidity": 0.997519934906428, "top": 2165, "right": 3035, "bottom": 3770, "left": 625}, {"solidity": 0.9975207421441171, "top": 4035, "right": 3030, "bottom": 5640, "left": 625}, {"solidity": 0.9928350024648672, "top": 325, "right": 3035, "bottom": 1900, "left": 650}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700741f.jpg"} -{"rects": [{"solidity": 0.9975201354322712, "top": 1155, "right": 3535, "bottom": 5280, "left": 245}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709581f.jpg"} -{"rects": [{"solidity": 0.9975201586085017, "top": 2205, "right": 3205, "bottom": 3845, "left": 775}, {"solidity": 0.9968134497911216, "top": 4075, "right": 3210, "bottom": 5705, "left": 785}, {"solidity": 0.997906400796589, "top": 385, "right": 3180, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703352f.jpg"} -{"rects": [{"solidity": 0.9975202464958607, "top": 415, "right": 3175, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/701169f.jpg"} -{"rects": [{"solidity": 0.9975202994151686, "top": 2255, "right": 3650, "bottom": 4700, "left": 975}], "shape": {"h": 6005, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/464734.jpg"} -{"rects": [{"solidity": 0.9975203054144209, "top": 360, "right": 5075, "bottom": 3590, "left": 1075}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708222f.jpg"} -{"rects": [{"solidity": 0.9975203183678045, "top": 1050, "right": 2385, "bottom": 3845, "left": 365}], "shape": {"h": 4655, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508279.jpg"} -{"rects": [{"solidity": 0.9975205078728756, "top": 805, "right": 3990, "bottom": 3210, "left": 2380}, {"solidity": 0.99677838841004, "top": 800, "right": 5785, "bottom": 3215, "left": 4180}, {"solidity": 0.9963627052543809, "top": 825, "right": 2060, "bottom": 3205, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718241f.jpg"} -{"rects": [{"solidity": 0.9975205709959701, "top": 670, "right": 2065, "bottom": 3065, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721342f.jpg"} -{"rects": [{"solidity": 0.9975206107262491, "top": 805, "right": 2040, "bottom": 3225, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715412f.jpg"} -{"rects": [{"solidity": 0.9975208327925028, "top": 750, "right": 3885, "bottom": 3160, "left": 2275}, {"solidity": 0.9962550384515569, "top": 750, "right": 5725, "bottom": 3150, "left": 4125}, {"solidity": 0.9971627836391589, "top": 760, "right": 2005, "bottom": 3160, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716916f.jpg"} -{"rects": [{"solidity": 0.9975212738525013, "top": 2780, "right": 3135, "bottom": 4405, "left": 725}, {"solidity": 0.9946250212973887, "top": 225, "right": 2710, "bottom": 2665, "left": 1050}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700404f.jpg"} -{"rects": [{"solidity": 0.9975213329274697, "top": 430, "right": 3240, "bottom": 2010, "left": 855}, {"solidity": 0.9855922837335477, "top": 2250, "right": 3225, "bottom": 3840, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726286f.jpg"} -{"rects": [{"solidity": 0.9975214707899291, "top": 795, "right": 1975, "bottom": 3195, "left": 365}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722952f.jpg"} -{"rects": [{"solidity": 0.9975217061969637, "top": 1125, "right": 3945, "bottom": 5640, "left": 320}], "shape": {"h": 6895, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711655f.jpg"} -{"rects": [{"solidity": 0.9975218213193414, "top": 300, "right": 5065, "bottom": 3550, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707349f.jpg"} -{"rects": [{"solidity": 0.9975218894483827, "top": 2145, "right": 3125, "bottom": 3780, "left": 690}, {"solidity": 0.9966883855553637, "top": 305, "right": 3120, "bottom": 1915, "left": 720}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709301f.jpg"} -{"rects": [{"solidity": 0.9975221598975105, "top": 545, "right": 4980, "bottom": 3530, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719193f.jpg"} -{"rects": [{"solidity": 0.9975222579547716, "top": 2155, "right": 3225, "bottom": 3780, "left": 810}, {"solidity": 0.9976584795552096, "top": 310, "right": 3205, "bottom": 1925, "left": 830}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710344f.jpg"} -{"rects": [{"solidity": 0.9975223507558482, "top": 935, "right": 3645, "bottom": 4980, "left": 350}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708933f.jpg"} -{"rects": [{"solidity": 0.997522388830103, "top": 835, "right": 3860, "bottom": 3260, "left": 2250}, {"solidity": 0.9983004132645313, "top": 860, "right": 5730, "bottom": 3270, "left": 4115}, {"solidity": 0.9984331600313368, "top": 840, "right": 2015, "bottom": 3260, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720653f.jpg"} -{"rects": [{"solidity": 0.9975225262876344, "top": 845, "right": 1950, "bottom": 3245, "left": 380}, {"solidity": 0.9859073187718065, "top": 860, "right": 3860, "bottom": 3230, "left": 2275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713603f.jpg"} -{"rects": [{"solidity": 0.997522577637942, "top": 735, "right": 2825, "bottom": 3545, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703021f.jpg"} -{"rects": [{"solidity": 0.9975226102036285, "top": 725, "right": 1995, "bottom": 3150, "left": 380}, {"solidity": 0.9971594751792235, "top": 720, "right": 3870, "bottom": 3140, "left": 2245}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720307f.jpg"} -{"rects": [{"solidity": 0.9975226420861284, "top": 2330, "right": 3110, "bottom": 3940, "left": 680}, {"solidity": 0.9989235876951807, "top": 440, "right": 3110, "bottom": 2050, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729438f.jpg"} -{"rects": [{"solidity": 0.9975227657824592, "top": 845, "right": 2160, "bottom": 3235, "left": 565}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710925f.jpg"} -{"rects": [{"solidity": 0.9975229147261707, "top": 605, "right": 3140, "bottom": 2185, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710153f.jpg"} -{"rects": [{"solidity": 0.9975229555140287, "top": 415, "right": 3190, "bottom": 1990, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724530f.jpg"} -{"rects": [{"solidity": 0.9975233851808515, "top": 1005, "right": 3625, "bottom": 5055, "left": 370}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/731207f.jpg"} -{"rects": [{"solidity": 0.997523476399611, "top": 745, "right": 2040, "bottom": 3145, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711869f.jpg"} -{"rects": [{"solidity": 0.9975236459649901, "top": 390, "right": 3075, "bottom": 2010, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729596f.jpg"} -{"rects": [{"solidity": 0.9975236878804071, "top": 705, "right": 2105, "bottom": 3120, "left": 505}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707511f.jpg"} -{"rects": [{"solidity": 0.9975237244613152, "top": 495, "right": 5675, "bottom": 4200, "left": 1120}], "shape": {"h": 4410, "w": 6850}, "file": "/usr/local/google/home/danvk/milstein/711680f.jpg"} -{"rects": [{"solidity": 0.9975241555602, "top": 435, "right": 3280, "bottom": 2050, "left": 855}, {"solidity": 0.9984186388055086, "top": 2145, "right": 3270, "bottom": 3760, "left": 850}, {"solidity": 0.9983572921733025, "top": 3845, "right": 3255, "bottom": 5460, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733204f.jpg"} -{"rects": [{"solidity": 0.9975242285662974, "top": 430, "right": 3070, "bottom": 2060, "left": 655}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723127f.jpg"} -{"rects": [{"solidity": 0.9975242378394977, "top": 380, "right": 3015, "bottom": 2005, "left": 590}, {"solidity": 0.9953407889255615, "top": 385, "right": 5670, "bottom": 2010, "left": 3245}, {"solidity": 0.9954579985063001, "top": 2100, "right": 5665, "bottom": 3730, "left": 3240}, {"solidity": 0.9958528599858766, "top": 2090, "right": 3010, "bottom": 3710, "left": 585}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725696f.jpg"} -{"rects": [{"solidity": 0.9975243852334287, "top": 505, "right": 5100, "bottom": 3800, "left": 1070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712085f.jpg"} -{"rects": [{"solidity": 0.9975244878055103, "top": 990, "right": 5345, "bottom": 3400, "left": 3730}, {"solidity": 0.99724834410009, "top": 990, "right": 3575, "bottom": 2950, "left": 2000}, {"solidity": 0.9980579959046172, "top": 995, "right": 1870, "bottom": 3015, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721076f.jpg"} -{"rects": [{"solidity": 0.9975245083902513, "top": 420, "right": 4860, "bottom": 3745, "left": 770}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724987f.jpg"} -{"rects": [{"solidity": 0.9975250807038901, "top": 1095, "right": 3475, "bottom": 4915, "left": 445}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722048f.jpg"} -{"rects": [{"solidity": 0.9975252743118284, "top": 4035, "right": 3170, "bottom": 5645, "left": 755}, {"solidity": 0.9963574268580407, "top": 2365, "right": 3000, "bottom": 3750, "left": 1195}, {"solidity": 0.9949467288077793, "top": 525, "right": 2985, "bottom": 1900, "left": 1205}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727425f.jpg"} -{"rects": [{"solidity": 0.997525290634472, "top": 420, "right": 3175, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707096f.jpg"} -{"rects": [{"solidity": 0.9975253134586879, "top": 415, "right": 5060, "bottom": 3655, "left": 1040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708468f.jpg"} -{"rects": [{"solidity": 0.9975253215698657, "top": 440, "right": 5090, "bottom": 3710, "left": 1055}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730328f.jpg"} -{"rects": [{"solidity": 0.9975254888173729, "top": 465, "right": 5025, "bottom": 3665, "left": 965}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713774f.jpg"} -{"rects": [{"solidity": 0.9975257064205327, "top": 870, "right": 2075, "bottom": 3280, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720887f.jpg"} -{"rects": [{"solidity": 0.9975257810564038, "top": 385, "right": 5725, "bottom": 3625, "left": 3680}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726069f.jpg"} -{"rects": [{"solidity": 0.9975257825075726, "top": 470, "right": 3165, "bottom": 2085, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726862f.jpg"} -{"rects": [{"solidity": 0.9975264286520447, "top": 415, "right": 3380, "bottom": 2345, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706082f.jpg"} -{"rects": [{"solidity": 0.9975264719439594, "top": 820, "right": 1985, "bottom": 3230, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712315f.jpg"} -{"rects": [{"solidity": 0.9975266783603955, "top": 895, "right": 3425, "bottom": 5255, "left": 475}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720892f.jpg"} -{"rects": [{"solidity": 0.9975267470954664, "top": 395, "right": 4820, "bottom": 3635, "left": 780}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708687f.jpg"} -{"rects": [{"solidity": 0.9975269464889985, "top": 885, "right": 2660, "bottom": 4030, "left": 205}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507855.jpg"} -{"rects": [{"solidity": 0.9975269596679518, "top": 775, "right": 2020, "bottom": 3205, "left": 405}, {"solidity": 0.9972288291883784, "top": 790, "right": 3830, "bottom": 3210, "left": 2215}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713743f.jpg"} -{"rects": [{"solidity": 0.9975271413079979, "top": 1120, "right": 3775, "bottom": 5135, "left": 520}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733563f.jpg"} -{"rects": [{"solidity": 0.9975271455601893, "top": 410, "right": 3215, "bottom": 2035, "left": 785}, {"solidity": 0.9961869558873596, "top": 2280, "right": 3200, "bottom": 3890, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728046f.jpg"} -{"rects": [{"solidity": 0.9975272727272727, "top": 860, "right": 2010, "bottom": 3280, "left": 400}, {"solidity": 0.9966728100076656, "top": 865, "right": 3845, "bottom": 3275, "left": 2245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729165f.jpg"} -{"rects": [{"solidity": 0.9975272744505337, "top": 310, "right": 3555, "bottom": 2770, "left": 515}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509895.jpg"} -{"rects": [{"solidity": 0.9975272755648981, "top": 440, "right": 2895, "bottom": 1880, "left": 1100}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723941f.jpg"} -{"rects": [{"solidity": 0.9975275057045337, "top": 4120, "right": 3180, "bottom": 5745, "left": 740}, {"solidity": 0.9975438607800982, "top": 2270, "right": 3165, "bottom": 3885, "left": 745}, {"solidity": 0.9946435174021381, "top": 405, "right": 3160, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702136f.jpg"} -{"rects": [{"solidity": 0.9975276559652068, "top": 410, "right": 5100, "bottom": 3655, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732597f.jpg"} -{"rects": [{"solidity": 0.9975277009866721, "top": 805, "right": 2055, "bottom": 3225, "left": 435}, {"solidity": 0.9962989305518456, "top": 800, "right": 3875, "bottom": 3220, "left": 2250}, {"solidity": 0.9960781019822706, "top": 795, "right": 5705, "bottom": 3210, "left": 4080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714265f.jpg"} -{"rects": [{"solidity": 0.9975279480262447, "top": 415, "right": 5130, "bottom": 3695, "left": 1085}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723125f.jpg"} -{"rects": [{"solidity": 0.9975279989051344, "top": 1015, "right": 3540, "bottom": 5050, "left": 255}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714393f.jpg"} -{"rects": [{"solidity": 0.9975281567498174, "top": 650, "right": 3410, "bottom": 2625, "left": 340}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715630f.jpg"} -{"rects": [{"solidity": 0.9975284374697903, "top": 770, "right": 2035, "bottom": 3180, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713646f.jpg"} -{"rects": [{"solidity": 0.9975284935989117, "top": 420, "right": 5035, "bottom": 3715, "left": 970}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711056f.jpg"} -{"rects": [{"solidity": 0.997528536314354, "top": 410, "right": 3070, "bottom": 1980, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729869f.jpg"} -{"rects": [{"solidity": 0.997528611885998, "top": 1195, "right": 3325, "bottom": 5130, "left": 320}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708776f.jpg"} -{"rects": [{"solidity": 0.9975287691915591, "top": 810, "right": 3855, "bottom": 3220, "left": 2235}, {"solidity": 0.9976558685734425, "top": 805, "right": 2020, "bottom": 3215, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701527f.jpg"} -{"rects": [{"solidity": 0.9975292535486263, "top": 555, "right": 3290, "bottom": 2605, "left": 525}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720621f.jpg"} -{"rects": [{"solidity": 0.9975293794690127, "top": 450, "right": 3115, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729450f.jpg"} -{"rects": [{"solidity": 0.9975294363323856, "top": 350, "right": 3045, "bottom": 1980, "left": 635}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702643f.jpg"} -{"rects": [{"solidity": 0.9975294483513664, "top": 595, "right": 4875, "bottom": 3530, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706664f.jpg"} -{"rects": [{"solidity": 0.9975295947435985, "top": 425, "right": 3095, "bottom": 2040, "left": 685}, {"solidity": 0.9996980695933354, "top": 2295, "right": 3095, "bottom": 3905, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728317f.jpg"} -{"rects": [{"solidity": 0.9975296242037396, "top": 445, "right": 5035, "bottom": 3625, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708255f.jpg"} -{"rects": [{"solidity": 0.9975296552002778, "top": 1370, "right": 3570, "bottom": 5380, "left": 315}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724187f.jpg"} -{"rects": [{"solidity": 0.9975296691677419, "top": 505, "right": 4985, "bottom": 3750, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703081f.jpg"} -{"rects": [{"solidity": 0.9975296930261579, "top": 4115, "right": 3045, "bottom": 5745, "left": 615}, {"solidity": 0.9964391064812741, "top": 2250, "right": 3050, "bottom": 3880, "left": 630}, {"solidity": 0.9957618702869627, "top": 370, "right": 3060, "bottom": 2015, "left": 615}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704117f.jpg"} -{"rects": [{"solidity": 0.9975297559569247, "top": 470, "right": 3180, "bottom": 2070, "left": 775}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/715173f.jpg"} -{"rects": [{"solidity": 0.9975298215156749, "top": 480, "right": 5040, "bottom": 3685, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718559f.jpg"} -{"rects": [{"solidity": 0.9975298981787558, "top": 700, "right": 2050, "bottom": 3090, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710913f.jpg"} -{"rects": [{"solidity": 0.9975299899523419, "top": 440, "right": 5060, "bottom": 3715, "left": 975}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/714554f.jpg"} -{"rects": [{"solidity": 0.9975302504485384, "top": 810, "right": 3920, "bottom": 3240, "left": 2290}, {"solidity": 0.9985088249283336, "top": 810, "right": 2065, "bottom": 3235, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731899f.jpg"} -{"rects": [{"solidity": 0.997530470025184, "top": 810, "right": 2035, "bottom": 3220, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719003f.jpg"} -{"rects": [{"solidity": 0.9975304811036552, "top": 445, "right": 3285, "bottom": 2060, "left": 870}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726442f.jpg"} -{"rects": [{"solidity": 0.997530840382334, "top": 495, "right": 2960, "bottom": 2120, "left": 545}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703930f.jpg"} -{"rects": [{"solidity": 0.9975308641975309, "top": 810, "right": 2020, "bottom": 3220, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714856f.jpg"} -{"rects": [{"solidity": 0.9975310385852314, "top": 1125, "right": 3495, "bottom": 5115, "left": 325}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702428f.jpg"} -{"rects": [{"solidity": 0.9975310854264353, "top": 825, "right": 2090, "bottom": 3210, "left": 500}, {"solidity": 0.998542104229562, "top": 810, "right": 3990, "bottom": 3195, "left": 2405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712648f.jpg"} -{"rects": [{"solidity": 0.9975311911188063, "top": 595, "right": 2675, "bottom": 3640, "left": 640}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719314f.jpg"} -{"rects": [{"solidity": 0.9975312302595108, "top": 875, "right": 2010, "bottom": 3290, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713873f.jpg"} -{"rects": [{"solidity": 0.9975313986845787, "top": 640, "right": 5485, "bottom": 3455, "left": 3440}, {"solidity": 0.9963297261377189, "top": 620, "right": 2780, "bottom": 3455, "left": 745}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717104f.jpg"} -{"rects": [{"solidity": 0.997531474893422, "top": 1135, "right": 3515, "bottom": 5160, "left": 250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721041f.jpg"} -{"rects": [{"solidity": 0.9975316510205839, "top": 805, "right": 5690, "bottom": 4060, "left": 1190}], "shape": {"h": 4425, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/708865f.jpg"} -{"rects": [{"solidity": 0.9975316602355502, "top": 425, "right": 3150, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712708f.jpg"} -{"rects": [{"solidity": 0.9975316914903618, "top": 785, "right": 2465, "bottom": 3470, "left": 515}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727886f.jpg"} -{"rects": [{"solidity": 0.9975318375277187, "top": 940, "right": 3425, "bottom": 4850, "left": 335}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721151f.jpg"} -{"rects": [{"solidity": 0.9975322164948454, "top": 775, "right": 2015, "bottom": 3200, "left": 400}, {"solidity": 0.995109898095961, "top": 780, "right": 3850, "bottom": 3215, "left": 2235}, {"solidity": 0.9963391149465327, "top": 815, "right": 5695, "bottom": 3235, "left": 4110}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733920f.jpg"} -{"rects": [{"solidity": 0.9975324491007148, "top": 425, "right": 3200, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706620f.jpg"} -{"rects": [{"solidity": 0.9975325823616347, "top": 2255, "right": 3120, "bottom": 3880, "left": 690}, {"solidity": 0.9958634920226784, "top": 400, "right": 3130, "bottom": 2030, "left": 705}, {"solidity": 0.9969027832567723, "top": 4130, "right": 3095, "bottom": 5745, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719708f.jpg"} -{"rects": [{"solidity": 0.9975329494221383, "top": 455, "right": 5080, "bottom": 3690, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734673f.jpg"} -{"rects": [{"solidity": 0.9975329890992541, "top": 780, "right": 3925, "bottom": 3205, "left": 2295}, {"solidity": 0.998598785614199, "top": 775, "right": 5745, "bottom": 3205, "left": 4125}, {"solidity": 0.9967521943548516, "top": 790, "right": 2075, "bottom": 3215, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716538f.jpg"} -{"rects": [{"solidity": 0.9975331277075913, "top": 415, "right": 3205, "bottom": 2040, "left": 770}, {"solidity": 0.9977738726642407, "top": 4110, "right": 3210, "bottom": 5735, "left": 780}, {"solidity": 0.9980368546119506, "top": 2265, "right": 3200, "bottom": 3895, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732120f.jpg"} -{"rects": [{"solidity": 0.9975332518036082, "top": 495, "right": 5145, "bottom": 3805, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712318f.jpg"} -{"rects": [{"solidity": 0.9975336098190128, "top": 790, "right": 2020, "bottom": 3210, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721871f.jpg"} -{"rects": [{"solidity": 0.9975340126501219, "top": 715, "right": 3190, "bottom": 2505, "left": 1935}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508759.jpg"} -{"rects": [{"solidity": 0.9975342253398313, "top": 2105, "right": 2750, "bottom": 3535, "left": 930}, {"solidity": 0.9961720114207334, "top": 635, "right": 5230, "bottom": 2065, "left": 3410}, {"solidity": 0.9969696517338668, "top": 645, "right": 2755, "bottom": 2035, "left": 930}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703702f.jpg"} -{"rects": [{"solidity": 0.9975342732765902, "top": 455, "right": 3100, "bottom": 2060, "left": 685}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/700618f.jpg"} -{"rects": [{"solidity": 0.9975343920695934, "top": 4030, "right": 3230, "bottom": 5665, "left": 790}, {"solidity": 0.9980514580633658, "top": 2145, "right": 3230, "bottom": 3775, "left": 805}, {"solidity": 0.9966108875238296, "top": 280, "right": 3240, "bottom": 1900, "left": 815}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/716575f.jpg"} -{"rects": [{"solidity": 0.9975345967377522, "top": 1280, "right": 3535, "bottom": 5205, "left": 390}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721857f.jpg"} -{"rects": [{"solidity": 0.9975346319467013, "top": 465, "right": 3510, "bottom": 2290, "left": 790}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/702208f.jpg"} -{"rects": [{"solidity": 0.9975351015043272, "top": 770, "right": 2035, "bottom": 3190, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723110f.jpg"} -{"rects": [{"solidity": 0.9975351398063464, "top": 420, "right": 3180, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720151f.jpg"} -{"rects": [{"solidity": 0.9975351848284914, "top": 830, "right": 2075, "bottom": 3230, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713164f.jpg"} -{"rects": [{"solidity": 0.9975352408541831, "top": 795, "right": 2460, "bottom": 2305, "left": 370}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517053.jpg"} -{"rects": [{"solidity": 0.9975353440763718, "top": 1100, "right": 5620, "bottom": 2710, "left": 3215}, {"solidity": 0.9929800813486614, "top": 1105, "right": 2875, "bottom": 2720, "left": 470}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707565f.jpg"} -{"rects": [{"solidity": 0.9975353452400236, "top": 1080, "right": 3615, "bottom": 5175, "left": 345}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/730778f.jpg"} -{"rects": [{"solidity": 0.9975356070982893, "top": 505, "right": 5065, "bottom": 3765, "left": 960}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705658f.jpg"} -{"rects": [{"solidity": 0.9975356756810361, "top": 1085, "right": 3420, "bottom": 4345, "left": 300}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720558f.jpg"} -{"rects": [{"solidity": 0.9975359271147046, "top": 1170, "right": 2910, "bottom": 3030, "left": 1745}, {"solidity": 0.9979982966872432, "top": 1170, "right": 1470, "bottom": 3035, "left": 380}, {"solidity": 0.9959630265482322, "top": 1155, "right": 4325, "bottom": 3005, "left": 3220}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720598f.jpg"} -{"rects": [{"solidity": 0.9975360194212103, "top": 640, "right": 5355, "bottom": 3540, "left": 3315}, {"solidity": 0.9973682570987237, "top": 630, "right": 2890, "bottom": 3525, "left": 865}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732074f.jpg"} -{"rects": [{"solidity": 0.9975362506039774, "top": 705, "right": 2705, "bottom": 2145, "left": 875}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726315f.jpg"} -{"rects": [{"solidity": 0.997536444838985, "top": 440, "right": 5195, "bottom": 3685, "left": 1120}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732693f.jpg"} -{"rects": [{"solidity": 0.9975364983858168, "top": 495, "right": 3490, "bottom": 2125, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701264f.jpg"} -{"rects": [{"solidity": 0.9975365048240654, "top": 1080, "right": 3575, "bottom": 5115, "left": 300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711037f.jpg"} -{"rects": [{"solidity": 0.9975365193043444, "top": 725, "right": 2090, "bottom": 3125, "left": 485}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721274f.jpg"} -{"rects": [{"solidity": 0.9975367493068991, "top": 625, "right": 3295, "bottom": 2510, "left": 615}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713586f.jpg"} -{"rects": [{"solidity": 0.9975368186230971, "top": 1055, "right": 2710, "bottom": 4075, "left": 285}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517251.jpg"} -{"rects": [{"solidity": 0.9975370899667358, "top": 340, "right": 5210, "bottom": 3615, "left": 1170}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733486f.jpg"} -{"rects": [{"solidity": 0.997537117571731, "top": 905, "right": 3835, "bottom": 3340, "left": 2200}, {"solidity": 0.9973191369207194, "top": 915, "right": 5725, "bottom": 3350, "left": 4090}, {"solidity": 0.9966428671248714, "top": 905, "right": 1960, "bottom": 3335, "left": 325}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717606f.jpg"} -{"rects": [{"solidity": 0.9975371681301819, "top": 2250, "right": 3295, "bottom": 3875, "left": 890}, {"solidity": 0.9967438789152335, "top": 415, "right": 3300, "bottom": 2025, "left": 890}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704749f.jpg"} -{"rects": [{"solidity": 0.997537169844324, "top": 330, "right": 2235, "bottom": 1540, "left": 745}, {"solidity": 0.9974573243767643, "top": 1620, "right": 3910, "bottom": 2830, "left": 2420}, {"solidity": 0.9934819968981851, "top": 1615, "right": 2255, "bottom": 2825, "left": 750}, {"solidity": 0.9959508182868089, "top": 335, "right": 3900, "bottom": 1555, "left": 2420}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716287f.jpg"} -{"rects": [{"solidity": 0.9975373358627889, "top": 2285, "right": 3230, "bottom": 3895, "left": 810}, {"solidity": 0.996973757460416, "top": 375, "right": 3240, "bottom": 1995, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720824f.jpg"} -{"rects": [{"solidity": 0.9975374625213415, "top": 425, "right": 3190, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732302f.jpg"} -{"rects": [{"solidity": 0.9975374906476693, "top": 430, "right": 3235, "bottom": 2035, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734648f.jpg"} -{"rects": [{"solidity": 0.9975376037847223, "top": 655, "right": 3345, "bottom": 2700, "left": 490}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/716887f.jpg"} -{"rects": [{"solidity": 0.997537674942292, "top": 315, "right": 3765, "bottom": 2745, "left": 740}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716370f.jpg"} -{"rects": [{"solidity": 0.9975376979099668, "top": 760, "right": 3840, "bottom": 3170, "left": 2230}, {"solidity": 0.997775374935891, "top": 770, "right": 2035, "bottom": 3165, "left": 425}, {"solidity": 0.9970625509632671, "top": 765, "right": 5640, "bottom": 3165, "left": 4035}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719262f.jpg"} -{"rects": [{"solidity": 0.9975377798417213, "top": 610, "right": 2675, "bottom": 2040, "left": 850}, {"solidity": 0.9959728688354195, "top": 2100, "right": 2680, "bottom": 3545, "left": 870}, {"solidity": 0.9966143622826377, "top": 595, "right": 5165, "bottom": 2030, "left": 3350}, {"solidity": 0.9952456184387319, "top": 2085, "right": 5180, "bottom": 3500, "left": 3355}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705937f.jpg"} -{"rects": [{"solidity": 0.9975378768103079, "top": 465, "right": 3285, "bottom": 2445, "left": 230}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/715545f.jpg"} -{"rects": [{"solidity": 0.9975379670153993, "top": 325, "right": 5135, "bottom": 3590, "left": 1065}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709749f.jpg"} -{"rects": [{"solidity": 0.9975380979344641, "top": 270, "right": 4215, "bottom": 2695, "left": 1050}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508775.jpg"} -{"rects": [{"solidity": 0.9975381314999628, "top": 440, "right": 3210, "bottom": 2055, "left": 795}, {"solidity": 0.99644417648813, "top": 2285, "right": 3210, "bottom": 3900, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703078f.jpg"} -{"rects": [{"solidity": 0.997538145491294, "top": 590, "right": 3210, "bottom": 2185, "left": 825}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714985f.jpg"} -{"rects": [{"solidity": 0.9975381682525596, "top": 350, "right": 3125, "bottom": 1955, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711089f.jpg"} -{"rects": [{"solidity": 0.9975384252988634, "top": 320, "right": 2380, "bottom": 1520, "left": 595}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715935f.jpg"} -{"rects": [{"solidity": 0.9975384399264405, "top": 2205, "right": 3185, "bottom": 3830, "left": 750}, {"solidity": 0.9963565478450352, "top": 360, "right": 3170, "bottom": 1980, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701690f.jpg"} -{"rects": [{"solidity": 0.9975384457592676, "top": 2260, "right": 3150, "bottom": 3880, "left": 725}, {"solidity": 0.9965750230743751, "top": 385, "right": 3135, "bottom": 2000, "left": 710}, {"solidity": 0.9958075273939971, "top": 4125, "right": 3145, "bottom": 5720, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728921f.jpg"} -{"rects": [{"solidity": 0.9975390156062425, "top": 725, "right": 2085, "bottom": 3105, "left": 500}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718458f.jpg"} -{"rects": [{"solidity": 0.9975391243329689, "top": 780, "right": 2050, "bottom": 3185, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723023f.jpg"} -{"rects": [{"solidity": 0.9975392345814978, "top": 520, "right": 2680, "bottom": 3540, "left": 500}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722272f.jpg"} -{"rects": [{"solidity": 0.9975392509876525, "top": 1050, "right": 3550, "bottom": 5055, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711436f.jpg"} -{"rects": [{"solidity": 0.9975393669170131, "top": 300, "right": 3170, "bottom": 1920, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708065f.jpg"} -{"rects": [{"solidity": 0.9975394466416108, "top": 540, "right": 3925, "bottom": 2635, "left": 2450}, {"solidity": 0.9958084890424863, "top": 520, "right": 2135, "bottom": 2625, "left": 665}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716089f.jpg"} -{"rects": [{"solidity": 0.9975394483560074, "top": 420, "right": 3175, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715471f.jpg"} -{"rects": [{"solidity": 0.9975396373365829, "top": 435, "right": 3175, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/715334f.jpg"} -{"rects": [{"solidity": 0.9975396544570057, "top": 565, "right": 3730, "bottom": 3450, "left": 305}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726524f.jpg"} -{"rects": [{"solidity": 0.997539658514907, "top": 440, "right": 3170, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706537f.jpg"} -{"rects": [{"solidity": 0.9975396735922755, "top": 730, "right": 2075, "bottom": 3120, "left": 485}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710721f.jpg"} -{"rects": [{"solidity": 0.9975399475662937, "top": 2205, "right": 3120, "bottom": 3825, "left": 710}, {"solidity": 0.9971087680175289, "top": 315, "right": 3135, "bottom": 1930, "left": 725}, {"solidity": 0.997003596566713, "top": 4135, "right": 2940, "bottom": 5585, "left": 965}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715389f.jpg"} -{"rects": [{"solidity": 0.9975400025198438, "top": 710, "right": 2035, "bottom": 3160, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700025f.jpg"} -{"rects": [{"solidity": 0.9975401251076996, "top": 790, "right": 3885, "bottom": 3220, "left": 2265}, {"solidity": 0.9989051985411209, "top": 785, "right": 2020, "bottom": 3210, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718348f.jpg"} -{"rects": [{"solidity": 0.9975402076598487, "top": 325, "right": 3700, "bottom": 3160, "left": 155}, {"solidity": 0.9952485470661389, "top": 3405, "right": 2790, "bottom": 4835, "left": 1010}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704295f.jpg"} -{"rects": [{"solidity": 0.9975402472921556, "top": 620, "right": 3015, "bottom": 2065, "left": 1150}, {"solidity": 0.9887039624565934, "top": 2470, "right": 2950, "bottom": 3760, "left": 1285}, {"solidity": 0.9851584743170427, "top": 4185, "right": 2905, "bottom": 5480, "left": 1240}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727884f.jpg"} -{"rects": [{"solidity": 0.9975403371774318, "top": 430, "right": 3165, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705017f.jpg"} -{"rects": [{"solidity": 0.9975403961428199, "top": 2235, "right": 3090, "bottom": 3835, "left": 675}, {"solidity": 0.9979630071638063, "top": 395, "right": 3100, "bottom": 1990, "left": 680}, {"solidity": 0.9954460421519581, "top": 4090, "right": 3085, "bottom": 5695, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729404f.jpg"} -{"rects": [{"solidity": 0.9975407858190449, "top": 970, "right": 2610, "bottom": 3980, "left": 150}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508213.jpg"} -{"rects": [{"solidity": 0.997540908182271, "top": 2245, "right": 3255, "bottom": 3880, "left": 825}, {"solidity": 0.9986393990251166, "top": 4115, "right": 3240, "bottom": 5735, "left": 820}, {"solidity": 0.9963115622411833, "top": 405, "right": 3245, "bottom": 2030, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727824f.jpg"} -{"rects": [{"solidity": 0.9975409469113142, "top": 380, "right": 3165, "bottom": 2000, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703370f.jpg"} -{"rects": [{"solidity": 0.9975414091037926, "top": 415, "right": 3345, "bottom": 2050, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702026f.jpg"} -{"rects": [{"solidity": 0.9975416570386916, "top": 2295, "right": 3185, "bottom": 3915, "left": 755}, {"solidity": 0.9961451706839909, "top": 440, "right": 3185, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700579f.jpg"} -{"rects": [{"solidity": 0.9975416964284023, "top": 370, "right": 5455, "bottom": 3630, "left": 1365}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732542f.jpg"} -{"rects": [{"solidity": 0.9975419182082167, "top": 815, "right": 2050, "bottom": 3235, "left": 440}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701242f.jpg"} -{"rects": [{"solidity": 0.9975419447952373, "top": 395, "right": 3135, "bottom": 2015, "left": 720}, {"solidity": 0.9987514431371531, "top": 2260, "right": 3140, "bottom": 3870, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731041f.jpg"} -{"rects": [{"solidity": 0.997542157956679, "top": 1020, "right": 3540, "bottom": 5100, "left": 315}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732639f.jpg"} -{"rects": [{"solidity": 0.9975426114039976, "top": 2115, "right": 2680, "bottom": 3550, "left": 835}, {"solidity": 0.9951171250104598, "top": 625, "right": 2660, "bottom": 2050, "left": 850}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705640f.jpg"} -{"rects": [{"solidity": 0.9975430535868485, "top": 860, "right": 2100, "bottom": 3270, "left": 495}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712750f.jpg"} -{"rects": [{"solidity": 0.9975431375341981, "top": 470, "right": 5160, "bottom": 3675, "left": 1165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707990f.jpg"} -{"rects": [{"solidity": 0.9975432261265669, "top": 335, "right": 3965, "bottom": 2755, "left": 945}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517259.jpg"} -{"rects": [{"solidity": 0.9975432529460682, "top": 865, "right": 2275, "bottom": 3585, "left": 450}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711235f.jpg"} -{"rects": [{"solidity": 0.9975432658186384, "top": 260, "right": 3185, "bottom": 1885, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702553f.jpg"} -{"rects": [{"solidity": 0.9975432823422211, "top": 780, "right": 2040, "bottom": 3195, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721982f.jpg"} -{"rects": [{"solidity": 0.9975433587382272, "top": 770, "right": 3865, "bottom": 3175, "left": 2260}, {"solidity": 0.9980095619724684, "top": 770, "right": 5720, "bottom": 3170, "left": 4120}, {"solidity": 0.9956117981360906, "top": 785, "right": 2015, "bottom": 3175, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722591f.jpg"} -{"rects": [{"solidity": 0.9975434631312748, "top": 365, "right": 3685, "bottom": 2795, "left": 680}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509135.jpg"} -{"rects": [{"solidity": 0.9975435119136791, "top": 470, "right": 5060, "bottom": 3735, "left": 1050}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700215f.jpg"} -{"rects": [{"solidity": 0.9975439986301681, "top": 1060, "right": 3475, "bottom": 5075, "left": 435}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722292f.jpg"} -{"rects": [{"solidity": 0.9975440137740429, "top": 840, "right": 3920, "bottom": 3265, "left": 2300}, {"solidity": 0.9974203166269667, "top": 850, "right": 5785, "bottom": 3265, "left": 4175}, {"solidity": 0.996230589319138, "top": 835, "right": 2010, "bottom": 3250, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728767f.jpg"} -{"rects": [{"solidity": 0.9975440216485194, "top": 3270, "right": 3210, "bottom": 4890, "left": 785}, {"solidity": 0.9950380094958877, "top": 940, "right": 3190, "bottom": 2560, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730712f.jpg"} -{"rects": [{"solidity": 0.9975441712539795, "top": 305, "right": 3090, "bottom": 1935, "left": 675}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725721f.jpg"} -{"rects": [{"solidity": 0.9975447039732166, "top": 290, "right": 3265, "bottom": 2295, "left": 445}, {"solidity": 0.9976067229038855, "top": 2440, "right": 3080, "bottom": 4060, "left": 650}, {"solidity": 0.9969744476589142, "top": 4225, "right": 3075, "bottom": 5835, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728656f.jpg"} -{"rects": [{"solidity": 0.9975448067637804, "top": 925, "right": 3445, "bottom": 2945, "left": 405}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708153f.jpg"} -{"rects": [{"solidity": 0.9975451148739963, "top": 2200, "right": 3190, "bottom": 3830, "left": 755}, {"solidity": 0.9974447588810599, "top": 365, "right": 3195, "bottom": 1990, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706244f.jpg"} -{"rects": [{"solidity": 0.9975451268190063, "top": 370, "right": 3075, "bottom": 1985, "left": 655}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729824f.jpg"} -{"rects": [{"solidity": 0.9975452237894804, "top": 570, "right": 3165, "bottom": 2195, "left": 750}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705036f.jpg"} -{"rects": [{"solidity": 0.997545572606519, "top": 2120, "right": 3350, "bottom": 4130, "left": 325}], "shape": {"h": 6140, "w": 3620}, "file": "/usr/local/google/home/danvk/milstein/713240f.jpg"} -{"rects": [{"solidity": 0.9975460043669528, "top": 425, "right": 2680, "bottom": 2840, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710429f.jpg"} -{"rects": [{"solidity": 0.9975460518880871, "top": 465, "right": 3155, "bottom": 2080, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729110f.jpg"} -{"rects": [{"solidity": 0.9975460652960834, "top": 480, "right": 5100, "bottom": 3785, "left": 1045}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714737f.jpg"} -{"rects": [{"solidity": 0.9975462680822401, "top": 865, "right": 3880, "bottom": 3275, "left": 2250}, {"solidity": 0.995778897698456, "top": 845, "right": 2020, "bottom": 3280, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726667f.jpg"} -{"rects": [{"solidity": 0.997546471761827, "top": 605, "right": 1875, "bottom": 3020, "left": 255}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715304f.jpg"} -{"rects": [{"solidity": 0.9975465783853461, "top": 475, "right": 5215, "bottom": 3740, "left": 1165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723929f.jpg"} -{"rects": [{"solidity": 0.997546686554861, "top": 530, "right": 3240, "bottom": 1945, "left": 1425}, {"solidity": 0.9949721833814298, "top": 2215, "right": 3250, "bottom": 3615, "left": 1420}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725983f.jpg"} -{"rects": [{"solidity": 0.9975467202692926, "top": 630, "right": 4045, "bottom": 3415, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702722f.jpg"} -{"rects": [{"solidity": 0.9975468360640921, "top": 870, "right": 5735, "bottom": 3280, "left": 4110}, {"solidity": 0.997231407384218, "top": 870, "right": 3855, "bottom": 3280, "left": 2250}, {"solidity": 0.9981029686418431, "top": 875, "right": 2005, "bottom": 3270, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712285f.jpg"} -{"rects": [{"solidity": 0.9975468675385493, "top": 360, "right": 4900, "bottom": 3615, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715202f.jpg"} -{"rects": [{"solidity": 0.9975469148484564, "top": 440, "right": 3125, "bottom": 2050, "left": 710}, {"solidity": 0.995428844870358, "top": 2295, "right": 2955, "bottom": 3860, "left": 1025}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724204f.jpg"} -{"rects": [{"solidity": 0.9975469788771184, "top": 405, "right": 3180, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732567f.jpg"} -{"rects": [{"solidity": 0.9975470103191438, "top": 735, "right": 2025, "bottom": 3165, "left": 400}, {"solidity": 0.9995165329611712, "top": 715, "right": 3890, "bottom": 3130, "left": 2275}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732124f.jpg"} -{"rects": [{"solidity": 0.9975471487200779, "top": 410, "right": 3075, "bottom": 2040, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701110f.jpg"} -{"rects": [{"solidity": 0.9975473692770594, "top": 2260, "right": 3215, "bottom": 3865, "left": 805}, {"solidity": 0.9955168030481838, "top": 4090, "right": 3210, "bottom": 5710, "left": 795}, {"solidity": 0.9964449522565902, "top": 420, "right": 3200, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/731618f.jpg"} -{"rects": [{"solidity": 0.9975473847322134, "top": 950, "right": 2430, "bottom": 3655, "left": 615}], "shape": {"h": 4410, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711345f.jpg"} -{"rects": [{"solidity": 0.9975474508321802, "top": 550, "right": 4140, "bottom": 3555, "left": 2070}, {"solidity": 0.9962449153359786, "top": 805, "right": 5845, "bottom": 3195, "left": 4245}, {"solidity": 0.9672082647953327, "top": 885, "right": 1945, "bottom": 3150, "left": 485}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713757f.jpg"} -{"rects": [{"solidity": 0.9975474913746518, "top": 2235, "right": 3105, "bottom": 3855, "left": 675}, {"solidity": 0.996696846404966, "top": 375, "right": 3090, "bottom": 1990, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728393f.jpg"} -{"rects": [{"solidity": 0.9975475215161328, "top": 335, "right": 5620, "bottom": 3585, "left": 3570}, {"solidity": 0.9971561802809349, "top": 345, "right": 2980, "bottom": 3590, "left": 940}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705045f.jpg"} -{"rects": [{"solidity": 0.9975478443878782, "top": 735, "right": 2075, "bottom": 3160, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717222f.jpg"} -{"rects": [{"solidity": 0.9975479179105979, "top": 470, "right": 3100, "bottom": 2050, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722351f.jpg"} -{"rects": [{"solidity": 0.9975481819537884, "top": 415, "right": 5060, "bottom": 3685, "left": 990}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/722087f.jpg"} -{"rects": [{"solidity": 0.9975483012827738, "top": 975, "right": 3610, "bottom": 5075, "left": 335}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/719989f.jpg"} -{"rects": [{"solidity": 0.9975485892793846, "top": 460, "right": 3140, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/730555f.jpg"} -{"rects": [{"solidity": 0.9975486505815485, "top": 445, "right": 5095, "bottom": 3745, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721124f.jpg"} -{"rects": [{"solidity": 0.9975486610292372, "top": 415, "right": 3200, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715635f.jpg"} -{"rects": [{"solidity": 0.9975487246078553, "top": 885, "right": 2755, "bottom": 3905, "left": 300}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1517129.jpg"} -{"rects": [{"solidity": 0.9975488368161727, "top": 510, "right": 3045, "bottom": 1915, "left": 1240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727913f.jpg"} -{"rects": [{"solidity": 0.9975492006796712, "top": 370, "right": 3310, "bottom": 1990, "left": 890}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725140f.jpg"} -{"rects": [{"solidity": 0.9975493301381715, "top": 565, "right": 5280, "bottom": 3430, "left": 1645}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724681f.jpg"} -{"rects": [{"solidity": 0.9975493603442535, "top": 400, "right": 3065, "bottom": 2020, "left": 660}, {"solidity": 0.9966469261870206, "top": 2270, "right": 3055, "bottom": 3895, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710057f.jpg"} -{"rects": [{"solidity": 0.9975493682339857, "top": 950, "right": 2665, "bottom": 3970, "left": 220}], "shape": {"h": 4630, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1509109.jpg"} -{"rects": [{"solidity": 0.9975494195067487, "top": 805, "right": 1905, "bottom": 3225, "left": 275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717620f.jpg"} -{"rects": [{"solidity": 0.9975495677709818, "top": 415, "right": 3185, "bottom": 2025, "left": 770}, {"solidity": 0.9960490543157235, "top": 2265, "right": 3195, "bottom": 3870, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733994f.jpg"} -{"rects": [{"solidity": 0.9975499956989521, "top": 385, "right": 3025, "bottom": 2010, "left": 590}, {"solidity": 0.9958407147808673, "top": 4080, "right": 3005, "bottom": 5720, "left": 575}, {"solidity": 0.9949401384429852, "top": 2255, "right": 3000, "bottom": 3875, "left": 590}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700180f.jpg"} -{"rects": [{"solidity": 0.9975500747005647, "top": 785, "right": 2040, "bottom": 3220, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707443f.jpg"} -{"rects": [{"solidity": 0.9975509594564325, "top": 485, "right": 4910, "bottom": 3790, "left": 780}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702336f.jpg"} -{"rects": [{"solidity": 0.9975510520151389, "top": 2310, "right": 3240, "bottom": 3925, "left": 820}, {"solidity": 0.99705587633375, "top": 4065, "right": 3235, "bottom": 5670, "left": 825}, {"solidity": 0.995044874143074, "top": 605, "right": 3235, "bottom": 2210, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733141f.jpg"} -{"rects": [{"solidity": 0.9975512179383772, "top": 2180, "right": 3180, "bottom": 3800, "left": 770}, {"solidity": 0.9966514639196875, "top": 360, "right": 3180, "bottom": 1955, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719538f.jpg"} -{"rects": [{"solidity": 0.9975512872999635, "top": 425, "right": 5090, "bottom": 3690, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727252f.jpg"} -{"rects": [{"solidity": 0.9975513597546045, "top": 1035, "right": 3560, "bottom": 5075, "left": 280}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725403f.jpg"} -{"rects": [{"solidity": 0.9975515894224769, "top": 410, "right": 5065, "bottom": 3665, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718968f.jpg"} -{"rects": [{"solidity": 0.9975518819080764, "top": 690, "right": 2035, "bottom": 3075, "left": 440}, {"solidity": 0.9964536252393803, "top": 705, "right": 3810, "bottom": 3075, "left": 2235}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721382f.jpg"} -{"rects": [{"solidity": 0.9975519047927042, "top": 775, "right": 2025, "bottom": 3195, "left": 415}, {"solidity": 0.9985321617437114, "top": 1120, "right": 3655, "bottom": 2915, "left": 2260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705156f.jpg"} -{"rects": [{"solidity": 0.9975519561744582, "top": 445, "right": 5105, "bottom": 3740, "left": 1065}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710945f.jpg"} -{"rects": [{"solidity": 0.9975520853074581, "top": 675, "right": 3015, "bottom": 4105, "left": 695}], "shape": {"h": 4430, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/711413f.jpg"} -{"rects": [{"solidity": 0.9975521992107207, "top": 435, "right": 5120, "bottom": 3765, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710934f.jpg"} -{"rects": [{"solidity": 0.9975522141335792, "top": 815, "right": 3280, "bottom": 2800, "left": 485}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718973f.jpg"} -{"rects": [{"solidity": 0.9975523524612456, "top": 3895, "right": 3160, "bottom": 5470, "left": 775}, {"solidity": 0.9975370145936074, "top": 645, "right": 2875, "bottom": 1845, "left": 975}, {"solidity": 0.9949377061517748, "top": 2290, "right": 2865, "bottom": 3435, "left": 960}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734291f.jpg"} -{"rects": [{"solidity": 0.9975525085817349, "top": 855, "right": 3205, "bottom": 2365, "left": 1040}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508997.jpg"} -{"rects": [{"solidity": 0.9975525226031736, "top": 495, "right": 3565, "bottom": 2285, "left": 875}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711424f.jpg"} -{"rects": [{"solidity": 0.9975525528540164, "top": 530, "right": 2755, "bottom": 3615, "left": 715}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715175f.jpg"} -{"rects": [{"solidity": 0.9975526107861976, "top": 495, "right": 5095, "bottom": 3780, "left": 1070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712447f.jpg"} -{"rects": [{"solidity": 0.9975526365915462, "top": 430, "right": 2665, "bottom": 3665, "left": 630}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733039f.jpg"} -{"rects": [{"solidity": 0.9975526487646857, "top": 4095, "right": 3205, "bottom": 5705, "left": 785}, {"solidity": 0.996043172450386, "top": 480, "right": 3220, "bottom": 2090, "left": 795}, {"solidity": 0.9962255578093306, "top": 2290, "right": 3215, "bottom": 3900, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701824f.jpg"} -{"rects": [{"solidity": 0.9975526869201979, "top": 695, "right": 3340, "bottom": 2725, "left": 310}, {"solidity": 0.9956957602590323, "top": 3360, "right": 3155, "bottom": 4990, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/715700f.jpg"} -{"rects": [{"solidity": 0.9975527713511948, "top": 2235, "right": 3245, "bottom": 3860, "left": 810}, {"solidity": 0.9964204056228655, "top": 380, "right": 3215, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722826f.jpg"} -{"rects": [{"solidity": 0.9975527963328819, "top": 420, "right": 3015, "bottom": 3630, "left": 975}, {"solidity": 0.997485471396264, "top": 435, "right": 5395, "bottom": 3645, "left": 3365}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733020f.jpg"} -{"rects": [{"solidity": 0.9975529929497198, "top": 1155, "right": 3985, "bottom": 5705, "left": 295}], "shape": {"h": 6925, "w": 4435}, "file": "/usr/local/google/home/danvk/milstein/708867f.jpg"} -{"rects": [{"solidity": 0.9975530680389311, "top": 895, "right": 2020, "bottom": 3300, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719009f.jpg"} -{"rects": [{"solidity": 0.9975532249042843, "top": 255, "right": 5210, "bottom": 3555, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725811f.jpg"} -{"rects": [{"solidity": 0.9975532874475979, "top": 730, "right": 4740, "bottom": 3365, "left": 1320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721112f.jpg"} -{"rects": [{"solidity": 0.9975532918618969, "top": 1065, "right": 3450, "bottom": 5105, "left": 330}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722605f.jpg"} -{"rects": [{"solidity": 0.9975534539473684, "top": 2450, "right": 2475, "bottom": 3920, "left": 385}, {"solidity": 0.9966521124263527, "top": 655, "right": 2495, "bottom": 2125, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716088f.jpg"} -{"rects": [{"solidity": 0.9975537451839358, "top": 760, "right": 2045, "bottom": 3175, "left": 425}, {"solidity": 0.9955910329579927, "top": 750, "right": 3920, "bottom": 3165, "left": 2295}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708015f.jpg"} -{"rects": [{"solidity": 0.9975538261889856, "top": 490, "right": 5120, "bottom": 3600, "left": 1185}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732650f.jpg"} -{"rects": [{"solidity": 0.9975538274446583, "top": 2290, "right": 3300, "bottom": 4185, "left": 445}, {"solidity": 0.9971833436391294, "top": 345, "right": 3290, "bottom": 2235, "left": 440}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705278f.jpg"} -{"rects": [{"solidity": 0.9975538992460719, "top": 1010, "right": 2610, "bottom": 4005, "left": 165}], "shape": {"h": 4620, "w": 2955}, "file": "/usr/local/google/home/danvk/milstein/1507513.jpg"} -{"rects": [{"solidity": 0.9975539297965111, "top": 670, "right": 3815, "bottom": 3085, "left": 2170}, {"solidity": 0.9969513361821545, "top": 685, "right": 5605, "bottom": 3090, "left": 3950}, {"solidity": 0.9971978234405104, "top": 635, "right": 2040, "bottom": 3065, "left": 410}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704879f.jpg"} -{"rects": [{"solidity": 0.9975539905952385, "top": 390, "right": 3180, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700983f.jpg"} -{"rects": [{"solidity": 0.9975541010695511, "top": 1020, "right": 3550, "bottom": 5070, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717594f.jpg"} -{"rects": [{"solidity": 0.9975545480579572, "top": 430, "right": 3150, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734625f.jpg"} -{"rects": [{"solidity": 0.9975545593002659, "top": 320, "right": 5085, "bottom": 3580, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700523f.jpg"} -{"rects": [{"solidity": 0.9975546950503655, "top": 425, "right": 3075, "bottom": 2035, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729319f.jpg"} -{"rects": [{"solidity": 0.9975547813936801, "top": 340, "right": 2810, "bottom": 2780, "left": 1170}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700095f.jpg"} -{"rects": [{"solidity": 0.9975552544452825, "top": 295, "right": 3185, "bottom": 1920, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726103f.jpg"} -{"rects": [{"solidity": 0.9975552631177537, "top": 395, "right": 3260, "bottom": 3860, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715641f.jpg"} -{"rects": [{"solidity": 0.9975554076439552, "top": 395, "right": 4990, "bottom": 3750, "left": 905}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714158f.jpg"} -{"rects": [{"solidity": 0.9975555840328058, "top": 760, "right": 3900, "bottom": 3175, "left": 2265}, {"solidity": 0.9966136654982635, "top": 745, "right": 2040, "bottom": 3170, "left": 415}, {"solidity": 0.9941925802742609, "top": 775, "right": 5740, "bottom": 3190, "left": 4135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709543f.jpg"} -{"rects": [{"solidity": 0.9975556559951901, "top": 545, "right": 4445, "bottom": 3170, "left": 1040}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733581f.jpg"} -{"rects": [{"solidity": 0.9975557779858577, "top": 2215, "right": 3100, "bottom": 3835, "left": 690}, {"solidity": 0.9963332687743532, "top": 390, "right": 3090, "bottom": 1990, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707650f.jpg"} -{"rects": [{"solidity": 0.997555802705429, "top": 820, "right": 3825, "bottom": 3235, "left": 2210}, {"solidity": 0.9979100341079837, "top": 810, "right": 2015, "bottom": 3225, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706597f.jpg"} -{"rects": [{"solidity": 0.9975558502629943, "top": 855, "right": 3885, "bottom": 3275, "left": 2260}, {"solidity": 0.9977047456627387, "top": 860, "right": 1995, "bottom": 3280, "left": 370}, {"solidity": 0.9961062207606318, "top": 830, "right": 5740, "bottom": 3250, "left": 4115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718662f.jpg"} -{"rects": [{"solidity": 0.9975566504448408, "top": 655, "right": 2645, "bottom": 2055, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707465f.jpg"} -{"rects": [{"solidity": 0.997556679540423, "top": 430, "right": 3045, "bottom": 2035, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729060f.jpg"} -{"rects": [{"solidity": 0.9975566826843305, "top": 2265, "right": 3060, "bottom": 3865, "left": 640}, {"solidity": 0.9957342030167142, "top": 415, "right": 3080, "bottom": 2015, "left": 665}, {"solidity": 0.9978076522583843, "top": 4120, "right": 3030, "bottom": 5700, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730593f.jpg"} -{"rects": [{"solidity": 0.9975567856461157, "top": 390, "right": 3215, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717605f.jpg"} -{"rects": [{"solidity": 0.9975568082014595, "top": 795, "right": 1965, "bottom": 3215, "left": 335}, {"solidity": 0.9981153641167896, "top": 810, "right": 5705, "bottom": 3220, "left": 4080}, {"solidity": 0.997484042604401, "top": 810, "right": 3840, "bottom": 3225, "left": 2215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708157f.jpg"} -{"rects": [{"solidity": 0.9975568125741423, "top": 510, "right": 5135, "bottom": 3735, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700624f.jpg"} -{"rects": [{"solidity": 0.9975568851155692, "top": 1040, "right": 3535, "bottom": 5095, "left": 305}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709013f.jpg"} -{"rects": [{"solidity": 0.9975570615026137, "top": 580, "right": 5045, "bottom": 3665, "left": 990}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722868f.jpg"} -{"rects": [{"solidity": 0.99755709654385, "top": 1035, "right": 3585, "bottom": 5055, "left": 305}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724041f.jpg"} -{"rects": [{"solidity": 0.9975572237617601, "top": 335, "right": 2370, "bottom": 1545, "left": 560}, {"solidity": 0.9976259212520384, "top": 1705, "right": 2370, "bottom": 2915, "left": 560}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715904f.jpg"} -{"rects": [{"solidity": 0.9975573667711599, "top": 375, "right": 3865, "bottom": 2855, "left": 830}], "shape": {"h": 3040, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715790f.jpg"} -{"rects": [{"solidity": 0.9975574213422255, "top": 530, "right": 2640, "bottom": 1890, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707254f.jpg"} -{"rects": [{"solidity": 0.99755742797814, "top": 415, "right": 3170, "bottom": 2025, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705548f.jpg"} -{"rects": [{"solidity": 0.9975577237496076, "top": 455, "right": 2160, "bottom": 2545, "left": 680}, {"solidity": 0.9964601481191478, "top": 470, "right": 3920, "bottom": 2560, "left": 2435}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716146f.jpg"} -{"rects": [{"solidity": 0.9975577932618904, "top": 715, "right": 2675, "bottom": 3955, "left": 260}], "shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508571.jpg"} -{"rects": [{"solidity": 0.9975578011084749, "top": 3210, "right": 3330, "bottom": 5130, "left": 600}, {"solidity": 0.9949425253963181, "top": 745, "right": 3360, "bottom": 2660, "left": 630}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724836f.jpg"} -{"rects": [{"solidity": 0.9975581225749056, "top": 405, "right": 5060, "bottom": 3620, "left": 1005}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718460f.jpg"} -{"rects": [{"solidity": 0.9975583214573394, "top": 995, "right": 2590, "bottom": 3915, "left": 365}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507781.jpg"} -{"rects": [{"solidity": 0.9975584655049501, "top": 685, "right": 3280, "bottom": 2505, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710009f.jpg"} -{"rects": [{"solidity": 0.9975587989937725, "top": 455, "right": 3185, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706453f.jpg"} -{"rects": [{"solidity": 0.9975589546055136, "top": 425, "right": 3195, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706676f.jpg"} -{"rects": [{"solidity": 0.9975590003963035, "top": 1035, "right": 3845, "bottom": 3085, "left": 620}, {"solidity": 0.9978312605558115, "top": 395, "right": 5935, "bottom": 3625, "left": 3905}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703874f.jpg"} -{"rects": [{"solidity": 0.9975591763422926, "top": 830, "right": 2055, "bottom": 3250, "left": 425}, {"solidity": 0.9986569245500054, "top": 840, "right": 3935, "bottom": 3250, "left": 2310}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710882f.jpg"} -{"rects": [{"solidity": 0.9975593103463919, "top": 1200, "right": 3845, "bottom": 5735, "left": 180}], "shape": {"h": 6935, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708327f.jpg"} -{"rects": [{"solidity": 0.9975593412065584, "top": 3325, "right": 3400, "bottom": 5350, "left": 365}, {"solidity": 0.9957211048853164, "top": 725, "right": 3395, "bottom": 2745, "left": 405}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715476f.jpg"} -{"rects": [{"solidity": 0.9975594171426925, "top": 1945, "right": 5225, "bottom": 3375, "left": 3390}, {"solidity": 0.996876482682271, "top": 670, "right": 2650, "bottom": 2070, "left": 825}, {"solidity": 0.9967065428326771, "top": 2150, "right": 2640, "bottom": 3545, "left": 855}, {"solidity": 0.9960792179139628, "top": 665, "right": 5190, "bottom": 1760, "left": 3405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704224f.jpg"} -{"rects": [{"solidity": 0.9975595287988497, "top": 320, "right": 3200, "bottom": 1950, "left": 800}, {"solidity": 0.9964041294513397, "top": 2180, "right": 3200, "bottom": 3815, "left": 800}, {"solidity": 0.9964224832911834, "top": 4040, "right": 3185, "bottom": 5665, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715484f.jpg"} -{"rects": [{"solidity": 0.9975595492708611, "top": 840, "right": 3355, "bottom": 2840, "left": 310}, {"solidity": 0.9960337083281823, "top": 3390, "right": 3225, "bottom": 5140, "left": 1825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723047f.jpg"} -{"rects": [{"solidity": 0.9975596827391237, "top": 470, "right": 5210, "bottom": 3710, "left": 1195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702127f.jpg"} -{"rects": [{"solidity": 0.9975600049582787, "top": 830, "right": 2005, "bottom": 3235, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700755f.jpg"} -{"rects": [{"solidity": 0.9975601315440965, "top": 440, "right": 5065, "bottom": 3615, "left": 970}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711473f.jpg"} -{"rects": [{"solidity": 0.9975602008167597, "top": 450, "right": 3150, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720566f.jpg"} -{"rects": [{"solidity": 0.9975605747104209, "top": 250, "right": 5140, "bottom": 3505, "left": 1105}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708741f.jpg"} -{"rects": [{"solidity": 0.9975605874079536, "top": 400, "right": 3285, "bottom": 2005, "left": 865}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724975f.jpg"} -{"rects": [{"solidity": 0.9975607104950192, "top": 425, "right": 3140, "bottom": 2050, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705385f.jpg"} -{"rects": [{"solidity": 0.9975610772282812, "top": 800, "right": 2045, "bottom": 3215, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720686f.jpg"} -{"rects": [{"solidity": 0.9975611174281579, "top": 2260, "right": 2800, "bottom": 4675, "left": 1185}, {"solidity": 0.9976916795089633, "top": 385, "right": 3185, "bottom": 1980, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731356f.jpg"} -{"rects": [{"solidity": 0.9975611460828883, "top": 1285, "right": 4115, "bottom": 5890, "left": 410}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708802f.jpg"} -{"rects": [{"solidity": 0.9975611715373617, "top": 385, "right": 3220, "bottom": 2005, "left": 800}, {"solidity": 0.9966500676118338, "top": 2220, "right": 3230, "bottom": 3835, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705883f.jpg"} -{"rects": [{"solidity": 0.9975614764618307, "top": 390, "right": 5660, "bottom": 2015, "left": 3240}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702457f.jpg"} -{"rects": [{"solidity": 0.997561506306631, "top": 1040, "right": 3475, "bottom": 5115, "left": 255}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/709176f.jpg"} -{"rects": [{"solidity": 0.997561778597762, "top": 735, "right": 1985, "bottom": 3140, "left": 380}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714809f.jpg"} -{"rects": [{"solidity": 0.9975618791895307, "top": 590, "right": 3225, "bottom": 2230, "left": 795}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706181f.jpg"} -{"rects": [{"solidity": 0.9975621474626923, "top": 1065, "right": 3530, "bottom": 5085, "left": 260}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717121f.jpg"} -{"rects": [{"solidity": 0.9975623680557267, "top": 630, "right": 2710, "bottom": 3640, "left": 670}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720412f.jpg"} -{"rects": [{"solidity": 0.9975624779236398, "top": 2305, "right": 3245, "bottom": 4050, "left": 760}, {"solidity": 0.9951974420877535, "top": 470, "right": 3195, "bottom": 2085, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/733518f.jpg"} -{"rects": [{"solidity": 0.9975626582860205, "top": 310, "right": 4380, "bottom": 4150, "left": 1415}], "shape": {"h": 4420, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711241f.jpg"} -{"rects": [{"solidity": 0.9975627011719899, "top": 1020, "right": 3465, "bottom": 5085, "left": 150}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712293f.jpg"} -{"rects": [{"solidity": 0.9975627120600855, "top": 440, "right": 3160, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702181f.jpg"} -{"rects": [{"solidity": 0.9975627874630546, "top": 2250, "right": 3145, "bottom": 3885, "left": 710}, {"solidity": 0.9985729314657488, "top": 405, "right": 3145, "bottom": 2030, "left": 710}, {"solidity": 0.9978686214422435, "top": 4110, "right": 3135, "bottom": 5735, "left": 710}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702684f.jpg"} -{"rects": [{"solidity": 0.9975634395105399, "top": 740, "right": 1990, "bottom": 3120, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713251f.jpg"} -{"rects": [{"solidity": 0.9975635825294926, "top": 695, "right": 2470, "bottom": 3515, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712231f.jpg"} -{"rects": [{"solidity": 0.9975637133600347, "top": 415, "right": 3145, "bottom": 2040, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701272f.jpg"} -{"rects": [{"solidity": 0.997563946406821, "top": 425, "right": 3180, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734786f.jpg"} -{"rects": [{"solidity": 0.9975642754819091, "top": 645, "right": 2490, "bottom": 3690, "left": 510}, {"solidity": 0.9975795442443176, "top": 925, "right": 4125, "bottom": 3335, "left": 2505}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715154f.jpg"} -{"rects": [{"solidity": 0.9975643915992535, "top": 815, "right": 2695, "bottom": 3225, "left": 1080}, {"solidity": 0.9975916111570315, "top": 800, "right": 5130, "bottom": 3210, "left": 3520}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718201f.jpg"} -{"rects": [{"solidity": 0.9975644863257611, "top": 670, "right": 2745, "bottom": 2070, "left": 940}, {"solidity": 0.9956768152029453, "top": 2105, "right": 2725, "bottom": 3500, "left": 950}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726585f.jpg"} -{"rects": [{"solidity": 0.9975647232771867, "top": 400, "right": 2530, "bottom": 2810, "left": 905}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710422f.jpg"} -{"rects": [{"solidity": 0.9975647882938645, "top": 410, "right": 5115, "bottom": 3520, "left": 1330}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734424f.jpg"} -{"rects": [{"solidity": 0.9975650410070203, "top": 545, "right": 2580, "bottom": 3580, "left": 635}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712512f.jpg"} -{"rects": [{"solidity": 0.9975651230138207, "top": 1060, "right": 3425, "bottom": 5070, "left": 350}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708503f.jpg"} -{"rects": [{"solidity": 0.9975651469287737, "top": 1030, "right": 3305, "bottom": 2765, "left": 1435}, {"solidity": 0.9812898884437855, "top": 3865, "right": 2005, "bottom": 5410, "left": 445}, {"solidity": 0.9713880036601142, "top": 4025, "right": 4200, "bottom": 5380, "left": 2690}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465528.jpg"} -{"rects": [{"solidity": 0.9975652095497892, "top": 920, "right": 3940, "bottom": 3330, "left": 2315}, {"solidity": 0.9977859969145962, "top": 915, "right": 2045, "bottom": 3325, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709847f.jpg"} -{"rects": [{"solidity": 0.997565211692227, "top": 425, "right": 3215, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702657f.jpg"} -{"rects": [{"solidity": 0.9975652546403475, "top": 980, "right": 5015, "bottom": 3000, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702716f.jpg"} -{"rects": [{"solidity": 0.997565640758129, "top": 445, "right": 3100, "bottom": 2065, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703740f.jpg"} -{"rects": [{"solidity": 0.9975663745453134, "top": 395, "right": 3205, "bottom": 2005, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/705865f.jpg"} -{"rects": [{"solidity": 0.9975664857031035, "top": 1075, "right": 3500, "bottom": 5090, "left": 270}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724738f.jpg"} -{"rects": [{"solidity": 0.9975668459747741, "top": 890, "right": 1990, "bottom": 3300, "left": 400}, {"solidity": 0.9959365509707859, "top": 880, "right": 5680, "bottom": 3290, "left": 4085}, {"solidity": 0.9968283785705545, "top": 885, "right": 3840, "bottom": 3290, "left": 2255}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728703f.jpg"} -{"rects": [{"solidity": 0.9975669177445774, "top": 370, "right": 3225, "bottom": 1995, "left": 795}, {"solidity": 0.996681804536251, "top": 2180, "right": 3215, "bottom": 3820, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733174f.jpg"} -{"rects": [{"solidity": 0.9975669350421451, "top": 935, "right": 2690, "bottom": 3950, "left": 260}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517255.jpg"} -{"rects": [{"solidity": 0.9975670161051902, "top": 630, "right": 5240, "bottom": 2055, "left": 3415}, {"solidity": 0.9954019205451871, "top": 2130, "right": 2715, "bottom": 3550, "left": 880}, {"solidity": 0.9965092263087977, "top": 2125, "right": 5250, "bottom": 3545, "left": 3415}, {"solidity": 0.9983039912413612, "top": 645, "right": 2710, "bottom": 2060, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706542f.jpg"} -{"rects": [{"solidity": 0.9975671983276546, "top": 760, "right": 3865, "bottom": 3165, "left": 2275}, {"solidity": 0.9964707604030888, "top": 795, "right": 2005, "bottom": 3155, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717431f.jpg"} -{"rects": [{"solidity": 0.9975673565274265, "top": 455, "right": 3130, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718071f.jpg"} -{"rects": [{"solidity": 0.9975675333712912, "top": 525, "right": 3025, "bottom": 2165, "left": 590}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704974f.jpg"} -{"rects": [{"solidity": 0.9975677936970184, "top": 415, "right": 3055, "bottom": 2030, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707626f.jpg"} -{"rects": [{"solidity": 0.997567942544683, "top": 810, "right": 2155, "bottom": 3215, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710208f.jpg"} -{"rects": [{"solidity": 0.9975679570186935, "top": 1120, "right": 2675, "bottom": 4285, "left": 220}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508823.jpg"} -{"rects": [{"solidity": 0.9975681897136698, "top": 785, "right": 2045, "bottom": 3195, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717325f.jpg"} -{"rects": [{"solidity": 0.997568242805589, "top": 380, "right": 3390, "bottom": 2660, "left": 405}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508067.jpg"} -{"rects": [{"solidity": 0.997568264564967, "top": 635, "right": 4800, "bottom": 3470, "left": 1180}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731275f.jpg"} -{"rects": [{"solidity": 0.9975683710065361, "top": 825, "right": 2085, "bottom": 3210, "left": 485}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711890f.jpg"} -{"rects": [{"solidity": 0.9975684283704913, "top": 2190, "right": 3170, "bottom": 3815, "left": 770}, {"solidity": 0.9968473639112089, "top": 320, "right": 3180, "bottom": 1945, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/706891f.jpg"} -{"rects": [{"solidity": 0.9975684448369596, "top": 485, "right": 5065, "bottom": 3750, "left": 1040}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700442f.jpg"} -{"rects": [{"solidity": 0.9975685812934574, "top": 385, "right": 5075, "bottom": 3660, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728192f.jpg"} -{"rects": [{"solidity": 0.9975687307401974, "top": 445, "right": 3095, "bottom": 2055, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718777f.jpg"} -{"rects": [{"solidity": 0.9975687444689736, "top": 820, "right": 2025, "bottom": 3240, "left": 395}, {"solidity": 0.9970574797841513, "top": 830, "right": 3870, "bottom": 3250, "left": 2235}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724062f.jpg"} -{"rects": [{"solidity": 0.9975687629049937, "top": 360, "right": 2625, "bottom": 2785, "left": 995}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711022f.jpg"} -{"rects": [{"solidity": 0.9975691474652896, "top": 775, "right": 2025, "bottom": 3200, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724550f.jpg"} -{"rects": [{"solidity": 0.9975691634737563, "top": 855, "right": 1925, "bottom": 3255, "left": 310}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715660f.jpg"} -{"rects": [{"solidity": 0.9975693176345114, "top": 385, "right": 5175, "bottom": 3675, "left": 1100}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/716508f.jpg"} -{"rects": [{"solidity": 0.9975695195922769, "top": 485, "right": 3875, "bottom": 2695, "left": 905}], "shape": {"h": 3030, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/723849f.jpg"} -{"rects": [{"solidity": 0.9975696427548446, "top": 915, "right": 2615, "bottom": 3935, "left": 205}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509357.jpg"} -{"rects": [{"solidity": 0.9975696428052713, "top": 740, "right": 1915, "bottom": 3155, "left": 300}, {"solidity": 0.9958051469506394, "top": 765, "right": 3780, "bottom": 3160, "left": 2165}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724283f.jpg"} -{"rects": [{"solidity": 0.997569678508254, "top": 940, "right": 4325, "bottom": 3655, "left": 2495}, {"solidity": 0.997728546041307, "top": 930, "right": 2245, "bottom": 3645, "left": 415}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/710258f.jpg"} -{"rects": [{"solidity": 0.997569763271429, "top": 485, "right": 3470, "bottom": 3185, "left": 335}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731771f.jpg"} -{"rects": [{"solidity": 0.9975700559555922, "top": 760, "right": 3900, "bottom": 3190, "left": 2270}, {"solidity": 0.9977900163749872, "top": 760, "right": 5730, "bottom": 3190, "left": 4110}, {"solidity": 0.9970418867547984, "top": 760, "right": 2055, "bottom": 3190, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734511f.jpg"} -{"rects": [{"solidity": 0.9975701326421711, "top": 2250, "right": 3160, "bottom": 3875, "left": 720}, {"solidity": 0.998198662682083, "top": 350, "right": 3170, "bottom": 1975, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733905f.jpg"} -{"rects": [{"solidity": 0.9975701545740718, "top": 430, "right": 3185, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706636f.jpg"} -{"rects": [{"solidity": 0.9975701551667217, "top": 440, "right": 3155, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709712f.jpg"} -{"rects": [{"solidity": 0.9975702363888549, "top": 775, "right": 2000, "bottom": 3165, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724377f.jpg"} -{"rects": [{"solidity": 0.9975702461007995, "top": 680, "right": 3405, "bottom": 2705, "left": 320}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721973f.jpg"} -{"rects": [{"solidity": 0.9975705898085765, "top": 2340, "right": 3705, "bottom": 4775, "left": 2080}, {"solidity": 0.9954575984160483, "top": 2280, "right": 1895, "bottom": 4720, "left": 245}, {"solidity": 0.9919625683904209, "top": 395, "right": 2830, "bottom": 1825, "left": 1045}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727541f.jpg"} -{"rects": [{"solidity": 0.997570677823808, "top": 310, "right": 4005, "bottom": 2740, "left": 975}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517291.jpg"} -{"rects": [{"solidity": 0.9975708560066879, "top": 945, "right": 3575, "bottom": 5275, "left": 330}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/718426f.jpg"} -{"rects": [{"solidity": 0.9975708969054229, "top": 525, "right": 5045, "bottom": 3760, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702344f.jpg"} -{"rects": [{"solidity": 0.9975713953151838, "top": 540, "right": 2955, "bottom": 2180, "left": 505}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710692f.jpg"} -{"rects": [{"solidity": 0.9975717484784788, "top": 455, "right": 3165, "bottom": 2020, "left": 820}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/717827f.jpg"} -{"rects": [{"solidity": 0.9975718956557488, "top": 845, "right": 2060, "bottom": 3265, "left": 435}, {"solidity": 0.9971644948247186, "top": 855, "right": 3890, "bottom": 3270, "left": 2275}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711431f.jpg"} -{"rects": [{"solidity": 0.9975719449013196, "top": 305, "right": 5135, "bottom": 3575, "left": 1020}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704852f.jpg"} -{"rects": [{"solidity": 0.9975719532902477, "top": 300, "right": 3130, "bottom": 1915, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706830f.jpg"} -{"rects": [{"solidity": 0.9975720170468383, "top": 1175, "right": 4000, "bottom": 5720, "left": 315}], "shape": {"h": 6915, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708863f.jpg"} -{"rects": [{"solidity": 0.9975721134313805, "top": 395, "right": 3110, "bottom": 2000, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729807f.jpg"} -{"rects": [{"solidity": 0.9975721167687082, "top": 885, "right": 2050, "bottom": 3300, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711070f.jpg"} -{"rects": [{"solidity": 0.9975722004692111, "top": 385, "right": 3025, "bottom": 1945, "left": 1045}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701194f.jpg"} -{"rects": [{"solidity": 0.9975723297241108, "top": 430, "right": 3145, "bottom": 2045, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729391f.jpg"} -{"rects": [{"solidity": 0.997572349055745, "top": 465, "right": 3535, "bottom": 2300, "left": 815}, {"solidity": 0.9958395545995191, "top": 4550, "right": 3550, "bottom": 6375, "left": 825}, {"solidity": 0.997111689919282, "top": 2515, "right": 3540, "bottom": 4320, "left": 835}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711535f.jpg"} -{"rects": [{"solidity": 0.9975723665207273, "top": 465, "right": 3170, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723561f.jpg"} -{"rects": [{"solidity": 0.9975724574509462, "top": 1080, "right": 3370, "bottom": 5075, "left": 555}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722748f.jpg"} -{"rects": [{"solidity": 0.9975724748634717, "top": 825, "right": 3880, "bottom": 3260, "left": 2255}, {"solidity": 0.9962848297213622, "top": 830, "right": 5695, "bottom": 3260, "left": 4080}, {"solidity": 0.9978690832192736, "top": 835, "right": 2045, "bottom": 3245, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720775f.jpg"} -{"rects": [{"solidity": 0.9975726167653228, "top": 555, "right": 3425, "bottom": 2760, "left": 705}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508489.jpg"} -{"rects": [{"solidity": 0.9975728575134761, "top": 410, "right": 3230, "bottom": 2140, "left": 705}, {"solidity": 0.9951468546406066, "top": 2455, "right": 3020, "bottom": 3970, "left": 1055}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717889f.jpg"} -{"rects": [{"solidity": 0.9975729198699825, "top": 425, "right": 3215, "bottom": 2020, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725765f.jpg"} -{"rects": [{"solidity": 0.9975734872549047, "top": 510, "right": 5140, "bottom": 3810, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707825f.jpg"} -{"rects": [{"solidity": 0.9975735037957044, "top": 495, "right": 3905, "bottom": 2585, "left": 2415}, {"solidity": 0.9946499752388839, "top": 485, "right": 2140, "bottom": 2575, "left": 650}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716130f.jpg"} -{"rects": [{"solidity": 0.9975735080072301, "top": 520, "right": 5105, "bottom": 3755, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733768f.jpg"} -{"rects": [{"solidity": 0.9975735235876304, "top": 510, "right": 4995, "bottom": 3745, "left": 950}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731214f.jpg"} -{"rects": [{"solidity": 0.9975735429083022, "top": 1110, "right": 3600, "bottom": 5215, "left": 310}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/723499f.jpg"} -{"rects": [{"solidity": 0.9975736499379712, "top": 655, "right": 2655, "bottom": 2065, "left": 860}, {"solidity": 0.9983655939934322, "top": 2130, "right": 2655, "bottom": 3530, "left": 865}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706937f.jpg"} -{"rects": [{"solidity": 0.9975736579494544, "top": 765, "right": 3920, "bottom": 3190, "left": 2290}, {"solidity": 0.996757812748573, "top": 765, "right": 2060, "bottom": 3195, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732350f.jpg"} -{"rects": [{"solidity": 0.9975736636694277, "top": 555, "right": 2750, "bottom": 1975, "left": 940}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703806f.jpg"} -{"rects": [{"solidity": 0.997573792369013, "top": 965, "right": 3645, "bottom": 4990, "left": 370}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708074f.jpg"} -{"rects": [{"solidity": 0.9975738662428202, "top": 2365, "right": 3170, "bottom": 3980, "left": 755}, {"solidity": 0.9984696535556135, "top": 470, "right": 3160, "bottom": 2080, "left": 760}, {"solidity": 0.9955364291433146, "top": 4315, "right": 2860, "bottom": 5700, "left": 1040}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727010f.jpg"} -{"rects": [{"solidity": 0.9975743442493226, "top": 775, "right": 2050, "bottom": 3190, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703174f.jpg"} -{"rects": [{"solidity": 0.9975744030500732, "top": 415, "right": 3160, "bottom": 2015, "left": 765}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720082f.jpg"} -{"rects": [{"solidity": 0.9975746935856172, "top": 840, "right": 2055, "bottom": 3250, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729390f.jpg"} -{"rects": [{"solidity": 0.9975748702499273, "top": 405, "right": 5090, "bottom": 3725, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710303f.jpg"} -{"rects": [{"solidity": 0.9975749798099368, "top": 665, "right": 2795, "bottom": 3480, "left": 770}, {"solidity": 0.9965777657699384, "top": 830, "right": 4865, "bottom": 3260, "left": 3235}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712119f.jpg"} -{"rects": [{"solidity": 0.9975750569910041, "top": 750, "right": 2060, "bottom": 3160, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710367f.jpg"} -{"rects": [{"solidity": 0.9975751666063957, "top": 475, "right": 3285, "bottom": 2095, "left": 875}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707918f.jpg"} -{"rects": [{"solidity": 0.9975752967785629, "top": 4045, "right": 3055, "bottom": 5670, "left": 630}, {"solidity": 0.9972054506531298, "top": 2205, "right": 3050, "bottom": 3830, "left": 630}, {"solidity": 0.9976351605506838, "top": 375, "right": 3035, "bottom": 1975, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722869f.jpg"} -{"rects": [{"solidity": 0.9975753455699071, "top": 420, "right": 3290, "bottom": 2035, "left": 880}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725517f.jpg"} -{"rects": [{"solidity": 0.9975754130315903, "top": 1030, "right": 3600, "bottom": 5135, "left": 345}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722314f.jpg"} -{"rects": [{"solidity": 0.9975755971423683, "top": 2190, "right": 3205, "bottom": 3805, "left": 785}, {"solidity": 0.9978316760121321, "top": 360, "right": 3165, "bottom": 1980, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730726f.jpg"} -{"rects": [{"solidity": 0.9975757536101969, "top": 790, "right": 2040, "bottom": 3195, "left": 440}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721808f.jpg"} -{"rects": [{"solidity": 0.9975758239140303, "top": 4130, "right": 3055, "bottom": 5745, "left": 630}, {"solidity": 0.997243537931945, "top": 415, "right": 3040, "bottom": 2025, "left": 615}, {"solidity": 0.9981335164356934, "top": 2265, "right": 3045, "bottom": 3875, "left": 620}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/729729f.jpg"} -{"rects": [{"solidity": 0.9975760572243126, "top": 800, "right": 3775, "bottom": 3215, "left": 2150}, {"solidity": 0.9978645180465994, "top": 795, "right": 1950, "bottom": 3200, "left": 330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722678f.jpg"} -{"rects": [{"solidity": 0.9975761046442402, "top": 395, "right": 5460, "bottom": 3705, "left": 1400}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701205f.jpg"} -{"rects": [{"solidity": 0.9975764822350363, "top": 495, "right": 3290, "bottom": 2110, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725842f.jpg"} -{"rects": [{"solidity": 0.9975765330851704, "top": 2255, "right": 3125, "bottom": 3875, "left": 720}, {"solidity": 0.9936687094058806, "top": 420, "right": 3120, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719715f.jpg"} -{"rects": [{"solidity": 0.9975766094111199, "top": 580, "right": 3590, "bottom": 4655, "left": 355}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709000f.jpg"} -{"rects": [{"solidity": 0.9975768860903707, "top": 660, "right": 4970, "bottom": 3315, "left": 1090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701584f.jpg"} -{"rects": [{"solidity": 0.9975769181277494, "top": 550, "right": 2280, "bottom": 3390, "left": 245}, {"solidity": 0.9981147530326473, "top": 810, "right": 5790, "bottom": 3200, "left": 4170}, {"solidity": 0.9974220374220374, "top": 830, "right": 3970, "bottom": 3130, "left": 2455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715663f.jpg"} -{"rects": [{"solidity": 0.9975771040544436, "top": 425, "right": 5180, "bottom": 3690, "left": 1070}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/724609f.jpg"} -{"rects": [{"solidity": 0.9975771641343781, "top": 795, "right": 2020, "bottom": 3225, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706732f.jpg"} -{"rects": [{"solidity": 0.9975772064490566, "top": 1040, "right": 3520, "bottom": 5095, "left": 225}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702172f.jpg"} -{"rects": [{"solidity": 0.9975773977404262, "top": 795, "right": 2030, "bottom": 3205, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707646f.jpg"} -{"rects": [{"solidity": 0.9975775346969745, "top": 570, "right": 5265, "bottom": 3490, "left": 910}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717287f.jpg"} -{"rects": [{"solidity": 0.9975777071544841, "top": 405, "right": 3105, "bottom": 2015, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700465f.jpg"} -{"rects": [{"solidity": 0.9975779661772318, "top": 325, "right": 4200, "bottom": 2765, "left": 1170}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517237.jpg"} -{"rects": [{"solidity": 0.9975781736962394, "top": 785, "right": 2080, "bottom": 3195, "left": 470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705619f.jpg"} -{"rects": [{"solidity": 0.9975784433904122, "top": 550, "right": 5110, "bottom": 3765, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722926f.jpg"} -{"rects": [{"solidity": 0.997578895989501, "top": 895, "right": 2050, "bottom": 3315, "left": 440}, {"solidity": 0.9962250834463758, "top": 890, "right": 3885, "bottom": 3310, "left": 2275}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708926f.jpg"} -{"rects": [{"solidity": 0.9975791254724399, "top": 920, "right": 3490, "bottom": 4895, "left": 235}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/726575f.jpg"} -{"rects": [{"solidity": 0.9975792817670595, "top": 2255, "right": 3060, "bottom": 3870, "left": 655}, {"solidity": 0.9966195022217021, "top": 4115, "right": 3065, "bottom": 5725, "left": 655}, {"solidity": 0.9970185905411274, "top": 420, "right": 3070, "bottom": 2030, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733652f.jpg"} -{"rects": [{"solidity": 0.997579447248808, "top": 705, "right": 2040, "bottom": 3135, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705057f.jpg"} -{"rects": [{"solidity": 0.9975795034176194, "top": 325, "right": 3700, "bottom": 2790, "left": 670}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509795.jpg"} -{"rects": [{"solidity": 0.9975795486324289, "top": 695, "right": 3900, "bottom": 3115, "left": 2280}, {"solidity": 0.9962794302877628, "top": 700, "right": 2050, "bottom": 3115, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726228f.jpg"} -{"rects": [{"solidity": 0.9975796169884991, "top": 2110, "right": 3285, "bottom": 3695, "left": 890}, {"solidity": 0.9964438074923344, "top": 4025, "right": 3265, "bottom": 5620, "left": 885}, {"solidity": 0.9964249336923526, "top": 430, "right": 3000, "bottom": 1820, "left": 1200}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727262f.jpg"} -{"rects": [{"solidity": 0.9975796198844527, "top": 440, "right": 3175, "bottom": 2060, "left": 760}, {"solidity": 0.9966310605174588, "top": 2205, "right": 3175, "bottom": 3815, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715106f.jpg"} -{"rects": [{"solidity": 0.9975799240509162, "top": 545, "right": 5090, "bottom": 3615, "left": 1045}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708516f.jpg"} -{"rects": [{"solidity": 0.9975800349622981, "top": 4060, "right": 3215, "bottom": 5665, "left": 810}, {"solidity": 0.9955970743717865, "top": 525, "right": 3045, "bottom": 1960, "left": 1220}, {"solidity": 0.996372988333685, "top": 2335, "right": 3040, "bottom": 3745, "left": 1215}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727991f.jpg"} -{"rects": [{"solidity": 0.9975800658283724, "top": 495, "right": 5065, "bottom": 3735, "left": 1015}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708631f.jpg"} -{"rects": [{"solidity": 0.9975802367842469, "top": 425, "right": 3100, "bottom": 2055, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700929f.jpg"} -{"rects": [{"solidity": 0.9975802481763958, "top": 450, "right": 3205, "bottom": 2070, "left": 775}, {"solidity": 0.9967847203763542, "top": 4105, "right": 3195, "bottom": 5730, "left": 765}, {"solidity": 0.9973619596504837, "top": 2280, "right": 3200, "bottom": 3900, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734772f.jpg"} -{"rects": [{"solidity": 0.9975804900823054, "top": 405, "right": 5115, "bottom": 3660, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714932f.jpg"} -{"rects": [{"solidity": 0.997580572415304, "top": 400, "right": 3170, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719663f.jpg"} -{"rects": [{"solidity": 0.997581114083033, "top": 745, "right": 2045, "bottom": 3135, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709633f.jpg"} -{"rects": [{"solidity": 0.9975813317509868, "top": 395, "right": 3220, "bottom": 2015, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732489f.jpg"} -{"rects": [{"solidity": 0.9975815743570868, "top": 655, "right": 2630, "bottom": 3705, "left": 565}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715706f.jpg"} -{"rects": [{"solidity": 0.9975816203143894, "top": 410, "right": 3220, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701166f.jpg"} -{"rects": [{"solidity": 0.9975816379516561, "top": 440, "right": 5090, "bottom": 3690, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731534f.jpg"} -{"rects": [{"solidity": 0.9975817499440264, "top": 355, "right": 5180, "bottom": 3605, "left": 1085}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703625f.jpg"} -{"rects": [{"solidity": 0.9975818776236628, "top": 405, "right": 3200, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721121f.jpg"} -{"rects": [{"solidity": 0.9975820994731553, "top": 410, "right": 5065, "bottom": 3635, "left": 1050}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733462f.jpg"} -{"rects": [{"solidity": 0.9975822607671797, "top": 475, "right": 5165, "bottom": 3765, "left": 1125}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714488f.jpg"} -{"rects": [{"solidity": 0.9975823501880215, "top": 460, "right": 3210, "bottom": 2075, "left": 790}, {"solidity": 0.9968074576753634, "top": 2285, "right": 3210, "bottom": 3905, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709236f.jpg"} -{"rects": [{"solidity": 0.9975823725983314, "top": 670, "right": 2545, "bottom": 3715, "left": 500}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713572f.jpg"} -{"rects": [{"solidity": 0.9975824717151868, "top": 675, "right": 3300, "bottom": 2470, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710021f.jpg"} -{"rects": [{"solidity": 0.9975826830121524, "top": 415, "right": 5175, "bottom": 3645, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732661f.jpg"} -{"rects": [{"solidity": 0.9975831716174932, "top": 435, "right": 3180, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720880f.jpg"} -{"rects": [{"solidity": 0.9975831867133272, "top": 420, "right": 3180, "bottom": 2035, "left": 760}, {"solidity": 0.9959361336151997, "top": 4145, "right": 3110, "bottom": 5765, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734287f.jpg"} -{"rects": [{"solidity": 0.9975832301071424, "top": 775, "right": 4040, "bottom": 3210, "left": 2420}, {"solidity": 0.995889610327394, "top": 795, "right": 5780, "bottom": 3225, "left": 4150}, {"solidity": 0.9964690577959487, "top": 780, "right": 2300, "bottom": 3195, "left": 660}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733192f.jpg"} -{"rects": [{"solidity": 0.9975835392715161, "top": 470, "right": 5205, "bottom": 3510, "left": 1325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729972f.jpg"} -{"rects": [{"solidity": 0.9975836357803035, "top": 440, "right": 5055, "bottom": 3660, "left": 995}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731879f.jpg"} -{"rects": [{"solidity": 0.9975839238006737, "top": 505, "right": 4995, "bottom": 3605, "left": 975}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721051f.jpg"} -{"rects": [{"solidity": 0.9975841139955632, "top": 820, "right": 4825, "bottom": 3440, "left": 1345}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701182f.jpg"} -{"rects": [{"solidity": 0.9975842271945641, "top": 445, "right": 5075, "bottom": 3715, "left": 965}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734533f.jpg"} -{"rects": [{"solidity": 0.9975842281835727, "top": 400, "right": 3170, "bottom": 2010, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724905f.jpg"} -{"rects": [{"solidity": 0.9975846658572499, "top": 1090, "right": 3570, "bottom": 5030, "left": 600}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/731803f.jpg"} -{"rects": [{"solidity": 0.9975846861092763, "top": 715, "right": 3830, "bottom": 3105, "left": 2250}, {"solidity": 0.9980414962166787, "top": 705, "right": 2015, "bottom": 3095, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727524f.jpg"} -{"rects": [{"solidity": 0.9975848027376484, "top": 2295, "right": 3315, "bottom": 3925, "left": 890}, {"solidity": 0.9961906594199413, "top": 4105, "right": 3295, "bottom": 5745, "left": 870}, {"solidity": 0.9983905039734433, "top": 420, "right": 3315, "bottom": 2030, "left": 905}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703857f.jpg"} -{"rects": [{"solidity": 0.9975852418779325, "top": 1400, "right": 3535, "bottom": 5340, "left": 385}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721861f.jpg"} -{"rects": [{"solidity": 0.9975853908148906, "top": 780, "right": 3800, "bottom": 3195, "left": 2170}, {"solidity": 0.9999935085800343, "top": 790, "right": 1940, "bottom": 3180, "left": 320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703037f.jpg"} -{"rects": [{"solidity": 0.9975855237736976, "top": 695, "right": 2545, "bottom": 3720, "left": 505}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715501f.jpg"} -{"rects": [{"solidity": 0.9975858967899124, "top": 815, "right": 2080, "bottom": 3235, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705427f.jpg"} -{"rects": [{"solidity": 0.9975859361311382, "top": 825, "right": 2085, "bottom": 3235, "left": 470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732394f.jpg"} -{"rects": [{"solidity": 0.9975859878043989, "top": 460, "right": 5140, "bottom": 3720, "left": 1070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731373f.jpg"} -{"rects": [{"solidity": 0.9975860487630889, "top": 2140, "right": 3130, "bottom": 3770, "left": 705}, {"solidity": 0.9987688499910694, "top": 300, "right": 3120, "bottom": 1930, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734782f.jpg"} -{"rects": [{"solidity": 0.9975863967528393, "top": 705, "right": 2045, "bottom": 3125, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706069f.jpg"} -{"rects": [{"solidity": 0.9975864975155405, "top": 875, "right": 3490, "bottom": 4950, "left": 290}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720727f.jpg"} -{"rects": [{"solidity": 0.9975868012804728, "top": 2255, "right": 3255, "bottom": 3860, "left": 865}, {"solidity": 0.9958423806171652, "top": 435, "right": 3265, "bottom": 2035, "left": 875}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/733279f.jpg"} -{"rects": [{"solidity": 0.9975869914308723, "top": 415, "right": 5085, "bottom": 3650, "left": 995}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725736f.jpg"} -{"rects": [{"solidity": 0.9975870034058902, "top": 950, "right": 3540, "bottom": 4945, "left": 320}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/709059f.jpg"} -{"rects": [{"solidity": 0.9975870323923774, "top": 940, "right": 3555, "bottom": 4975, "left": 285}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711573f.jpg"} -{"rects": [{"solidity": 0.9975872746420207, "top": 385, "right": 2670, "bottom": 3580, "left": 665}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733106f.jpg"} -{"rects": [{"solidity": 0.9975875132595848, "top": 665, "right": 2530, "bottom": 3705, "left": 480}, {"solidity": 0.9968818100243558, "top": 950, "right": 4370, "bottom": 3370, "left": 2740}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715453f.jpg"} -{"rects": [{"solidity": 0.9975875731256323, "top": 835, "right": 2045, "bottom": 3190, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713227f.jpg"} -{"rects": [{"solidity": 0.9975877286864848, "top": 425, "right": 4730, "bottom": 3745, "left": 640}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726937f.jpg"} -{"rects": [{"solidity": 0.9975877824618365, "top": 400, "right": 3155, "bottom": 2005, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718234f.jpg"} -{"rects": [{"solidity": 0.9975879033186896, "top": 420, "right": 3175, "bottom": 2015, "left": 780}, {"solidity": 0.9957167741913996, "top": 2230, "right": 3175, "bottom": 3815, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708080f.jpg"} -{"rects": [{"solidity": 0.9975879607278159, "top": 365, "right": 5545, "bottom": 3645, "left": 1525}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701208f.jpg"} -{"rects": [{"solidity": 0.9975881840734717, "top": 780, "right": 2010, "bottom": 3175, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724503f.jpg"} -{"rects": [{"solidity": 0.9975883598167153, "top": 420, "right": 5180, "bottom": 3645, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732725f.jpg"} -{"rects": [{"solidity": 0.9975885509838999, "top": 595, "right": 2590, "bottom": 2120, "left": 280}, {"solidity": 0.99618910363272, "top": 2545, "right": 2570, "bottom": 4075, "left": 275}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715829f.jpg"} -{"rects": [{"solidity": 0.997588675302724, "top": 435, "right": 5015, "bottom": 3665, "left": 1000}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710203f.jpg"} -{"rects": [{"solidity": 0.9975887206073923, "top": 455, "right": 3115, "bottom": 2050, "left": 715}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713118f.jpg"} -{"rects": [{"solidity": 0.9975887260707982, "top": 785, "right": 2025, "bottom": 3195, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713393f.jpg"} -{"rects": [{"solidity": 0.9975892279649556, "top": 1105, "right": 2005, "bottom": 3045, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702079f.jpg"} -{"rects": [{"solidity": 0.9975892761672083, "top": 380, "right": 3095, "bottom": 1995, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700667f.jpg"} -{"rects": [{"solidity": 0.9975900080061442, "top": 650, "right": 2485, "bottom": 3705, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711500f.jpg"} -{"rects": [{"solidity": 0.9975902879744031, "top": 480, "right": 5130, "bottom": 3750, "left": 1100}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714519f.jpg"} -{"rects": [{"solidity": 0.9975904467163804, "top": 815, "right": 2085, "bottom": 3240, "left": 470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701656f.jpg"} -{"rects": [{"solidity": 0.9975905721419619, "top": 530, "right": 3120, "bottom": 1935, "left": 1275}, {"solidity": 0.9963850725908604, "top": 2320, "right": 3105, "bottom": 3750, "left": 1295}, {"solidity": 0.996752750045649, "top": 4130, "right": 3100, "bottom": 5530, "left": 1275}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727792f.jpg"} -{"rects": [{"solidity": 0.9975906923496324, "top": 1230, "right": 3280, "bottom": 5005, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724831f.jpg"} -{"rects": [{"solidity": 0.9975907299170858, "top": 250, "right": 3960, "bottom": 2700, "left": 935}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508069.jpg"} -{"rects": [{"solidity": 0.9975907440716142, "top": 1070, "right": 3525, "bottom": 5110, "left": 220}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723551f.jpg"} -{"rects": [{"solidity": 0.9975908707087687, "top": 1265, "right": 3590, "bottom": 5285, "left": 350}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/726488f.jpg"} -{"rects": [{"solidity": 0.9975908827202375, "top": 790, "right": 2020, "bottom": 3185, "left": 415}, {"solidity": 0.9949286417194716, "top": 815, "right": 3865, "bottom": 2200, "left": 2080}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721675f.jpg"} -{"rects": [{"solidity": 0.997590893511561, "top": 740, "right": 2010, "bottom": 3135, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720757f.jpg"} -{"rects": [{"solidity": 0.9975909568225338, "top": 430, "right": 3140, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719224f.jpg"} -{"rects": [{"solidity": 0.997591215838623, "top": 385, "right": 5070, "bottom": 3640, "left": 1055}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722215f.jpg"} -{"rects": [{"solidity": 0.9975913135835933, "top": 390, "right": 4870, "bottom": 3635, "left": 880}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732088f.jpg"} -{"rects": [{"solidity": 0.99759146803199, "top": 660, "right": 2735, "bottom": 2065, "left": 900}, {"solidity": 0.9968764172046737, "top": 2080, "right": 2700, "bottom": 3475, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727333f.jpg"} -{"rects": [{"solidity": 0.9975914811736294, "top": 385, "right": 3215, "bottom": 1985, "left": 810}, {"solidity": 0.9970357767998822, "top": 2170, "right": 3215, "bottom": 3770, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713580f.jpg"} -{"rects": [{"solidity": 0.997591579510253, "top": 695, "right": 3410, "bottom": 2670, "left": 355}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721119f.jpg"} -{"rects": [{"solidity": 0.9975919097837351, "top": 935, "right": 3575, "bottom": 4890, "left": 405}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/731784f.jpg"} -{"rects": [{"solidity": 0.9975919704907761, "top": 775, "right": 5240, "bottom": 3535, "left": 1240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718281f.jpg"} -{"rects": [{"solidity": 0.9975920170549405, "top": 785, "right": 5735, "bottom": 3205, "left": 4115}, {"solidity": 0.9980139314500553, "top": 790, "right": 2065, "bottom": 3210, "left": 450}, {"solidity": 0.9957333089397958, "top": 780, "right": 3905, "bottom": 3195, "left": 2300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720431f.jpg"} -{"rects": [{"solidity": 0.9975920298835266, "top": 1760, "right": 3040, "bottom": 3940, "left": 1490}], "shape": {"h": 6010, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/464754.jpg"} -{"rects": [{"solidity": 0.9975923682616596, "top": 765, "right": 2785, "bottom": 2135, "left": 960}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728253f.jpg"} -{"rects": [{"solidity": 0.9975925816682257, "top": 415, "right": 5130, "bottom": 3705, "left": 1030}], "shape": {"h": 4030, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/714120f.jpg"} -{"rects": [{"solidity": 0.9975928670734089, "top": 395, "right": 2375, "bottom": 1605, "left": 560}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716496f.jpg"} -{"rects": [{"solidity": 0.9975930141253085, "top": 955, "right": 3495, "bottom": 5005, "left": 280}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/731243f.jpg"} -{"rects": [{"solidity": 0.9975930154721155, "top": 710, "right": 3215, "bottom": 2640, "left": 465}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723568f.jpg"} -{"rects": [{"solidity": 0.9975931340548903, "top": 620, "right": 4580, "bottom": 3275, "left": 1105}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730743f.jpg"} -{"rects": [{"solidity": 0.9975934022095759, "top": 1085, "right": 2610, "bottom": 4245, "left": 160}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507873.jpg"} -{"rects": [{"solidity": 0.9975934061034712, "top": 995, "right": 3530, "bottom": 5105, "left": 300}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714956f.jpg"} -{"rects": [{"solidity": 0.9975934675726704, "top": 885, "right": 3545, "bottom": 4975, "left": 335}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/730841f.jpg"} -{"rects": [{"solidity": 0.9975936593405534, "top": 410, "right": 3265, "bottom": 2025, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727464f.jpg"} -{"rects": [{"solidity": 0.9975937243873502, "top": 1075, "right": 3550, "bottom": 5165, "left": 330}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709379f.jpg"} -{"rects": [{"solidity": 0.997593746971997, "top": 800, "right": 2030, "bottom": 3215, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716598f.jpg"} -{"rects": [{"solidity": 0.9975937896857604, "top": 1100, "right": 3790, "bottom": 5130, "left": 525}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710648f.jpg"} -{"rects": [{"solidity": 0.9975938489199404, "top": 445, "right": 5075, "bottom": 3685, "left": 990}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730006f.jpg"} -{"rects": [{"solidity": 0.9975941365961939, "top": 330, "right": 3170, "bottom": 1900, "left": 800}, {"solidity": 0.9983354029526569, "top": 2160, "right": 3045, "bottom": 3485, "left": 905}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707995f.jpg"} -{"rects": [{"solidity": 0.9975942650382686, "top": 370, "right": 3150, "bottom": 1985, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724424f.jpg"} -{"rects": [{"solidity": 0.9975943881887668, "top": 360, "right": 2890, "bottom": 1985, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706720f.jpg"} -{"rects": [{"solidity": 0.9975944472137883, "top": 920, "right": 3535, "bottom": 5025, "left": 280}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723934f.jpg"} -{"rects": [{"solidity": 0.9975945392401127, "top": 455, "right": 3210, "bottom": 2040, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702349f.jpg"} -{"rects": [{"solidity": 0.9975947568928779, "top": 865, "right": 2005, "bottom": 3285, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713808f.jpg"} -{"rects": [{"solidity": 0.9975947618379419, "top": 405, "right": 5160, "bottom": 3620, "left": 1155}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718158f.jpg"} -{"rects": [{"solidity": 0.9975949092245252, "top": 485, "right": 3155, "bottom": 2060, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734790f.jpg"} -{"rects": [{"solidity": 0.9975952141467292, "top": 3420, "right": 3350, "bottom": 5460, "left": 540}, {"solidity": 0.993221887109829, "top": 925, "right": 3370, "bottom": 2930, "left": 585}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732078f.jpg"} -{"rects": [{"solidity": 0.9975952581496639, "top": 2275, "right": 3095, "bottom": 3930, "left": 660}, {"solidity": 0.9953348650420372, "top": 395, "right": 3090, "bottom": 2030, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710547f.jpg"} -{"rects": [{"solidity": 0.9975953160939569, "top": 860, "right": 2970, "bottom": 2665, "left": 1765}], "shape": {"h": 3005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1509721.jpg"} -{"rects": [{"solidity": 0.9975953700684708, "top": 480, "right": 5135, "bottom": 3695, "left": 1095}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722851f.jpg"} -{"rects": [{"solidity": 0.9975956276792419, "top": 380, "right": 3170, "bottom": 1955, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715738f.jpg"} -{"rects": [{"solidity": 0.9975957589337622, "top": 450, "right": 5735, "bottom": 4125, "left": 1175}], "shape": {"h": 4425, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708838f.jpg"} -{"rects": [{"solidity": 0.9975966846408627, "top": 310, "right": 3155, "bottom": 1935, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704613f.jpg"} -{"rects": [{"solidity": 0.9975969096257787, "top": 685, "right": 2560, "bottom": 3750, "left": 500}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715478f.jpg"} -{"rects": [{"solidity": 0.9975969127093037, "top": 385, "right": 3205, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728177f.jpg"} -{"rects": [{"solidity": 0.997597069048377, "top": 400, "right": 3675, "bottom": 2590, "left": 905}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507911.jpg"} -{"rects": [{"solidity": 0.9975972157151463, "top": 765, "right": 2040, "bottom": 3145, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723765f.jpg"} -{"rects": [{"solidity": 0.9975972286106706, "top": 430, "right": 3075, "bottom": 2045, "left": 650}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729377f.jpg"} -{"rects": [{"solidity": 0.9975972929500571, "top": 405, "right": 3130, "bottom": 1990, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729601f.jpg"} -{"rects": [{"solidity": 0.9975974516790843, "top": 2275, "right": 3415, "bottom": 4260, "left": 360}, {"solidity": 0.9973252209109718, "top": 445, "right": 3210, "bottom": 2065, "left": 790}, {"solidity": 0.9954013741170413, "top": 4270, "right": 3130, "bottom": 5890, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720914f.jpg"} -{"rects": [{"solidity": 0.9975975127190503, "top": 400, "right": 3120, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715321f.jpg"} -{"rects": [{"solidity": 0.9975977946583156, "top": 290, "right": 3415, "bottom": 5840, "left": 325}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721329f.jpg"} -{"rects": [{"solidity": 0.9975978124760421, "top": 2210, "right": 3220, "bottom": 3835, "left": 790}, {"solidity": 0.996781453972541, "top": 350, "right": 3210, "bottom": 1970, "left": 790}, {"solidity": 0.9971896517233146, "top": 4060, "right": 3210, "bottom": 5675, "left": 790}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/726956f.jpg"} -{"rects": [{"solidity": 0.9975980573298844, "top": 350, "right": 1945, "bottom": 1220, "left": 845}], "shape": {"h": 3935, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727068f.jpg"} -{"rects": [{"solidity": 0.9975981726442374, "top": 980, "right": 3510, "bottom": 4995, "left": 255}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/721228f.jpg"} -{"rects": [{"solidity": 0.9975981972173722, "top": 455, "right": 5925, "bottom": 4085, "left": 1335}], "shape": {"h": 4435, "w": 6900}, "file": "/usr/local/google/home/danvk/milstein/701707f.jpg"} -{"rects": [{"solidity": 0.9975983101362886, "top": 930, "right": 2320, "bottom": 3610, "left": 535}], "shape": {"h": 4420, "w": 6890}, "file": "/usr/local/google/home/danvk/milstein/711213f.jpg"} -{"rects": [{"solidity": 0.9975983467165205, "top": 545, "right": 3675, "bottom": 3180, "left": 260}, {"solidity": 0.9922006324044743, "top": 3225, "right": 3665, "bottom": 5830, "left": 280}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717238f.jpg"} -{"rects": [{"solidity": 0.9975984221010694, "top": 755, "right": 1990, "bottom": 3155, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712167f.jpg"} -{"rects": [{"solidity": 0.9975986677223806, "top": 355, "right": 5090, "bottom": 3605, "left": 1055}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705912f.jpg"} -{"rects": [{"solidity": 0.9975987789955659, "top": 710, "right": 2065, "bottom": 3105, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709671f.jpg"} -{"rects": [{"solidity": 0.9975988949052264, "top": 895, "right": 2020, "bottom": 3295, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728647f.jpg"} -{"rects": [{"solidity": 0.9975989200357838, "top": 610, "right": 3435, "bottom": 4675, "left": 145}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700516f.jpg"} -{"rects": [{"solidity": 0.9975989739412691, "top": 530, "right": 2500, "bottom": 1800, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702467f.jpg"} -{"rects": [{"solidity": 0.9975990901403157, "top": 405, "right": 5190, "bottom": 3595, "left": 1165}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733595f.jpg"} -{"rects": [{"solidity": 0.9975992147707979, "top": 830, "right": 2035, "bottom": 3225, "left": 450}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723191f.jpg"} -{"rects": [{"solidity": 0.997599249582287, "top": 485, "right": 5105, "bottom": 3690, "left": 1085}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720760f.jpg"} -{"rects": [{"solidity": 0.9975993009164269, "top": 2215, "right": 3210, "bottom": 3840, "left": 785}, {"solidity": 0.99645724777285, "top": 400, "right": 3210, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706842f.jpg"} -{"rects": [{"solidity": 0.9975994922720824, "top": 1085, "right": 2490, "bottom": 2605, "left": 265}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733949f.jpg"} -{"rects": [{"solidity": 0.9975999531234658, "top": 455, "right": 5875, "bottom": 4005, "left": 1380}], "shape": {"h": 4425, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/706371f.jpg"} -{"rects": [{"solidity": 0.9976001179830265, "top": 435, "right": 5045, "bottom": 3700, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734465f.jpg"} -{"rects": [{"solidity": 0.997600158239566, "top": 330, "right": 5475, "bottom": 3600, "left": 1345}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730115f.jpg"} -{"rects": [{"solidity": 0.9976002507493095, "top": 825, "right": 2035, "bottom": 3235, "left": 435}, {"solidity": 0.9930148953886414, "top": 820, "right": 3895, "bottom": 3220, "left": 2300}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712012f.jpg"} -{"rects": [{"solidity": 0.9976003178386968, "top": 865, "right": 5545, "bottom": 3295, "left": 3915}, {"solidity": 0.9954017663737008, "top": 1050, "right": 3635, "bottom": 3015, "left": 2135}, {"solidity": 0.9866283354184161, "top": 1060, "right": 1880, "bottom": 3015, "left": 360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722790f.jpg"} -{"rects": [{"solidity": 0.9976003234346675, "top": 395, "right": 3185, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724148f.jpg"} -{"rects": [{"solidity": 0.9976004433893657, "top": 830, "right": 3830, "bottom": 3250, "left": 2205}, {"solidity": 0.9961729935551925, "top": 825, "right": 2030, "bottom": 3245, "left": 405}, {"solidity": 0.996029598130508, "top": 830, "right": 5650, "bottom": 3245, "left": 4040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717090f.jpg"} -{"rects": [{"solidity": 0.9976005263361585, "top": 405, "right": 3205, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/702921f.jpg"} -{"rects": [{"solidity": 0.9976007223631594, "top": 1010, "right": 2690, "bottom": 4030, "left": 270}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516879.jpg"} -{"rects": [{"solidity": 0.9976011642884625, "top": 815, "right": 3845, "bottom": 3190, "left": 2260}, {"solidity": 0.9953708960956548, "top": 800, "right": 2040, "bottom": 3185, "left": 455}, {"solidity": 0.9910768491770686, "top": 820, "right": 5650, "bottom": 3185, "left": 4045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714334f.jpg"} -{"rects": [{"solidity": 0.9976013125617662, "top": 855, "right": 3845, "bottom": 3285, "left": 2220}, {"solidity": 0.99640190785546, "top": 845, "right": 2030, "bottom": 3270, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701539f.jpg"} -{"rects": [{"solidity": 0.9976013559601495, "top": 1005, "right": 3615, "bottom": 5040, "left": 395}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726803f.jpg"} -{"rects": [{"solidity": 0.9976015669762421, "top": 420, "right": 5240, "bottom": 3660, "left": 1165}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/723312f.jpg"} -{"rects": [{"solidity": 0.9976015737456999, "top": 400, "right": 5110, "bottom": 3635, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731057f.jpg"} -{"rects": [{"solidity": 0.99760169966502, "top": 470, "right": 3025, "bottom": 2080, "left": 620}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702373f.jpg"} -{"rects": [{"solidity": 0.9976017634692448, "top": 320, "right": 3420, "bottom": 2775, "left": 390}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509899.jpg"} -{"rects": [{"solidity": 0.9976025150973695, "top": 440, "right": 3250, "bottom": 2060, "left": 845}, {"solidity": 0.9965775781275248, "top": 2310, "right": 3255, "bottom": 3930, "left": 850}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703190f.jpg"} -{"rects": [{"solidity": 0.9976026470574273, "top": 615, "right": 2930, "bottom": 2060, "left": 1090}, {"solidity": 0.995423025626135, "top": 2245, "right": 2900, "bottom": 3680, "left": 1100}, {"solidity": 0.9968008901870784, "top": 605, "right": 5160, "bottom": 2000, "left": 3335}, {"solidity": 0.9959358840210485, "top": 2285, "right": 5175, "bottom": 3660, "left": 3350}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733661f.jpg"} -{"rects": [{"solidity": 0.9976027220704232, "top": 810, "right": 2015, "bottom": 3230, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720754f.jpg"} -{"rects": [{"solidity": 0.9976028064704736, "top": 415, "right": 3195, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707225f.jpg"} -{"rects": [{"solidity": 0.9976030146271851, "top": 645, "right": 3280, "bottom": 2650, "left": 465}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728932f.jpg"} -{"rects": [{"solidity": 0.9976030833935225, "top": 835, "right": 2035, "bottom": 3270, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728627f.jpg"} -{"rects": [{"solidity": 0.997603205951719, "top": 375, "right": 3245, "bottom": 2005, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703668f.jpg"} -{"rects": [{"solidity": 0.9976032791054851, "top": 795, "right": 2035, "bottom": 3200, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724491f.jpg"} -{"rects": [{"solidity": 0.9976034130482273, "top": 455, "right": 3105, "bottom": 2075, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702049f.jpg"} -{"rects": [{"solidity": 0.9976034346356658, "top": 775, "right": 2010, "bottom": 3160, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724039f.jpg"} -{"rects": [{"solidity": 0.9976039727677335, "top": 455, "right": 3130, "bottom": 2075, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728589f.jpg"} -{"rects": [{"solidity": 0.9976040447699679, "top": 395, "right": 5065, "bottom": 3625, "left": 1065}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708268f.jpg"} -{"rects": [{"solidity": 0.9976041104605745, "top": 450, "right": 5100, "bottom": 3570, "left": 1090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711459f.jpg"} -{"rects": [{"solidity": 0.9976042420372444, "top": 445, "right": 5050, "bottom": 3680, "left": 1030}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700233f.jpg"} -{"rects": [{"solidity": 0.99760454651253, "top": 415, "right": 3140, "bottom": 2035, "left": 735}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706835f.jpg"} -{"rects": [{"solidity": 0.9976045567790404, "top": 400, "right": 3300, "bottom": 2025, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700187f.jpg"} -{"rects": [{"solidity": 0.9976045697438732, "top": 780, "right": 3800, "bottom": 3195, "left": 2185}, {"solidity": 0.9986264405326684, "top": 780, "right": 2010, "bottom": 3195, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712752f.jpg"} -{"rects": [{"solidity": 0.9976049328192149, "top": 405, "right": 5110, "bottom": 3680, "left": 1025}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/715553f.jpg"} -{"rects": [{"solidity": 0.9976050469877631, "top": 445, "right": 2975, "bottom": 2075, "left": 555}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707252f.jpg"} -{"rects": [{"solidity": 0.997605052566521, "top": 855, "right": 3970, "bottom": 3280, "left": 2355}, {"solidity": 0.9952245415330597, "top": 890, "right": 2075, "bottom": 3295, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731577f.jpg"} -{"rects": [{"solidity": 0.9976050772362591, "top": 810, "right": 2050, "bottom": 3225, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709765f.jpg"} -{"rects": [{"solidity": 0.997605107403439, "top": 845, "right": 3900, "bottom": 3270, "left": 2270}, {"solidity": 0.9975227752678539, "top": 865, "right": 2035, "bottom": 3270, "left": 415}, {"solidity": 0.9978755542562003, "top": 880, "right": 5725, "bottom": 3280, "left": 4110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710419f.jpg"} -{"rects": [{"solidity": 0.997605187891882, "top": 390, "right": 3120, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714152f.jpg"} -{"rects": [{"solidity": 0.9976052517535271, "top": 415, "right": 3195, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702939f.jpg"} -{"rects": [{"solidity": 0.9976052711718945, "top": 440, "right": 5010, "bottom": 3635, "left": 1020}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719141f.jpg"} -{"rects": [{"solidity": 0.997605831997811, "top": 410, "right": 3205, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727219f.jpg"} -{"rects": [{"solidity": 0.9976058404006002, "top": 1340, "right": 3300, "bottom": 4750, "left": 670}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724487f.jpg"} -{"rects": [{"solidity": 0.9976060482454897, "top": 920, "right": 3430, "bottom": 4780, "left": 430}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712645f.jpg"} -{"rects": [{"solidity": 0.9976061217466683, "top": 1270, "right": 3570, "bottom": 5240, "left": 385}], "shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/722444f.jpg"} -{"rects": [{"solidity": 0.9976063642550396, "top": 750, "right": 2375, "bottom": 3895, "left": 325}], "shape": {"h": 4410, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711427f.jpg"} -{"rects": [{"solidity": 0.9976066250174078, "top": 860, "right": 2010, "bottom": 3280, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729813f.jpg"} -{"rects": [{"solidity": 0.9976066493187595, "top": 860, "right": 3480, "bottom": 4890, "left": 265}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723531f.jpg"} -{"rects": [{"solidity": 0.9976066921446318, "top": 430, "right": 3390, "bottom": 2260, "left": 670}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/701699f.jpg"} -{"rects": [{"solidity": 0.9976067630284406, "top": 395, "right": 3170, "bottom": 2035, "left": 735}, {"solidity": 0.9983395175659883, "top": 2130, "right": 3155, "bottom": 3760, "left": 735}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702412f.jpg"} -{"rects": [{"solidity": 0.9976067650515867, "top": 785, "right": 1995, "bottom": 3190, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714784f.jpg"} -{"rects": [{"solidity": 0.9976069573338002, "top": 4030, "right": 3210, "bottom": 5635, "left": 790}, {"solidity": 0.9978895014969815, "top": 385, "right": 3195, "bottom": 2000, "left": 805}, {"solidity": 0.9963235294117647, "top": 2200, "right": 3190, "bottom": 3805, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730946f.jpg"} -{"rects": [{"solidity": 0.9976070113716557, "top": 320, "right": 5055, "bottom": 3640, "left": 1015}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731002f.jpg"} -{"rects": [{"solidity": 0.9976071464738123, "top": 650, "right": 5090, "bottom": 3390, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702767f.jpg"} -{"rects": [{"solidity": 0.9976075106961156, "top": 2265, "right": 3175, "bottom": 3895, "left": 745}, {"solidity": 0.9961793711641719, "top": 4155, "right": 3160, "bottom": 5780, "left": 730}, {"solidity": 0.9956199765194618, "top": 400, "right": 3195, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715165f.jpg"} -{"rects": [{"solidity": 0.9976078168197771, "top": 855, "right": 5750, "bottom": 3270, "left": 4125}, {"solidity": 0.9994353673016365, "top": 855, "right": 2040, "bottom": 3260, "left": 420}, {"solidity": 0.9971251572935824, "top": 855, "right": 3885, "bottom": 3265, "left": 2265}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710719f.jpg"} -{"rects": [{"solidity": 0.9976079825041007, "top": 410, "right": 3290, "bottom": 2015, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725333f.jpg"} -{"rects": [{"solidity": 0.9976081951659667, "top": 755, "right": 1995, "bottom": 3140, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718842f.jpg"} -{"rects": [{"solidity": 0.9976083154038118, "top": 410, "right": 3185, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700731f.jpg"} -{"rects": [{"solidity": 0.9976084959195806, "top": 440, "right": 3035, "bottom": 2015, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729262f.jpg"} -{"rects": [{"solidity": 0.9976085739942996, "top": 745, "right": 2030, "bottom": 3160, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712740f.jpg"} -{"rects": [{"solidity": 0.997608807558825, "top": 865, "right": 1990, "bottom": 3255, "left": 405}, {"solidity": 0.9957301338157439, "top": 875, "right": 3830, "bottom": 3265, "left": 2240}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724558f.jpg"} -{"rects": [{"solidity": 0.9976089215300321, "top": 440, "right": 3030, "bottom": 2055, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721459f.jpg"} -{"rects": [{"solidity": 0.9976090915565322, "top": 435, "right": 3165, "bottom": 2010, "left": 805}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/710075f.jpg"} -{"rects": [{"solidity": 0.9976092333058533, "top": 440, "right": 3380, "bottom": 2045, "left": 1000}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707682f.jpg"} -{"rects": [{"solidity": 0.9976094242099538, "top": 740, "right": 2015, "bottom": 3145, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702949f.jpg"} -{"rects": [{"solidity": 0.9976095194551896, "top": 335, "right": 3915, "bottom": 2765, "left": 890}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507554.jpg"} -{"rects": [{"solidity": 0.9976095811177322, "top": 1210, "right": 3615, "bottom": 5235, "left": 385}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708648f.jpg"} -{"rects": [{"solidity": 0.9976096911435159, "top": 400, "right": 3065, "bottom": 2005, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728922f.jpg"} -{"rects": [{"solidity": 0.9976100114942866, "top": 955, "right": 3500, "bottom": 4970, "left": 255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724322f.jpg"} -{"rects": [{"solidity": 0.9976100929071648, "top": 450, "right": 5135, "bottom": 3745, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732761f.jpg"} -{"rects": [{"solidity": 0.9976101791241275, "top": 685, "right": 3395, "bottom": 2700, "left": 330}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719513f.jpg"} -{"rects": [{"solidity": 0.9976101929299304, "top": 525, "right": 5150, "bottom": 3785, "left": 1130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712444f.jpg"} -{"rects": [{"solidity": 0.997610359012141, "top": 535, "right": 5030, "bottom": 3785, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707854f.jpg"} -{"rects": [{"solidity": 0.997610386594946, "top": 805, "right": 3875, "bottom": 3220, "left": 2260}, {"solidity": 0.9966246828561073, "top": 805, "right": 5705, "bottom": 3225, "left": 4095}, {"solidity": 0.9963501636748823, "top": 815, "right": 2050, "bottom": 3225, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733969f.jpg"} -{"rects": [{"solidity": 0.9976104629687137, "top": 795, "right": 2020, "bottom": 3195, "left": 415}, {"solidity": 0.9983698260052192, "top": 785, "right": 5650, "bottom": 3185, "left": 4055}, {"solidity": 0.9949609550676642, "top": 1330, "right": 3520, "bottom": 2585, "left": 2530}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721639f.jpg"} -{"rects": [{"solidity": 0.9976106438450058, "top": 820, "right": 2035, "bottom": 3240, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732826f.jpg"} -{"rects": [{"solidity": 0.997610741024963, "top": 865, "right": 2065, "bottom": 3285, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728927f.jpg"} -{"rects": [{"solidity": 0.9976109070404907, "top": 370, "right": 3210, "bottom": 1980, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719381f.jpg"} -{"rects": [{"solidity": 0.9976112175669377, "top": 4095, "right": 3095, "bottom": 5700, "left": 670}, {"solidity": 0.9964813557129459, "top": 400, "right": 3115, "bottom": 2025, "left": 695}, {"solidity": 0.9985209889545504, "top": 2235, "right": 3100, "bottom": 3845, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726638f.jpg"} -{"rects": [{"solidity": 0.9976113558492413, "top": 455, "right": 3170, "bottom": 2060, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702448f.jpg"} -{"rects": [{"solidity": 0.9976113832516912, "top": 385, "right": 5430, "bottom": 3695, "left": 1320}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/734010f.jpg"} -{"rects": [{"solidity": 0.9976114568325107, "top": 805, "right": 4290, "bottom": 3525, "left": 2480}, {"solidity": 0.9967400475569533, "top": 810, "right": 2240, "bottom": 3525, "left": 420}], "shape": {"h": 4440, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/708885f.jpg"} -{"rects": [{"solidity": 0.9976116755612952, "top": 465, "right": 3005, "bottom": 2080, "left": 1000}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702894f.jpg"} -{"rects": [{"solidity": 0.9976117209387774, "top": 750, "right": 2015, "bottom": 3155, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724309f.jpg"} -{"rects": [{"solidity": 0.9976117662799365, "top": 1055, "right": 3530, "bottom": 5095, "left": 260}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709475f.jpg"} -{"rects": [{"solidity": 0.9976118432201522, "top": 995, "right": 3435, "bottom": 5355, "left": 490}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724814f.jpg"} -{"rects": [{"solidity": 0.9976119246312917, "top": 790, "right": 1980, "bottom": 3190, "left": 380}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730558f.jpg"} -{"rects": [{"solidity": 0.997612116801601, "top": 735, "right": 2020, "bottom": 3155, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707402f.jpg"} -{"rects": [{"solidity": 0.997612305858112, "top": 340, "right": 3175, "bottom": 1960, "left": 775}, {"solidity": 0.996779982935544, "top": 2185, "right": 3160, "bottom": 3795, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732028f.jpg"} -{"rects": [{"solidity": 0.9976123121642314, "top": 320, "right": 3150, "bottom": 1940, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733856f.jpg"} -{"rects": [{"solidity": 0.9976123192725468, "top": 915, "right": 3895, "bottom": 3335, "left": 2280}, {"solidity": 0.9997575412745571, "top": 920, "right": 2015, "bottom": 3335, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729598f.jpg"} -{"rects": [{"solidity": 0.9976123489527752, "top": 625, "right": 3350, "bottom": 5250, "left": 330}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717172f.jpg"} -{"rects": [{"solidity": 0.9976124376953274, "top": 885, "right": 3515, "bottom": 4955, "left": 290}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715652f.jpg"} -{"rects": [{"solidity": 0.997612801329058, "top": 375, "right": 5250, "bottom": 3620, "left": 1175}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732658f.jpg"} -{"rects": [{"solidity": 0.9976128189910979, "top": 465, "right": 5085, "bottom": 3720, "left": 990}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720325f.jpg"} -{"rects": [{"solidity": 0.9976130846065181, "top": 770, "right": 2065, "bottom": 3180, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709602f.jpg"} -{"rects": [{"solidity": 0.9976131773592823, "top": 530, "right": 2775, "bottom": 3570, "left": 715}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715187f.jpg"} -{"rects": [{"solidity": 0.9976132878659815, "top": 795, "right": 2035, "bottom": 3200, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722011f.jpg"} -{"rects": [{"solidity": 0.9976133421313608, "top": 405, "right": 2680, "bottom": 3620, "left": 640}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732992f.jpg"} -{"rects": [{"solidity": 0.9976135308254264, "top": 655, "right": 3315, "bottom": 2595, "left": 605}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/714483f.jpg"} -{"rects": [{"solidity": 0.9976137494876149, "top": 665, "right": 5350, "bottom": 2090, "left": 3535}, {"solidity": 0.9948232553778431, "top": 2145, "right": 2595, "bottom": 3550, "left": 770}, {"solidity": 0.9960420846684435, "top": 675, "right": 2590, "bottom": 2075, "left": 780}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705076f.jpg"} -{"rects": [{"solidity": 0.997613802110351, "top": 670, "right": 2835, "bottom": 3710, "left": 790}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715234f.jpg"} -{"rects": [{"solidity": 0.9976138515090552, "top": 590, "right": 2350, "bottom": 3345, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703022f.jpg"} -{"rects": [{"solidity": 0.9976138583490741, "top": 2280, "right": 3030, "bottom": 3895, "left": 615}, {"solidity": 0.9966310970172725, "top": 400, "right": 3025, "bottom": 2020, "left": 615}, {"solidity": 0.9966912327437691, "top": 4175, "right": 3030, "bottom": 5780, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729091f.jpg"} -{"rects": [{"solidity": 0.9976139572079056, "top": 4070, "right": 3210, "bottom": 5675, "left": 810}, {"solidity": 0.9959013819614532, "top": 430, "right": 3205, "bottom": 2020, "left": 810}, {"solidity": 0.9983287279022539, "top": 2255, "right": 3205, "bottom": 3835, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721913f.jpg"} -{"rects": [{"solidity": 0.9976140170737647, "top": 795, "right": 5370, "bottom": 3155, "left": 3745}, {"solidity": 0.9959878492990497, "top": 800, "right": 1880, "bottom": 3200, "left": 315}, {"solidity": 0.9948364378819039, "top": 1080, "right": 3525, "bottom": 2885, "left": 2105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720461f.jpg"} -{"rects": [{"solidity": 0.9976140242708003, "top": 775, "right": 3970, "bottom": 3205, "left": 2355}, {"solidity": 0.9965957145295676, "top": 765, "right": 5825, "bottom": 3195, "left": 4210}, {"solidity": 0.9973391873367302, "top": 795, "right": 2075, "bottom": 3215, "left": 465}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730647f.jpg"} -{"rects": [{"solidity": 0.9976141228534321, "top": 465, "right": 5020, "bottom": 3715, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730285f.jpg"} -{"rects": [{"solidity": 0.9976143352114838, "top": 455, "right": 5115, "bottom": 3740, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726172f.jpg"} -{"rects": [{"solidity": 0.9976144135593655, "top": 4125, "right": 3205, "bottom": 5745, "left": 775}, {"solidity": 0.9967278058821816, "top": 2280, "right": 3200, "bottom": 3890, "left": 785}, {"solidity": 0.9961382921222461, "top": 405, "right": 3185, "bottom": 2015, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734493f.jpg"} -{"rects": [{"solidity": 0.9976144402560571, "top": 455, "right": 5105, "bottom": 3680, "left": 1040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708452f.jpg"} -{"rects": [{"solidity": 0.9976145291432211, "top": 555, "right": 5550, "bottom": 2150, "left": 3170}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705037f.jpg"} -{"rects": [{"solidity": 0.9976148316507215, "top": 830, "right": 2005, "bottom": 3220, "left": 410}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719320f.jpg"} -{"rects": [{"solidity": 0.9976148448802171, "top": 440, "right": 5155, "bottom": 3400, "left": 1395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726843f.jpg"} -{"rects": [{"solidity": 0.9976148914302494, "top": 440, "right": 3160, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728263f.jpg"} -{"rects": [{"solidity": 0.9976149378654432, "top": 485, "right": 5075, "bottom": 3695, "left": 1090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732251f.jpg"} -{"rects": [{"solidity": 0.9976149783223738, "top": 450, "right": 3150, "bottom": 2070, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701282f.jpg"} -{"rects": [{"solidity": 0.9976149937841198, "top": 805, "right": 2005, "bottom": 3180, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717440f.jpg"} -{"rects": [{"solidity": 0.9976153248880522, "top": 620, "right": 5085, "bottom": 3540, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708070f.jpg"} -{"rects": [{"solidity": 0.9976154667638648, "top": 310, "right": 3930, "bottom": 2770, "left": 920}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509859.jpg"} -{"rects": [{"solidity": 0.997615566145247, "top": 1115, "right": 2570, "bottom": 2690, "left": 290}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734260f.jpg"} -{"rects": [{"solidity": 0.9976156520188965, "top": 795, "right": 2020, "bottom": 3230, "left": 395}, {"solidity": 0.9959412054619778, "top": 805, "right": 3855, "bottom": 3225, "left": 2235}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706617f.jpg"} -{"rects": [{"solidity": 0.9976156588276771, "top": 920, "right": 2300, "bottom": 3610, "left": 510}], "shape": {"h": 4410, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/1552839.jpg"} -{"rects": [{"solidity": 0.997615702852135, "top": 800, "right": 2055, "bottom": 3220, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706864f.jpg"} -{"rects": [{"solidity": 0.9976158128000844, "top": 435, "right": 3085, "bottom": 2025, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728335f.jpg"} -{"rects": [{"solidity": 0.9976161220545509, "top": 860, "right": 2080, "bottom": 3280, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719344f.jpg"} -{"rects": [{"solidity": 0.9976161394172482, "top": 2305, "right": 3220, "bottom": 4360, "left": 510}, {"solidity": 0.9979198406187741, "top": 4370, "right": 3140, "bottom": 5970, "left": 725}, {"solidity": 0.9806607521621213, "top": 465, "right": 3190, "bottom": 2090, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709678f.jpg"} -{"rects": [{"solidity": 0.9976165262709994, "top": 2265, "right": 3060, "bottom": 3885, "left": 630}, {"solidity": 0.9969534901638503, "top": 4100, "right": 3060, "bottom": 5720, "left": 635}, {"solidity": 0.9970716615969335, "top": 430, "right": 3065, "bottom": 2040, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734361f.jpg"} -{"rects": [{"solidity": 0.9976166928776407, "top": 815, "right": 2045, "bottom": 3230, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723404f.jpg"} -{"rects": [{"solidity": 0.9976168668224968, "top": 600, "right": 5965, "bottom": 3905, "left": 1045}], "shape": {"h": 4425, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/708356f.jpg"} -{"rects": [{"solidity": 0.9976170041222903, "top": 3955, "right": 3195, "bottom": 5580, "left": 810}, {"solidity": 0.9957611859428636, "top": 2110, "right": 3200, "bottom": 3710, "left": 810}, {"solidity": 0.9969093200504111, "top": 295, "right": 3205, "bottom": 1880, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724690f.jpg"} -{"rects": [{"solidity": 0.9976174191704638, "top": 860, "right": 2105, "bottom": 3280, "left": 480}, {"solidity": 0.9977996161032351, "top": 1045, "right": 3965, "bottom": 2970, "left": 2425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720078f.jpg"} -{"rects": [{"solidity": 0.9976174279183284, "top": 840, "right": 2030, "bottom": 3255, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707289f.jpg"} -{"rects": [{"solidity": 0.9976174341472901, "top": 385, "right": 5800, "bottom": 4100, "left": 1235}], "shape": {"h": 4425, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/708840f.jpg"} -{"rects": [{"solidity": 0.997617599968522, "top": 390, "right": 5125, "bottom": 3720, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720642f.jpg"} -{"rects": [{"solidity": 0.997617635332899, "top": 390, "right": 3330, "bottom": 2005, "left": 920}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725953f.jpg"} -{"rects": [{"solidity": 0.9976177547582251, "top": 665, "right": 4755, "bottom": 3310, "left": 1335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702444f.jpg"} -{"rects": [{"solidity": 0.9976178162777167, "top": 2275, "right": 3085, "bottom": 3885, "left": 665}, {"solidity": 0.9958779937846866, "top": 4105, "right": 3085, "bottom": 5725, "left": 660}, {"solidity": 0.996459970434918, "top": 405, "right": 3090, "bottom": 2015, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734821f.jpg"} -{"rects": [{"solidity": 0.9976182450695447, "top": 2155, "right": 3170, "bottom": 3785, "left": 740}, {"solidity": 0.997689959305489, "top": 4025, "right": 3150, "bottom": 5645, "left": 765}, {"solidity": 0.997011775380185, "top": 305, "right": 3150, "bottom": 1910, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719542f.jpg"} -{"rects": [{"solidity": 0.997618384414538, "top": 510, "right": 4960, "bottom": 3755, "left": 930}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734124f.jpg"} -{"rects": [{"solidity": 0.9976185842780385, "top": 395, "right": 3150, "bottom": 1985, "left": 750}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730305f.jpg"} -{"rects": [{"solidity": 0.9976186508038255, "top": 440, "right": 3195, "bottom": 2065, "left": 770}, {"solidity": 0.9972238753156515, "top": 2245, "right": 3205, "bottom": 3860, "left": 780}, {"solidity": 0.9967345002485679, "top": 4060, "right": 3200, "bottom": 5670, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705844f.jpg"} -{"rects": [{"solidity": 0.9976187954589711, "top": 380, "right": 3170, "bottom": 1940, "left": 810}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724691f.jpg"} -{"rects": [{"solidity": 0.9976188036440111, "top": 615, "right": 2770, "bottom": 2035, "left": 950}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703308f.jpg"} -{"rects": [{"solidity": 0.9976188250574385, "top": 695, "right": 3270, "bottom": 2610, "left": 590}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714315f.jpg"} -{"rects": [{"solidity": 0.9976189939927862, "top": 420, "right": 3045, "bottom": 2040, "left": 625}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728808f.jpg"} -{"rects": [{"solidity": 0.9976193714077596, "top": 415, "right": 2690, "bottom": 3785, "left": 305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723072f.jpg"} -{"rects": [{"solidity": 0.9976195157709467, "top": 435, "right": 2545, "bottom": 3650, "left": 495}, {"solidity": 0.9962933570395693, "top": 445, "right": 4945, "bottom": 3675, "left": 2880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721599f.jpg"} -{"rects": [{"solidity": 0.997620362158949, "top": 335, "right": 5155, "bottom": 3610, "left": 1140}], "shape": {"h": 3920, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732614f.jpg"} -{"rects": [{"solidity": 0.9976204931957144, "top": 695, "right": 2630, "bottom": 3720, "left": 590}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715439f.jpg"} -{"rects": [{"solidity": 0.997620651830731, "top": 375, "right": 3085, "bottom": 1980, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733373f.jpg"} -{"rects": [{"solidity": 0.9976206891023072, "top": 2265, "right": 3230, "bottom": 3885, "left": 805}, {"solidity": 0.9970560857535808, "top": 380, "right": 3215, "bottom": 1995, "left": 795}, {"solidity": 0.9958725780738046, "top": 4150, "right": 3235, "bottom": 5755, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719599f.jpg"} -{"rects": [{"solidity": 0.9976207479977185, "top": 925, "right": 3495, "bottom": 5040, "left": 285}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721767f.jpg"} -{"rects": [{"solidity": 0.9976207908056505, "top": 475, "right": 5165, "bottom": 3705, "left": 1125}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725657f.jpg"} -{"rects": [{"solidity": 0.9976208077632042, "top": 4070, "right": 3175, "bottom": 5685, "left": 760}, {"solidity": 0.9965431343982517, "top": 430, "right": 3180, "bottom": 2040, "left": 770}, {"solidity": 0.9980357865337179, "top": 2255, "right": 3170, "bottom": 3860, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715103f.jpg"} -{"rects": [{"solidity": 0.9976209050205901, "top": 310, "right": 5090, "bottom": 3590, "left": 1040}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706478f.jpg"} -{"rects": [{"solidity": 0.9976209859531734, "top": 390, "right": 4870, "bottom": 3650, "left": 855}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701667f.jpg"} -{"rects": [{"solidity": 0.9976210035159202, "top": 770, "right": 2040, "bottom": 3170, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700371f.jpg"} -{"rects": [{"solidity": 0.9976210589686076, "top": 2265, "right": 3125, "bottom": 3885, "left": 725}, {"solidity": 0.9944175029100251, "top": 430, "right": 3110, "bottom": 2005, "left": 740}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/732804f.jpg"} -{"rects": [{"solidity": 0.9976211381781798, "top": 775, "right": 2000, "bottom": 3140, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714167f.jpg"} -{"rects": [{"solidity": 0.9976213489010458, "top": 360, "right": 5045, "bottom": 3610, "left": 1015}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733507f.jpg"} -{"rects": [{"solidity": 0.9976214628003778, "top": 305, "right": 3175, "bottom": 1935, "left": 740}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704607f.jpg"} -{"rects": [{"solidity": 0.9976215544805702, "top": 1095, "right": 3515, "bottom": 5100, "left": 285}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708465f.jpg"} -{"rects": [{"solidity": 0.997621805662761, "top": 790, "right": 5275, "bottom": 3580, "left": 1235}], "shape": {"h": 3920, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718167f.jpg"} -{"rects": [{"solidity": 0.9976219206921784, "top": 2225, "right": 3215, "bottom": 3840, "left": 785}, {"solidity": 0.9990533169327469, "top": 410, "right": 3215, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706523f.jpg"} -{"rects": [{"solidity": 0.9976219504669014, "top": 655, "right": 4760, "bottom": 3300, "left": 1285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732526f.jpg"} -{"rects": [{"solidity": 0.9976219817460623, "top": 415, "right": 3070, "bottom": 2030, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705099f.jpg"} -{"rects": [{"solidity": 0.997622027534418, "top": 445, "right": 3900, "bottom": 2795, "left": 990}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507592.jpg"} -{"rects": [{"solidity": 0.9976220500810665, "top": 410, "right": 3085, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729499f.jpg"} -{"rects": [{"solidity": 0.9976227653994755, "top": 720, "right": 2715, "bottom": 2125, "left": 925}, {"solidity": 0.9975482901089144, "top": 2195, "right": 2710, "bottom": 3595, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731354f.jpg"} -{"rects": [{"solidity": 0.9976228059930907, "top": 440, "right": 2720, "bottom": 3705, "left": 660}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733076f.jpg"} -{"rects": [{"solidity": 0.9976228363589127, "top": 430, "right": 3270, "bottom": 2040, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725890f.jpg"} -{"rects": [{"solidity": 0.9976229850337275, "top": 2265, "right": 3105, "bottom": 3895, "left": 680}, {"solidity": 0.9980679696739658, "top": 420, "right": 3100, "bottom": 2030, "left": 700}, {"solidity": 0.9978465337664157, "top": 4155, "right": 3090, "bottom": 5760, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720541f.jpg"} -{"rects": [{"solidity": 0.9976230396810968, "top": 555, "right": 5070, "bottom": 3800, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713042f.jpg"} -{"rects": [{"solidity": 0.9976232992927091, "top": 745, "right": 3905, "bottom": 3180, "left": 2275}, {"solidity": 0.9988890809786333, "top": 765, "right": 2020, "bottom": 3190, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715338f.jpg"} -{"rects": [{"solidity": 0.9976233605850885, "top": 405, "right": 5035, "bottom": 3705, "left": 995}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726161f.jpg"} -{"rects": [{"solidity": 0.99762337333108, "top": 580, "right": 4145, "bottom": 3625, "left": 2185}, {"solidity": 0.9971671854128145, "top": 795, "right": 2080, "bottom": 3185, "left": 480}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715313f.jpg"} -{"rects": [{"solidity": 0.997623499953808, "top": 925, "right": 2065, "bottom": 3350, "left": 435}, {"solidity": 0.9971387189073584, "top": 930, "right": 3970, "bottom": 3340, "left": 2350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724413f.jpg"} -{"rects": [{"solidity": 0.9976236639323888, "top": 770, "right": 2710, "bottom": 2180, "left": 910}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702849f.jpg"} -{"rects": [{"solidity": 0.9976240235464116, "top": 470, "right": 5085, "bottom": 3695, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722460f.jpg"} -{"rects": [{"solidity": 0.9976240891513326, "top": 665, "right": 2730, "bottom": 2080, "left": 930}, {"solidity": 0.9946230135022105, "top": 2100, "right": 2720, "bottom": 3505, "left": 905}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725580f.jpg"} -{"rects": [{"solidity": 0.9976244917862108, "top": 405, "right": 3145, "bottom": 2005, "left": 755}, {"solidity": 0.997685652702224, "top": 4095, "right": 3125, "bottom": 5695, "left": 750}, {"solidity": 0.9944578504945507, "top": 2235, "right": 3125, "bottom": 3835, "left": 745}], "shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728198f.jpg"} -{"rects": [{"solidity": 0.9976246133860022, "top": 330, "right": 5940, "bottom": 3585, "left": 3885}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706678f.jpg"} -{"rects": [{"solidity": 0.9976246572167935, "top": 4110, "right": 3190, "bottom": 5725, "left": 765}, {"solidity": 0.9971118447149381, "top": 440, "right": 3175, "bottom": 2040, "left": 775}, {"solidity": 0.9964906831271912, "top": 2270, "right": 3170, "bottom": 3865, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734473f.jpg"} -{"rects": [{"solidity": 0.9976246574025099, "top": 455, "right": 3005, "bottom": 2085, "left": 590}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720240f.jpg"} -{"rects": [{"solidity": 0.997624722787567, "top": 500, "right": 3145, "bottom": 3440, "left": 565}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722358f.jpg"} -{"rects": [{"solidity": 0.9976247572625735, "top": 760, "right": 2040, "bottom": 3165, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712554f.jpg"} -{"rects": [{"solidity": 0.9976248565573482, "top": 500, "right": 3280, "bottom": 3935, "left": 675}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717389f.jpg"} -{"rects": [{"solidity": 0.9976249177916099, "top": 455, "right": 5005, "bottom": 3545, "left": 1080}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731797f.jpg"} -{"rects": [{"solidity": 0.9976249776684847, "top": 470, "right": 5135, "bottom": 3690, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734669f.jpg"} -{"rects": [{"solidity": 0.9976251197998733, "top": 455, "right": 3230, "bottom": 2065, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725991f.jpg"} -{"rects": [{"solidity": 0.9976251486737467, "top": 430, "right": 4990, "bottom": 3660, "left": 990}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705221f.jpg"} -{"rects": [{"solidity": 0.9976251514414767, "top": 675, "right": 4995, "bottom": 3780, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702453f.jpg"} -{"rects": [{"solidity": 0.9976256700545596, "top": 1775, "right": 5940, "bottom": 3740, "left": 3125}, {"solidity": 0.9968684131285758, "top": 395, "right": 3010, "bottom": 2330, "left": 200}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728191f.jpg"} -{"rects": [{"solidity": 0.9976258423463392, "top": 735, "right": 2765, "bottom": 2160, "left": 915}, {"solidity": 0.9951435073904217, "top": 745, "right": 5185, "bottom": 2165, "left": 3370}, {"solidity": 0.9953836276737763, "top": 2205, "right": 5180, "bottom": 3585, "left": 3385}, {"solidity": 0.9967177379953146, "top": 2220, "right": 2730, "bottom": 3335, "left": 925}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725459f.jpg"} -{"rects": [{"solidity": 0.9976258525004158, "top": 585, "right": 5815, "bottom": 2195, "left": 3745}, {"solidity": 0.9963803006139406, "top": 675, "right": 2840, "bottom": 2285, "left": 785}, {"solidity": 0.9958255077739269, "top": 2315, "right": 2830, "bottom": 3910, "left": 785}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706441f.jpg"} -{"rects": [{"solidity": 0.9976258837533274, "top": 2280, "right": 3210, "bottom": 3885, "left": 810}, {"solidity": 0.9946256449556377, "top": 425, "right": 3200, "bottom": 2025, "left": 810}, {"solidity": 0.9943239617272848, "top": 4060, "right": 2875, "bottom": 5485, "left": 1050}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719935f.jpg"} -{"rects": [{"solidity": 0.9976260747428484, "top": 385, "right": 5065, "bottom": 3635, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711899f.jpg"} -{"rects": [{"solidity": 0.9976262436278261, "top": 425, "right": 3155, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700498f.jpg"} -{"rects": [{"solidity": 0.9976262520006124, "top": 1120, "right": 3415, "bottom": 4930, "left": 415}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/712671f.jpg"} -{"rects": [{"solidity": 0.9976262606392048, "top": 400, "right": 3200, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720576f.jpg"} -{"rects": [{"solidity": 0.9976263360214489, "top": 470, "right": 5115, "bottom": 3695, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701867f.jpg"} -{"rects": [{"solidity": 0.9976264318172884, "top": 1195, "right": 3455, "bottom": 4955, "left": 280}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717251f.jpg"} -{"rects": [{"solidity": 0.9976269041269267, "top": 445, "right": 3180, "bottom": 2055, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713407f.jpg"} -{"rects": [{"solidity": 0.997627147766323, "top": 375, "right": 4095, "bottom": 2815, "left": 1090}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509007.jpg"} -{"rects": [{"solidity": 0.9976271863552745, "top": 335, "right": 2685, "bottom": 3505, "left": 215}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508273.jpg"} -{"rects": [{"solidity": 0.9976272878000096, "top": 785, "right": 3835, "bottom": 3200, "left": 2215}, {"solidity": 0.99993481116424, "top": 790, "right": 2005, "bottom": 3200, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719006f.jpg"} -{"rects": [{"solidity": 0.9976275285550926, "top": 810, "right": 3805, "bottom": 3205, "left": 2205}, {"solidity": 0.9987092653019561, "top": 805, "right": 1985, "bottom": 3200, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722619f.jpg"} -{"rects": [{"solidity": 0.9976278058771894, "top": 570, "right": 2600, "bottom": 3650, "left": 625}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713839f.jpg"} -{"rects": [{"solidity": 0.9976278347629107, "top": 890, "right": 3375, "bottom": 2710, "left": 2015}, {"solidity": 0.999979362401391, "top": 3225, "right": 1775, "bottom": 5045, "left": 435}, {"solidity": 0.9981038529087207, "top": 890, "right": 1795, "bottom": 2700, "left": 450}, {"solidity": 0.9970774603705718, "top": 3255, "right": 3365, "bottom": 5065, "left": 2020}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707062f.jpg"} -{"rects": [{"solidity": 0.9976279662775872, "top": 650, "right": 2720, "bottom": 2045, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705332f.jpg"} -{"rects": [{"solidity": 0.9976281464271731, "top": 750, "right": 2010, "bottom": 3165, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718789f.jpg"} -{"rects": [{"solidity": 0.9976281965298763, "top": 485, "right": 3200, "bottom": 3665, "left": 695}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714169f.jpg"} -{"rects": [{"solidity": 0.9976283580841635, "top": 905, "right": 2705, "bottom": 4080, "left": 235}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508251.jpg"} -{"rects": [{"solidity": 0.9976286753320297, "top": 2385, "right": 3205, "bottom": 4090, "left": 690}, {"solidity": 0.9976627340281798, "top": 435, "right": 3160, "bottom": 2155, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717208f.jpg"} -{"rects": [{"solidity": 0.9976286831352337, "top": 760, "right": 3170, "bottom": 2660, "left": 460}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712333f.jpg"} -{"rects": [{"solidity": 0.9976287075534462, "top": 380, "right": 3850, "bottom": 2850, "left": 805}], "shape": {"h": 3020, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715788f.jpg"} -{"rects": [{"solidity": 0.9976287335633004, "top": 2240, "right": 2920, "bottom": 3765, "left": 995}, {"solidity": 0.9951362875243833, "top": 445, "right": 2910, "bottom": 1990, "left": 1005}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720204f.jpg"} -{"rects": [{"solidity": 0.9976291165731029, "top": 1020, "right": 3545, "bottom": 5070, "left": 320}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709181f.jpg"} -{"rects": [{"solidity": 0.9976291251114895, "top": 830, "right": 2075, "bottom": 3240, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717391f.jpg"} -{"rects": [{"solidity": 0.9976292513905353, "top": 405, "right": 3090, "bottom": 2010, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729087f.jpg"} -{"rects": [{"solidity": 0.9976293403988287, "top": 435, "right": 3155, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732136f.jpg"} -{"rects": [{"solidity": 0.9976293706293706, "top": 1635, "right": 2160, "bottom": 2840, "left": 660}, {"solidity": 0.9954805580041697, "top": 340, "right": 2155, "bottom": 1550, "left": 660}, {"solidity": 0.9947538139772385, "top": 345, "right": 3875, "bottom": 1555, "left": 2375}, {"solidity": 0.9932109911952854, "top": 1630, "right": 3885, "bottom": 2835, "left": 2385}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716288f.jpg"} -{"rects": [{"solidity": 0.9976297141303034, "top": 490, "right": 5045, "bottom": 3790, "left": 1005}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712220f.jpg"} -{"rects": [{"solidity": 0.9976298047186367, "top": 700, "right": 2675, "bottom": 3870, "left": 220}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508249.jpg"} -{"rects": [{"solidity": 0.9976298503419787, "top": 1005, "right": 3595, "bottom": 5075, "left": 290}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725376f.jpg"} -{"rects": [{"solidity": 0.9976298875886616, "top": 675, "right": 4955, "bottom": 3715, "left": 895}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727283f.jpg"} -{"rects": [{"solidity": 0.9976299449598788, "top": 415, "right": 3200, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725868f.jpg"} -{"rects": [{"solidity": 0.9976299888413315, "top": 385, "right": 3190, "bottom": 2000, "left": 765}, {"solidity": 0.9966299787325636, "top": 2245, "right": 3210, "bottom": 3865, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724327f.jpg"} -{"rects": [{"solidity": 0.9976300054125552, "top": 2200, "right": 3070, "bottom": 3825, "left": 645}, {"solidity": 0.9965611684963219, "top": 4065, "right": 3070, "bottom": 5685, "left": 640}, {"solidity": 0.9959707399747401, "top": 375, "right": 3075, "bottom": 1985, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729187f.jpg"} -{"rects": [{"solidity": 0.9976302690983124, "top": 505, "right": 3170, "bottom": 2090, "left": 765}, {"solidity": 0.9946829268292683, "top": 2395, "right": 2940, "bottom": 3815, "left": 1090}, {"solidity": 0.993733598881141, "top": 4160, "right": 2890, "bottom": 5580, "left": 1090}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726418f.jpg"} -{"rects": [{"solidity": 0.9976302955250806, "top": 380, "right": 5785, "bottom": 3620, "left": 3740}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724983f.jpg"} -{"rects": [{"solidity": 0.9976303090804132, "top": 2140, "right": 3170, "bottom": 3775, "left": 750}, {"solidity": 0.995980104265035, "top": 290, "right": 3170, "bottom": 1915, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733535f.jpg"} -{"rects": [{"solidity": 0.9976303904489048, "top": 410, "right": 1290, "bottom": 1930, "left": 285}], "shape": {"h": 2545, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/727051f.jpg"} -{"rects": [{"solidity": 0.9976304532792521, "top": 730, "right": 4925, "bottom": 3650, "left": 1225}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709063f.jpg"} -{"rects": [{"solidity": 0.9976304711329205, "top": 970, "right": 3310, "bottom": 4615, "left": 440}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731903f.jpg"} -{"rects": [{"solidity": 0.9976306442996452, "top": 525, "right": 5070, "bottom": 3795, "left": 985}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707434f.jpg"} -{"rects": [{"solidity": 0.9976306720275704, "top": 750, "right": 2025, "bottom": 3155, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734661f.jpg"} -{"rects": [{"solidity": 0.9976309338754036, "top": 385, "right": 5270, "bottom": 3690, "left": 1170}], "shape": {"h": 4030, "w": 6240}, "file": "/usr/local/google/home/danvk/milstein/702322f.jpg"} -{"rects": [{"solidity": 0.9976310334616524, "top": 400, "right": 3305, "bottom": 2020, "left": 890}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726166f.jpg"} -{"rects": [{"solidity": 0.9976312307716831, "top": 790, "right": 3895, "bottom": 3215, "left": 2265}, {"solidity": 0.9988192786631396, "top": 790, "right": 2060, "bottom": 3205, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731832f.jpg"} -{"rects": [{"solidity": 0.9976313249958573, "top": 645, "right": 2710, "bottom": 2070, "left": 895}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703797f.jpg"} -{"rects": [{"solidity": 0.99763217546826, "top": 475, "right": 3190, "bottom": 2050, "left": 815}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/701159f.jpg"} -{"rects": [{"solidity": 0.9976323660668661, "top": 400, "right": 3135, "bottom": 1965, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701312f.jpg"} -{"rects": [{"solidity": 0.9976324415198133, "top": 820, "right": 2620, "bottom": 2230, "left": 825}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725278f.jpg"} -{"rects": [{"solidity": 0.9976329870540861, "top": 2225, "right": 3180, "bottom": 3840, "left": 765}, {"solidity": 0.9995547538959034, "top": 440, "right": 3175, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717989f.jpg"} -{"rects": [{"solidity": 0.9976330269878199, "top": 455, "right": 5160, "bottom": 3740, "left": 1065}], "shape": {"h": 4030, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/729586f.jpg"} -{"rects": [{"solidity": 0.9976330936112673, "top": 725, "right": 3165, "bottom": 2655, "left": 440}, {"solidity": 0.9597548454280472, "top": 3230, "right": 3155, "bottom": 5155, "left": 455}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715028f.jpg"} -{"rects": [{"solidity": 0.9976332092965716, "top": 840, "right": 3925, "bottom": 3240, "left": 2315}, {"solidity": 0.9963296017617912, "top": 835, "right": 2085, "bottom": 3235, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712433f.jpg"} -{"rects": [{"solidity": 0.9976333047636408, "top": 1070, "right": 3560, "bottom": 5075, "left": 325}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716626f.jpg"} -{"rects": [{"solidity": 0.9976333598466574, "top": 2400, "right": 3135, "bottom": 4015, "left": 735}, {"solidity": 0.9975016432254963, "top": 4220, "right": 3125, "bottom": 5825, "left": 725}, {"solidity": 0.9981726335440063, "top": 640, "right": 3135, "bottom": 2235, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710460f.jpg"} -{"rects": [{"solidity": 0.9976334637455215, "top": 685, "right": 2295, "bottom": 3075, "left": 695}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711590f.jpg"} -{"rects": [{"solidity": 0.997633495343698, "top": 2330, "right": 3090, "bottom": 3940, "left": 695}, {"solidity": 0.9986284644366393, "top": 420, "right": 3085, "bottom": 2025, "left": 690}, {"solidity": 0.9955882929634907, "top": 4145, "right": 3065, "bottom": 5770, "left": 655}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717851f.jpg"} -{"rects": [{"solidity": 0.9976335077178079, "top": 365, "right": 3145, "bottom": 1980, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709290f.jpg"} -{"rects": [{"solidity": 0.9976335861093626, "top": 570, "right": 5760, "bottom": 4180, "left": 1155}], "shape": {"h": 4435, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/706369f.jpg"} -{"rects": [{"solidity": 0.997633617556006, "top": 565, "right": 3335, "bottom": 2490, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724626f.jpg"} -{"rects": [{"solidity": 0.9976340052656725, "top": 3465, "right": 3580, "bottom": 5295, "left": 870}, {"solidity": 0.9959946493407223, "top": 275, "right": 3135, "bottom": 3005, "left": 1285}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/710250f.jpg"} -{"rects": [{"solidity": 0.9976340490361897, "top": 445, "right": 3220, "bottom": 2065, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715422f.jpg"} -{"rects": [{"solidity": 0.9976344147437362, "top": 550, "right": 2680, "bottom": 1985, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706706f.jpg"} -{"rects": [{"solidity": 0.9976344665125403, "top": 590, "right": 4955, "bottom": 3550, "left": 1070}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709237f.jpg"} -{"rects": [{"solidity": 0.9976346135947134, "top": 2270, "right": 3050, "bottom": 3895, "left": 635}, {"solidity": 0.996920520560337, "top": 390, "right": 3045, "bottom": 2020, "left": 635}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726624f.jpg"} -{"rects": [{"solidity": 0.997634770440896, "top": 855, "right": 5115, "bottom": 3300, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702768f.jpg"} -{"rects": [{"solidity": 0.9976347733816642, "top": 475, "right": 5050, "bottom": 3710, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720773f.jpg"} -{"rects": [{"solidity": 0.9976351669169908, "top": 2270, "right": 3170, "bottom": 3875, "left": 755}, {"solidity": 0.9961099374009174, "top": 465, "right": 3170, "bottom": 2070, "left": 755}, {"solidity": 0.9961634275126767, "top": 4065, "right": 3165, "bottom": 5665, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719810f.jpg"} -{"rects": [{"solidity": 0.9976354268115405, "top": 1065, "right": 3330, "bottom": 5145, "left": 525}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/712799f.jpg"} -{"rects": [{"solidity": 0.9976354807701223, "top": 405, "right": 4800, "bottom": 3620, "left": 980}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727034f.jpg"} -{"rects": [{"solidity": 0.9976356677480134, "top": 440, "right": 5035, "bottom": 3760, "left": 985}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714637f.jpg"} -{"rects": [{"solidity": 0.9976357454889578, "top": 785, "right": 2050, "bottom": 3220, "left": 425}, {"solidity": 0.9981655789490563, "top": 775, "right": 3885, "bottom": 3205, "left": 2270}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724628f.jpg"} -{"rects": [{"solidity": 0.9976361402147199, "top": 920, "right": 3875, "bottom": 3340, "left": 2265}, {"solidity": 0.9989335310202662, "top": 925, "right": 2015, "bottom": 3335, "left": 410}, {"solidity": 0.9977513662893959, "top": 940, "right": 5735, "bottom": 3340, "left": 4125}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718733f.jpg"} -{"rects": [{"solidity": 0.9976361744840465, "top": 360, "right": 3415, "bottom": 1995, "left": 990}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708141f.jpg"} -{"rects": [{"solidity": 0.9976367802921798, "top": 640, "right": 2655, "bottom": 3710, "left": 590}, {"solidity": 0.9964082619673413, "top": 890, "right": 4490, "bottom": 3310, "left": 2880}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715174f.jpg"} -{"rects": [{"solidity": 0.9976369401559284, "top": 570, "right": 3130, "bottom": 2150, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719447f.jpg"} -{"rects": [{"solidity": 0.9976370142751566, "top": 375, "right": 5045, "bottom": 3625, "left": 1035}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723177f.jpg"} -{"rects": [{"solidity": 0.9976371562565086, "top": 530, "right": 3315, "bottom": 2425, "left": 540}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703132f.jpg"} -{"rects": [{"solidity": 0.9976385604681626, "top": 1105, "right": 3470, "bottom": 4950, "left": 395}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/723025f.jpg"} -{"rects": [{"solidity": 0.9976386279897432, "top": 2055, "right": 2705, "bottom": 3495, "left": 890}, {"solidity": 0.9970224110556591, "top": 620, "right": 2725, "bottom": 2005, "left": 880}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705263f.jpg"} -{"rects": [{"solidity": 0.9976387018714751, "top": 2185, "right": 2720, "bottom": 3620, "left": 920}, {"solidity": 0.9976395730706076, "top": 2190, "right": 5275, "bottom": 3615, "left": 3465}, {"solidity": 0.9959051724137931, "top": 725, "right": 5285, "bottom": 2140, "left": 3460}, {"solidity": 0.9956647186475882, "top": 720, "right": 2730, "bottom": 2135, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726305f.jpg"} -{"rects": [{"solidity": 0.9976387740848247, "top": 790, "right": 2035, "bottom": 3205, "left": 405}, {"solidity": 0.9966146262360006, "top": 780, "right": 3880, "bottom": 3200, "left": 2260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703053f.jpg"} -{"rects": [{"solidity": 0.9976388306772844, "top": 2270, "right": 3085, "bottom": 3895, "left": 660}, {"solidity": 0.9973321117609676, "top": 405, "right": 3075, "bottom": 2020, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726665f.jpg"} -{"rects": [{"solidity": 0.9976389364336423, "top": 810, "right": 3900, "bottom": 3225, "left": 2270}, {"solidity": 0.9999092135297779, "top": 810, "right": 2070, "bottom": 3225, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718695f.jpg"} -{"rects": [{"solidity": 0.9976390572864514, "top": 800, "right": 3815, "bottom": 3230, "left": 2195}, {"solidity": 0.9959704113058746, "top": 785, "right": 2010, "bottom": 3220, "left": 380}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724830f.jpg"} -{"rects": [{"solidity": 0.9976391815059598, "top": 1150, "right": 2925, "bottom": 5150, "left": 1290}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/716896f.jpg"} -{"rects": [{"solidity": 0.9976392380369128, "top": 690, "right": 2655, "bottom": 2100, "left": 845}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727915f.jpg"} -{"rects": [{"solidity": 0.9976393354167135, "top": 435, "right": 3375, "bottom": 2215, "left": 2115}, {"solidity": 0.9955086875137016, "top": 430, "right": 1895, "bottom": 2210, "left": 635}], "shape": {"h": 2635, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/716235f.jpg"} -{"rects": [{"solidity": 0.9976394236140964, "top": 465, "right": 5030, "bottom": 3705, "left": 935}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730253f.jpg"} -{"rects": [{"solidity": 0.9976394854886598, "top": 830, "right": 3325, "bottom": 2735, "left": 545}, {"solidity": 0.9953189805014886, "top": 3350, "right": 3270, "bottom": 5260, "left": 560}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715376f.jpg"} -{"rects": [{"solidity": 0.9976398379310806, "top": 1030, "right": 3555, "bottom": 5055, "left": 285}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722022f.jpg"} -{"rects": [{"solidity": 0.9976403558634183, "top": 435, "right": 3170, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/712816f.jpg"} -{"rects": [{"solidity": 0.9976404383766978, "top": 485, "right": 3355, "bottom": 2120, "left": 925}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705597f.jpg"} -{"rects": [{"solidity": 0.997640782682382, "top": 2170, "right": 3215, "bottom": 3795, "left": 800}, {"solidity": 0.9972370423750448, "top": 345, "right": 3225, "bottom": 1965, "left": 820}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/719094f.jpg"} -{"rects": [{"solidity": 0.9976408613400477, "top": 615, "right": 2800, "bottom": 3665, "left": 770}, {"solidity": 0.9966535050812351, "top": 920, "right": 4975, "bottom": 3330, "left": 3360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714173f.jpg"} -{"rects": [{"solidity": 0.9976408996897621, "top": 370, "right": 2995, "bottom": 1990, "left": 590}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720877f.jpg"} -{"rects": [{"solidity": 0.9976409791891355, "top": 4080, "right": 3215, "bottom": 5685, "left": 810}, {"solidity": 0.994527147499731, "top": 2270, "right": 3205, "bottom": 3880, "left": 800}, {"solidity": 0.9972875286223973, "top": 435, "right": 3195, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718112f.jpg"} -{"rects": [{"solidity": 0.9976410740292507, "top": 415, "right": 5260, "bottom": 3630, "left": 1255}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722423f.jpg"} -{"rects": [{"solidity": 0.9976411507990816, "top": 395, "right": 5405, "bottom": 3705, "left": 1365}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701218f.jpg"} -{"rects": [{"solidity": 0.9976412873002158, "top": 2455, "right": 2520, "bottom": 3935, "left": 435}, {"solidity": 0.9943081339398077, "top": 695, "right": 2515, "bottom": 2175, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716180f.jpg"} -{"rects": [{"solidity": 0.99764130283141, "top": 460, "right": 3045, "bottom": 2070, "left": 635}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707365f.jpg"} -{"rects": [{"solidity": 0.9976413304438226, "top": 575, "right": 5150, "bottom": 3475, "left": 1545}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724197f.jpg"} -{"rects": [{"solidity": 0.9976414715933705, "top": 400, "right": 3110, "bottom": 2015, "left": 680}, {"solidity": 0.9978616376506354, "top": 4085, "right": 3110, "bottom": 5700, "left": 690}, {"solidity": 0.9962144798616259, "top": 2255, "right": 3105, "bottom": 3850, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729867f.jpg"} -{"rects": [{"solidity": 0.997641999036537, "top": 990, "right": 3500, "bottom": 4960, "left": 315}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709153f.jpg"} -{"rects": [{"solidity": 0.9976421281531795, "top": 830, "right": 3885, "bottom": 3265, "left": 2245}, {"solidity": 0.9968181048555848, "top": 840, "right": 2020, "bottom": 3260, "left": 390}, {"solidity": 0.9965378088119081, "top": 850, "right": 5730, "bottom": 3265, "left": 4120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712587f.jpg"} -{"rects": [{"solidity": 0.9976423701608033, "top": 865, "right": 2035, "bottom": 3285, "left": 425}, {"solidity": 0.995151099256804, "top": 865, "right": 3905, "bottom": 3285, "left": 2290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708934f.jpg"} -{"rects": [{"solidity": 0.9976425710224053, "top": 435, "right": 3145, "bottom": 2040, "left": 725}, {"solidity": 0.9961577943980056, "top": 2280, "right": 3150, "bottom": 3890, "left": 745}, {"solidity": 0.9963791316517365, "top": 4165, "right": 3160, "bottom": 5750, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730604f.jpg"} -{"rects": [{"solidity": 0.9976425878598493, "top": 405, "right": 5090, "bottom": 3650, "left": 970}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715216f.jpg"} -{"rects": [{"solidity": 0.9976428418366353, "top": 980, "right": 3580, "bottom": 4985, "left": 350}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711146f.jpg"} -{"rects": [{"solidity": 0.9976429980276134, "top": 785, "right": 2030, "bottom": 3185, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724228f.jpg"} -{"rects": [{"solidity": 0.9976430986112589, "top": 395, "right": 5140, "bottom": 3660, "left": 1115}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717155f.jpg"} -{"rects": [{"solidity": 0.9976431465607697, "top": 750, "right": 1945, "bottom": 3170, "left": 335}, {"solidity": 0.9972641815235008, "top": 755, "right": 3790, "bottom": 3175, "left": 2185}, {"solidity": 0.9975171593689665, "top": 760, "right": 5640, "bottom": 3175, "left": 4045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713524f.jpg"} -{"rects": [{"solidity": 0.9976432333920067, "top": 790, "right": 2015, "bottom": 3190, "left": 410}, {"solidity": 0.9983937259265883, "top": 790, "right": 3845, "bottom": 3180, "left": 2255}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713504f.jpg"} -{"rects": [{"solidity": 0.997643537481599, "top": 410, "right": 5190, "bottom": 3690, "left": 1105}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/720417f.jpg"} -{"rects": [{"solidity": 0.9976436940377333, "top": 775, "right": 3875, "bottom": 3190, "left": 2270}, {"solidity": 0.9962853044142034, "top": 775, "right": 2035, "bottom": 3185, "left": 445}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730341f.jpg"} -{"rects": [{"solidity": 0.997643921932325, "top": 785, "right": 1940, "bottom": 3145, "left": 375}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723397f.jpg"} -{"rects": [{"solidity": 0.9976440317066085, "top": 750, "right": 2055, "bottom": 3180, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733337f.jpg"} -{"rects": [{"solidity": 0.9976440598681506, "top": 530, "right": 5060, "bottom": 3780, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706227f.jpg"} -{"rects": [{"solidity": 0.9976441961606904, "top": 505, "right": 4945, "bottom": 3620, "left": 1020}], "shape": {"h": 3910, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719202f.jpg"} -{"rects": [{"solidity": 0.9976442356795207, "top": 500, "right": 5110, "bottom": 3770, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707544f.jpg"} -{"rects": [{"solidity": 0.9976443138661099, "top": 575, "right": 5095, "bottom": 3765, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722865f.jpg"} -{"rects": [{"solidity": 0.9976445644538676, "top": 745, "right": 2085, "bottom": 3155, "left": 460}, {"solidity": 0.9965161861610504, "top": 745, "right": 3915, "bottom": 3165, "left": 2285}, {"solidity": 0.9962708320441377, "top": 805, "right": 5735, "bottom": 3215, "left": 4115}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709370f.jpg"} -{"rects": [{"solidity": 0.9976447331078105, "top": 770, "right": 2035, "bottom": 3175, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707706f.jpg"} -{"rects": [{"solidity": 0.9976447957632482, "top": 480, "right": 4990, "bottom": 3640, "left": 1030}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712790f.jpg"} -{"rects": [{"solidity": 0.9976448557514093, "top": 655, "right": 2060, "bottom": 3075, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702757f.jpg"} -{"rects": [{"solidity": 0.9976451916749461, "top": 785, "right": 2110, "bottom": 3200, "left": 495}, {"solidity": 0.9982587064676617, "top": 780, "right": 3950, "bottom": 3200, "left": 2340}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714195f.jpg"} -{"rects": [{"solidity": 0.9976452584152636, "top": 415, "right": 5115, "bottom": 3730, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721540f.jpg"} -{"rects": [{"solidity": 0.9976454076476555, "top": 490, "right": 5065, "bottom": 3785, "left": 1020}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700791f.jpg"} -{"rects": [{"solidity": 0.9976457810927792, "top": 2185, "right": 3180, "bottom": 3810, "left": 755}, {"solidity": 0.9960398450541317, "top": 405, "right": 3180, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704367f.jpg"} -{"rects": [{"solidity": 0.9976457985480329, "top": 430, "right": 5095, "bottom": 3635, "left": 1030}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721219f.jpg"} -{"rects": [{"solidity": 0.9976458875293059, "top": 700, "right": 2020, "bottom": 3120, "left": 400}, {"solidity": 0.9961229095538453, "top": 690, "right": 3910, "bottom": 3110, "left": 2285}, {"solidity": 0.9960036710837747, "top": 700, "right": 5730, "bottom": 3125, "left": 4110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733956f.jpg"} -{"rects": [{"solidity": 0.9976459875227651, "top": 270, "right": 3150, "bottom": 1885, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730172f.jpg"} -{"rects": [{"solidity": 0.9976463209215559, "top": 755, "right": 3845, "bottom": 3160, "left": 2225}, {"solidity": 0.9965118821153199, "top": 760, "right": 2015, "bottom": 3170, "left": 410}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732387f.jpg"} -{"rects": [{"solidity": 0.9976466083701071, "top": 830, "right": 2525, "bottom": 3820, "left": 350}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715955f.jpg"} -{"rects": [{"solidity": 0.9976467502079917, "top": 970, "right": 3510, "bottom": 5005, "left": 250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713651f.jpg"} -{"rects": [{"solidity": 0.9976467583057937, "top": 4145, "right": 3105, "bottom": 5775, "left": 685}, {"solidity": 0.9942853099986172, "top": 2255, "right": 3120, "bottom": 3870, "left": 690}, {"solidity": 0.9950621911849772, "top": 390, "right": 3115, "bottom": 1995, "left": 685}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701861f.jpg"} -{"rects": [{"solidity": 0.9976467676752053, "top": 580, "right": 5005, "bottom": 3570, "left": 1200}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720993f.jpg"} -{"rects": [{"solidity": 0.9976467866932923, "top": 485, "right": 5160, "bottom": 3750, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701845f.jpg"} -{"rects": [{"solidity": 0.9976469944992394, "top": 385, "right": 4865, "bottom": 3605, "left": 845}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715593f.jpg"} -{"rects": [{"solidity": 0.9976471076007754, "top": 715, "right": 3360, "bottom": 2720, "left": 335}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710569f.jpg"} -{"rects": [{"solidity": 0.9976471718044752, "top": 775, "right": 4310, "bottom": 2820, "left": 1485}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708744f.jpg"} -{"rects": [{"solidity": 0.9976476330194006, "top": 325, "right": 5125, "bottom": 3635, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726045f.jpg"} -{"rects": [{"solidity": 0.9976476632102638, "top": 450, "right": 3290, "bottom": 2030, "left": 925}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728007f.jpg"} -{"rects": [{"solidity": 0.9976480567550895, "top": 325, "right": 3000, "bottom": 1960, "left": 595}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700245f.jpg"} -{"rects": [{"solidity": 0.9976481168759745, "top": 860, "right": 3925, "bottom": 3260, "left": 2300}, {"solidity": 0.9964799464121242, "top": 880, "right": 2020, "bottom": 3250, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734330f.jpg"} -{"rects": [{"solidity": 0.9976482026993203, "top": 375, "right": 5175, "bottom": 3645, "left": 1155}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714944f.jpg"} -{"rects": [{"solidity": 0.9976485397623619, "top": 545, "right": 3675, "bottom": 2175, "left": 1250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701261f.jpg"} -{"rects": [{"solidity": 0.9976485822239258, "top": 455, "right": 3210, "bottom": 2080, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718790f.jpg"} -{"rects": [{"solidity": 0.9976486699909989, "top": 435, "right": 4895, "bottom": 3460, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730107f.jpg"} -{"rects": [{"solidity": 0.9976488853680496, "top": 295, "right": 3215, "bottom": 1925, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702964f.jpg"} -{"rects": [{"solidity": 0.9976491739772937, "top": 345, "right": 3140, "bottom": 1965, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704040f.jpg"} -{"rects": [{"solidity": 0.9976491915049416, "top": 665, "right": 5300, "bottom": 3450, "left": 3265}, {"solidity": 0.9974279823672131, "top": 700, "right": 2725, "bottom": 3470, "left": 715}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720441f.jpg"} -{"rects": [{"solidity": 0.997649226572592, "top": 395, "right": 3140, "bottom": 1995, "left": 735}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/700815f.jpg"} -{"rects": [{"solidity": 0.9976494496625304, "top": 420, "right": 3095, "bottom": 2030, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702117f.jpg"} -{"rects": [{"solidity": 0.9976495982731742, "top": 435, "right": 4165, "bottom": 2640, "left": 2495}, {"solidity": 0.9326270186206035, "top": 885, "right": 2260, "bottom": 2025, "left": 625}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507574.jpg"} -{"rects": [{"solidity": 0.9976496160166557, "top": 410, "right": 3170, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719301f.jpg"} -{"rects": [{"solidity": 0.9976496492230605, "top": 415, "right": 3150, "bottom": 2035, "left": 740}, {"solidity": 0.997557831897429, "top": 2115, "right": 3160, "bottom": 3735, "left": 750}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704679f.jpg"} -{"rects": [{"solidity": 0.9976498198850805, "top": 830, "right": 2095, "bottom": 3235, "left": 495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733696f.jpg"} -{"rects": [{"solidity": 0.9976500144439719, "top": 625, "right": 2000, "bottom": 3035, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724995f.jpg"} -{"rects": [{"solidity": 0.9976501726864853, "top": 310, "right": 3155, "bottom": 1940, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707171f.jpg"} -{"rects": [{"solidity": 0.9976502361050971, "top": 750, "right": 3440, "bottom": 2770, "left": 400}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715417f.jpg"} -{"rects": [{"solidity": 0.9976502492586616, "top": 975, "right": 3535, "bottom": 3030, "left": 495}, {"solidity": 0.9991862984422026, "top": 810, "right": 5480, "bottom": 3215, "left": 3880}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715308f.jpg"} -{"rects": [{"solidity": 0.99765026171223, "top": 460, "right": 3200, "bottom": 2070, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/706713f.jpg"} -{"rects": [{"solidity": 0.9976503316509752, "top": 825, "right": 2375, "bottom": 3225, "left": 760}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712112f.jpg"} -{"rects": [{"solidity": 0.9976504563536698, "top": 330, "right": 2995, "bottom": 3555, "left": 960}, {"solidity": 0.9980555405520104, "top": 340, "right": 5500, "bottom": 3565, "left": 3475}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705737f.jpg"} -{"rects": [{"solidity": 0.9976504757857674, "top": 410, "right": 5100, "bottom": 3700, "left": 1065}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725014f.jpg"} -{"rects": [{"solidity": 0.9976504882820031, "top": 325, "right": 3565, "bottom": 2150, "left": 880}, {"solidity": 0.9960452979131815, "top": 2425, "right": 3545, "bottom": 4255, "left": 865}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710242f.jpg"} -{"rects": [{"solidity": 0.9976507118527425, "top": 580, "right": 2535, "bottom": 3605, "left": 505}, {"solidity": 0.9990507984270374, "top": 865, "right": 4180, "bottom": 3285, "left": 2570}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723364f.jpg"} -{"rects": [{"solidity": 0.9976507461883477, "top": 475, "right": 5035, "bottom": 3720, "left": 1000}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705980f.jpg"} -{"rects": [{"solidity": 0.9976507464720636, "top": 415, "right": 3195, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700424f.jpg"} -{"rects": [{"solidity": 0.9976507852712155, "top": 400, "right": 3140, "bottom": 1990, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728301f.jpg"} -{"rects": [{"solidity": 0.9976508303211613, "top": 435, "right": 3220, "bottom": 2045, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719976f.jpg"} -{"rects": [{"solidity": 0.9976509545224795, "top": 420, "right": 3075, "bottom": 2030, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729094f.jpg"} -{"rects": [{"solidity": 0.9976509809196241, "top": 445, "right": 5005, "bottom": 3705, "left": 980}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716715f.jpg"} -{"rects": [{"solidity": 0.9976509948380857, "top": 505, "right": 5055, "bottom": 3720, "left": 1075}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721150f.jpg"} -{"rects": [{"solidity": 0.9976512115064246, "top": 775, "right": 1990, "bottom": 3175, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724303f.jpg"} -{"rects": [{"solidity": 0.9976513399448604, "top": 415, "right": 3170, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700149f.jpg"} -{"rects": [{"solidity": 0.9976513553099372, "top": 405, "right": 3115, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700554f.jpg"} -{"rects": [{"solidity": 0.9976514493453013, "top": 1080, "right": 5450, "bottom": 2705, "left": 635}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719526f.jpg"} -{"rects": [{"solidity": 0.9976517827315216, "top": 865, "right": 2120, "bottom": 3275, "left": 510}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713658f.jpg"} -{"rects": [{"solidity": 0.9976518766028324, "top": 390, "right": 5120, "bottom": 3780, "left": 1075}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712672f.jpg"} -{"rects": [{"solidity": 0.9976520331895866, "top": 405, "right": 5065, "bottom": 3720, "left": 1005}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714458f.jpg"} -{"rects": [{"solidity": 0.9976522606773228, "top": 1320, "right": 3330, "bottom": 4735, "left": 695}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721480f.jpg"} -{"rects": [{"solidity": 0.997652457448716, "top": 415, "right": 3160, "bottom": 2000, "left": 770}, {"solidity": 0.9937315879977072, "top": 2210, "right": 3155, "bottom": 3800, "left": 760}, {"solidity": 0.9938761131683601, "top": 4040, "right": 3125, "bottom": 5640, "left": 720}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/731307f.jpg"} -{"rects": [{"solidity": 0.9976526964770968, "top": 510, "right": 3210, "bottom": 2115, "left": 795}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/710897f.jpg"} -{"rects": [{"solidity": 0.9976527265272652, "top": 600, "right": 5235, "bottom": 2000, "left": 3480}, {"solidity": 0.9962105500335418, "top": 595, "right": 2650, "bottom": 1970, "left": 855}, {"solidity": 0.9928880929591091, "top": 2000, "right": 2640, "bottom": 3380, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705230f.jpg"} -{"rects": [{"solidity": 0.9976528930975236, "top": 530, "right": 5125, "bottom": 3775, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722026f.jpg"} -{"rects": [{"solidity": 0.9976529049298589, "top": 415, "right": 3290, "bottom": 2040, "left": 865}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/725371f.jpg"} -{"rects": [{"solidity": 0.9976529212103705, "top": 465, "right": 3200, "bottom": 2070, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709599f.jpg"} -{"rects": [{"solidity": 0.9976530071432257, "top": 495, "right": 5145, "bottom": 3805, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705323f.jpg"} -{"rects": [{"solidity": 0.9976530241254836, "top": 440, "right": 3200, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709615f.jpg"} -{"rects": [{"solidity": 0.997653041895289, "top": 1880, "right": 2705, "bottom": 4295, "left": 1080}, {"solidity": 0.9981622693551148, "top": 190, "right": 3125, "bottom": 1810, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715264f.jpg"} -{"rects": [{"solidity": 0.997653060234888, "top": 4115, "right": 3090, "bottom": 5740, "left": 690}, {"solidity": 0.9982711564797638, "top": 405, "right": 3090, "bottom": 2025, "left": 690}, {"solidity": 0.9955797536405867, "top": 2260, "right": 3090, "bottom": 3900, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728494f.jpg"} -{"rects": [{"solidity": 0.9976534584822143, "top": 450, "right": 3310, "bottom": 2025, "left": 910}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725330f.jpg"} -{"rects": [{"solidity": 0.9976537122382254, "top": 435, "right": 5070, "bottom": 3650, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732726f.jpg"} -{"rects": [{"solidity": 0.9976538859309764, "top": 3920, "right": 3145, "bottom": 5550, "left": 725}, {"solidity": 0.9973943709427435, "top": 265, "right": 3175, "bottom": 1895, "left": 760}, {"solidity": 0.996261513861676, "top": 2080, "right": 3155, "bottom": 3715, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703231f.jpg"} -{"rects": [{"solidity": 0.9976538916517315, "top": 785, "right": 3645, "bottom": 2785, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733053f.jpg"} -{"rects": [{"solidity": 0.9976540451740129, "top": 325, "right": 3150, "bottom": 1945, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704399f.jpg"} -{"rects": [{"solidity": 0.9976540803805138, "top": 515, "right": 5115, "bottom": 3805, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712468f.jpg"} -{"rects": [{"solidity": 0.9976542878124827, "top": 470, "right": 5110, "bottom": 3695, "left": 1090}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720806f.jpg"} -{"rects": [{"solidity": 0.9976548131473186, "top": 715, "right": 2000, "bottom": 3130, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727477f.jpg"} -{"rects": [{"solidity": 0.9976548872666193, "top": 240, "right": 2795, "bottom": 2650, "left": 1180}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723991f.jpg"} -{"rects": [{"solidity": 0.9976552841369314, "top": 560, "right": 3700, "bottom": 2400, "left": 965}], "shape": {"h": 4445, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711222f.jpg"} -{"rects": [{"solidity": 0.9976554211334737, "top": 410, "right": 4985, "bottom": 3610, "left": 990}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727640f.jpg"} -{"rects": [{"solidity": 0.9976554640476069, "top": 2260, "right": 3245, "bottom": 3985, "left": 675}, {"solidity": 0.9973996160070053, "top": 425, "right": 3245, "bottom": 2110, "left": 715}, {"solidity": 0.9967336900370103, "top": 4120, "right": 3240, "bottom": 5805, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716838f.jpg"} -{"rects": [{"solidity": 0.9976556651058917, "top": 2295, "right": 3120, "bottom": 3940, "left": 700}, {"solidity": 0.9994579806733227, "top": 415, "right": 3115, "bottom": 2035, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701721f.jpg"} -{"rects": [{"solidity": 0.9976557011515318, "top": 415, "right": 5120, "bottom": 3675, "left": 1080}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732694f.jpg"} -{"rects": [{"solidity": 0.9976557073396619, "top": 400, "right": 3175, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733942f.jpg"} -{"rects": [{"solidity": 0.9976557120042198, "top": 625, "right": 2725, "bottom": 2040, "left": 900}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704736f.jpg"} -{"rects": [{"solidity": 0.9976557556369543, "top": 425, "right": 5230, "bottom": 3715, "left": 1175}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730538f.jpg"} -{"rects": [{"solidity": 0.9976558889942773, "top": 375, "right": 5075, "bottom": 3705, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714837f.jpg"} -{"rects": [{"solidity": 0.997655977416183, "top": 420, "right": 5040, "bottom": 3510, "left": 1180}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728280f.jpg"} -{"rects": [{"solidity": 0.9976561484387582, "top": 790, "right": 3495, "bottom": 4830, "left": 290}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717363f.jpg"} -{"rects": [{"solidity": 0.9976561622064183, "top": 1915, "right": 2800, "bottom": 4325, "left": 1170}, {"solidity": 0.9969410851710535, "top": 230, "right": 3230, "bottom": 1855, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720765f.jpg"} -{"rects": [{"solidity": 0.9976562474426582, "top": 425, "right": 3190, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715146f.jpg"} -{"rects": [{"solidity": 0.9976562546473378, "top": 410, "right": 3185, "bottom": 2100, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712482f.jpg"} -{"rects": [{"solidity": 0.9976563208244865, "top": 365, "right": 5305, "bottom": 3660, "left": 1295}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723671f.jpg"} -{"rects": [{"solidity": 0.9976563693294639, "top": 1110, "right": 3615, "bottom": 5150, "left": 340}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727291f.jpg"} -{"rects": [{"solidity": 0.9976564407193425, "top": 515, "right": 5045, "bottom": 3790, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733567f.jpg"} -{"rects": [{"solidity": 0.9976564782651041, "top": 595, "right": 2740, "bottom": 3635, "left": 695}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719232f.jpg"} -{"rects": [{"solidity": 0.9976566404270689, "top": 785, "right": 5075, "bottom": 3480, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734496f.jpg"} -{"rects": [{"solidity": 0.9976573741439481, "top": 2180, "right": 3165, "bottom": 3800, "left": 740}, {"solidity": 0.9961684224049332, "top": 3980, "right": 3165, "bottom": 5600, "left": 740}, {"solidity": 0.9982347233805047, "top": 410, "right": 3155, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732057f.jpg"} -{"rects": [{"solidity": 0.9976573886318991, "top": 480, "right": 4955, "bottom": 3690, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709609f.jpg"} -{"rects": [{"solidity": 0.9976574865463754, "top": 2085, "right": 2765, "bottom": 3495, "left": 930}, {"solidity": 0.9957237899494452, "top": 650, "right": 2750, "bottom": 2070, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726388f.jpg"} -{"rects": [{"solidity": 0.9976576793936104, "top": 705, "right": 1995, "bottom": 3080, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714279f.jpg"} -{"rects": [{"solidity": 0.9976576981989318, "top": 425, "right": 5190, "bottom": 3675, "left": 1070}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732689f.jpg"} -{"rects": [{"solidity": 0.9976578712535753, "top": 520, "right": 3550, "bottom": 2315, "left": 870}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711382f.jpg"} -{"rects": [{"solidity": 0.9976580727206257, "top": 535, "right": 5320, "bottom": 3465, "left": 960}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720737f.jpg"} -{"rects": [{"solidity": 0.9976583162976566, "top": 430, "right": 5020, "bottom": 3680, "left": 995}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708634f.jpg"} -{"rects": [{"solidity": 0.997658671037648, "top": 490, "right": 5160, "bottom": 3745, "left": 1045}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720816f.jpg"} -{"rects": [{"solidity": 0.9976588913084705, "top": 490, "right": 3155, "bottom": 2090, "left": 750}, {"solidity": 0.9983216856569683, "top": 2360, "right": 3160, "bottom": 3955, "left": 755}, {"solidity": 0.9950792919786953, "top": 4205, "right": 2920, "bottom": 5595, "left": 1105}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710805f.jpg"} -{"rects": [{"solidity": 0.997659148311222, "top": 940, "right": 5100, "bottom": 3075, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734680f.jpg"} -{"rects": [{"solidity": 0.9976592109401089, "top": 770, "right": 1985, "bottom": 3175, "left": 370}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721945f.jpg"} -{"rects": [{"solidity": 0.9976593051862175, "top": 510, "right": 5080, "bottom": 3800, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707577f.jpg"} -{"rects": [{"solidity": 0.997659316442161, "top": 435, "right": 3225, "bottom": 2040, "left": 820}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700384f.jpg"} -{"rects": [{"solidity": 0.9976593894368633, "top": 735, "right": 2035, "bottom": 3155, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720490f.jpg"} -{"rects": [{"solidity": 0.9976594649383371, "top": 800, "right": 3875, "bottom": 3230, "left": 2250}, {"solidity": 0.9978751540673788, "top": 810, "right": 2015, "bottom": 3230, "left": 395}, {"solidity": 0.9968415906547106, "top": 810, "right": 5725, "bottom": 3240, "left": 4110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701035f.jpg"} -{"rects": [{"solidity": 0.9976595833480479, "top": 430, "right": 3365, "bottom": 2050, "left": 940}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725549f.jpg"} -{"rects": [{"solidity": 0.9976595976519609, "top": 445, "right": 5115, "bottom": 3775, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719512f.jpg"} -{"rects": [{"solidity": 0.9976596886530776, "top": 470, "right": 5025, "bottom": 3665, "left": 1025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708218f.jpg"} -{"rects": [{"solidity": 0.9976596949752604, "top": 345, "right": 5210, "bottom": 3605, "left": 1065}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730838f.jpg"} -{"rects": [{"solidity": 0.9976597123573734, "top": 775, "right": 2060, "bottom": 3170, "left": 455}, {"solidity": 0.9943512592469453, "top": 765, "right": 3955, "bottom": 3160, "left": 2370}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713991f.jpg"} -{"rects": [{"solidity": 0.9976597185152395, "top": 760, "right": 3895, "bottom": 3160, "left": 2285}, {"solidity": 0.9962854254313016, "top": 765, "right": 2045, "bottom": 3165, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718860f.jpg"} -{"rects": [{"solidity": 0.9976597354433829, "top": 870, "right": 3550, "bottom": 4905, "left": 275}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720368f.jpg"} -{"rects": [{"solidity": 0.9976597677222493, "top": 450, "right": 3000, "bottom": 2070, "left": 590}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705178f.jpg"} -{"rects": [{"solidity": 0.9976597976154771, "top": 360, "right": 5150, "bottom": 3625, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717150f.jpg"} -{"rects": [{"solidity": 0.9976599094666404, "top": 435, "right": 5025, "bottom": 3640, "left": 1040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723641f.jpg"} -{"rects": [{"solidity": 0.9976599518396727, "top": 425, "right": 3185, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715215f.jpg"} -{"rects": [{"solidity": 0.9976600236612133, "top": 380, "right": 3320, "bottom": 1985, "left": 915}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725035f.jpg"} -{"rects": [{"solidity": 0.9976600452730371, "top": 850, "right": 3595, "bottom": 3280, "left": 1965}, {"solidity": 0.9971982406156124, "top": 1055, "right": 1780, "bottom": 3125, "left": 365}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709269f.jpg"} -{"rects": [{"solidity": 0.9976600871983878, "top": 470, "right": 5025, "bottom": 3740, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708729f.jpg"} -{"rects": [{"solidity": 0.9976604058658258, "top": 430, "right": 5070, "bottom": 3720, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725381f.jpg"} -{"rects": [{"solidity": 0.9976604682888269, "top": 775, "right": 2040, "bottom": 3210, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713265f.jpg"} -{"rects": [{"solidity": 0.9976604700738894, "top": 850, "right": 3545, "bottom": 2260, "left": 1565}], "shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508441.jpg"} -{"rects": [{"solidity": 0.9976607287631023, "top": 2170, "right": 3310, "bottom": 3795, "left": 890}, {"solidity": 0.9978664474392476, "top": 360, "right": 3310, "bottom": 1960, "left": 895}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/726940f.jpg"} -{"rects": [{"solidity": 0.9976608912102359, "top": 430, "right": 3170, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708048f.jpg"} -{"rects": [{"solidity": 0.9976609626985105, "top": 2245, "right": 3190, "bottom": 3855, "left": 775}, {"solidity": 0.9951984915098833, "top": 4110, "right": 3190, "bottom": 5725, "left": 775}, {"solidity": 0.9960911121500182, "top": 390, "right": 3195, "bottom": 1995, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725027f.jpg"} -{"rects": [{"solidity": 0.9976611343498403, "top": 775, "right": 2020, "bottom": 3200, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704546f.jpg"} -{"rects": [{"solidity": 0.9976611786428682, "top": 505, "right": 5135, "bottom": 3710, "left": 1060}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702679f.jpg"} -{"rects": [{"solidity": 0.9976613946996563, "top": 660, "right": 4915, "bottom": 3495, "left": 1325}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717801f.jpg"} -{"rects": [{"solidity": 0.9976616022855744, "top": 835, "right": 3780, "bottom": 3245, "left": 2155}, {"solidity": 0.9980408094533373, "top": 825, "right": 1940, "bottom": 3240, "left": 330}, {"solidity": 0.9963187842283519, "top": 850, "right": 5660, "bottom": 3265, "left": 4045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707839f.jpg"} -{"rects": [{"solidity": 0.9976616703819177, "top": 510, "right": 4945, "bottom": 3790, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712094f.jpg"} -{"rects": [{"solidity": 0.9976620623494764, "top": 465, "right": 3130, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713117f.jpg"} -{"rects": [{"solidity": 0.9976621895590472, "top": 3845, "right": 3230, "bottom": 5480, "left": 795}, {"solidity": 0.9966306111064804, "top": 1890, "right": 3250, "bottom": 3505, "left": 815}, {"solidity": 0.9977234519473241, "top": 315, "right": 3215, "bottom": 1525, "left": 835}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/730795f.jpg"} -{"rects": [{"solidity": 0.9976622697351636, "top": 580, "right": 3095, "bottom": 2205, "left": 665}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706816f.jpg"} -{"rects": [{"solidity": 0.9976626073822336, "top": 500, "right": 5140, "bottom": 3745, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703782f.jpg"} -{"rects": [{"solidity": 0.9976626412154266, "top": 770, "right": 2025, "bottom": 3165, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713578f.jpg"} -{"rects": [{"solidity": 0.9976627593131056, "top": 365, "right": 3180, "bottom": 1975, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700102f.jpg"} -{"rects": [{"solidity": 0.9976631909176235, "top": 415, "right": 3205, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719280f.jpg"} -{"rects": [{"solidity": 0.9976632968873149, "top": 3245, "right": 3280, "bottom": 5290, "left": 395}, {"solidity": 0.9957459384714286, "top": 540, "right": 3305, "bottom": 2630, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701497f.jpg"} -{"rects": [{"solidity": 0.997663343516043, "top": 680, "right": 2460, "bottom": 3730, "left": 510}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715470f.jpg"} -{"rects": [{"solidity": 0.9976633767618107, "top": 855, "right": 2035, "bottom": 3260, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728506f.jpg"} -{"rects": [{"solidity": 0.9976635380600609, "top": 420, "right": 5265, "bottom": 3670, "left": 1185}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732624f.jpg"} -{"rects": [{"solidity": 0.997663577427763, "top": 360, "right": 5210, "bottom": 3680, "left": 1090}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/720615f.jpg"} -{"rects": [{"solidity": 0.9976637027504394, "top": 670, "right": 3260, "bottom": 2725, "left": 415}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709559f.jpg"} -{"rects": [{"solidity": 0.9976637661864232, "top": 855, "right": 3905, "bottom": 3285, "left": 2270}, {"solidity": 0.999209440989056, "top": 850, "right": 2070, "bottom": 3280, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702420f.jpg"} -{"rects": [{"solidity": 0.9976638958142396, "top": 325, "right": 3130, "bottom": 1950, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705333f.jpg"} -{"rects": [{"solidity": 0.9976639793324829, "top": 460, "right": 3180, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723567f.jpg"} -{"rects": [{"solidity": 0.9976640550845413, "top": 2250, "right": 3205, "bottom": 3865, "left": 780}, {"solidity": 0.9965818959685058, "top": 4115, "right": 3225, "bottom": 5730, "left": 800}, {"solidity": 0.9972795901249122, "top": 390, "right": 3200, "bottom": 2000, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732155f.jpg"} -{"rects": [{"solidity": 0.9976641201454302, "top": 380, "right": 5110, "bottom": 3600, "left": 1100}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732592f.jpg"} -{"rects": [{"solidity": 0.9976641266879196, "top": 735, "right": 3865, "bottom": 3145, "left": 2255}, {"solidity": 0.9966954596654559, "top": 730, "right": 2010, "bottom": 3140, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725836f.jpg"} -{"rects": [{"solidity": 0.9976642017742384, "top": 370, "right": 2945, "bottom": 1955, "left": 975}, {"solidity": 0.9934849590529474, "top": 2215, "right": 2955, "bottom": 3800, "left": 990}, {"solidity": 0.9954131809834728, "top": 4085, "right": 2950, "bottom": 5655, "left": 980}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700057f.jpg"} -{"rects": [{"solidity": 0.9976643447822087, "top": 435, "right": 4990, "bottom": 3690, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718090f.jpg"} -{"rects": [{"solidity": 0.9976644990074885, "top": 785, "right": 4795, "bottom": 3080, "left": 1210}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709122f.jpg"} -{"rects": [{"solidity": 0.9976648147132345, "top": 445, "right": 4770, "bottom": 3575, "left": 1185}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733615f.jpg"} -{"rects": [{"solidity": 0.997664888123105, "top": 390, "right": 5255, "bottom": 3680, "left": 1240}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724192f.jpg"} -{"rects": [{"solidity": 0.9976649443561209, "top": 345, "right": 3155, "bottom": 1950, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715670f.jpg"} -{"rects": [{"solidity": 0.9976649904659051, "top": 555, "right": 2620, "bottom": 3610, "left": 665}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715017f.jpg"} -{"rects": [{"solidity": 0.9976656372545778, "top": 815, "right": 2065, "bottom": 3210, "left": 475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717543f.jpg"} -{"rects": [{"solidity": 0.9976657156237171, "top": 1125, "right": 3470, "bottom": 5070, "left": 375}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708227f.jpg"} -{"rects": [{"solidity": 0.9976658864555285, "top": 395, "right": 5105, "bottom": 3695, "left": 990}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717229f.jpg"} -{"rects": [{"solidity": 0.9976661632704938, "top": 1200, "right": 3495, "bottom": 5150, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709060f.jpg"} -{"rects": [{"solidity": 0.9976662327016732, "top": 390, "right": 3235, "bottom": 2020, "left": 825}, {"solidity": 0.9953838411860721, "top": 2255, "right": 3235, "bottom": 3890, "left": 805}, {"solidity": 0.995855660423176, "top": 4105, "right": 3210, "bottom": 5730, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702282f.jpg"} -{"rects": [{"solidity": 0.9976663950249939, "top": 470, "right": 5155, "bottom": 3705, "left": 1135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730621f.jpg"} -{"rects": [{"solidity": 0.997666395813262, "top": 345, "right": 5280, "bottom": 3620, "left": 1230}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733494f.jpg"} -{"rects": [{"solidity": 0.9976664365513821, "top": 2260, "right": 3180, "bottom": 3875, "left": 775}, {"solidity": 0.9975441674792983, "top": 440, "right": 3170, "bottom": 2045, "left": 765}, {"solidity": 0.994542670557904, "top": 4075, "right": 3185, "bottom": 5685, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708651f.jpg"} -{"rects": [{"solidity": 0.9976664829002149, "top": 500, "right": 5025, "bottom": 3735, "left": 935}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703818f.jpg"} -{"rects": [{"solidity": 0.9976667756455095, "top": 410, "right": 5110, "bottom": 3645, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732686f.jpg"} -{"rects": [{"solidity": 0.9976669041056294, "top": 660, "right": 2710, "bottom": 2035, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725534f.jpg"} -{"rects": [{"solidity": 0.9976670229127024, "top": 430, "right": 3220, "bottom": 2040, "left": 815}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/732417f.jpg"} -{"rects": [{"solidity": 0.9976670876191761, "top": 2225, "right": 3080, "bottom": 3855, "left": 665}, {"solidity": 0.9980389247630905, "top": 385, "right": 3070, "bottom": 2005, "left": 660}, {"solidity": 0.993104654193459, "top": 4075, "right": 3075, "bottom": 5675, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709296f.jpg"} -{"rects": [{"solidity": 0.9976673597207248, "top": 460, "right": 3150, "bottom": 2080, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705686f.jpg"} -{"rects": [{"solidity": 0.9976673938010099, "top": 295, "right": 3415, "bottom": 2750, "left": 400}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509891.jpg"} -{"rects": [{"solidity": 0.997667487212049, "top": 685, "right": 5055, "bottom": 3380, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716817f.jpg"} -{"rects": [{"solidity": 0.9976675468175008, "top": 2280, "right": 3225, "bottom": 3895, "left": 795}, {"solidity": 0.9960217277343788, "top": 430, "right": 3230, "bottom": 2045, "left": 805}, {"solidity": 0.9935809989793107, "top": 4125, "right": 3225, "bottom": 5755, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726868f.jpg"} -{"rects": [{"solidity": 0.9976677184799012, "top": 475, "right": 3210, "bottom": 2085, "left": 810}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710881f.jpg"} -{"rects": [{"solidity": 0.9976683427471573, "top": 805, "right": 3925, "bottom": 3220, "left": 2310}, {"solidity": 0.9960497401657357, "top": 815, "right": 2090, "bottom": 3220, "left": 470}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716943f.jpg"} -{"rects": [{"solidity": 0.9976683502770852, "top": 4115, "right": 3070, "bottom": 5730, "left": 655}, {"solidity": 0.9982593080019968, "top": 410, "right": 3075, "bottom": 2020, "left": 665}, {"solidity": 0.9967172539568814, "top": 2255, "right": 3075, "bottom": 3860, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719714f.jpg"} -{"rects": [{"solidity": 0.9976685136513788, "top": 380, "right": 5130, "bottom": 3670, "left": 1095}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701969f.jpg"} -{"rects": [{"solidity": 0.9976685494531907, "top": 1075, "right": 3515, "bottom": 5110, "left": 255}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709165f.jpg"} -{"rects": [{"solidity": 0.9976685602727726, "top": 445, "right": 5155, "bottom": 3670, "left": 1140}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732911f.jpg"} -{"rects": [{"solidity": 0.9976686936533038, "top": 410, "right": 3215, "bottom": 2015, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718858f.jpg"} -{"rects": [{"solidity": 0.9976687965814366, "top": 455, "right": 5040, "bottom": 3650, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717538f.jpg"} -{"rects": [{"solidity": 0.9976689673134522, "top": 760, "right": 3895, "bottom": 3165, "left": 2285}, {"solidity": 0.999135319260436, "top": 770, "right": 2050, "bottom": 3170, "left": 450}, {"solidity": 0.9955743888795382, "top": 735, "right": 5740, "bottom": 3130, "left": 4140}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718709f.jpg"} -{"rects": [{"solidity": 0.9976691462252258, "top": 420, "right": 5165, "bottom": 3685, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714974f.jpg"} -{"rects": [{"solidity": 0.9976691540202901, "top": 720, "right": 3345, "bottom": 2645, "left": 615}, {"solidity": 0.9982084277122549, "top": 3220, "right": 3335, "bottom": 5140, "left": 650}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714028f.jpg"} -{"rects": [{"solidity": 0.9976691810662759, "top": 665, "right": 2660, "bottom": 2085, "left": 855}, {"solidity": 0.9949027866800965, "top": 2165, "right": 2700, "bottom": 3290, "left": 855}, {"solidity": 0.9943234054631053, "top": 1870, "right": 5235, "bottom": 2990, "left": 3400}, {"solidity": 0.994267428514397, "top": 665, "right": 5225, "bottom": 1775, "left": 3395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727303f.jpg"} -{"rects": [{"solidity": 0.9976692531616597, "top": 1005, "right": 3890, "bottom": 3420, "left": 2270}, {"solidity": 0.9959042381106438, "top": 1025, "right": 5710, "bottom": 3430, "left": 4085}, {"solidity": 0.9972792367456921, "top": 1020, "right": 2090, "bottom": 3410, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716590f.jpg"} -{"rects": [{"solidity": 0.9976693798300094, "top": 425, "right": 3195, "bottom": 2040, "left": 770}, {"solidity": 0.9969049140540784, "top": 2215, "right": 3200, "bottom": 3825, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707549f.jpg"} -{"rects": [{"solidity": 0.9976700007138721, "top": 395, "right": 2890, "bottom": 3580, "left": 895}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733051f.jpg"} -{"rects": [{"solidity": 0.9976702803064675, "top": 405, "right": 3055, "bottom": 2020, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729205f.jpg"} -{"rects": [{"solidity": 0.9976702925264196, "top": 825, "right": 2050, "bottom": 3200, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713133f.jpg"} -{"rects": [{"solidity": 0.9976703247939818, "top": 570, "right": 2670, "bottom": 3595, "left": 685}, {"solidity": 0.9991537450895812, "top": 845, "right": 4460, "bottom": 3240, "left": 2865}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715704f.jpg"} -{"rects": [{"solidity": 0.9976703264838076, "top": 645, "right": 2005, "bottom": 3035, "left": 405}], "shape": {"h": 3905, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728205f.jpg"} -{"rects": [{"solidity": 0.997670408594056, "top": 4075, "right": 2920, "bottom": 5455, "left": 1125}, {"solidity": 0.9972920696324952, "top": 505, "right": 2940, "bottom": 1880, "left": 1140}, {"solidity": 0.9934242287189442, "top": 2260, "right": 2945, "bottom": 3650, "left": 1135}], "shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728094f.jpg"} -{"rects": [{"solidity": 0.9976704855174084, "top": 410, "right": 4745, "bottom": 3730, "left": 660}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724986f.jpg"} -{"rects": [{"solidity": 0.9976704937901555, "top": 385, "right": 3095, "bottom": 1990, "left": 685}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/701132f.jpg"} -{"rects": [{"solidity": 0.9976706326080491, "top": 300, "right": 3980, "bottom": 2730, "left": 955}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517205.jpg"} -{"rects": [{"solidity": 0.9976706459797845, "top": 425, "right": 3225, "bottom": 2055, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733253f.jpg"} -{"rects": [{"solidity": 0.9976706569544297, "top": 475, "right": 5185, "bottom": 3505, "left": 1310}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729971f.jpg"} -{"rects": [{"solidity": 0.9976707015184297, "top": 405, "right": 3225, "bottom": 2015, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719680f.jpg"} -{"rects": [{"solidity": 0.9976707251484852, "top": 480, "right": 5000, "bottom": 3700, "left": 980}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720805f.jpg"} -{"rects": [{"solidity": 0.9976711368996517, "top": 820, "right": 2045, "bottom": 3210, "left": 445}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712679f.jpg"} -{"rects": [{"solidity": 0.9976714142686433, "top": 770, "right": 3925, "bottom": 3175, "left": 2300}, {"solidity": 0.9992501230776253, "top": 770, "right": 2035, "bottom": 3165, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707703f.jpg"} -{"rects": [{"solidity": 0.9976714566278414, "top": 645, "right": 5205, "bottom": 2070, "left": 3385}, {"solidity": 0.99511304151956, "top": 2120, "right": 5200, "bottom": 3565, "left": 3395}, {"solidity": 0.9968464594340009, "top": 635, "right": 2745, "bottom": 2010, "left": 950}, {"solidity": 0.9966189830229786, "top": 2070, "right": 2760, "bottom": 3435, "left": 960}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732020f.jpg"} -{"rects": [{"solidity": 0.997671481951563, "top": 815, "right": 2035, "bottom": 3230, "left": 420}, {"solidity": 0.9964873987472267, "top": 820, "right": 3815, "bottom": 3230, "left": 2210}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719768f.jpg"} -{"rects": [{"solidity": 0.9976715083608865, "top": 725, "right": 4780, "bottom": 3320, "left": 1365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709132f.jpg"} -{"rects": [{"solidity": 0.9976715127624057, "top": 745, "right": 1985, "bottom": 3155, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724526f.jpg"} -{"rects": [{"solidity": 0.9976715893758847, "top": 870, "right": 4785, "bottom": 2950, "left": 1320}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734426f.jpg"} -{"rects": [{"solidity": 0.9976717609893538, "top": 485, "right": 3120, "bottom": 2085, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720515f.jpg"} -{"rects": [{"solidity": 0.9976718108247643, "top": 445, "right": 3110, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701630f.jpg"} -{"rects": [{"solidity": 0.9976718389247894, "top": 815, "right": 2005, "bottom": 3225, "left": 385}, {"solidity": 0.9932635896370905, "top": 790, "right": 3755, "bottom": 3205, "left": 2135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733599f.jpg"} -{"rects": [{"solidity": 0.9976720835491772, "top": 410, "right": 3110, "bottom": 2035, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729900f.jpg"} -{"rects": [{"solidity": 0.9976721049883933, "top": 475, "right": 3240, "bottom": 2080, "left": 850}, {"solidity": 0.9965977822580645, "top": 3420, "right": 3815, "bottom": 6010, "left": 2885}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707504f.jpg"} -{"rects": [{"solidity": 0.9976722399530003, "top": 375, "right": 3365, "bottom": 2010, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707498f.jpg"} -{"rects": [{"solidity": 0.9976724543369134, "top": 2095, "right": 5255, "bottom": 3525, "left": 3415}, {"solidity": 0.9977536521191189, "top": 600, "right": 2715, "bottom": 2040, "left": 895}, {"solidity": 0.9980505978166696, "top": 2105, "right": 2725, "bottom": 3535, "left": 895}, {"solidity": 0.9952147287048125, "top": 595, "right": 5260, "bottom": 2025, "left": 3435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705298f.jpg"} -{"rects": [{"solidity": 0.9976726979215713, "top": 700, "right": 4500, "bottom": 2690, "left": 3085}, {"solidity": 0.9960158108454485, "top": 1135, "right": 3040, "bottom": 3120, "left": 1620}, {"solidity": 0.9987670880244957, "top": 870, "right": 1585, "bottom": 2850, "left": 175}, {"solidity": 0.9970580925051404, "top": 1100, "right": 5930, "bottom": 3085, "left": 4520}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732892f.jpg"} -{"rects": [{"solidity": 0.9976728838873259, "top": 610, "right": 2265, "bottom": 3475, "left": 240}, {"solidity": 0.999546900607346, "top": 805, "right": 4060, "bottom": 3220, "left": 2440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718131f.jpg"} -{"rects": [{"solidity": 0.9976730052357382, "top": 360, "right": 3210, "bottom": 1965, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703198f.jpg"} -{"rects": [{"solidity": 0.9976731042418749, "top": 495, "right": 3305, "bottom": 2355, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715265f.jpg"} -{"rects": [{"solidity": 0.9976731436925138, "top": 475, "right": 2130, "bottom": 2565, "left": 645}, {"solidity": 0.9981086797364354, "top": 490, "right": 3910, "bottom": 2575, "left": 2425}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716129f.jpg"} -{"rects": [{"solidity": 0.9976731841104132, "top": 470, "right": 3300, "bottom": 3805, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714597f.jpg"} -{"rects": [{"solidity": 0.9976734740296664, "top": 840, "right": 2050, "bottom": 3240, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707617f.jpg"} -{"rects": [{"solidity": 0.9976736446556832, "top": 385, "right": 3075, "bottom": 2000, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728640f.jpg"} -{"rects": [{"solidity": 0.9976737296451343, "top": 1135, "right": 3315, "bottom": 4670, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731292f.jpg"} -{"rects": [{"solidity": 0.9976739659601258, "top": 575, "right": 3335, "bottom": 2495, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713057f.jpg"} -{"rects": [{"solidity": 0.9976740353603126, "top": 320, "right": 3245, "bottom": 2270, "left": 505}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705724f.jpg"} -{"rects": [{"solidity": 0.9976741669077905, "top": 700, "right": 3275, "bottom": 2720, "left": 450}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728516f.jpg"} -{"rects": [{"solidity": 0.9976744253369912, "top": 385, "right": 5040, "bottom": 3655, "left": 1025}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730972f.jpg"} -{"rects": [{"solidity": 0.9976745162509326, "top": 2205, "right": 3175, "bottom": 3815, "left": 755}, {"solidity": 0.9980694604872098, "top": 430, "right": 3165, "bottom": 2035, "left": 750}, {"solidity": 0.9953986186114024, "top": 4005, "right": 3175, "bottom": 5615, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724343f.jpg"} -{"rects": [{"solidity": 0.9976745833896973, "top": 465, "right": 3190, "bottom": 2080, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702787f.jpg"} -{"rects": [{"solidity": 0.9976751920493524, "top": 430, "right": 3155, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733240f.jpg"} -{"rects": [{"solidity": 0.9976753607800952, "top": 445, "right": 5165, "bottom": 3745, "left": 1050}], "shape": {"h": 4030, "w": 6240}, "file": "/usr/local/google/home/danvk/milstein/713825f.jpg"} -{"rects": [{"solidity": 0.9976754004959792, "top": 2100, "right": 5280, "bottom": 3525, "left": 3455}, {"solidity": 0.9970035040457575, "top": 2100, "right": 2725, "bottom": 3525, "left": 910}, {"solidity": 0.9973461529027986, "top": 615, "right": 2725, "bottom": 2025, "left": 900}, {"solidity": 0.9951913819836437, "top": 620, "right": 5270, "bottom": 1995, "left": 3455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703825f.jpg"} -{"rects": [{"solidity": 0.997675474862287, "top": 715, "right": 2715, "bottom": 3475, "left": 755}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705477f.jpg"} -{"rects": [{"solidity": 0.99767547603585, "top": 315, "right": 5215, "bottom": 3615, "left": 1150}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718874f.jpg"} -{"rects": [{"solidity": 0.9976756873486924, "top": 425, "right": 5205, "bottom": 3670, "left": 1115}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732666f.jpg"} -{"rects": [{"solidity": 0.99767576407166, "top": 765, "right": 4075, "bottom": 3145, "left": 2490}, {"solidity": 0.9968225869810599, "top": 660, "right": 2410, "bottom": 2065, "left": 605}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712161f.jpg"} -{"rects": [{"solidity": 0.9976762087485954, "top": 1015, "right": 3545, "bottom": 5030, "left": 310}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708989f.jpg"} -{"rects": [{"solidity": 0.9976763458507336, "top": 765, "right": 3790, "bottom": 3180, "left": 2185}, {"solidity": 0.996140593143609, "top": 775, "right": 5610, "bottom": 3190, "left": 3990}, {"solidity": 0.9956158779481267, "top": 740, "right": 1980, "bottom": 3155, "left": 370}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722586f.jpg"} -{"rects": [{"solidity": 0.9976767234721722, "top": 370, "right": 3090, "bottom": 1995, "left": 675}, {"solidity": 0.9966376582278481, "top": 4125, "right": 3055, "bottom": 5745, "left": 650}, {"solidity": 0.9957884506357819, "top": 2220, "right": 3075, "bottom": 3850, "left": 665}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719525f.jpg"} -{"rects": [{"solidity": 0.9976767716542173, "top": 665, "right": 2695, "bottom": 3710, "left": 285}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/706545f.jpg"} -{"rects": [{"solidity": 0.9976769110448107, "top": 685, "right": 3030, "bottom": 2485, "left": 1820}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508139.jpg"} -{"rects": [{"solidity": 0.9976770565398687, "top": 835, "right": 2025, "bottom": 3260, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717979f.jpg"} -{"rects": [{"solidity": 0.9976771519379091, "top": 650, "right": 3595, "bottom": 2615, "left": 830}], "shape": {"h": 3000, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509335.jpg"} -{"rects": [{"solidity": 0.9976772277152506, "top": 465, "right": 5120, "bottom": 3750, "left": 1080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726170f.jpg"} -{"rects": [{"solidity": 0.9976773225157379, "top": 450, "right": 3135, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729922f.jpg"} -{"rects": [{"solidity": 0.9976774121334229, "top": 430, "right": 4985, "bottom": 1875, "left": 3115}, {"solidity": 0.9964369656619003, "top": 440, "right": 2435, "bottom": 1875, "left": 545}, {"solidity": 0.9954383023365821, "top": 2050, "right": 4955, "bottom": 3495, "left": 3085}, {"solidity": 0.9970526797722266, "top": 2050, "right": 2410, "bottom": 3495, "left": 575}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731460f.jpg"} -{"rects": [{"solidity": 0.9976774478562681, "top": 570, "right": 3195, "bottom": 2185, "left": 795}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704936f.jpg"} -{"rects": [{"solidity": 0.9976775741404371, "top": 430, "right": 5135, "bottom": 3660, "left": 1035}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732715f.jpg"} -{"rects": [{"solidity": 0.9976779644995706, "top": 625, "right": 2580, "bottom": 3680, "left": 565}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719324f.jpg"} -{"rects": [{"solidity": 0.9976781829557391, "top": 435, "right": 5120, "bottom": 3670, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732672f.jpg"} -{"rects": [{"solidity": 0.9976782689173047, "top": 330, "right": 3195, "bottom": 1955, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703632f.jpg"} -{"rects": [{"solidity": 0.9976783684645588, "top": 2275, "right": 3035, "bottom": 3890, "left": 620}, {"solidity": 0.9964864573357868, "top": 425, "right": 3035, "bottom": 2030, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729316f.jpg"} -{"rects": [{"solidity": 0.9976784972392512, "top": 815, "right": 3975, "bottom": 3255, "left": 2345}, {"solidity": 0.997255377139168, "top": 820, "right": 2070, "bottom": 3250, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715186f.jpg"} -{"rects": [{"solidity": 0.9976785216826075, "top": 2295, "right": 2755, "bottom": 3700, "left": 920}, {"solidity": 0.9969746289155096, "top": 2300, "right": 4925, "bottom": 3730, "left": 3120}, {"solidity": 0.995192590414584, "top": 690, "right": 2740, "bottom": 2125, "left": 945}, {"solidity": 0.9966167087104911, "top": 695, "right": 4910, "bottom": 2125, "left": 3125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725545f.jpg"} -{"rects": [{"solidity": 0.9976785775699006, "top": 1195, "right": 2610, "bottom": 4200, "left": 175}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508945.jpg"} -{"rects": [{"solidity": 0.9976786017743947, "top": 500, "right": 3035, "bottom": 2120, "left": 610}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703921f.jpg"} -{"rects": [{"solidity": 0.9976786265499873, "top": 410, "right": 3330, "bottom": 2240, "left": 590}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/702235f.jpg"} -{"rects": [{"solidity": 0.9976788801781105, "top": 1100, "right": 3465, "bottom": 5145, "left": 165}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712392f.jpg"} -{"rects": [{"solidity": 0.9976789080860515, "top": 455, "right": 3165, "bottom": 2065, "left": 745}, {"solidity": 0.9959955877928937, "top": 2290, "right": 3150, "bottom": 3865, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723090f.jpg"} -{"rects": [{"solidity": 0.9976789748370881, "top": 820, "right": 2050, "bottom": 3230, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720324f.jpg"} -{"rects": [{"solidity": 0.9976792924209953, "top": 325, "right": 3350, "bottom": 2790, "left": 325}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509951.jpg"} -{"rects": [{"solidity": 0.997679612979477, "top": 815, "right": 2010, "bottom": 3200, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713076f.jpg"} -{"rects": [{"solidity": 0.9976798143851509, "top": 810, "right": 2140, "bottom": 3215, "left": 535}, {"solidity": 0.9936254434474123, "top": 820, "right": 3970, "bottom": 3225, "left": 2345}, {"solidity": 0.9957007533885478, "top": 835, "right": 5765, "bottom": 3205, "left": 4190}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722233f.jpg"} -{"rects": [{"solidity": 0.9976799125330279, "top": 455, "right": 3175, "bottom": 2060, "left": 765}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/706517f.jpg"} -{"rects": [{"solidity": 0.9976799267651204, "top": 355, "right": 5380, "bottom": 3590, "left": 1350}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732578f.jpg"} -{"rects": [{"solidity": 0.9976802535689521, "top": 410, "right": 4870, "bottom": 3660, "left": 865}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701784f.jpg"} -{"rects": [{"solidity": 0.9976805121429189, "top": 780, "right": 3765, "bottom": 3195, "left": 2135}, {"solidity": 0.9966629733854968, "top": 770, "right": 1905, "bottom": 3180, "left": 305}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730112f.jpg"} -{"rects": [{"solidity": 0.9976809114243257, "top": 405, "right": 3065, "bottom": 2025, "left": 645}, {"solidity": 0.9963912630579297, "top": 4135, "right": 3030, "bottom": 5755, "left": 610}, {"solidity": 0.9940653787646325, "top": 2280, "right": 3035, "bottom": 3895, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733639f.jpg"} -{"rects": [{"solidity": 0.9976809443942717, "top": 415, "right": 3085, "bottom": 2030, "left": 665}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729557f.jpg"} -{"rects": [{"solidity": 0.9976810199663219, "top": 2140, "right": 2715, "bottom": 3560, "left": 870}, {"solidity": 0.9951078220103219, "top": 670, "right": 2695, "bottom": 2085, "left": 895}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725490f.jpg"} -{"rects": [{"solidity": 0.9976811724291402, "top": 980, "right": 3595, "bottom": 5075, "left": 315}], "shape": {"h": 6250, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/730091f.jpg"} -{"rects": [{"solidity": 0.9976814587248344, "top": 2215, "right": 3175, "bottom": 3830, "left": 745}, {"solidity": 0.9980792270655536, "top": 420, "right": 3170, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706105f.jpg"} -{"rects": [{"solidity": 0.9976815005611347, "top": 810, "right": 2075, "bottom": 3225, "left": 455}, {"solidity": 0.9997284453496266, "top": 820, "right": 3890, "bottom": 3220, "left": 2270}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730563f.jpg"} -{"rects": [{"solidity": 0.997681591173229, "top": 415, "right": 5090, "bottom": 3615, "left": 1125}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724591f.jpg"} -{"rects": [{"solidity": 0.9976819185496323, "top": 650, "right": 2540, "bottom": 3695, "left": 545}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721964f.jpg"} -{"rects": [{"solidity": 0.9976822328255395, "top": 2300, "right": 3175, "bottom": 3910, "left": 760}, {"solidity": 0.9973770066061777, "top": 495, "right": 3185, "bottom": 2105, "left": 770}, {"solidity": 0.9967803977881885, "top": 4110, "right": 3175, "bottom": 5720, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732306f.jpg"} -{"rects": [{"solidity": 0.9976824160242516, "top": 425, "right": 3265, "bottom": 2030, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725029f.jpg"} -{"rects": [{"solidity": 0.997682417029696, "top": 440, "right": 5120, "bottom": 3765, "left": 1040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714460f.jpg"} -{"rects": [{"solidity": 0.9976824683297085, "top": 920, "right": 3595, "bottom": 5035, "left": 305}], "shape": {"h": 6240, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/703893f.jpg"} -{"rects": [{"solidity": 0.9976825909393104, "top": 490, "right": 5085, "bottom": 3755, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703251f.jpg"} -{"rects": [{"solidity": 0.9976828185352725, "top": 615, "right": 2665, "bottom": 3530, "left": 290}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507511.jpg"} -{"rects": [{"solidity": 0.9976828557809438, "top": 395, "right": 2870, "bottom": 1990, "left": 485}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705423f.jpg"} -{"rects": [{"solidity": 0.9976829624090393, "top": 310, "right": 5265, "bottom": 3580, "left": 1145}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704725f.jpg"} -{"rects": [{"solidity": 0.9976829876586912, "top": 450, "right": 3080, "bottom": 2075, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728573f.jpg"} -{"rects": [{"solidity": 0.9976830368442572, "top": 2260, "right": 3035, "bottom": 3865, "left": 620}, {"solidity": 0.9972242740972382, "top": 395, "right": 3035, "bottom": 2000, "left": 625}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709287f.jpg"} -{"rects": [{"solidity": 0.9976831573238862, "top": 415, "right": 3205, "bottom": 2050, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725752f.jpg"} -{"rects": [{"solidity": 0.9976832140665216, "top": 830, "right": 3880, "bottom": 3250, "left": 2260}, {"solidity": 0.9959746812338661, "top": 835, "right": 1995, "bottom": 3245, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728330f.jpg"} -{"rects": [{"solidity": 0.997683390167062, "top": 2260, "right": 3225, "bottom": 3875, "left": 820}, {"solidity": 0.9986663977777633, "top": 400, "right": 3225, "bottom": 2005, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724753f.jpg"} -{"rects": [{"solidity": 0.9976835725732699, "top": 370, "right": 5415, "bottom": 3680, "left": 1400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723668f.jpg"} -{"rects": [{"solidity": 0.9976836638703109, "top": 415, "right": 3255, "bottom": 2030, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725936f.jpg"} -{"rects": [{"solidity": 0.9976838560248775, "top": 395, "right": 3005, "bottom": 2020, "left": 600}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702478f.jpg"} -{"rects": [{"solidity": 0.9976838569197387, "top": 355, "right": 5135, "bottom": 3625, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714224f.jpg"} -{"rects": [{"solidity": 0.9976839177855994, "top": 970, "right": 2200, "bottom": 2995, "left": 770}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720641f.jpg"} -{"rects": [{"solidity": 0.9976839609379762, "top": 425, "right": 5140, "bottom": 3675, "left": 1175}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726046f.jpg"} -{"rects": [{"solidity": 0.9976842407833246, "top": 390, "right": 4795, "bottom": 3760, "left": 1575}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717200f.jpg"} -{"rects": [{"solidity": 0.9976846815605835, "top": 385, "right": 5165, "bottom": 3700, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727842f.jpg"} -{"rects": [{"solidity": 0.9976848325064089, "top": 260, "right": 3875, "bottom": 2755, "left": 825}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509769.jpg"} -{"rects": [{"solidity": 0.9976848730051697, "top": 405, "right": 3115, "bottom": 2025, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700985f.jpg"} -{"rects": [{"solidity": 0.9976852150780634, "top": 435, "right": 3135, "bottom": 2045, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729817f.jpg"} -{"rects": [{"solidity": 0.9976853813967467, "top": 465, "right": 5095, "bottom": 3680, "left": 1040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717446f.jpg"} -{"rects": [{"solidity": 0.9976854537731442, "top": 865, "right": 3470, "bottom": 4805, "left": 310}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714686f.jpg"} -{"rects": [{"solidity": 0.9976855373599588, "top": 2225, "right": 3265, "bottom": 3835, "left": 850}, {"solidity": 0.9960714413264892, "top": 385, "right": 3260, "bottom": 1995, "left": 845}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727800f.jpg"} -{"rects": [{"solidity": 0.9976855653173495, "top": 640, "right": 2610, "bottom": 2040, "left": 850}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702917f.jpg"} -{"rects": [{"solidity": 0.9976856018069037, "top": 755, "right": 2570, "bottom": 3480, "left": 750}], "shape": {"h": 4410, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711541f.jpg"} -{"rects": [{"solidity": 0.9976856339780028, "top": 1040, "right": 3505, "bottom": 5090, "left": 190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721541f.jpg"} -{"rects": [{"solidity": 0.9976856871837064, "top": 425, "right": 3470, "bottom": 2810, "left": 275}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723459f.jpg"} -{"rects": [{"solidity": 0.9976859178742097, "top": 400, "right": 5090, "bottom": 3645, "left": 1070}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721350f.jpg"} -{"rects": [{"solidity": 0.9976859584150267, "top": 2240, "right": 5010, "bottom": 3655, "left": 3170}, {"solidity": 0.9964763711033026, "top": 655, "right": 2845, "bottom": 2065, "left": 1010}, {"solidity": 0.994496562215693, "top": 665, "right": 5005, "bottom": 2075, "left": 3195}, {"solidity": 0.9952758833846788, "top": 2265, "right": 2840, "bottom": 3660, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725519f.jpg"} -{"rects": [{"solidity": 0.9976860541884037, "top": 800, "right": 2315, "bottom": 3205, "left": 695}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732454f.jpg"} -{"rects": [{"solidity": 0.9976861835850095, "top": 685, "right": 3480, "bottom": 2685, "left": 840}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508461.jpg"} -{"rects": [{"solidity": 0.9976862229035011, "top": 705, "right": 2655, "bottom": 2145, "left": 840}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707422f.jpg"} -{"rects": [{"solidity": 0.9976864243391549, "top": 1375, "right": 3285, "bottom": 4800, "left": 680}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722714f.jpg"} -{"rects": [{"solidity": 0.9976866941648158, "top": 345, "right": 2395, "bottom": 1560, "left": 595}], "shape": {"h": 4645, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715792f.jpg"} -{"rects": [{"solidity": 0.9976867544200662, "top": 805, "right": 2085, "bottom": 3230, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720308f.jpg"} -{"rects": [{"solidity": 0.9976867999526172, "top": 475, "right": 3165, "bottom": 2075, "left": 770}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710549f.jpg"} -{"rects": [{"solidity": 0.9976870792620882, "top": 435, "right": 5170, "bottom": 3725, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727456f.jpg"} -{"rects": [{"solidity": 0.9976871010903666, "top": 445, "right": 3170, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729389f.jpg"} -{"rects": [{"solidity": 0.9976871270385228, "top": 1055, "right": 3620, "bottom": 5085, "left": 340}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722243f.jpg"} -{"rects": [{"solidity": 0.9976872166444365, "top": 395, "right": 3135, "bottom": 2040, "left": 710}, {"solidity": 0.9984559942236778, "top": 2285, "right": 3115, "bottom": 3905, "left": 705}, {"solidity": 0.9973446216489158, "top": 4145, "right": 3105, "bottom": 5770, "left": 700}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701136f.jpg"} -{"rects": [{"solidity": 0.9976873700564697, "top": 310, "right": 3125, "bottom": 1925, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700644f.jpg"} -{"rects": [{"solidity": 0.9976875218641662, "top": 1050, "right": 3525, "bottom": 5150, "left": 295}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721958f.jpg"} -{"rects": [{"solidity": 0.9976875303531743, "top": 320, "right": 3235, "bottom": 1945, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727783f.jpg"} -{"rects": [{"solidity": 0.9976875413507049, "top": 765, "right": 2020, "bottom": 3185, "left": 385}, {"solidity": 0.9961491438546481, "top": 755, "right": 3855, "bottom": 3160, "left": 2250}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717024f.jpg"} -{"rects": [{"solidity": 0.9976876637100301, "top": 420, "right": 5080, "bottom": 3620, "left": 1015}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708795f.jpg"} -{"rects": [{"solidity": 0.9976878122463156, "top": 550, "right": 2625, "bottom": 3615, "left": 590}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713428f.jpg"} -{"rects": [{"solidity": 0.9976878236232781, "top": 720, "right": 3345, "bottom": 2850, "left": 2070}, {"solidity": 0.9962338392355256, "top": 770, "right": 1790, "bottom": 2810, "left": 575}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713182f.jpg"} -{"rects": [{"solidity": 0.9976878243512974, "top": 795, "right": 2045, "bottom": 3220, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718717f.jpg"} -{"rects": [{"solidity": 0.9976878574909166, "top": 515, "right": 3115, "bottom": 2125, "left": 725}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704199f.jpg"} -{"rects": [{"solidity": 0.997688031255689, "top": 555, "right": 3265, "bottom": 3970, "left": 630}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724786f.jpg"} -{"rects": [{"solidity": 0.9976880383333455, "top": 660, "right": 4850, "bottom": 3330, "left": 980}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713709f.jpg"} -{"rects": [{"solidity": 0.9976880675656862, "top": 890, "right": 3515, "bottom": 4935, "left": 345}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712399f.jpg"} -{"rects": [{"solidity": 0.9976881191960475, "top": 815, "right": 2085, "bottom": 3235, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713459f.jpg"} -{"rects": [{"solidity": 0.9976882595444461, "top": 1215, "right": 3620, "bottom": 5240, "left": 370}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704700f.jpg"} -{"rects": [{"solidity": 0.9976883018642758, "top": 430, "right": 5060, "bottom": 3690, "left": 1045}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730970f.jpg"} -{"rects": [{"solidity": 0.9976883055796157, "top": 405, "right": 2380, "bottom": 1615, "left": 560}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716324f.jpg"} -{"rects": [{"solidity": 0.9976884825567843, "top": 425, "right": 3170, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733915f.jpg"} -{"rects": [{"solidity": 0.9976886948851912, "top": 455, "right": 3150, "bottom": 2075, "left": 735}, {"solidity": 0.9962256022479207, "top": 2315, "right": 3160, "bottom": 3935, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724277f.jpg"} -{"rects": [{"solidity": 0.9976891360629015, "top": 2300, "right": 3125, "bottom": 3925, "left": 700}, {"solidity": 0.9983026692927255, "top": 420, "right": 3120, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724391f.jpg"} -{"rects": [{"solidity": 0.9976897720500596, "top": 370, "right": 5195, "bottom": 3695, "left": 1100}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/719306f.jpg"} -{"rects": [{"solidity": 0.9976899171270718, "top": 965, "right": 2610, "bottom": 3955, "left": 170}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508313.jpg"} -{"rects": [{"solidity": 0.9976901145530627, "top": 425, "right": 2785, "bottom": 3620, "left": 775}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733050f.jpg"} -{"rects": [{"solidity": 0.997690202446962, "top": 840, "right": 2060, "bottom": 3255, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733310f.jpg"} -{"rects": [{"solidity": 0.9976903089211818, "top": 805, "right": 2065, "bottom": 3225, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712118f.jpg"} -{"rects": [{"solidity": 0.9976904440622808, "top": 320, "right": 3810, "bottom": 2725, "left": 760}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716326f.jpg"} -{"rects": [{"solidity": 0.9976904888838245, "top": 670, "right": 2545, "bottom": 3730, "left": 515}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724381f.jpg"} -{"rects": [{"solidity": 0.9976905758931405, "top": 975, "right": 3400, "bottom": 5000, "left": 490}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/712793f.jpg"} -{"rects": [{"solidity": 0.9976906505259826, "top": 370, "right": 3245, "bottom": 1985, "left": 830}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/717978f.jpg"} -{"rects": [{"solidity": 0.9976906569296307, "top": 810, "right": 5655, "bottom": 3230, "left": 4030}, {"solidity": 0.9977657218275033, "top": 825, "right": 3785, "bottom": 3215, "left": 2160}, {"solidity": 0.9977792100666905, "top": 835, "right": 1915, "bottom": 3230, "left": 340}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712066f.jpg"} -{"rects": [{"solidity": 0.9976908832175005, "top": 1000, "right": 3480, "bottom": 5005, "left": 295}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721800f.jpg"} -{"rects": [{"solidity": 0.9976909259193566, "top": 4040, "right": 3080, "bottom": 5665, "left": 675}, {"solidity": 0.995452736690667, "top": 2220, "right": 3080, "bottom": 3800, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734338f.jpg"} -{"rects": [{"solidity": 0.9976910111062366, "top": 415, "right": 2940, "bottom": 2025, "left": 565}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704770f.jpg"} -{"rects": [{"solidity": 0.9976912215536871, "top": 850, "right": 3945, "bottom": 3280, "left": 2315}, {"solidity": 0.9960986200430928, "top": 875, "right": 2005, "bottom": 3265, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728292f.jpg"} -{"rects": [{"solidity": 0.9976912293674084, "top": 435, "right": 5170, "bottom": 3660, "left": 1105}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/711503f.jpg"} -{"rects": [{"solidity": 0.9976912381239342, "top": 1025, "right": 3500, "bottom": 5085, "left": 260}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/716849f.jpg"} -{"rects": [{"solidity": 0.9976912572644415, "top": 455, "right": 3340, "bottom": 2095, "left": 915}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704533f.jpg"} -{"rects": [{"solidity": 0.9976912971658234, "top": 800, "right": 2055, "bottom": 3205, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712398f.jpg"} -{"rects": [{"solidity": 0.9976912988926748, "top": 485, "right": 5085, "bottom": 3590, "left": 1090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711481f.jpg"} -{"rects": [{"solidity": 0.9976913329024574, "top": 775, "right": 3665, "bottom": 4850, "left": 345}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725295f.jpg"} -{"rects": [{"solidity": 0.997691333238517, "top": 430, "right": 3090, "bottom": 2015, "left": 685}, {"solidity": 0.9960432131495228, "top": 2275, "right": 3095, "bottom": 3860, "left": 695}, {"solidity": 0.9957727319592772, "top": 4125, "right": 3090, "bottom": 5740, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728742f.jpg"} -{"rects": [{"solidity": 0.997691399646189, "top": 800, "right": 2055, "bottom": 3205, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724489f.jpg"} -{"rects": [{"solidity": 0.997691432287433, "top": 380, "right": 3155, "bottom": 1985, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715309f.jpg"} -{"rects": [{"solidity": 0.9976915280357845, "top": 400, "right": 3180, "bottom": 2025, "left": 755}, {"solidity": 0.9950847430294625, "top": 2275, "right": 3175, "bottom": 3895, "left": 760}, {"solidity": 0.9962955666297407, "top": 4110, "right": 3165, "bottom": 5740, "left": 745}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/701067f.jpg"} -{"rects": [{"solidity": 0.9976916529253695, "top": 440, "right": 5085, "bottom": 3710, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725013f.jpg"} -{"rects": [{"solidity": 0.9976919320626879, "top": 380, "right": 5175, "bottom": 3610, "left": 1075}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732607f.jpg"} -{"rects": [{"solidity": 0.9976920191947071, "top": 775, "right": 3750, "bottom": 3200, "left": 2130}, {"solidity": 0.9985483236279343, "top": 815, "right": 5615, "bottom": 3180, "left": 4005}, {"solidity": 0.9964429516889368, "top": 790, "right": 1885, "bottom": 3185, "left": 295}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709568f.jpg"} -{"rects": [{"solidity": 0.9976924197478546, "top": 780, "right": 2000, "bottom": 3175, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730193f.jpg"} -{"rects": [{"solidity": 0.9976925874846552, "top": 1155, "right": 3635, "bottom": 5205, "left": 350}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/727461f.jpg"} -{"rects": [{"solidity": 0.997692640686576, "top": 385, "right": 3280, "bottom": 3840, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714868f.jpg"} -{"rects": [{"solidity": 0.9976926844185495, "top": 630, "right": 5025, "bottom": 3505, "left": 1215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733746f.jpg"} -{"rects": [{"solidity": 0.9976927117404236, "top": 410, "right": 3165, "bottom": 2025, "left": 745}, {"solidity": 0.995914002883852, "top": 2210, "right": 3165, "bottom": 3830, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703131f.jpg"} -{"rects": [{"solidity": 0.9976929065963049, "top": 1110, "right": 3485, "bottom": 4920, "left": 475}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712665f.jpg"} -{"rects": [{"solidity": 0.9976929132231017, "top": 490, "right": 5005, "bottom": 3795, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705316f.jpg"} -{"rects": [{"solidity": 0.9976930228535599, "top": 1020, "right": 3375, "bottom": 5070, "left": 505}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713044f.jpg"} -{"rects": [{"solidity": 0.9976932578321757, "top": 315, "right": 3225, "bottom": 1940, "left": 810}, {"solidity": 0.9972055009212456, "top": 2180, "right": 3210, "bottom": 3805, "left": 815}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714876f.jpg"} -{"rects": [{"solidity": 0.9976933255257956, "top": 660, "right": 3835, "bottom": 2925, "left": 395}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711624f.jpg"} -{"rects": [{"solidity": 0.997693529405814, "top": 480, "right": 3170, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721106f.jpg"} -{"rects": [{"solidity": 0.9976936908763975, "top": 770, "right": 3840, "bottom": 3170, "left": 2230}, {"solidity": 0.996174390303664, "top": 755, "right": 5680, "bottom": 3160, "left": 4070}, {"solidity": 0.9959070655425263, "top": 790, "right": 1995, "bottom": 3195, "left": 385}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730432f.jpg"} -{"rects": [{"solidity": 0.9976937242293008, "top": 535, "right": 5065, "bottom": 3745, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700568f.jpg"} -{"rects": [{"solidity": 0.9976939654512984, "top": 1155, "right": 3460, "bottom": 5075, "left": 310}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718148f.jpg"} -{"rects": [{"solidity": 0.9976941137011571, "top": 505, "right": 5135, "bottom": 3785, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712446f.jpg"} -{"rects": [{"solidity": 0.9976942323784912, "top": 455, "right": 3275, "bottom": 3885, "left": 640}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714909f.jpg"} -{"rects": [{"solidity": 0.9976945999275159, "top": 2190, "right": 2610, "bottom": 3580, "left": 810}, {"solidity": 0.9966593043907004, "top": 2140, "right": 5285, "bottom": 3515, "left": 3455}, {"solidity": 0.9958141227857317, "top": 740, "right": 2610, "bottom": 2125, "left": 810}, {"solidity": 0.9954105952666549, "top": 735, "right": 5265, "bottom": 2090, "left": 3475}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727497f.jpg"} -{"rects": [{"solidity": 0.9976948640656191, "top": 345, "right": 2405, "bottom": 1570, "left": 600}, {"solidity": 0.9971901575232098, "top": 1680, "right": 2405, "bottom": 2905, "left": 600}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715822f.jpg"} -{"rects": [{"solidity": 0.9976952341399198, "top": 490, "right": 5045, "bottom": 3695, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708264f.jpg"} -{"rects": [{"solidity": 0.9976953846778615, "top": 470, "right": 2600, "bottom": 3260, "left": 380}, {"solidity": 0.9351834751601767, "top": 3110, "right": 2860, "bottom": 4490, "left": 130}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509391.jpg"} -{"rects": [{"solidity": 0.9976954400309879, "top": 750, "right": 2005, "bottom": 3170, "left": 405}, {"solidity": 0.9972698971792211, "top": 750, "right": 3835, "bottom": 3160, "left": 2240}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722511f.jpg"} -{"rects": [{"solidity": 0.9976958979105536, "top": 450, "right": 3175, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724493f.jpg"} -{"rects": [{"solidity": 0.9976960086738497, "top": 615, "right": 2920, "bottom": 3625, "left": 880}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717855f.jpg"} -{"rects": [{"solidity": 0.9976962747715908, "top": 765, "right": 2685, "bottom": 3920, "left": 240}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507653.jpg"} -{"rects": [{"solidity": 0.9976963273110906, "top": 745, "right": 2550, "bottom": 2225, "left": 455}, {"solidity": 0.9945354732212986, "top": 2450, "right": 2540, "bottom": 3905, "left": 480}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716257f.jpg"} -{"rects": [{"solidity": 0.9976965050715721, "top": 415, "right": 5130, "bottom": 3680, "left": 1055}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/716952f.jpg"} -{"rects": [{"solidity": 0.9976967954348072, "top": 545, "right": 5375, "bottom": 3480, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721538f.jpg"} -{"rects": [{"solidity": 0.9976968672332542, "top": 295, "right": 3870, "bottom": 2765, "left": 850}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509855.jpg"} -{"rects": [{"solidity": 0.9976969060642495, "top": 405, "right": 3070, "bottom": 1980, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728592f.jpg"} -{"rects": [{"solidity": 0.9976971155337832, "top": 325, "right": 4150, "bottom": 2745, "left": 1135}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517235.jpg"} -{"rects": [{"solidity": 0.9976972135007849, "top": 465, "right": 5075, "bottom": 3680, "left": 1075}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720771f.jpg"} -{"rects": [{"solidity": 0.9976972981851031, "top": 420, "right": 3170, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/728833f.jpg"} -{"rects": [{"solidity": 0.9976973084238776, "top": 445, "right": 3180, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702547f.jpg"} -{"rects": [{"solidity": 0.997697415162828, "top": 410, "right": 3215, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722396f.jpg"} -{"rects": [{"solidity": 0.9976975631671022, "top": 1195, "right": 3610, "bottom": 5240, "left": 325}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706271f.jpg"} -{"rects": [{"solidity": 0.9976976954287435, "top": 450, "right": 3185, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705947f.jpg"} -{"rects": [{"solidity": 0.9976978730250085, "top": 850, "right": 3295, "bottom": 2795, "left": 435}, {"solidity": 0.9954984379763141, "top": 3305, "right": 3260, "bottom": 5275, "left": 415}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703572f.jpg"} -{"rects": [{"solidity": 0.9976981139385174, "top": 385, "right": 3140, "bottom": 2000, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734667f.jpg"} -{"rects": [{"solidity": 0.9976984394839475, "top": 1020, "right": 3545, "bottom": 5030, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721291f.jpg"} -{"rects": [{"solidity": 0.9976985051233732, "top": 445, "right": 5190, "bottom": 3705, "left": 1130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708226f.jpg"} -{"rects": [{"solidity": 0.9976985142532168, "top": 665, "right": 2855, "bottom": 2115, "left": 895}, {"solidity": 0.9959970677743963, "top": 2130, "right": 2870, "bottom": 3575, "left": 900}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706765f.jpg"} -{"rects": [{"solidity": 0.997698553997134, "top": 340, "right": 4075, "bottom": 2975, "left": 770}], "shape": {"h": 3235, "w": 5045}, "file": "/usr/local/google/home/danvk/milstein/732283f.jpg"} -{"rects": [{"solidity": 0.9976986790214823, "top": 755, "right": 2050, "bottom": 3120, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714022f.jpg"} -{"rects": [{"solidity": 0.997698773642132, "top": 2280, "right": 3045, "bottom": 3900, "left": 620}, {"solidity": 0.9986838921952872, "top": 410, "right": 3035, "bottom": 2025, "left": 620}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730631f.jpg"} -{"rects": [{"solidity": 0.9976988580823604, "top": 395, "right": 2855, "bottom": 2820, "left": 1235}, {"solidity": 0.9973560924335879, "top": 3185, "right": 3285, "bottom": 4805, "left": 870}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707930f.jpg"} -{"rects": [{"solidity": 0.9976990455420225, "top": 390, "right": 3290, "bottom": 2000, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725599f.jpg"} -{"rects": [{"solidity": 0.997699332292249, "top": 865, "right": 2040, "bottom": 3285, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728615f.jpg"} -{"rects": [{"solidity": 0.9976994101249057, "top": 450, "right": 4990, "bottom": 3695, "left": 950}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718536f.jpg"} -{"rects": [{"solidity": 0.9976994439917324, "top": 880, "right": 3515, "bottom": 4935, "left": 320}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711458f.jpg"} -{"rects": [{"solidity": 0.9976995953466467, "top": 4085, "right": 3075, "bottom": 5720, "left": 665}, {"solidity": 0.9994638413997913, "top": 2245, "right": 3070, "bottom": 3870, "left": 660}, {"solidity": 0.9956302953328725, "top": 390, "right": 3090, "bottom": 2025, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726630f.jpg"} -{"rects": [{"solidity": 0.9976996637477884, "top": 780, "right": 3850, "bottom": 3220, "left": 2235}, {"solidity": 0.9973660712856964, "top": 780, "right": 5660, "bottom": 3220, "left": 4045}, {"solidity": 0.9994359878431208, "top": 785, "right": 2035, "bottom": 3215, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734519f.jpg"} -{"rects": [{"solidity": 0.997699782900858, "top": 800, "right": 3910, "bottom": 3215, "left": 2295}, {"solidity": 0.9965558091266217, "top": 795, "right": 2100, "bottom": 3210, "left": 485}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722941f.jpg"} -{"rects": [{"solidity": 0.9976999803294104, "top": 1035, "right": 3560, "bottom": 5055, "left": 300}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722285f.jpg"} -{"rects": [{"solidity": 0.9977001077925423, "top": 465, "right": 5090, "bottom": 3690, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734675f.jpg"} -{"rects": [{"solidity": 0.9977001562464471, "top": 690, "right": 2895, "bottom": 3090, "left": 1280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712472f.jpg"} -{"rects": [{"solidity": 0.9977001881664227, "top": 655, "right": 2690, "bottom": 2075, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707199f.jpg"} -{"rects": [{"solidity": 0.9977005297766419, "top": 425, "right": 3325, "bottom": 2005, "left": 930}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726015f.jpg"} -{"rects": [{"solidity": 0.9977007334062592, "top": 330, "right": 4060, "bottom": 2760, "left": 845}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508769.jpg"} -{"rects": [{"solidity": 0.9977008270500144, "top": 790, "right": 2035, "bottom": 3195, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721957f.jpg"} -{"rects": [{"solidity": 0.997700927703709, "top": 750, "right": 2520, "bottom": 3525, "left": 495}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710893f.jpg"} -{"rects": [{"solidity": 0.9977010354871669, "top": 375, "right": 5905, "bottom": 3610, "left": 3860}, {"solidity": 0.9970863060199169, "top": 345, "right": 3485, "bottom": 3590, "left": 1430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724962f.jpg"} -{"rects": [{"solidity": 0.9977010973212926, "top": 455, "right": 3245, "bottom": 2065, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734189f.jpg"} -{"rects": [{"solidity": 0.9977013691474341, "top": 970, "right": 3535, "bottom": 5015, "left": 245}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714445f.jpg"} -{"rects": [{"solidity": 0.9977013862508128, "top": 2220, "right": 3030, "bottom": 3840, "left": 615}, {"solidity": 0.9967151953954136, "top": 380, "right": 3035, "bottom": 1980, "left": 620}, {"solidity": 0.9956024225707614, "top": 4085, "right": 3020, "bottom": 5695, "left": 610}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730625f.jpg"} -{"rects": [{"solidity": 0.9977016567183441, "top": 1245, "right": 3520, "bottom": 5245, "left": 325}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/733807f.jpg"} -{"rects": [{"solidity": 0.997701691319465, "top": 970, "right": 2645, "bottom": 4025, "left": 335}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507871.jpg"} -{"rects": [{"solidity": 0.9977019370311354, "top": 400, "right": 3185, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701243f.jpg"} -{"rects": [{"solidity": 0.9977019565286777, "top": 510, "right": 3180, "bottom": 2135, "left": 750}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707884f.jpg"} -{"rects": [{"solidity": 0.9977021551769628, "top": 1050, "right": 3520, "bottom": 5085, "left": 255}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/701685f.jpg"} -{"rects": [{"solidity": 0.9977022193915046, "top": 680, "right": 5175, "bottom": 2110, "left": 3375}, {"solidity": 0.9963418788228847, "top": 2175, "right": 2665, "bottom": 3590, "left": 855}, {"solidity": 0.9955612893021141, "top": 685, "right": 2665, "bottom": 2105, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733452f.jpg"} -{"rects": [{"solidity": 0.9977023192991787, "top": 1000, "right": 3550, "bottom": 5050, "left": 290}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721312f.jpg"} -{"rects": [{"solidity": 0.9977023961184613, "top": 755, "right": 2035, "bottom": 3180, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720407f.jpg"} -{"rects": [{"solidity": 0.9977024062900696, "top": 470, "right": 3215, "bottom": 2075, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715474f.jpg"} -{"rects": [{"solidity": 0.9977026086508223, "top": 805, "right": 2040, "bottom": 3225, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721038f.jpg"} -{"rects": [{"solidity": 0.9977026106319691, "top": 555, "right": 3430, "bottom": 2545, "left": 380}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713631f.jpg"} -{"rects": [{"solidity": 0.9977027259366613, "top": 550, "right": 5095, "bottom": 3785, "left": 1090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720063f.jpg"} -{"rects": [{"solidity": 0.997702733201088, "top": 740, "right": 2850, "bottom": 3440, "left": 880}, {"solidity": 0.9917238159161876, "top": 1340, "right": 5030, "bottom": 2645, "left": 3360}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723921f.jpg"} -{"rects": [{"solidity": 0.9977027599465607, "top": 830, "right": 3845, "bottom": 3230, "left": 2235}, {"solidity": 0.9975371228106851, "top": 850, "right": 2005, "bottom": 3245, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708603f.jpg"} -{"rects": [{"solidity": 0.9977031308685729, "top": 775, "right": 2735, "bottom": 3945, "left": 265}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508643.jpg"} -{"rects": [{"solidity": 0.9977031654946945, "top": 545, "right": 5060, "bottom": 3805, "left": 935}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720687f.jpg"} -{"rects": [{"solidity": 0.9977034046133306, "top": 750, "right": 2030, "bottom": 3160, "left": 420}, {"solidity": 0.9974830357259147, "top": 750, "right": 3850, "bottom": 3150, "left": 2240}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732479f.jpg"} -{"rects": [{"solidity": 0.997703420299157, "top": 430, "right": 2990, "bottom": 1825, "left": 1185}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726880f.jpg"} -{"rects": [{"solidity": 0.9977034859286583, "top": 1020, "right": 3575, "bottom": 5045, "left": 340}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708014f.jpg"} -{"rects": [{"solidity": 0.9977038375467535, "top": 1095, "right": 3505, "bottom": 5085, "left": 295}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/713704f.jpg"} -{"rects": [{"solidity": 0.9977038770053476, "top": 445, "right": 3260, "bottom": 2025, "left": 875}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726017f.jpg"} -{"rects": [{"solidity": 0.9977038773027975, "top": 660, "right": 1475, "bottom": 2425, "left": 270}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715951f.jpg"} -{"rects": [{"solidity": 0.9977041779888192, "top": 550, "right": 5000, "bottom": 3715, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731437f.jpg"} -{"rects": [{"solidity": 0.9977042227105946, "top": 1060, "right": 3810, "bottom": 5095, "left": 575}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722864f.jpg"} -{"rects": [{"solidity": 0.9977042793170559, "top": 430, "right": 5140, "bottom": 3740, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710437f.jpg"} -{"rects": [{"solidity": 0.997705088967628, "top": 1090, "right": 3550, "bottom": 5105, "left": 295}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707303f.jpg"} -{"rects": [{"solidity": 0.9977053664816156, "top": 395, "right": 3170, "bottom": 2010, "left": 745}, {"solidity": 0.9974318737654788, "top": 2260, "right": 3185, "bottom": 3875, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721178f.jpg"} -{"rects": [{"solidity": 0.9977054563139118, "top": 785, "right": 2070, "bottom": 3190, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709715f.jpg"} -{"rects": [{"solidity": 0.9977055646502275, "top": 415, "right": 3145, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729958f.jpg"} -{"rects": [{"solidity": 0.9977056003679037, "top": 285, "right": 3830, "bottom": 2760, "left": 760}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509935.jpg"} -{"rects": [{"solidity": 0.9977056555269923, "top": 775, "right": 3885, "bottom": 3195, "left": 2265}, {"solidity": 0.997936249455847, "top": 775, "right": 5710, "bottom": 3190, "left": 4095}, {"solidity": 0.9956038014566029, "top": 795, "right": 2060, "bottom": 3220, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719627f.jpg"} -{"rects": [{"solidity": 0.997705813034204, "top": 475, "right": 5010, "bottom": 3620, "left": 975}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730678f.jpg"} -{"rects": [{"solidity": 0.9977059984717269, "top": 490, "right": 3085, "bottom": 3720, "left": 635}, {"solidity": 0.9717903766300836, "top": 470, "right": 5495, "bottom": 3030, "left": 3375}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716962f.jpg"} -{"rects": [{"solidity": 0.9977061735789426, "top": 815, "right": 2040, "bottom": 3240, "left": 405}, {"solidity": 0.9964709850693074, "top": 820, "right": 3850, "bottom": 3255, "left": 2215}, {"solidity": 0.9967747927796354, "top": 840, "right": 5660, "bottom": 3270, "left": 4035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713403f.jpg"} -{"rects": [{"solidity": 0.9977065086533777, "top": 380, "right": 5155, "bottom": 3615, "left": 1135}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727589f.jpg"} -{"rects": [{"solidity": 0.9977065386244881, "top": 1365, "right": 3335, "bottom": 4755, "left": 705}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722322f.jpg"} -{"rects": [{"solidity": 0.9977068871893175, "top": 420, "right": 3175, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/703757f.jpg"} -{"rects": [{"solidity": 0.9977073368463721, "top": 760, "right": 2085, "bottom": 3170, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720794f.jpg"} -{"rects": [{"solidity": 0.9977075005878203, "top": 440, "right": 5075, "bottom": 3680, "left": 1050}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712998f.jpg"} -{"rects": [{"solidity": 0.9977075885036599, "top": 420, "right": 5115, "bottom": 3730, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714368f.jpg"} -{"rects": [{"solidity": 0.9977075895862824, "top": 330, "right": 3100, "bottom": 1950, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710725f.jpg"} -{"rects": [{"solidity": 0.9977076924387936, "top": 450, "right": 5055, "bottom": 3740, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710939f.jpg"} -{"rects": [{"solidity": 0.997707826410328, "top": 745, "right": 3875, "bottom": 3180, "left": 2260}, {"solidity": 0.9954988892733229, "top": 755, "right": 2015, "bottom": 3175, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708020f.jpg"} -{"rects": [{"solidity": 0.9977080493230862, "top": 385, "right": 5800, "bottom": 3615, "left": 3765}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703741f.jpg"} -{"rects": [{"solidity": 0.9977080982664889, "top": 2235, "right": 3105, "bottom": 3855, "left": 680}, {"solidity": 0.9958207822852605, "top": 4110, "right": 3095, "bottom": 5735, "left": 665}, {"solidity": 0.9982544085916841, "top": 400, "right": 3105, "bottom": 2005, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734823f.jpg"} -{"rects": [{"solidity": 0.9977081211223261, "top": 570, "right": 5080, "bottom": 3520, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718407f.jpg"} -{"rects": [{"solidity": 0.9977082820323402, "top": 450, "right": 3210, "bottom": 2050, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714808f.jpg"} -{"rects": [{"solidity": 0.9977083586978294, "top": 560, "right": 5340, "bottom": 3495, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720735f.jpg"} -{"rects": [{"solidity": 0.9977084793035402, "top": 1305, "right": 5585, "bottom": 2880, "left": 3220}, {"solidity": 0.9965261535672196, "top": 1320, "right": 2840, "bottom": 2915, "left": 660}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719872f.jpg"} -{"rects": [{"solidity": 0.9977085068658388, "top": 390, "right": 3770, "bottom": 2805, "left": 750}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1510017.jpg"} -{"rects": [{"solidity": 0.9977085167883881, "top": 765, "right": 2010, "bottom": 3160, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713448f.jpg"} -{"rects": [{"solidity": 0.9977085626379851, "top": 500, "right": 3415, "bottom": 2120, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704181f.jpg"} -{"rects": [{"solidity": 0.9977086566754958, "top": 495, "right": 5030, "bottom": 3670, "left": 955}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731852f.jpg"} -{"rects": [{"solidity": 0.9977087875297111, "top": 480, "right": 3005, "bottom": 2120, "left": 580}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706192f.jpg"} -{"rects": [{"solidity": 0.9977090367428004, "top": 1110, "right": 3500, "bottom": 5090, "left": 315}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702011f.jpg"} -{"rects": [{"solidity": 0.9977092609019856, "top": 315, "right": 5290, "bottom": 3610, "left": 1220}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730022f.jpg"} -{"rects": [{"solidity": 0.9977094492426767, "top": 755, "right": 2055, "bottom": 3185, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702462f.jpg"} -{"rects": [{"solidity": 0.9977096626429848, "top": 870, "right": 2020, "bottom": 3285, "left": 405}, {"solidity": 0.995355517846732, "top": 870, "right": 3880, "bottom": 3285, "left": 2275}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728513f.jpg"} -{"rects": [{"solidity": 0.9977097971952325, "top": 300, "right": 3200, "bottom": 1915, "left": 800}, {"solidity": 0.997132376156733, "top": 2140, "right": 3170, "bottom": 3770, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710328f.jpg"} -{"rects": [{"solidity": 0.997709846309745, "top": 955, "right": 3540, "bottom": 4995, "left": 305}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713346f.jpg"} -{"rects": [{"solidity": 0.997710086924065, "top": 685, "right": 4445, "bottom": 3340, "left": 950}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722225f.jpg"} -{"rects": [{"solidity": 0.997710407897606, "top": 450, "right": 3200, "bottom": 2045, "left": 810}, {"solidity": 0.9950106273637153, "top": 2300, "right": 3190, "bottom": 3900, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709597f.jpg"} -{"rects": [{"solidity": 0.9977105216876908, "top": 870, "right": 3875, "bottom": 3295, "left": 2250}, {"solidity": 0.9975612270539493, "top": 890, "right": 2030, "bottom": 3305, "left": 410}, {"solidity": 0.9967641086795371, "top": 870, "right": 5745, "bottom": 3275, "left": 4115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732050f.jpg"} -{"rects": [{"solidity": 0.9977110709705886, "top": 505, "right": 5045, "bottom": 3570, "left": 1175}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732831f.jpg"} -{"rects": [{"solidity": 0.9977111148521776, "top": 765, "right": 2030, "bottom": 3185, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731834f.jpg"} -{"rects": [{"solidity": 0.9977111808491325, "top": 420, "right": 3170, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719984f.jpg"} -{"rects": [{"solidity": 0.9977112771171914, "top": 605, "right": 2800, "bottom": 1985, "left": 940}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702699f.jpg"} -{"rects": [{"solidity": 0.9977113309352518, "top": 780, "right": 3290, "bottom": 2780, "left": 490}, {"solidity": 0.9967470077652799, "top": 3365, "right": 3290, "bottom": 5365, "left": 495}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726034f.jpg"} -{"rects": [{"solidity": 0.9977116631259582, "top": 785, "right": 2070, "bottom": 3200, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704041f.jpg"} -{"rects": [{"solidity": 0.9977118813249589, "top": 1020, "right": 3550, "bottom": 5035, "left": 295}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722362f.jpg"} -{"rects": [{"solidity": 0.9977118989731334, "top": 445, "right": 5020, "bottom": 3740, "left": 975}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710943f.jpg"} -{"rects": [{"solidity": 0.9977119671743557, "top": 310, "right": 3530, "bottom": 2140, "left": 820}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706410f.jpg"} -{"rects": [{"solidity": 0.9977120982570095, "top": 440, "right": 5110, "bottom": 3775, "left": 1040}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720827f.jpg"} -{"rects": [{"solidity": 0.9977121086245392, "top": 440, "right": 3180, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732160f.jpg"} -{"rects": [{"solidity": 0.9977121210520401, "top": 925, "right": 3490, "bottom": 4985, "left": 265}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709001f.jpg"} -{"rects": [{"solidity": 0.997712337504293, "top": 335, "right": 5035, "bottom": 3565, "left": 970}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726335f.jpg"} -{"rects": [{"solidity": 0.9977123496373961, "top": 520, "right": 4780, "bottom": 3775, "left": 675}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701347f.jpg"} -{"rects": [{"solidity": 0.9977126687157941, "top": 415, "right": 5145, "bottom": 3640, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732660f.jpg"} -{"rects": [{"solidity": 0.9977128253239086, "top": 815, "right": 3895, "bottom": 3225, "left": 2280}, {"solidity": 0.9968616653399971, "top": 820, "right": 2045, "bottom": 3225, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700758f.jpg"} -{"rects": [{"solidity": 0.9977128975778681, "top": 690, "right": 3905, "bottom": 3110, "left": 2295}, {"solidity": 0.9959546299163827, "top": 695, "right": 2050, "bottom": 3120, "left": 440}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726074f.jpg"} -{"rects": [{"solidity": 0.9977131485800969, "top": 425, "right": 3150, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732492f.jpg"} -{"rects": [{"solidity": 0.99771326938957, "top": 770, "right": 2015, "bottom": 3155, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720986f.jpg"} -{"rects": [{"solidity": 0.9977132890848311, "top": 400, "right": 3170, "bottom": 2010, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726259f.jpg"} -{"rects": [{"solidity": 0.9977133484295431, "top": 635, "right": 2520, "bottom": 3700, "left": 480}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714835f.jpg"} -{"rects": [{"solidity": 0.9977133753031632, "top": 795, "right": 2110, "bottom": 3220, "left": 500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701341f.jpg"} -{"rects": [{"solidity": 0.997713380122255, "top": 800, "right": 5680, "bottom": 3195, "left": 4055}, {"solidity": 0.9973737727001891, "top": 800, "right": 3815, "bottom": 3180, "left": 2180}, {"solidity": 0.9951950573932937, "top": 795, "right": 1940, "bottom": 3165, "left": 340}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709412f.jpg"} -{"rects": [{"solidity": 0.997713473214972, "top": 2275, "right": 3080, "bottom": 3905, "left": 665}, {"solidity": 0.9976789605358728, "top": 410, "right": 3075, "bottom": 2030, "left": 660}, {"solidity": 0.9979909690505875, "top": 4150, "right": 3085, "bottom": 5765, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726631f.jpg"} -{"rects": [{"solidity": 0.9977135045781831, "top": 380, "right": 5045, "bottom": 3665, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716602f.jpg"} -{"rects": [{"solidity": 0.9977135310575536, "top": 425, "right": 5020, "bottom": 3715, "left": 990}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725382f.jpg"} -{"rects": [{"solidity": 0.9977135742380939, "top": 460, "right": 5090, "bottom": 3750, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733765f.jpg"} -{"rects": [{"solidity": 0.9977137706128074, "top": 430, "right": 3120, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728915f.jpg"} -{"rects": [{"solidity": 0.9977137721447572, "top": 385, "right": 3530, "bottom": 1990, "left": 1135}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705353f.jpg"} -{"rects": [{"solidity": 0.9977140535151506, "top": 485, "right": 5075, "bottom": 3730, "left": 980}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725137f.jpg"} -{"rects": [{"solidity": 0.9977140791033083, "top": 2115, "right": 2825, "bottom": 3675, "left": 815}, {"solidity": 0.9967062951513797, "top": 2160, "right": 5305, "bottom": 3690, "left": 3345}, {"solidity": 0.996033045036353, "top": 635, "right": 5290, "bottom": 2140, "left": 3340}, {"solidity": 0.9976119584108039, "top": 630, "right": 2820, "bottom": 2095, "left": 835}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733348f.jpg"} -{"rects": [{"solidity": 0.9977140917655165, "top": 515, "right": 4960, "bottom": 3635, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712439f.jpg"} -{"rects": [{"solidity": 0.9977141997573585, "top": 770, "right": 3840, "bottom": 3175, "left": 2235}, {"solidity": 0.9967509391816428, "top": 765, "right": 5680, "bottom": 3165, "left": 4075}, {"solidity": 0.9982350471091516, "top": 770, "right": 2005, "bottom": 3175, "left": 410}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730419f.jpg"} -{"rects": [{"solidity": 0.99771421648558, "top": 705, "right": 4965, "bottom": 3370, "left": 1125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701583f.jpg"} -{"rects": [{"solidity": 0.9977142665768002, "top": 585, "right": 3560, "bottom": 2635, "left": 615}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509127.jpg"} -{"rects": [{"solidity": 0.9977143973432311, "top": 405, "right": 3095, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728535f.jpg"} -{"rects": [{"solidity": 0.9977144954373321, "top": 1005, "right": 2305, "bottom": 2270, "left": 515}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507877.jpg"} -{"rects": [{"solidity": 0.997714497893753, "top": 445, "right": 3165, "bottom": 2070, "left": 740}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715004f.jpg"} -{"rects": [{"solidity": 0.9977151199307406, "top": 400, "right": 2905, "bottom": 2235, "left": 885}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721075f.jpg"} -{"rects": [{"solidity": 0.9977151207267149, "top": 445, "right": 5095, "bottom": 3590, "left": 1125}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732633f.jpg"} -{"rects": [{"solidity": 0.997715471814513, "top": 790, "right": 3935, "bottom": 3225, "left": 2325}, {"solidity": 0.9967496591342333, "top": 795, "right": 2085, "bottom": 3215, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734035f.jpg"} -{"rects": [{"solidity": 0.9977159938723652, "top": 420, "right": 5095, "bottom": 3670, "left": 1005}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732914f.jpg"} -{"rects": [{"solidity": 0.9977160333159812, "top": 500, "right": 3000, "bottom": 2110, "left": 595}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703266f.jpg"} -{"rects": [{"solidity": 0.9977162811338907, "top": 2220, "right": 3200, "bottom": 3830, "left": 785}, {"solidity": 0.9963978555578951, "top": 350, "right": 3210, "bottom": 1965, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733270f.jpg"} -{"rects": [{"solidity": 0.9977165705155289, "top": 390, "right": 5095, "bottom": 3660, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720509f.jpg"} -{"rects": [{"solidity": 0.9977166229846716, "top": 550, "right": 2790, "bottom": 1965, "left": 995}, {"solidity": 0.9969015679178335, "top": 2050, "right": 2785, "bottom": 3455, "left": 995}, {"solidity": 0.99721466873364, "top": 535, "right": 5200, "bottom": 1920, "left": 3410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702759f.jpg"} -{"rects": [{"solidity": 0.9977167550925456, "top": 975, "right": 3490, "bottom": 5045, "left": 265}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718638f.jpg"} -{"rects": [{"solidity": 0.997716756931068, "top": 375, "right": 5100, "bottom": 3600, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707185f.jpg"} -{"rects": [{"solidity": 0.997716894977169, "top": 850, "right": 2025, "bottom": 3270, "left": 400}, {"solidity": 0.9964552734206291, "top": 845, "right": 3880, "bottom": 3275, "left": 2250}, {"solidity": 0.9949469756353531, "top": 870, "right": 5745, "bottom": 3290, "left": 4135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718760f.jpg"} -{"rects": [{"solidity": 0.9977170336785494, "top": 455, "right": 3245, "bottom": 2080, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705326f.jpg"} -{"rects": [{"solidity": 0.9977170342637516, "top": 415, "right": 3200, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/712704f.jpg"} -{"rects": [{"solidity": 0.9977170854538145, "top": 1110, "right": 3585, "bottom": 5145, "left": 285}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725398f.jpg"} -{"rects": [{"solidity": 0.997717216605088, "top": 735, "right": 2040, "bottom": 3160, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732322f.jpg"} -{"rects": [{"solidity": 0.9977172199093862, "top": 320, "right": 5140, "bottom": 3600, "left": 1020}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703784f.jpg"} -{"rects": [{"solidity": 0.9977175833617015, "top": 370, "right": 3180, "bottom": 1985, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715712f.jpg"} -{"rects": [{"solidity": 0.9977176373990415, "top": 1085, "right": 3485, "bottom": 5045, "left": 365}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714881f.jpg"} -{"rects": [{"solidity": 0.9977178269855709, "top": 840, "right": 2020, "bottom": 3265, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707028f.jpg"} -{"rects": [{"solidity": 0.9977182708058804, "top": 1045, "right": 3500, "bottom": 5135, "left": 280}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709163f.jpg"} -{"rects": [{"solidity": 0.9977185864067, "top": 630, "right": 2740, "bottom": 2045, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706985f.jpg"} -{"rects": [{"solidity": 0.9977187042468442, "top": 435, "right": 5210, "bottom": 3680, "left": 1125}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732674f.jpg"} -{"rects": [{"solidity": 0.9977193396760492, "top": 735, "right": 2030, "bottom": 3145, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721811f.jpg"} -{"rects": [{"solidity": 0.9977193886535535, "top": 455, "right": 5220, "bottom": 3480, "left": 1370}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730045f.jpg"} -{"rects": [{"solidity": 0.9977199670365852, "top": 540, "right": 5055, "bottom": 3815, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724897f.jpg"} -{"rects": [{"solidity": 0.9977201773906917, "top": 830, "right": 3895, "bottom": 3255, "left": 2270}, {"solidity": 0.996179511669797, "top": 835, "right": 5765, "bottom": 3260, "left": 4135}, {"solidity": 0.9975288568866177, "top": 835, "right": 2020, "bottom": 3250, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733472f.jpg"} -{"rects": [{"solidity": 0.9977204765888879, "top": 1030, "right": 3515, "bottom": 5035, "left": 265}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713703f.jpg"} -{"rects": [{"solidity": 0.9977207211048108, "top": 825, "right": 2045, "bottom": 3240, "left": 455}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711123f.jpg"} -{"rects": [{"solidity": 0.9977207683714762, "top": 775, "right": 3830, "bottom": 3190, "left": 2210}, {"solidity": 0.9978782543644115, "top": 765, "right": 1950, "bottom": 3175, "left": 330}, {"solidity": 0.9979938226591086, "top": 785, "right": 5720, "bottom": 3205, "left": 4115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710713f.jpg"} -{"rects": [{"solidity": 0.9977207938898451, "top": 835, "right": 2085, "bottom": 3210, "left": 510}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712644f.jpg"} -{"rects": [{"solidity": 0.9977208233284968, "top": 465, "right": 3250, "bottom": 2090, "left": 830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710215f.jpg"} -{"rects": [{"solidity": 0.9977208277158268, "top": 430, "right": 5055, "bottom": 3655, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708596f.jpg"} -{"rects": [{"solidity": 0.9977209323110512, "top": 405, "right": 3210, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700584f.jpg"} -{"rects": [{"solidity": 0.9977210384638775, "top": 795, "right": 3855, "bottom": 3230, "left": 2240}, {"solidity": 0.995709872458285, "top": 815, "right": 5725, "bottom": 3225, "left": 4100}, {"solidity": 0.9962097764595671, "top": 820, "right": 2000, "bottom": 3220, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732208f.jpg"} -{"rects": [{"solidity": 0.9977211081624164, "top": 420, "right": 2295, "bottom": 1625, "left": 505}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716398f.jpg"} -{"rects": [{"solidity": 0.9977212460717362, "top": 650, "right": 3355, "bottom": 2585, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712429f.jpg"} -{"rects": [{"solidity": 0.9977212563150291, "top": 405, "right": 3195, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700490f.jpg"} -{"rects": [{"solidity": 0.9977213905262183, "top": 295, "right": 3205, "bottom": 1920, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704021f.jpg"} -{"rects": [{"solidity": 0.9977214041008334, "top": 805, "right": 3830, "bottom": 3230, "left": 2205}, {"solidity": 0.998651731672078, "top": 820, "right": 2035, "bottom": 3235, "left": 415}, {"solidity": 0.997488707283721, "top": 800, "right": 5645, "bottom": 3215, "left": 4035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706661f.jpg"} -{"rects": [{"solidity": 0.9977215344518652, "top": 740, "right": 2555, "bottom": 3750, "left": 505}, {"solidity": 0.9982449082875365, "top": 930, "right": 4180, "bottom": 3340, "left": 2570}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720094f.jpg"} -{"rects": [{"solidity": 0.9977215585448657, "top": 465, "right": 5140, "bottom": 3755, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707969f.jpg"} -{"rects": [{"solidity": 0.9977219045652258, "top": 2280, "right": 3075, "bottom": 3895, "left": 655}, {"solidity": 0.9959540556236691, "top": 375, "right": 3065, "bottom": 1990, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700707f.jpg"} -{"rects": [{"solidity": 0.9977219860431539, "top": 425, "right": 5135, "bottom": 3665, "left": 1025}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732688f.jpg"} -{"rects": [{"solidity": 0.997722027891107, "top": 440, "right": 3160, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722753f.jpg"} -{"rects": [{"solidity": 0.9977220290514413, "top": 300, "right": 3165, "bottom": 1905, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711591f.jpg"} -{"rects": [{"solidity": 0.9977221397377801, "top": 505, "right": 2970, "bottom": 1925, "left": 1135}, {"solidity": 0.9950547936596944, "top": 2155, "right": 5105, "bottom": 3585, "left": 3275}, {"solidity": 0.9958076880103763, "top": 2165, "right": 2965, "bottom": 3590, "left": 1140}, {"solidity": 0.9923492482090844, "top": 505, "right": 5095, "bottom": 1930, "left": 3295}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725649f.jpg"} -{"rects": [{"solidity": 0.9977221408569907, "top": 290, "right": 3135, "bottom": 1900, "left": 770}, {"solidity": 0.9983685593814481, "top": 2135, "right": 3120, "bottom": 3740, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711529f.jpg"} -{"rects": [{"solidity": 0.9977222815038164, "top": 425, "right": 3230, "bottom": 2030, "left": 825}, {"solidity": 0.9960319787329698, "top": 2245, "right": 3215, "bottom": 3870, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710585f.jpg"} -{"rects": [{"solidity": 0.9977224238620507, "top": 1155, "right": 3550, "bottom": 5155, "left": 320}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/717105f.jpg"} -{"rects": [{"solidity": 0.9977224953134087, "top": 405, "right": 3205, "bottom": 2010, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703908f.jpg"} -{"rects": [{"solidity": 0.9977225104132063, "top": 2170, "right": 3090, "bottom": 3790, "left": 655}, {"solidity": 0.9946614797539443, "top": 415, "right": 3100, "bottom": 2035, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734155f.jpg"} -{"rects": [{"solidity": 0.9977228896823122, "top": 770, "right": 2110, "bottom": 3180, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712236f.jpg"} -{"rects": [{"solidity": 0.9977229255852081, "top": 2300, "right": 3105, "bottom": 3910, "left": 700}, {"solidity": 0.9974470307858052, "top": 440, "right": 3105, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709390f.jpg"} -{"rects": [{"solidity": 0.9977232110535722, "top": 1045, "right": 3545, "bottom": 5095, "left": 285}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721183f.jpg"} -{"rects": [{"solidity": 0.9977232247312804, "top": 320, "right": 5100, "bottom": 3545, "left": 1025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700524f.jpg"} -{"rects": [{"solidity": 0.9977232788972878, "top": 600, "right": 2770, "bottom": 3615, "left": 775}, {"solidity": 0.9967653440517901, "top": 605, "right": 5335, "bottom": 3615, "left": 3450}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718959f.jpg"} -{"rects": [{"solidity": 0.9977233048198466, "top": 1005, "right": 3460, "bottom": 5040, "left": 185}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/712390f.jpg"} -{"rects": [{"solidity": 0.9977235565856524, "top": 960, "right": 3485, "bottom": 2595, "left": 1055}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703227f.jpg"} -{"rects": [{"solidity": 0.9977238055706793, "top": 1140, "right": 3245, "bottom": 4985, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721338f.jpg"} -{"rects": [{"solidity": 0.9977239635075799, "top": 405, "right": 5100, "bottom": 3655, "left": 1025}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717876f.jpg"} -{"rects": [{"solidity": 0.9977239990768667, "top": 975, "right": 2680, "bottom": 3145, "left": 1220}, {"solidity": 0.9983664056118772, "top": 1220, "right": 4725, "bottom": 2780, "left": 3545}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722034f.jpg"} -{"rects": [{"solidity": 0.9977247375037626, "top": 2210, "right": 2160, "bottom": 3705, "left": 255}, {"solidity": 0.998832926901262, "top": 575, "right": 2135, "bottom": 2050, "left": 255}, {"solidity": 0.9975142690951394, "top": 550, "right": 5875, "bottom": 2015, "left": 3980}, {"solidity": 0.9958528841305819, "top": 1130, "right": 3820, "bottom": 3010, "left": 2335}, {"solidity": 0.9972051718628531, "top": 2200, "right": 5885, "bottom": 3595, "left": 3980}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731454f.jpg"} -{"rects": [{"solidity": 0.9977248420029169, "top": 810, "right": 3850, "bottom": 3230, "left": 2245}, {"solidity": 0.9968145999137492, "top": 815, "right": 2030, "bottom": 3225, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733683f.jpg"} -{"rects": [{"solidity": 0.9977249892808918, "top": 755, "right": 1950, "bottom": 3180, "left": 330}, {"solidity": 0.9977460873180063, "top": 780, "right": 3820, "bottom": 3165, "left": 2195}, {"solidity": 0.99844978480135, "top": 795, "right": 5690, "bottom": 3175, "left": 4075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723575f.jpg"} -{"rects": [{"solidity": 0.9977250870502404, "top": 415, "right": 3145, "bottom": 1995, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729429f.jpg"} -{"rects": [{"solidity": 0.9977253558923506, "top": 440, "right": 3535, "bottom": 2255, "left": 820}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711251f.jpg"} -{"rects": [{"solidity": 0.9977254723827145, "top": 485, "right": 4730, "bottom": 3505, "left": 965}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718471f.jpg"} -{"rects": [{"solidity": 0.9977254816532866, "top": 415, "right": 3095, "bottom": 2040, "left": 675}, {"solidity": 0.9985216825241069, "top": 2275, "right": 3085, "bottom": 3900, "left": 670}, {"solidity": 0.9974575888392022, "top": 4140, "right": 3065, "bottom": 5765, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726661f.jpg"} -{"rects": [{"solidity": 0.9977261206737122, "top": 1025, "right": 3495, "bottom": 5100, "left": 275}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713053f.jpg"} -{"rects": [{"solidity": 0.9977261509098687, "top": 1045, "right": 2730, "bottom": 4205, "left": 305}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508773.jpg"} -{"rects": [{"solidity": 0.9977261874985789, "top": 2270, "right": 3265, "bottom": 3875, "left": 850}, {"solidity": 0.9969523721853826, "top": 425, "right": 3255, "bottom": 2015, "left": 845}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725028f.jpg"} -{"rects": [{"solidity": 0.9977262322600335, "top": 845, "right": 3305, "bottom": 2885, "left": 475}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718269f.jpg"} -{"rects": [{"solidity": 0.9977262551966741, "top": 2070, "right": 3140, "bottom": 3695, "left": 715}, {"solidity": 0.9971408148677627, "top": 365, "right": 3130, "bottom": 1990, "left": 705}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702433f.jpg"} -{"rects": [{"solidity": 0.9977262811959634, "top": 2270, "right": 3225, "bottom": 3900, "left": 795}, {"solidity": 0.9967108405346715, "top": 405, "right": 3230, "bottom": 2045, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724633f.jpg"} -{"rects": [{"solidity": 0.9977262924777917, "top": 605, "right": 5000, "bottom": 3735, "left": 1130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719120f.jpg"} -{"rects": [{"solidity": 0.9977263772534379, "top": 490, "right": 3125, "bottom": 2105, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/716701f.jpg"} -{"rects": [{"solidity": 0.9977265177930316, "top": 1400, "right": 3585, "bottom": 5415, "left": 410}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723355f.jpg"} -{"rects": [{"solidity": 0.9977266074738999, "top": 4075, "right": 3115, "bottom": 5680, "left": 705}, {"solidity": 0.997701246869783, "top": 2305, "right": 3115, "bottom": 3910, "left": 710}, {"solidity": 0.9807191095957775, "top": 670, "right": 3010, "bottom": 2105, "left": 820}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723162f.jpg"} -{"rects": [{"solidity": 0.9977268378110375, "top": 1055, "right": 3260, "bottom": 2260, "left": 1455}], "shape": {"h": 3000, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509553.jpg"} -{"rects": [{"solidity": 0.9977269531032814, "top": 480, "right": 3195, "bottom": 2080, "left": 790}, {"solidity": 0.9973345413244572, "top": 2390, "right": 3185, "bottom": 3985, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710457f.jpg"} -{"rects": [{"solidity": 0.9977269945622717, "top": 955, "right": 3680, "bottom": 2390, "left": 1660}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509179.jpg"} -{"rects": [{"solidity": 0.9977270372480962, "top": 2200, "right": 3120, "bottom": 3815, "left": 715}, {"solidity": 0.9954383356638319, "top": 4075, "right": 3120, "bottom": 5685, "left": 705}, {"solidity": 0.9952501925819087, "top": 380, "right": 3120, "bottom": 1975, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729046f.jpg"} -{"rects": [{"solidity": 0.997727191238631, "top": 575, "right": 4190, "bottom": 3625, "left": 2115}, {"solidity": 0.9686074191628645, "top": 875, "right": 1940, "bottom": 2525, "left": 545}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713789f.jpg"} -{"rects": [{"solidity": 0.9977273969212175, "top": 485, "right": 3160, "bottom": 2100, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702947f.jpg"} -{"rects": [{"solidity": 0.9977275715696952, "top": 295, "right": 3685, "bottom": 2720, "left": 605}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509923.jpg"} -{"rects": [{"solidity": 0.99772763380241, "top": 675, "right": 2610, "bottom": 2100, "left": 775}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719303f.jpg"} -{"rects": [{"solidity": 0.9977276711895521, "top": 635, "right": 2670, "bottom": 3720, "left": 290}], "shape": {"h": 4645, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715778f.jpg"} -{"rects": [{"solidity": 0.9977276885007559, "top": 440, "right": 3295, "bottom": 2070, "left": 885}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712202f.jpg"} -{"rects": [{"solidity": 0.9977277080039862, "top": 755, "right": 2070, "bottom": 3170, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711014f.jpg"} -{"rects": [{"solidity": 0.9977279485999276, "top": 505, "right": 4985, "bottom": 3800, "left": 955}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708058f.jpg"} -{"rects": [{"solidity": 0.9977279618993258, "top": 3390, "right": 3215, "bottom": 5395, "left": 400}, {"solidity": 0.999000060534452, "top": 630, "right": 3205, "bottom": 2630, "left": 400}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728728f.jpg"} -{"rects": [{"solidity": 0.9977282473133414, "top": 945, "right": 2135, "bottom": 3350, "left": 530}, {"solidity": 0.9975170992223368, "top": 925, "right": 3910, "bottom": 3325, "left": 2340}, {"solidity": 0.9949449843442776, "top": 935, "right": 5645, "bottom": 3265, "left": 4105}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721009f.jpg"} -{"rects": [{"solidity": 0.9977288727120218, "top": 335, "right": 5165, "bottom": 3590, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704724f.jpg"} -{"rects": [{"solidity": 0.9977290274228823, "top": 785, "right": 2020, "bottom": 3195, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732348f.jpg"} -{"rects": [{"solidity": 0.9977291349642983, "top": 460, "right": 3300, "bottom": 2045, "left": 920}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726453f.jpg"} -{"rects": [{"solidity": 0.9977293221291444, "top": 800, "right": 3840, "bottom": 3200, "left": 2235}, {"solidity": 0.9978646732590384, "top": 800, "right": 2030, "bottom": 3205, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724499f.jpg"} -{"rects": [{"solidity": 0.9977293734678294, "top": 570, "right": 2895, "bottom": 1975, "left": 1110}, {"solidity": 0.9953764530073114, "top": 2260, "right": 2900, "bottom": 3670, "left": 1115}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703613f.jpg"} -{"rects": [{"solidity": 0.9977294725617258, "top": 2165, "right": 3110, "bottom": 3800, "left": 760}, {"solidity": 0.9974791901898485, "top": 300, "right": 3110, "bottom": 1930, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705141f.jpg"} -{"rects": [{"solidity": 0.9977295751341244, "top": 910, "right": 5695, "bottom": 3325, "left": 4095}, {"solidity": 0.9990422689639001, "top": 915, "right": 3820, "bottom": 3310, "left": 2230}, {"solidity": 0.998045068101859, "top": 910, "right": 1975, "bottom": 3285, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729594f.jpg"} -{"rects": [{"solidity": 0.9977295776490988, "top": 400, "right": 3150, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/703077f.jpg"} -{"rects": [{"solidity": 0.9977295943691379, "top": 455, "right": 3180, "bottom": 2080, "left": 755}, {"solidity": 0.9974114454527083, "top": 2280, "right": 3190, "bottom": 3905, "left": 770}, {"solidity": 0.9969600533528442, "top": 4125, "right": 3200, "bottom": 5740, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715353f.jpg"} -{"rects": [{"solidity": 0.9977296847459688, "top": 410, "right": 5105, "bottom": 3720, "left": 1035}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727278f.jpg"} -{"rects": [{"solidity": 0.9977298379639963, "top": 795, "right": 3860, "bottom": 3230, "left": 2235}, {"solidity": 0.9961346406936615, "top": 820, "right": 5700, "bottom": 3250, "left": 4065}, {"solidity": 0.9988999534965763, "top": 785, "right": 2030, "bottom": 3205, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731727f.jpg"} -{"rects": [{"solidity": 0.9977299470641611, "top": 465, "right": 3135, "bottom": 2085, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719716f.jpg"} -{"rects": [{"solidity": 0.9977301501468441, "top": 855, "right": 3840, "bottom": 3270, "left": 2230}, {"solidity": 0.9969387292814104, "top": 850, "right": 1995, "bottom": 3270, "left": 385}, {"solidity": 0.9972554477415838, "top": 870, "right": 5690, "bottom": 3285, "left": 4085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721692f.jpg"} -{"rects": [{"solidity": 0.9977302048855806, "top": 495, "right": 5085, "bottom": 3740, "left": 980}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734490f.jpg"} -{"rects": [{"solidity": 0.9977306536324722, "top": 475, "right": 3175, "bottom": 1895, "left": 835}, {"solidity": 0.9963637925357537, "top": 2295, "right": 2990, "bottom": 3735, "left": 1155}, {"solidity": 0.9978784300382283, "top": 4065, "right": 2965, "bottom": 5460, "left": 1160}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727013f.jpg"} -{"rects": [{"solidity": 0.9977307651419238, "top": 390, "right": 5005, "bottom": 3635, "left": 985}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710239f.jpg"} -{"rects": [{"solidity": 0.997730798694485, "top": 2330, "right": 3250, "bottom": 3950, "left": 830}, {"solidity": 0.9960037892871808, "top": 470, "right": 3255, "bottom": 2090, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734390f.jpg"} -{"rects": [{"solidity": 0.9977308522428979, "top": 525, "right": 5060, "bottom": 3740, "left": 1040}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705959f.jpg"} -{"rects": [{"solidity": 0.9977308809546656, "top": 490, "right": 5005, "bottom": 3550, "left": 1240}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724878f.jpg"} -{"rects": [{"solidity": 0.9977310001267491, "top": 415, "right": 5060, "bottom": 3695, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716805f.jpg"} -{"rects": [{"solidity": 0.9977310677133566, "top": 935, "right": 3510, "bottom": 4925, "left": 270}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711937f.jpg"} -{"rects": [{"solidity": 0.9977312140612572, "top": 965, "right": 2565, "bottom": 3650, "left": 765}], "shape": {"h": 4415, "w": 6915}, "file": "/usr/local/google/home/danvk/milstein/708881f.jpg"} -{"rects": [{"solidity": 0.997731417683751, "top": 425, "right": 5090, "bottom": 3715, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725409f.jpg"} -{"rects": [{"solidity": 0.9977314179282432, "top": 2265, "right": 3085, "bottom": 3885, "left": 670}, {"solidity": 0.9988313634848028, "top": 405, "right": 3095, "bottom": 2010, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723036f.jpg"} -{"rects": [{"solidity": 0.9977314725358721, "top": 600, "right": 5035, "bottom": 3610, "left": 1125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723222f.jpg"} -{"rects": [{"solidity": 0.9977316832628129, "top": 830, "right": 2115, "bottom": 3255, "left": 480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710416f.jpg"} -{"rects": [{"solidity": 0.9977318079447678, "top": 2245, "right": 3205, "bottom": 3870, "left": 790}, {"solidity": 0.9967193334311664, "top": 375, "right": 3200, "bottom": 1975, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734176f.jpg"} -{"rects": [{"solidity": 0.9977318724265476, "top": 585, "right": 2025, "bottom": 1745, "left": 145}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723130f.jpg"} -{"rects": [{"solidity": 0.9977319886116875, "top": 700, "right": 2010, "bottom": 3110, "left": 385}, {"solidity": 0.9975297640498765, "top": 725, "right": 3800, "bottom": 3095, "left": 2180}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704186f.jpg"} -{"rects": [{"solidity": 0.9977321197618322, "top": 865, "right": 3425, "bottom": 2915, "left": 375}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717875f.jpg"} -{"rects": [{"solidity": 0.9977321560724709, "top": 600, "right": 4875, "bottom": 3545, "left": 1270}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704157f.jpg"} -{"rects": [{"solidity": 0.9977322427725639, "top": 540, "right": 5690, "bottom": 4200, "left": 1150}], "shape": {"h": 4425, "w": 6940}, "file": "/usr/local/google/home/danvk/milstein/708866f.jpg"} -{"rects": [{"solidity": 0.9977323147606141, "top": 1090, "right": 3525, "bottom": 5090, "left": 325}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721244f.jpg"} -{"rects": [{"solidity": 0.9977323433671044, "top": 785, "right": 3810, "bottom": 3160, "left": 2215}, {"solidity": 0.994038513150832, "top": 805, "right": 2020, "bottom": 3175, "left": 430}, {"solidity": 0.9968300694413968, "top": 795, "right": 5595, "bottom": 3165, "left": 4015}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718317f.jpg"} -{"rects": [{"solidity": 0.9977323760328616, "top": 775, "right": 2070, "bottom": 3210, "left": 435}, {"solidity": 0.9977289811816276, "top": 780, "right": 3920, "bottom": 3215, "left": 2290}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701936f.jpg"} -{"rects": [{"solidity": 0.9977324116336017, "top": 790, "right": 1950, "bottom": 3200, "left": 335}, {"solidity": 0.997151600363907, "top": 800, "right": 3815, "bottom": 3195, "left": 2225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709513f.jpg"} -{"rects": [{"solidity": 0.9977325443324995, "top": 810, "right": 3940, "bottom": 3220, "left": 2335}, {"solidity": 0.9965435489936397, "top": 815, "right": 5825, "bottom": 3220, "left": 4225}, {"solidity": 0.9982044325613704, "top": 795, "right": 2040, "bottom": 3195, "left": 440}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731721f.jpg"} -{"rects": [{"solidity": 0.9977327694818433, "top": 535, "right": 5135, "bottom": 3750, "left": 1085}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701149f.jpg"} -{"rects": [{"solidity": 0.997733017759101, "top": 415, "right": 3220, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703765f.jpg"} -{"rects": [{"solidity": 0.9977333205091212, "top": 385, "right": 3265, "bottom": 2015, "left": 850}, {"solidity": 0.996428020268011, "top": 2050, "right": 5815, "bottom": 3695, "left": 3390}, {"solidity": 0.9971752141994719, "top": 2090, "right": 3270, "bottom": 3715, "left": 860}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706699f.jpg"} -{"rects": [{"solidity": 0.9977333324378598, "top": 785, "right": 2020, "bottom": 3160, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713368f.jpg"} -{"rects": [{"solidity": 0.9977334042387611, "top": 975, "right": 2100, "bottom": 3395, "left": 495}, {"solidity": 0.9962010596528363, "top": 1010, "right": 5765, "bottom": 3410, "left": 4150}, {"solidity": 0.9969828905745093, "top": 1040, "right": 3945, "bottom": 3385, "left": 2355}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719793f.jpg"} -{"rects": [{"solidity": 0.99773344179556, "top": 495, "right": 5070, "bottom": 3800, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707845f.jpg"} -{"rects": [{"solidity": 0.9977334441536917, "top": 305, "right": 3290, "bottom": 2140, "left": 490}, {"solidity": 0.9966545686436181, "top": 4040, "right": 3240, "bottom": 5875, "left": 475}, {"solidity": 0.991685929554059, "top": 2170, "right": 3235, "bottom": 4010, "left": 465}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707153f.jpg"} -{"rects": [{"solidity": 0.9977337002216617, "top": 450, "right": 4930, "bottom": 3665, "left": 840}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708974f.jpg"} -{"rects": [{"solidity": 0.9977337901860287, "top": 500, "right": 5025, "bottom": 3750, "left": 940}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702965f.jpg"} -{"rects": [{"solidity": 0.9977337923121056, "top": 550, "right": 5410, "bottom": 3170, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718546f.jpg"} -{"rects": [{"solidity": 0.997733842591987, "top": 430, "right": 3210, "bottom": 2035, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715420f.jpg"} -{"rects": [{"solidity": 0.9977339525700568, "top": 850, "right": 2480, "bottom": 3270, "left": 855}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704969f.jpg"} -{"rects": [{"solidity": 0.997734000533735, "top": 1385, "right": 3620, "bottom": 5435, "left": 355}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/731198f.jpg"} -{"rects": [{"solidity": 0.997734097469365, "top": 4140, "right": 3080, "bottom": 5755, "left": 665}, {"solidity": 0.9950389817437121, "top": 2270, "right": 3095, "bottom": 3885, "left": 680}, {"solidity": 0.995202471946658, "top": 385, "right": 3120, "bottom": 2010, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734377f.jpg"} -{"rects": [{"solidity": 0.9977345137365508, "top": 625, "right": 3200, "bottom": 2235, "left": 800}, {"solidity": 0.9976087014122572, "top": 2365, "right": 3205, "bottom": 3955, "left": 805}, {"solidity": 0.9946037099494098, "top": 4070, "right": 3220, "bottom": 5660, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733160f.jpg"} -{"rects": [{"solidity": 0.9977347596487091, "top": 760, "right": 5215, "bottom": 3560, "left": 3330}, {"solidity": 0.9979883064352743, "top": 750, "right": 2725, "bottom": 3580, "left": 855}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702874f.jpg"} -{"rects": [{"solidity": 0.997734780858419, "top": 420, "right": 3195, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706778f.jpg"} -{"rects": [{"solidity": 0.9977348037692866, "top": 785, "right": 3800, "bottom": 3180, "left": 2175}, {"solidity": 0.9962159994963502, "top": 780, "right": 1930, "bottom": 3175, "left": 340}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718056f.jpg"} -{"rects": [{"solidity": 0.9977352373996553, "top": 365, "right": 3125, "bottom": 1990, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700552f.jpg"} -{"rects": [{"solidity": 0.9977353545506015, "top": 500, "right": 2985, "bottom": 2135, "left": 560}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707494f.jpg"} -{"rects": [{"solidity": 0.997735358643274, "top": 475, "right": 2285, "bottom": 2885, "left": 660}, {"solidity": 0.9965630093478415, "top": 480, "right": 4210, "bottom": 2900, "left": 2590}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710385f.jpg"} -{"rects": [{"solidity": 0.9977355861348197, "top": 440, "right": 3225, "bottom": 2055, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726806f.jpg"} -{"rects": [{"solidity": 0.9977356870042748, "top": 790, "right": 1990, "bottom": 3200, "left": 385}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724239f.jpg"} -{"rects": [{"solidity": 0.997735739979445, "top": 425, "right": 3195, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719473f.jpg"} -{"rects": [{"solidity": 0.9977360912954282, "top": 1010, "right": 3495, "bottom": 5090, "left": 250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716954f.jpg"} -{"rects": [{"solidity": 0.9977362341399143, "top": 450, "right": 3215, "bottom": 2075, "left": 810}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710745f.jpg"} -{"rects": [{"solidity": 0.9977362506247883, "top": 375, "right": 3135, "bottom": 1990, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705782f.jpg"} -{"rects": [{"solidity": 0.9977364088206209, "top": 375, "right": 3125, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729950f.jpg"} -{"rects": [{"solidity": 0.9977364967853156, "top": 1000, "right": 3570, "bottom": 5045, "left": 620}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/718992f.jpg"} -{"rects": [{"solidity": 0.9977365696671255, "top": 2115, "right": 2795, "bottom": 3535, "left": 965}, {"solidity": 0.9972927987467567, "top": 615, "right": 2785, "bottom": 2030, "left": 965}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703892f.jpg"} -{"rects": [{"solidity": 0.9977366384131394, "top": 760, "right": 1995, "bottom": 3160, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734237f.jpg"} -{"rects": [{"solidity": 0.9977369426901873, "top": 500, "right": 5050, "bottom": 3660, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718119f.jpg"} -{"rects": [{"solidity": 0.997736975572176, "top": 400, "right": 3170, "bottom": 2015, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706839f.jpg"} -{"rects": [{"solidity": 0.9977373793086158, "top": 2270, "right": 3125, "bottom": 3905, "left": 665}, {"solidity": 0.9970548577105954, "top": 430, "right": 3100, "bottom": 2055, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710662f.jpg"} -{"rects": [{"solidity": 0.997737556561086, "top": 775, "right": 3845, "bottom": 3180, "left": 2225}, {"solidity": 0.9963096883628936, "top": 780, "right": 5690, "bottom": 3195, "left": 4065}, {"solidity": 0.9983915029679049, "top": 770, "right": 2010, "bottom": 3175, "left": 400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721670f.jpg"} -{"rects": [{"solidity": 0.9977379072014351, "top": 415, "right": 3080, "bottom": 2005, "left": 680}, {"solidity": 0.9944012997455437, "top": 2290, "right": 3095, "bottom": 3890, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729875f.jpg"} -{"rects": [{"solidity": 0.9977380542928941, "top": 1065, "right": 3475, "bottom": 4960, "left": 350}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710151f.jpg"} -{"rects": [{"solidity": 0.9977382168393404, "top": 460, "right": 3170, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702564f.jpg"} -{"rects": [{"solidity": 0.9977382281388941, "top": 755, "right": 2070, "bottom": 3180, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701715f.jpg"} -{"rects": [{"solidity": 0.9977382492666594, "top": 415, "right": 2535, "bottom": 2800, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710219f.jpg"} -{"rects": [{"solidity": 0.9977382781917824, "top": 665, "right": 2665, "bottom": 2090, "left": 835}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703199f.jpg"} -{"rects": [{"solidity": 0.9977384934887394, "top": 370, "right": 5745, "bottom": 4015, "left": 1230}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708387f.jpg"} -{"rects": [{"solidity": 0.9977385390898182, "top": 765, "right": 3945, "bottom": 3180, "left": 2325}, {"solidity": 0.9983154008506903, "top": 775, "right": 2075, "bottom": 3190, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721146f.jpg"} -{"rects": [{"solidity": 0.9977390177312677, "top": 1115, "right": 3480, "bottom": 4885, "left": 455}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713582f.jpg"} -{"rects": [{"solidity": 0.9977392798107153, "top": 975, "right": 3495, "bottom": 4875, "left": 305}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723093f.jpg"} -{"rects": [{"solidity": 0.9977393114851142, "top": 660, "right": 2800, "bottom": 2020, "left": 985}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706976f.jpg"} -{"rects": [{"solidity": 0.9977393710181509, "top": 550, "right": 5020, "bottom": 3655, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734311f.jpg"} -{"rects": [{"solidity": 0.9977394042467207, "top": 470, "right": 2905, "bottom": 2035, "left": 985}, {"solidity": 0.9959366093602015, "top": 2385, "right": 2905, "bottom": 3840, "left": 915}, {"solidity": 0.9991134340274233, "top": 4200, "right": 2875, "bottom": 5605, "left": 945}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731473f.jpg"} -{"rects": [{"solidity": 0.9977397257013372, "top": 515, "right": 5035, "bottom": 3740, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706340f.jpg"} -{"rects": [{"solidity": 0.9977400000951578, "top": 470, "right": 5165, "bottom": 3750, "left": 1115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733745f.jpg"} -{"rects": [{"solidity": 0.9977400957696346, "top": 425, "right": 5060, "bottom": 3690, "left": 1000}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717140f.jpg"} -{"rects": [{"solidity": 0.9977401093516274, "top": 3235, "right": 1870, "bottom": 5645, "left": 250}, {"solidity": 0.9990218359783577, "top": 3260, "right": 3620, "bottom": 5665, "left": 2000}, {"solidity": 0.9960708093745259, "top": 485, "right": 1870, "bottom": 2910, "left": 260}, {"solidity": 0.9744746933730548, "top": 490, "right": 3705, "bottom": 2900, "left": 2015}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730071f.jpg"} -{"rects": [{"solidity": 0.9977401715268087, "top": 420, "right": 3230, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706644f.jpg"} -{"rects": [{"solidity": 0.9977402694533223, "top": 335, "right": 5125, "bottom": 3625, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725498f.jpg"} -{"rects": [{"solidity": 0.9977404756555509, "top": 455, "right": 3330, "bottom": 2080, "left": 915}, {"solidity": 0.9966094676087688, "top": 2270, "right": 3320, "bottom": 3885, "left": 900}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725225f.jpg"} -{"rects": [{"solidity": 0.9977405919075587, "top": 765, "right": 3855, "bottom": 3200, "left": 2230}, {"solidity": 0.9974896121883656, "top": 780, "right": 2040, "bottom": 3215, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701748f.jpg"} -{"rects": [{"solidity": 0.9977406240217853, "top": 455, "right": 5070, "bottom": 3680, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720100f.jpg"} -{"rects": [{"solidity": 0.997740638601854, "top": 675, "right": 2605, "bottom": 3490, "left": 585}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717497f.jpg"} -{"rects": [{"solidity": 0.9977406393757643, "top": 955, "right": 3190, "bottom": 2160, "left": 1390}], "shape": {"h": 2990, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509599.jpg"} -{"rects": [{"solidity": 0.9977406686291839, "top": 805, "right": 1995, "bottom": 3195, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713726f.jpg"} -{"rects": [{"solidity": 0.9977407421629994, "top": 785, "right": 3900, "bottom": 3215, "left": 2280}, {"solidity": 0.9954658401004175, "top": 800, "right": 5740, "bottom": 3235, "left": 4120}, {"solidity": 0.9974941374396454, "top": 795, "right": 2035, "bottom": 3220, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732883f.jpg"} -{"rects": [{"solidity": 0.9977409551318934, "top": 470, "right": 4955, "bottom": 3675, "left": 890}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731281f.jpg"} -{"rects": [{"solidity": 0.9977410343643685, "top": 400, "right": 4950, "bottom": 3635, "left": 940}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718249f.jpg"} -{"rects": [{"solidity": 0.9977410659655042, "top": 430, "right": 3125, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715269f.jpg"} -{"rects": [{"solidity": 0.997741143172061, "top": 760, "right": 2055, "bottom": 3125, "left": 485}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721478f.jpg"} -{"rects": [{"solidity": 0.9977412152916452, "top": 425, "right": 3175, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718136f.jpg"} -{"rects": [{"solidity": 0.9977413386077969, "top": 500, "right": 3325, "bottom": 2130, "left": 900}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721464f.jpg"} -{"rects": [{"solidity": 0.997741524047387, "top": 1075, "right": 3480, "bottom": 5105, "left": 205}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712282f.jpg"} -{"rects": [{"solidity": 0.9977415987968343, "top": 1170, "right": 2645, "bottom": 4320, "left": 220}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507809.jpg"} -{"rects": [{"solidity": 0.9977416120061019, "top": 1060, "right": 3595, "bottom": 5135, "left": 340}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/724592f.jpg"} -{"rects": [{"solidity": 0.9977416135118052, "top": 445, "right": 5095, "bottom": 3670, "left": 1000}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/708305f.jpg"} -{"rects": [{"solidity": 0.9977417089066583, "top": 915, "right": 3535, "bottom": 5010, "left": 295}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714972f.jpg"} -{"rects": [{"solidity": 0.9977417161005229, "top": 830, "right": 1960, "bottom": 3235, "left": 350}, {"solidity": 0.9963337167355047, "top": 860, "right": 5615, "bottom": 3265, "left": 4005}, {"solidity": 0.9982886760844122, "top": 840, "right": 3765, "bottom": 3240, "left": 2165}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726959f.jpg"} -{"rects": [{"solidity": 0.997741958839394, "top": 665, "right": 2875, "bottom": 3490, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716938f.jpg"} -{"rects": [{"solidity": 0.997742022475884, "top": 530, "right": 4935, "bottom": 3510, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712653f.jpg"} -{"rects": [{"solidity": 0.9977425131448602, "top": 130, "right": 2840, "bottom": 2555, "left": 1200}, {"solidity": 0.9964099734236549, "top": 2580, "right": 3190, "bottom": 4225, "left": 750}, {"solidity": 0.9986456387642577, "top": 4295, "right": 3165, "bottom": 5915, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705145f.jpg"} -{"rects": [{"solidity": 0.9977426112141499, "top": 840, "right": 3635, "bottom": 2860, "left": 415}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733019f.jpg"} -{"rects": [{"solidity": 0.9977429184065004, "top": 335, "right": 2475, "bottom": 1625, "left": 570}, {"solidity": 0.994733121807852, "top": 1800, "right": 2440, "bottom": 3100, "left": 600}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715895f.jpg"} -{"rects": [{"solidity": 0.9977429992168995, "top": 495, "right": 5145, "bottom": 3700, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718244f.jpg"} -{"rects": [{"solidity": 0.9977431850744312, "top": 755, "right": 3790, "bottom": 3210, "left": 2145}, {"solidity": 0.9970591301216465, "top": 755, "right": 5655, "bottom": 3195, "left": 4020}, {"solidity": 0.9976073514365423, "top": 730, "right": 1900, "bottom": 3160, "left": 265}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712762f.jpg"} -{"rects": [{"solidity": 0.99774323831541, "top": 2685, "right": 3285, "bottom": 4665, "left": 505}, {"solidity": 0.9962102675035758, "top": 540, "right": 3280, "bottom": 2475, "left": 525}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702788f.jpg"} -{"rects": [{"solidity": 0.9977436101821926, "top": 525, "right": 2660, "bottom": 3605, "left": 690}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713200f.jpg"} -{"rects": [{"solidity": 0.9977436729457708, "top": 415, "right": 5050, "bottom": 3670, "left": 945}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723118f.jpg"} -{"rects": [{"solidity": 0.9977439170801985, "top": 695, "right": 2735, "bottom": 2085, "left": 925}, {"solidity": 0.9968181793159636, "top": 2130, "right": 2720, "bottom": 3430, "left": 955}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726456f.jpg"} -{"rects": [{"solidity": 0.9977439674532201, "top": 970, "right": 3595, "bottom": 5065, "left": 295}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/716801f.jpg"} -{"rects": [{"solidity": 0.9977439765207978, "top": 905, "right": 3380, "bottom": 2940, "left": 390}, {"solidity": 0.9970583885756171, "top": 3280, "right": 3125, "bottom": 4900, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720128f.jpg"} -{"rects": [{"solidity": 0.9977440242905057, "top": 3285, "right": 3135, "bottom": 5170, "left": 465}, {"solidity": 0.9931599941676388, "top": 790, "right": 3155, "bottom": 2635, "left": 525}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715357f.jpg"} -{"rects": [{"solidity": 0.9977443253574299, "top": 730, "right": 1995, "bottom": 3105, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714109f.jpg"} -{"rects": [{"solidity": 0.9977445718936631, "top": 805, "right": 5260, "bottom": 3520, "left": 1255}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718165f.jpg"} -{"rects": [{"solidity": 0.9977446957618322, "top": 395, "right": 5135, "bottom": 3690, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725377f.jpg"} -{"rects": [{"solidity": 0.9977450538245848, "top": 440, "right": 3185, "bottom": 2040, "left": 780}, {"solidity": 0.9947053744522099, "top": 2275, "right": 3185, "bottom": 3890, "left": 765}, {"solidity": 0.9941949401843498, "top": 4120, "right": 3170, "bottom": 5725, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734650f.jpg"} -{"rects": [{"solidity": 0.997745490981964, "top": 565, "right": 3020, "bottom": 2185, "left": 600}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705794f.jpg"} -{"rects": [{"solidity": 0.9977456584639238, "top": 385, "right": 5200, "bottom": 3680, "left": 1175}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701666f.jpg"} -{"rects": [{"solidity": 0.9977457899789823, "top": 575, "right": 2985, "bottom": 2195, "left": 585}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703230f.jpg"} -{"rects": [{"solidity": 0.9977459206936024, "top": 815, "right": 2065, "bottom": 3230, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719486f.jpg"} -{"rects": [{"solidity": 0.9977460703869082, "top": 1995, "right": 5550, "bottom": 3600, "left": 3155}, {"solidity": 0.9961235098306085, "top": 405, "right": 2255, "bottom": 2795, "left": 640}, {"solidity": 0.9948021417440296, "top": 290, "right": 5530, "bottom": 1885, "left": 3145}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732843f.jpg"} -{"rects": [{"solidity": 0.9977461723789539, "top": 4110, "right": 3050, "bottom": 5720, "left": 635}, {"solidity": 0.9974754945466737, "top": 2260, "right": 3060, "bottom": 3855, "left": 660}, {"solidity": 0.9955737644950068, "top": 410, "right": 3070, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734359f.jpg"} -{"rects": [{"solidity": 0.9977464339005115, "top": 650, "right": 3945, "bottom": 3425, "left": 260}, {"solidity": 0.9963267131695898, "top": 795, "right": 5785, "bottom": 3230, "left": 4140}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732815f.jpg"} -{"rects": [{"solidity": 0.9977465481214406, "top": 2565, "right": 3575, "bottom": 4380, "left": 865}, {"solidity": 0.99690437559556, "top": 505, "right": 3585, "bottom": 2320, "left": 885}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711334f.jpg"} -{"rects": [{"solidity": 0.9977466085648329, "top": 395, "right": 3145, "bottom": 2005, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715101f.jpg"} -{"rects": [{"solidity": 0.9977467210232231, "top": 2270, "right": 2990, "bottom": 3870, "left": 575}, {"solidity": 0.9959407645056536, "top": 4110, "right": 2995, "bottom": 5715, "left": 570}, {"solidity": 0.9979988452352833, "top": 430, "right": 3000, "bottom": 2015, "left": 580}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729405f.jpg"} -{"rects": [{"solidity": 0.997746750120366, "top": 470, "right": 3110, "bottom": 2095, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701453f.jpg"} -{"rects": [{"solidity": 0.9977470962931538, "top": 430, "right": 3155, "bottom": 2045, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706300f.jpg"} -{"rects": [{"solidity": 0.997747259070867, "top": 305, "right": 5110, "bottom": 3570, "left": 995}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702536f.jpg"} -{"rects": [{"solidity": 0.9977473412826298, "top": 4065, "right": 3190, "bottom": 5675, "left": 765}, {"solidity": 0.996915291387313, "top": 2215, "right": 3195, "bottom": 3830, "left": 770}, {"solidity": 0.9959465395398112, "top": 385, "right": 3195, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734758f.jpg"} -{"rects": [{"solidity": 0.9977473954259612, "top": 315, "right": 5260, "bottom": 3610, "left": 1195}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733481f.jpg"} -{"rects": [{"solidity": 0.997747728287323, "top": 375, "right": 4895, "bottom": 3630, "left": 870}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730796f.jpg"} -{"rects": [{"solidity": 0.997748151516609, "top": 420, "right": 3060, "bottom": 1885, "left": 1085}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/701440f.jpg"} -{"rects": [{"solidity": 0.9977483099843231, "top": 690, "right": 2630, "bottom": 2100, "left": 840}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724956f.jpg"} -{"rects": [{"solidity": 0.9977486882477895, "top": 485, "right": 5070, "bottom": 3745, "left": 1010}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708283f.jpg"} -{"rects": [{"solidity": 0.9977490572350107, "top": 500, "right": 3190, "bottom": 2100, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724435f.jpg"} -{"rects": [{"solidity": 0.9977490982555511, "top": 1235, "right": 1430, "bottom": 2655, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721315f.jpg"} -{"rects": [{"solidity": 0.9977492027609518, "top": 490, "right": 5085, "bottom": 3680, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711601f.jpg"} -{"rects": [{"solidity": 0.9977494177525927, "top": 1060, "right": 3570, "bottom": 5055, "left": 310}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/726936f.jpg"} -{"rects": [{"solidity": 0.9977495184559142, "top": 400, "right": 3140, "bottom": 1995, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700394f.jpg"} -{"rects": [{"solidity": 0.9977496169711813, "top": 395, "right": 5255, "bottom": 3650, "left": 1145}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726047f.jpg"} -{"rects": [{"solidity": 0.9977496674544445, "top": 460, "right": 3185, "bottom": 2075, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701505f.jpg"} -{"rects": [{"solidity": 0.9977500193963845, "top": 815, "right": 2060, "bottom": 3230, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718721f.jpg"} -{"rects": [{"solidity": 0.9977502055241377, "top": 445, "right": 5025, "bottom": 3665, "left": 1030}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723688f.jpg"} -{"rects": [{"solidity": 0.9977502769147255, "top": 405, "right": 5085, "bottom": 3665, "left": 1055}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725411f.jpg"} -{"rects": [{"solidity": 0.9977502920448272, "top": 835, "right": 3860, "bottom": 3250, "left": 2235}, {"solidity": 0.9971422660149482, "top": 845, "right": 2005, "bottom": 3250, "left": 385}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712381f.jpg"} -{"rects": [{"solidity": 0.9977504255046227, "top": 480, "right": 5005, "bottom": 3730, "left": 965}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727286f.jpg"} -{"rects": [{"solidity": 0.9977504584508726, "top": 425, "right": 5090, "bottom": 3715, "left": 1055}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725007f.jpg"} -{"rects": [{"solidity": 0.9977505892478166, "top": 445, "right": 3105, "bottom": 2050, "left": 695}, {"solidity": 0.9915725668475338, "top": 2335, "right": 3100, "bottom": 3950, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729646f.jpg"} -{"rects": [{"solidity": 0.9977506262461019, "top": 555, "right": 2550, "bottom": 3585, "left": 520}, {"solidity": 0.9992139411079687, "top": 1075, "right": 5655, "bottom": 3085, "left": 2650}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716700f.jpg"} -{"rects": [{"solidity": 0.9977507268866552, "top": 535, "right": 5350, "bottom": 3580, "left": 3350}, {"solidity": 0.9984228348446962, "top": 570, "right": 2720, "bottom": 3580, "left": 720}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715655f.jpg"} -{"rects": [{"solidity": 0.9977507782573016, "top": 425, "right": 3165, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711982f.jpg"} -{"rects": [{"solidity": 0.9977509526990181, "top": 780, "right": 2040, "bottom": 3195, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724076f.jpg"} -{"rects": [{"solidity": 0.997750963421568, "top": 385, "right": 3150, "bottom": 2020, "left": 715}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700032f.jpg"} -{"rects": [{"solidity": 0.9977512439753841, "top": 420, "right": 3255, "bottom": 2020, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725454f.jpg"} -{"rects": [{"solidity": 0.9977513642046905, "top": 485, "right": 1785, "bottom": 2905, "left": 175}, {"solidity": 0.9975033714187771, "top": 495, "right": 3475, "bottom": 2910, "left": 1865}, {"solidity": 0.9947618343438327, "top": 630, "right": 5970, "bottom": 2255, "left": 3555}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724024f.jpg"} -{"rects": [{"solidity": 0.9977517179807169, "top": 440, "right": 3105, "bottom": 2045, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703377f.jpg"} -{"rects": [{"solidity": 0.9977519232246708, "top": 845, "right": 2005, "bottom": 3225, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734358f.jpg"} -{"rects": [{"solidity": 0.9977525046323922, "top": 420, "right": 5160, "bottom": 3645, "left": 1190}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717587f.jpg"} -{"rects": [{"solidity": 0.9977525964854391, "top": 530, "right": 2730, "bottom": 3600, "left": 695}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721972f.jpg"} -{"rects": [{"solidity": 0.9977528237976618, "top": 425, "right": 3135, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/732392f.jpg"} -{"rects": [{"solidity": 0.9977530653444451, "top": 595, "right": 3285, "bottom": 2610, "left": 220}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720130f.jpg"} -{"rects": [{"solidity": 0.9977531557072737, "top": 390, "right": 3105, "bottom": 2005, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704230f.jpg"} -{"rects": [{"solidity": 0.9977531906633668, "top": 2125, "right": 2715, "bottom": 3555, "left": 900}, {"solidity": 0.9957124170340584, "top": 640, "right": 2715, "bottom": 2075, "left": 895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706522f.jpg"} -{"rects": [{"solidity": 0.9977533365723547, "top": 435, "right": 3170, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706219f.jpg"} -{"rects": [{"solidity": 0.9977534331625942, "top": 630, "right": 2515, "bottom": 2115, "left": 430}, {"solidity": 0.996576026858871, "top": 2415, "right": 2500, "bottom": 3860, "left": 530}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715998f.jpg"} -{"rects": [{"solidity": 0.9977534943820962, "top": 560, "right": 3130, "bottom": 2155, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709699f.jpg"} -{"rects": [{"solidity": 0.9977536733097604, "top": 745, "right": 2010, "bottom": 3165, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724070f.jpg"} -{"rects": [{"solidity": 0.9977540149467324, "top": 330, "right": 3145, "bottom": 1925, "left": 765}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/703342f.jpg"} -{"rects": [{"solidity": 0.9977544465788107, "top": 455, "right": 5005, "bottom": 3720, "left": 965}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726289f.jpg"} -{"rects": [{"solidity": 0.9977544614655717, "top": 460, "right": 3080, "bottom": 1875, "left": 1275}, {"solidity": 0.9955049085196266, "top": 2245, "right": 3070, "bottom": 3640, "left": 1255}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727767f.jpg"} -{"rects": [{"solidity": 0.9977545637206822, "top": 500, "right": 5180, "bottom": 3775, "left": 1150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707843f.jpg"} -{"rects": [{"solidity": 0.9977549907909464, "top": 740, "right": 3955, "bottom": 3150, "left": 2335}, {"solidity": 0.9938530081195822, "top": 745, "right": 2095, "bottom": 3165, "left": 470}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709354f.jpg"} -{"rects": [{"solidity": 0.9977552107697906, "top": 750, "right": 2045, "bottom": 3150, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718708f.jpg"} -{"rects": [{"solidity": 0.9977552303133699, "top": 425, "right": 4995, "bottom": 3715, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714563f.jpg"} -{"rects": [{"solidity": 0.9977553747992138, "top": 370, "right": 5285, "bottom": 3640, "left": 1220}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731134f.jpg"} -{"rects": [{"solidity": 0.9977555746279533, "top": 2245, "right": 3200, "bottom": 3860, "left": 790}, {"solidity": 0.9971615512023893, "top": 465, "right": 3185, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712599f.jpg"} -{"rects": [{"solidity": 0.997755608554864, "top": 365, "right": 4930, "bottom": 3600, "left": 885}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715600f.jpg"} -{"rects": [{"solidity": 0.9977556371619057, "top": 300, "right": 4025, "bottom": 2755, "left": 1000}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517033.jpg"} -{"rects": [{"solidity": 0.997755929389983, "top": 780, "right": 1940, "bottom": 3210, "left": 315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705396f.jpg"} -{"rects": [{"solidity": 0.9977561068289694, "top": 4130, "right": 3210, "bottom": 5730, "left": 805}, {"solidity": 0.9965758385902991, "top": 2300, "right": 3205, "bottom": 3900, "left": 810}, {"solidity": 0.9961464290903327, "top": 430, "right": 3205, "bottom": 2030, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718237f.jpg"} -{"rects": [{"solidity": 0.9977562333129941, "top": 250, "right": 3115, "bottom": 1870, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723453f.jpg"} -{"rects": [{"solidity": 0.9977562425751083, "top": 1255, "right": 3660, "bottom": 5310, "left": 365}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723247f.jpg"} -{"rects": [{"solidity": 0.9977566351610744, "top": 1025, "right": 3525, "bottom": 5115, "left": 265}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734437f.jpg"} -{"rects": [{"solidity": 0.997756756668506, "top": 400, "right": 3195, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718328f.jpg"} -{"rects": [{"solidity": 0.9977568794980085, "top": 385, "right": 3175, "bottom": 1995, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702936f.jpg"} -{"rects": [{"solidity": 0.9977570702289408, "top": 490, "right": 5135, "bottom": 3765, "left": 1100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701774f.jpg"} -{"rects": [{"solidity": 0.9977572475310609, "top": 2270, "right": 3185, "bottom": 3895, "left": 750}, {"solidity": 0.9975246571120358, "top": 505, "right": 3170, "bottom": 2125, "left": 745}, {"solidity": 0.9971061558495844, "top": 4035, "right": 3215, "bottom": 5650, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/733132f.jpg"} -{"rects": [{"solidity": 0.9977572537801389, "top": 820, "right": 1925, "bottom": 3200, "left": 305}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703221f.jpg"} -{"rects": [{"solidity": 0.997757372625237, "top": 1245, "right": 3540, "bottom": 5235, "left": 320}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712330f.jpg"} -{"rects": [{"solidity": 0.9977573791041268, "top": 790, "right": 2030, "bottom": 3200, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714411f.jpg"} -{"rects": [{"solidity": 0.9977573845712647, "top": 1335, "right": 3225, "bottom": 4715, "left": 630}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715619f.jpg"} -{"rects": [{"solidity": 0.9977577168349998, "top": 415, "right": 5895, "bottom": 3635, "left": 3880}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705734f.jpg"} -{"rects": [{"solidity": 0.9977578978049819, "top": 475, "right": 3175, "bottom": 2100, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701659f.jpg"} -{"rects": [{"solidity": 0.9977580529552204, "top": 1035, "right": 3095, "bottom": 5100, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712990f.jpg"} -{"rects": [{"solidity": 0.9977582101912477, "top": 4125, "right": 3170, "bottom": 5735, "left": 755}, {"solidity": 0.995556679899328, "top": 410, "right": 3140, "bottom": 2030, "left": 730}, {"solidity": 0.9945732806261139, "top": 2285, "right": 3140, "bottom": 3880, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718054f.jpg"} -{"rects": [{"solidity": 0.9977582848786039, "top": 430, "right": 5050, "bottom": 3720, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721110f.jpg"} -{"rects": [{"solidity": 0.9977585257212357, "top": 875, "right": 4325, "bottom": 2515, "left": 1910}, {"solidity": 0.9962045831568825, "top": 630, "right": 1850, "bottom": 3070, "left": 205}, {"solidity": 0.9965855372428772, "top": 565, "right": 5985, "bottom": 2995, "left": 4355}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720722f.jpg"} -{"rects": [{"solidity": 0.9977590212291186, "top": 325, "right": 5060, "bottom": 3580, "left": 1015}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721502f.jpg"} -{"rects": [{"solidity": 0.9977591614828156, "top": 430, "right": 5155, "bottom": 3700, "left": 1130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725419f.jpg"} -{"rects": [{"solidity": 0.9977592173598768, "top": 1065, "right": 3510, "bottom": 5045, "left": 320}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723483f.jpg"} -{"rects": [{"solidity": 0.9977593977392621, "top": 500, "right": 5025, "bottom": 3610, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703287f.jpg"} -{"rects": [{"solidity": 0.997759457397637, "top": 415, "right": 3185, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706990f.jpg"} -{"rects": [{"solidity": 0.997759484110109, "top": 615, "right": 2395, "bottom": 3630, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715475f.jpg"} -{"rects": [{"solidity": 0.9977599053125848, "top": 950, "right": 3520, "bottom": 4960, "left": 285}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724577f.jpg"} -{"rects": [{"solidity": 0.9977608199186765, "top": 440, "right": 5125, "bottom": 3605, "left": 1185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717278f.jpg"} -{"rects": [{"solidity": 0.9977608602587174, "top": 470, "right": 5075, "bottom": 3705, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702927f.jpg"} -{"rects": [{"solidity": 0.9977609910430097, "top": 255, "right": 5230, "bottom": 3515, "left": 1185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722958f.jpg"} -{"rects": [{"solidity": 0.9977611597575163, "top": 475, "right": 5070, "bottom": 3735, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702067f.jpg"} -{"rects": [{"solidity": 0.9977611727009149, "top": 1040, "right": 3420, "bottom": 4930, "left": 365}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708504f.jpg"} -{"rects": [{"solidity": 0.9977614740628599, "top": 440, "right": 3180, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705131f.jpg"} -{"rects": [{"solidity": 0.9977614929663753, "top": 435, "right": 3425, "bottom": 2365, "left": 660}, {"solidity": 0.9966140436725968, "top": 2580, "right": 3265, "bottom": 4180, "left": 860}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703564f.jpg"} -{"rects": [{"solidity": 0.9977615185857914, "top": 755, "right": 2030, "bottom": 3175, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715162f.jpg"} -{"rects": [{"solidity": 0.9977616823338106, "top": 2265, "right": 3225, "bottom": 3875, "left": 810}, {"solidity": 0.998689498514765, "top": 420, "right": 3200, "bottom": 2000, "left": 830}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718230f.jpg"} -{"rects": [{"solidity": 0.9977616835831523, "top": 790, "right": 3915, "bottom": 3175, "left": 2315}, {"solidity": 0.9980558793916592, "top": 795, "right": 2140, "bottom": 3185, "left": 550}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711049f.jpg"} -{"rects": [{"solidity": 0.9977617323869272, "top": 405, "right": 3190, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734211f.jpg"} -{"rects": [{"solidity": 0.997762062771882, "top": 2290, "right": 2795, "bottom": 4695, "left": 1170}, {"solidity": 0.9987322400119318, "top": 400, "right": 3185, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723369f.jpg"} -{"rects": [{"solidity": 0.9977622221959902, "top": 420, "right": 3890, "bottom": 2850, "left": 820}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715830f.jpg"} -{"rects": [{"solidity": 0.9977622288455715, "top": 800, "right": 3800, "bottom": 3215, "left": 2165}, {"solidity": 0.9941114718090347, "top": 795, "right": 1905, "bottom": 3225, "left": 300}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710736f.jpg"} -{"rects": [{"solidity": 0.9977623510126695, "top": 1300, "right": 3505, "bottom": 5285, "left": 305}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/717227f.jpg"} -{"rects": [{"solidity": 0.9977623941065714, "top": 500, "right": 4985, "bottom": 3755, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702591f.jpg"} -{"rects": [{"solidity": 0.9977624913224824, "top": 1700, "right": 2390, "bottom": 2915, "left": 580}, {"solidity": 0.9972622238548118, "top": 350, "right": 2395, "bottom": 1565, "left": 585}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715848f.jpg"} -{"rects": [{"solidity": 0.997762509605388, "top": 2300, "right": 3110, "bottom": 3915, "left": 695}, {"solidity": 0.996210166430138, "top": 410, "right": 3105, "bottom": 2035, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728859f.jpg"} -{"rects": [{"solidity": 0.9977625812108061, "top": 1290, "right": 3620, "bottom": 5340, "left": 315}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724193f.jpg"} -{"rects": [{"solidity": 0.9977628132703369, "top": 785, "right": 2060, "bottom": 3210, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723055f.jpg"} -{"rects": [{"solidity": 0.9977629248786061, "top": 625, "right": 2275, "bottom": 3450, "left": 325}, {"solidity": 0.9959304024950776, "top": 785, "right": 4120, "bottom": 3215, "left": 2505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713622f.jpg"} -{"rects": [{"solidity": 0.9977630417909831, "top": 525, "right": 5240, "bottom": 3455, "left": 880}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719874f.jpg"} -{"rects": [{"solidity": 0.9977630554158903, "top": 1265, "right": 3610, "bottom": 5240, "left": 385}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726482f.jpg"} -{"rects": [{"solidity": 0.9977633826420446, "top": 430, "right": 3100, "bottom": 2045, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702527f.jpg"} -{"rects": [{"solidity": 0.9977634953095076, "top": 465, "right": 3075, "bottom": 2075, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704126f.jpg"} -{"rects": [{"solidity": 0.997763784734224, "top": 450, "right": 5025, "bottom": 3595, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711480f.jpg"} -{"rects": [{"solidity": 0.9977638244503828, "top": 845, "right": 3695, "bottom": 3230, "left": 2085}, {"solidity": 0.9962893386526117, "top": 835, "right": 1865, "bottom": 3225, "left": 280}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709711f.jpg"} -{"rects": [{"solidity": 0.9977638589187847, "top": 540, "right": 5095, "bottom": 3795, "left": 1055}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716573f.jpg"} -{"rects": [{"solidity": 0.9977638861905687, "top": 360, "right": 5325, "bottom": 3645, "left": 1305}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724202f.jpg"} -{"rects": [{"solidity": 0.9977641992815584, "top": 425, "right": 3275, "bottom": 2025, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706041f.jpg"} -{"rects": [{"solidity": 0.9977643599257003, "top": 340, "right": 5145, "bottom": 3645, "left": 1095}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732739f.jpg"} -{"rects": [{"solidity": 0.9977646289680312, "top": 460, "right": 3175, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710546f.jpg"} -{"rects": [{"solidity": 0.9977647750642464, "top": 425, "right": 3175, "bottom": 2035, "left": 765}, {"solidity": 0.9398705159054963, "top": 4110, "right": 3325, "bottom": 5815, "left": 770}, {"solidity": 0.9970649114902675, "top": 2265, "right": 3175, "bottom": 3870, "left": 770}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/718268f.jpg"} -{"rects": [{"solidity": 0.9977648253132776, "top": 1035, "right": 3400, "bottom": 5340, "left": 510}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723818f.jpg"} -{"rects": [{"solidity": 0.997764864097427, "top": 495, "right": 5055, "bottom": 3705, "left": 1060}], "shape": {"h": 4065, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704290f.jpg"} -{"rects": [{"solidity": 0.997765066616362, "top": 780, "right": 3875, "bottom": 3205, "left": 2250}, {"solidity": 0.9973349030668021, "top": 790, "right": 5700, "bottom": 3210, "left": 4090}, {"solidity": 0.9965648669250855, "top": 795, "right": 2055, "bottom": 3205, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716812f.jpg"} -{"rects": [{"solidity": 0.997765092879257, "top": 665, "right": 2720, "bottom": 2105, "left": 910}, {"solidity": 0.9945253685696361, "top": 2180, "right": 2740, "bottom": 3610, "left": 930}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702845f.jpg"} -{"rects": [{"solidity": 0.9977651257647858, "top": 930, "right": 2750, "bottom": 3950, "left": 295}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/708161f.jpg"} -{"rects": [{"solidity": 0.9977651363118538, "top": 390, "right": 5030, "bottom": 3690, "left": 895}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716765f.jpg"} -{"rects": [{"solidity": 0.9977651414109212, "top": 410, "right": 3215, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724994f.jpg"} -{"rects": [{"solidity": 0.9977653344292613, "top": 715, "right": 5730, "bottom": 3130, "left": 4105}, {"solidity": 0.9991392247175682, "top": 705, "right": 3830, "bottom": 3095, "left": 2210}, {"solidity": 0.9973228280022456, "top": 695, "right": 1945, "bottom": 3110, "left": 340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719074f.jpg"} -{"rects": [{"solidity": 0.9977656331399392, "top": 1045, "right": 3535, "bottom": 5015, "left": 335}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721270f.jpg"} -{"rects": [{"solidity": 0.9977657859234642, "top": 340, "right": 3675, "bottom": 2765, "left": 510}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507759.jpg"} -{"rects": [{"solidity": 0.9977657920739114, "top": 970, "right": 5800, "bottom": 2610, "left": 3360}, {"solidity": 0.9969044829888272, "top": 950, "right": 3250, "bottom": 2590, "left": 810}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732175f.jpg"} -{"rects": [{"solidity": 0.997765994325112, "top": 805, "right": 2010, "bottom": 3230, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707266f.jpg"} -{"rects": [{"solidity": 0.9977660078592682, "top": 355, "right": 2985, "bottom": 1980, "left": 580}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712380f.jpg"} -{"rects": [{"solidity": 0.9977661785531904, "top": 435, "right": 5060, "bottom": 3665, "left": 1020}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722965f.jpg"} -{"rects": [{"solidity": 0.9977662945095862, "top": 970, "right": 3540, "bottom": 5055, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714962f.jpg"} -{"rects": [{"solidity": 0.9977663058059886, "top": 800, "right": 2005, "bottom": 3205, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715406f.jpg"} -{"rects": [{"solidity": 0.9977663606930318, "top": 2125, "right": 3235, "bottom": 3750, "left": 795}, {"solidity": 0.9976849711259139, "top": 295, "right": 3230, "bottom": 1920, "left": 795}, {"solidity": 0.9968418030433535, "top": 3965, "right": 3225, "bottom": 5600, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727905f.jpg"} -{"rects": [{"solidity": 0.9977664200969636, "top": 765, "right": 2025, "bottom": 3160, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712071f.jpg"} -{"rects": [{"solidity": 0.9977664981125788, "top": 755, "right": 3825, "bottom": 3170, "left": 2195}, {"solidity": 0.9991848854472941, "top": 745, "right": 1965, "bottom": 3145, "left": 345}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718963f.jpg"} -{"rects": [{"solidity": 0.9977667565764669, "top": 4070, "right": 3035, "bottom": 5685, "left": 615}, {"solidity": 0.9973901824902583, "top": 2240, "right": 2990, "bottom": 3850, "left": 600}, {"solidity": 0.9970031482079432, "top": 405, "right": 2965, "bottom": 2000, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734307f.jpg"} -{"rects": [{"solidity": 0.9977667990986451, "top": 420, "right": 5805, "bottom": 4075, "left": 1195}], "shape": {"h": 4425, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/701706f.jpg"} -{"rects": [{"solidity": 0.9977668530300109, "top": 300, "right": 5230, "bottom": 3560, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730121f.jpg"} -{"rects": [{"solidity": 0.997766881731486, "top": 720, "right": 3880, "bottom": 3145, "left": 2265}, {"solidity": 0.9959973727678281, "top": 735, "right": 2025, "bottom": 3160, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723300f.jpg"} -{"rects": [{"solidity": 0.9977670253343609, "top": 985, "right": 3630, "bottom": 5005, "left": 395}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732590f.jpg"} -{"rects": [{"solidity": 0.9977670667870324, "top": 880, "right": 2065, "bottom": 3300, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705460f.jpg"} -{"rects": [{"solidity": 0.9977674100017447, "top": 410, "right": 3125, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731359f.jpg"} -{"rects": [{"solidity": 0.9977674632113619, "top": 450, "right": 5165, "bottom": 3715, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730537f.jpg"} -{"rects": [{"solidity": 0.9977674637775548, "top": 505, "right": 5085, "bottom": 3755, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733564f.jpg"} -{"rects": [{"solidity": 0.997767548093679, "top": 375, "right": 5195, "bottom": 3650, "left": 1175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725388f.jpg"} -{"rects": [{"solidity": 0.9977675831098762, "top": 405, "right": 3105, "bottom": 2020, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705678f.jpg"} -{"rects": [{"solidity": 0.9977675913045021, "top": 470, "right": 3385, "bottom": 2300, "left": 670}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/701701f.jpg"} -{"rects": [{"solidity": 0.9977681481527468, "top": 505, "right": 4930, "bottom": 3650, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711495f.jpg"} -{"rects": [{"solidity": 0.9977681917668576, "top": 455, "right": 5095, "bottom": 3765, "left": 1035}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714242f.jpg"} -{"rects": [{"solidity": 0.9977683138940046, "top": 2315, "right": 3175, "bottom": 3935, "left": 745}, {"solidity": 0.996171840404572, "top": 455, "right": 3170, "bottom": 2075, "left": 745}, {"solidity": 0.9984409828250422, "top": 4155, "right": 3180, "bottom": 5765, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724610f.jpg"} -{"rects": [{"solidity": 0.9977684344556372, "top": 445, "right": 3205, "bottom": 2030, "left": 810}, {"solidity": 0.9929728169448675, "top": 2325, "right": 3205, "bottom": 3920, "left": 820}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731615f.jpg"} -{"rects": [{"solidity": 0.9977687316966272, "top": 935, "right": 3510, "bottom": 2970, "left": 715}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733593f.jpg"} -{"rects": [{"solidity": 0.9977688718939118, "top": 605, "right": 3060, "bottom": 2220, "left": 640}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715312f.jpg"} -{"rects": [{"solidity": 0.997768889262537, "top": 890, "right": 2035, "bottom": 3300, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728507f.jpg"} -{"rects": [{"solidity": 0.9977692940669379, "top": 775, "right": 4805, "bottom": 3415, "left": 1400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708957f.jpg"} -{"rects": [{"solidity": 0.9977694317439582, "top": 575, "right": 3055, "bottom": 2175, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707597f.jpg"} -{"rects": [{"solidity": 0.9977694355121082, "top": 370, "right": 5170, "bottom": 3595, "left": 1170}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718967f.jpg"} -{"rects": [{"solidity": 0.9977696918666427, "top": 670, "right": 2745, "bottom": 2060, "left": 935}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726732f.jpg"} -{"rects": [{"solidity": 0.9977699564101831, "top": 490, "right": 5080, "bottom": 3755, "left": 1040}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708714f.jpg"} -{"rects": [{"solidity": 0.9977699867293138, "top": 1235, "right": 3905, "bottom": 5110, "left": 280}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711638f.jpg"} -{"rects": [{"solidity": 0.9977700417377573, "top": 375, "right": 5275, "bottom": 3615, "left": 1265}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733499f.jpg"} -{"rects": [{"solidity": 0.9977701339528479, "top": 455, "right": 3120, "bottom": 2075, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729841f.jpg"} -{"rects": [{"solidity": 0.9977701543739279, "top": 830, "right": 2040, "bottom": 3260, "left": 410}, {"solidity": 0.9975892487500398, "top": 835, "right": 3925, "bottom": 3265, "left": 2295}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725203f.jpg"} -{"rects": [{"solidity": 0.9977702229197918, "top": 220, "right": 2365, "bottom": 1435, "left": 570}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715873f.jpg"} -{"rects": [{"solidity": 0.99777032865619, "top": 435, "right": 5075, "bottom": 3585, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711463f.jpg"} -{"rects": [{"solidity": 0.9977703681250211, "top": 805, "right": 2025, "bottom": 3170, "left": 445}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731743f.jpg"} -{"rects": [{"solidity": 0.9977704288111225, "top": 750, "right": 2035, "bottom": 3160, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715305f.jpg"} -{"rects": [{"solidity": 0.9977705598585459, "top": 2165, "right": 3195, "bottom": 3790, "left": 775}, {"solidity": 0.99922772686735, "top": 320, "right": 3205, "bottom": 1935, "left": 795}, {"solidity": 0.9961174276099065, "top": 4010, "right": 3170, "bottom": 5640, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723352f.jpg"} -{"rects": [{"solidity": 0.997770843935497, "top": 1060, "right": 3440, "bottom": 5140, "left": 300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714973f.jpg"} -{"rects": [{"solidity": 0.9977712366063016, "top": 805, "right": 2015, "bottom": 3215, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710211f.jpg"} -{"rects": [{"solidity": 0.9977712446863454, "top": 745, "right": 3175, "bottom": 2240, "left": 1050}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1508983.jpg"} -{"rects": [{"solidity": 0.9977713482122909, "top": 1055, "right": 3585, "bottom": 5185, "left": 315}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710890f.jpg"} -{"rects": [{"solidity": 0.9977713826148464, "top": 815, "right": 3880, "bottom": 3220, "left": 2260}, {"solidity": 0.9959466197009823, "top": 810, "right": 2010, "bottom": 3230, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724406f.jpg"} -{"rects": [{"solidity": 0.9977715157653707, "top": 375, "right": 5155, "bottom": 3630, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730843f.jpg"} -{"rects": [{"solidity": 0.997771527270057, "top": 2150, "right": 3135, "bottom": 3785, "left": 720}, {"solidity": 0.9999871650066742, "top": 305, "right": 3145, "bottom": 1930, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706589f.jpg"} -{"rects": [{"solidity": 0.9977715533729008, "top": 3175, "right": 3285, "bottom": 5080, "left": 605}, {"solidity": 0.99593126143323, "top": 715, "right": 3325, "bottom": 2590, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711081f.jpg"} -{"rects": [{"solidity": 0.9977717138357762, "top": 2270, "right": 3145, "bottom": 3890, "left": 705}, {"solidity": 0.9974129276392, "top": 390, "right": 3145, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729148f.jpg"} -{"rects": [{"solidity": 0.9977718731258746, "top": 575, "right": 4175, "bottom": 3590, "left": 2170}, {"solidity": 0.9967669141011531, "top": 730, "right": 2085, "bottom": 3130, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710382f.jpg"} -{"rects": [{"solidity": 0.9977720688240754, "top": 1350, "right": 3250, "bottom": 4695, "left": 640}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721092f.jpg"} -{"rects": [{"solidity": 0.9977722518861535, "top": 385, "right": 4755, "bottom": 3595, "left": 765}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715599f.jpg"} -{"rects": [{"solidity": 0.9977723015003389, "top": 575, "right": 2420, "bottom": 3605, "left": 465}, {"solidity": 0.996133413376195, "top": 855, "right": 4080, "bottom": 3280, "left": 2465}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714657f.jpg"} -{"rects": [{"solidity": 0.997772406184398, "top": 470, "right": 5065, "bottom": 3735, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701331f.jpg"} -{"rects": [{"solidity": 0.9977724751750776, "top": 855, "right": 3940, "bottom": 3265, "left": 2325}, {"solidity": 0.9977136101900237, "top": 865, "right": 2115, "bottom": 3270, "left": 505}, {"solidity": 0.9959365808257205, "top": 855, "right": 5760, "bottom": 3275, "left": 4155}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713657f.jpg"} -{"rects": [{"solidity": 0.9977725439102002, "top": 1315, "right": 2800, "bottom": 4645, "left": 1290}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722382f.jpg"} -{"rects": [{"solidity": 0.9977725865159993, "top": 265, "right": 3175, "bottom": 1890, "left": 750}, {"solidity": 0.9992114727509344, "top": 2095, "right": 3180, "bottom": 3715, "left": 760}, {"solidity": 0.996169285985837, "top": 3930, "right": 3165, "bottom": 5565, "left": 760}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726639f.jpg"} -{"rects": [{"solidity": 0.9977727418617544, "top": 835, "right": 4005, "bottom": 3245, "left": 2395}, {"solidity": 0.9958277017100546, "top": 815, "right": 2010, "bottom": 3220, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717074f.jpg"} -{"rects": [{"solidity": 0.9977727568249555, "top": 2230, "right": 3120, "bottom": 3845, "left": 700}, {"solidity": 0.9966728233378597, "top": 395, "right": 3125, "bottom": 2005, "left": 695}, {"solidity": 0.9959015729010963, "top": 4075, "right": 3095, "bottom": 5695, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728262f.jpg"} -{"rects": [{"solidity": 0.9977728806702649, "top": 3235, "right": 3460, "bottom": 5315, "left": 605}, {"solidity": 0.9972098142862628, "top": 800, "right": 3460, "bottom": 2875, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726232f.jpg"} -{"rects": [{"solidity": 0.9977729215541344, "top": 470, "right": 3205, "bottom": 2085, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703677f.jpg"} -{"rects": [{"solidity": 0.9977731145167834, "top": 425, "right": 5060, "bottom": 3650, "left": 1055}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708573f.jpg"} -{"rects": [{"solidity": 0.9977738330342559, "top": 450, "right": 3065, "bottom": 2060, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729475f.jpg"} -{"rects": [{"solidity": 0.9977738804800454, "top": 475, "right": 2900, "bottom": 3375, "left": 850}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704271f.jpg"} -{"rects": [{"solidity": 0.9977742603190064, "top": 680, "right": 2780, "bottom": 2110, "left": 970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707342f.jpg"} -{"rects": [{"solidity": 0.9977743695375599, "top": 755, "right": 3900, "bottom": 3185, "left": 2275}, {"solidity": 0.9971955795162054, "top": 750, "right": 5750, "bottom": 3180, "left": 4130}, {"solidity": 0.9984448651572522, "top": 755, "right": 2035, "bottom": 3175, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733777f.jpg"} -{"rects": [{"solidity": 0.997774446845421, "top": 525, "right": 5165, "bottom": 3810, "left": 1130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712448f.jpg"} -{"rects": [{"solidity": 0.9977744973256643, "top": 955, "right": 3730, "bottom": 5030, "left": 405}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/718861f.jpg"} -{"rects": [{"solidity": 0.9977749951839723, "top": 2265, "right": 3165, "bottom": 3880, "left": 740}, {"solidity": 0.9970878618098923, "top": 400, "right": 3180, "bottom": 2015, "left": 750}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/732003f.jpg"} -{"rects": [{"solidity": 0.9977750261192586, "top": 2195, "right": 3110, "bottom": 3810, "left": 695}, {"solidity": 0.9966172918011937, "top": 360, "right": 3090, "bottom": 1960, "left": 690}, {"solidity": 0.9963707719164687, "top": 4105, "right": 3085, "bottom": 5705, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733691f.jpg"} -{"rects": [{"solidity": 0.997775294961813, "top": 895, "right": 2065, "bottom": 3305, "left": 470}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728750f.jpg"} -{"rects": [{"solidity": 0.9977754222045288, "top": 385, "right": 5070, "bottom": 3650, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708595f.jpg"} -{"rects": [{"solidity": 0.997775547913399, "top": 400, "right": 3205, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703248f.jpg"} -{"rects": [{"solidity": 0.9977756276940781, "top": 370, "right": 3285, "bottom": 1985, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725542f.jpg"} -{"rects": [{"solidity": 0.9977757003875308, "top": 1025, "right": 2625, "bottom": 4030, "left": 185}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508335.jpg"} -{"rects": [{"solidity": 0.997775896360802, "top": 765, "right": 2010, "bottom": 3145, "left": 435}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713184f.jpg"} -{"rects": [{"solidity": 0.9977761510645923, "top": 410, "right": 5245, "bottom": 3635, "left": 1170}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732707f.jpg"} -{"rects": [{"solidity": 0.9977761783188682, "top": 790, "right": 1975, "bottom": 3200, "left": 355}, {"solidity": 0.9977160234220828, "top": 800, "right": 3765, "bottom": 3210, "left": 2150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718864f.jpg"} -{"rects": [{"solidity": 0.9977763365144074, "top": 1035, "right": 3235, "bottom": 5030, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721876f.jpg"} -{"rects": [{"solidity": 0.9977763730816004, "top": 815, "right": 1930, "bottom": 3230, "left": 305}, {"solidity": 0.999671276318037, "top": 830, "right": 3810, "bottom": 3230, "left": 2185}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720254f.jpg"} -{"rects": [{"solidity": 0.9977764223313034, "top": 875, "right": 5770, "bottom": 3285, "left": 4150}, {"solidity": 0.9971337952190924, "top": 870, "right": 3940, "bottom": 3250, "left": 2305}, {"solidity": 0.9976823571090385, "top": 870, "right": 2135, "bottom": 3260, "left": 545}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709138f.jpg"} -{"rects": [{"solidity": 0.9977766431189043, "top": 795, "right": 3870, "bottom": 3210, "left": 2255}, {"solidity": 0.9974828963949736, "top": 800, "right": 2035, "bottom": 3215, "left": 435}, {"solidity": 0.9963072546787279, "top": 795, "right": 5700, "bottom": 3210, "left": 4100}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709460f.jpg"} -{"rects": [{"solidity": 0.9977768130812844, "top": 815, "right": 2060, "bottom": 3210, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712198f.jpg"} -{"rects": [{"solidity": 0.9977772309139258, "top": 1045, "right": 3525, "bottom": 5020, "left": 350}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719135f.jpg"} -{"rects": [{"solidity": 0.9977773618454916, "top": 835, "right": 2140, "bottom": 3210, "left": 555}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721344f.jpg"} -{"rects": [{"solidity": 0.9977774119196575, "top": 765, "right": 2010, "bottom": 3160, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723970f.jpg"} -{"rects": [{"solidity": 0.9977779101012937, "top": 1295, "right": 3630, "bottom": 5355, "left": 315}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/716881f.jpg"} -{"rects": [{"solidity": 0.9977780398932694, "top": 835, "right": 3775, "bottom": 3260, "left": 2145}, {"solidity": 0.9993302401428821, "top": 835, "right": 1920, "bottom": 3255, "left": 315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715277f.jpg"} -{"rects": [{"solidity": 0.997778092272856, "top": 415, "right": 5005, "bottom": 3670, "left": 905}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711849f.jpg"} -{"rects": [{"solidity": 0.9977781776649932, "top": 960, "right": 1980, "bottom": 3165, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717279f.jpg"} -{"rects": [{"solidity": 0.9977783181009864, "top": 450, "right": 2920, "bottom": 1875, "left": 1065}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722651f.jpg"} -{"rects": [{"solidity": 0.9977786464875938, "top": 460, "right": 5115, "bottom": 3670, "left": 1070}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704068f.jpg"} -{"rects": [{"solidity": 0.9977787223978292, "top": 405, "right": 3000, "bottom": 2030, "left": 575}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704538f.jpg"} -{"rects": [{"solidity": 0.9977789418744771, "top": 1270, "right": 3640, "bottom": 5275, "left": 365}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/708978f.jpg"} -{"rects": [{"solidity": 0.997779124143851, "top": 440, "right": 5125, "bottom": 3745, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714426f.jpg"} -{"rects": [{"solidity": 0.9977791857014239, "top": 415, "right": 3165, "bottom": 1995, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729414f.jpg"} -{"rects": [{"solidity": 0.9977793354668566, "top": 385, "right": 5175, "bottom": 3635, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732596f.jpg"} -{"rects": [{"solidity": 0.9977794101683412, "top": 510, "right": 5005, "bottom": 3585, "left": 1120}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713960f.jpg"} -{"rects": [{"solidity": 0.9977795076339471, "top": 1000, "right": 3205, "bottom": 5100, "left": 520}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720703f.jpg"} -{"rects": [{"solidity": 0.9977797528559516, "top": 960, "right": 2740, "bottom": 3990, "left": 315}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517209.jpg"} -{"rects": [{"solidity": 0.9977802978073594, "top": 665, "right": 2035, "bottom": 3085, "left": 420}], "shape": {"h": 3865, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732345f.jpg"} -{"rects": [{"solidity": 0.9977805348321815, "top": 415, "right": 3165, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719345f.jpg"} -{"rects": [{"solidity": 0.9977805487942122, "top": 665, "right": 3460, "bottom": 4760, "left": 230}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700513f.jpg"} -{"rects": [{"solidity": 0.9977806031763315, "top": 820, "right": 3885, "bottom": 3240, "left": 2260}, {"solidity": 0.9967956467216629, "top": 830, "right": 2005, "bottom": 3240, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719072f.jpg"} -{"rects": [{"solidity": 0.9977806293328169, "top": 1205, "right": 3190, "bottom": 4875, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731825f.jpg"} -{"rects": [{"solidity": 0.9977811453234762, "top": 400, "right": 3185, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729498f.jpg"} -{"rects": [{"solidity": 0.9977811524165082, "top": 980, "right": 3495, "bottom": 3010, "left": 450}, {"solidity": 0.9963917709097846, "top": 805, "right": 5560, "bottom": 3215, "left": 3930}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715228f.jpg"} -{"rects": [{"solidity": 0.9977812291990238, "top": 355, "right": 3130, "bottom": 1960, "left": 725}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700826f.jpg"} -{"rects": [{"solidity": 0.9977817471320699, "top": 440, "right": 3095, "bottom": 2055, "left": 680}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706072f.jpg"} -{"rects": [{"solidity": 0.9977818551161496, "top": 760, "right": 2005, "bottom": 3160, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716702f.jpg"} -{"rects": [{"solidity": 0.9977819031463048, "top": 375, "right": 3060, "bottom": 2000, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704535f.jpg"} -{"rects": [{"solidity": 0.9977821713598496, "top": 1610, "right": 3655, "bottom": 5690, "left": 415}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720790f.jpg"} -{"rects": [{"solidity": 0.997782254159484, "top": 415, "right": 3150, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720141f.jpg"} -{"rects": [{"solidity": 0.9977822923062853, "top": 765, "right": 2020, "bottom": 3175, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724415f.jpg"} -{"rects": [{"solidity": 0.9977823247854969, "top": 490, "right": 5340, "bottom": 3385, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710447f.jpg"} -{"rects": [{"solidity": 0.9977823279458773, "top": 830, "right": 3845, "bottom": 3255, "left": 2225}, {"solidity": 0.9968960667345652, "top": 845, "right": 2010, "bottom": 3255, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713744f.jpg"} -{"rects": [{"solidity": 0.9977824354810323, "top": 445, "right": 3185, "bottom": 2065, "left": 755}, {"solidity": 0.997417582947686, "top": 2250, "right": 3190, "bottom": 3870, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705262f.jpg"} -{"rects": [{"solidity": 0.9977830335660978, "top": 565, "right": 5050, "bottom": 3700, "left": 1110}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717139f.jpg"} -{"rects": [{"solidity": 0.9977833250124812, "top": 700, "right": 2730, "bottom": 2105, "left": 930}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706924f.jpg"} -{"rects": [{"solidity": 0.9977836122610054, "top": 445, "right": 3220, "bottom": 2055, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702590f.jpg"} -{"rects": [{"solidity": 0.9977838760944888, "top": 650, "right": 2715, "bottom": 2055, "left": 885}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706787f.jpg"} -{"rects": [{"solidity": 0.9977839194059885, "top": 2225, "right": 3200, "bottom": 3855, "left": 770}, {"solidity": 0.9967211858643842, "top": 4010, "right": 3235, "bottom": 5640, "left": 805}, {"solidity": 0.9971475547493214, "top": 450, "right": 3205, "bottom": 2070, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733243f.jpg"} -{"rects": [{"solidity": 0.997784006538935, "top": 365, "right": 5070, "bottom": 3645, "left": 950}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732091f.jpg"} -{"rects": [{"solidity": 0.9977841963428167, "top": 1260, "right": 3205, "bottom": 5235, "left": 495}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709071f.jpg"} -{"rects": [{"solidity": 0.9977844067187064, "top": 810, "right": 2060, "bottom": 3225, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710440f.jpg"} -{"rects": [{"solidity": 0.9977845024980865, "top": 785, "right": 3915, "bottom": 3205, "left": 2305}, {"solidity": 0.9983770554592608, "top": 790, "right": 2050, "bottom": 3205, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734549f.jpg"} -{"rects": [{"solidity": 0.997784657147107, "top": 1020, "right": 3585, "bottom": 5160, "left": 315}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732618f.jpg"} -{"rects": [{"solidity": 0.9977846931347402, "top": 890, "right": 3635, "bottom": 4925, "left": 370}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716997f.jpg"} -{"rects": [{"solidity": 0.9977849426557478, "top": 815, "right": 4385, "bottom": 3545, "left": 2560}, {"solidity": 0.9969153034800733, "top": 815, "right": 2270, "bottom": 3545, "left": 445}, {"solidity": 0.9979838760806551, "top": 825, "right": 6480, "bottom": 3550, "left": 4660}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711255f.jpg"} -{"rects": [{"solidity": 0.997784945910883, "top": 1040, "right": 3580, "bottom": 5035, "left": 450}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/723902f.jpg"} -{"rects": [{"solidity": 0.9977853313441364, "top": 515, "right": 5140, "bottom": 3750, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715062f.jpg"} -{"rects": [{"solidity": 0.9977854322765175, "top": 500, "right": 3175, "bottom": 2115, "left": 760}, {"solidity": 0.9959977517637026, "top": 2295, "right": 3180, "bottom": 3915, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724438f.jpg"} -{"rects": [{"solidity": 0.9977854966169103, "top": 885, "right": 3850, "bottom": 3300, "left": 2235}, {"solidity": 0.9986725935902458, "top": 885, "right": 2015, "bottom": 3300, "left": 405}, {"solidity": 0.9966791052015496, "top": 885, "right": 5695, "bottom": 3305, "left": 4080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720377f.jpg"} -{"rects": [{"solidity": 0.9977854985367075, "top": 3155, "right": 3635, "bottom": 5170, "left": 435}, {"solidity": 0.9992281677527308, "top": 800, "right": 3610, "bottom": 2805, "left": 420}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/733021f.jpg"} -{"rects": [{"solidity": 0.9977855687576548, "top": 475, "right": 4915, "bottom": 3715, "left": 900}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729459f.jpg"} -{"rects": [{"solidity": 0.9977856451899475, "top": 2195, "right": 3170, "bottom": 3805, "left": 790}, {"solidity": 0.9988997660345844, "top": 330, "right": 3180, "bottom": 1925, "left": 800}, {"solidity": 0.9971687917304849, "top": 4065, "right": 3155, "bottom": 5665, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722825f.jpg"} -{"rects": [{"solidity": 0.9977858708263504, "top": 775, "right": 3895, "bottom": 3190, "left": 2275}, {"solidity": 0.9963510479041916, "top": 780, "right": 2050, "bottom": 3205, "left": 435}, {"solidity": 0.9967350564799564, "top": 805, "right": 5745, "bottom": 3220, "left": 4130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713462f.jpg"} -{"rects": [{"solidity": 0.997785958436551, "top": 825, "right": 3630, "bottom": 3230, "left": 2040}, {"solidity": 0.9965488890467828, "top": 1190, "right": 1840, "bottom": 2980, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718865f.jpg"} -{"rects": [{"solidity": 0.9977859873182892, "top": 2275, "right": 3210, "bottom": 3900, "left": 790}, {"solidity": 0.9974673047687309, "top": 400, "right": 3215, "bottom": 2020, "left": 795}, {"solidity": 0.9978540219366646, "top": 4140, "right": 3225, "bottom": 5755, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710705f.jpg"} -{"rects": [{"solidity": 0.9977865084576889, "top": 800, "right": 5275, "bottom": 3565, "left": 1255}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718174f.jpg"} -{"rects": [{"solidity": 0.9977865957521885, "top": 770, "right": 2030, "bottom": 3200, "left": 415}, {"solidity": 0.9990165831083687, "top": 755, "right": 3845, "bottom": 3185, "left": 2235}, {"solidity": 0.9964401461311959, "top": 745, "right": 5690, "bottom": 3175, "left": 4065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713384f.jpg"} -{"rects": [{"solidity": 0.9977866550183387, "top": 525, "right": 2665, "bottom": 3315, "left": 815}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727462f.jpg"} -{"rects": [{"solidity": 0.997786830125971, "top": 350, "right": 5090, "bottom": 3620, "left": 1025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715115f.jpg"} -{"rects": [{"solidity": 0.9977870808092455, "top": 550, "right": 3295, "bottom": 2565, "left": 480}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710813f.jpg"} -{"rects": [{"solidity": 0.9977871987798068, "top": 550, "right": 5615, "bottom": 4195, "left": 1015}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/706427f.jpg"} -{"rects": [{"solidity": 0.9977872488442369, "top": 480, "right": 5215, "bottom": 3785, "left": 1165}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708049f.jpg"} -{"rects": [{"solidity": 0.9977873510779739, "top": 805, "right": 2020, "bottom": 3205, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732336f.jpg"} -{"rects": [{"solidity": 0.9977874507477218, "top": 450, "right": 5075, "bottom": 3720, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733974f.jpg"} -{"rects": [{"solidity": 0.9977875535373343, "top": 790, "right": 2045, "bottom": 3210, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704904f.jpg"} -{"rects": [{"solidity": 0.9977879815815609, "top": 500, "right": 3205, "bottom": 2110, "left": 780}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717818f.jpg"} -{"rects": [{"solidity": 0.997788027258654, "top": 800, "right": 3935, "bottom": 3230, "left": 2310}, {"solidity": 0.9981061637799817, "top": 795, "right": 2075, "bottom": 3220, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732855f.jpg"} -{"rects": [{"solidity": 0.9977880436910308, "top": 400, "right": 3180, "bottom": 2005, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714258f.jpg"} -{"rects": [{"solidity": 0.9977881448427072, "top": 810, "right": 2035, "bottom": 3230, "left": 415}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706474f.jpg"} -{"rects": [{"solidity": 0.9977882836984919, "top": 710, "right": 2785, "bottom": 2130, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704247f.jpg"} -{"rects": [{"solidity": 0.997788333628094, "top": 460, "right": 5175, "bottom": 3660, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715522f.jpg"} -{"rects": [{"solidity": 0.997788392902002, "top": 350, "right": 5340, "bottom": 3625, "left": 1255}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723132f.jpg"} -{"rects": [{"solidity": 0.997788446148036, "top": 545, "right": 5100, "bottom": 3605, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708524f.jpg"} -{"rects": [{"solidity": 0.9977885358610309, "top": 270, "right": 3675, "bottom": 2710, "left": 505}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507865.jpg"} -{"rects": [{"solidity": 0.9977886576387872, "top": 1070, "right": 3420, "bottom": 5120, "left": 500}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720921f.jpg"} -{"rects": [{"solidity": 0.9977890213212296, "top": 410, "right": 5120, "bottom": 3710, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714511f.jpg"} -{"rects": [{"solidity": 0.9977890793218304, "top": 585, "right": 3005, "bottom": 2390, "left": 1795}, {"solidity": 0.9934128054116701, "top": 585, "right": 1570, "bottom": 2380, "left": 380}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716422f.jpg"} -{"rects": [{"solidity": 0.9977892883307842, "top": 760, "right": 2015, "bottom": 3185, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721572f.jpg"} -{"rects": [{"solidity": 0.9977893114965373, "top": 360, "right": 3180, "bottom": 1990, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705643f.jpg"} -{"rects": [{"solidity": 0.9977893269011162, "top": 1110, "right": 3540, "bottom": 5130, "left": 285}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714131f.jpg"} -{"rects": [{"solidity": 0.9977893609332218, "top": 360, "right": 3080, "bottom": 1965, "left": 670}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/712697f.jpg"} -{"rects": [{"solidity": 0.9977894965163847, "top": 1160, "right": 3400, "bottom": 4135, "left": 345}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717096f.jpg"} -{"rects": [{"solidity": 0.9977895069247079, "top": 900, "right": 3400, "bottom": 2920, "left": 360}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708128f.jpg"} -{"rects": [{"solidity": 0.9977895369272636, "top": 735, "right": 5630, "bottom": 3160, "left": 4015}, {"solidity": 0.9969097333761645, "top": 720, "right": 3805, "bottom": 3140, "left": 2180}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733193f.jpg"} -{"rects": [{"solidity": 0.9977895389908955, "top": 965, "right": 3460, "bottom": 5005, "left": 175}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707851f.jpg"} -{"rects": [{"solidity": 0.9977897947799947, "top": 345, "right": 3200, "bottom": 2345, "left": 490}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706027f.jpg"} -{"rects": [{"solidity": 0.9977899293688768, "top": 1045, "right": 3465, "bottom": 5125, "left": 210}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716884f.jpg"} -{"rects": [{"solidity": 0.9977902134231026, "top": 1010, "right": 3535, "bottom": 5100, "left": 295}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709977f.jpg"} -{"rects": [{"solidity": 0.997790277219767, "top": 2155, "right": 3110, "bottom": 3760, "left": 725}, {"solidity": 0.9982083482361669, "top": 490, "right": 3085, "bottom": 2090, "left": 705}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702393f.jpg"} -{"rects": [{"solidity": 0.99779034962624, "top": 445, "right": 5485, "bottom": 3645, "left": 3470}, {"solidity": 0.9981071106112687, "top": 455, "right": 3175, "bottom": 3635, "left": 1175}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733035f.jpg"} -{"rects": [{"solidity": 0.997790464291705, "top": 440, "right": 5115, "bottom": 3670, "left": 1070}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708259f.jpg"} -{"rects": [{"solidity": 0.9977906666085595, "top": 495, "right": 5100, "bottom": 3730, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721492f.jpg"} -{"rects": [{"solidity": 0.9977913088798916, "top": 510, "right": 2340, "bottom": 2935, "left": 705}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721462f.jpg"} -{"rects": [{"solidity": 0.9977913730372436, "top": 570, "right": 5760, "bottom": 4215, "left": 1155}], "shape": {"h": 4430, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/708398f.jpg"} -{"rects": [{"solidity": 0.9977915621554353, "top": 410, "right": 3200, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706711f.jpg"} -{"rects": [{"solidity": 0.9977916232749122, "top": 435, "right": 5125, "bottom": 3720, "left": 1065}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715590f.jpg"} -{"rects": [{"solidity": 0.9977917606144486, "top": 365, "right": 3845, "bottom": 2790, "left": 835}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716301f.jpg"} -{"rects": [{"solidity": 0.9977917695525228, "top": 645, "right": 2320, "bottom": 3640, "left": 325}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718472f.jpg"} -{"rects": [{"solidity": 0.9977923891502607, "top": 535, "right": 3390, "bottom": 2170, "left": 965}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705596f.jpg"} -{"rects": [{"solidity": 0.9977925176660648, "top": 1020, "right": 3545, "bottom": 5090, "left": 305}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726325f.jpg"} -{"rects": [{"solidity": 0.9977930869941248, "top": 165, "right": 3485, "bottom": 3885, "left": 540}, {"solidity": 0.9898411716171617, "top": 4035, "right": 2700, "bottom": 5885, "left": 1235}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705086f.jpg"} -{"rects": [{"solidity": 0.9977931457588638, "top": 495, "right": 5085, "bottom": 3720, "left": 1075}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730746f.jpg"} -{"rects": [{"solidity": 0.9977933878723055, "top": 830, "right": 3890, "bottom": 3250, "left": 2270}, {"solidity": 0.9958970569335561, "top": 840, "right": 2080, "bottom": 3270, "left": 460}, {"solidity": 0.9967824407669268, "top": 825, "right": 5695, "bottom": 3245, "left": 4080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709441f.jpg"} -{"rects": [{"solidity": 0.9977934815362034, "top": 670, "right": 2705, "bottom": 2090, "left": 880}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702598f.jpg"} -{"rects": [{"solidity": 0.9977936158629627, "top": 435, "right": 2665, "bottom": 3670, "left": 635}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733080f.jpg"} -{"rects": [{"solidity": 0.997793681877915, "top": 455, "right": 3190, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707230f.jpg"} -{"rects": [{"solidity": 0.997793728304995, "top": 440, "right": 3255, "bottom": 2040, "left": 845}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704868f.jpg"} -{"rects": [{"solidity": 0.9977940769363022, "top": 440, "right": 5055, "bottom": 3685, "left": 1060}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709365f.jpg"} -{"rects": [{"solidity": 0.9977941328055745, "top": 495, "right": 5045, "bottom": 3690, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720804f.jpg"} -{"rects": [{"solidity": 0.9977943448448152, "top": 420, "right": 3175, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/702619f.jpg"} -{"rects": [{"solidity": 0.9977943673190603, "top": 1080, "right": 3470, "bottom": 5075, "left": 240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716655f.jpg"} -{"rects": [{"solidity": 0.997794422310757, "top": 320, "right": 3115, "bottom": 1950, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704704f.jpg"} -{"rects": [{"solidity": 0.9977949928776318, "top": 785, "right": 5730, "bottom": 3190, "left": 4120}, {"solidity": 0.9980950264833797, "top": 785, "right": 3890, "bottom": 3185, "left": 2285}, {"solidity": 0.9959392886077935, "top": 790, "right": 2015, "bottom": 3190, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719259f.jpg"} -{"rects": [{"solidity": 0.9977953345903975, "top": 660, "right": 2480, "bottom": 3700, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715084f.jpg"} -{"rects": [{"solidity": 0.9977954043760222, "top": 475, "right": 5055, "bottom": 3755, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708052f.jpg"} -{"rects": [{"solidity": 0.9977955405807937, "top": 375, "right": 5180, "bottom": 3590, "left": 1190}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709080f.jpg"} -{"rects": [{"solidity": 0.9977957029097366, "top": 430, "right": 3200, "bottom": 2040, "left": 770}, {"solidity": 0.9953645856302155, "top": 2205, "right": 2900, "bottom": 3620, "left": 1075}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703769f.jpg"} -{"rects": [{"solidity": 0.9977958958344492, "top": 610, "right": 4740, "bottom": 3280, "left": 1290}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712935f.jpg"} -{"rects": [{"solidity": 0.9977959991781692, "top": 940, "right": 3585, "bottom": 5035, "left": 305}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/718793f.jpg"} -{"rects": [{"solidity": 0.9977960289940343, "top": 2180, "right": 2615, "bottom": 3610, "left": 785}, {"solidity": 0.9963600830585074, "top": 620, "right": 2620, "bottom": 2045, "left": 790}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712188f.jpg"} -{"rects": [{"solidity": 0.9977963207577564, "top": 405, "right": 3205, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732525f.jpg"} -{"rects": [{"solidity": 0.997796322524278, "top": 420, "right": 5035, "bottom": 3700, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730521f.jpg"} -{"rects": [{"solidity": 0.9977967137610574, "top": 1305, "right": 3200, "bottom": 4740, "left": 515}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720890f.jpg"} -{"rects": [{"solidity": 0.9977967787452582, "top": 1100, "right": 3560, "bottom": 5110, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724488f.jpg"} -{"rects": [{"solidity": 0.9977968533101865, "top": 435, "right": 3200, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707667f.jpg"} -{"rects": [{"solidity": 0.9977969227986188, "top": 800, "right": 2070, "bottom": 3220, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720481f.jpg"} -{"rects": [{"solidity": 0.9977971430789535, "top": 970, "right": 3895, "bottom": 3380, "left": 2280}, {"solidity": 0.9978790610791493, "top": 970, "right": 2020, "bottom": 3380, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728367f.jpg"} -{"rects": [{"solidity": 0.9977972428337614, "top": 330, "right": 3170, "bottom": 1955, "left": 775}, {"solidity": 0.9980452758135245, "top": 2185, "right": 3165, "bottom": 3820, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704336f.jpg"} -{"rects": [{"solidity": 0.9977975209122791, "top": 430, "right": 5185, "bottom": 3645, "left": 1185}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708229f.jpg"} -{"rects": [{"solidity": 0.9977978692552592, "top": 925, "right": 5170, "bottom": 3360, "left": 3545}, {"solidity": 0.9971205999866074, "top": 960, "right": 2565, "bottom": 3390, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718186f.jpg"} -{"rects": [{"solidity": 0.9977978981406629, "top": 2255, "right": 3190, "bottom": 3885, "left": 800}, {"solidity": 0.9974260559832824, "top": 355, "right": 3195, "bottom": 1980, "left": 810}, {"solidity": 0.9986659124276143, "top": 4170, "right": 3165, "bottom": 5790, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720564f.jpg"} -{"rects": [{"solidity": 0.9977980757772793, "top": 275, "right": 3965, "bottom": 2695, "left": 955}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516893.jpg"} -{"rects": [{"solidity": 0.9977983478036127, "top": 400, "right": 3120, "bottom": 2025, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701773f.jpg"} -{"rects": [{"solidity": 0.9977984099954341, "top": 480, "right": 5240, "bottom": 3410, "left": 865}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723614f.jpg"} -{"rects": [{"solidity": 0.997798452498243, "top": 715, "right": 1955, "bottom": 3130, "left": 330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715508f.jpg"} -{"rects": [{"solidity": 0.997798477246184, "top": 635, "right": 2510, "bottom": 3705, "left": 490}, {"solidity": 0.995743791017887, "top": 850, "right": 4145, "bottom": 3265, "left": 2520}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719507f.jpg"} -{"rects": [{"solidity": 0.997798618247099, "top": 2495, "right": 2535, "bottom": 3980, "left": 445}, {"solidity": 0.9959576657357049, "top": 675, "right": 2535, "bottom": 2165, "left": 450}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716039f.jpg"} -{"rects": [{"solidity": 0.9977987852859879, "top": 1065, "right": 3340, "bottom": 4965, "left": 580}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732971f.jpg"} -{"rects": [{"solidity": 0.9977990230398429, "top": 405, "right": 5305, "bottom": 3560, "left": 1345}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731930f.jpg"} -{"rects": [{"solidity": 0.9977990243565278, "top": 500, "right": 4890, "bottom": 3685, "left": 1215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708623f.jpg"} -{"rects": [{"solidity": 0.9977990285367334, "top": 845, "right": 1990, "bottom": 3230, "left": 390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717867f.jpg"} -{"rects": [{"solidity": 0.997799162163803, "top": 490, "right": 3425, "bottom": 2320, "left": 700}], "shape": {"h": 4440, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/702218f.jpg"} -{"rects": [{"solidity": 0.9977992207349377, "top": 1050, "right": 3485, "bottom": 4965, "left": 370}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726714f.jpg"} -{"rects": [{"solidity": 0.997799369507942, "top": 620, "right": 3210, "bottom": 2555, "left": 620}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/708707f.jpg"} -{"rects": [{"solidity": 0.9977996928576198, "top": 1125, "right": 3895, "bottom": 6040, "left": 600}], "shape": {"h": 6850, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711538f.jpg"} -{"rects": [{"solidity": 0.9977997476084924, "top": 400, "right": 3225, "bottom": 2005, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725875f.jpg"} -{"rects": [{"solidity": 0.9977998044700849, "top": 1050, "right": 3565, "bottom": 5100, "left": 360}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722244f.jpg"} -{"rects": [{"solidity": 0.9977998113219493, "top": 2250, "right": 3185, "bottom": 3885, "left": 750}, {"solidity": 0.9952013172352155, "top": 4115, "right": 3180, "bottom": 5735, "left": 750}, {"solidity": 0.9976541177001331, "top": 390, "right": 3180, "bottom": 2000, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731560f.jpg"} -{"rects": [{"solidity": 0.997799883947689, "top": 1045, "right": 3400, "bottom": 5010, "left": 280}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714880f.jpg"} -{"rects": [{"solidity": 0.9977999347295214, "top": 360, "right": 3255, "bottom": 3760, "left": 625}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714947f.jpg"} -{"rects": [{"solidity": 0.9978003852003606, "top": 920, "right": 3515, "bottom": 4980, "left": 325}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711129f.jpg"} -{"rects": [{"solidity": 0.9978006320198564, "top": 945, "right": 3630, "bottom": 4995, "left": 355}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700525f.jpg"} -{"rects": [{"solidity": 0.9978007456244001, "top": 3225, "right": 3295, "bottom": 5145, "left": 560}, {"solidity": 0.9957647540635637, "top": 650, "right": 3320, "bottom": 2540, "left": 630}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714899f.jpg"} -{"rects": [{"solidity": 0.9978009746677884, "top": 1115, "right": 3640, "bottom": 5230, "left": 340}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/722112f.jpg"} -{"rects": [{"solidity": 0.9978010887618258, "top": 495, "right": 3125, "bottom": 2080, "left": 750}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723757f.jpg"} -{"rects": [{"solidity": 0.9978011698945406, "top": 2300, "right": 3190, "bottom": 3910, "left": 780}, {"solidity": 0.9962307858418893, "top": 425, "right": 3185, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730476f.jpg"} -{"rects": [{"solidity": 0.9978014708743531, "top": 415, "right": 3200, "bottom": 2030, "left": 795}, {"solidity": 0.9957640893604848, "top": 2275, "right": 3220, "bottom": 3885, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/732339f.jpg"} -{"rects": [{"solidity": 0.9978017239971386, "top": 755, "right": 2045, "bottom": 3165, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713750f.jpg"} -{"rects": [{"solidity": 0.9978017948561247, "top": 415, "right": 5085, "bottom": 3730, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714738f.jpg"} -{"rects": [{"solidity": 0.9978021907402825, "top": 805, "right": 3915, "bottom": 3225, "left": 2295}, {"solidity": 0.9970288239715908, "top": 790, "right": 2030, "bottom": 3205, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733674f.jpg"} -{"rects": [{"solidity": 0.9978022412433196, "top": 1000, "right": 3610, "bottom": 5055, "left": 305}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725413f.jpg"} -{"rects": [{"solidity": 0.9978022588108267, "top": 320, "right": 5130, "bottom": 3540, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725130f.jpg"} -{"rects": [{"solidity": 0.9978024802136103, "top": 900, "right": 5825, "bottom": 3740, "left": 3785}, {"solidity": 0.9968572375074101, "top": 425, "right": 3410, "bottom": 2480, "left": 570}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718769f.jpg"} -{"rects": [{"solidity": 0.9978026649959164, "top": 675, "right": 4145, "bottom": 3485, "left": 2140}, {"solidity": 0.9977230262320772, "top": 850, "right": 1950, "bottom": 3230, "left": 370}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732512f.jpg"} -{"rects": [{"solidity": 0.9978026985292257, "top": 790, "right": 2260, "bottom": 3515, "left": 435}], "shape": {"h": 4420, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711167f.jpg"} -{"rects": [{"solidity": 0.9978027232841995, "top": 3200, "right": 3230, "bottom": 5140, "left": 515}, {"solidity": 0.9966358951668947, "top": 700, "right": 3235, "bottom": 2630, "left": 520}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722677f.jpg"} -{"rects": [{"solidity": 0.9978027621434012, "top": 335, "right": 3940, "bottom": 2760, "left": 930}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517289.jpg"} -{"rects": [{"solidity": 0.9978029802492735, "top": 375, "right": 3215, "bottom": 1990, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725261f.jpg"} -{"rects": [{"solidity": 0.9978031053315827, "top": 2255, "right": 3115, "bottom": 3875, "left": 705}, {"solidity": 0.9952112345026147, "top": 390, "right": 3115, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728547f.jpg"} -{"rects": [{"solidity": 0.9978031302488042, "top": 1055, "right": 3515, "bottom": 5075, "left": 270}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731372f.jpg"} -{"rects": [{"solidity": 0.9978032730272625, "top": 435, "right": 3160, "bottom": 2060, "left": 735}, {"solidity": 0.9953414167198469, "top": 2320, "right": 3175, "bottom": 3950, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722094f.jpg"} -{"rects": [{"solidity": 0.9978034157219351, "top": 790, "right": 3825, "bottom": 3185, "left": 2250}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726201f.jpg"} -{"rects": [{"solidity": 0.9978041833040772, "top": 825, "right": 1980, "bottom": 3250, "left": 365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701255f.jpg"} -{"rects": [{"solidity": 0.9978043267678398, "top": 245, "right": 3165, "bottom": 1865, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720696f.jpg"} -{"rects": [{"solidity": 0.9978045505097609, "top": 405, "right": 3230, "bottom": 2030, "left": 810}, {"solidity": 0.9962282354617094, "top": 2270, "right": 3225, "bottom": 3880, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727540f.jpg"} -{"rects": [{"solidity": 0.9978046430309834, "top": 525, "right": 4885, "bottom": 3545, "left": 1090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704678f.jpg"} -{"rects": [{"solidity": 0.9978047044930382, "top": 635, "right": 2635, "bottom": 2045, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705244f.jpg"} -{"rects": [{"solidity": 0.9978048126008283, "top": 445, "right": 3170, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722411f.jpg"} -{"rects": [{"solidity": 0.9978049626649115, "top": 390, "right": 3135, "bottom": 2005, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730240f.jpg"} -{"rects": [{"solidity": 0.9978050926017985, "top": 425, "right": 5065, "bottom": 3710, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710941f.jpg"} -{"rects": [{"solidity": 0.9978053569458026, "top": 410, "right": 5055, "bottom": 3680, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717717f.jpg"} -{"rects": [{"solidity": 0.997805731723322, "top": 450, "right": 5110, "bottom": 3735, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700133f.jpg"} -{"rects": [{"solidity": 0.9978060785895176, "top": 775, "right": 2005, "bottom": 3160, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718680f.jpg"} -{"rects": [{"solidity": 0.9978061508131164, "top": 1000, "right": 3555, "bottom": 5110, "left": 260}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/716687f.jpg"} -{"rects": [{"solidity": 0.9978062286703733, "top": 750, "right": 3480, "bottom": 5080, "left": 365}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733603f.jpg"} -{"rects": [{"solidity": 0.9978063072940031, "top": 540, "right": 5090, "bottom": 3595, "left": 995}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731184f.jpg"} -{"rects": [{"solidity": 0.9978066945445929, "top": 2240, "right": 3040, "bottom": 3860, "left": 610}, {"solidity": 0.9979363548698168, "top": 395, "right": 3045, "bottom": 2015, "left": 625}, {"solidity": 0.9957741684809485, "top": 4115, "right": 3035, "bottom": 5735, "left": 605}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730865f.jpg"} -{"rects": [{"solidity": 0.9978068205365923, "top": 530, "right": 5330, "bottom": 3380, "left": 1640}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724682f.jpg"} -{"rects": [{"solidity": 0.9978070841816322, "top": 1090, "right": 3450, "bottom": 5025, "left": 300}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717322f.jpg"} -{"rects": [{"solidity": 0.9978071072217224, "top": 300, "right": 3985, "bottom": 2750, "left": 955}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516911.jpg"} -{"rects": [{"solidity": 0.9978073243175541, "top": 830, "right": 2050, "bottom": 3240, "left": 445}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712022f.jpg"} -{"rects": [{"solidity": 0.997807430924153, "top": 435, "right": 3180, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722691f.jpg"} -{"rects": [{"solidity": 0.9978075375235893, "top": 405, "right": 3210, "bottom": 2010, "left": 795}, {"solidity": 0.9967994144458862, "top": 2275, "right": 3185, "bottom": 3860, "left": 790}, {"solidity": 0.9985387889670208, "top": 4115, "right": 3170, "bottom": 5690, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726340f.jpg"} -{"rects": [{"solidity": 0.9978077641064395, "top": 415, "right": 5155, "bottom": 3695, "left": 1055}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/721992f.jpg"} -{"rects": [{"solidity": 0.9978077850365531, "top": 655, "right": 2750, "bottom": 2080, "left": 930}, {"solidity": 0.9967877052580459, "top": 2155, "right": 2735, "bottom": 3545, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706792f.jpg"} -{"rects": [{"solidity": 0.9978080299852891, "top": 1120, "right": 3480, "bottom": 5115, "left": 265}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731492f.jpg"} -{"rects": [{"solidity": 0.9978087147068286, "top": 190, "right": 3370, "bottom": 1880, "left": 800}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706098f.jpg"} -{"rects": [{"solidity": 0.9978087181238897, "top": 825, "right": 3500, "bottom": 4910, "left": 255}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707433f.jpg"} -{"rects": [{"solidity": 0.9978087398314863, "top": 820, "right": 3825, "bottom": 3245, "left": 2215}, {"solidity": 0.9979128203625376, "top": 835, "right": 1990, "bottom": 3245, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723422f.jpg"} -{"rects": [{"solidity": 0.9978089821991976, "top": 615, "right": 5350, "bottom": 2040, "left": 3535}, {"solidity": 0.9972442609495858, "top": 2085, "right": 2700, "bottom": 3465, "left": 865}, {"solidity": 0.9977220501548606, "top": 630, "right": 2715, "bottom": 1995, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703828f.jpg"} -{"rects": [{"solidity": 0.9978090130112188, "top": 710, "right": 4825, "bottom": 3380, "left": 1370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718578f.jpg"} -{"rects": [{"solidity": 0.9978091018928715, "top": 645, "right": 2035, "bottom": 3065, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725693f.jpg"} -{"rects": [{"solidity": 0.9978091488942402, "top": 425, "right": 5070, "bottom": 3680, "left": 1055}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721654f.jpg"} -{"rects": [{"solidity": 0.997809452391254, "top": 420, "right": 5155, "bottom": 3685, "left": 1050}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732691f.jpg"} -{"rects": [{"solidity": 0.9978096398951708, "top": 1040, "right": 3545, "bottom": 5060, "left": 290}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731388f.jpg"} -{"rects": [{"solidity": 0.9978096982299229, "top": 1065, "right": 2420, "bottom": 3870, "left": 355}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509383.jpg"} -{"rects": [{"solidity": 0.997809714973906, "top": 725, "right": 2065, "bottom": 3145, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719056f.jpg"} -{"rects": [{"solidity": 0.9978100562989951, "top": 655, "right": 1915, "bottom": 3065, "left": 295}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715214f.jpg"} -{"rects": [{"solidity": 0.9978100750085567, "top": 395, "right": 5010, "bottom": 3630, "left": 990}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732287f.jpg"} -{"rects": [{"solidity": 0.9978101382207182, "top": 1085, "right": 3545, "bottom": 5135, "left": 270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704081f.jpg"} -{"rects": [{"solidity": 0.9978103590333977, "top": 915, "right": 3325, "bottom": 2890, "left": 500}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719115f.jpg"} -{"rects": [{"solidity": 0.9978104049299749, "top": 870, "right": 2240, "bottom": 3285, "left": 620}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715456f.jpg"} -{"rects": [{"solidity": 0.9978105618343734, "top": 345, "right": 5155, "bottom": 3625, "left": 1130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732613f.jpg"} -{"rects": [{"solidity": 0.9978107307198786, "top": 1110, "right": 3630, "bottom": 5080, "left": 460}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704412f.jpg"} -{"rects": [{"solidity": 0.9978107705763241, "top": 1285, "right": 3475, "bottom": 4955, "left": 305}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731326f.jpg"} -{"rects": [{"solidity": 0.9978110992132794, "top": 825, "right": 2630, "bottom": 3885, "left": 185}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716385f.jpg"} -{"rects": [{"solidity": 0.9978112560318456, "top": 440, "right": 3145, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705109f.jpg"} -{"rects": [{"solidity": 0.997811624232519, "top": 1430, "right": 3685, "bottom": 5475, "left": 415}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/720529f.jpg"} -{"rects": [{"solidity": 0.9978117663889918, "top": 4120, "right": 3150, "bottom": 5730, "left": 745}, {"solidity": 0.9969394087865425, "top": 425, "right": 3135, "bottom": 2035, "left": 735}, {"solidity": 0.9957775705598824, "top": 2280, "right": 3135, "bottom": 3880, "left": 735}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719613f.jpg"} -{"rects": [{"solidity": 0.9978119362427912, "top": 360, "right": 3405, "bottom": 1980, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700280f.jpg"} -{"rects": [{"solidity": 0.9978119378577269, "top": 715, "right": 2050, "bottom": 3115, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722097f.jpg"} -{"rects": [{"solidity": 0.9978119453615997, "top": 430, "right": 2965, "bottom": 2020, "left": 950}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712352f.jpg"} -{"rects": [{"solidity": 0.9978122041647274, "top": 2290, "right": 3070, "bottom": 3930, "left": 645}, {"solidity": 0.9964546643823948, "top": 415, "right": 3055, "bottom": 2045, "left": 640}, {"solidity": 0.9966500568005784, "top": 4155, "right": 3060, "bottom": 5780, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722819f.jpg"} -{"rects": [{"solidity": 0.9978123963563721, "top": 430, "right": 5060, "bottom": 3680, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731385f.jpg"} -{"rects": [{"solidity": 0.9978124606408638, "top": 375, "right": 5230, "bottom": 3615, "left": 1125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732615f.jpg"} -{"rects": [{"solidity": 0.9978125099071109, "top": 800, "right": 3905, "bottom": 3240, "left": 2275}, {"solidity": 0.9990334938878026, "top": 790, "right": 2075, "bottom": 3225, "left": 450}, {"solidity": 0.9977193350764356, "top": 825, "right": 5735, "bottom": 3265, "left": 4110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705581f.jpg"} -{"rects": [{"solidity": 0.9978125287246172, "top": 860, "right": 3595, "bottom": 4875, "left": 365}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/715602f.jpg"} -{"rects": [{"solidity": 0.9978125741704139, "top": 605, "right": 3390, "bottom": 2225, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701377f.jpg"} -{"rects": [{"solidity": 0.9978126991486501, "top": 370, "right": 5030, "bottom": 3615, "left": 1025}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722050f.jpg"} -{"rects": [{"solidity": 0.9978127156455603, "top": 805, "right": 2395, "bottom": 3345, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733824f.jpg"} -{"rects": [{"solidity": 0.9978128711010713, "top": 515, "right": 5060, "bottom": 3735, "left": 1055}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716862f.jpg"} -{"rects": [{"solidity": 0.9978133031069637, "top": 930, "right": 3520, "bottom": 5010, "left": 300}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723936f.jpg"} -{"rects": [{"solidity": 0.9978133847160524, "top": 825, "right": 2000, "bottom": 3225, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712593f.jpg"} -{"rects": [{"solidity": 0.997813430280039, "top": 445, "right": 5050, "bottom": 3720, "left": 960}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/730966f.jpg"} -{"rects": [{"solidity": 0.9978136832622106, "top": 635, "right": 4875, "bottom": 3610, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712651f.jpg"} -{"rects": [{"solidity": 0.9978138252433109, "top": 530, "right": 5110, "bottom": 3790, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734567f.jpg"} -{"rects": [{"solidity": 0.9978138571349092, "top": 770, "right": 3815, "bottom": 3175, "left": 2215}, {"solidity": 0.9976365240258984, "top": 785, "right": 2015, "bottom": 3165, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713850f.jpg"} -{"rects": [{"solidity": 0.9978139451999707, "top": 830, "right": 3545, "bottom": 4910, "left": 300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714416f.jpg"} -{"rects": [{"solidity": 0.9978140120693717, "top": 355, "right": 3270, "bottom": 2325, "left": 445}, {"solidity": 0.983980684751042, "top": 2465, "right": 3255, "bottom": 4320, "left": 450}, {"solidity": 0.9962704810392549, "top": 4375, "right": 3245, "bottom": 5745, "left": 960}], "shape": {"h": 6045, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/728117f.jpg"} -{"rects": [{"solidity": 0.9978144002241416, "top": 420, "right": 5270, "bottom": 3440, "left": 1450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730033f.jpg"} -{"rects": [{"solidity": 0.9978144346397818, "top": 940, "right": 3530, "bottom": 5025, "left": 300}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714136f.jpg"} -{"rects": [{"solidity": 0.9978146011437758, "top": 405, "right": 3230, "bottom": 3830, "left": 595}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715577f.jpg"} -{"rects": [{"solidity": 0.9978146589219528, "top": 545, "right": 3510, "bottom": 2950, "left": 310}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718032f.jpg"} -{"rects": [{"solidity": 0.9978147055570942, "top": 365, "right": 5160, "bottom": 3660, "left": 1115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725380f.jpg"} -{"rects": [{"solidity": 0.9978151109744221, "top": 835, "right": 2060, "bottom": 3255, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720619f.jpg"} -{"rects": [{"solidity": 0.9978152884562557, "top": 350, "right": 3165, "bottom": 1975, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710681f.jpg"} -{"rects": [{"solidity": 0.9978153665572921, "top": 500, "right": 5125, "bottom": 3785, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708045f.jpg"} -{"rects": [{"solidity": 0.9978153706664121, "top": 520, "right": 4930, "bottom": 3765, "left": 860}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715098f.jpg"} -{"rects": [{"solidity": 0.9978154055200423, "top": 2245, "right": 2960, "bottom": 3845, "left": 860}, {"solidity": 0.997571371553795, "top": 455, "right": 2970, "bottom": 2040, "left": 860}, {"solidity": 0.9965975341680207, "top": 4070, "right": 2955, "bottom": 5630, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709481f.jpg"} -{"rects": [{"solidity": 0.9978156134328233, "top": 1150, "right": 3505, "bottom": 5065, "left": 450}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721391f.jpg"} -{"rects": [{"solidity": 0.9978156260862079, "top": 2080, "right": 3190, "bottom": 3705, "left": 760}, {"solidity": 0.9976203159939646, "top": 355, "right": 3170, "bottom": 1985, "left": 745}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705457f.jpg"} -{"rects": [{"solidity": 0.9978157978685313, "top": 410, "right": 3165, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732318f.jpg"} -{"rects": [{"solidity": 0.9978159624322325, "top": 345, "right": 5135, "bottom": 3620, "left": 1130}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732612f.jpg"} -{"rects": [{"solidity": 0.9978160860126124, "top": 780, "right": 2040, "bottom": 3185, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722575f.jpg"} -{"rects": [{"solidity": 0.9978162633237515, "top": 475, "right": 4985, "bottom": 3650, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700683f.jpg"} -{"rects": [{"solidity": 0.9978164731627964, "top": 390, "right": 5070, "bottom": 3620, "left": 1060}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708567f.jpg"} -{"rects": [{"solidity": 0.9978165408920435, "top": 455, "right": 5085, "bottom": 3665, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729988f.jpg"} -{"rects": [{"solidity": 0.9978166816239602, "top": 775, "right": 2005, "bottom": 3155, "left": 425}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714446f.jpg"} -{"rects": [{"solidity": 0.9978167222612015, "top": 415, "right": 5170, "bottom": 3635, "left": 1180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718971f.jpg"} -{"rects": [{"solidity": 0.9978167355549438, "top": 380, "right": 3760, "bottom": 2800, "left": 795}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508459.jpg"} -{"rects": [{"solidity": 0.9978169893210351, "top": 940, "right": 3960, "bottom": 3350, "left": 2345}, {"solidity": 0.9961500821983289, "top": 930, "right": 2180, "bottom": 3345, "left": 550}, {"solidity": 0.9980670541192469, "top": 945, "right": 5730, "bottom": 3360, "left": 4120}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719803f.jpg"} -{"rects": [{"solidity": 0.9978170295170471, "top": 335, "right": 2395, "bottom": 1530, "left": 595}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716361f.jpg"} -{"rects": [{"solidity": 0.997817392811519, "top": 330, "right": 3165, "bottom": 1960, "left": 755}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704870f.jpg"} -{"rects": [{"solidity": 0.997817664420239, "top": 300, "right": 3180, "bottom": 1925, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706226f.jpg"} -{"rects": [{"solidity": 0.9978180472171985, "top": 455, "right": 3085, "bottom": 2070, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700230f.jpg"} -{"rects": [{"solidity": 0.9978182101531149, "top": 425, "right": 3130, "bottom": 2045, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709388f.jpg"} -{"rects": [{"solidity": 0.9978182784126755, "top": 1155, "right": 3550, "bottom": 5145, "left": 305}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705235f.jpg"} -{"rects": [{"solidity": 0.997818844091278, "top": 1090, "right": 3595, "bottom": 5210, "left": 355}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/712677f.jpg"} -{"rects": [{"solidity": 0.9978192298454888, "top": 2290, "right": 3135, "bottom": 3915, "left": 715}, {"solidity": 0.9975844479564173, "top": 440, "right": 3120, "bottom": 2075, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702295f.jpg"} -{"rects": [{"solidity": 0.9978194448911331, "top": 480, "right": 3150, "bottom": 2095, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702991f.jpg"} -{"rects": [{"solidity": 0.9978194651847216, "top": 585, "right": 5245, "bottom": 3505, "left": 900}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724932f.jpg"} -{"rects": [{"solidity": 0.9978194982810007, "top": 450, "right": 5125, "bottom": 3640, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720355f.jpg"} -{"rects": [{"solidity": 0.997819586947196, "top": 780, "right": 2005, "bottom": 3205, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703636f.jpg"} -{"rects": [{"solidity": 0.997819839274334, "top": 1175, "right": 3625, "bottom": 5230, "left": 305}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730510f.jpg"} -{"rects": [{"solidity": 0.997819864929412, "top": 1150, "right": 3300, "bottom": 4935, "left": 645}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722232f.jpg"} -{"rects": [{"solidity": 0.9978199318632609, "top": 690, "right": 4885, "bottom": 3655, "left": 1030}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723598f.jpg"} -{"rects": [{"solidity": 0.9978203150517918, "top": 440, "right": 3210, "bottom": 2055, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723510f.jpg"} -{"rects": [{"solidity": 0.9978205179790501, "top": 405, "right": 3185, "bottom": 1985, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727675f.jpg"} -{"rects": [{"solidity": 0.9978207064471486, "top": 650, "right": 3020, "bottom": 2460, "left": 600}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507549.jpg"} -{"rects": [{"solidity": 0.9978207739965068, "top": 565, "right": 3140, "bottom": 2180, "left": 725}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704434f.jpg"} -{"rects": [{"solidity": 0.9978207867358173, "top": 510, "right": 5130, "bottom": 3750, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706052f.jpg"} -{"rects": [{"solidity": 0.9978209457029249, "top": 475, "right": 4870, "bottom": 3490, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729978f.jpg"} -{"rects": [{"solidity": 0.9978210846699138, "top": 665, "right": 2785, "bottom": 2080, "left": 960}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706859f.jpg"} -{"rects": [{"solidity": 0.9978210910755323, "top": 410, "right": 5285, "bottom": 3645, "left": 1200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732625f.jpg"} -{"rects": [{"solidity": 0.9978212547426513, "top": 495, "right": 4935, "bottom": 3750, "left": 900}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709499f.jpg"} -{"rects": [{"solidity": 0.9978213090035524, "top": 745, "right": 3805, "bottom": 3170, "left": 2180}, {"solidity": 0.9996432185578246, "top": 750, "right": 1935, "bottom": 3150, "left": 320}, {"solidity": 0.9978608447070492, "top": 760, "right": 5670, "bottom": 3165, "left": 4055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723325f.jpg"} -{"rects": [{"solidity": 0.9978213578152718, "top": 395, "right": 3130, "bottom": 2005, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728390f.jpg"} -{"rects": [{"solidity": 0.9978213749007885, "top": 1045, "right": 3490, "bottom": 5050, "left": 370}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723925f.jpg"} -{"rects": [{"solidity": 0.9978214051936501, "top": 605, "right": 2820, "bottom": 1985, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704526f.jpg"} -{"rects": [{"solidity": 0.997821493695067, "top": 950, "right": 3525, "bottom": 5025, "left": 330}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714204f.jpg"} -{"rects": [{"solidity": 0.9978215895090938, "top": 500, "right": 2520, "bottom": 2870, "left": 920}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711865f.jpg"} -{"rects": [{"solidity": 0.9978217671753228, "top": 990, "right": 2710, "bottom": 4010, "left": 290}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517261.jpg"} -{"rects": [{"solidity": 0.9978217932330248, "top": 465, "right": 5020, "bottom": 3700, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732767f.jpg"} -{"rects": [{"solidity": 0.9978217988704375, "top": 445, "right": 3210, "bottom": 2010, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700695f.jpg"} -{"rects": [{"solidity": 0.9978231546895658, "top": 440, "right": 3170, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713105f.jpg"} -{"rects": [{"solidity": 0.9978231806760038, "top": 1360, "right": 3305, "bottom": 4760, "left": 665}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722381f.jpg"} -{"rects": [{"solidity": 0.9978231931565772, "top": 535, "right": 4950, "bottom": 3725, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716545f.jpg"} -{"rects": [{"solidity": 0.9978231958447513, "top": 755, "right": 1960, "bottom": 3170, "left": 340}, {"solidity": 0.9967548293177617, "top": 790, "right": 3850, "bottom": 3170, "left": 2225}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734292f.jpg"} -{"rects": [{"solidity": 0.9978234111748499, "top": 380, "right": 5220, "bottom": 3650, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732595f.jpg"} -{"rects": [{"solidity": 0.9978234256465621, "top": 405, "right": 5205, "bottom": 3630, "left": 1145}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722380f.jpg"} -{"rects": [{"solidity": 0.9978234669493268, "top": 445, "right": 5070, "bottom": 3740, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714499f.jpg"} -{"rects": [{"solidity": 0.9978236837471894, "top": 420, "right": 5135, "bottom": 3665, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732655f.jpg"} -{"rects": [{"solidity": 0.9978237039981026, "top": 800, "right": 2030, "bottom": 3220, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713350f.jpg"} -{"rects": [{"solidity": 0.9978240030674846, "top": 570, "right": 3140, "bottom": 2200, "left": 720}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701678f.jpg"} -{"rects": [{"solidity": 0.9978241808203163, "top": 445, "right": 3175, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710571f.jpg"} -{"rects": [{"solidity": 0.9978243299700197, "top": 1025, "right": 3655, "bottom": 5065, "left": 345}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/710085f.jpg"} -{"rects": [{"solidity": 0.9978243574548229, "top": 805, "right": 2035, "bottom": 3215, "left": 425}, {"solidity": 0.9962469654222164, "top": 825, "right": 3880, "bottom": 3225, "left": 2275}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716871f.jpg"} -{"rects": [{"solidity": 0.9978247960222714, "top": 460, "right": 5135, "bottom": 3780, "left": 1055}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714386f.jpg"} -{"rects": [{"solidity": 0.9978248189766015, "top": 535, "right": 3045, "bottom": 2155, "left": 630}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704537f.jpg"} -{"rects": [{"solidity": 0.9978248239870021, "top": 380, "right": 4965, "bottom": 3610, "left": 965}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715598f.jpg"} -{"rects": [{"solidity": 0.9978248429595141, "top": 370, "right": 3100, "bottom": 1975, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728624f.jpg"} -{"rects": [{"solidity": 0.9978248503222403, "top": 510, "right": 4955, "bottom": 3530, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711482f.jpg"} -{"rects": [{"solidity": 0.9978249609564275, "top": 980, "right": 3520, "bottom": 4980, "left": 325}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/712946f.jpg"} -{"rects": [{"solidity": 0.9978250825808601, "top": 2210, "right": 2800, "bottom": 4655, "left": 1160}, {"solidity": 0.9959082080968453, "top": 350, "right": 3210, "bottom": 1990, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701297f.jpg"} -{"rects": [{"solidity": 0.9978253265812005, "top": 730, "right": 3290, "bottom": 2780, "left": 460}, {"solidity": 0.9983827257627415, "top": 3375, "right": 3280, "bottom": 5415, "left": 460}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733811f.jpg"} -{"rects": [{"solidity": 0.9978254780686946, "top": 485, "right": 5055, "bottom": 3715, "left": 995}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700924f.jpg"} -{"rects": [{"solidity": 0.9978255155439796, "top": 2160, "right": 2720, "bottom": 3585, "left": 870}, {"solidity": 0.9941055465136813, "top": 675, "right": 5345, "bottom": 2120, "left": 3485}, {"solidity": 0.9969414578227528, "top": 685, "right": 2700, "bottom": 2100, "left": 890}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707183f.jpg"} -{"rects": [{"solidity": 0.9978255399048915, "top": 825, "right": 3765, "bottom": 3235, "left": 2145}, {"solidity": 0.9966249829298269, "top": 820, "right": 2010, "bottom": 3235, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713652f.jpg"} -{"rects": [{"solidity": 0.9978255450118818, "top": 510, "right": 5140, "bottom": 3805, "left": 1110}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708050f.jpg"} -{"rects": [{"solidity": 0.9978255573881131, "top": 440, "right": 4345, "bottom": 3600, "left": 2345}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733033f.jpg"} -{"rects": [{"solidity": 0.9978255733014886, "top": 330, "right": 3140, "bottom": 1950, "left": 705}, {"solidity": 0.996802515946997, "top": 2095, "right": 3040, "bottom": 3500, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710599f.jpg"} -{"rects": [{"solidity": 0.9978258095451698, "top": 1040, "right": 3560, "bottom": 5055, "left": 325}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721180f.jpg"} -{"rects": [{"solidity": 0.9978258518117902, "top": 645, "right": 4820, "bottom": 3490, "left": 1140}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719145f.jpg"} -{"rects": [{"solidity": 0.9978260029373116, "top": 2050, "right": 3315, "bottom": 3670, "left": 905}, {"solidity": 0.9951877326627715, "top": 415, "right": 3070, "bottom": 1830, "left": 1255}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726531f.jpg"} -{"rects": [{"solidity": 0.9978261234211718, "top": 485, "right": 3300, "bottom": 2065, "left": 925}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713993f.jpg"} -{"rects": [{"solidity": 0.9978263218625903, "top": 495, "right": 5080, "bottom": 3750, "left": 1080}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709136f.jpg"} -{"rects": [{"solidity": 0.9978263551332158, "top": 405, "right": 5175, "bottom": 3665, "left": 1140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732700f.jpg"} -{"rects": [{"solidity": 0.9978265560633837, "top": 385, "right": 3130, "bottom": 3600, "left": 1110}, {"solidity": 0.9996382033766381, "top": 395, "right": 5660, "bottom": 3605, "left": 3660}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703747f.jpg"} -{"rects": [{"solidity": 0.9978266514083491, "top": 710, "right": 2040, "bottom": 3135, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733274f.jpg"} -{"rects": [{"solidity": 0.9978269660040173, "top": 415, "right": 3345, "bottom": 2005, "left": 935}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725118f.jpg"} -{"rects": [{"solidity": 0.9978272080805258, "top": 955, "right": 3355, "bottom": 5035, "left": 355}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729921f.jpg"} -{"rects": [{"solidity": 0.9978272712912907, "top": 465, "right": 3060, "bottom": 2075, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729240f.jpg"} -{"rects": [{"solidity": 0.9978273004084518, "top": 445, "right": 5065, "bottom": 3630, "left": 1055}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724037f.jpg"} -{"rects": [{"solidity": 0.9978273069830834, "top": 705, "right": 2200, "bottom": 3365, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701977f.jpg"} -{"rects": [{"solidity": 0.9978274230254927, "top": 880, "right": 3580, "bottom": 4970, "left": 355}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713624f.jpg"} -{"rects": [{"solidity": 0.9978275982772893, "top": 360, "right": 4925, "bottom": 3590, "left": 895}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715594f.jpg"} -{"rects": [{"solidity": 0.997827639114649, "top": 1010, "right": 3560, "bottom": 5105, "left": 330}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707428f.jpg"} -{"rects": [{"solidity": 0.997827705573704, "top": 505, "right": 5080, "bottom": 3720, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730622f.jpg"} -{"rects": [{"solidity": 0.9978278865802545, "top": 3540, "right": 3700, "bottom": 5725, "left": 615}, {"solidity": 0.9960195314441721, "top": 645, "right": 3700, "bottom": 2805, "left": 645}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710277f.jpg"} -{"rects": [{"solidity": 0.9978279799524027, "top": 450, "right": 5280, "bottom": 3645, "left": 1285}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734452f.jpg"} -{"rects": [{"solidity": 0.9978281930694658, "top": 305, "right": 4115, "bottom": 2785, "left": 945}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508717.jpg"} -{"rects": [{"solidity": 0.9978282993051532, "top": 665, "right": 2790, "bottom": 2080, "left": 960}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705222f.jpg"} -{"rects": [{"solidity": 0.997828299432712, "top": 1295, "right": 3270, "bottom": 4870, "left": 580}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701106f.jpg"} -{"rects": [{"solidity": 0.9978283422221337, "top": 955, "right": 3565, "bottom": 5065, "left": 320}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709051f.jpg"} -{"rects": [{"solidity": 0.9978287201690634, "top": 755, "right": 2045, "bottom": 3175, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719729f.jpg"} -{"rects": [{"solidity": 0.997828868187375, "top": 500, "right": 5100, "bottom": 3790, "left": 1070}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712462f.jpg"} -{"rects": [{"solidity": 0.9978289448735289, "top": 510, "right": 3300, "bottom": 2145, "left": 860}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713835f.jpg"} -{"rects": [{"solidity": 0.9978295662030612, "top": 755, "right": 2050, "bottom": 3170, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707761f.jpg"} -{"rects": [{"solidity": 0.9978297333378975, "top": 420, "right": 5235, "bottom": 3660, "left": 1220}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705767f.jpg"} -{"rects": [{"solidity": 0.9978300086276766, "top": 790, "right": 2075, "bottom": 3190, "left": 470}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715128f.jpg"} -{"rects": [{"solidity": 0.9978301099932232, "top": 765, "right": 1985, "bottom": 3170, "left": 380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720106f.jpg"} -{"rects": [{"solidity": 0.9978304701152699, "top": 505, "right": 5145, "bottom": 3765, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703958f.jpg"} -{"rects": [{"solidity": 0.9978310580809502, "top": 1370, "right": 3485, "bottom": 5275, "left": 385}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717179f.jpg"} -{"rects": [{"solidity": 0.9978313602512742, "top": 1140, "right": 3555, "bottom": 5105, "left": 365}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/731790f.jpg"} -{"rects": [{"solidity": 0.997831360519942, "top": 1085, "right": 3570, "bottom": 5120, "left": 280}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/726943f.jpg"} -{"rects": [{"solidity": 0.9978314335484664, "top": 430, "right": 3110, "bottom": 2045, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718064f.jpg"} -{"rects": [{"solidity": 0.9978314573260407, "top": 285, "right": 4940, "bottom": 3545, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730971f.jpg"} -{"rects": [{"solidity": 0.9978315409076096, "top": 370, "right": 5025, "bottom": 3595, "left": 970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718421f.jpg"} -{"rects": [{"solidity": 0.9978318488934723, "top": 1045, "right": 3530, "bottom": 5075, "left": 250}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725374f.jpg"} -{"rects": [{"solidity": 0.9978319087862217, "top": 830, "right": 3820, "bottom": 3250, "left": 2200}, {"solidity": 0.998925647031495, "top": 825, "right": 1960, "bottom": 3230, "left": 340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707856f.jpg"} -{"rects": [{"solidity": 0.997831997673861, "top": 245, "right": 3540, "bottom": 2065, "left": 830}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711421f.jpg"} -{"rects": [{"solidity": 0.9978323132454489, "top": 745, "right": 2025, "bottom": 3145, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719657f.jpg"} -{"rects": [{"solidity": 0.9978328012483514, "top": 895, "right": 3510, "bottom": 4290, "left": 870}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/733343f.jpg"} -{"rects": [{"solidity": 0.9978328997271817, "top": 1115, "right": 3585, "bottom": 5265, "left": 270}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/719128f.jpg"} -{"rects": [{"solidity": 0.9978329765455016, "top": 1065, "right": 3475, "bottom": 5090, "left": 265}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/714789f.jpg"} -{"rects": [{"solidity": 0.9978329867146759, "top": 435, "right": 5045, "bottom": 3670, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731524f.jpg"} -{"rects": [{"solidity": 0.9978331458171059, "top": 745, "right": 3875, "bottom": 3180, "left": 2260}, {"solidity": 0.9959023954479692, "top": 755, "right": 2015, "bottom": 3175, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708021f.jpg"} -{"rects": [{"solidity": 0.9978332218079852, "top": 395, "right": 3075, "bottom": 2025, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729309f.jpg"} -{"rects": [{"solidity": 0.9978335711387168, "top": 905, "right": 1920, "bottom": 3285, "left": 300}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719092f.jpg"} -{"rects": [{"solidity": 0.997833667840505, "top": 800, "right": 3185, "bottom": 2680, "left": 450}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/704663f.jpg"} -{"rects": [{"solidity": 0.9978340254059136, "top": 770, "right": 2780, "bottom": 3550, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706796f.jpg"} -{"rects": [{"solidity": 0.9978341910320175, "top": 2070, "right": 3305, "bottom": 3700, "left": 885}, {"solidity": 0.9968633380517308, "top": 3895, "right": 3330, "bottom": 5520, "left": 910}, {"solidity": 0.9982030985988718, "top": 265, "right": 3275, "bottom": 1880, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710324f.jpg"} -{"rects": [{"solidity": 0.9978343208677688, "top": 1045, "right": 3465, "bottom": 5000, "left": 400}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714215f.jpg"} -{"rects": [{"solidity": 0.9978344477038399, "top": 905, "right": 3900, "bottom": 3320, "left": 2275}, {"solidity": 0.9966959589797701, "top": 920, "right": 2020, "bottom": 3325, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734839f.jpg"} -{"rects": [{"solidity": 0.9978346079767523, "top": 390, "right": 5060, "bottom": 3700, "left": 970}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724640f.jpg"} -{"rects": [{"solidity": 0.9978347968694858, "top": 640, "right": 2625, "bottom": 3695, "left": 640}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716756f.jpg"} -{"rects": [{"solidity": 0.9978349465104432, "top": 330, "right": 5125, "bottom": 3640, "left": 1080}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732752f.jpg"} -{"rects": [{"solidity": 0.9978351165866578, "top": 2275, "right": 3075, "bottom": 3900, "left": 655}, {"solidity": 0.9967224198715369, "top": 400, "right": 3090, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719541f.jpg"} -{"rects": [{"solidity": 0.9978354626088372, "top": 930, "right": 3625, "bottom": 4965, "left": 365}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733487f.jpg"} -{"rects": [{"solidity": 0.9978358284130383, "top": 430, "right": 3120, "bottom": 2035, "left": 705}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/706846f.jpg"} -{"rects": [{"solidity": 0.9978358881875563, "top": 390, "right": 3160, "bottom": 2010, "left": 745}, {"solidity": 0.9973733003708282, "top": 2250, "right": 3150, "bottom": 3870, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709564f.jpg"} -{"rects": [{"solidity": 0.9978361510456463, "top": 420, "right": 3220, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702910f.jpg"} -{"rects": [{"solidity": 0.9978365715600639, "top": 440, "right": 5045, "bottom": 3740, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710942f.jpg"} -{"rects": [{"solidity": 0.9978367786432819, "top": 795, "right": 2025, "bottom": 3205, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721885f.jpg"} -{"rects": [{"solidity": 0.9978368161497071, "top": 1055, "right": 3490, "bottom": 5095, "left": 280}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709193f.jpg"} -{"rects": [{"solidity": 0.9978369438318848, "top": 2285, "right": 3185, "bottom": 3895, "left": 775}, {"solidity": 0.9969847348129623, "top": 400, "right": 3160, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718748f.jpg"} -{"rects": [{"solidity": 0.9978369862438782, "top": 400, "right": 3225, "bottom": 2010, "left": 800}, {"solidity": 0.9955379891552885, "top": 2240, "right": 3230, "bottom": 3845, "left": 815}, {"solidity": 0.994997859661105, "top": 4110, "right": 2900, "bottom": 5545, "left": 1065}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704648f.jpg"} -{"rects": [{"solidity": 0.9978370936053036, "top": 470, "right": 5070, "bottom": 3725, "left": 1040}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730157f.jpg"} -{"rects": [{"solidity": 0.997837330769541, "top": 505, "right": 5000, "bottom": 3600, "left": 1170}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723540f.jpg"} -{"rects": [{"solidity": 0.9978373494554926, "top": 785, "right": 3875, "bottom": 3205, "left": 2250}, {"solidity": 0.9971294104078096, "top": 775, "right": 2050, "bottom": 3195, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718696f.jpg"} -{"rects": [{"solidity": 0.9978374100953382, "top": 390, "right": 2675, "bottom": 3345, "left": 320}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509447.jpg"} -{"rects": [{"solidity": 0.9978375897367936, "top": 430, "right": 3105, "bottom": 2045, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729344f.jpg"} -{"rects": [{"solidity": 0.9978376801257841, "top": 795, "right": 3865, "bottom": 3205, "left": 2255}, {"solidity": 0.9968324779618924, "top": 790, "right": 2110, "bottom": 3205, "left": 500}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709085f.jpg"} -{"rects": [{"solidity": 0.9978379787273146, "top": 920, "right": 3895, "bottom": 3315, "left": 2320}, {"solidity": 0.9961114386002519, "top": 930, "right": 2030, "bottom": 3320, "left": 440}, {"solidity": 0.9935902412351021, "top": 925, "right": 5725, "bottom": 3310, "left": 4140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729047f.jpg"} -{"rects": [{"solidity": 0.9978379913233799, "top": 880, "right": 3545, "bottom": 4970, "left": 315}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715001f.jpg"} -{"rects": [{"solidity": 0.9978382390764332, "top": 470, "right": 2960, "bottom": 2075, "left": 550}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702376f.jpg"} -{"rects": [{"solidity": 0.9978383952246147, "top": 2230, "right": 3180, "bottom": 3845, "left": 745}, {"solidity": 0.9968469173481499, "top": 400, "right": 3180, "bottom": 2000, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719257f.jpg"} -{"rects": [{"solidity": 0.9978384925578166, "top": 650, "right": 2670, "bottom": 2070, "left": 865}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720134f.jpg"} -{"rects": [{"solidity": 0.9978387169254144, "top": 460, "right": 5080, "bottom": 3690, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708682f.jpg"} -{"rects": [{"solidity": 0.997838825994508, "top": 1095, "right": 3500, "bottom": 5095, "left": 255}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/721993f.jpg"} -{"rects": [{"solidity": 0.9978388786213095, "top": 1010, "right": 3540, "bottom": 5100, "left": 320}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717273f.jpg"} -{"rects": [{"solidity": 0.9978390557727846, "top": 405, "right": 3135, "bottom": 2000, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718318f.jpg"} -{"rects": [{"solidity": 0.9978392098982778, "top": 350, "right": 5175, "bottom": 3610, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708576f.jpg"} -{"rects": [{"solidity": 0.9978394679225018, "top": 615, "right": 2810, "bottom": 2110, "left": 770}, {"solidity": 0.9971560288292968, "top": 610, "right": 5325, "bottom": 2095, "left": 3365}, {"solidity": 0.9964381121994658, "top": 2130, "right": 5305, "bottom": 3610, "left": 3395}, {"solidity": 0.9979380044767008, "top": 2150, "right": 2750, "bottom": 3605, "left": 835}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731247f.jpg"} -{"rects": [{"solidity": 0.9978396025641438, "top": 450, "right": 3115, "bottom": 2070, "left": 700}, {"solidity": 0.9969954948769755, "top": 2310, "right": 3100, "bottom": 3920, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709307f.jpg"} -{"rects": [{"solidity": 0.9978400684219936, "top": 1160, "right": 3520, "bottom": 5200, "left": 300}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709162f.jpg"} -{"rects": [{"solidity": 0.997840110308652, "top": 2255, "right": 3135, "bottom": 3875, "left": 715}, {"solidity": 0.9970787540756875, "top": 400, "right": 3125, "bottom": 2015, "left": 705}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/712754f.jpg"} -{"rects": [{"solidity": 0.9978402289877699, "top": 480, "right": 3350, "bottom": 2085, "left": 940}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725955f.jpg"} -{"rects": [{"solidity": 0.9978403805707234, "top": 375, "right": 3210, "bottom": 1950, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727473f.jpg"} -{"rects": [{"solidity": 0.9978407001685308, "top": 2105, "right": 2705, "bottom": 3550, "left": 880}, {"solidity": 0.9972510764589972, "top": 2115, "right": 5290, "bottom": 3545, "left": 3475}, {"solidity": 0.9988031177800778, "top": 635, "right": 5290, "bottom": 2050, "left": 3475}, {"solidity": 0.9977172278900448, "top": 635, "right": 2680, "bottom": 2040, "left": 895}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702781f.jpg"} -{"rects": [{"solidity": 0.9978408043003981, "top": 390, "right": 3160, "bottom": 2005, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734071f.jpg"} -{"rects": [{"solidity": 0.9978415325119165, "top": 780, "right": 2040, "bottom": 3205, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707042f.jpg"} -{"rects": [{"solidity": 0.9978415360383149, "top": 875, "right": 3560, "bottom": 4895, "left": 290}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715012f.jpg"} -{"rects": [{"solidity": 0.9978415711062294, "top": 1205, "right": 3400, "bottom": 5055, "left": 330}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723004f.jpg"} -{"rects": [{"solidity": 0.9978416283615407, "top": 690, "right": 3330, "bottom": 2665, "left": 480}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706259f.jpg"} -{"rects": [{"solidity": 0.9978417511349739, "top": 495, "right": 5115, "bottom": 3795, "left": 1070}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708046f.jpg"} -{"rects": [{"solidity": 0.9978417858543981, "top": 1200, "right": 3645, "bottom": 5235, "left": 405}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733501f.jpg"} -{"rects": [{"solidity": 0.9978418655368644, "top": 565, "right": 5065, "bottom": 3615, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710166f.jpg"} -{"rects": [{"solidity": 0.9978422131807495, "top": 435, "right": 5040, "bottom": 3660, "left": 1045}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708959f.jpg"} -{"rects": [{"solidity": 0.9978425026968716, "top": 795, "right": 2100, "bottom": 3195, "left": 505}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710078f.jpg"} -{"rects": [{"solidity": 0.9978426044937605, "top": 1265, "right": 2690, "bottom": 4435, "left": 255}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507879.jpg"} -{"rects": [{"solidity": 0.9978426176239497, "top": 460, "right": 5105, "bottom": 3725, "left": 1040}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730282f.jpg"} -{"rects": [{"solidity": 0.9978426571205924, "top": 955, "right": 3435, "bottom": 4930, "left": 285}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714063f.jpg"} -{"rects": [{"solidity": 0.9978426900814175, "top": 960, "right": 3510, "bottom": 5095, "left": 255}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/713892f.jpg"} -{"rects": [{"solidity": 0.997842712303515, "top": 1060, "right": 3560, "bottom": 5035, "left": 355}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717304f.jpg"} -{"rects": [{"solidity": 0.9978427274592266, "top": 2290, "right": 3210, "bottom": 3910, "left": 785}, {"solidity": 0.9969004740260373, "top": 430, "right": 3210, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725112f.jpg"} -{"rects": [{"solidity": 0.997842816222797, "top": 785, "right": 3895, "bottom": 3185, "left": 2270}, {"solidity": 0.9972408119896145, "top": 1035, "right": 2045, "bottom": 2925, "left": 490}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720216f.jpg"} -{"rects": [{"solidity": 0.9978430773828473, "top": 235, "right": 3235, "bottom": 1850, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705192f.jpg"} -{"rects": [{"solidity": 0.9978431041112492, "top": 465, "right": 5025, "bottom": 3670, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710780f.jpg"} -{"rects": [{"solidity": 0.9978433698974869, "top": 405, "right": 5195, "bottom": 3650, "left": 1090}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732687f.jpg"} -{"rects": [{"solidity": 0.997843380800576, "top": 815, "right": 2010, "bottom": 3225, "left": 400}, {"solidity": 0.9910212400421992, "top": 820, "right": 3835, "bottom": 3230, "left": 2215}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701612f.jpg"} -{"rects": [{"solidity": 0.9978434807386564, "top": 865, "right": 2065, "bottom": 3275, "left": 450}, {"solidity": 0.9957883645084863, "top": 870, "right": 3935, "bottom": 3295, "left": 2310}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733247f.jpg"} -{"rects": [{"solidity": 0.9978435133899081, "top": 820, "right": 3925, "bottom": 3255, "left": 2295}, {"solidity": 0.9959048754679343, "top": 810, "right": 5780, "bottom": 3245, "left": 4160}, {"solidity": 0.9941777876244592, "top": 805, "right": 2070, "bottom": 3230, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707547f.jpg"} -{"rects": [{"solidity": 0.9978435467161179, "top": 410, "right": 3205, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717995f.jpg"} -{"rects": [{"solidity": 0.9978437949209391, "top": 440, "right": 5145, "bottom": 3705, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708756f.jpg"} -{"rects": [{"solidity": 0.9978438348377485, "top": 395, "right": 3065, "bottom": 2000, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729023f.jpg"} -{"rects": [{"solidity": 0.9978439870505724, "top": 955, "right": 3555, "bottom": 5035, "left": 315}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711597f.jpg"} -{"rects": [{"solidity": 0.9978441628436271, "top": 425, "right": 3150, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704113f.jpg"} -{"rects": [{"solidity": 0.997844254311013, "top": 580, "right": 3585, "bottom": 4655, "left": 355}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/706848f.jpg"} -{"rects": [{"solidity": 0.9978444016086263, "top": 1020, "right": 3740, "bottom": 4990, "left": 505}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720611f.jpg"} -{"rects": [{"solidity": 0.9978444513670615, "top": 395, "right": 5100, "bottom": 3645, "left": 1090}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724453f.jpg"} -{"rects": [{"solidity": 0.997844887001541, "top": 355, "right": 5205, "bottom": 3590, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725510f.jpg"} -{"rects": [{"solidity": 0.9978453092496977, "top": 920, "right": 3575, "bottom": 4955, "left": 315}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713719f.jpg"} -{"rects": [{"solidity": 0.9978458072672185, "top": 505, "right": 5100, "bottom": 3740, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731474f.jpg"} -{"rects": [{"solidity": 0.9978460275593933, "top": 305, "right": 3105, "bottom": 1935, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703626f.jpg"} -{"rects": [{"solidity": 0.997846152121811, "top": 1040, "right": 3490, "bottom": 5175, "left": 220}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/717555f.jpg"} -{"rects": [{"solidity": 0.9978468210283704, "top": 700, "right": 2710, "bottom": 2090, "left": 915}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728249f.jpg"} -{"rects": [{"solidity": 0.9978473089731338, "top": 645, "right": 3800, "bottom": 3055, "left": 2200}, {"solidity": 0.9993478381983293, "top": 650, "right": 1975, "bottom": 3055, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725992f.jpg"} -{"rects": [{"solidity": 0.9978474520763979, "top": 480, "right": 3145, "bottom": 2120, "left": 725}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718797f.jpg"} -{"rects": [{"solidity": 0.9978478076081398, "top": 285, "right": 3880, "bottom": 2715, "left": 730}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507685.jpg"} -{"rects": [{"solidity": 0.9978478133396911, "top": 805, "right": 3855, "bottom": 3225, "left": 2240}, {"solidity": 0.9977200389736928, "top": 805, "right": 2030, "bottom": 3220, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730550f.jpg"} -{"rects": [{"solidity": 0.9978478204445691, "top": 995, "right": 3560, "bottom": 5095, "left": 325}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732640f.jpg"} -{"rects": [{"solidity": 0.9978481788560183, "top": 2210, "right": 3200, "bottom": 3830, "left": 790}, {"solidity": 0.9969758909515304, "top": 4065, "right": 3200, "bottom": 5690, "left": 790}, {"solidity": 0.9962433627889068, "top": 370, "right": 3205, "bottom": 1980, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734153f.jpg"} -{"rects": [{"solidity": 0.9978483337706638, "top": 390, "right": 2425, "bottom": 1590, "left": 625}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715872f.jpg"} -{"rects": [{"solidity": 0.9978483465840594, "top": 305, "right": 3555, "bottom": 2130, "left": 840}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706420f.jpg"} -{"rects": [{"solidity": 0.9978484030987942, "top": 2115, "right": 3385, "bottom": 4120, "left": 340}, {"solidity": 0.9967354706968845, "top": 430, "right": 3195, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720893f.jpg"} -{"rects": [{"solidity": 0.9978486993823478, "top": 2130, "right": 3195, "bottom": 3750, "left": 785}, {"solidity": 0.9982768937003627, "top": 3980, "right": 3175, "bottom": 5600, "left": 800}, {"solidity": 0.995163820288475, "top": 300, "right": 3195, "bottom": 1905, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710764f.jpg"} -{"rects": [{"solidity": 0.9978487551684367, "top": 480, "right": 5105, "bottom": 3760, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706341f.jpg"} -{"rects": [{"solidity": 0.997848932242833, "top": 335, "right": 5040, "bottom": 3570, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732735f.jpg"} -{"rects": [{"solidity": 0.9978490926128109, "top": 910, "right": 2705, "bottom": 3930, "left": 280}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516935.jpg"} -{"rects": [{"solidity": 0.997849096816794, "top": 370, "right": 3125, "bottom": 1970, "left": 720}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729835f.jpg"} -{"rects": [{"solidity": 0.997849356931575, "top": 990, "right": 2010, "bottom": 3395, "left": 410}, {"solidity": 0.9961438905042196, "top": 2390, "right": 3760, "bottom": 3400, "left": 2345}, {"solidity": 0.9954721981925604, "top": 985, "right": 3750, "bottom": 1970, "left": 2350}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717496f.jpg"} -{"rects": [{"solidity": 0.9978496104954859, "top": 415, "right": 5215, "bottom": 3675, "left": 1110}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732708f.jpg"} -{"rects": [{"solidity": 0.9978497763501945, "top": 805, "right": 2030, "bottom": 3190, "left": 440}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714605f.jpg"} -{"rects": [{"solidity": 0.9978497921574513, "top": 755, "right": 2000, "bottom": 3165, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724075f.jpg"} -{"rects": [{"solidity": 0.9978503092417951, "top": 675, "right": 2690, "bottom": 3705, "left": 250}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507601.jpg"} -{"rects": [{"solidity": 0.9978504409097818, "top": 460, "right": 5130, "bottom": 3720, "left": 1055}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/724622f.jpg"} -{"rects": [{"solidity": 0.9978507089403995, "top": 425, "right": 3175, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724600f.jpg"} -{"rects": [{"solidity": 0.9978507277655878, "top": 695, "right": 2580, "bottom": 3510, "left": 590}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719862f.jpg"} -{"rects": [{"solidity": 0.997850862287659, "top": 2245, "right": 2820, "bottom": 3665, "left": 965}, {"solidity": 0.9967212001571496, "top": 625, "right": 2815, "bottom": 2040, "left": 980}, {"solidity": 0.9963077889940689, "top": 640, "right": 4965, "bottom": 2055, "left": 3145}, {"solidity": 0.9962795041347211, "top": 2265, "right": 4955, "bottom": 3665, "left": 3155}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725651f.jpg"} -{"rects": [{"solidity": 0.9978513696552337, "top": 495, "right": 5075, "bottom": 3740, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734300f.jpg"} -{"rects": [{"solidity": 0.9978514236752339, "top": 755, "right": 2700, "bottom": 3925, "left": 250}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508883.jpg"} -{"rects": [{"solidity": 0.9978517511830105, "top": 805, "right": 2060, "bottom": 3205, "left": 455}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712829f.jpg"} -{"rects": [{"solidity": 0.9978517988972332, "top": 620, "right": 2055, "bottom": 2730, "left": 370}], "shape": {"h": 6025, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465705.jpg"} -{"rects": [{"solidity": 0.9978521748766386, "top": 785, "right": 2040, "bottom": 3195, "left": 435}, {"solidity": 0.9965271287323528, "top": 790, "right": 3850, "bottom": 3190, "left": 2250}, {"solidity": 0.9955869252849044, "top": 810, "right": 5675, "bottom": 3175, "left": 4110}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731700f.jpg"} -{"rects": [{"solidity": 0.9978522577686575, "top": 780, "right": 2040, "bottom": 3175, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713080f.jpg"} -{"rects": [{"solidity": 0.9978522646167144, "top": 785, "right": 3865, "bottom": 3190, "left": 2265}, {"solidity": 0.9972317998226776, "top": 780, "right": 2045, "bottom": 3175, "left": 445}, {"solidity": 0.9977355117119071, "top": 795, "right": 5685, "bottom": 3190, "left": 4085}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730184f.jpg"} -{"rects": [{"solidity": 0.9978524487712475, "top": 965, "right": 3570, "bottom": 4995, "left": 360}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/722779f.jpg"} -{"rects": [{"solidity": 0.9978525751979093, "top": 410, "right": 5210, "bottom": 3670, "left": 1140}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733779f.jpg"} -{"rects": [{"solidity": 0.9978525885610136, "top": 2220, "right": 3390, "bottom": 3865, "left": 960}, {"solidity": 0.9969475543170072, "top": 405, "right": 3395, "bottom": 2020, "left": 985}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/703222f.jpg"} -{"rects": [{"solidity": 0.997852831720428, "top": 355, "right": 5385, "bottom": 3650, "left": 1325}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714194f.jpg"} -{"rects": [{"solidity": 0.9978530472459332, "top": 840, "right": 1970, "bottom": 3250, "left": 360}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700699f.jpg"} -{"rects": [{"solidity": 0.9978532043749435, "top": 485, "right": 5085, "bottom": 3785, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701765f.jpg"} -{"rects": [{"solidity": 0.9978533366868855, "top": 365, "right": 2365, "bottom": 1565, "left": 565}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716435f.jpg"} -{"rects": [{"solidity": 0.9978535270453324, "top": 1050, "right": 3310, "bottom": 5065, "left": 550}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720987f.jpg"} -{"rects": [{"solidity": 0.9978535778013395, "top": 2065, "right": 3015, "bottom": 3685, "left": 610}, {"solidity": 0.9974033055919814, "top": 2070, "right": 5610, "bottom": 3685, "left": 3205}, {"solidity": 0.9968748372311058, "top": 310, "right": 5600, "bottom": 1930, "left": 3200}, {"solidity": 0.998128982838144, "top": 315, "right": 2995, "bottom": 1930, "left": 600}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702285f.jpg"} -{"rects": [{"solidity": 0.997853671904438, "top": 415, "right": 5525, "bottom": 3635, "left": 1515}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707750f.jpg"} -{"rects": [{"solidity": 0.9978539197123535, "top": 345, "right": 3505, "bottom": 2795, "left": 495}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507626.jpg"} -{"rects": [{"solidity": 0.997853935028093, "top": 1030, "right": 3600, "bottom": 5190, "left": 355}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/721859f.jpg"} -{"rects": [{"solidity": 0.9978541341912375, "top": 765, "right": 2035, "bottom": 3145, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711964f.jpg"} -{"rects": [{"solidity": 0.9978541665195036, "top": 1045, "right": 3860, "bottom": 5590, "left": 330}], "shape": {"h": 6850, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711546f.jpg"} -{"rects": [{"solidity": 0.9978544180794876, "top": 470, "right": 5120, "bottom": 3735, "left": 1090}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733390f.jpg"} -{"rects": [{"solidity": 0.9978546151069129, "top": 665, "right": 2820, "bottom": 3455, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707793f.jpg"} -{"rects": [{"solidity": 0.9978547879551947, "top": 415, "right": 5025, "bottom": 3585, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711465f.jpg"} -{"rects": [{"solidity": 0.997855028360967, "top": 1150, "right": 3515, "bottom": 5150, "left": 280}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713220f.jpg"} -{"rects": [{"solidity": 0.9978552615952103, "top": 455, "right": 3315, "bottom": 2395, "left": 530}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704820f.jpg"} -{"rects": [{"solidity": 0.9978553684554355, "top": 660, "right": 5350, "bottom": 3500, "left": 3285}, {"solidity": 0.9984244003968177, "top": 655, "right": 2770, "bottom": 3515, "left": 735}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733818f.jpg"} -{"rects": [{"solidity": 0.9978555828960501, "top": 845, "right": 3920, "bottom": 3240, "left": 2325}, {"solidity": 0.9931366802978434, "top": 835, "right": 2030, "bottom": 3225, "left": 440}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712696f.jpg"} -{"rects": [{"solidity": 0.9978556825373047, "top": 1305, "right": 3620, "bottom": 5315, "left": 350}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723656f.jpg"} -{"rects": [{"solidity": 0.9978558872956493, "top": 770, "right": 2230, "bottom": 3185, "left": 610}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711113f.jpg"} -{"rects": [{"solidity": 0.9978560217292086, "top": 580, "right": 5565, "bottom": 4240, "left": 935}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/706424f.jpg"} -{"rects": [{"solidity": 0.9978561172591023, "top": 515, "right": 5090, "bottom": 3835, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712455f.jpg"} -{"rects": [{"solidity": 0.997856172180834, "top": 1175, "right": 2945, "bottom": 2785, "left": 535}, {"solidity": 0.9985125716920958, "top": 1175, "right": 5585, "bottom": 2785, "left": 3180}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714281f.jpg"} -{"rects": [{"solidity": 0.9978562288096463, "top": 835, "right": 2050, "bottom": 3225, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711731f.jpg"} -{"rects": [{"solidity": 0.9978562306148513, "top": 930, "right": 3480, "bottom": 5020, "left": 240}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714966f.jpg"} -{"rects": [{"solidity": 0.9978563170933114, "top": 430, "right": 3190, "bottom": 2020, "left": 790}, {"solidity": 0.994904255742665, "top": 2320, "right": 3180, "bottom": 3920, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734362f.jpg"} -{"rects": [{"solidity": 0.9978563772775991, "top": 2360, "right": 2955, "bottom": 3795, "left": 1145}, {"solidity": 0.9935178893543798, "top": 565, "right": 2985, "bottom": 1990, "left": 1135}, {"solidity": 0.9940367489020862, "top": 4125, "right": 2915, "bottom": 5550, "left": 1100}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727659f.jpg"} -{"rects": [{"solidity": 0.9978564646020832, "top": 420, "right": 5100, "bottom": 3645, "left": 1085}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711489f.jpg"} -{"rects": [{"solidity": 0.9978564906041236, "top": 405, "right": 3190, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704337f.jpg"} -{"rects": [{"solidity": 0.9978567778573402, "top": 270, "right": 4145, "bottom": 2780, "left": 1110}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509783.jpg"} -{"rects": [{"solidity": 0.9978568934976274, "top": 500, "right": 3175, "bottom": 2110, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701769f.jpg"} -{"rects": [{"solidity": 0.9978570855008373, "top": 425, "right": 5075, "bottom": 3670, "left": 1060}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718468f.jpg"} -{"rects": [{"solidity": 0.997857108537933, "top": 360, "right": 3195, "bottom": 1985, "left": 775}, {"solidity": 0.9961398024544722, "top": 2250, "right": 3165, "bottom": 3870, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719683f.jpg"} -{"rects": [{"solidity": 0.9978572627176621, "top": 400, "right": 3115, "bottom": 2005, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728313f.jpg"} -{"rects": [{"solidity": 0.9978572665858306, "top": 465, "right": 2630, "bottom": 3475, "left": 210}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509385.jpg"} -{"rects": [{"solidity": 0.9978577093246515, "top": 590, "right": 5010, "bottom": 3685, "left": 1125}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727660f.jpg"} -{"rects": [{"solidity": 0.9978577123510856, "top": 795, "right": 3140, "bottom": 2770, "left": 380}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703690f.jpg"} -{"rects": [{"solidity": 0.9978581799532956, "top": 435, "right": 4885, "bottom": 3695, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715201f.jpg"} -{"rects": [{"solidity": 0.9978583201465948, "top": 645, "right": 2155, "bottom": 3030, "left": 550}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707857f.jpg"} -{"rects": [{"solidity": 0.9978585319807664, "top": 410, "right": 4880, "bottom": 3655, "left": 855}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731796f.jpg"} -{"rects": [{"solidity": 0.9978585344647142, "top": 810, "right": 2020, "bottom": 3230, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700111f.jpg"} -{"rects": [{"solidity": 0.9978586087759673, "top": 475, "right": 5050, "bottom": 3740, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700487f.jpg"} -{"rects": [{"solidity": 0.9978586683064851, "top": 465, "right": 5070, "bottom": 3735, "left": 1025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718905f.jpg"} -{"rects": [{"solidity": 0.9978588661037394, "top": 590, "right": 2890, "bottom": 3600, "left": 810}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724136f.jpg"} -{"rects": [{"solidity": 0.9978595961097075, "top": 690, "right": 2680, "bottom": 3710, "left": 660}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721769f.jpg"} -{"rects": [{"solidity": 0.9978596314982899, "top": 815, "right": 3975, "bottom": 3230, "left": 2345}, {"solidity": 0.9999644049807139, "top": 810, "right": 2080, "bottom": 3215, "left": 465}, {"solidity": 0.9955397407453735, "top": 865, "right": 5810, "bottom": 3220, "left": 4185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709260f.jpg"} -{"rects": [{"solidity": 0.9978597612587822, "top": 2260, "right": 3130, "bottom": 3880, "left": 715}, {"solidity": 0.9937489708080811, "top": 370, "right": 3140, "bottom": 1995, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710792f.jpg"} -{"rects": [{"solidity": 0.9978600454478327, "top": 405, "right": 5175, "bottom": 3685, "left": 1150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725423f.jpg"} -{"rects": [{"solidity": 0.9978600926647656, "top": 615, "right": 2760, "bottom": 2040, "left": 935}, {"solidity": 0.9980085665555469, "top": 2060, "right": 2770, "bottom": 3485, "left": 945}, {"solidity": 0.9951233770978979, "top": 615, "right": 5280, "bottom": 2040, "left": 3445}, {"solidity": 0.9945440529182106, "top": 2040, "right": 5255, "bottom": 3460, "left": 3445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704617f.jpg"} -{"rects": [{"solidity": 0.9978608536212692, "top": 850, "right": 3795, "bottom": 3270, "left": 2160}, {"solidity": 0.9971475014419799, "top": 915, "right": 2015, "bottom": 3210, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716839f.jpg"} -{"rects": [{"solidity": 0.9978612726072182, "top": 795, "right": 2065, "bottom": 3215, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719456f.jpg"} -{"rects": [{"solidity": 0.9978614789631309, "top": 305, "right": 5250, "bottom": 3570, "left": 1185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723621f.jpg"} -{"rects": [{"solidity": 0.9978615825639403, "top": 425, "right": 5120, "bottom": 3640, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732653f.jpg"} -{"rects": [{"solidity": 0.9978615844996145, "top": 450, "right": 5115, "bottom": 3775, "left": 1040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714449f.jpg"} -{"rects": [{"solidity": 0.9978615910741832, "top": 545, "right": 2680, "bottom": 3595, "left": 655}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712256f.jpg"} -{"rects": [{"solidity": 0.9978616430207106, "top": 355, "right": 3360, "bottom": 2315, "left": 565}, {"solidity": 0.9963288406407959, "top": 4185, "right": 3140, "bottom": 5810, "left": 725}, {"solidity": 0.9969319775596073, "top": 2420, "right": 3135, "bottom": 4030, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705341f.jpg"} -{"rects": [{"solidity": 0.9978616493704944, "top": 355, "right": 5090, "bottom": 3670, "left": 1025}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727457f.jpg"} -{"rects": [{"solidity": 0.9978616739357683, "top": 455, "right": 5010, "bottom": 3725, "left": 960}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718549f.jpg"} -{"rects": [{"solidity": 0.9978618179964183, "top": 905, "right": 3885, "bottom": 3345, "left": 2265}, {"solidity": 0.996644509167851, "top": 905, "right": 5720, "bottom": 3345, "left": 4095}, {"solidity": 0.9980321877855085, "top": 905, "right": 2010, "bottom": 3340, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701813f.jpg"} -{"rects": [{"solidity": 0.9978621040918484, "top": 2225, "right": 3090, "bottom": 3840, "left": 685}, {"solidity": 0.996552148750154, "top": 390, "right": 3090, "bottom": 2005, "left": 685}, {"solidity": 0.9960397323092379, "top": 4070, "right": 3070, "bottom": 5690, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708297f.jpg"} -{"rects": [{"solidity": 0.9978622200844423, "top": 340, "right": 5280, "bottom": 3575, "left": 1265}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727866f.jpg"} -{"rects": [{"solidity": 0.9978622640268368, "top": 905, "right": 1995, "bottom": 2915, "left": 470}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701993f.jpg"} -{"rects": [{"solidity": 0.9978623421211628, "top": 400, "right": 5195, "bottom": 3635, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701786f.jpg"} -{"rects": [{"solidity": 0.9978625500004851, "top": 445, "right": 3195, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700063f.jpg"} -{"rects": [{"solidity": 0.9978625772627114, "top": 795, "right": 2090, "bottom": 3760, "left": 805}], "shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508563.jpg"} -{"rects": [{"solidity": 0.9978626200661878, "top": 2295, "right": 3160, "bottom": 3910, "left": 745}, {"solidity": 0.9970594236081649, "top": 460, "right": 3155, "bottom": 2075, "left": 745}, {"solidity": 0.9977529622257364, "top": 4130, "right": 3165, "bottom": 5735, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710074f.jpg"} -{"rects": [{"solidity": 0.9978627927121941, "top": 765, "right": 3195, "bottom": 2700, "left": 435}, {"solidity": 0.9988985731624569, "top": 3350, "right": 3210, "bottom": 5260, "left": 455}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702982f.jpg"} -{"rects": [{"solidity": 0.9978628044984853, "top": 860, "right": 2000, "bottom": 3240, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719021f.jpg"} -{"rects": [{"solidity": 0.9978628592215351, "top": 2070, "right": 3050, "bottom": 3460, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733858f.jpg"} -{"rects": [{"solidity": 0.9978628755938069, "top": 170, "right": 2060, "bottom": 1965, "left": 850}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715861f.jpg"} -{"rects": [{"solidity": 0.9978629018718264, "top": 1135, "right": 3975, "bottom": 5690, "left": 280}], "shape": {"h": 6910, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708311f.jpg"} -{"rects": [{"solidity": 0.9978630151573455, "top": 140, "right": 3325, "bottom": 2040, "left": 585}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725978f.jpg"} -{"rects": [{"solidity": 0.9978631399213959, "top": 705, "right": 2690, "bottom": 2085, "left": 885}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727983f.jpg"} -{"rects": [{"solidity": 0.9978634475513434, "top": 835, "right": 2045, "bottom": 3255, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701302f.jpg"} -{"rects": [{"solidity": 0.9978642198047505, "top": 555, "right": 4970, "bottom": 3785, "left": 890}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702974f.jpg"} -{"rects": [{"solidity": 0.9978643767149823, "top": 635, "right": 2090, "bottom": 3055, "left": 465}, {"solidity": 0.9982679539404048, "top": 645, "right": 3960, "bottom": 3060, "left": 2335}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702287f.jpg"} -{"rects": [{"solidity": 0.9978646453861846, "top": 810, "right": 2680, "bottom": 3815, "left": 310}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508041.jpg"} -{"rects": [{"solidity": 0.9978646860620106, "top": 445, "right": 4970, "bottom": 3545, "left": 980}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711472f.jpg"} -{"rects": [{"solidity": 0.9978648890035432, "top": 960, "right": 3540, "bottom": 4985, "left": 345}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704413f.jpg"} -{"rects": [{"solidity": 0.9978649488741052, "top": 1265, "right": 3430, "bottom": 4685, "left": 815}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717241f.jpg"} -{"rects": [{"solidity": 0.9978657622484937, "top": 815, "right": 2030, "bottom": 3225, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714123f.jpg"} -{"rects": [{"solidity": 0.9978663894142298, "top": 450, "right": 3185, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705176f.jpg"} -{"rects": [{"solidity": 0.9978665031308501, "top": 775, "right": 2060, "bottom": 3190, "left": 445}, {"solidity": 0.994922376859961, "top": 785, "right": 3925, "bottom": 2155, "left": 2105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722524f.jpg"} -{"rects": [{"solidity": 0.9978666572058904, "top": 925, "right": 3590, "bottom": 5035, "left": 280}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/733424f.jpg"} -{"rects": [{"solidity": 0.9978669322331294, "top": 465, "right": 5110, "bottom": 3765, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715696f.jpg"} -{"rects": [{"solidity": 0.9978669541215477, "top": 2185, "right": 3095, "bottom": 3805, "left": 715}, {"solidity": 0.995677418716678, "top": 330, "right": 3105, "bottom": 1950, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710682f.jpg"} -{"rects": [{"solidity": 0.9978669762921264, "top": 1535, "right": 2785, "bottom": 3940, "left": 1180}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730884f.jpg"} -{"rects": [{"solidity": 0.9978670734308447, "top": 385, "right": 3165, "bottom": 1995, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729272f.jpg"} -{"rects": [{"solidity": 0.9978673793866293, "top": 650, "right": 2620, "bottom": 3705, "left": 235}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716393f.jpg"} -{"rects": [{"solidity": 0.9978673885080788, "top": 955, "right": 2700, "bottom": 3975, "left": 215}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509373.jpg"} -{"rects": [{"solidity": 0.9978674832904805, "top": 430, "right": 5095, "bottom": 3560, "left": 1180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727337f.jpg"} -{"rects": [{"solidity": 0.9978677627564947, "top": 780, "right": 2070, "bottom": 3200, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707367f.jpg"} -{"rects": [{"solidity": 0.9978678754141003, "top": 485, "right": 5040, "bottom": 3750, "left": 1030}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731854f.jpg"} -{"rects": [{"solidity": 0.9978679860778067, "top": 1000, "right": 3510, "bottom": 5075, "left": 245}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711577f.jpg"} -{"rects": [{"solidity": 0.9978680797512868, "top": 810, "right": 1970, "bottom": 3225, "left": 360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718012f.jpg"} -{"rects": [{"solidity": 0.9978681866122119, "top": 385, "right": 3150, "bottom": 2010, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718868f.jpg"} -{"rects": [{"solidity": 0.9978686574024308, "top": 380, "right": 3650, "bottom": 2445, "left": 350}, {"solidity": 0.9956692832579828, "top": 295, "right": 5835, "bottom": 3600, "left": 3760}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704409f.jpg"} -{"rects": [{"solidity": 0.9978687202619712, "top": 455, "right": 4990, "bottom": 3570, "left": 1130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712838f.jpg"} -{"rects": [{"solidity": 0.9978687390147466, "top": 790, "right": 2030, "bottom": 3190, "left": 415}, {"solidity": 0.9994254768379028, "top": 795, "right": 3865, "bottom": 3195, "left": 2260}, {"solidity": 0.9976126154426085, "top": 810, "right": 5685, "bottom": 3195, "left": 4090}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719276f.jpg"} -{"rects": [{"solidity": 0.9978687771023727, "top": 2350, "right": 3155, "bottom": 3965, "left": 730}, {"solidity": 0.9966294048280804, "top": 440, "right": 3175, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722630f.jpg"} -{"rects": [{"solidity": 0.9978688814003884, "top": 490, "right": 5075, "bottom": 3715, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730619f.jpg"} -{"rects": [{"solidity": 0.9978693710759029, "top": 390, "right": 3215, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701192f.jpg"} -{"rects": [{"solidity": 0.99786940072053, "top": 745, "right": 2030, "bottom": 3160, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718746f.jpg"} -{"rects": [{"solidity": 0.9978696620509344, "top": 820, "right": 3615, "bottom": 4920, "left": 375}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705692f.jpg"} -{"rects": [{"solidity": 0.9978699129418245, "top": 1145, "right": 2970, "bottom": 3060, "left": 1780}, {"solidity": 0.9990990580024177, "top": 1145, "right": 1540, "bottom": 3025, "left": 365}, {"solidity": 0.994140385859964, "top": 1165, "right": 4345, "bottom": 3080, "left": 3175}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720609f.jpg"} -{"rects": [{"solidity": 0.9978701841872436, "top": 770, "right": 1985, "bottom": 3185, "left": 360}, {"solidity": 0.9964120549785563, "top": 790, "right": 3810, "bottom": 3205, "left": 2185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724755f.jpg"} -{"rects": [{"solidity": 0.9978703302149805, "top": 485, "right": 2615, "bottom": 3700, "left": 595}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733043f.jpg"} -{"rects": [{"solidity": 0.9978706310378388, "top": 805, "right": 2025, "bottom": 3205, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700159f.jpg"} -{"rects": [{"solidity": 0.9978707355977892, "top": 810, "right": 3910, "bottom": 3580, "left": 2075}, {"solidity": 0.9984358858003534, "top": 800, "right": 2045, "bottom": 3225, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705441f.jpg"} -{"rects": [{"solidity": 0.9978711311903363, "top": 775, "right": 2035, "bottom": 3200, "left": 415}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712753f.jpg"} -{"rects": [{"solidity": 0.9978711693425087, "top": 345, "right": 5275, "bottom": 3580, "left": 1265}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727858f.jpg"} -{"rects": [{"solidity": 0.9978711731976078, "top": 480, "right": 5060, "bottom": 3720, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718900f.jpg"} -{"rects": [{"solidity": 0.9978712070073278, "top": 660, "right": 2715, "bottom": 3705, "left": 675}, {"solidity": 0.9964273280672757, "top": 935, "right": 4285, "bottom": 3365, "left": 2735}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715238f.jpg"} -{"rects": [{"solidity": 0.9978714421419274, "top": 925, "right": 2410, "bottom": 2345, "left": 390}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507941.jpg"} -{"rects": [{"solidity": 0.9978718674482915, "top": 435, "right": 5120, "bottom": 3660, "left": 1060}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719634f.jpg"} -{"rects": [{"solidity": 0.9978719278444319, "top": 740, "right": 2705, "bottom": 2155, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726450f.jpg"} -{"rects": [{"solidity": 0.9978720140150147, "top": 645, "right": 2655, "bottom": 2060, "left": 855}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705408f.jpg"} -{"rects": [{"solidity": 0.997872099560413, "top": 450, "right": 5435, "bottom": 3670, "left": 1355}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732270f.jpg"} -{"rects": [{"solidity": 0.9978721869590306, "top": 805, "right": 2030, "bottom": 3205, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717991f.jpg"} -{"rects": [{"solidity": 0.9978722448298438, "top": 2055, "right": 2825, "bottom": 4475, "left": 1205}, {"solidity": 0.9977373079136039, "top": 335, "right": 3170, "bottom": 1950, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732866f.jpg"} -{"rects": [{"solidity": 0.9978723642854885, "top": 1055, "right": 3500, "bottom": 4965, "left": 340}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721311f.jpg"} -{"rects": [{"solidity": 0.9978730501583652, "top": 870, "right": 2075, "bottom": 3255, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714253f.jpg"} -{"rects": [{"solidity": 0.9978733252841231, "top": 795, "right": 2010, "bottom": 3205, "left": 395}, {"solidity": 0.9953492143285712, "top": 795, "right": 5685, "bottom": 3205, "left": 4070}, {"solidity": 0.9997913950456323, "top": 795, "right": 3845, "bottom": 3205, "left": 2245}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721771f.jpg"} -{"rects": [{"solidity": 0.9978733893340809, "top": 770, "right": 2015, "bottom": 3190, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715151f.jpg"} -{"rects": [{"solidity": 0.9978735136510809, "top": 325, "right": 5565, "bottom": 3605, "left": 1495}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716888f.jpg"} -{"rects": [{"solidity": 0.9978737726608018, "top": 935, "right": 2850, "bottom": 3100, "left": 345}, {"solidity": 0.9934082642914532, "top": 1005, "right": 4505, "bottom": 2970, "left": 3015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723224f.jpg"} -{"rects": [{"solidity": 0.9978739109192671, "top": 865, "right": 3520, "bottom": 4945, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718816f.jpg"} -{"rects": [{"solidity": 0.9978739412570373, "top": 565, "right": 2835, "bottom": 3605, "left": 785}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723157f.jpg"} -{"rects": [{"solidity": 0.9978739537460993, "top": 340, "right": 4910, "bottom": 3585, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733460f.jpg"} -{"rects": [{"solidity": 0.9978739827825314, "top": 415, "right": 3115, "bottom": 2015, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728622f.jpg"} -{"rects": [{"solidity": 0.9978741222701797, "top": 875, "right": 2055, "bottom": 3290, "left": 435}, {"solidity": 0.9969157101156285, "top": 875, "right": 3905, "bottom": 3290, "left": 2295}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728542f.jpg"} -{"rects": [{"solidity": 0.9978741310403525, "top": 485, "right": 5040, "bottom": 3760, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701367f.jpg"} -{"rects": [{"solidity": 0.9978742148973638, "top": 550, "right": 5060, "bottom": 3750, "left": 1200}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713299f.jpg"} -{"rects": [{"solidity": 0.9978746841715158, "top": 575, "right": 2665, "bottom": 3615, "left": 645}, {"solidity": 0.9962075188068422, "top": 445, "right": 5470, "bottom": 2050, "left": 3070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716698f.jpg"} -{"rects": [{"solidity": 0.9978750559524225, "top": 1325, "right": 2600, "bottom": 4485, "left": 210}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507893.jpg"} -{"rects": [{"solidity": 0.9978751508070813, "top": 1460, "right": 3630, "bottom": 5405, "left": 455}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723775f.jpg"} -{"rects": [{"solidity": 0.9978752211252434, "top": 465, "right": 3195, "bottom": 2065, "left": 805}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728026f.jpg"} -{"rects": [{"solidity": 0.9978758770053273, "top": 355, "right": 5960, "bottom": 3600, "left": 3910}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706686f.jpg"} -{"rects": [{"solidity": 0.9978763199937654, "top": 430, "right": 3185, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703060f.jpg"} -{"rects": [{"solidity": 0.9978766381720343, "top": 245, "right": 2810, "bottom": 2650, "left": 1190}, {"solidity": 0.9949259864972533, "top": 2705, "right": 3210, "bottom": 4325, "left": 790}, {"solidity": 0.9924057929847573, "top": 4385, "right": 3005, "bottom": 5875, "left": 975}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/722064f.jpg"} -{"rects": [{"solidity": 0.9978767107911731, "top": 455, "right": 5125, "bottom": 3750, "left": 1025}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/730512f.jpg"} -{"rects": [{"solidity": 0.997876800298427, "top": 1400, "right": 3640, "bottom": 5405, "left": 375}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720080f.jpg"} -{"rects": [{"solidity": 0.9978769022194465, "top": 1060, "right": 3535, "bottom": 5095, "left": 260}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720464f.jpg"} -{"rects": [{"solidity": 0.997877005131053, "top": 1650, "right": 2385, "bottom": 2865, "left": 590}, {"solidity": 0.9876915485621864, "top": 300, "right": 2310, "bottom": 1405, "left": 630}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715911f.jpg"} -{"rects": [{"solidity": 0.9978773325037106, "top": 735, "right": 3860, "bottom": 3150, "left": 2250}, {"solidity": 0.9956887469813125, "top": 730, "right": 2050, "bottom": 3150, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732398f.jpg"} -{"rects": [{"solidity": 0.997877371424516, "top": 585, "right": 3050, "bottom": 2205, "left": 640}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704698f.jpg"} -{"rects": [{"solidity": 0.9978776007491583, "top": 720, "right": 1935, "bottom": 3120, "left": 315}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702446f.jpg"} -{"rects": [{"solidity": 0.9978778467908903, "top": 1175, "right": 3500, "bottom": 4930, "left": 465}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708778f.jpg"} -{"rects": [{"solidity": 0.9978778715051196, "top": 1245, "right": 2605, "bottom": 4265, "left": 175}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509009.jpg"} -{"rects": [{"solidity": 0.9978778836232941, "top": 445, "right": 5060, "bottom": 3670, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722807f.jpg"} -{"rects": [{"solidity": 0.9978781292309715, "top": 1065, "right": 3550, "bottom": 4305, "left": 250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722497f.jpg"} -{"rects": [{"solidity": 0.997878244369062, "top": 430, "right": 3030, "bottom": 2045, "left": 630}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719717f.jpg"} -{"rects": [{"solidity": 0.997878245863868, "top": 445, "right": 5055, "bottom": 3715, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721877f.jpg"} -{"rects": [{"solidity": 0.9978782486262393, "top": 905, "right": 2050, "bottom": 3315, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728534f.jpg"} -{"rects": [{"solidity": 0.9978782720252634, "top": 655, "right": 2725, "bottom": 2075, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726564f.jpg"} -{"rects": [{"solidity": 0.9978783706143096, "top": 805, "right": 1980, "bottom": 3225, "left": 360}, {"solidity": 0.996223370746069, "top": 800, "right": 3820, "bottom": 3235, "left": 2205}, {"solidity": 0.9969318339133766, "top": 825, "right": 5665, "bottom": 3250, "left": 4050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727930f.jpg"} -{"rects": [{"solidity": 0.997878435705028, "top": 1120, "right": 3505, "bottom": 5145, "left": 230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712403f.jpg"} -{"rects": [{"solidity": 0.997879071683515, "top": 445, "right": 3160, "bottom": 2060, "left": 735}, {"solidity": 0.9962574055421292, "top": 2280, "right": 3160, "bottom": 3900, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729436f.jpg"} -{"rects": [{"solidity": 0.997879084466792, "top": 435, "right": 5060, "bottom": 3705, "left": 940}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/723377f.jpg"} -{"rects": [{"solidity": 0.9978790989246545, "top": 865, "right": 2090, "bottom": 3280, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716637f.jpg"} -{"rects": [{"solidity": 0.9978792257880972, "top": 820, "right": 3835, "bottom": 3235, "left": 2220}, {"solidity": 0.9970738571974656, "top": 820, "right": 1975, "bottom": 3185, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714631f.jpg"} -{"rects": [{"solidity": 0.9978793671545135, "top": 420, "right": 2625, "bottom": 3665, "left": 580}, {"solidity": 0.9931711289118017, "top": 520, "right": 4330, "bottom": 3565, "left": 2645}, {"solidity": 0.9964389719412305, "top": 540, "right": 5825, "bottom": 3575, "left": 4500}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706850f.jpg"} -{"rects": [{"solidity": 0.9978796131522976, "top": 420, "right": 3165, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724361f.jpg"} -{"rects": [{"solidity": 0.997879618255693, "top": 385, "right": 5465, "bottom": 3710, "left": 1415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730050f.jpg"} -{"rects": [{"solidity": 0.9978797402792042, "top": 730, "right": 3240, "bottom": 2755, "left": 420}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713005f.jpg"} -{"rects": [{"solidity": 0.9978798634214083, "top": 460, "right": 3095, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720922f.jpg"} -{"rects": [{"solidity": 0.9978799110618758, "top": 570, "right": 5015, "bottom": 3505, "left": 1200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720550f.jpg"} -{"rects": [{"solidity": 0.9978803677178232, "top": 355, "right": 2950, "bottom": 1525, "left": 1125}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/700265f.jpg"} -{"rects": [{"solidity": 0.9978803710000943, "top": 790, "right": 2110, "bottom": 3200, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710392f.jpg"} -{"rects": [{"solidity": 0.9978806284188263, "top": 750, "right": 3480, "bottom": 2785, "left": 655}, {"solidity": 0.9874520669839808, "top": 3135, "right": 3480, "bottom": 5205, "left": 645}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/713444f.jpg"} -{"rects": [{"solidity": 0.9978807664183982, "top": 965, "right": 3695, "bottom": 3375, "left": 2080}, {"solidity": 0.9924840118476879, "top": 1075, "right": 1765, "bottom": 3240, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700571f.jpg"} -{"rects": [{"solidity": 0.9978809896702525, "top": 1080, "right": 2660, "bottom": 4085, "left": 205}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508943.jpg"} -{"rects": [{"solidity": 0.997881045735057, "top": 545, "right": 5300, "bottom": 3330, "left": 1385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708735f.jpg"} -{"rects": [{"solidity": 0.9978810910184619, "top": 475, "right": 3140, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723778f.jpg"} -{"rects": [{"solidity": 0.9978814267941998, "top": 855, "right": 3595, "bottom": 5590, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714207f.jpg"} -{"rects": [{"solidity": 0.9978814305388076, "top": 935, "right": 3635, "bottom": 4975, "left": 365}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708932f.jpg"} -{"rects": [{"solidity": 0.9978820396966274, "top": 1005, "right": 5770, "bottom": 3725, "left": 3935}, {"solidity": 0.9972370885568578, "top": 500, "right": 3435, "bottom": 2335, "left": 705}], "shape": {"h": 4430, "w": 6905}, "file": "/usr/local/google/home/danvk/milstein/710252f.jpg"} -{"rects": [{"solidity": 0.9978820847704545, "top": 590, "right": 5015, "bottom": 3765, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705095f.jpg"} -{"rects": [{"solidity": 0.9978821955006398, "top": 2135, "right": 3150, "bottom": 3750, "left": 750}, {"solidity": 0.9980305364988696, "top": 4020, "right": 3135, "bottom": 5635, "left": 755}, {"solidity": 0.9961389456477319, "top": 265, "right": 3165, "bottom": 1880, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730993f.jpg"} -{"rects": [{"solidity": 0.9978824895178368, "top": 895, "right": 3990, "bottom": 3300, "left": 2375}, {"solidity": 0.9975032143274588, "top": 905, "right": 2070, "bottom": 3315, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720953f.jpg"} -{"rects": [{"solidity": 0.997882584849871, "top": 1190, "right": 3590, "bottom": 5285, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/716880f.jpg"} -{"rects": [{"solidity": 0.9978825920220263, "top": 545, "right": 3120, "bottom": 2145, "left": 720}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/710964f.jpg"} -{"rects": [{"solidity": 0.9978826997403569, "top": 505, "right": 4715, "bottom": 3455, "left": 980}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723182f.jpg"} -{"rects": [{"solidity": 0.9978828462473499, "top": 465, "right": 5310, "bottom": 3695, "left": 1330}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718161f.jpg"} -{"rects": [{"solidity": 0.9978829016624108, "top": 330, "right": 3205, "bottom": 1940, "left": 805}, {"solidity": 0.9977796308104838, "top": 2185, "right": 3190, "bottom": 3800, "left": 805}, {"solidity": 0.997998123240538, "top": 4060, "right": 3180, "bottom": 5680, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706569f.jpg"} -{"rects": [{"solidity": 0.9978830090691636, "top": 425, "right": 3210, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719509f.jpg"} -{"rects": [{"solidity": 0.9978832671196753, "top": 1005, "right": 3450, "bottom": 5085, "left": 415}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702013f.jpg"} -{"rects": [{"solidity": 0.9978833097233528, "top": 340, "right": 4910, "bottom": 3560, "left": 855}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722972f.jpg"} -{"rects": [{"solidity": 0.9978834637067671, "top": 465, "right": 3105, "bottom": 2075, "left": 700}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/725434f.jpg"} -{"rects": [{"solidity": 0.997883492205646, "top": 2210, "right": 3180, "bottom": 3830, "left": 765}, {"solidity": 0.9971167413042145, "top": 415, "right": 3170, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715300f.jpg"} -{"rects": [{"solidity": 0.9978836351527881, "top": 2200, "right": 2795, "bottom": 4620, "left": 1170}, {"solidity": 0.9994254384683553, "top": 360, "right": 3180, "bottom": 1970, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700106f.jpg"} -{"rects": [{"solidity": 0.9978839408035463, "top": 1055, "right": 3265, "bottom": 5130, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717175f.jpg"} -{"rects": [{"solidity": 0.9978839557466544, "top": 435, "right": 3185, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718683f.jpg"} -{"rects": [{"solidity": 0.9978842306188626, "top": 785, "right": 2085, "bottom": 3175, "left": 480}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724006f.jpg"} -{"rects": [{"solidity": 0.9978843363960083, "top": 570, "right": 4980, "bottom": 3555, "left": 1155}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723388f.jpg"} -{"rects": [{"solidity": 0.9978848567096887, "top": 420, "right": 5200, "bottom": 3670, "left": 1105}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732695f.jpg"} -{"rects": [{"solidity": 0.9978851103028461, "top": 350, "right": 5305, "bottom": 3650, "left": 1275}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712957f.jpg"} -{"rects": [{"solidity": 0.9978851597905756, "top": 340, "right": 5100, "bottom": 3595, "left": 1025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730156f.jpg"} -{"rects": [{"solidity": 0.9978852144356266, "top": 590, "right": 5100, "bottom": 3520, "left": 1080}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717584f.jpg"} -{"rects": [{"solidity": 0.9978852975067755, "top": 395, "right": 3150, "bottom": 2015, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700994f.jpg"} -{"rects": [{"solidity": 0.997885543313812, "top": 400, "right": 3615, "bottom": 2195, "left": 925}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/1556184.jpg"} -{"rects": [{"solidity": 0.9978859580098535, "top": 465, "right": 5020, "bottom": 3635, "left": 1055}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711474f.jpg"} -{"rects": [{"solidity": 0.9978860415273227, "top": 620, "right": 5295, "bottom": 2045, "left": 3485}, {"solidity": 0.9957132907605231, "top": 2050, "right": 2705, "bottom": 3470, "left": 890}, {"solidity": 0.9957816273404911, "top": 625, "right": 2695, "bottom": 1970, "left": 900}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731974f.jpg"} -{"rects": [{"solidity": 0.997886306689103, "top": 975, "right": 3450, "bottom": 3025, "left": 615}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708587f.jpg"} -{"rects": [{"solidity": 0.9978863255574172, "top": 4065, "right": 3120, "bottom": 5680, "left": 700}, {"solidity": 0.9960829500503713, "top": 2190, "right": 3135, "bottom": 3805, "left": 715}, {"solidity": 0.9984816620308901, "top": 345, "right": 3125, "bottom": 1955, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728483f.jpg"} -{"rects": [{"solidity": 0.9978864911957696, "top": 405, "right": 5145, "bottom": 3690, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725010f.jpg"} -{"rects": [{"solidity": 0.997886588283454, "top": 925, "right": 3630, "bottom": 4950, "left": 350}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/727036f.jpg"} -{"rects": [{"solidity": 0.9978871398630368, "top": 390, "right": 5130, "bottom": 3690, "left": 1095}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725385f.jpg"} -{"rects": [{"solidity": 0.9978871751531798, "top": 425, "right": 3235, "bottom": 2050, "left": 815}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727697f.jpg"} -{"rects": [{"solidity": 0.9978875099022974, "top": 2110, "right": 2640, "bottom": 3545, "left": 840}, {"solidity": 0.9949865966195057, "top": 595, "right": 2655, "bottom": 2030, "left": 845}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731948f.jpg"} -{"rects": [{"solidity": 0.9978875775776456, "top": 550, "right": 4925, "bottom": 3780, "left": 920}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727269f.jpg"} -{"rects": [{"solidity": 0.9978876076255727, "top": 765, "right": 2035, "bottom": 3165, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718994f.jpg"} -{"rects": [{"solidity": 0.997887754773481, "top": 750, "right": 2040, "bottom": 3170, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722392f.jpg"} -{"rects": [{"solidity": 0.9978877744029259, "top": 425, "right": 5085, "bottom": 3615, "left": 1065}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715114f.jpg"} -{"rects": [{"solidity": 0.9978880046486247, "top": 1135, "right": 3680, "bottom": 5255, "left": 400}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/713900f.jpg"} -{"rects": [{"solidity": 0.997888101448881, "top": 485, "right": 5115, "bottom": 3720, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731521f.jpg"} -{"rects": [{"solidity": 0.9978882629035615, "top": 380, "right": 3565, "bottom": 2190, "left": 860}], "shape": {"h": 6860, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/702195f.jpg"} -{"rects": [{"solidity": 0.9978883605257232, "top": 430, "right": 3185, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709262f.jpg"} -{"rects": [{"solidity": 0.9978888457242753, "top": 1535, "right": 3395, "bottom": 5155, "left": 530}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723822f.jpg"} -{"rects": [{"solidity": 0.9978889229708542, "top": 490, "right": 5075, "bottom": 3775, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712208f.jpg"} -{"rects": [{"solidity": 0.9978891148022837, "top": 455, "right": 5115, "bottom": 3650, "left": 1140}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731946f.jpg"} -{"rects": [{"solidity": 0.9978898405294344, "top": 725, "right": 2040, "bottom": 3135, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722230f.jpg"} -{"rects": [{"solidity": 0.9978899881230927, "top": 400, "right": 3025, "bottom": 2010, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729427f.jpg"} -{"rects": [{"solidity": 0.9978900501040444, "top": 610, "right": 3270, "bottom": 2315, "left": 725}, {"solidity": 0.9962579317330615, "top": 2520, "right": 3260, "bottom": 4130, "left": 835}, {"solidity": 0.9954858682417554, "top": 4285, "right": 3265, "bottom": 5910, "left": 835}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732846f.jpg"} -{"rects": [{"solidity": 0.9978900843643638, "top": 890, "right": 1995, "bottom": 3315, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729425f.jpg"} -{"rects": [{"solidity": 0.9978900978519519, "top": 480, "right": 3295, "bottom": 3885, "left": 650}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714263f.jpg"} -{"rects": [{"solidity": 0.9978902475723286, "top": 2285, "right": 3070, "bottom": 3900, "left": 660}, {"solidity": 0.99795987869549, "top": 4160, "right": 3060, "bottom": 5770, "left": 650}, {"solidity": 0.9990742515242368, "top": 400, "right": 3060, "bottom": 2010, "left": 655}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700212f.jpg"} -{"rects": [{"solidity": 0.9978903134595714, "top": 320, "right": 5095, "bottom": 3585, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704163f.jpg"} -{"rects": [{"solidity": 0.9978903589403574, "top": 690, "right": 2435, "bottom": 3710, "left": 500}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712356f.jpg"} -{"rects": [{"solidity": 0.9978905087341607, "top": 330, "right": 2980, "bottom": 2015, "left": 910}, {"solidity": 0.996770814834681, "top": 2230, "right": 2960, "bottom": 3920, "left": 895}, {"solidity": 0.9969064248632323, "top": 4095, "right": 2945, "bottom": 5795, "left": 905}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709458f.jpg"} -{"rects": [{"solidity": 0.9978907133862999, "top": 395, "right": 3225, "bottom": 2025, "left": 805}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706836f.jpg"} -{"rects": [{"solidity": 0.9978910753265458, "top": 430, "right": 3175, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706857f.jpg"} -{"rects": [{"solidity": 0.9978913935330187, "top": 370, "right": 4860, "bottom": 3595, "left": 870}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733524f.jpg"} -{"rects": [{"solidity": 0.9978914856432084, "top": 515, "right": 4845, "bottom": 3300, "left": 1405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725263f.jpg"} -{"rects": [{"solidity": 0.9978915801526131, "top": 445, "right": 5115, "bottom": 3700, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719564f.jpg"} -{"rects": [{"solidity": 0.9978916174222681, "top": 400, "right": 5325, "bottom": 3625, "left": 1315}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717223f.jpg"} -{"rects": [{"solidity": 0.9978919808641916, "top": 2305, "right": 3090, "bottom": 3930, "left": 675}, {"solidity": 0.9943652385611398, "top": 410, "right": 3080, "bottom": 2025, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704190f.jpg"} -{"rects": [{"solidity": 0.9978920561037375, "top": 335, "right": 5110, "bottom": 3550, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700704f.jpg"} -{"rects": [{"solidity": 0.9978921823471979, "top": 470, "right": 5080, "bottom": 3670, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733323f.jpg"} -{"rects": [{"solidity": 0.9978923796975068, "top": 355, "right": 5120, "bottom": 3655, "left": 1080}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732750f.jpg"} -{"rects": [{"solidity": 0.9978927039080676, "top": 470, "right": 5080, "bottom": 3685, "left": 1020}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708701f.jpg"} -{"rects": [{"solidity": 0.9978927046350682, "top": 395, "right": 3195, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718819f.jpg"} -{"rects": [{"solidity": 0.9978932057327892, "top": 1730, "right": 2365, "bottom": 2940, "left": 560}, {"solidity": 0.99876888575491, "top": 345, "right": 2370, "bottom": 1550, "left": 560}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715924f.jpg"} -{"rects": [{"solidity": 0.9978935162817664, "top": 655, "right": 2820, "bottom": 2100, "left": 1015}, {"solidity": 0.9974947180709813, "top": 655, "right": 5080, "bottom": 2100, "left": 3280}, {"solidity": 0.997127306465297, "top": 2260, "right": 5065, "bottom": 3685, "left": 3280}, {"solidity": 0.9960086213778239, "top": 2290, "right": 2815, "bottom": 3700, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725443f.jpg"} -{"rects": [{"solidity": 0.9978937651610525, "top": 325, "right": 5115, "bottom": 3550, "left": 1050}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731050f.jpg"} -{"rects": [{"solidity": 0.9978938932521237, "top": 315, "right": 3105, "bottom": 1935, "left": 680}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704606f.jpg"} -{"rects": [{"solidity": 0.9978941928815968, "top": 890, "right": 2025, "bottom": 3290, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711157f.jpg"} -{"rects": [{"solidity": 0.9978947098576927, "top": 430, "right": 3195, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706672f.jpg"} -{"rects": [{"solidity": 0.9978948336667732, "top": 315, "right": 4005, "bottom": 2465, "left": 1195}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715978f.jpg"} -{"rects": [{"solidity": 0.9978949597764036, "top": 2200, "right": 3165, "bottom": 3825, "left": 750}, {"solidity": 0.998290207103977, "top": 335, "right": 3150, "bottom": 1945, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707690f.jpg"} -{"rects": [{"solidity": 0.9978951346983461, "top": 805, "right": 3965, "bottom": 3215, "left": 2360}, {"solidity": 0.9967614189905868, "top": 830, "right": 2095, "bottom": 3215, "left": 505}, {"solidity": 0.9964440049309798, "top": 845, "right": 5790, "bottom": 3220, "left": 4220}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731679f.jpg"} -{"rects": [{"solidity": 0.9978954242449714, "top": 445, "right": 3215, "bottom": 2060, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711059f.jpg"} -{"rects": [{"solidity": 0.9978955175156965, "top": 1820, "right": 3210, "bottom": 3455, "left": 780}, {"solidity": 0.996881850780651, "top": 3485, "right": 2825, "bottom": 5905, "left": 1180}, {"solidity": 0.9964645724013491, "top": 150, "right": 3210, "bottom": 1785, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706068f.jpg"} -{"rects": [{"solidity": 0.9978956713301659, "top": 455, "right": 5175, "bottom": 3465, "left": 1355}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730044f.jpg"} -{"rects": [{"solidity": 0.9978956981556225, "top": 2255, "right": 3310, "bottom": 3875, "left": 875}, {"solidity": 0.99850992205251, "top": 395, "right": 3305, "bottom": 2020, "left": 900}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726831f.jpg"} -{"rects": [{"solidity": 0.9978957470746345, "top": 410, "right": 3215, "bottom": 2025, "left": 810}, {"solidity": 0.9967014843320505, "top": 2285, "right": 3215, "bottom": 3890, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711717f.jpg"} -{"rects": [{"solidity": 0.9978958763018665, "top": 380, "right": 3120, "bottom": 2000, "left": 690}, {"solidity": 0.9964584250596957, "top": 2170, "right": 3090, "bottom": 3790, "left": 665}, {"solidity": 0.9968560260039574, "top": 3930, "right": 3090, "bottom": 5545, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733457f.jpg"} -{"rects": [{"solidity": 0.9978959176816942, "top": 1015, "right": 3795, "bottom": 5055, "left": 515}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733561f.jpg"} -{"rects": [{"solidity": 0.9978960741280974, "top": 425, "right": 3100, "bottom": 2000, "left": 720}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718314f.jpg"} -{"rects": [{"solidity": 0.9978963241209159, "top": 755, "right": 2050, "bottom": 3130, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722384f.jpg"} -{"rects": [{"solidity": 0.9978965136243425, "top": 570, "right": 3115, "bottom": 2190, "left": 700}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703268f.jpg"} -{"rects": [{"solidity": 0.9978965522876917, "top": 420, "right": 5335, "bottom": 3635, "left": 1260}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724201f.jpg"} -{"rects": [{"solidity": 0.9978968114868485, "top": 395, "right": 3215, "bottom": 1990, "left": 825}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716905f.jpg"} -{"rects": [{"solidity": 0.997896970928526, "top": 425, "right": 3175, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703395f.jpg"} -{"rects": [{"solidity": 0.997897125963136, "top": 390, "right": 3075, "bottom": 1995, "left": 675}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729847f.jpg"} -{"rects": [{"solidity": 0.9978971395108187, "top": 390, "right": 3115, "bottom": 1975, "left": 730}, {"solidity": 0.9970844410008416, "top": 2215, "right": 3120, "bottom": 3800, "left": 735}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/729258f.jpg"} -{"rects": [{"solidity": 0.9978971515962531, "top": 1010, "right": 3510, "bottom": 5070, "left": 280}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/705169f.jpg"} -{"rects": [{"solidity": 0.9978971572317156, "top": 395, "right": 3185, "bottom": 1990, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734036f.jpg"} -{"rects": [{"solidity": 0.9978972967798873, "top": 585, "right": 4990, "bottom": 3700, "left": 1145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720065f.jpg"} -{"rects": [{"solidity": 0.9978973410470248, "top": 570, "right": 4900, "bottom": 3410, "left": 1160}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717528f.jpg"} -{"rects": [{"solidity": 0.9978974931152573, "top": 255, "right": 3165, "bottom": 1875, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720460f.jpg"} -{"rects": [{"solidity": 0.9978975841447077, "top": 375, "right": 3185, "bottom": 1995, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702169f.jpg"} -{"rects": [{"solidity": 0.9978975869276079, "top": 385, "right": 5110, "bottom": 3620, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721955f.jpg"} -{"rects": [{"solidity": 0.9978977234431118, "top": 805, "right": 2150, "bottom": 3230, "left": 530}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701548f.jpg"} -{"rects": [{"solidity": 0.9978977301966375, "top": 1050, "right": 3610, "bottom": 5090, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717034f.jpg"} -{"rects": [{"solidity": 0.9978980196832179, "top": 450, "right": 5120, "bottom": 3725, "left": 1080}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728052f.jpg"} -{"rects": [{"solidity": 0.997898145346629, "top": 425, "right": 3200, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704142f.jpg"} -{"rects": [{"solidity": 0.9978984906659747, "top": 1145, "right": 3465, "bottom": 5050, "left": 455}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/717600f.jpg"} -{"rects": [{"solidity": 0.9978988157421738, "top": 350, "right": 3825, "bottom": 2810, "left": 800}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716346f.jpg"} -{"rects": [{"solidity": 0.9978989282330768, "top": 1115, "right": 3580, "bottom": 5070, "left": 400}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707781f.jpg"} -{"rects": [{"solidity": 0.9978992775933019, "top": 725, "right": 2495, "bottom": 3575, "left": 445}, {"solidity": 0.9948255343456943, "top": 735, "right": 5000, "bottom": 2180, "left": 3140}, {"solidity": 0.9946498985490602, "top": 2180, "right": 4965, "bottom": 3625, "left": 3130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704313f.jpg"} -{"rects": [{"solidity": 0.997899283920956, "top": 600, "right": 2615, "bottom": 3665, "left": 580}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715251f.jpg"} -{"rects": [{"solidity": 0.9978993272273522, "top": 375, "right": 5245, "bottom": 3575, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732611f.jpg"} -{"rects": [{"solidity": 0.9978994301606513, "top": 1520, "right": 3395, "bottom": 5130, "left": 555}], "shape": {"h": 6140, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/708069f.jpg"} -{"rects": [{"solidity": 0.9978994685860025, "top": 1150, "right": 3580, "bottom": 5180, "left": 350}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717390f.jpg"} -{"rects": [{"solidity": 0.9978995628306976, "top": 670, "right": 2485, "bottom": 3720, "left": 525}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715287f.jpg"} -{"rects": [{"solidity": 0.997899628881795, "top": 1110, "right": 3980, "bottom": 5670, "left": 310}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711548f.jpg"} -{"rects": [{"solidity": 0.9978997520540619, "top": 430, "right": 3225, "bottom": 2040, "left": 810}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719652f.jpg"} -{"rects": [{"solidity": 0.997899771531387, "top": 775, "right": 3780, "bottom": 3185, "left": 2165}, {"solidity": 0.9955716572696677, "top": 790, "right": 1995, "bottom": 3170, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722457f.jpg"} -{"rects": [{"solidity": 0.997900384340703, "top": 495, "right": 3630, "bottom": 2325, "left": 905}], "shape": {"h": 4415, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711171f.jpg"} -{"rects": [{"solidity": 0.9979004463343841, "top": 600, "right": 2745, "bottom": 3635, "left": 715}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722636f.jpg"} -{"rects": [{"solidity": 0.9979005717415297, "top": 545, "right": 5095, "bottom": 3645, "left": 1190}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723848f.jpg"} -{"rects": [{"solidity": 0.9979009628376942, "top": 500, "right": 3945, "bottom": 2570, "left": 1085}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712958f.jpg"} -{"rects": [{"solidity": 0.9979016738482468, "top": 325, "right": 3325, "bottom": 1950, "left": 905}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702165f.jpg"} -{"rects": [{"solidity": 0.9979017514546885, "top": 2215, "right": 3185, "bottom": 3825, "left": 770}, {"solidity": 0.9955863747116097, "top": 430, "right": 3185, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722622f.jpg"} -{"rects": [{"solidity": 0.9979017923866681, "top": 1025, "right": 3580, "bottom": 5060, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721331f.jpg"} -{"rects": [{"solidity": 0.9979020651817901, "top": 485, "right": 4980, "bottom": 3495, "left": 1140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712876f.jpg"} -{"rects": [{"solidity": 0.9979020679615808, "top": 320, "right": 5120, "bottom": 3565, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706062f.jpg"} -{"rects": [{"solidity": 0.9979024404461381, "top": 490, "right": 5100, "bottom": 3780, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701345f.jpg"} -{"rects": [{"solidity": 0.9979025994235531, "top": 980, "right": 3510, "bottom": 5030, "left": 300}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734578f.jpg"} -{"rects": [{"solidity": 0.9979028414298808, "top": 730, "right": 4040, "bottom": 3505, "left": 2180}, {"solidity": 0.9966388505412167, "top": 755, "right": 5950, "bottom": 3495, "left": 4080}, {"solidity": 0.9948411004665461, "top": 740, "right": 2130, "bottom": 3490, "left": 270}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702616f.jpg"} -{"rects": [{"solidity": 0.997903350611081, "top": 445, "right": 4870, "bottom": 3625, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732447f.jpg"} -{"rects": [{"solidity": 0.9979037052731604, "top": 2250, "right": 3215, "bottom": 3870, "left": 795}, {"solidity": 0.9975255887586435, "top": 4090, "right": 3210, "bottom": 5710, "left": 790}, {"solidity": 0.9966864885654271, "top": 410, "right": 3200, "bottom": 2010, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734482f.jpg"} -{"rects": [{"solidity": 0.9979038670039754, "top": 420, "right": 3185, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713089f.jpg"} -{"rects": [{"solidity": 0.9979040559582574, "top": 475, "right": 5075, "bottom": 3725, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730125f.jpg"} -{"rects": [{"solidity": 0.9979042430171127, "top": 2235, "right": 3135, "bottom": 3855, "left": 735}, {"solidity": 0.996479192285289, "top": 385, "right": 3135, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/715637f.jpg"} -{"rects": [{"solidity": 0.9979043211985721, "top": 430, "right": 3185, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700148f.jpg"} -{"rects": [{"solidity": 0.9979044888055586, "top": 1910, "right": 4095, "bottom": 6500, "left": 450}], "shape": {"h": 6880, "w": 4420}, "file": "/usr/local/google/home/danvk/milstein/708323f.jpg"} -{"rects": [{"solidity": 0.9979045254221061, "top": 955, "right": 4475, "bottom": 2990, "left": 480}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732034f.jpg"} -{"rects": [{"solidity": 0.9979047332657545, "top": 2035, "right": 2755, "bottom": 3460, "left": 930}, {"solidity": 0.996761850121309, "top": 565, "right": 5260, "bottom": 1995, "left": 3440}, {"solidity": 0.9973737977530291, "top": 555, "right": 2755, "bottom": 1970, "left": 935}, {"solidity": 0.9953042231922261, "top": 2045, "right": 5235, "bottom": 3450, "left": 3435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702760f.jpg"} -{"rects": [{"solidity": 0.9979048317437038, "top": 980, "right": 3510, "bottom": 5080, "left": 290}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708569f.jpg"} -{"rects": [{"solidity": 0.9979049142356264, "top": 1045, "right": 3405, "bottom": 5075, "left": 360}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722596f.jpg"} -{"rects": [{"solidity": 0.9979049678092086, "top": 385, "right": 3285, "bottom": 2010, "left": 855}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727020f.jpg"} -{"rects": [{"solidity": 0.9979050226657313, "top": 360, "right": 5255, "bottom": 3645, "left": 1185}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718862f.jpg"} -{"rects": [{"solidity": 0.9979054082359348, "top": 395, "right": 3170, "bottom": 2010, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706238f.jpg"} -{"rects": [{"solidity": 0.9979055469225052, "top": 775, "right": 3895, "bottom": 3200, "left": 2280}, {"solidity": 0.9959529949785957, "top": 780, "right": 5735, "bottom": 3205, "left": 4130}, {"solidity": 0.9963031363190032, "top": 785, "right": 2045, "bottom": 3200, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732117f.jpg"} -{"rects": [{"solidity": 0.9979056620665839, "top": 785, "right": 3860, "bottom": 3210, "left": 2235}, {"solidity": 0.9968664818003241, "top": 810, "right": 2000, "bottom": 3185, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732403f.jpg"} -{"rects": [{"solidity": 0.9979058406842432, "top": 455, "right": 5025, "bottom": 3635, "left": 995}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718238f.jpg"} -{"rects": [{"solidity": 0.9979061827478519, "top": 395, "right": 3210, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701198f.jpg"} -{"rects": [{"solidity": 0.9979063669923429, "top": 735, "right": 2010, "bottom": 3140, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719244f.jpg"} -{"rects": [{"solidity": 0.9979064563259418, "top": 885, "right": 3615, "bottom": 5020, "left": 330}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/716764f.jpg"} -{"rects": [{"solidity": 0.9979064854205087, "top": 815, "right": 3880, "bottom": 3240, "left": 2255}, {"solidity": 0.9968560621858067, "top": 815, "right": 2030, "bottom": 3240, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712099f.jpg"} -{"rects": [{"solidity": 0.9979065198425511, "top": 825, "right": 2625, "bottom": 3830, "left": 190}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507514.jpg"} -{"rects": [{"solidity": 0.9979065664672006, "top": 1325, "right": 3270, "bottom": 4770, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701028f.jpg"} -{"rects": [{"solidity": 0.9979065997504247, "top": 475, "right": 2610, "bottom": 3690, "left": 595}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733082f.jpg"} -{"rects": [{"solidity": 0.9979066251437579, "top": 2185, "right": 3190, "bottom": 3805, "left": 780}, {"solidity": 0.9977061987788023, "top": 315, "right": 3190, "bottom": 1915, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724533f.jpg"} -{"rects": [{"solidity": 0.9979067207382945, "top": 440, "right": 5180, "bottom": 3715, "left": 1145}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732762f.jpg"} -{"rects": [{"solidity": 0.9979068638121871, "top": 815, "right": 2030, "bottom": 3180, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711966f.jpg"} -{"rects": [{"solidity": 0.9979068713239486, "top": 405, "right": 5040, "bottom": 3655, "left": 935}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722860f.jpg"} -{"rects": [{"solidity": 0.9979069468317723, "top": 385, "right": 5170, "bottom": 3615, "left": 1180}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732593f.jpg"} -{"rects": [{"solidity": 0.9979070849771804, "top": 400, "right": 5210, "bottom": 3675, "left": 1070}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732659f.jpg"} -{"rects": [{"solidity": 0.9979071153385921, "top": 835, "right": 3285, "bottom": 2780, "left": 515}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703619f.jpg"} -{"rects": [{"solidity": 0.9979073370131223, "top": 825, "right": 5660, "bottom": 3235, "left": 4055}, {"solidity": 0.9965803583104486, "top": 820, "right": 3860, "bottom": 3230, "left": 2260}, {"solidity": 0.9952561732253417, "top": 810, "right": 2060, "bottom": 3225, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716565f.jpg"} -{"rects": [{"solidity": 0.9979075942156809, "top": 665, "right": 2640, "bottom": 3465, "left": 685}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707799f.jpg"} -{"rects": [{"solidity": 0.9979076765413617, "top": 1295, "right": 3405, "bottom": 4760, "left": 520}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717356f.jpg"} -{"rects": [{"solidity": 0.9979077811842152, "top": 800, "right": 2050, "bottom": 3215, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702930f.jpg"} -{"rects": [{"solidity": 0.9979077852412339, "top": 635, "right": 5190, "bottom": 3455, "left": 3205}, {"solidity": 0.9990092408686976, "top": 625, "right": 2600, "bottom": 3390, "left": 650}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715482f.jpg"} -{"rects": [{"solidity": 0.9979077886738204, "top": 315, "right": 3210, "bottom": 1940, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704443f.jpg"} -{"rects": [{"solidity": 0.9979078594745738, "top": 390, "right": 3225, "bottom": 1980, "left": 840}, {"solidity": 0.9951030782077, "top": 2220, "right": 3210, "bottom": 3815, "left": 830}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711138f.jpg"} -{"rects": [{"solidity": 0.9979081502131328, "top": 440, "right": 5115, "bottom": 3505, "left": 1205}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730541f.jpg"} -{"rects": [{"solidity": 0.9979082639255832, "top": 485, "right": 4960, "bottom": 3790, "left": 955}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712127f.jpg"} -{"rects": [{"solidity": 0.997908904191394, "top": 495, "right": 2650, "bottom": 3695, "left": 640}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733010f.jpg"} -{"rects": [{"solidity": 0.9979090064847644, "top": 460, "right": 5100, "bottom": 3710, "left": 1210}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728050f.jpg"} -{"rects": [{"solidity": 0.9979090401819932, "top": 725, "right": 3415, "bottom": 2755, "left": 385}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711011f.jpg"} -{"rects": [{"solidity": 0.9979091479146808, "top": 420, "right": 5070, "bottom": 3620, "left": 1020}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721047f.jpg"} -{"rects": [{"solidity": 0.9979093525634943, "top": 460, "right": 5005, "bottom": 3515, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711494f.jpg"} -{"rects": [{"solidity": 0.9979094321502398, "top": 815, "right": 3495, "bottom": 4890, "left": 320}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711963f.jpg"} -{"rects": [{"solidity": 0.9979096549012839, "top": 405, "right": 3240, "bottom": 2025, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725796f.jpg"} -{"rects": [{"solidity": 0.9979096638450061, "top": 850, "right": 3855, "bottom": 2850, "left": 635}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731482f.jpg"} -{"rects": [{"solidity": 0.9979098619788169, "top": 715, "right": 2020, "bottom": 3115, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711101f.jpg"} -{"rects": [{"solidity": 0.997910067808859, "top": 380, "right": 3135, "bottom": 1990, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734844f.jpg"} -{"rects": [{"solidity": 0.9979103531919115, "top": 465, "right": 3080, "bottom": 2085, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700601f.jpg"} -{"rects": [{"solidity": 0.9979104049053615, "top": 900, "right": 3690, "bottom": 4965, "left": 350}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/716724f.jpg"} -{"rects": [{"solidity": 0.9979105076237361, "top": 300, "right": 3185, "bottom": 1915, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722836f.jpg"} -{"rects": [{"solidity": 0.9979106475360332, "top": 640, "right": 2490, "bottom": 2120, "left": 405}, {"solidity": 0.9975848193346115, "top": 2460, "right": 2475, "bottom": 3940, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716034f.jpg"} -{"rects": [{"solidity": 0.9979107724871294, "top": 390, "right": 3675, "bottom": 2420, "left": 740}], "shape": {"h": 6845, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711616f.jpg"} -{"rects": [{"solidity": 0.9979110665415015, "top": 455, "right": 3115, "bottom": 2075, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701651f.jpg"} -{"rects": [{"solidity": 0.997911167459938, "top": 445, "right": 3555, "bottom": 2240, "left": 860}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/701711f.jpg"} -{"rects": [{"solidity": 0.9979113649767513, "top": 3950, "right": 3140, "bottom": 5555, "left": 735}, {"solidity": 0.9958764371107569, "top": 2165, "right": 3125, "bottom": 3775, "left": 725}, {"solidity": 0.9959407041140538, "top": 450, "right": 3125, "bottom": 2055, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710752f.jpg"} -{"rects": [{"solidity": 0.9979114519097098, "top": 435, "right": 5190, "bottom": 3735, "left": 1105}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716842f.jpg"} -{"rects": [{"solidity": 0.9979115750631813, "top": 2135, "right": 3120, "bottom": 3765, "left": 705}, {"solidity": 0.9979128929355754, "top": 4020, "right": 3120, "bottom": 5645, "left": 705}, {"solidity": 0.9987391646966115, "top": 295, "right": 3120, "bottom": 1915, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703233f.jpg"} -{"rects": [{"solidity": 0.9979116096170998, "top": 325, "right": 5100, "bottom": 3570, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722956f.jpg"} -{"rects": [{"solidity": 0.9979116171695932, "top": 490, "right": 3155, "bottom": 2625, "left": 280}], "shape": {"h": 3000, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509115.jpg"} -{"rects": [{"solidity": 0.9979116175939772, "top": 395, "right": 3175, "bottom": 2010, "left": 755}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/700878f.jpg"} -{"rects": [{"solidity": 0.9979119048502579, "top": 585, "right": 5325, "bottom": 3490, "left": 1005}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719727f.jpg"} -{"rects": [{"solidity": 0.9979120707214211, "top": 445, "right": 3260, "bottom": 2075, "left": 840}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726423f.jpg"} -{"rects": [{"solidity": 0.9979121809051137, "top": 555, "right": 2935, "bottom": 2165, "left": 540}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702371f.jpg"} -{"rects": [{"solidity": 0.9979129768304177, "top": 445, "right": 3605, "bottom": 2245, "left": 905}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711682f.jpg"} -{"rects": [{"solidity": 0.9979130055872969, "top": 320, "right": 5075, "bottom": 3580, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700526f.jpg"} -{"rects": [{"solidity": 0.9979133617256565, "top": 720, "right": 2030, "bottom": 3110, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721402f.jpg"} -{"rects": [{"solidity": 0.9979134302862155, "top": 1090, "right": 3590, "bottom": 5110, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724442f.jpg"} -{"rects": [{"solidity": 0.9979134953013051, "top": 690, "right": 2460, "bottom": 2175, "left": 370}, {"solidity": 0.998649826159726, "top": 2485, "right": 2440, "bottom": 3920, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716018f.jpg"} -{"rects": [{"solidity": 0.9979136956636561, "top": 405, "right": 3240, "bottom": 2005, "left": 855}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732408f.jpg"} -{"rects": [{"solidity": 0.9979139258102274, "top": 325, "right": 5095, "bottom": 3590, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707351f.jpg"} -{"rects": [{"solidity": 0.9979141807254743, "top": 470, "right": 5095, "bottom": 3755, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701876f.jpg"} -{"rects": [{"solidity": 0.9979143075597883, "top": 610, "right": 2640, "bottom": 2035, "left": 815}, {"solidity": 0.9976711164392648, "top": 2095, "right": 2645, "bottom": 3505, "left": 825}, {"solidity": 0.9930830927814457, "top": 640, "right": 5130, "bottom": 2065, "left": 3300}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702985f.jpg"} -{"rects": [{"solidity": 0.9979144580439256, "top": 720, "right": 4760, "bottom": 3315, "left": 1275}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734431f.jpg"} -{"rects": [{"solidity": 0.9979146641468859, "top": 420, "right": 3210, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/702935f.jpg"} -{"rects": [{"solidity": 0.9979146740446703, "top": 790, "right": 4810, "bottom": 3455, "left": 1340}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701491f.jpg"} -{"rects": [{"solidity": 0.9979150074140264, "top": 400, "right": 3335, "bottom": 2010, "left": 920}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/726915f.jpg"} -{"rects": [{"solidity": 0.9979151666867985, "top": 515, "right": 5200, "bottom": 3745, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706621f.jpg"} -{"rects": [{"solidity": 0.9979155079620067, "top": 1295, "right": 3620, "bottom": 5355, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716882f.jpg"} -{"rects": [{"solidity": 0.9979155427728708, "top": 2120, "right": 3200, "bottom": 3750, "left": 780}, {"solidity": 0.9970488373964116, "top": 295, "right": 3185, "bottom": 1915, "left": 765}, {"solidity": 0.9976748535899487, "top": 4025, "right": 3215, "bottom": 5640, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709986f.jpg"} -{"rects": [{"solidity": 0.9979156824580964, "top": 365, "right": 5025, "bottom": 3670, "left": 960}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730024f.jpg"} -{"rects": [{"solidity": 0.9979156981644861, "top": 635, "right": 3035, "bottom": 2000, "left": 1230}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727480f.jpg"} -{"rects": [{"solidity": 0.9979160242156687, "top": 4115, "right": 2800, "bottom": 5720, "left": 385}, {"solidity": 0.9977709185059589, "top": 2450, "right": 2800, "bottom": 4050, "left": 395}, {"solidity": 0.997536479060072, "top": 795, "right": 2805, "bottom": 2375, "left": 405}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704658f.jpg"} -{"rects": [{"solidity": 0.9979164508293907, "top": 1225, "right": 3725, "bottom": 5265, "left": 450}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/733496f.jpg"} -{"rects": [{"solidity": 0.9979164542526235, "top": 810, "right": 3580, "bottom": 4875, "left": 285}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723304f.jpg"} -{"rects": [{"solidity": 0.9979164562471431, "top": 440, "right": 4925, "bottom": 3520, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711488f.jpg"} -{"rects": [{"solidity": 0.9979165581540705, "top": 435, "right": 3340, "bottom": 2045, "left": 940}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725181f.jpg"} -{"rects": [{"solidity": 0.997916662608428, "top": 440, "right": 5135, "bottom": 3665, "left": 1130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731535f.jpg"} -{"rects": [{"solidity": 0.9979166938172909, "top": 1095, "right": 5355, "bottom": 2770, "left": 1325}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718488f.jpg"} -{"rects": [{"solidity": 0.997916809079839, "top": 1010, "right": 3310, "bottom": 5030, "left": 610}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721985f.jpg"} -{"rects": [{"solidity": 0.9979168604862816, "top": 690, "right": 2535, "bottom": 2185, "left": 450}, {"solidity": 0.9954103518459954, "top": 2480, "right": 2525, "bottom": 3970, "left": 440}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716124f.jpg"} -{"rects": [{"solidity": 0.9979171296580878, "top": 545, "right": 3375, "bottom": 2480, "left": 620}, {"solidity": 0.9976906671718866, "top": 3060, "right": 3310, "bottom": 4915, "left": 650}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721782f.jpg"} -{"rects": [{"solidity": 0.9979177374504145, "top": 755, "right": 3850, "bottom": 3150, "left": 2255}, {"solidity": 0.9970618820461186, "top": 755, "right": 2000, "bottom": 3150, "left": 405}, {"solidity": 0.9949814713262543, "top": 765, "right": 5680, "bottom": 3150, "left": 4090}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718390f.jpg"} -{"rects": [{"solidity": 0.997917797910957, "top": 2215, "right": 3130, "bottom": 3705, "left": 1145}, {"solidity": 0.9900229976917289, "top": 490, "right": 3140, "bottom": 1995, "left": 1155}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712021f.jpg"} -{"rects": [{"solidity": 0.9979178734633456, "top": 485, "right": 3220, "bottom": 2105, "left": 805}, {"solidity": 0.9988532780654509, "top": 2275, "right": 3205, "bottom": 3895, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707162f.jpg"} -{"rects": [{"solidity": 0.9979179907937058, "top": 395, "right": 5075, "bottom": 3640, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708484f.jpg"} -{"rects": [{"solidity": 0.9979179913681048, "top": 790, "right": 4920, "bottom": 3110, "left": 1075}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701585f.jpg"} -{"rects": [{"solidity": 0.9979180413116532, "top": 515, "right": 4900, "bottom": 3770, "left": 850}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734068f.jpg"} -{"rects": [{"solidity": 0.9979181150046074, "top": 480, "right": 5665, "bottom": 4190, "left": 1115}], "shape": {"h": 4430, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711205f.jpg"} -{"rects": [{"solidity": 0.997918144571685, "top": 1030, "right": 3530, "bottom": 5085, "left": 305}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712019f.jpg"} -{"rects": [{"solidity": 0.9979181661787537, "top": 795, "right": 3830, "bottom": 3205, "left": 2210}, {"solidity": 0.9971964067441454, "top": 795, "right": 2050, "bottom": 3215, "left": 440}, {"solidity": 0.9943401650041797, "top": 800, "right": 5575, "bottom": 3205, "left": 3980}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719028f.jpg"} -{"rects": [{"solidity": 0.99791837236544, "top": 465, "right": 5125, "bottom": 3735, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706083f.jpg"} -{"rects": [{"solidity": 0.9979185291194899, "top": 450, "right": 4960, "bottom": 3670, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712791f.jpg"} -{"rects": [{"solidity": 0.9979187166606246, "top": 2300, "right": 3065, "bottom": 3910, "left": 650}, {"solidity": 0.9975525393619745, "top": 440, "right": 3060, "bottom": 2050, "left": 645}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728286f.jpg"} -{"rects": [{"solidity": 0.9979187839520415, "top": 955, "right": 3490, "bottom": 5060, "left": 280}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707423f.jpg"} -{"rects": [{"solidity": 0.9979189183330288, "top": 400, "right": 3155, "bottom": 2100, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734038f.jpg"} -{"rects": [{"solidity": 0.9979189709295263, "top": 465, "right": 3130, "bottom": 2085, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702060f.jpg"} -{"rects": [{"solidity": 0.9979189811331628, "top": 305, "right": 3205, "bottom": 1925, "left": 775}, {"solidity": 0.9979415264867647, "top": 3975, "right": 3185, "bottom": 5600, "left": 775}, {"solidity": 0.996448449509674, "top": 2225, "right": 2900, "bottom": 3655, "left": 1070}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711015f.jpg"} -{"rects": [{"solidity": 0.9979190466484327, "top": 655, "right": 2780, "bottom": 2085, "left": 920}, {"solidity": 0.9962359691176187, "top": 2090, "right": 2775, "bottom": 3515, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725492f.jpg"} -{"rects": [{"solidity": 0.9979190491366866, "top": 335, "right": 5460, "bottom": 3645, "left": 1355}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/724537f.jpg"} -{"rects": [{"solidity": 0.9979190834791614, "top": 410, "right": 3195, "bottom": 2010, "left": 795}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718658f.jpg"} -{"rects": [{"solidity": 0.9979193548387096, "top": 300, "right": 3230, "bottom": 1920, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702454f.jpg"} -{"rects": [{"solidity": 0.9979194508124303, "top": 460, "right": 5075, "bottom": 3675, "left": 1035}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721454f.jpg"} -{"rects": [{"solidity": 0.9979195088676671, "top": 310, "right": 3650, "bottom": 2760, "left": 635}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509017.jpg"} -{"rects": [{"solidity": 0.9979195317183257, "top": 440, "right": 3525, "bottom": 2065, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704193f.jpg"} -{"rects": [{"solidity": 0.997919551766634, "top": 2200, "right": 5475, "bottom": 3830, "left": 3045}, {"solidity": 0.9966898556612037, "top": 470, "right": 2940, "bottom": 2105, "left": 500}, {"solidity": 0.9966569572893628, "top": 2200, "right": 2960, "bottom": 3840, "left": 535}, {"solidity": 0.9983132213303745, "top": 475, "right": 5460, "bottom": 2100, "left": 3045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734258f.jpg"} -{"rects": [{"solidity": 0.9979196149098706, "top": 740, "right": 3390, "bottom": 4800, "left": 130}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700512f.jpg"} -{"rects": [{"solidity": 0.9979198407119616, "top": 2165, "right": 3170, "bottom": 3795, "left": 740}, {"solidity": 0.9973637061684156, "top": 305, "right": 3150, "bottom": 1940, "left": 740}, {"solidity": 0.996985643324643, "top": 4025, "right": 3170, "bottom": 5660, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702663f.jpg"} -{"rects": [{"solidity": 0.9979201666446322, "top": 2175, "right": 3195, "bottom": 3795, "left": 785}, {"solidity": 0.9965739234135447, "top": 320, "right": 3190, "bottom": 1900, "left": 815}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/724525f.jpg"} -{"rects": [{"solidity": 0.9979203486709652, "top": 515, "right": 5110, "bottom": 3695, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703323f.jpg"} -{"rects": [{"solidity": 0.9979204106580172, "top": 520, "right": 3080, "bottom": 1945, "left": 1265}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726311f.jpg"} -{"rects": [{"solidity": 0.9979204822166089, "top": 575, "right": 2695, "bottom": 3600, "left": 685}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724259f.jpg"} -{"rects": [{"solidity": 0.9979205115541577, "top": 420, "right": 3105, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729279f.jpg"} -{"rects": [{"solidity": 0.9979208504849737, "top": 755, "right": 1950, "bottom": 3175, "left": 335}, {"solidity": 0.9971361000421162, "top": 755, "right": 3795, "bottom": 3170, "left": 2185}, {"solidity": 0.9978542519349177, "top": 745, "right": 5675, "bottom": 3160, "left": 4075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726241f.jpg"} -{"rects": [{"solidity": 0.9979208894152299, "top": 510, "right": 5085, "bottom": 3805, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712465f.jpg"} -{"rects": [{"solidity": 0.9979211556553671, "top": 700, "right": 2555, "bottom": 2105, "left": 780}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725574f.jpg"} -{"rects": [{"solidity": 0.997921587542774, "top": 515, "right": 5010, "bottom": 3615, "left": 1080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711479f.jpg"} -{"rects": [{"solidity": 0.997922131147541, "top": 530, "right": 2675, "bottom": 3575, "left": 660}, {"solidity": 0.9959330785980284, "top": 785, "right": 4535, "bottom": 3200, "left": 2910}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715534f.jpg"} -{"rects": [{"solidity": 0.9979222197244613, "top": 810, "right": 3860, "bottom": 3230, "left": 2240}, {"solidity": 0.9976508976467143, "top": 805, "right": 2050, "bottom": 3225, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710889f.jpg"} -{"rects": [{"solidity": 0.9979222701333447, "top": 990, "right": 3555, "bottom": 5050, "left": 285}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704491f.jpg"} -{"rects": [{"solidity": 0.9979223049606558, "top": 425, "right": 5060, "bottom": 3640, "left": 1065}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708602f.jpg"} -{"rects": [{"solidity": 0.9979225195073512, "top": 415, "right": 5115, "bottom": 3645, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718983f.jpg"} -{"rects": [{"solidity": 0.9979225776995075, "top": 425, "right": 3185, "bottom": 2025, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702741f.jpg"} -{"rects": [{"solidity": 0.9979227472325208, "top": 700, "right": 3395, "bottom": 2600, "left": 625}, {"solidity": 0.9969207654947229, "top": 3195, "right": 3325, "bottom": 5095, "left": 655}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721107f.jpg"} -{"rects": [{"solidity": 0.9979227525349421, "top": 440, "right": 5120, "bottom": 3770, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722610f.jpg"} -{"rects": [{"solidity": 0.9979227881967041, "top": 835, "right": 1985, "bottom": 3225, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712070f.jpg"} -{"rects": [{"solidity": 0.9979229324050173, "top": 1010, "right": 3490, "bottom": 5000, "left": 300}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724792f.jpg"} -{"rects": [{"solidity": 0.9979234435959962, "top": 495, "right": 5055, "bottom": 3760, "left": 950}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703224f.jpg"} -{"rects": [{"solidity": 0.9979234902283872, "top": 1380, "right": 3560, "bottom": 5400, "left": 305}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/701212f.jpg"} -{"rects": [{"solidity": 0.9979240683135298, "top": 330, "right": 3200, "bottom": 1955, "left": 780}, {"solidity": 0.995941459795186, "top": 4035, "right": 3200, "bottom": 5675, "left": 775}, {"solidity": 0.9961841974469395, "top": 2175, "right": 3195, "bottom": 3820, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720260f.jpg"} -{"rects": [{"solidity": 0.99792420218611, "top": 405, "right": 4015, "bottom": 2820, "left": 350}, {"solidity": 0.9956584404920904, "top": 395, "right": 6130, "bottom": 2180, "left": 4125}, {"solidity": 0.9965283818316072, "top": 2235, "right": 6060, "bottom": 3950, "left": 4155}], "shape": {"h": 4415, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/706364f.jpg"} -{"rects": [{"solidity": 0.9979243977608655, "top": 380, "right": 3845, "bottom": 2835, "left": 830}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715818f.jpg"} -{"rects": [{"solidity": 0.9979245410911814, "top": 430, "right": 3175, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705684f.jpg"} -{"rects": [{"solidity": 0.9979245902272332, "top": 755, "right": 1950, "bottom": 3170, "left": 330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715180f.jpg"} -{"rects": [{"solidity": 0.9979246188792357, "top": 485, "right": 5120, "bottom": 3700, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717410f.jpg"} -{"rects": [{"solidity": 0.9979247365250768, "top": 630, "right": 4155, "bottom": 2640, "left": 1305}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732087f.jpg"} -{"rects": [{"solidity": 0.997924829902788, "top": 795, "right": 2070, "bottom": 3230, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724305f.jpg"} -{"rects": [{"solidity": 0.9979249315390799, "top": 560, "right": 3120, "bottom": 2160, "left": 715}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722632f.jpg"} -{"rects": [{"solidity": 0.9979249873157532, "top": 505, "right": 2920, "bottom": 2110, "left": 510}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706914f.jpg"} -{"rects": [{"solidity": 0.997925049692151, "top": 540, "right": 3260, "bottom": 2155, "left": 845}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712100f.jpg"} -{"rects": [{"solidity": 0.9979250835928967, "top": 735, "right": 3215, "bottom": 2675, "left": 495}, {"solidity": 0.99661332412311, "top": 3360, "right": 3200, "bottom": 5295, "left": 470}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/717774f.jpg"} -{"rects": [{"solidity": 0.9979254203654567, "top": 480, "right": 5115, "bottom": 3790, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732095f.jpg"} -{"rects": [{"solidity": 0.9979255196829243, "top": 460, "right": 5060, "bottom": 3690, "left": 1030}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704286f.jpg"} -{"rects": [{"solidity": 0.9979257232598988, "top": 390, "right": 4890, "bottom": 3635, "left": 890}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713001f.jpg"} -{"rects": [{"solidity": 0.9979257302423401, "top": 2265, "right": 3225, "bottom": 3890, "left": 810}, {"solidity": 0.9986168385432415, "top": 4130, "right": 3225, "bottom": 5750, "left": 810}, {"solidity": 0.9979770407088138, "top": 410, "right": 3220, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728002f.jpg"} -{"rects": [{"solidity": 0.9979259458491926, "top": 535, "right": 5300, "bottom": 3815, "left": 1250}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726709f.jpg"} -{"rects": [{"solidity": 0.9979260730425031, "top": 485, "right": 5095, "bottom": 3650, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702550f.jpg"} -{"rects": [{"solidity": 0.9979261014940534, "top": 1100, "right": 4240, "bottom": 2705, "left": 1830}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731052f.jpg"} -{"rects": [{"solidity": 0.9979266440836351, "top": 2170, "right": 2685, "bottom": 3600, "left": 875}, {"solidity": 0.9970119037190606, "top": 700, "right": 2685, "bottom": 2130, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726522f.jpg"} -{"rects": [{"solidity": 0.997926747214469, "top": 845, "right": 2035, "bottom": 3260, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704461f.jpg"} -{"rects": [{"solidity": 0.997926782533877, "top": 755, "right": 3825, "bottom": 3320, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712423f.jpg"} -{"rects": [{"solidity": 0.9979268905332389, "top": 885, "right": 3395, "bottom": 4840, "left": 495}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/731798f.jpg"} -{"rects": [{"solidity": 0.9979269601539309, "top": 1265, "right": 3625, "bottom": 5280, "left": 380}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/726489f.jpg"} -{"rects": [{"solidity": 0.9979272336317644, "top": 2225, "right": 3095, "bottom": 3840, "left": 680}, {"solidity": 0.9960792159722738, "top": 4065, "right": 3100, "bottom": 5695, "left": 680}, {"solidity": 0.9981116097067154, "top": 380, "right": 3090, "bottom": 1990, "left": 680}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700715f.jpg"} -{"rects": [{"solidity": 0.9979274507644402, "top": 825, "right": 2075, "bottom": 3205, "left": 490}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713218f.jpg"} -{"rects": [{"solidity": 0.9979274684202392, "top": 1090, "right": 3395, "bottom": 3025, "left": 615}, {"solidity": 0.9927085971996642, "top": 3445, "right": 3015, "bottom": 4870, "left": 1210}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727960f.jpg"} -{"rects": [{"solidity": 0.9979276011983871, "top": 385, "right": 3145, "bottom": 2005, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701688f.jpg"} -{"rects": [{"solidity": 0.9979276715225294, "top": 470, "right": 5200, "bottom": 3690, "left": 1130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732629f.jpg"} -{"rects": [{"solidity": 0.9979278092780545, "top": 490, "right": 5085, "bottom": 3730, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717901f.jpg"} -{"rects": [{"solidity": 0.9979279638148596, "top": 730, "right": 2035, "bottom": 3150, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715410f.jpg"} -{"rects": [{"solidity": 0.9979280543515574, "top": 435, "right": 5000, "bottom": 3720, "left": 940}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723212f.jpg"} -{"rects": [{"solidity": 0.9979280655285527, "top": 370, "right": 3315, "bottom": 1985, "left": 900}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700217f.jpg"} -{"rects": [{"solidity": 0.9979283349061608, "top": 495, "right": 5155, "bottom": 3450, "left": 1345}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704708f.jpg"} -{"rects": [{"solidity": 0.9979283486579513, "top": 2180, "right": 3090, "bottom": 3800, "left": 685}, {"solidity": 0.9962173715914243, "top": 4050, "right": 3080, "bottom": 5685, "left": 660}, {"solidity": 0.9901264665549292, "top": 425, "right": 2905, "bottom": 1910, "left": 940}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707674f.jpg"} -{"rects": [{"solidity": 0.9979284706840312, "top": 410, "right": 5190, "bottom": 3660, "left": 1200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732654f.jpg"} -{"rects": [{"solidity": 0.9979285157962943, "top": 430, "right": 3145, "bottom": 2025, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719771f.jpg"} -{"rects": [{"solidity": 0.9979285327162156, "top": 375, "right": 3035, "bottom": 1960, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729840f.jpg"} -{"rects": [{"solidity": 0.9979286249803678, "top": 425, "right": 5040, "bottom": 3610, "left": 1035}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718254f.jpg"} -{"rects": [{"solidity": 0.9979286540996763, "top": 540, "right": 2585, "bottom": 3610, "left": 600}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714604f.jpg"} -{"rects": [{"solidity": 0.9979286624940188, "top": 775, "right": 5730, "bottom": 3195, "left": 4110}, {"solidity": 0.997826510088886, "top": 745, "right": 1980, "bottom": 3155, "left": 370}, {"solidity": 0.9960545099734129, "top": 755, "right": 3845, "bottom": 3165, "left": 2240}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723223f.jpg"} -{"rects": [{"solidity": 0.997928767918222, "top": 1015, "right": 3355, "bottom": 5025, "left": 535}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712832f.jpg"} -{"rects": [{"solidity": 0.99792895674432, "top": 360, "right": 3120, "bottom": 1965, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701442f.jpg"} -{"rects": [{"solidity": 0.9979291018191606, "top": 740, "right": 2035, "bottom": 3170, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705553f.jpg"} -{"rects": [{"solidity": 0.9979291127820149, "top": 425, "right": 5055, "bottom": 3565, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730097f.jpg"} -{"rects": [{"solidity": 0.997929137679987, "top": 490, "right": 5075, "bottom": 3740, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707318f.jpg"} -{"rects": [{"solidity": 0.9979292092458333, "top": 1175, "right": 4000, "bottom": 5730, "left": 305}], "shape": {"h": 6850, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711653f.jpg"} -{"rects": [{"solidity": 0.9979293508632607, "top": 575, "right": 1565, "bottom": 2370, "left": 370}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716358f.jpg"} -{"rects": [{"solidity": 0.9979295222804011, "top": 380, "right": 3345, "bottom": 2305, "left": 620}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718522f.jpg"} -{"rects": [{"solidity": 0.9979302534463232, "top": 2325, "right": 3115, "bottom": 3930, "left": 705}, {"solidity": 0.9953509298140372, "top": 440, "right": 3130, "bottom": 2060, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731003f.jpg"} -{"rects": [{"solidity": 0.9979303714438619, "top": 595, "right": 3340, "bottom": 2505, "left": 550}, {"solidity": 0.9955748139823283, "top": 3200, "right": 3305, "bottom": 5125, "left": 580}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715369f.jpg"} -{"rects": [{"solidity": 0.9979304813363743, "top": 360, "right": 3140, "bottom": 1970, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719397f.jpg"} -{"rects": [{"solidity": 0.9979310523931404, "top": 385, "right": 5320, "bottom": 3650, "left": 1300}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726654f.jpg"} -{"rects": [{"solidity": 0.9979314042978702, "top": 370, "right": 5100, "bottom": 3605, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705368f.jpg"} -{"rects": [{"solidity": 0.9979314526195656, "top": 795, "right": 3970, "bottom": 3205, "left": 2360}, {"solidity": 0.9978894428730293, "top": 800, "right": 2085, "bottom": 3175, "left": 495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718503f.jpg"} -{"rects": [{"solidity": 0.9979316226688784, "top": 455, "right": 3150, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/715020f.jpg"} -{"rects": [{"solidity": 0.9979316445516687, "top": 2265, "right": 3120, "bottom": 3890, "left": 710}, {"solidity": 0.9969106234689744, "top": 420, "right": 3125, "bottom": 2045, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714968f.jpg"} -{"rects": [{"solidity": 0.9979316739176949, "top": 380, "right": 3115, "bottom": 1995, "left": 710}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719695f.jpg"} -{"rects": [{"solidity": 0.997931943774287, "top": 1235, "right": 3545, "bottom": 5205, "left": 340}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/722422f.jpg"} -{"rects": [{"solidity": 0.9979320298655655, "top": 640, "right": 3480, "bottom": 3040, "left": 295}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718635f.jpg"} -{"rects": [{"solidity": 0.9979320516886399, "top": 400, "right": 4885, "bottom": 3535, "left": 860}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715601f.jpg"} -{"rects": [{"solidity": 0.997932119961739, "top": 680, "right": 3595, "bottom": 4780, "left": 345}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702312f.jpg"} -{"rects": [{"solidity": 0.9979321642452399, "top": 635, "right": 4080, "bottom": 3665, "left": 2070}, {"solidity": 0.9971504461292485, "top": 920, "right": 1935, "bottom": 3340, "left": 320}, {"solidity": 0.9962784659843311, "top": 910, "right": 5845, "bottom": 3315, "left": 4230}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714820f.jpg"} -{"rects": [{"solidity": 0.9979321903049433, "top": 1170, "right": 3535, "bottom": 5170, "left": 295}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716779f.jpg"} -{"rects": [{"solidity": 0.9979324287572618, "top": 810, "right": 2075, "bottom": 3210, "left": 475}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712562f.jpg"} -{"rects": [{"solidity": 0.99793262177212, "top": 520, "right": 5315, "bottom": 3450, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719626f.jpg"} -{"rects": [{"solidity": 0.9979326309591561, "top": 1310, "right": 3615, "bottom": 5405, "left": 335}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/733982f.jpg"} -{"rects": [{"solidity": 0.9979326619902354, "top": 420, "right": 3175, "bottom": 2030, "left": 770}, {"solidity": 0.9942051470758867, "top": 2255, "right": 3175, "bottom": 3845, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719682f.jpg"} -{"rects": [{"solidity": 0.9979327485675937, "top": 770, "right": 2025, "bottom": 3140, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712156f.jpg"} -{"rects": [{"solidity": 0.9979328842244329, "top": 1285, "right": 3605, "bottom": 5330, "left": 330}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/712794f.jpg"} -{"rects": [{"solidity": 0.99793294182571, "top": 425, "right": 3170, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705941f.jpg"} -{"rects": [{"solidity": 0.9979329772618017, "top": 490, "right": 5150, "bottom": 3740, "left": 1035}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704993f.jpg"} -{"rects": [{"solidity": 0.9979331547219051, "top": 1180, "right": 3525, "bottom": 5190, "left": 300}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/717002f.jpg"} -{"rects": [{"solidity": 0.9979331999752995, "top": 440, "right": 5030, "bottom": 3735, "left": 950}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/733427f.jpg"} -{"rects": [{"solidity": 0.9979333835963164, "top": 425, "right": 3125, "bottom": 2005, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714383f.jpg"} -{"rects": [{"solidity": 0.9979334706591735, "top": 365, "right": 4950, "bottom": 3605, "left": 860}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725578f.jpg"} -{"rects": [{"solidity": 0.9979335095356551, "top": 2235, "right": 3180, "bottom": 3845, "left": 765}, {"solidity": 0.9971360474857615, "top": 430, "right": 3165, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719448f.jpg"} -{"rects": [{"solidity": 0.9979335755818575, "top": 2230, "right": 3265, "bottom": 3860, "left": 835}, {"solidity": 0.9955779857498487, "top": 455, "right": 3260, "bottom": 2075, "left": 835}, {"solidity": 0.995762423582696, "top": 4060, "right": 3265, "bottom": 5670, "left": 845}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731889f.jpg"} -{"rects": [{"solidity": 0.9979337222760233, "top": 445, "right": 4710, "bottom": 3700, "left": 625}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725147f.jpg"} -{"rects": [{"solidity": 0.997934123324574, "top": 450, "right": 3230, "bottom": 2045, "left": 840}], "shape": {"h": 6140, "w": 4065}, "file": "/usr/local/google/home/danvk/milstein/702623f.jpg"} -{"rects": [{"solidity": 0.9979343585035575, "top": 595, "right": 5000, "bottom": 3440, "left": 960}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712929f.jpg"} -{"rects": [{"solidity": 0.9979344496978609, "top": 545, "right": 5085, "bottom": 3770, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717780f.jpg"} -{"rects": [{"solidity": 0.9979344882605854, "top": 425, "right": 5000, "bottom": 3565, "left": 1060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711490f.jpg"} -{"rects": [{"solidity": 0.9979344976242414, "top": 855, "right": 3560, "bottom": 4880, "left": 295}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721642f.jpg"} -{"rects": [{"solidity": 0.9979345874243346, "top": 640, "right": 3165, "bottom": 3815, "left": 975}, {"solidity": 0.995368630811904, "top": 685, "right": 5950, "bottom": 2120, "left": 3860}], "shape": {"h": 4415, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/706362f.jpg"} -{"rects": [{"solidity": 0.9979346936559219, "top": 1000, "right": 3500, "bottom": 5065, "left": 305}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720768f.jpg"} -{"rects": [{"solidity": 0.9979347514390272, "top": 355, "right": 5290, "bottom": 3630, "left": 1235}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723602f.jpg"} -{"rects": [{"solidity": 0.9979348191431601, "top": 420, "right": 3305, "bottom": 2030, "left": 885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725911f.jpg"} -{"rects": [{"solidity": 0.9979349121325358, "top": 1755, "right": 2380, "bottom": 2965, "left": 580}, {"solidity": 0.9971297026487915, "top": 420, "right": 2385, "bottom": 1630, "left": 585}, {"solidity": 0.9953237993695532, "top": 3090, "right": 2375, "bottom": 4300, "left": 575}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716520f.jpg"} -{"rects": [{"solidity": 0.9979349199954485, "top": 270, "right": 3540, "bottom": 3655, "left": 1120}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722681f.jpg"} -{"rects": [{"solidity": 0.9979349817077106, "top": 605, "right": 3110, "bottom": 1995, "left": 1285}, {"solidity": 0.9952136445956973, "top": 4080, "right": 3090, "bottom": 5470, "left": 1260}, {"solidity": 0.9952790679966497, "top": 2350, "right": 3115, "bottom": 3710, "left": 1280}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726419f.jpg"} -{"rects": [{"solidity": 0.9979354154138657, "top": 460, "right": 5055, "bottom": 3740, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730122f.jpg"} -{"rects": [{"solidity": 0.9979356534271544, "top": 610, "right": 4995, "bottom": 3680, "left": 1135}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733973f.jpg"} -{"rects": [{"solidity": 0.9979356702049342, "top": 1080, "right": 3530, "bottom": 5135, "left": 230}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714390f.jpg"} -{"rects": [{"solidity": 0.9979358884932392, "top": 980, "right": 3500, "bottom": 4935, "left": 370}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717339f.jpg"} -{"rects": [{"solidity": 0.9979359966668269, "top": 460, "right": 3170, "bottom": 2080, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707709f.jpg"} -{"rects": [{"solidity": 0.9979360731120842, "top": 345, "right": 5315, "bottom": 3610, "left": 1295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733479f.jpg"} -{"rects": [{"solidity": 0.9979363971687768, "top": 465, "right": 3060, "bottom": 1870, "left": 1260}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/726758f.jpg"} -{"rects": [{"solidity": 0.9979365165961188, "top": 320, "right": 3185, "bottom": 1940, "left": 760}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704612f.jpg"} -{"rects": [{"solidity": 0.9979366002757628, "top": 730, "right": 5575, "bottom": 3155, "left": 3960}, {"solidity": 0.997372113293996, "top": 745, "right": 1975, "bottom": 3160, "left": 365}, {"solidity": 0.9956277245693357, "top": 740, "right": 3770, "bottom": 3160, "left": 2150}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723560f.jpg"} -{"rects": [{"solidity": 0.9979366815069385, "top": 435, "right": 3180, "bottom": 2045, "left": 775}, {"solidity": 0.9968263443267174, "top": 2230, "right": 2890, "bottom": 3645, "left": 1095}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721813f.jpg"} -{"rects": [{"solidity": 0.997936697357485, "top": 550, "right": 2805, "bottom": 2960, "left": 1190}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/708164f.jpg"} -{"rects": [{"solidity": 0.9979367657623057, "top": 660, "right": 4755, "bottom": 3445, "left": 1205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706015f.jpg"} -{"rects": [{"solidity": 0.997937191821912, "top": 2300, "right": 3250, "bottom": 3920, "left": 825}, {"solidity": 0.9970040472773595, "top": 400, "right": 3245, "bottom": 2010, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731026f.jpg"} -{"rects": [{"solidity": 0.9979373114573754, "top": 470, "right": 5050, "bottom": 3740, "left": 1025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719529f.jpg"} -{"rects": [{"solidity": 0.9979373233506746, "top": 710, "right": 3840, "bottom": 3120, "left": 2240}, {"solidity": 0.9970473950193959, "top": 740, "right": 5695, "bottom": 3150, "left": 4095}, {"solidity": 0.99658668380429, "top": 740, "right": 2000, "bottom": 3150, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734509f.jpg"} -{"rects": [{"solidity": 0.9979378930590699, "top": 915, "right": 2125, "bottom": 3345, "left": 510}, {"solidity": 0.9966081295475683, "top": 905, "right": 3900, "bottom": 3325, "left": 2280}, {"solidity": 0.9969721788703874, "top": 910, "right": 5685, "bottom": 3325, "left": 4070}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717881f.jpg"} -{"rects": [{"solidity": 0.9979380298444535, "top": 1040, "right": 3540, "bottom": 5115, "left": 260}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/716953f.jpg"} -{"rects": [{"solidity": 0.9979391604318802, "top": 905, "right": 2690, "bottom": 3915, "left": 265}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516875.jpg"} -{"rects": [{"solidity": 0.9979393852104852, "top": 1090, "right": 3430, "bottom": 5090, "left": 365}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708543f.jpg"} -{"rects": [{"solidity": 0.9979394385545178, "top": 2235, "right": 3195, "bottom": 3835, "left": 800}, {"solidity": 0.9969910257507621, "top": 410, "right": 3190, "bottom": 2010, "left": 795}, {"solidity": 0.9969429370278077, "top": 4085, "right": 3190, "bottom": 5680, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732357f.jpg"} -{"rects": [{"solidity": 0.9979395138222261, "top": 2110, "right": 2830, "bottom": 3520, "left": 985}, {"solidity": 0.9969930290738627, "top": 645, "right": 2820, "bottom": 2065, "left": 990}, {"solidity": 0.997460274212539, "top": 635, "right": 5275, "bottom": 2055, "left": 3450}, {"solidity": 0.9963741004303872, "top": 2120, "right": 5250, "bottom": 3525, "left": 3460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705606f.jpg"} -{"rects": [{"solidity": 0.9979395381185449, "top": 845, "right": 2055, "bottom": 3260, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728630f.jpg"} -{"rects": [{"solidity": 0.9979395912171858, "top": 395, "right": 5250, "bottom": 3630, "left": 1165}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/711689f.jpg"} -{"rects": [{"solidity": 0.9979398250934227, "top": 325, "right": 5165, "bottom": 3630, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727458f.jpg"} -{"rects": [{"solidity": 0.9979401588928755, "top": 410, "right": 3160, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721175f.jpg"} -{"rects": [{"solidity": 0.997940449155866, "top": 840, "right": 3275, "bottom": 2785, "left": 520}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706232f.jpg"} -{"rects": [{"solidity": 0.9979405688860639, "top": 500, "right": 2965, "bottom": 2130, "left": 535}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702683f.jpg"} -{"rects": [{"solidity": 0.9979407025736909, "top": 330, "right": 3970, "bottom": 2750, "left": 950}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517273.jpg"} -{"rects": [{"solidity": 0.9979407362153511, "top": 1090, "right": 3615, "bottom": 5115, "left": 335}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708446f.jpg"} -{"rects": [{"solidity": 0.9979407744701626, "top": 1010, "right": 3610, "bottom": 5070, "left": 350}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732603f.jpg"} -{"rects": [{"solidity": 0.99794082098572, "top": 795, "right": 1985, "bottom": 3225, "left": 360}, {"solidity": 0.9967643225839423, "top": 790, "right": 3820, "bottom": 3220, "left": 2190}, {"solidity": 0.9962651332113341, "top": 815, "right": 5670, "bottom": 3225, "left": 4060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728738f.jpg"} -{"rects": [{"solidity": 0.9979412381613127, "top": 390, "right": 3210, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725485f.jpg"} -{"rects": [{"solidity": 0.997941307982507, "top": 340, "right": 5215, "bottom": 3745, "left": 820}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713014f.jpg"} -{"rects": [{"solidity": 0.997941416134151, "top": 715, "right": 2095, "bottom": 3105, "left": 495}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707645f.jpg"} -{"rects": [{"solidity": 0.9979416796168508, "top": 450, "right": 5225, "bottom": 3680, "left": 1230}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731101f.jpg"} -{"rects": [{"solidity": 0.9979417244642143, "top": 935, "right": 2005, "bottom": 3345, "left": 400}, {"solidity": 0.9957978496037878, "top": 920, "right": 3885, "bottom": 3320, "left": 2280}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728536f.jpg"} -{"rects": [{"solidity": 0.9979419059836175, "top": 565, "right": 4535, "bottom": 3700, "left": 535}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726425f.jpg"} -{"rects": [{"solidity": 0.9979420600788823, "top": 460, "right": 3100, "bottom": 2070, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700484f.jpg"} -{"rects": [{"solidity": 0.9979420776331454, "top": 1135, "right": 3495, "bottom": 5155, "left": 270}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/717081f.jpg"} -{"rects": [{"solidity": 0.9979422607394315, "top": 835, "right": 3875, "bottom": 3260, "left": 2265}, {"solidity": 0.9978897362978283, "top": 840, "right": 2035, "bottom": 3260, "left": 425}, {"solidity": 0.9972143477477182, "top": 850, "right": 5700, "bottom": 3260, "left": 4105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717491f.jpg"} -{"rects": [{"solidity": 0.9979422809815319, "top": 410, "right": 3235, "bottom": 2035, "left": 825}, {"solidity": 0.9973842961247044, "top": 2295, "right": 3250, "bottom": 3910, "left": 825}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706154f.jpg"} -{"rects": [{"solidity": 0.9979424551480612, "top": 435, "right": 5075, "bottom": 3635, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711767f.jpg"} -{"rects": [{"solidity": 0.9979424795857912, "top": 805, "right": 2050, "bottom": 3220, "left": 430}, {"solidity": 0.9949456864440385, "top": 815, "right": 3900, "bottom": 3235, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734073f.jpg"} -{"rects": [{"solidity": 0.9979425516845759, "top": 880, "right": 3895, "bottom": 3300, "left": 2270}, {"solidity": 0.9967704343862059, "top": 870, "right": 2050, "bottom": 3300, "left": 430}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701167f.jpg"} -{"rects": [{"solidity": 0.997942553764575, "top": 805, "right": 2015, "bottom": 3220, "left": 410}, {"solidity": 0.9977958338337883, "top": 810, "right": 3840, "bottom": 3225, "left": 2235}, {"solidity": 0.9969395189092849, "top": 805, "right": 5665, "bottom": 3225, "left": 4065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733227f.jpg"} -{"rects": [{"solidity": 0.9979425786561824, "top": 795, "right": 2000, "bottom": 3205, "left": 375}, {"solidity": 0.9970556204065396, "top": 795, "right": 3850, "bottom": 3200, "left": 2240}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722592f.jpg"} -{"rects": [{"solidity": 0.9979427294437263, "top": 815, "right": 3380, "bottom": 2850, "left": 555}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706939f.jpg"} -{"rects": [{"solidity": 0.9979427702128033, "top": 1325, "right": 3470, "bottom": 4885, "left": 250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718553f.jpg"} -{"rects": [{"solidity": 0.9979429543312878, "top": 690, "right": 2970, "bottom": 2495, "left": 1755}, {"solidity": 0.9947969461355021, "top": 705, "right": 1545, "bottom": 2495, "left": 340}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715941f.jpg"} -{"rects": [{"solidity": 0.9979429832540045, "top": 475, "right": 4395, "bottom": 3645, "left": 2410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732982f.jpg"} -{"rects": [{"solidity": 0.9979434397346876, "top": 390, "right": 3095, "bottom": 2000, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729387f.jpg"} -{"rects": [{"solidity": 0.9979434721934739, "top": 440, "right": 3210, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733852f.jpg"} -{"rects": [{"solidity": 0.9979434741676514, "top": 450, "right": 5100, "bottom": 3750, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734463f.jpg"} -{"rects": [{"solidity": 0.9979438649682105, "top": 380, "right": 5395, "bottom": 3635, "left": 1305}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730698f.jpg"} -{"rects": [{"solidity": 0.9979438755422145, "top": 830, "right": 2040, "bottom": 3205, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711794f.jpg"} -{"rects": [{"solidity": 0.9979442765709391, "top": 430, "right": 5180, "bottom": 3665, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714684f.jpg"} -{"rects": [{"solidity": 0.9979443736513268, "top": 385, "right": 4995, "bottom": 3645, "left": 990}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724474f.jpg"} -{"rects": [{"solidity": 0.9979444009397024, "top": 820, "right": 1995, "bottom": 3220, "left": 385}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720448f.jpg"} -{"rects": [{"solidity": 0.997944417306236, "top": 805, "right": 2160, "bottom": 3200, "left": 555}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711051f.jpg"} -{"rects": [{"solidity": 0.9979444517946517, "top": 880, "right": 2030, "bottom": 3305, "left": 420}, {"solidity": 0.9960854241704098, "top": 890, "right": 3855, "bottom": 3315, "left": 2235}, {"solidity": 0.9964285243176931, "top": 915, "right": 5710, "bottom": 3310, "left": 4110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730459f.jpg"} -{"rects": [{"solidity": 0.9979445745193514, "top": 525, "right": 5130, "bottom": 3780, "left": 1040}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700595f.jpg"} -{"rects": [{"solidity": 0.997945071366002, "top": 645, "right": 3300, "bottom": 2650, "left": 255}, {"solidity": 0.9975476159008473, "top": 3125, "right": 3300, "bottom": 5095, "left": 255}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715729f.jpg"} -{"rects": [{"solidity": 0.9979456677076166, "top": 405, "right": 4900, "bottom": 3415, "left": 1090}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734853f.jpg"} -{"rects": [{"solidity": 0.9979459448653619, "top": 2100, "right": 2685, "bottom": 3505, "left": 890}, {"solidity": 0.9945086995876496, "top": 2095, "right": 5260, "bottom": 3520, "left": 3485}, {"solidity": 0.9965347059804105, "top": 660, "right": 2665, "bottom": 2070, "left": 895}, {"solidity": 0.9944224366915975, "top": 665, "right": 5245, "bottom": 2065, "left": 3465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726591f.jpg"} -{"rects": [{"solidity": 0.9979460612064317, "top": 445, "right": 5080, "bottom": 3700, "left": 990}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701021f.jpg"} -{"rects": [{"solidity": 0.9979461266691367, "top": 505, "right": 5085, "bottom": 3695, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700956f.jpg"} -{"rects": [{"solidity": 0.9979462476375025, "top": 475, "right": 3165, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721375f.jpg"} -{"rects": [{"solidity": 0.9979463340201442, "top": 500, "right": 3100, "bottom": 2070, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712292f.jpg"} -{"rects": [{"solidity": 0.99794653966345, "top": 785, "right": 3900, "bottom": 3210, "left": 2275}, {"solidity": 0.9978842041919005, "top": 795, "right": 2120, "bottom": 3225, "left": 500}, {"solidity": 0.99622421651688, "top": 780, "right": 5675, "bottom": 3205, "left": 4050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716542f.jpg"} -{"rects": [{"solidity": 0.9979469826663814, "top": 790, "right": 2035, "bottom": 3160, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714576f.jpg"} -{"rects": [{"solidity": 0.9979473017057285, "top": 460, "right": 5145, "bottom": 3735, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702441f.jpg"} -{"rects": [{"solidity": 0.9979473682703787, "top": 515, "right": 5055, "bottom": 3785, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712454f.jpg"} -{"rects": [{"solidity": 0.9979474308838694, "top": 420, "right": 3150, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732538f.jpg"} -{"rects": [{"solidity": 0.9979474415748133, "top": 820, "right": 3790, "bottom": 3215, "left": 2165}, {"solidity": 0.9956831318794878, "top": 810, "right": 1915, "bottom": 3185, "left": 320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723713f.jpg"} -{"rects": [{"solidity": 0.9979475407971503, "top": 830, "right": 2280, "bottom": 3525, "left": 475}], "shape": {"h": 4410, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711683f.jpg"} -{"rects": [{"solidity": 0.9979475748300084, "top": 335, "right": 3145, "bottom": 1955, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702315f.jpg"} -{"rects": [{"solidity": 0.997947878076333, "top": 475, "right": 3070, "bottom": 1895, "left": 1270}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725656f.jpg"} -{"rects": [{"solidity": 0.9979479552954242, "top": 825, "right": 3880, "bottom": 3255, "left": 2255}, {"solidity": 0.9982255161190279, "top": 825, "right": 2045, "bottom": 3255, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706972f.jpg"} -{"rects": [{"solidity": 0.9979479873579423, "top": 1165, "right": 3530, "bottom": 5145, "left": 330}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/717082f.jpg"} -{"rects": [{"solidity": 0.9979480252570624, "top": 880, "right": 2035, "bottom": 3285, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702434f.jpg"} -{"rects": [{"solidity": 0.9979481364489261, "top": 310, "right": 5175, "bottom": 3545, "left": 1140}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708740f.jpg"} -{"rects": [{"solidity": 0.9979482414881056, "top": 685, "right": 3880, "bottom": 3080, "left": 2250}, {"solidity": 0.976138740117317, "top": 655, "right": 2095, "bottom": 3025, "left": 520}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705409f.jpg"} -{"rects": [{"solidity": 0.9979484812350143, "top": 2275, "right": 3145, "bottom": 3905, "left": 735}, {"solidity": 0.9966307083206437, "top": 415, "right": 3125, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719521f.jpg"} -{"rects": [{"solidity": 0.9979486289859159, "top": 465, "right": 5095, "bottom": 3485, "left": 1255}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700648f.jpg"} -{"rects": [{"solidity": 0.9979486642312511, "top": 470, "right": 3340, "bottom": 2480, "left": 475}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703721f.jpg"} -{"rects": [{"solidity": 0.9979487388975128, "top": 395, "right": 5445, "bottom": 3625, "left": 1430}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707749f.jpg"} -{"rects": [{"solidity": 0.9979487713452728, "top": 1095, "right": 3560, "bottom": 5130, "left": 270}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726159f.jpg"} -{"rects": [{"solidity": 0.9979487736985299, "top": 890, "right": 3550, "bottom": 4925, "left": 285}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715571f.jpg"} -{"rects": [{"solidity": 0.9979490950534731, "top": 480, "right": 5125, "bottom": 3780, "left": 1075}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719038f.jpg"} -{"rects": [{"solidity": 0.9979491725039171, "top": 515, "right": 5080, "bottom": 3805, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712409f.jpg"} -{"rects": [{"solidity": 0.9979492306410577, "top": 790, "right": 3850, "bottom": 3215, "left": 2230}, {"solidity": 0.9991798190455666, "top": 795, "right": 2040, "bottom": 3215, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733873f.jpg"} -{"rects": [{"solidity": 0.9979494124216188, "top": 2250, "right": 3230, "bottom": 3875, "left": 810}, {"solidity": 0.9962319564260419, "top": 460, "right": 3215, "bottom": 2065, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732043f.jpg"} -{"rects": [{"solidity": 0.9979496706284862, "top": 405, "right": 5180, "bottom": 3655, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732627f.jpg"} -{"rects": [{"solidity": 0.997949787552789, "top": 420, "right": 3110, "bottom": 2035, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728634f.jpg"} -{"rects": [{"solidity": 0.997949885881554, "top": 395, "right": 5030, "bottom": 3615, "left": 1010}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715597f.jpg"} -{"rects": [{"solidity": 0.9979499179498054, "top": 450, "right": 5195, "bottom": 3705, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708746f.jpg"} -{"rects": [{"solidity": 0.9979500839171349, "top": 480, "right": 2970, "bottom": 2025, "left": 1020}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700912f.jpg"} -{"rects": [{"solidity": 0.9979502954747834, "top": 745, "right": 2015, "bottom": 3155, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720166f.jpg"} -{"rects": [{"solidity": 0.9979504402818064, "top": 545, "right": 3140, "bottom": 2160, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710672f.jpg"} -{"rects": [{"solidity": 0.9979506545982993, "top": 345, "right": 3030, "bottom": 1960, "left": 610}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734341f.jpg"} -{"rects": [{"solidity": 0.9979510986467721, "top": 465, "right": 5005, "bottom": 3725, "left": 1005}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702831f.jpg"} -{"rects": [{"solidity": 0.9979512503130701, "top": 420, "right": 4990, "bottom": 3645, "left": 925}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723022f.jpg"} -{"rects": [{"solidity": 0.9979513247566398, "top": 700, "right": 2040, "bottom": 3120, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707195f.jpg"} -{"rects": [{"solidity": 0.9979513372776466, "top": 1550, "right": 3425, "bottom": 5210, "left": 595}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/724936f.jpg"} -{"rects": [{"solidity": 0.9979513605105116, "top": 1015, "right": 3480, "bottom": 5030, "left": 290}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717500f.jpg"} -{"rects": [{"solidity": 0.9979513811053824, "top": 680, "right": 2605, "bottom": 3705, "left": 600}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715699f.jpg"} -{"rects": [{"solidity": 0.9979515140900039, "top": 420, "right": 5020, "bottom": 3695, "left": 995}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725414f.jpg"} -{"rects": [{"solidity": 0.9979515870399472, "top": 2200, "right": 3185, "bottom": 3820, "left": 760}, {"solidity": 0.996847054899093, "top": 435, "right": 3190, "bottom": 2050, "left": 760}, {"solidity": 0.9995009546255067, "top": 4005, "right": 3180, "bottom": 5615, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720748f.jpg"} -{"rects": [{"solidity": 0.9979518787820421, "top": 435, "right": 3220, "bottom": 2060, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727549f.jpg"} -{"rects": [{"solidity": 0.9979520570484701, "top": 590, "right": 2220, "bottom": 3015, "left": 595}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707043f.jpg"} -{"rects": [{"solidity": 0.9979523106214083, "top": 755, "right": 4375, "bottom": 3745, "left": 505}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708319f.jpg"} -{"rects": [{"solidity": 0.9979523791097524, "top": 875, "right": 1995, "bottom": 3290, "left": 375}, {"solidity": 0.9971879977894087, "top": 910, "right": 5700, "bottom": 3325, "left": 4095}, {"solidity": 0.9983611909114651, "top": 900, "right": 3835, "bottom": 3295, "left": 2225}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709523f.jpg"} -{"rects": [{"solidity": 0.9979527965910466, "top": 810, "right": 2070, "bottom": 3210, "left": 465}, {"solidity": 0.996908794724343, "top": 810, "right": 3895, "bottom": 3205, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716869f.jpg"} -{"rects": [{"solidity": 0.9979528052742576, "top": 495, "right": 4165, "bottom": 2945, "left": 925}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720928f.jpg"} -{"rects": [{"solidity": 0.9979531690254883, "top": 2170, "right": 3205, "bottom": 3790, "left": 805}, {"solidity": 0.9972430938685755, "top": 315, "right": 3220, "bottom": 1915, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724740f.jpg"} -{"rects": [{"solidity": 0.9979535979122243, "top": 2285, "right": 3135, "bottom": 3910, "left": 705}, {"solidity": 0.9957770135677383, "top": 385, "right": 3155, "bottom": 2010, "left": 710}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/728841f.jpg"} -{"rects": [{"solidity": 0.9979537463477443, "top": 385, "right": 5075, "bottom": 3570, "left": 1080}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708262f.jpg"} -{"rects": [{"solidity": 0.9979540038029029, "top": 680, "right": 2740, "bottom": 3745, "left": 355}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507815.jpg"} -{"rects": [{"solidity": 0.9979540529392894, "top": 730, "right": 1825, "bottom": 3120, "left": 215}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717583f.jpg"} -{"rects": [{"solidity": 0.9979543930248156, "top": 965, "right": 3750, "bottom": 5025, "left": 510}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720357f.jpg"} -{"rects": [{"solidity": 0.9979545157495752, "top": 485, "right": 3185, "bottom": 2090, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713989f.jpg"} -{"rects": [{"solidity": 0.997954754554518, "top": 485, "right": 3040, "bottom": 2110, "left": 620}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705925f.jpg"} -{"rects": [{"solidity": 0.997954951044229, "top": 755, "right": 3880, "bottom": 3170, "left": 2260}, {"solidity": 0.9952268493879723, "top": 755, "right": 2005, "bottom": 3160, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703664f.jpg"} -{"rects": [{"solidity": 0.9979551937437903, "top": 720, "right": 1920, "bottom": 3150, "left": 300}, {"solidity": 0.9964201403486078, "top": 740, "right": 5640, "bottom": 3160, "left": 4025}, {"solidity": 0.9969028777562926, "top": 750, "right": 3780, "bottom": 3125, "left": 2145}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720784f.jpg"} -{"rects": [{"solidity": 0.9979554052658356, "top": 1015, "right": 3515, "bottom": 5040, "left": 245}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714193f.jpg"} -{"rects": [{"solidity": 0.9979554471091117, "top": 995, "right": 2680, "bottom": 3980, "left": 290}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507612.jpg"} -{"rects": [{"solidity": 0.9979554832924651, "top": 720, "right": 3260, "bottom": 2735, "left": 430}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728893f.jpg"} -{"rects": [{"solidity": 0.9979556669612856, "top": 350, "right": 5070, "bottom": 3635, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734642f.jpg"} -{"rects": [{"solidity": 0.9979557432956131, "top": 1030, "right": 3545, "bottom": 5035, "left": 310}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722280f.jpg"} -{"rects": [{"solidity": 0.9979557492647011, "top": 1100, "right": 4565, "bottom": 3145, "left": 1725}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728275f.jpg"} -{"rects": [{"solidity": 0.9979563247118343, "top": 475, "right": 5075, "bottom": 3760, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713782f.jpg"} -{"rects": [{"solidity": 0.9979563663279956, "top": 525, "right": 5095, "bottom": 3770, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729029f.jpg"} -{"rects": [{"solidity": 0.9979566564217035, "top": 565, "right": 4760, "bottom": 3390, "left": 1080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718636f.jpg"} -{"rects": [{"solidity": 0.9979567784994171, "top": 2230, "right": 3295, "bottom": 3860, "left": 880}, {"solidity": 0.9957112637283028, "top": 405, "right": 3290, "bottom": 2015, "left": 850}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704421f.jpg"} -{"rects": [{"solidity": 0.9979570730775962, "top": 440, "right": 3190, "bottom": 2065, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705589f.jpg"} -{"rects": [{"solidity": 0.9979571968384403, "top": 815, "right": 2035, "bottom": 3205, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721034f.jpg"} -{"rects": [{"solidity": 0.9979573316401954, "top": 820, "right": 3960, "bottom": 3245, "left": 2340}, {"solidity": 0.9956724720962932, "top": 820, "right": 2040, "bottom": 3250, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728479f.jpg"} -{"rects": [{"solidity": 0.9979573623555413, "top": 415, "right": 3385, "bottom": 2040, "left": 980}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704543f.jpg"} -{"rects": [{"solidity": 0.9979574130219722, "top": 845, "right": 3880, "bottom": 3265, "left": 2255}, {"solidity": 0.9978745435718568, "top": 850, "right": 2080, "bottom": 3265, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720230f.jpg"} -{"rects": [{"solidity": 0.997957445794899, "top": 455, "right": 5255, "bottom": 3645, "left": 1275}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730029f.jpg"} -{"rects": [{"solidity": 0.9979574782650618, "top": 435, "right": 3180, "bottom": 3655, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719183f.jpg"} -{"rects": [{"solidity": 0.9979577271584876, "top": 1045, "right": 3570, "bottom": 5065, "left": 310}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718643f.jpg"} -{"rects": [{"solidity": 0.9979577611191959, "top": 680, "right": 4710, "bottom": 3365, "left": 1250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708961f.jpg"} -{"rects": [{"solidity": 0.997958350734652, "top": 555, "right": 5060, "bottom": 3805, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722888f.jpg"} -{"rects": [{"solidity": 0.9979583582867321, "top": 380, "right": 5090, "bottom": 3585, "left": 1055}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708269f.jpg"} -{"rects": [{"solidity": 0.9979590316573557, "top": 730, "right": 2665, "bottom": 2140, "left": 865}, {"solidity": 0.9978698819392112, "top": 720, "right": 5230, "bottom": 2115, "left": 3430}, {"solidity": 0.9957060238497364, "top": 2185, "right": 2660, "bottom": 3560, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726292f.jpg"} -{"rects": [{"solidity": 0.997959266008163, "top": 955, "right": 3930, "bottom": 3305, "left": 2335}, {"solidity": 0.9985432663508141, "top": 955, "right": 5765, "bottom": 3325, "left": 4205}, {"solidity": 0.9933734398850678, "top": 960, "right": 1975, "bottom": 3285, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711599f.jpg"} -{"rects": [{"solidity": 0.9979592690706949, "top": 2325, "right": 3230, "bottom": 3945, "left": 815}, {"solidity": 0.9965693963041135, "top": 425, "right": 3250, "bottom": 2040, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702189f.jpg"} -{"rects": [{"solidity": 0.9979593322007995, "top": 1045, "right": 3545, "bottom": 5115, "left": 315}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708555f.jpg"} -{"rects": [{"solidity": 0.9979593944354771, "top": 1010, "right": 3515, "bottom": 5040, "left": 250}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716944f.jpg"} -{"rects": [{"solidity": 0.997959679378188, "top": 370, "right": 3175, "bottom": 1980, "left": 760}, {"solidity": 0.9958903663146917, "top": 2250, "right": 3175, "bottom": 3850, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710454f.jpg"} -{"rects": [{"solidity": 0.9979600065415132, "top": 405, "right": 3170, "bottom": 3835, "left": 570}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708181f.jpg"} -{"rects": [{"solidity": 0.9979600241965584, "top": 435, "right": 3120, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709302f.jpg"} -{"rects": [{"solidity": 0.9979601413002464, "top": 650, "right": 4730, "bottom": 3300, "left": 1320}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708221f.jpg"} -{"rects": [{"solidity": 0.9979601619968592, "top": 480, "right": 4950, "bottom": 3500, "left": 1175}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730019f.jpg"} -{"rects": [{"solidity": 0.9979601704390922, "top": 2070, "right": 5170, "bottom": 3465, "left": 3375}, {"solidity": 0.9963426204588812, "top": 2090, "right": 2675, "bottom": 3480, "left": 890}, {"solidity": 0.9970314979636486, "top": 600, "right": 2670, "bottom": 1985, "left": 895}, {"solidity": 0.9950772299509002, "top": 635, "right": 5185, "bottom": 1735, "left": 3385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704228f.jpg"} -{"rects": [{"solidity": 0.9979602763825501, "top": 770, "right": 2085, "bottom": 3200, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724133f.jpg"} -{"rects": [{"solidity": 0.9979604028156107, "top": 435, "right": 5120, "bottom": 3645, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715587f.jpg"} -{"rects": [{"solidity": 0.9979604408860178, "top": 445, "right": 4995, "bottom": 3645, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724675f.jpg"} -{"rects": [{"solidity": 0.9979607393460033, "top": 440, "right": 3125, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700658f.jpg"} -{"rects": [{"solidity": 0.9979613161334028, "top": 790, "right": 2035, "bottom": 3215, "left": 410}, {"solidity": 0.9967822130194154, "top": 735, "right": 4705, "bottom": 2375, "left": 2280}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705013f.jpg"} -{"rects": [{"solidity": 0.9979614203595952, "top": 375, "right": 3510, "bottom": 2000, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705356f.jpg"} -{"rects": [{"solidity": 0.9979614440039166, "top": 910, "right": 3880, "bottom": 3320, "left": 2250}, {"solidity": 0.998097721818643, "top": 905, "right": 2040, "bottom": 3310, "left": 430}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701563f.jpg"} -{"rects": [{"solidity": 0.9979615395855861, "top": 1160, "right": 3360, "bottom": 5030, "left": 230}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709064f.jpg"} -{"rects": [{"solidity": 0.9979616560583043, "top": 750, "right": 2035, "bottom": 3170, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704652f.jpg"} -{"rects": [{"solidity": 0.9979620174234561, "top": 555, "right": 2805, "bottom": 3640, "left": 755}, {"solidity": 0.9964144092660864, "top": 850, "right": 4320, "bottom": 3275, "left": 2820}, {"solidity": 0.9955947926718587, "top": 865, "right": 5825, "bottom": 3275, "left": 4365}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722403f.jpg"} -{"rects": [{"solidity": 0.9979621803710303, "top": 380, "right": 3235, "bottom": 2005, "left": 810}, {"solidity": 0.9962284534421755, "top": 2235, "right": 3240, "bottom": 3870, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727576f.jpg"} -{"rects": [{"solidity": 0.9979623615932437, "top": 530, "right": 5170, "bottom": 3780, "left": 1135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710636f.jpg"} -{"rects": [{"solidity": 0.9979624826859235, "top": 405, "right": 3170, "bottom": 2020, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701639f.jpg"} -{"rects": [{"solidity": 0.9979625285518773, "top": 745, "right": 3190, "bottom": 2695, "left": 470}, {"solidity": 0.9943773711714257, "top": 3240, "right": 3180, "bottom": 5155, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722802f.jpg"} -{"rects": [{"solidity": 0.9979626120621777, "top": 750, "right": 2805, "bottom": 3525, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706307f.jpg"} -{"rects": [{"solidity": 0.9979626585829159, "top": 745, "right": 2055, "bottom": 3145, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712239f.jpg"} -{"rects": [{"solidity": 0.997962740706199, "top": 375, "right": 5215, "bottom": 3605, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732710f.jpg"} -{"rects": [{"solidity": 0.9979627758401513, "top": 615, "right": 2460, "bottom": 3675, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713307f.jpg"} -{"rects": [{"solidity": 0.9979629529034711, "top": 1025, "right": 3455, "bottom": 5035, "left": 220}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710127f.jpg"} -{"rects": [{"solidity": 0.9979630512975879, "top": 800, "right": 3800, "bottom": 3205, "left": 2175}, {"solidity": 0.9985971582621807, "top": 820, "right": 1920, "bottom": 3190, "left": 300}, {"solidity": 0.9965129514247554, "top": 825, "right": 5680, "bottom": 3190, "left": 4060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712406f.jpg"} -{"rects": [{"solidity": 0.9979631509530246, "top": 545, "right": 4910, "bottom": 3570, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712900f.jpg"} -{"rects": [{"solidity": 0.997963161635403, "top": 960, "right": 3525, "bottom": 4985, "left": 285}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721544f.jpg"} -{"rects": [{"solidity": 0.9979635821681747, "top": 800, "right": 1970, "bottom": 3210, "left": 345}, {"solidity": 0.9981399001081304, "top": 795, "right": 3815, "bottom": 3210, "left": 2195}, {"solidity": 0.9960009639370314, "top": 805, "right": 5680, "bottom": 3200, "left": 4060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718757f.jpg"} -{"rects": [{"solidity": 0.9979635927599003, "top": 345, "right": 3945, "bottom": 2765, "left": 925}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517275.jpg"} -{"rects": [{"solidity": 0.9979636935064085, "top": 430, "right": 3210, "bottom": 2030, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724854f.jpg"} -{"rects": [{"solidity": 0.9979637975907379, "top": 580, "right": 2600, "bottom": 2005, "left": 790}, {"solidity": 0.9947409798282151, "top": 2040, "right": 2595, "bottom": 3470, "left": 780}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706909f.jpg"} -{"rects": [{"solidity": 0.9979639773103838, "top": 400, "right": 5145, "bottom": 3635, "left": 1140}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722424f.jpg"} -{"rects": [{"solidity": 0.997964004103954, "top": 880, "right": 2015, "bottom": 3310, "left": 395}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728822f.jpg"} -{"rects": [{"solidity": 0.9979641697798189, "top": 475, "right": 5120, "bottom": 3690, "left": 1125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732249f.jpg"} -{"rects": [{"solidity": 0.9979642703089898, "top": 1145, "right": 3535, "bottom": 5165, "left": 305}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/717013f.jpg"} -{"rects": [{"solidity": 0.9979643136494608, "top": 420, "right": 3080, "bottom": 1990, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729870f.jpg"} -{"rects": [{"solidity": 0.9979645845346613, "top": 505, "right": 5125, "bottom": 3775, "left": 1095}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712391f.jpg"} -{"rects": [{"solidity": 0.997964635302144, "top": 420, "right": 5060, "bottom": 3705, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713843f.jpg"} -{"rects": [{"solidity": 0.9979647984311854, "top": 755, "right": 1995, "bottom": 3180, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706233f.jpg"} -{"rects": [{"solidity": 0.997965570004717, "top": 420, "right": 5745, "bottom": 3650, "left": 3710}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726066f.jpg"} -{"rects": [{"solidity": 0.9979656429165157, "top": 470, "right": 5050, "bottom": 3535, "left": 1180}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728049f.jpg"} -{"rects": [{"solidity": 0.9979656936115698, "top": 835, "right": 3935, "bottom": 3250, "left": 2315}, {"solidity": 0.9975879851916517, "top": 830, "right": 2040, "bottom": 3250, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702960f.jpg"} -{"rects": [{"solidity": 0.99796590810653, "top": 435, "right": 3180, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701823f.jpg"} -{"rects": [{"solidity": 0.997966014174929, "top": 925, "right": 2325, "bottom": 3370, "left": 690}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714223f.jpg"} -{"rects": [{"solidity": 0.9979660268971019, "top": 445, "right": 5260, "bottom": 3695, "left": 1160}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732698f.jpg"} -{"rects": [{"solidity": 0.9979662746028072, "top": 1020, "right": 3570, "bottom": 5125, "left": 305}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711176f.jpg"} -{"rects": [{"solidity": 0.9979664062105973, "top": 390, "right": 5095, "bottom": 3670, "left": 1060}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711958f.jpg"} -{"rects": [{"solidity": 0.9979664381729526, "top": 420, "right": 3215, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704325f.jpg"} -{"rects": [{"solidity": 0.9979664743061281, "top": 750, "right": 3840, "bottom": 3155, "left": 2220}, {"solidity": 0.9985639729002561, "top": 750, "right": 2000, "bottom": 3160, "left": 390}, {"solidity": 0.9984490340819853, "top": 755, "right": 5690, "bottom": 3160, "left": 4090}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716782f.jpg"} -{"rects": [{"solidity": 0.9979665187598612, "top": 430, "right": 5115, "bottom": 3720, "left": 1090}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732754f.jpg"} -{"rects": [{"solidity": 0.9979667792404714, "top": 370, "right": 5110, "bottom": 3645, "left": 1075}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728194f.jpg"} -{"rects": [{"solidity": 0.9979671414354004, "top": 835, "right": 1945, "bottom": 3220, "left": 325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723800f.jpg"} -{"rects": [{"solidity": 0.9979675195242297, "top": 820, "right": 3810, "bottom": 3200, "left": 2190}, {"solidity": 0.9991137917807494, "top": 830, "right": 1925, "bottom": 3185, "left": 310}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707542f.jpg"} -{"rects": [{"solidity": 0.99796753291481, "top": 1120, "right": 3565, "bottom": 5145, "left": 340}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/716947f.jpg"} -{"rects": [{"solidity": 0.9979676003827246, "top": 470, "right": 5105, "bottom": 3765, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719510f.jpg"} -{"rects": [{"solidity": 0.9979679044657872, "top": 2265, "right": 3145, "bottom": 3880, "left": 720}, {"solidity": 0.99738115203509, "top": 395, "right": 3140, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729191f.jpg"} -{"rects": [{"solidity": 0.9979679818971571, "top": 710, "right": 2020, "bottom": 3115, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715279f.jpg"} -{"rects": [{"solidity": 0.9979683867115782, "top": 640, "right": 3430, "bottom": 2685, "left": 410}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710898f.jpg"} -{"rects": [{"solidity": 0.9979688732235688, "top": 955, "right": 2015, "bottom": 3380, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717523f.jpg"} -{"rects": [{"solidity": 0.9979692453700849, "top": 420, "right": 5130, "bottom": 3740, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718413f.jpg"} -{"rects": [{"solidity": 0.9979694666395929, "top": 610, "right": 2810, "bottom": 3640, "left": 830}, {"solidity": 0.9992108707367773, "top": 860, "right": 4450, "bottom": 3280, "left": 2830}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720763f.jpg"} -{"rects": [{"solidity": 0.9979695017276496, "top": 2420, "right": 3220, "bottom": 4055, "left": 765}, {"solidity": 0.9951157605683478, "top": 435, "right": 3200, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/700051f.jpg"} -{"rects": [{"solidity": 0.9979696264317722, "top": 1040, "right": 3415, "bottom": 4995, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731398f.jpg"} -{"rects": [{"solidity": 0.9979696972941301, "top": 1430, "right": 3570, "bottom": 5450, "left": 325}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723087f.jpg"} -{"rects": [{"solidity": 0.9979700281174099, "top": 485, "right": 5090, "bottom": 3790, "left": 1030}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705321f.jpg"} -{"rects": [{"solidity": 0.9979700376803463, "top": 465, "right": 5105, "bottom": 3740, "left": 1050}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723214f.jpg"} -{"rects": [{"solidity": 0.9979700640210578, "top": 2275, "right": 3160, "bottom": 3900, "left": 730}, {"solidity": 0.9965750798722045, "top": 410, "right": 3165, "bottom": 2035, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733943f.jpg"} -{"rects": [{"solidity": 0.9979701063689916, "top": 790, "right": 2040, "bottom": 3220, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723201f.jpg"} -{"rects": [{"solidity": 0.9979701356203139, "top": 755, "right": 3110, "bottom": 4910, "left": 1200}], "shape": {"h": 6140, "w": 4295}, "file": "/usr/local/google/home/danvk/milstein/713373f.jpg"} -{"rects": [{"solidity": 0.9979703005810756, "top": 440, "right": 5160, "bottom": 3670, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732692f.jpg"} -{"rects": [{"solidity": 0.9979703691016528, "top": 430, "right": 5025, "bottom": 3710, "left": 970}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716814f.jpg"} -{"rects": [{"solidity": 0.9979704622182423, "top": 795, "right": 2100, "bottom": 3195, "left": 495}, {"solidity": 0.9967584718042654, "top": 800, "right": 3885, "bottom": 3205, "left": 2280}, {"solidity": 0.9950170735620066, "top": 800, "right": 5665, "bottom": 3205, "left": 4055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716560f.jpg"} -{"rects": [{"solidity": 0.9979711372561266, "top": 400, "right": 5050, "bottom": 3610, "left": 1025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725732f.jpg"} -{"rects": [{"solidity": 0.9979711594060181, "top": 1110, "right": 3380, "bottom": 5125, "left": 880}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716915f.jpg"} -{"rects": [{"solidity": 0.9979711878287842, "top": 675, "right": 4695, "bottom": 3320, "left": 1245}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701500f.jpg"} -{"rects": [{"solidity": 0.9979712848954972, "top": 765, "right": 2005, "bottom": 3190, "left": 380}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715104f.jpg"} -{"rects": [{"solidity": 0.9979712903939157, "top": 2315, "right": 3175, "bottom": 3935, "left": 750}, {"solidity": 0.9959641845439176, "top": 405, "right": 3175, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704859f.jpg"} -{"rects": [{"solidity": 0.997971737851886, "top": 865, "right": 3830, "bottom": 3290, "left": 2195}, {"solidity": 0.9965538199140205, "top": 845, "right": 2010, "bottom": 3280, "left": 365}, {"solidity": 0.9967801905053951, "top": 870, "right": 5680, "bottom": 3305, "left": 4055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704536f.jpg"} -{"rects": [{"solidity": 0.9979718339251535, "top": 2175, "right": 3110, "bottom": 3800, "left": 735}, {"solidity": 0.9966359413795588, "top": 320, "right": 3115, "bottom": 1935, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718756f.jpg"} -{"rects": [{"solidity": 0.9979718620472379, "top": 465, "right": 3175, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711449f.jpg"} -{"rects": [{"solidity": 0.9979718870019048, "top": 465, "right": 5090, "bottom": 3760, "left": 1035}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730283f.jpg"} -{"rects": [{"solidity": 0.9979719650163965, "top": 500, "right": 3180, "bottom": 2110, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710579f.jpg"} -{"rects": [{"solidity": 0.9979721248942112, "top": 525, "right": 3960, "bottom": 2600, "left": 2475}, {"solidity": 0.9947646544753629, "top": 510, "right": 2190, "bottom": 2590, "left": 705}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716259f.jpg"} -{"rects": [{"solidity": 0.9979721919266462, "top": 820, "right": 3985, "bottom": 3220, "left": 2380}, {"solidity": 0.9972899286565556, "top": 800, "right": 2130, "bottom": 3205, "left": 525}, {"solidity": 0.9993057852322181, "top": 835, "right": 5820, "bottom": 3235, "left": 4220}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731634f.jpg"} -{"rects": [{"solidity": 0.9979722326855823, "top": 380, "right": 5205, "bottom": 3615, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732671f.jpg"} -{"rects": [{"solidity": 0.9979726348402788, "top": 315, "right": 3985, "bottom": 2755, "left": 955}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517197.jpg"} -{"rects": [{"solidity": 0.9979727381549987, "top": 450, "right": 3310, "bottom": 2070, "left": 895}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705371f.jpg"} -{"rects": [{"solidity": 0.9979728261398393, "top": 2250, "right": 3160, "bottom": 3855, "left": 745}, {"solidity": 0.9954338195290033, "top": 435, "right": 3160, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732827f.jpg"} -{"rects": [{"solidity": 0.9979730368275094, "top": 795, "right": 2040, "bottom": 3210, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720019f.jpg"} -{"rects": [{"solidity": 0.9979731516023852, "top": 875, "right": 2240, "bottom": 3275, "left": 635}, {"solidity": 0.9966408737687878, "top": 875, "right": 3890, "bottom": 3270, "left": 2295}, {"solidity": 0.996318658535352, "top": 885, "right": 5515, "bottom": 3270, "left": 3950}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709113f.jpg"} -{"rects": [{"solidity": 0.9979733096498861, "top": 460, "right": 3560, "bottom": 2265, "left": 860}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711623f.jpg"} -{"rects": [{"solidity": 0.9979734919982045, "top": 410, "right": 5155, "bottom": 3670, "left": 1030}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732709f.jpg"} -{"rects": [{"solidity": 0.9979735661696291, "top": 1100, "right": 3360, "bottom": 5060, "left": 580}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733825f.jpg"} -{"rects": [{"solidity": 0.9979737292387655, "top": 2240, "right": 3085, "bottom": 3865, "left": 670}, {"solidity": 0.9985648113729001, "top": 380, "right": 3085, "bottom": 1995, "left": 670}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729955f.jpg"} -{"rects": [{"solidity": 0.9979738056942327, "top": 365, "right": 5375, "bottom": 3790, "left": 805}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718300f.jpg"} -{"rects": [{"solidity": 0.997974064105701, "top": 500, "right": 3035, "bottom": 1915, "left": 1215}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727658f.jpg"} -{"rects": [{"solidity": 0.9979741678165955, "top": 1165, "right": 3990, "bottom": 5725, "left": 325}], "shape": {"h": 6920, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711360f.jpg"} -{"rects": [{"solidity": 0.9979742501751464, "top": 825, "right": 2165, "bottom": 3220, "left": 570}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721424f.jpg"} -{"rects": [{"solidity": 0.9979746002102654, "top": 440, "right": 3175, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711052f.jpg"} -{"rects": [{"solidity": 0.9979747791228659, "top": 450, "right": 5035, "bottom": 3725, "left": 980}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705571f.jpg"} -{"rects": [{"solidity": 0.9979750198448055, "top": 2285, "right": 3040, "bottom": 3900, "left": 635}, {"solidity": 0.9980094817508768, "top": 430, "right": 3045, "bottom": 2045, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730994f.jpg"} -{"rects": [{"solidity": 0.9979751545996826, "top": 380, "right": 3125, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700993f.jpg"} -{"rects": [{"solidity": 0.9979754247206836, "top": 810, "right": 2050, "bottom": 3225, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734447f.jpg"} -{"rects": [{"solidity": 0.9979756162839034, "top": 420, "right": 5040, "bottom": 3685, "left": 960}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716951f.jpg"} -{"rects": [{"solidity": 0.9979761900773002, "top": 665, "right": 2005, "bottom": 3055, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726011f.jpg"} -{"rects": [{"solidity": 0.9979761966837001, "top": 810, "right": 3895, "bottom": 3210, "left": 2285}, {"solidity": 0.99809944490684, "top": 810, "right": 2105, "bottom": 3205, "left": 500}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709339f.jpg"} -{"rects": [{"solidity": 0.997976616980307, "top": 360, "right": 5230, "bottom": 3635, "left": 1195}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734521f.jpg"} -{"rects": [{"solidity": 0.9979766196875341, "top": 390, "right": 3545, "bottom": 2505, "left": 815}], "shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509055.jpg"} -{"rects": [{"solidity": 0.9979770805907766, "top": 1055, "right": 3550, "bottom": 5070, "left": 280}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709623f.jpg"} -{"rects": [{"solidity": 0.99797732154186, "top": 540, "right": 5100, "bottom": 3760, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703196f.jpg"} -{"rects": [{"solidity": 0.9979773896062972, "top": 440, "right": 3140, "bottom": 3750, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714573f.jpg"} -{"rects": [{"solidity": 0.9979775432900433, "top": 340, "right": 3150, "bottom": 1905, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724728f.jpg"} -{"rects": [{"solidity": 0.9979776680883692, "top": 865, "right": 3845, "bottom": 3290, "left": 2220}, {"solidity": 0.9969734360060983, "top": 870, "right": 2015, "bottom": 3280, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712307f.jpg"} -{"rects": [{"solidity": 0.9979778046969637, "top": 745, "right": 3840, "bottom": 3145, "left": 2230}, {"solidity": 0.9957170014429353, "top": 755, "right": 1995, "bottom": 3155, "left": 390}, {"solidity": 0.9968449593295539, "top": 755, "right": 5695, "bottom": 3155, "left": 4100}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730179f.jpg"} -{"rects": [{"solidity": 0.997977817268215, "top": 835, "right": 2275, "bottom": 3555, "left": 465}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/711347f.jpg"} -{"rects": [{"solidity": 0.9979778687184944, "top": 820, "right": 2100, "bottom": 3245, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705676f.jpg"} -{"rects": [{"solidity": 0.9979780347523496, "top": 300, "right": 5010, "bottom": 3560, "left": 955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727682f.jpg"} -{"rects": [{"solidity": 0.9979780874035794, "top": 370, "right": 5090, "bottom": 3645, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708238f.jpg"} -{"rects": [{"solidity": 0.9979782753556617, "top": 425, "right": 3030, "bottom": 2040, "left": 620}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700645f.jpg"} -{"rects": [{"solidity": 0.9979785831391487, "top": 565, "right": 2765, "bottom": 3600, "left": 725}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717696f.jpg"} -{"rects": [{"solidity": 0.997978997166697, "top": 840, "right": 3835, "bottom": 3250, "left": 2225}, {"solidity": 0.9985879989695328, "top": 855, "right": 5685, "bottom": 3265, "left": 4085}, {"solidity": 0.9979114480189905, "top": 840, "right": 2005, "bottom": 3240, "left": 405}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701928f.jpg"} -{"rects": [{"solidity": 0.997979009255219, "top": 2270, "right": 3190, "bottom": 3870, "left": 795}, {"solidity": 0.9971394188088145, "top": 415, "right": 3190, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727778f.jpg"} -{"rects": [{"solidity": 0.997979040773973, "top": 1025, "right": 3495, "bottom": 5095, "left": 260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717064f.jpg"} -{"rects": [{"solidity": 0.9979790525292593, "top": 295, "right": 4000, "bottom": 2735, "left": 975}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516901.jpg"} -{"rects": [{"solidity": 0.9979791619144308, "top": 780, "right": 3850, "bottom": 3200, "left": 2230}, {"solidity": 0.9974313574710341, "top": 795, "right": 2065, "bottom": 3210, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718738f.jpg"} -{"rects": [{"solidity": 0.9979792595791193, "top": 980, "right": 2060, "bottom": 3415, "left": 525}], "shape": {"h": 4665, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509637.jpg"} -{"rects": [{"solidity": 0.9979792776908295, "top": 415, "right": 3035, "bottom": 2010, "left": 645}, {"solidity": 0.9970294633473572, "top": 2295, "right": 3050, "bottom": 3880, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734350f.jpg"} -{"rects": [{"solidity": 0.99797945041816, "top": 390, "right": 5010, "bottom": 3680, "left": 995}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726126f.jpg"} -{"rects": [{"solidity": 0.9979795567289476, "top": 730, "right": 3895, "bottom": 3145, "left": 2280}, {"solidity": 0.9956645904944047, "top": 725, "right": 5750, "bottom": 3140, "left": 4135}, {"solidity": 0.9958451980326172, "top": 735, "right": 2025, "bottom": 3150, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731156f.jpg"} -{"rects": [{"solidity": 0.9979796958960845, "top": 400, "right": 5130, "bottom": 3635, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732598f.jpg"} -{"rects": [{"solidity": 0.9979799661300185, "top": 2285, "right": 3205, "bottom": 3905, "left": 780}, {"solidity": 0.9984296573184713, "top": 435, "right": 3210, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724951f.jpg"} -{"rects": [{"solidity": 0.9979799886728337, "top": 635, "right": 2640, "bottom": 2085, "left": 800}, {"solidity": 0.9958596800967194, "top": 2125, "right": 5170, "bottom": 3575, "left": 3340}, {"solidity": 0.9969532362811134, "top": 635, "right": 5165, "bottom": 2070, "left": 3340}, {"solidity": 0.996192967160709, "top": 2140, "right": 2625, "bottom": 3575, "left": 810}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703330f.jpg"} -{"rects": [{"solidity": 0.9979801083344713, "top": 525, "right": 5000, "bottom": 3820, "left": 970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707846f.jpg"} -{"rects": [{"solidity": 0.9979801862789494, "top": 770, "right": 2050, "bottom": 3185, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713049f.jpg"} -{"rects": [{"solidity": 0.9979802700228539, "top": 2270, "right": 3180, "bottom": 3895, "left": 760}, {"solidity": 0.9973851747134802, "top": 430, "right": 3185, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701934f.jpg"} -{"rects": [{"solidity": 0.9979804797623436, "top": 500, "right": 4970, "bottom": 3565, "left": 1150}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713827f.jpg"} -{"rects": [{"solidity": 0.9979806613252603, "top": 760, "right": 3890, "bottom": 3165, "left": 2285}, {"solidity": 0.998093316122945, "top": 755, "right": 2030, "bottom": 3155, "left": 430}, {"solidity": 0.9979798046051273, "top": 775, "right": 5740, "bottom": 3175, "left": 4140}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721924f.jpg"} -{"rects": [{"solidity": 0.9979808072410338, "top": 910, "right": 3535, "bottom": 5010, "left": 300}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714746f.jpg"} -{"rects": [{"solidity": 0.9979808271199, "top": 475, "right": 5045, "bottom": 3720, "left": 1265}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717153f.jpg"} -{"rects": [{"solidity": 0.9979809145307064, "top": 3285, "right": 3205, "bottom": 4910, "left": 780}, {"solidity": 0.9971347724149082, "top": 1535, "right": 3205, "bottom": 3145, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730958f.jpg"} -{"rects": [{"solidity": 0.9979811830305424, "top": 515, "right": 5075, "bottom": 3750, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706551f.jpg"} -{"rects": [{"solidity": 0.9979812108478721, "top": 360, "right": 5225, "bottom": 3600, "left": 1200}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723840f.jpg"} -{"rects": [{"solidity": 0.9979812177919843, "top": 380, "right": 5055, "bottom": 3620, "left": 985}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722074f.jpg"} -{"rects": [{"solidity": 0.9979814954318055, "top": 2215, "right": 3250, "bottom": 3835, "left": 830}, {"solidity": 0.9959010313534014, "top": 4065, "right": 3235, "bottom": 5695, "left": 800}, {"solidity": 0.9979813951378516, "top": 405, "right": 3245, "bottom": 2005, "left": 815}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/712763f.jpg"} -{"rects": [{"solidity": 0.9979816910545665, "top": 405, "right": 3205, "bottom": 2005, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711938f.jpg"} -{"rects": [{"solidity": 0.997981699885866, "top": 4070, "right": 3065, "bottom": 5690, "left": 655}, {"solidity": 0.9958700183304179, "top": 370, "right": 3085, "bottom": 1995, "left": 665}, {"solidity": 0.9958476048244403, "top": 2250, "right": 3085, "bottom": 3870, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723490f.jpg"} -{"rects": [{"solidity": 0.9979817121051846, "top": 790, "right": 2105, "bottom": 3200, "left": 495}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700720f.jpg"} -{"rects": [{"solidity": 0.9979818267535504, "top": 765, "right": 2035, "bottom": 3180, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700735f.jpg"} -{"rects": [{"solidity": 0.997981843076943, "top": 460, "right": 3155, "bottom": 2075, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707611f.jpg"} -{"rects": [{"solidity": 0.9979818528205625, "top": 2250, "right": 3185, "bottom": 3865, "left": 770}, {"solidity": 0.9960694007531764, "top": 425, "right": 3180, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724306f.jpg"} -{"rects": [{"solidity": 0.9979821052192576, "top": 2240, "right": 3040, "bottom": 3860, "left": 615}, {"solidity": 0.9955576997173377, "top": 4120, "right": 3045, "bottom": 5730, "left": 625}, {"solidity": 0.9951555254553645, "top": 385, "right": 3045, "bottom": 2020, "left": 620}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734380f.jpg"} -{"rects": [{"solidity": 0.9979825219489447, "top": 455, "right": 5065, "bottom": 3565, "left": 1080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711469f.jpg"} -{"rects": [{"solidity": 0.9979831544530529, "top": 435, "right": 5130, "bottom": 3645, "left": 1150}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718965f.jpg"} -{"rects": [{"solidity": 0.9979831767425845, "top": 755, "right": 1985, "bottom": 3160, "left": 390}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724725f.jpg"} -{"rects": [{"solidity": 0.9979832732224948, "top": 800, "right": 2065, "bottom": 3200, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719890f.jpg"} -{"rects": [{"solidity": 0.9979834663262657, "top": 435, "right": 5060, "bottom": 3670, "left": 975}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715139f.jpg"} -{"rects": [{"solidity": 0.9979835139973638, "top": 425, "right": 3195, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720589f.jpg"} -{"rects": [{"solidity": 0.9979836394032594, "top": 460, "right": 3380, "bottom": 2085, "left": 950}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704014f.jpg"} -{"rects": [{"solidity": 0.9979838381337963, "top": 840, "right": 2050, "bottom": 3245, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729221f.jpg"} -{"rects": [{"solidity": 0.9979838709677419, "top": 790, "right": 1955, "bottom": 3195, "left": 330}, {"solidity": 0.9986567623116636, "top": 810, "right": 3835, "bottom": 3195, "left": 2205}, {"solidity": 0.9915909439623575, "top": 890, "right": 5460, "bottom": 3120, "left": 4135}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723578f.jpg"} -{"rects": [{"solidity": 0.9979839756908373, "top": 745, "right": 2055, "bottom": 3155, "left": 445}, {"solidity": 0.9968321811007597, "top": 750, "right": 3845, "bottom": 3150, "left": 2245}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716732f.jpg"} -{"rects": [{"solidity": 0.9979840673518228, "top": 635, "right": 5265, "bottom": 3590, "left": 790}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718280f.jpg"} -{"rects": [{"solidity": 0.9979840734912065, "top": 410, "right": 5055, "bottom": 3630, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713206f.jpg"} -{"rects": [{"solidity": 0.9979842159039535, "top": 400, "right": 5225, "bottom": 3690, "left": 1195}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701207f.jpg"} -{"rects": [{"solidity": 0.9979843042756196, "top": 790, "right": 2110, "bottom": 3190, "left": 500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710565f.jpg"} -{"rects": [{"solidity": 0.9979844930044133, "top": 770, "right": 2020, "bottom": 3145, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724420f.jpg"} -{"rects": [{"solidity": 0.9979846436875591, "top": 340, "right": 3215, "bottom": 1960, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706228f.jpg"} -{"rects": [{"solidity": 0.9979848891689043, "top": 645, "right": 2690, "bottom": 2040, "left": 880}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702672f.jpg"} -{"rects": [{"solidity": 0.9979849333048052, "top": 810, "right": 3840, "bottom": 3235, "left": 2215}, {"solidity": 0.9964867381691966, "top": 825, "right": 1935, "bottom": 3235, "left": 330}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719077f.jpg"} -{"rects": [{"solidity": 0.9979850877022213, "top": 415, "right": 3220, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726495f.jpg"} -{"rects": [{"solidity": 0.9979852402600989, "top": 785, "right": 3845, "bottom": 3190, "left": 2235}, {"solidity": 0.9963412053840269, "top": 785, "right": 2020, "bottom": 3190, "left": 410}, {"solidity": 0.996539307078601, "top": 785, "right": 5665, "bottom": 3190, "left": 4060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732377f.jpg"} -{"rects": [{"solidity": 0.9979853915152513, "top": 430, "right": 5120, "bottom": 3730, "left": 1055}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714227f.jpg"} -{"rects": [{"solidity": 0.9979855375262792, "top": 725, "right": 2095, "bottom": 3135, "left": 490}, {"solidity": 0.9982128168451097, "top": 730, "right": 3875, "bottom": 3125, "left": 2285}, {"solidity": 0.9944079901090075, "top": 730, "right": 5685, "bottom": 3120, "left": 4100}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722224f.jpg"} -{"rects": [{"solidity": 0.9979856034033442, "top": 540, "right": 2765, "bottom": 3580, "left": 705}, {"solidity": 0.9991223180532893, "top": 550, "right": 5290, "bottom": 3580, "left": 3245}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719629f.jpg"} -{"rects": [{"solidity": 0.9979856465150225, "top": 490, "right": 5030, "bottom": 3715, "left": 1025}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709574f.jpg"} -{"rects": [{"solidity": 0.9979857473217235, "top": 380, "right": 5225, "bottom": 3640, "left": 1125}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732651f.jpg"} -{"rects": [{"solidity": 0.9979857916655326, "top": 2140, "right": 3015, "bottom": 3760, "left": 1015}, {"solidity": 0.9961546826743225, "top": 455, "right": 3000, "bottom": 1920, "left": 1020}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731761f.jpg"} -{"rects": [{"solidity": 0.9979858272262522, "top": 420, "right": 5170, "bottom": 3710, "left": 1055}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/721168f.jpg"} -{"rects": [{"solidity": 0.9979860906445526, "top": 940, "right": 2655, "bottom": 3955, "left": 185}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508531.jpg"} -{"rects": [{"solidity": 0.9979865923885424, "top": 725, "right": 2015, "bottom": 3140, "left": 405}, {"solidity": 0.998609062170706, "top": 750, "right": 3840, "bottom": 3160, "left": 2230}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732478f.jpg"} -{"rects": [{"solidity": 0.997986702874801, "top": 425, "right": 3095, "bottom": 2000, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729163f.jpg"} -{"rects": [{"solidity": 0.9979867542765183, "top": 815, "right": 2055, "bottom": 3220, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718053f.jpg"} -{"rects": [{"solidity": 0.9979868216499607, "top": 750, "right": 2040, "bottom": 3160, "left": 435}, {"solidity": 0.9959022924397295, "top": 750, "right": 3930, "bottom": 3160, "left": 2320}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721668f.jpg"} -{"rects": [{"solidity": 0.9979868462150306, "top": 1075, "right": 3005, "bottom": 4965, "left": 435}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723943f.jpg"} -{"rects": [{"solidity": 0.997986882681421, "top": 805, "right": 2055, "bottom": 3230, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721212f.jpg"} -{"rects": [{"solidity": 0.9979869565361108, "top": 745, "right": 1995, "bottom": 3120, "left": 390}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713344f.jpg"} -{"rects": [{"solidity": 0.9979871360109163, "top": 1025, "right": 3640, "bottom": 5115, "left": 280}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/704784f.jpg"} -{"rects": [{"solidity": 0.9979871621854105, "top": 515, "right": 5075, "bottom": 3780, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707581f.jpg"} -{"rects": [{"solidity": 0.9979872385106211, "top": 395, "right": 3130, "bottom": 2010, "left": 715}, {"solidity": 0.9962226473135235, "top": 2250, "right": 3120, "bottom": 3875, "left": 700}, {"solidity": 0.9962559464856878, "top": 4120, "right": 3095, "bottom": 5730, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728655f.jpg"} -{"rects": [{"solidity": 0.9979874917479628, "top": 1110, "right": 3630, "bottom": 5165, "left": 340}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722092f.jpg"} -{"rects": [{"solidity": 0.9979875765964525, "top": 2360, "right": 3135, "bottom": 3980, "left": 730}, {"solidity": 0.9967827477284249, "top": 435, "right": 3120, "bottom": 2050, "left": 720}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707705f.jpg"} -{"rects": [{"solidity": 0.9979875772373525, "top": 655, "right": 2515, "bottom": 2145, "left": 425}, {"solidity": 0.9966755237982853, "top": 2520, "right": 2525, "bottom": 4005, "left": 435}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716058f.jpg"} -{"rects": [{"solidity": 0.997987875326159, "top": 430, "right": 2805, "bottom": 2040, "left": 395}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710895f.jpg"} -{"rects": [{"solidity": 0.9979878951926217, "top": 465, "right": 5050, "bottom": 3750, "left": 1000}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730664f.jpg"} -{"rects": [{"solidity": 0.9979883850287193, "top": 465, "right": 5135, "bottom": 3755, "left": 1045}], "shape": {"h": 4030, "w": 6240}, "file": "/usr/local/google/home/danvk/milstein/701562f.jpg"} -{"rects": [{"solidity": 0.9979883884545898, "top": 750, "right": 2635, "bottom": 3765, "left": 215}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508115.jpg"} -{"rects": [{"solidity": 0.9979884095637507, "top": 820, "right": 1940, "bottom": 3215, "left": 335}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712309f.jpg"} -{"rects": [{"solidity": 0.9979884142334811, "top": 440, "right": 2940, "bottom": 3505, "left": 900}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714664f.jpg"} -{"rects": [{"solidity": 0.9979884508518112, "top": 330, "right": 5115, "bottom": 3570, "left": 1010}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729084f.jpg"} -{"rects": [{"solidity": 0.9979889097971802, "top": 600, "right": 5015, "bottom": 3705, "left": 1135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726426f.jpg"} -{"rects": [{"solidity": 0.9979889230136599, "top": 805, "right": 3885, "bottom": 3230, "left": 2270}, {"solidity": 0.9981141762922252, "top": 800, "right": 2070, "bottom": 3220, "left": 460}, {"solidity": 0.9982846842656122, "top": 805, "right": 5710, "bottom": 3230, "left": 4105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723032f.jpg"} -{"rects": [{"solidity": 0.9979890766644413, "top": 565, "right": 5000, "bottom": 3735, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726243f.jpg"} -{"rects": [{"solidity": 0.9979892324538534, "top": 770, "right": 2030, "bottom": 3175, "left": 425}, {"solidity": 0.9972179691826563, "top": 770, "right": 3885, "bottom": 3180, "left": 2280}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724269f.jpg"} -{"rects": [{"solidity": 0.997989235169403, "top": 410, "right": 3335, "bottom": 2030, "left": 920}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703933f.jpg"} -{"rects": [{"solidity": 0.997989313768871, "top": 500, "right": 5125, "bottom": 3780, "left": 1090}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708061f.jpg"} -{"rects": [{"solidity": 0.9979896843630981, "top": 955, "right": 3505, "bottom": 5045, "left": 310}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715437f.jpg"} -{"rects": [{"solidity": 0.9979897961837554, "top": 575, "right": 4950, "bottom": 3615, "left": 1135}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709108f.jpg"} -{"rects": [{"solidity": 0.9979899377667565, "top": 895, "right": 5275, "bottom": 3580, "left": 1335}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718373f.jpg"} -{"rects": [{"solidity": 0.9979900010588894, "top": 520, "right": 5165, "bottom": 3765, "left": 1055}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728840f.jpg"} -{"rects": [{"solidity": 0.9979900543340537, "top": 380, "right": 5145, "bottom": 3600, "left": 1095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724534f.jpg"} -{"rects": [{"solidity": 0.9979902215071229, "top": 950, "right": 3525, "bottom": 5025, "left": 310}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709978f.jpg"} -{"rects": [{"solidity": 0.9979904546596332, "top": 665, "right": 2715, "bottom": 2075, "left": 935}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725484f.jpg"} -{"rects": [{"solidity": 0.9979904651958676, "top": 325, "right": 5085, "bottom": 3590, "left": 1050}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729871f.jpg"} -{"rects": [{"solidity": 0.9979907370684428, "top": 770, "right": 2070, "bottom": 3170, "left": 470}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721203f.jpg"} -{"rects": [{"solidity": 0.9979909315266344, "top": 460, "right": 5070, "bottom": 3720, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730146f.jpg"} -{"rects": [{"solidity": 0.9979912365738949, "top": 525, "right": 5045, "bottom": 3645, "left": 1185}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733747f.jpg"} -{"rects": [{"solidity": 0.9979913426967219, "top": 500, "right": 5080, "bottom": 3735, "left": 1080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708242f.jpg"} -{"rects": [{"solidity": 0.9979913679674042, "top": 710, "right": 2225, "bottom": 3135, "left": 590}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720253f.jpg"} -{"rects": [{"solidity": 0.9979916424599008, "top": 940, "right": 3620, "bottom": 5030, "left": 345}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/720321f.jpg"} -{"rects": [{"solidity": 0.9979917766634736, "top": 440, "right": 5140, "bottom": 3725, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707910f.jpg"} -{"rects": [{"solidity": 0.9979918375821595, "top": 425, "right": 3235, "bottom": 2030, "left": 820}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702152f.jpg"} -{"rects": [{"solidity": 0.9979918861345165, "top": 505, "right": 2875, "bottom": 2000, "left": 1010}, {"solidity": 0.994878814119575, "top": 515, "right": 4965, "bottom": 1995, "left": 3125}, {"solidity": 0.9963815887303837, "top": 2225, "right": 4970, "bottom": 3615, "left": 3130}, {"solidity": 0.994531534815895, "top": 2255, "right": 2860, "bottom": 3615, "left": 1010}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715490f.jpg"} -{"rects": [{"solidity": 0.99799212269576, "top": 850, "right": 2015, "bottom": 3270, "left": 395}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720006f.jpg"} -{"rects": [{"solidity": 0.9979922539863473, "top": 475, "right": 3565, "bottom": 2275, "left": 865}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711343f.jpg"} -{"rects": [{"solidity": 0.9979925187434846, "top": 750, "right": 2030, "bottom": 3165, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710645f.jpg"} -{"rects": [{"solidity": 0.9979925552477473, "top": 615, "right": 2915, "bottom": 2425, "left": 1700}, {"solidity": 0.9947516333589547, "top": 625, "right": 1510, "bottom": 2410, "left": 325}], "shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715811f.jpg"} -{"rects": [{"solidity": 0.9979925593427633, "top": 870, "right": 3890, "bottom": 3290, "left": 2265}, {"solidity": 0.9975867627688452, "top": 855, "right": 2025, "bottom": 3275, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726677f.jpg"} -{"rects": [{"solidity": 0.9979925774326535, "top": 395, "right": 3125, "bottom": 2005, "left": 730}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707722f.jpg"} -{"rects": [{"solidity": 0.9979927519628756, "top": 760, "right": 1940, "bottom": 3175, "left": 325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724032f.jpg"} -{"rects": [{"solidity": 0.9979931292820682, "top": 415, "right": 5110, "bottom": 3635, "left": 1075}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708260f.jpg"} -{"rects": [{"solidity": 0.9979931864666917, "top": 790, "right": 1930, "bottom": 3205, "left": 305}, {"solidity": 0.997155577940716, "top": 800, "right": 3795, "bottom": 3195, "left": 2160}, {"solidity": 0.9964230965763924, "top": 810, "right": 5665, "bottom": 3215, "left": 4040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707287f.jpg"} -{"rects": [{"solidity": 0.9979933332227732, "top": 405, "right": 3155, "bottom": 1985, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728296f.jpg"} -{"rects": [{"solidity": 0.997993369394521, "top": 945, "right": 3910, "bottom": 3365, "left": 2300}, {"solidity": 0.996490034030141, "top": 925, "right": 2065, "bottom": 3340, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729934f.jpg"} -{"rects": [{"solidity": 0.9979934493499036, "top": 460, "right": 5005, "bottom": 3600, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707112f.jpg"} -{"rects": [{"solidity": 0.9979935917152652, "top": 560, "right": 3450, "bottom": 2570, "left": 375}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713740f.jpg"} -{"rects": [{"solidity": 0.9979937528432938, "top": 515, "right": 5085, "bottom": 3730, "left": 960}, {"solidity": 0.9399951191347774, "top": 1025, "right": 955, "bottom": 3835, "left": 130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700171f.jpg"} -{"rects": [{"solidity": 0.9979939197828867, "top": 795, "right": 2030, "bottom": 3190, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721812f.jpg"} -{"rects": [{"solidity": 0.9979939396353938, "top": 990, "right": 3330, "bottom": 4875, "left": 565}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732951f.jpg"} -{"rects": [{"solidity": 0.9979939741395832, "top": 420, "right": 5135, "bottom": 3660, "left": 1140}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700680f.jpg"} -{"rects": [{"solidity": 0.9979941201690451, "top": 620, "right": 2600, "bottom": 2025, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702918f.jpg"} -{"rects": [{"solidity": 0.9979942456270173, "top": 2125, "right": 2725, "bottom": 3535, "left": 890}, {"solidity": 0.9963720069056972, "top": 690, "right": 5235, "bottom": 2095, "left": 3435}, {"solidity": 0.9965904754253119, "top": 2145, "right": 5235, "bottom": 3550, "left": 3445}, {"solidity": 0.9957066674700973, "top": 685, "right": 2710, "bottom": 2090, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726471f.jpg"} -{"rects": [{"solidity": 0.997994513683718, "top": 470, "right": 5080, "bottom": 3765, "left": 1035}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719039f.jpg"} -{"rects": [{"solidity": 0.9979946656971377, "top": 390, "right": 5225, "bottom": 3640, "left": 1120}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732652f.jpg"} -{"rects": [{"solidity": 0.9979948253557568, "top": 710, "right": 2635, "bottom": 2100, "left": 815}, {"solidity": 0.9965144320413694, "top": 2155, "right": 2625, "bottom": 3555, "left": 815}, {"solidity": 0.9966679026326074, "top": 2155, "right": 5315, "bottom": 3550, "left": 3505}, {"solidity": 0.9959523725825972, "top": 710, "right": 5305, "bottom": 2100, "left": 3495}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727977f.jpg"} -{"rects": [{"solidity": 0.9979954627458342, "top": 425, "right": 3210, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/704944f.jpg"} -{"rects": [{"solidity": 0.9979956002404112, "top": 570, "right": 5035, "bottom": 3790, "left": 1020}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700840f.jpg"} -{"rects": [{"solidity": 0.9979958791864805, "top": 1135, "right": 2640, "bottom": 4155, "left": 195}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508331.jpg"} -{"rects": [{"solidity": 0.9979958886719379, "top": 765, "right": 2045, "bottom": 3185, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707772f.jpg"} -{"rects": [{"solidity": 0.9979961964929147, "top": 1030, "right": 3550, "bottom": 5060, "left": 280}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722474f.jpg"} -{"rects": [{"solidity": 0.9979963104280242, "top": 925, "right": 3570, "bottom": 4990, "left": 255}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/711125f.jpg"} -{"rects": [{"solidity": 0.9979965655409273, "top": 770, "right": 2035, "bottom": 3200, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718593f.jpg"} -{"rects": [{"solidity": 0.9979965676764662, "top": 665, "right": 3745, "bottom": 2845, "left": 645}, {"solidity": 0.9978685559746691, "top": 3590, "right": 3695, "bottom": 5775, "left": 610}], "shape": {"h": 6850, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710267f.jpg"} -{"rects": [{"solidity": 0.9979965793686326, "top": 830, "right": 2120, "bottom": 3250, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703872f.jpg"} -{"rects": [{"solidity": 0.9979966296891732, "top": 285, "right": 3635, "bottom": 2935, "left": 210}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717021f.jpg"} -{"rects": [{"solidity": 0.9979967398304829, "top": 375, "right": 5040, "bottom": 3610, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732727f.jpg"} -{"rects": [{"solidity": 0.9979968008891426, "top": 475, "right": 5145, "bottom": 3720, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730286f.jpg"} -{"rects": [{"solidity": 0.9979971831349899, "top": 750, "right": 3820, "bottom": 3165, "left": 2205}, {"solidity": 0.9967235747063856, "top": 755, "right": 1985, "bottom": 3170, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716661f.jpg"} -{"rects": [{"solidity": 0.9979973009187442, "top": 595, "right": 5165, "bottom": 2035, "left": 3340}, {"solidity": 0.9969063371899711, "top": 2105, "right": 2705, "bottom": 3540, "left": 880}, {"solidity": 0.9984236269348629, "top": 600, "right": 2685, "bottom": 2025, "left": 885}, {"solidity": 0.9983235961372443, "top": 2135, "right": 5140, "bottom": 3535, "left": 3345}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731968f.jpg"} -{"rects": [{"solidity": 0.9979974008132939, "top": 815, "right": 2020, "bottom": 3230, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724137f.jpg"} -{"rects": [{"solidity": 0.9979975126999853, "top": 1065, "right": 3520, "bottom": 5020, "left": 345}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717129f.jpg"} -{"rects": [{"solidity": 0.99799796486556, "top": 425, "right": 5185, "bottom": 3715, "left": 1135}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727460f.jpg"} -{"rects": [{"solidity": 0.9979979763562304, "top": 1030, "right": 3395, "bottom": 5085, "left": 525}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716907f.jpg"} -{"rects": [{"solidity": 0.9979980432487238, "top": 390, "right": 3255, "bottom": 2000, "left": 835}, {"solidity": 0.995674291225682, "top": 2215, "right": 3250, "bottom": 3835, "left": 830}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726251f.jpg"} -{"rects": [{"solidity": 0.997998051849198, "top": 1065, "right": 3310, "bottom": 5060, "left": 565}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/706977f.jpg"} -{"rects": [{"solidity": 0.9979980569376159, "top": 400, "right": 3150, "bottom": 2010, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/702973f.jpg"} -{"rects": [{"solidity": 0.9979983820788049, "top": 410, "right": 3310, "bottom": 2040, "left": 895}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725194f.jpg"} -{"rects": [{"solidity": 0.9979987430435435, "top": 330, "right": 5390, "bottom": 3605, "left": 1345}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716777f.jpg"} -{"rects": [{"solidity": 0.9979992765383963, "top": 450, "right": 3015, "bottom": 2080, "left": 600}, {"solidity": 0.9969408347150992, "top": 2110, "right": 3015, "bottom": 3745, "left": 605}, {"solidity": 0.9968123964513285, "top": 455, "right": 5575, "bottom": 2080, "left": 3165}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701555f.jpg"} -{"rects": [{"solidity": 0.9979992831307635, "top": 755, "right": 2010, "bottom": 3160, "left": 405}, {"solidity": 0.9955168070791378, "top": 755, "right": 3845, "bottom": 3160, "left": 2235}, {"solidity": 0.9948880193703328, "top": 740, "right": 5655, "bottom": 3140, "left": 4050}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721930f.jpg"} -{"rects": [{"solidity": 0.9979995039027392, "top": 380, "right": 3065, "bottom": 1990, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729717f.jpg"} -{"rects": [{"solidity": 0.9979999078770261, "top": 1100, "right": 3485, "bottom": 5020, "left": 340}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720475f.jpg"} -{"rects": [{"solidity": 0.9980002094706938, "top": 800, "right": 3910, "bottom": 3195, "left": 2305}, {"solidity": 0.9955206618050655, "top": 800, "right": 5790, "bottom": 3205, "left": 4175}, {"solidity": 0.9992921852622387, "top": 795, "right": 2000, "bottom": 3185, "left": 410}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733362f.jpg"} -{"rects": [{"solidity": 0.9980002352664392, "top": 775, "right": 2020, "bottom": 3175, "left": 415}, {"solidity": 0.997689061778862, "top": 775, "right": 3835, "bottom": 3170, "left": 2240}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721640f.jpg"} -{"rects": [{"solidity": 0.9980003429832424, "top": 3925, "right": 3195, "bottom": 5535, "left": 775}, {"solidity": 0.9960023397784966, "top": 2200, "right": 3190, "bottom": 3810, "left": 770}, {"solidity": 0.9964077498380542, "top": 470, "right": 3205, "bottom": 2070, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733198f.jpg"} -{"rects": [{"solidity": 0.9980004331603225, "top": 415, "right": 5125, "bottom": 3705, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725383f.jpg"} -{"rects": [{"solidity": 0.9980004522216346, "top": 1385, "right": 3590, "bottom": 5420, "left": 320}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/701215f.jpg"} -{"rects": [{"solidity": 0.9980004842364706, "top": 2260, "right": 3395, "bottom": 3975, "left": 700}, {"solidity": 0.9924308531789864, "top": 340, "right": 3420, "bottom": 2075, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725288f.jpg"} -{"rects": [{"solidity": 0.9980007912699883, "top": 1250, "right": 3475, "bottom": 5195, "left": 290}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/721879f.jpg"} -{"rects": [{"solidity": 0.9980015858015618, "top": 455, "right": 5230, "bottom": 3720, "left": 1175}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713666f.jpg"} -{"rects": [{"solidity": 0.9980017468047474, "top": 460, "right": 5115, "bottom": 3735, "left": 1085}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723357f.jpg"} -{"rects": [{"solidity": 0.9980019282555936, "top": 440, "right": 3320, "bottom": 2025, "left": 930}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726071f.jpg"} -{"rects": [{"solidity": 0.9980025508824717, "top": 2255, "right": 3190, "bottom": 3880, "left": 755}, {"solidity": 0.9963656758272574, "top": 410, "right": 3185, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732177f.jpg"} -{"rects": [{"solidity": 0.9980032411158699, "top": 410, "right": 3180, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703763f.jpg"} -{"rects": [{"solidity": 0.9980032977791519, "top": 890, "right": 3870, "bottom": 3315, "left": 2260}, {"solidity": 0.9972325431559691, "top": 905, "right": 2005, "bottom": 3295, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729123f.jpg"} -{"rects": [{"solidity": 0.9980034180965273, "top": 790, "right": 2035, "bottom": 3205, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706806f.jpg"} -{"rects": [{"solidity": 0.9980034418995183, "top": 770, "right": 3880, "bottom": 3190, "left": 2255}, {"solidity": 0.9972299078806028, "top": 785, "right": 2050, "bottom": 3195, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708703f.jpg"} -{"rects": [{"solidity": 0.9980034505501876, "top": 410, "right": 5755, "bottom": 4100, "left": 1190}], "shape": {"h": 4425, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/708837f.jpg"} -{"rects": [{"solidity": 0.9980034551213081, "top": 2355, "right": 3040, "bottom": 3970, "left": 980}, {"solidity": 0.9952388869575732, "top": 710, "right": 3065, "bottom": 2345, "left": 1005}], "shape": {"h": 4435, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/703427f.jpg"} -{"rects": [{"solidity": 0.9980035420412016, "top": 360, "right": 5375, "bottom": 3645, "left": 1360}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723669f.jpg"} -{"rects": [{"solidity": 0.9980037441921372, "top": 305, "right": 5310, "bottom": 3545, "left": 1280}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712639f.jpg"} -{"rects": [{"solidity": 0.998003860219423, "top": 595, "right": 2560, "bottom": 2010, "left": 805}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702980f.jpg"} -{"rects": [{"solidity": 0.9980041919388645, "top": 460, "right": 2555, "bottom": 1945, "left": 270}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716356f.jpg"} -{"rects": [{"solidity": 0.998004505383401, "top": 1010, "right": 3385, "bottom": 5010, "left": 555}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713856f.jpg"} -{"rects": [{"solidity": 0.9980048341791207, "top": 385, "right": 4815, "bottom": 3625, "left": 815}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701783f.jpg"} -{"rects": [{"solidity": 0.9980049208792375, "top": 475, "right": 5095, "bottom": 3765, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714518f.jpg"} -{"rects": [{"solidity": 0.9980050253576116, "top": 2250, "right": 3175, "bottom": 3845, "left": 780}, {"solidity": 0.9962322863066846, "top": 400, "right": 3160, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729051f.jpg"} -{"rects": [{"solidity": 0.998005085077254, "top": 450, "right": 3095, "bottom": 2055, "left": 690}, {"solidity": 0.9978348151214672, "top": 2360, "right": 3095, "bottom": 3955, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729745f.jpg"} -{"rects": [{"solidity": 0.9980051675659245, "top": 2105, "right": 2760, "bottom": 3535, "left": 905}, {"solidity": 0.998329473952792, "top": 660, "right": 2745, "bottom": 2090, "left": 915}, {"solidity": 0.9956198960653304, "top": 615, "right": 5225, "bottom": 2035, "left": 3425}, {"solidity": 0.996662305943682, "top": 2060, "right": 5225, "bottom": 3465, "left": 3415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705225f.jpg"} -{"rects": [{"solidity": 0.9980052734418238, "top": 610, "right": 4840, "bottom": 3710, "left": 1350}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716541f.jpg"} -{"rects": [{"solidity": 0.9980052897331089, "top": 375, "right": 5240, "bottom": 3645, "left": 1220}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723661f.jpg"} -{"rects": [{"solidity": 0.9980053718602048, "top": 2105, "right": 3235, "bottom": 3740, "left": 805}, {"solidity": 0.9978370629725478, "top": 3945, "right": 3240, "bottom": 5580, "left": 810}, {"solidity": 0.9982205272841872, "top": 265, "right": 3235, "bottom": 1895, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701589f.jpg"} -{"rects": [{"solidity": 0.9980054631560232, "top": 690, "right": 2025, "bottom": 3095, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704816f.jpg"} -{"rects": [{"solidity": 0.9980059272761355, "top": 420, "right": 3250, "bottom": 2030, "left": 830}, {"solidity": 0.9949913762022159, "top": 2360, "right": 3240, "bottom": 3970, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727544f.jpg"} -{"rects": [{"solidity": 0.9980061302027085, "top": 400, "right": 5050, "bottom": 3645, "left": 1060}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715099f.jpg"} -{"rects": [{"solidity": 0.9980062143966857, "top": 3340, "right": 3260, "bottom": 4950, "left": 845}, {"solidity": 0.9967390915622775, "top": 910, "right": 3250, "bottom": 2515, "left": 835}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/730711f.jpg"} -{"rects": [{"solidity": 0.9980062848492978, "top": 470, "right": 5015, "bottom": 3735, "left": 990}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723781f.jpg"} -{"rects": [{"solidity": 0.998006879114371, "top": 420, "right": 5135, "bottom": 3700, "left": 1100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721141f.jpg"} -{"rects": [{"solidity": 0.998007097142133, "top": 775, "right": 2060, "bottom": 3215, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705199f.jpg"} -{"rects": [{"solidity": 0.9980071115945672, "top": 460, "right": 5025, "bottom": 3560, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711492f.jpg"} -{"rects": [{"solidity": 0.9980073097397951, "top": 2240, "right": 3175, "bottom": 3865, "left": 760}, {"solidity": 0.9973415725274372, "top": 390, "right": 3170, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734348f.jpg"} -{"rects": [{"solidity": 0.9980073241570906, "top": 645, "right": 4830, "bottom": 3415, "left": 1240}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720117f.jpg"} -{"rects": [{"solidity": 0.9980074295917037, "top": 1180, "right": 3875, "bottom": 5725, "left": 205}], "shape": {"h": 6920, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/708369f.jpg"} -{"rects": [{"solidity": 0.9980075648264493, "top": 325, "right": 3165, "bottom": 1945, "left": 745}, {"solidity": 0.9975256194788377, "top": 2190, "right": 3150, "bottom": 3815, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719676f.jpg"} -{"rects": [{"solidity": 0.9980075702000006, "top": 965, "right": 2695, "bottom": 3985, "left": 275}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517271.jpg"} -{"rects": [{"solidity": 0.9980076760258078, "top": 2085, "right": 3345, "bottom": 3710, "left": 915}, {"solidity": 0.99794326602977, "top": 390, "right": 3350, "bottom": 2015, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702018f.jpg"} -{"rects": [{"solidity": 0.9980078831187976, "top": 525, "right": 5065, "bottom": 3730, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734468f.jpg"} -{"rects": [{"solidity": 0.998008058352284, "top": 530, "right": 5140, "bottom": 3760, "left": 990}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713048f.jpg"} -{"rects": [{"solidity": 0.9980081286553588, "top": 505, "right": 5015, "bottom": 3745, "left": 915}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717898f.jpg"} -{"rects": [{"solidity": 0.9980081464571864, "top": 2610, "right": 3175, "bottom": 4235, "left": 755}, {"solidity": 0.9963591686554011, "top": 645, "right": 3160, "bottom": 2275, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704408f.jpg"} -{"rects": [{"solidity": 0.9980084688412383, "top": 310, "right": 3170, "bottom": 1930, "left": 755}, {"solidity": 0.9971732339173163, "top": 2155, "right": 3165, "bottom": 3780, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706084f.jpg"} -{"rects": [{"solidity": 0.998008577434449, "top": 830, "right": 2045, "bottom": 3240, "left": 440}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712674f.jpg"} -{"rects": [{"solidity": 0.9980088790233075, "top": 610, "right": 5015, "bottom": 3545, "left": 1140}], "shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717371f.jpg"} -{"rects": [{"solidity": 0.9980090414487345, "top": 375, "right": 5145, "bottom": 3685, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726171f.jpg"} -{"rects": [{"solidity": 0.9980090955124897, "top": 1080, "right": 3490, "bottom": 5135, "left": 260}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708725f.jpg"} -{"rects": [{"solidity": 0.9980096774193549, "top": 700, "right": 1995, "bottom": 3115, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724230f.jpg"} -{"rects": [{"solidity": 0.9980097590142755, "top": 515, "right": 4965, "bottom": 3580, "left": 1115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720511f.jpg"} -{"rects": [{"solidity": 0.9980105204195291, "top": 370, "right": 3210, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701472f.jpg"} -{"rects": [{"solidity": 0.9980106228317808, "top": 405, "right": 5220, "bottom": 3645, "left": 1190}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701975f.jpg"} -{"rects": [{"solidity": 0.9980107134557064, "top": 415, "right": 4995, "bottom": 3695, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727843f.jpg"} -{"rects": [{"solidity": 0.9980108964947917, "top": 955, "right": 3495, "bottom": 5025, "left": 275}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714755f.jpg"} -{"rects": [{"solidity": 0.9980109542583954, "top": 800, "right": 2110, "bottom": 3225, "left": 500}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722829f.jpg"} -{"rects": [{"solidity": 0.9980115657551489, "top": 800, "right": 2160, "bottom": 3495, "left": 370}], "shape": {"h": 4425, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/711350f.jpg"} -{"rects": [{"solidity": 0.9980116027317173, "top": 2260, "right": 3180, "bottom": 3875, "left": 755}, {"solidity": 0.9951556063258655, "top": 4135, "right": 3205, "bottom": 5750, "left": 780}, {"solidity": 0.9981252466780687, "top": 435, "right": 3160, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734079f.jpg"} -{"rects": [{"solidity": 0.9980119246435651, "top": 430, "right": 5135, "bottom": 3655, "left": 1045}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732635f.jpg"} -{"rects": [{"solidity": 0.9980120501337114, "top": 840, "right": 3815, "bottom": 3250, "left": 2195}, {"solidity": 0.9979320951753196, "top": 845, "right": 5660, "bottom": 3255, "left": 4045}, {"solidity": 0.9989660497866659, "top": 845, "right": 1955, "bottom": 3240, "left": 350}], "shape": {"h": 3855, "w": 6035}, "file": "/usr/local/google/home/danvk/milstein/726663f.jpg"} -{"rects": [{"solidity": 0.9980120715539054, "top": 390, "right": 5100, "bottom": 3615, "left": 1040}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722251f.jpg"} -{"rects": [{"solidity": 0.998012157056021, "top": 580, "right": 4810, "bottom": 3560, "left": 1195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705243f.jpg"} -{"rects": [{"solidity": 0.9980122329213454, "top": 500, "right": 4855, "bottom": 3525, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730906f.jpg"} -{"rects": [{"solidity": 0.9980125483869626, "top": 700, "right": 2550, "bottom": 3735, "left": 555}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724311f.jpg"} -{"rects": [{"solidity": 0.9980127949483258, "top": 990, "right": 3495, "bottom": 4990, "left": 265}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720285f.jpg"} -{"rects": [{"solidity": 0.9980131042347166, "top": 380, "right": 5070, "bottom": 3620, "left": 1055}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702491f.jpg"} -{"rects": [{"solidity": 0.9980131521038902, "top": 825, "right": 3935, "bottom": 3245, "left": 2305}, {"solidity": 0.9974862453411639, "top": 840, "right": 2035, "bottom": 3250, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710351f.jpg"} -{"rects": [{"solidity": 0.9980133187863596, "top": 465, "right": 5070, "bottom": 3755, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701629f.jpg"} -{"rects": [{"solidity": 0.998013505561209, "top": 765, "right": 1995, "bottom": 3175, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713643f.jpg"} -{"rects": [{"solidity": 0.9980136118336538, "top": 520, "right": 5045, "bottom": 3750, "left": 1020}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730742f.jpg"} -{"rects": [{"solidity": 0.9980139154056097, "top": 2285, "right": 3185, "bottom": 3905, "left": 760}, {"solidity": 0.9965396151642323, "top": 420, "right": 3190, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726109f.jpg"} -{"rects": [{"solidity": 0.9980140848022468, "top": 440, "right": 4530, "bottom": 2785, "left": 1460}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508725.jpg"} -{"rects": [{"solidity": 0.9980141570827538, "top": 980, "right": 2700, "bottom": 4000, "left": 280}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516883.jpg"} -{"rects": [{"solidity": 0.9980142055686608, "top": 805, "right": 2020, "bottom": 3215, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716894f.jpg"} -{"rects": [{"solidity": 0.9980143120690662, "top": 955, "right": 2730, "bottom": 3970, "left": 300}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516927.jpg"} -{"rects": [{"solidity": 0.99801445271126, "top": 815, "right": 3740, "bottom": 3225, "left": 2130}, {"solidity": 0.9967402066399786, "top": 835, "right": 1935, "bottom": 3220, "left": 325}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719392f.jpg"} -{"rects": [{"solidity": 0.998014589421554, "top": 775, "right": 3755, "bottom": 3205, "left": 2130}, {"solidity": 0.9969694634923081, "top": 780, "right": 1910, "bottom": 3200, "left": 290}, {"solidity": 0.9976061133192745, "top": 795, "right": 5615, "bottom": 3195, "left": 3995}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707612f.jpg"} -{"rects": [{"solidity": 0.9980147140964875, "top": 2185, "right": 3180, "bottom": 3815, "left": 760}, {"solidity": 0.9995492471468304, "top": 330, "right": 3185, "bottom": 1955, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706335f.jpg"} -{"rects": [{"solidity": 0.9980148524400437, "top": 1010, "right": 5090, "bottom": 3330, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703120f.jpg"} -{"rects": [{"solidity": 0.9980148873965258, "top": 355, "right": 5130, "bottom": 3595, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704057f.jpg"} -{"rects": [{"solidity": 0.9980149401870135, "top": 645, "right": 3305, "bottom": 2520, "left": 605}, {"solidity": 0.9927945134126226, "top": 3175, "right": 3270, "bottom": 5080, "left": 580}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711094f.jpg"} -{"rects": [{"solidity": 0.9980152198749105, "top": 685, "right": 2675, "bottom": 2120, "left": 860}, {"solidity": 0.9945526233037421, "top": 2185, "right": 2685, "bottom": 3630, "left": 875}, {"solidity": 0.9938639269894831, "top": 675, "right": 5235, "bottom": 2125, "left": 3430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725210f.jpg"} -{"rects": [{"solidity": 0.9980152304609219, "top": 395, "right": 3495, "bottom": 2020, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704192f.jpg"} -{"rects": [{"solidity": 0.9980158407468245, "top": 2255, "right": 3210, "bottom": 3865, "left": 805}, {"solidity": 0.9961795446872942, "top": 465, "right": 3200, "bottom": 2045, "left": 810}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/701153f.jpg"} -{"rects": [{"solidity": 0.9980158667170372, "top": 335, "right": 5710, "bottom": 1970, "left": 3285}, {"solidity": 0.9978845793457443, "top": 2060, "right": 2845, "bottom": 3695, "left": 420}, {"solidity": 0.9986829757113999, "top": 350, "right": 2840, "bottom": 1985, "left": 420}, {"solidity": 0.9972168918146119, "top": 2060, "right": 5700, "bottom": 3695, "left": 3275}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730790f.jpg"} -{"rects": [{"solidity": 0.9980160455536553, "top": 2255, "right": 3160, "bottom": 3870, "left": 740}, {"solidity": 0.9989314445836185, "top": 430, "right": 3160, "bottom": 2040, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719393f.jpg"} -{"rects": [{"solidity": 0.9980161109940515, "top": 2200, "right": 3230, "bottom": 3815, "left": 825}, {"solidity": 0.9984005149561604, "top": 365, "right": 3220, "bottom": 1980, "left": 820}, {"solidity": 0.9979583250437851, "top": 4040, "right": 3215, "bottom": 5645, "left": 810}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/726958f.jpg"} -{"rects": [{"solidity": 0.9980161250916199, "top": 445, "right": 3185, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723612f.jpg"} -{"rects": [{"solidity": 0.9980161268966684, "top": 1135, "right": 3390, "bottom": 5070, "left": 515}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719949f.jpg"} -{"rects": [{"solidity": 0.9980164665361296, "top": 955, "right": 3520, "bottom": 5045, "left": 260}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707290f.jpg"} -{"rects": [{"solidity": 0.9980167215704405, "top": 940, "right": 3465, "bottom": 4995, "left": 250}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714313f.jpg"} -{"rects": [{"solidity": 0.998016746607234, "top": 450, "right": 5075, "bottom": 3650, "left": 3050}, {"solidity": 0.9981353134992001, "top": 420, "right": 2720, "bottom": 3610, "left": 695}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733065f.jpg"} -{"rects": [{"solidity": 0.9980167501470201, "top": 690, "right": 2520, "bottom": 2175, "left": 430}, {"solidity": 0.9978387521142642, "top": 2460, "right": 2505, "bottom": 3940, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716092f.jpg"} -{"rects": [{"solidity": 0.9980167989923299, "top": 315, "right": 5330, "bottom": 3555, "left": 1305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732214f.jpg"} -{"rects": [{"solidity": 0.9980168256181738, "top": 490, "right": 4775, "bottom": 3330, "left": 1100}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712165f.jpg"} -{"rects": [{"solidity": 0.9980169388045, "top": 280, "right": 5160, "bottom": 3585, "left": 1110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704360f.jpg"} -{"rects": [{"solidity": 0.9980171081619832, "top": 975, "right": 3545, "bottom": 5010, "left": 280}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714790f.jpg"} -{"rects": [{"solidity": 0.9980171479382882, "top": 325, "right": 3165, "bottom": 1945, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732857f.jpg"} -{"rects": [{"solidity": 0.9980171630450109, "top": 440, "right": 5195, "bottom": 3620, "left": 1160}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732648f.jpg"} -{"rects": [{"solidity": 0.9980173053152039, "top": 570, "right": 5515, "bottom": 3725, "left": 3090}, {"solidity": 0.9953650019547168, "top": 580, "right": 2995, "bottom": 3740, "left": 585}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724349f.jpg"} -{"rects": [{"solidity": 0.9980175687746198, "top": 450, "right": 3165, "bottom": 2070, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703288f.jpg"} -{"rects": [{"solidity": 0.9980176611846197, "top": 975, "right": 3520, "bottom": 5045, "left": 295}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708835f.jpg"} -{"rects": [{"solidity": 0.9980177496530315, "top": 945, "right": 3485, "bottom": 5290, "left": 575}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717289f.jpg"} -{"rects": [{"solidity": 0.9980178615886472, "top": 320, "right": 3185, "bottom": 1940, "left": 750}, {"solidity": 0.9968432782378878, "top": 2175, "right": 3165, "bottom": 3810, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720876f.jpg"} -{"rects": [{"solidity": 0.9980178999799993, "top": 595, "right": 4800, "bottom": 3600, "left": 1290}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703715f.jpg"} -{"rects": [{"solidity": 0.9980179100610497, "top": 805, "right": 3895, "bottom": 3220, "left": 2285}, {"solidity": 0.9976739062823968, "top": 805, "right": 5720, "bottom": 3225, "left": 4115}, {"solidity": 0.9983140085186938, "top": 820, "right": 2035, "bottom": 3220, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734762f.jpg"} -{"rects": [{"solidity": 0.9980182117275236, "top": 4095, "right": 3150, "bottom": 5710, "left": 745}, {"solidity": 0.9966398812237084, "top": 2220, "right": 3135, "bottom": 3825, "left": 720}, {"solidity": 0.9963528502769738, "top": 385, "right": 3115, "bottom": 1995, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728375f.jpg"} -{"rects": [{"solidity": 0.9980182181449615, "top": 820, "right": 2050, "bottom": 3240, "left": 445}, {"solidity": 0.9962269772744202, "top": 840, "right": 5750, "bottom": 3260, "left": 4140}, {"solidity": 0.996281179138322, "top": 820, "right": 3900, "bottom": 3240, "left": 2290}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726212f.jpg"} -{"rects": [{"solidity": 0.9980182821832351, "top": 3570, "right": 3490, "bottom": 5575, "left": 300}, {"solidity": 0.9971135210104455, "top": 990, "right": 3530, "bottom": 3000, "left": 315}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725143f.jpg"} -{"rects": [{"solidity": 0.9980183408196014, "top": 2130, "right": 3190, "bottom": 3745, "left": 770}, {"solidity": 0.996361484126368, "top": 3975, "right": 3185, "bottom": 5590, "left": 770}, {"solidity": 0.9979577414565518, "top": 305, "right": 3190, "bottom": 1925, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733785f.jpg"} -{"rects": [{"solidity": 0.9980183658571917, "top": 445, "right": 5105, "bottom": 3715, "left": 1045}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704720f.jpg"} -{"rects": [{"solidity": 0.9980185495782913, "top": 410, "right": 3070, "bottom": 1995, "left": 1085}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701285f.jpg"} -{"rects": [{"solidity": 0.9980186576405514, "top": 705, "right": 3370, "bottom": 2620, "left": 665}, {"solidity": 0.9967692887813067, "top": 3265, "right": 3380, "bottom": 5185, "left": 660}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724829f.jpg"} -{"rects": [{"solidity": 0.9980188425819326, "top": 2115, "right": 2680, "bottom": 3555, "left": 855}, {"solidity": 0.9969921388750309, "top": 620, "right": 2680, "bottom": 2055, "left": 865}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705094f.jpg"} -{"rects": [{"solidity": 0.9980189106965681, "top": 790, "right": 2025, "bottom": 3190, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714715f.jpg"} -{"rects": [{"solidity": 0.998018958065351, "top": 370, "right": 5370, "bottom": 3605, "left": 1370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733523f.jpg"} -{"rects": [{"solidity": 0.9980190117996757, "top": 495, "right": 5140, "bottom": 3775, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732097f.jpg"} -{"rects": [{"solidity": 0.99801914189073, "top": 450, "right": 5090, "bottom": 3680, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709124f.jpg"} -{"rects": [{"solidity": 0.9980193003063175, "top": 1695, "right": 2445, "bottom": 2905, "left": 635}, {"solidity": 0.9986748835459884, "top": 330, "right": 2450, "bottom": 1530, "left": 635}, {"solidity": 0.9981171670067036, "top": 3105, "right": 2435, "bottom": 4310, "left": 640}], "shape": {"h": 4655, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/726634f.jpg"} -{"rects": [{"solidity": 0.9980194828280913, "top": 450, "right": 5080, "bottom": 3730, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726175f.jpg"} -{"rects": [{"solidity": 0.9980198824594667, "top": 1010, "right": 3540, "bottom": 5070, "left": 260}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733836f.jpg"} -{"rects": [{"solidity": 0.9980199503382139, "top": 610, "right": 5075, "bottom": 1945, "left": 3310}, {"solidity": 0.9961253176749729, "top": 585, "right": 2850, "bottom": 1925, "left": 1115}, {"solidity": 0.9999605157767675, "top": 2190, "right": 2805, "bottom": 3495, "left": 1095}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704600f.jpg"} -{"rects": [{"solidity": 0.9980200672879388, "top": 535, "right": 2995, "bottom": 1930, "left": 1175}, {"solidity": 0.9958501238955773, "top": 2330, "right": 2985, "bottom": 3725, "left": 1175}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727777f.jpg"} -{"rects": [{"solidity": 0.9980202092921605, "top": 395, "right": 3060, "bottom": 2020, "left": 640}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728779f.jpg"} -{"rects": [{"solidity": 0.9980202170022732, "top": 4125, "right": 3120, "bottom": 5750, "left": 715}, {"solidity": 0.998879879143156, "top": 435, "right": 3115, "bottom": 2055, "left": 710}, {"solidity": 0.9999418151726635, "top": 2270, "right": 3115, "bottom": 3890, "left": 715}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/719987f.jpg"} -{"rects": [{"solidity": 0.9980202259044714, "top": 515, "right": 5020, "bottom": 3705, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709463f.jpg"} -{"rects": [{"solidity": 0.998020343463288, "top": 350, "right": 5185, "bottom": 3625, "left": 1135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730842f.jpg"} -{"rects": [{"solidity": 0.9980209114947689, "top": 755, "right": 2020, "bottom": 3165, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713285f.jpg"} -{"rects": [{"solidity": 0.9980210598324009, "top": 970, "right": 3445, "bottom": 5005, "left": 240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705051f.jpg"} -{"rects": [{"solidity": 0.9980212023304398, "top": 785, "right": 2030, "bottom": 3195, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719505f.jpg"} -{"rects": [{"solidity": 0.9980213260748924, "top": 770, "right": 1895, "bottom": 3160, "left": 300}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709685f.jpg"} -{"rects": [{"solidity": 0.9980214206845087, "top": 905, "right": 3460, "bottom": 4955, "left": 185}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707041f.jpg"} -{"rects": [{"solidity": 0.9980215247792743, "top": 855, "right": 3775, "bottom": 3280, "left": 2165}, {"solidity": 0.9964945804793968, "top": 855, "right": 1930, "bottom": 3280, "left": 320}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723173f.jpg"} -{"rects": [{"solidity": 0.9980217572882182, "top": 425, "right": 2010, "bottom": 2860, "left": 480}], "shape": {"h": 4645, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509507.jpg"} -{"rects": [{"solidity": 0.9980218035563082, "top": 475, "right": 4955, "bottom": 3405, "left": 895}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712930f.jpg"} -{"rects": [{"solidity": 0.9980218670434908, "top": 365, "right": 5280, "bottom": 3615, "left": 1255}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727864f.jpg"} -{"rects": [{"solidity": 0.998021891072135, "top": 815, "right": 2025, "bottom": 3235, "left": 405}], "shape": {"h": 4065, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712768f.jpg"} -{"rects": [{"solidity": 0.998021999623238, "top": 715, "right": 2560, "bottom": 3715, "left": 510}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713570f.jpg"} -{"rects": [{"solidity": 0.998022088288833, "top": 785, "right": 2035, "bottom": 3210, "left": 420}, {"solidity": 0.9982518835793167, "top": 780, "right": 3870, "bottom": 3195, "left": 2255}, {"solidity": 0.9962259387410949, "top": 780, "right": 5725, "bottom": 3190, "left": 4105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717266f.jpg"} -{"rects": [{"solidity": 0.9980220905083459, "top": 415, "right": 2945, "bottom": 2020, "left": 570}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705314f.jpg"} -{"rects": [{"solidity": 0.9980221625123136, "top": 455, "right": 5110, "bottom": 3710, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713404f.jpg"} -{"rects": [{"solidity": 0.9980224019183027, "top": 395, "right": 3055, "bottom": 1995, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729290f.jpg"} -{"rects": [{"solidity": 0.9980224531761285, "top": 410, "right": 5145, "bottom": 3665, "left": 1125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732682f.jpg"} -{"rects": [{"solidity": 0.9980224977176462, "top": 425, "right": 3280, "bottom": 2045, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707173f.jpg"} -{"rects": [{"solidity": 0.9980227194669046, "top": 2275, "right": 3065, "bottom": 3895, "left": 640}, {"solidity": 0.9961095354836642, "top": 365, "right": 3080, "bottom": 2010, "left": 650}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728364f.jpg"} -{"rects": [{"solidity": 0.998022934995526, "top": 360, "right": 5470, "bottom": 3695, "left": 1110}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719109f.jpg"} -{"rects": [{"solidity": 0.9980233302708873, "top": 490, "right": 5025, "bottom": 3740, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708727f.jpg"} -{"rects": [{"solidity": 0.9980233393936832, "top": 645, "right": 2435, "bottom": 3685, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713978f.jpg"} -{"rects": [{"solidity": 0.9980233959939304, "top": 1070, "right": 3555, "bottom": 5100, "left": 275}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725402f.jpg"} -{"rects": [{"solidity": 0.9980235607027812, "top": 465, "right": 5080, "bottom": 3705, "left": 1060}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700172f.jpg"} -{"rects": [{"solidity": 0.998023613466511, "top": 875, "right": 2045, "bottom": 3295, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729465f.jpg"} -{"rects": [{"solidity": 0.9980236834005605, "top": 475, "right": 3185, "bottom": 2080, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720644f.jpg"} -{"rects": [{"solidity": 0.9980240456927145, "top": 635, "right": 2705, "bottom": 2050, "left": 895}, {"solidity": 0.9946131908922186, "top": 2120, "right": 2715, "bottom": 3495, "left": 885}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702560f.jpg"} -{"rects": [{"solidity": 0.9980241598663496, "top": 770, "right": 2005, "bottom": 3185, "left": 385}, {"solidity": 0.9975780891821316, "top": 770, "right": 3800, "bottom": 3160, "left": 2215}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705016f.jpg"} -{"rects": [{"solidity": 0.9980243873842185, "top": 475, "right": 5005, "bottom": 3680, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717386f.jpg"} -{"rects": [{"solidity": 0.9980246205067005, "top": 885, "right": 3530, "bottom": 4980, "left": 285}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723938f.jpg"} -{"rects": [{"solidity": 0.9980246227644466, "top": 590, "right": 5085, "bottom": 3610, "left": 1160}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718308f.jpg"} -{"rects": [{"solidity": 0.9980247601024115, "top": 990, "right": 3605, "bottom": 5050, "left": 295}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717448f.jpg"} -{"rects": [{"solidity": 0.9980247880932267, "top": 510, "right": 3925, "bottom": 2595, "left": 2445}, {"solidity": 0.9958012853208201, "top": 500, "right": 2175, "bottom": 2590, "left": 695}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716185f.jpg"} -{"rects": [{"solidity": 0.9980247931685776, "top": 445, "right": 3175, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714546f.jpg"} -{"rects": [{"solidity": 0.9980248126860807, "top": 1100, "right": 3480, "bottom": 5140, "left": 265}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723432f.jpg"} -{"rects": [{"solidity": 0.9980248916472912, "top": 350, "right": 5095, "bottom": 3595, "left": 995}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729073f.jpg"} -{"rects": [{"solidity": 0.9980249073054189, "top": 1100, "right": 3515, "bottom": 5150, "left": 315}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723984f.jpg"} -{"rects": [{"solidity": 0.998025207643608, "top": 440, "right": 3070, "bottom": 1875, "left": 1255}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725214f.jpg"} -{"rects": [{"solidity": 0.9980256598254288, "top": 1155, "right": 3540, "bottom": 5275, "left": 295}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717393f.jpg"} -{"rects": [{"solidity": 0.9980256794431696, "top": 355, "right": 5215, "bottom": 3655, "left": 1175}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724200f.jpg"} -{"rects": [{"solidity": 0.9980256795318913, "top": 320, "right": 5160, "bottom": 3595, "left": 1125}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733502f.jpg"} -{"rects": [{"solidity": 0.9980256818193699, "top": 300, "right": 3850, "bottom": 2710, "left": 850}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507544.jpg"} -{"rects": [{"solidity": 0.9980257014253079, "top": 400, "right": 3075, "bottom": 2015, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729641f.jpg"} -{"rects": [{"solidity": 0.9980257335421063, "top": 800, "right": 3885, "bottom": 3210, "left": 2275}, {"solidity": 0.9982133766852226, "top": 805, "right": 2095, "bottom": 3195, "left": 490}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734620f.jpg"} -{"rects": [{"solidity": 0.9980258864125413, "top": 750, "right": 3980, "bottom": 3170, "left": 2370}, {"solidity": 0.996205368676691, "top": 760, "right": 5765, "bottom": 3180, "left": 4150}, {"solidity": 0.9956254305678575, "top": 2115, "right": 2195, "bottom": 3540, "left": 395}, {"solidity": 0.9981468942660632, "top": 520, "right": 2175, "bottom": 1905, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727711f.jpg"} -{"rects": [{"solidity": 0.9980258866343942, "top": 505, "right": 2275, "bottom": 1770, "left": 530}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703859f.jpg"} -{"rects": [{"solidity": 0.9980259044655911, "top": 390, "right": 2830, "bottom": 1815, "left": 1035}, {"solidity": 0.9967216713987036, "top": 2085, "right": 2845, "bottom": 3475, "left": 1025}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722019f.jpg"} -{"rects": [{"solidity": 0.9980259356743917, "top": 750, "right": 2570, "bottom": 3170, "left": 950}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719054f.jpg"} -{"rects": [{"solidity": 0.9980260064790782, "top": 760, "right": 2030, "bottom": 3180, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722255f.jpg"} -{"rects": [{"solidity": 0.9980260200525092, "top": 510, "right": 3190, "bottom": 2115, "left": 780}, {"solidity": 0.9965633049659265, "top": 2270, "right": 3185, "bottom": 3885, "left": 775}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/701227f.jpg"} -{"rects": [{"solidity": 0.9980262016787166, "top": 440, "right": 5220, "bottom": 3425, "left": 1370}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730499f.jpg"} -{"rects": [{"solidity": 0.9980262326323056, "top": 830, "right": 2065, "bottom": 3245, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721298f.jpg"} -{"rects": [{"solidity": 0.9980262596141847, "top": 785, "right": 2020, "bottom": 3185, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724501f.jpg"} -{"rects": [{"solidity": 0.9980262917694863, "top": 1130, "right": 3355, "bottom": 4980, "left": 310}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709539f.jpg"} -{"rects": [{"solidity": 0.9980263077493391, "top": 560, "right": 2385, "bottom": 3600, "left": 350}, {"solidity": 0.9976805468755033, "top": 830, "right": 4110, "bottom": 3245, "left": 2490}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714930f.jpg"} -{"rects": [{"solidity": 0.9980263729650476, "top": 450, "right": 5145, "bottom": 3715, "left": 1025}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717212f.jpg"} -{"rects": [{"solidity": 0.9980264448137406, "top": 585, "right": 2665, "bottom": 3620, "left": 655}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720421f.jpg"} -{"rects": [{"solidity": 0.9980268274341687, "top": 775, "right": 2060, "bottom": 3205, "left": 450}, {"solidity": 0.9961361343942046, "top": 800, "right": 3920, "bottom": 3220, "left": 2295}, {"solidity": 0.9945032724778626, "top": 800, "right": 5765, "bottom": 3230, "left": 4155}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723966f.jpg"} -{"rects": [{"solidity": 0.9980271218823334, "top": 905, "right": 3480, "bottom": 5255, "left": 560}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723985f.jpg"} -{"rects": [{"solidity": 0.9980275881501595, "top": 865, "right": 1940, "bottom": 3285, "left": 315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705568f.jpg"} -{"rects": [{"solidity": 0.9980278524420829, "top": 375, "right": 5130, "bottom": 3645, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714902f.jpg"} -{"rects": [{"solidity": 0.9980279251960991, "top": 380, "right": 5075, "bottom": 3620, "left": 1055}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732290f.jpg"} -{"rects": [{"solidity": 0.9980280526455078, "top": 825, "right": 2010, "bottom": 3245, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723953f.jpg"} -{"rects": [{"solidity": 0.9980283674825552, "top": 435, "right": 4850, "bottom": 3680, "left": 780}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701971f.jpg"} -{"rects": [{"solidity": 0.9980284384778767, "top": 400, "right": 3100, "bottom": 2010, "left": 690}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/728838f.jpg"} -{"rects": [{"solidity": 0.998028579117854, "top": 770, "right": 2030, "bottom": 3175, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713893f.jpg"} -{"rects": [{"solidity": 0.9980285902651594, "top": 390, "right": 3150, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715727f.jpg"} -{"rects": [{"solidity": 0.9980287010789484, "top": 475, "right": 5250, "bottom": 3685, "left": 1265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708751f.jpg"} -{"rects": [{"solidity": 0.9980290979558147, "top": 405, "right": 5140, "bottom": 3700, "left": 1085}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727241f.jpg"} -{"rects": [{"solidity": 0.9980293103560228, "top": 820, "right": 1950, "bottom": 3210, "left": 330}, {"solidity": 0.9977277448841799, "top": 850, "right": 5695, "bottom": 3240, "left": 4070}, {"solidity": 0.9997365271019283, "top": 830, "right": 3815, "bottom": 3215, "left": 2195}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720367f.jpg"} -{"rects": [{"solidity": 0.9980293216198977, "top": 300, "right": 3360, "bottom": 2115, "left": 690}, {"solidity": 0.9964271562761179, "top": 2245, "right": 3155, "bottom": 3985, "left": 970}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703278f.jpg"} -{"rects": [{"solidity": 0.9980295662133698, "top": 440, "right": 5780, "bottom": 3655, "left": 3765}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703392f.jpg"} -{"rects": [{"solidity": 0.9980296036317857, "top": 535, "right": 5210, "bottom": 3780, "left": 1145}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709444f.jpg"} -{"rects": [{"solidity": 0.9980298222026844, "top": 535, "right": 2830, "bottom": 2155, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717910f.jpg"} -{"rects": [{"solidity": 0.9980300807634646, "top": 2330, "right": 3115, "bottom": 3945, "left": 695}, {"solidity": 0.9974525183120503, "top": 410, "right": 3080, "bottom": 2025, "left": 670}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729300f.jpg"} -{"rects": [{"solidity": 0.9980301069356692, "top": 350, "right": 4990, "bottom": 3545, "left": 930}], "shape": {"h": 3850, "w": 6060}, "file": "/usr/local/google/home/danvk/milstein/708112f.jpg"} -{"rects": [{"solidity": 0.9980301687978738, "top": 450, "right": 5065, "bottom": 3640, "left": 1040}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709199f.jpg"} -{"rects": [{"solidity": 0.9980305038238269, "top": 840, "right": 2140, "bottom": 3220, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722400f.jpg"} -{"rects": [{"solidity": 0.998030604030952, "top": 900, "right": 3535, "bottom": 4970, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715491f.jpg"} -{"rects": [{"solidity": 0.9980309568328088, "top": 380, "right": 5070, "bottom": 3665, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730281f.jpg"} -{"rects": [{"solidity": 0.9980309976278685, "top": 435, "right": 3200, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726417f.jpg"} -{"rects": [{"solidity": 0.9980310392803258, "top": 355, "right": 5375, "bottom": 3575, "left": 1385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731271f.jpg"} -{"rects": [{"solidity": 0.9980317210623282, "top": 530, "right": 5040, "bottom": 3740, "left": 1000}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729726f.jpg"} -{"rects": [{"solidity": 0.9980317275494526, "top": 450, "right": 5050, "bottom": 3705, "left": 1045}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722806f.jpg"} -{"rects": [{"solidity": 0.9980318254619632, "top": 1115, "right": 3620, "bottom": 5080, "left": 430}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/731792f.jpg"} -{"rects": [{"solidity": 0.9980318687129139, "top": 395, "right": 3185, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/732477f.jpg"} -{"rects": [{"solidity": 0.9980319008313016, "top": 800, "right": 3890, "bottom": 3200, "left": 2285}, {"solidity": 0.9971492481264388, "top": 795, "right": 2030, "bottom": 3200, "left": 425}, {"solidity": 0.9980963053251025, "top": 800, "right": 5715, "bottom": 3200, "left": 4115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702881f.jpg"} -{"rects": [{"solidity": 0.998032101740981, "top": 410, "right": 3120, "bottom": 2030, "left": 695}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729679f.jpg"} -{"rects": [{"solidity": 0.9980321367941288, "top": 865, "right": 3485, "bottom": 5285, "left": 235}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713636f.jpg"} -{"rects": [{"solidity": 0.9980321433578466, "top": 480, "right": 4560, "bottom": 3530, "left": 1325}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708983f.jpg"} -{"rects": [{"solidity": 0.9980321809818391, "top": 1085, "right": 3470, "bottom": 5125, "left": 220}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721543f.jpg"} -{"rects": [{"solidity": 0.9980322605701266, "top": 735, "right": 3885, "bottom": 3150, "left": 2275}, {"solidity": 0.9959154957102934, "top": 745, "right": 2025, "bottom": 3165, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718613f.jpg"} -{"rects": [{"solidity": 0.9980322843794033, "top": 2125, "right": 2695, "bottom": 3535, "left": 885}, {"solidity": 0.9927748949839387, "top": 705, "right": 2715, "bottom": 2120, "left": 900}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702859f.jpg"} -{"rects": [{"solidity": 0.998032412550059, "top": 400, "right": 5075, "bottom": 3635, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716549f.jpg"} -{"rects": [{"solidity": 0.9980325272292697, "top": 435, "right": 5110, "bottom": 3660, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732724f.jpg"} -{"rects": [{"solidity": 0.9980326956706057, "top": 2075, "right": 3125, "bottom": 3685, "left": 765}, {"solidity": 0.9941887614797904, "top": 375, "right": 2940, "bottom": 1875, "left": 985}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733887f.jpg"} -{"rects": [{"solidity": 0.9980327216477641, "top": 505, "right": 5025, "bottom": 2125, "left": 2605}, {"solidity": 0.9973772194631091, "top": 780, "right": 1950, "bottom": 3165, "left": 325}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706087f.jpg"} -{"rects": [{"solidity": 0.9980328200460189, "top": 515, "right": 3405, "bottom": 2335, "left": 670}], "shape": {"h": 4415, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/706392f.jpg"} -{"rects": [{"solidity": 0.9980328479099411, "top": 390, "right": 3025, "bottom": 2015, "left": 610}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700925f.jpg"} -{"rects": [{"solidity": 0.9980334338467145, "top": 695, "right": 3495, "bottom": 2720, "left": 695}, {"solidity": 0.9982382926845607, "top": 3110, "right": 3480, "bottom": 5125, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732039f.jpg"} -{"rects": [{"solidity": 0.9980334429041018, "top": 475, "right": 5055, "bottom": 3755, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712086f.jpg"} -{"rects": [{"solidity": 0.9980334571887524, "top": 850, "right": 2000, "bottom": 3260, "left": 390}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713515f.jpg"} -{"rects": [{"solidity": 0.9980334604270479, "top": 780, "right": 2405, "bottom": 3185, "left": 795}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705603f.jpg"} -{"rects": [{"solidity": 0.9980339094311209, "top": 2210, "right": 3140, "bottom": 3830, "left": 725}, {"solidity": 0.9980425437826378, "top": 425, "right": 3135, "bottom": 2035, "left": 730}, {"solidity": 0.9975160368432859, "top": 4015, "right": 3135, "bottom": 5625, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732308f.jpg"} -{"rects": [{"solidity": 0.9980339309662383, "top": 4090, "right": 3165, "bottom": 5700, "left": 765}, {"solidity": 0.9967618966872214, "top": 2260, "right": 3190, "bottom": 3865, "left": 780}, {"solidity": 0.9952656205197716, "top": 430, "right": 3180, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734475f.jpg"} -{"rects": [{"solidity": 0.9980341474135842, "top": 250, "right": 5145, "bottom": 3540, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725427f.jpg"} -{"rects": [{"solidity": 0.9980345148469502, "top": 540, "right": 5025, "bottom": 3775, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701810f.jpg"} -{"rects": [{"solidity": 0.998034643035206, "top": 810, "right": 4210, "bottom": 3220, "left": 2585}, {"solidity": 0.9976575589637839, "top": 805, "right": 2500, "bottom": 3220, "left": 880}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702392f.jpg"} -{"rects": [{"solidity": 0.998034741928062, "top": 1925, "right": 2810, "bottom": 4340, "left": 1175}, {"solidity": 0.9964707236295283, "top": 220, "right": 3190, "bottom": 1850, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707938f.jpg"} -{"rects": [{"solidity": 0.9980349451601246, "top": 585, "right": 2665, "bottom": 3710, "left": 600}, {"solidity": 0.9947929034642982, "top": 730, "right": 5045, "bottom": 3485, "left": 3145}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716648f.jpg"} -{"rects": [{"solidity": 0.9980350575184532, "top": 395, "right": 5080, "bottom": 3685, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714377f.jpg"} -{"rects": [{"solidity": 0.9980352015212333, "top": 485, "right": 5095, "bottom": 3740, "left": 1060}], "shape": {"h": 3905, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724872f.jpg"} -{"rects": [{"solidity": 0.9980353697440542, "top": 420, "right": 3180, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705616f.jpg"} -{"rects": [{"solidity": 0.9980354582108844, "top": 805, "right": 2025, "bottom": 3230, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725809f.jpg"} -{"rects": [{"solidity": 0.9980355391726266, "top": 815, "right": 3840, "bottom": 3245, "left": 2220}, {"solidity": 0.9987405012804904, "top": 820, "right": 1980, "bottom": 3240, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721148f.jpg"} -{"rects": [{"solidity": 0.9980356514003872, "top": 515, "right": 5085, "bottom": 3690, "left": 1180}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710193f.jpg"} -{"rects": [{"solidity": 0.9980357009198716, "top": 1400, "right": 3615, "bottom": 5450, "left": 380}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723099f.jpg"} -{"rects": [{"solidity": 0.9980358167129139, "top": 1390, "right": 3480, "bottom": 5465, "left": 535}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/716886f.jpg"} -{"rects": [{"solidity": 0.9980358245036519, "top": 2260, "right": 3200, "bottom": 3875, "left": 775}, {"solidity": 0.9974735481786609, "top": 440, "right": 3190, "bottom": 2050, "left": 765}, {"solidity": 0.9976585492060412, "top": 4090, "right": 3200, "bottom": 5695, "left": 775}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/700802f.jpg"} -{"rects": [{"solidity": 0.998035986663607, "top": 1215, "right": 3555, "bottom": 5220, "left": 300}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723660f.jpg"} -{"rects": [{"solidity": 0.9980362572372103, "top": 760, "right": 2000, "bottom": 3155, "left": 395}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718817f.jpg"} -{"rects": [{"solidity": 0.9980365290816594, "top": 780, "right": 1980, "bottom": 3185, "left": 385}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719283f.jpg"} -{"rects": [{"solidity": 0.9980369324216937, "top": 435, "right": 3075, "bottom": 3630, "left": 1070}, {"solidity": 0.9974981743168205, "top": 440, "right": 5430, "bottom": 3635, "left": 3425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733032f.jpg"} -{"rects": [{"solidity": 0.9980369784741439, "top": 3820, "right": 3265, "bottom": 5810, "left": 450}, {"solidity": 0.9961113433085347, "top": 2090, "right": 3000, "bottom": 3690, "left": 635}, {"solidity": 0.9953428085863304, "top": 375, "right": 2990, "bottom": 1940, "left": 645}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718058f.jpg"} -{"rects": [{"solidity": 0.9980370097885579, "top": 780, "right": 2010, "bottom": 3170, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719895f.jpg"} -{"rects": [{"solidity": 0.9980375518869316, "top": 405, "right": 3200, "bottom": 2000, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720575f.jpg"} -{"rects": [{"solidity": 0.9980375641669126, "top": 370, "right": 5035, "bottom": 3440, "left": 1230}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721496f.jpg"} -{"rects": [{"solidity": 0.9980376820766339, "top": 445, "right": 5025, "bottom": 3605, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720447f.jpg"} -{"rects": [{"solidity": 0.9980376893386527, "top": 445, "right": 3200, "bottom": 2055, "left": 790}, {"solidity": 0.9971884668703351, "top": 4070, "right": 3205, "bottom": 5680, "left": 790}, {"solidity": 0.9958230263393133, "top": 2260, "right": 3205, "bottom": 3875, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710299f.jpg"} -{"rects": [{"solidity": 0.9980377855377048, "top": 260, "right": 2175, "bottom": 1410, "left": 475}, {"solidity": 0.9959956554169883, "top": 1560, "right": 2175, "bottom": 2705, "left": 480}, {"solidity": 0.9922556187381533, "top": 2820, "right": 2145, "bottom": 3940, "left": 470}], "shape": {"h": 4290, "w": 2770}, "file": "/usr/local/google/home/danvk/milstein/708308f.jpg"} -{"rects": [{"solidity": 0.9980378864552103, "top": 410, "right": 5025, "bottom": 3660, "left": 970}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732288f.jpg"} -{"rects": [{"solidity": 0.9980381298947868, "top": 370, "right": 3025, "bottom": 2005, "left": 590}, {"solidity": 0.997955212138778, "top": 2045, "right": 3005, "bottom": 3670, "left": 570}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731155f.jpg"} -{"rects": [{"solidity": 0.9980381562467061, "top": 540, "right": 5130, "bottom": 3775, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734087f.jpg"} -{"rects": [{"solidity": 0.9980381673152676, "top": 1575, "right": 3570, "bottom": 5465, "left": 445}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718047f.jpg"} -{"rects": [{"solidity": 0.9980381699572891, "top": 330, "right": 5180, "bottom": 3760, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709477f.jpg"} -{"rects": [{"solidity": 0.9980381726150176, "top": 1030, "right": 3830, "bottom": 3300, "left": 385}, {"solidity": 0.9989184770328696, "top": 3590, "right": 3530, "bottom": 5410, "left": 810}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711416f.jpg"} -{"rects": [{"solidity": 0.998038207066861, "top": 1030, "right": 3515, "bottom": 5100, "left": 290}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732628f.jpg"} -{"rects": [{"solidity": 0.9980382097373202, "top": 705, "right": 2020, "bottom": 3130, "left": 410}, {"solidity": 0.9977545732396823, "top": 705, "right": 3890, "bottom": 3120, "left": 2275}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705174f.jpg"} -{"rects": [{"solidity": 0.9980384552514592, "top": 2340, "right": 3255, "bottom": 3960, "left": 830}, {"solidity": 0.9971517282081548, "top": 505, "right": 3255, "bottom": 2125, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703680f.jpg"} -{"rects": [{"solidity": 0.9980385072007433, "top": 440, "right": 3045, "bottom": 2055, "left": 630}, {"solidity": 0.9975613532553999, "top": 2320, "right": 3050, "bottom": 3935, "left": 630}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729612f.jpg"} -{"rects": [{"solidity": 0.998038572365981, "top": 445, "right": 4940, "bottom": 3555, "left": 980}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711468f.jpg"} -{"rects": [{"solidity": 0.9980385838933726, "top": 890, "right": 2165, "bottom": 3580, "left": 335}], "shape": {"h": 4415, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/706417f.jpg"} -{"rects": [{"solidity": 0.9980388309490116, "top": 1020, "right": 3455, "bottom": 5030, "left": 290}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713414f.jpg"} -{"rects": [{"solidity": 0.9980388579768311, "top": 465, "right": 3230, "bottom": 2065, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710609f.jpg"} -{"rects": [{"solidity": 0.9980389627144884, "top": 2380, "right": 3230, "bottom": 3995, "left": 815}, {"solidity": 0.9967809666158739, "top": 630, "right": 3230, "bottom": 2245, "left": 815}, {"solidity": 0.9977550729520305, "top": 4140, "right": 3245, "bottom": 5750, "left": 825}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733145f.jpg"} -{"rects": [{"solidity": 0.9980394360981802, "top": 905, "right": 3820, "bottom": 3305, "left": 2235}, {"solidity": 0.996315379445702, "top": 910, "right": 1970, "bottom": 3310, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728538f.jpg"} -{"rects": [{"solidity": 0.9980395369853416, "top": 555, "right": 5265, "bottom": 3485, "left": 895}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719233f.jpg"} -{"rects": [{"solidity": 0.9980397065086295, "top": 785, "right": 2055, "bottom": 3190, "left": 440}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713502f.jpg"} -{"rects": [{"solidity": 0.9980401180369693, "top": 930, "right": 3585, "bottom": 2960, "left": 510}, {"solidity": 0.9960537646958623, "top": 770, "right": 5570, "bottom": 3215, "left": 3900}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715540f.jpg"} -{"rects": [{"solidity": 0.9980406102501104, "top": 315, "right": 5175, "bottom": 3560, "left": 1045}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702568f.jpg"} -{"rects": [{"solidity": 0.9980410116333269, "top": 775, "right": 3835, "bottom": 3190, "left": 2235}, {"solidity": 0.996199218801373, "top": 780, "right": 2000, "bottom": 3180, "left": 405}, {"solidity": 0.993884646223005, "top": 795, "right": 5670, "bottom": 3200, "left": 4075}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733985f.jpg"} -{"rects": [{"solidity": 0.9980413642375802, "top": 395, "right": 5080, "bottom": 3575, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725310f.jpg"} -{"rects": [{"solidity": 0.9980414423917768, "top": 1095, "right": 2700, "bottom": 4105, "left": 265}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516871.jpg"} -{"rects": [{"solidity": 0.9980415913432568, "top": 385, "right": 3230, "bottom": 2005, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706298f.jpg"} -{"rects": [{"solidity": 0.9980416164950685, "top": 855, "right": 3910, "bottom": 3225, "left": 2340}, {"solidity": 0.996009947986822, "top": 835, "right": 2020, "bottom": 3205, "left": 445}, {"solidity": 0.9952930541111858, "top": 875, "right": 5795, "bottom": 3240, "left": 4225}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731685f.jpg"} -{"rects": [{"solidity": 0.9980418089032607, "top": 695, "right": 4790, "bottom": 3325, "left": 1330}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700931f.jpg"} -{"rects": [{"solidity": 0.9980418244984018, "top": 405, "right": 5015, "bottom": 3675, "left": 975}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717854f.jpg"} -{"rects": [{"solidity": 0.9980422345753043, "top": 825, "right": 1940, "bottom": 3230, "left": 325}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711040f.jpg"} -{"rects": [{"solidity": 0.998042251538688, "top": 845, "right": 2045, "bottom": 3275, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728737f.jpg"} -{"rects": [{"solidity": 0.9980424239630864, "top": 675, "right": 4825, "bottom": 3435, "left": 1265}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723443f.jpg"} -{"rects": [{"solidity": 0.9980424313872202, "top": 890, "right": 3445, "bottom": 2915, "left": 585}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721046f.jpg"} -{"rects": [{"solidity": 0.9980424488071934, "top": 590, "right": 2525, "bottom": 2070, "left": 430}, {"solidity": 0.9964327454421807, "top": 2440, "right": 2515, "bottom": 3920, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716020f.jpg"} -{"rects": [{"solidity": 0.9980428898605038, "top": 355, "right": 3190, "bottom": 1980, "left": 775}, {"solidity": 0.99802455108569, "top": 2240, "right": 3180, "bottom": 3860, "left": 770}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714381f.jpg"} -{"rects": [{"solidity": 0.9980430657102356, "top": 450, "right": 3180, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734399f.jpg"} -{"rects": [{"solidity": 0.9980431739034017, "top": 475, "right": 5130, "bottom": 3720, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705191f.jpg"} -{"rects": [{"solidity": 0.9980432153553095, "top": 410, "right": 4175, "bottom": 2820, "left": 1160}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1510019.jpg"} -{"rects": [{"solidity": 0.998043304862242, "top": 430, "right": 3825, "bottom": 2555, "left": 970}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508065.jpg"} -{"rects": [{"solidity": 0.998043649075544, "top": 835, "right": 3945, "bottom": 3265, "left": 2330}, {"solidity": 0.9971180445112724, "top": 820, "right": 2090, "bottom": 3250, "left": 475}, {"solidity": 0.9968447890176516, "top": 865, "right": 5770, "bottom": 3280, "left": 4165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723415f.jpg"} -{"rects": [{"solidity": 0.9980436721424667, "top": 440, "right": 5085, "bottom": 3690, "left": 1060}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713273f.jpg"} -{"rects": [{"solidity": 0.9980440709479148, "top": 1025, "right": 3540, "bottom": 5065, "left": 260}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714392f.jpg"} -{"rects": [{"solidity": 0.9980441397549316, "top": 460, "right": 5125, "bottom": 3730, "left": 1090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723411f.jpg"} -{"rects": [{"solidity": 0.9980444009306129, "top": 455, "right": 3660, "bottom": 2285, "left": 935}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706564f.jpg"} -{"rects": [{"solidity": 0.9980444331078248, "top": 375, "right": 5260, "bottom": 3640, "left": 1260}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723659f.jpg"} -{"rects": [{"solidity": 0.9980446811166119, "top": 810, "right": 2025, "bottom": 3225, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714965f.jpg"} -{"rects": [{"solidity": 0.998044731064764, "top": 425, "right": 2880, "bottom": 1900, "left": 635}, {"solidity": 0.9926606070418084, "top": 445, "right": 5540, "bottom": 1910, "left": 3285}, {"solidity": 0.9966027063635281, "top": 2170, "right": 5460, "bottom": 3540, "left": 3360}, {"solidity": 0.9979607373973571, "top": 2165, "right": 2820, "bottom": 3510, "left": 750}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710756f.jpg"} -{"rects": [{"solidity": 0.9980449356432285, "top": 455, "right": 5005, "bottom": 3545, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711464f.jpg"} -{"rects": [{"solidity": 0.9980451132646608, "top": 805, "right": 1975, "bottom": 3225, "left": 355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718700f.jpg"} -{"rects": [{"solidity": 0.9980452566280517, "top": 2185, "right": 3165, "bottom": 3810, "left": 745}, {"solidity": 0.9970453926391181, "top": 320, "right": 3170, "bottom": 1945, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721547f.jpg"} -{"rects": [{"solidity": 0.9980453350854139, "top": 1010, "right": 3370, "bottom": 4935, "left": 435}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718918f.jpg"} -{"rects": [{"solidity": 0.9980456214217863, "top": 2255, "right": 3210, "bottom": 3865, "left": 775}, {"solidity": 0.9975823404618341, "top": 410, "right": 3205, "bottom": 2015, "left": 770}, {"solidity": 0.9961223930190171, "top": 4125, "right": 3225, "bottom": 5735, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706151f.jpg"} -{"rects": [{"solidity": 0.9980456285499519, "top": 515, "right": 4915, "bottom": 3700, "left": 955}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702360f.jpg"} -{"rects": [{"solidity": 0.9980458580832128, "top": 490, "right": 4880, "bottom": 3500, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730020f.jpg"} -{"rects": [{"solidity": 0.9980458897236311, "top": 605, "right": 4770, "bottom": 3305, "left": 1325}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712024f.jpg"} -{"rects": [{"solidity": 0.998045948881105, "top": 970, "right": 1755, "bottom": 3275, "left": 325}, {"solidity": 0.9980410027551673, "top": 1230, "right": 3340, "bottom": 3020, "left": 1995}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713867f.jpg"} -{"rects": [{"solidity": 0.9980461474904678, "top": 505, "right": 3135, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713281f.jpg"} -{"rects": [{"solidity": 0.9980461547419566, "top": 720, "right": 5755, "bottom": 3130, "left": 4140}, {"solidity": 0.9996104882529749, "top": 725, "right": 2010, "bottom": 3130, "left": 400}, {"solidity": 0.9974012928729971, "top": 725, "right": 3870, "bottom": 3130, "left": 2255}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731168f.jpg"} -{"rects": [{"solidity": 0.9980461678246196, "top": 780, "right": 3815, "bottom": 3155, "left": 2260}, {"solidity": 0.9921023160585095, "top": 780, "right": 2000, "bottom": 3150, "left": 450}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722534f.jpg"} -{"rects": [{"solidity": 0.9980461949162379, "top": 405, "right": 3175, "bottom": 2020, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704352f.jpg"} -{"rects": [{"solidity": 0.9980465555353045, "top": 755, "right": 2730, "bottom": 3530, "left": 785}, {"solidity": 0.9966750729088886, "top": 745, "right": 5280, "bottom": 3490, "left": 3325}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704927f.jpg"} -{"rects": [{"solidity": 0.9980465849290953, "top": 950, "right": 3490, "bottom": 4990, "left": 195}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712393f.jpg"} -{"rects": [{"solidity": 0.9980465894712433, "top": 840, "right": 2265, "bottom": 3575, "left": 440}], "shape": {"h": 4420, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/703409f.jpg"} -{"rects": [{"solidity": 0.9980466301069734, "top": 460, "right": 3175, "bottom": 2060, "left": 790}, {"solidity": 0.9956297935862459, "top": 2220, "right": 2865, "bottom": 3620, "left": 1105}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717853f.jpg"} -{"rects": [{"solidity": 0.998046680730818, "top": 480, "right": 5080, "bottom": 3770, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707576f.jpg"} -{"rects": [{"solidity": 0.998046715729023, "top": 255, "right": 5170, "bottom": 3505, "left": 1135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725893f.jpg"} -{"rects": [{"solidity": 0.9980467186474327, "top": 825, "right": 2040, "bottom": 3255, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722470f.jpg"} -{"rects": [{"solidity": 0.9980467692033176, "top": 2065, "right": 3180, "bottom": 3690, "left": 750}, {"solidity": 0.9975656368746989, "top": 360, "right": 5715, "bottom": 1985, "left": 3285}, {"solidity": 0.9992773018416012, "top": 350, "right": 3155, "bottom": 1975, "left": 735}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701427f.jpg"} -{"rects": [{"solidity": 0.9980469381615348, "top": 360, "right": 5285, "bottom": 3580, "left": 1270}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730739f.jpg"} -{"rects": [{"solidity": 0.9980469516241004, "top": 335, "right": 3990, "bottom": 2780, "left": 965}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516905.jpg"} -{"rects": [{"solidity": 0.9980469998593584, "top": 2140, "right": 3180, "bottom": 3765, "left": 755}, {"solidity": 0.9976899843865981, "top": 315, "right": 3190, "bottom": 1945, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704437f.jpg"} -{"rects": [{"solidity": 0.9980471385615024, "top": 885, "right": 2230, "bottom": 3610, "left": 415}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706400f.jpg"} -{"rects": [{"solidity": 0.998047159637413, "top": 3350, "right": 3180, "bottom": 4965, "left": 770}, {"solidity": 0.996952029281249, "top": 995, "right": 3185, "bottom": 2610, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730963f.jpg"} -{"rects": [{"solidity": 0.9980473572718884, "top": 435, "right": 3050, "bottom": 2045, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728704f.jpg"} -{"rects": [{"solidity": 0.998047885849813, "top": 1180, "right": 3550, "bottom": 5280, "left": 345}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707780f.jpg"} -{"rects": [{"solidity": 0.9980484935974551, "top": 970, "right": 3355, "bottom": 4840, "left": 320}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708507f.jpg"} -{"rects": [{"solidity": 0.9980486294233476, "top": 355, "right": 5345, "bottom": 3685, "left": 1265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714118f.jpg"} -{"rects": [{"solidity": 0.9980491865915748, "top": 285, "right": 2800, "bottom": 2735, "left": 1145}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700006f.jpg"} -{"rects": [{"solidity": 0.9980496234796211, "top": 1025, "right": 3525, "bottom": 5085, "left": 295}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/716974f.jpg"} -{"rects": [{"solidity": 0.9980498843446259, "top": 295, "right": 2915, "bottom": 1910, "left": 895}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723678f.jpg"} -{"rects": [{"solidity": 0.9980503177687904, "top": 585, "right": 4950, "bottom": 3690, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720637f.jpg"} -{"rects": [{"solidity": 0.9980508462933451, "top": 940, "right": 2690, "bottom": 3955, "left": 255}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516891.jpg"} -{"rects": [{"solidity": 0.998050960597991, "top": 330, "right": 3165, "bottom": 2225, "left": 365}, {"solidity": 0.9971236397971741, "top": 2265, "right": 3140, "bottom": 4145, "left": 380}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706028f.jpg"} -{"rects": [{"solidity": 0.9980517745729577, "top": 950, "right": 3535, "bottom": 5000, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712976f.jpg"} -{"rects": [{"solidity": 0.9980519522198759, "top": 800, "right": 3905, "bottom": 3220, "left": 2285}, {"solidity": 0.9966669379119538, "top": 790, "right": 2065, "bottom": 3205, "left": 455}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718893f.jpg"} -{"rects": [{"solidity": 0.998052083263365, "top": 490, "right": 5100, "bottom": 3710, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718223f.jpg"} -{"rects": [{"solidity": 0.998052140815173, "top": 540, "right": 2955, "bottom": 3580, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710283f.jpg"} -{"rects": [{"solidity": 0.9980524321180874, "top": 425, "right": 5210, "bottom": 3610, "left": 1160}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733597f.jpg"} -{"rects": [{"solidity": 0.9980524684059798, "top": 785, "right": 2040, "bottom": 3190, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713389f.jpg"} -{"rects": [{"solidity": 0.9980524819897459, "top": 485, "right": 5045, "bottom": 3760, "left": 1010}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700790f.jpg"} -{"rects": [{"solidity": 0.9980528681637518, "top": 355, "right": 3195, "bottom": 1970, "left": 770}, {"solidity": 0.9961987074321049, "top": 2235, "right": 3185, "bottom": 3855, "left": 755}, {"solidity": 0.9967049471108407, "top": 4130, "right": 3165, "bottom": 5740, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732970f.jpg"} -{"rects": [{"solidity": 0.9980532484160074, "top": 820, "right": 1950, "bottom": 3210, "left": 345}, {"solidity": 0.9953992910382912, "top": 800, "right": 3740, "bottom": 3205, "left": 2140}, {"solidity": 0.9969203245377186, "top": 835, "right": 5605, "bottom": 3240, "left": 4015}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724540f.jpg"} -{"rects": [{"solidity": 0.9980536212717425, "top": 580, "right": 3370, "bottom": 2185, "left": 955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710979f.jpg"} -{"rects": [{"solidity": 0.9980539526846057, "top": 1265, "right": 3620, "bottom": 5280, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/727851f.jpg"} -{"rects": [{"solidity": 0.998053977551943, "top": 435, "right": 3245, "bottom": 2035, "left": 845}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718266f.jpg"} -{"rects": [{"solidity": 0.998054059817668, "top": 560, "right": 2710, "bottom": 3590, "left": 680}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714936f.jpg"} -{"rects": [{"solidity": 0.9980540729822545, "top": 485, "right": 5105, "bottom": 3770, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701338f.jpg"} -{"rects": [{"solidity": 0.9980544432179056, "top": 4115, "right": 3160, "bottom": 5725, "left": 745}, {"solidity": 0.9973331779844781, "top": 2255, "right": 3165, "bottom": 3865, "left": 745}, {"solidity": 0.9974069127276282, "top": 415, "right": 3155, "bottom": 2015, "left": 740}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700118f.jpg"} -{"rects": [{"solidity": 0.9980546412739484, "top": 680, "right": 2805, "bottom": 2115, "left": 960}, {"solidity": 0.9975376712163422, "top": 2165, "right": 2800, "bottom": 3590, "left": 965}, {"solidity": 0.9949169052457736, "top": 705, "right": 5210, "bottom": 2120, "left": 3400}, {"solidity": 0.9964660955103918, "top": 2170, "right": 5235, "bottom": 3545, "left": 3390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702746f.jpg"} -{"rects": [{"solidity": 0.9980547381299575, "top": 910, "right": 3490, "bottom": 4965, "left": 310}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714758f.jpg"} -{"rects": [{"solidity": 0.9980548475498745, "top": 2280, "right": 3135, "bottom": 3920, "left": 725}, {"solidity": 0.9957646254290212, "top": 485, "right": 3135, "bottom": 2105, "left": 720}, {"solidity": 0.9983653254782637, "top": 4135, "right": 3125, "bottom": 5755, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726660f.jpg"} -{"rects": [{"solidity": 0.9980549084482241, "top": 4140, "right": 3185, "bottom": 5750, "left": 765}, {"solidity": 0.9962693545688103, "top": 2280, "right": 3180, "bottom": 3880, "left": 780}, {"solidity": 0.9975172704462987, "top": 425, "right": 3185, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729769f.jpg"} -{"rects": [{"solidity": 0.9980549838110601, "top": 420, "right": 5105, "bottom": 3640, "left": 1105}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705768f.jpg"} -{"rects": [{"solidity": 0.9980549897104212, "top": 315, "right": 5115, "bottom": 3545, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707132f.jpg"} -{"rects": [{"solidity": 0.9980551022119584, "top": 2305, "right": 3135, "bottom": 3920, "left": 720}, {"solidity": 0.9961255800895114, "top": 445, "right": 3110, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716825f.jpg"} -{"rects": [{"solidity": 0.9980552843906846, "top": 435, "right": 2475, "bottom": 3660, "left": 440}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733079f.jpg"} -{"rects": [{"solidity": 0.998055755976394, "top": 870, "right": 3315, "bottom": 4605, "left": 430}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721509f.jpg"} -{"rects": [{"solidity": 0.9980558127361976, "top": 400, "right": 5100, "bottom": 3600, "left": 1110}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731062f.jpg"} -{"rects": [{"solidity": 0.9980558641865833, "top": 995, "right": 3485, "bottom": 5020, "left": 230}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716945f.jpg"} -{"rects": [{"solidity": 0.998056028127481, "top": 455, "right": 3330, "bottom": 2430, "left": 520}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706262f.jpg"} -{"rects": [{"solidity": 0.9980565682124992, "top": 760, "right": 3885, "bottom": 3160, "left": 2275}, {"solidity": 0.9956712837421935, "top": 770, "right": 2010, "bottom": 3160, "left": 420}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713146f.jpg"} -{"rects": [{"solidity": 0.9980568020513759, "top": 1120, "right": 3425, "bottom": 5160, "left": 165}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724889f.jpg"} -{"rects": [{"solidity": 0.998056830547442, "top": 600, "right": 2735, "bottom": 3625, "left": 700}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715559f.jpg"} -{"rects": [{"solidity": 0.998056906251292, "top": 775, "right": 3940, "bottom": 3210, "left": 2315}, {"solidity": 0.9971871591583163, "top": 770, "right": 5785, "bottom": 3200, "left": 4160}, {"solidity": 0.9960506728064765, "top": 795, "right": 2060, "bottom": 3210, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731818f.jpg"} -{"rects": [{"solidity": 0.998057100919355, "top": 405, "right": 3180, "bottom": 2005, "left": 780}, {"solidity": 0.9965094206164606, "top": 2245, "right": 3180, "bottom": 3840, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724299f.jpg"} -{"rects": [{"solidity": 0.9980573109645631, "top": 445, "right": 3085, "bottom": 2050, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714950f.jpg"} -{"rects": [{"solidity": 0.9980573399125637, "top": 805, "right": 3810, "bottom": 3190, "left": 2215}, {"solidity": 0.9950000166002105, "top": 785, "right": 2005, "bottom": 3175, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730564f.jpg"} -{"rects": [{"solidity": 0.9980574257737973, "top": 430, "right": 2820, "bottom": 2070, "left": 385}], "shape": {"h": 6140, "w": 3590}, "file": "/usr/local/google/home/danvk/milstein/701245f.jpg"} -{"rects": [{"solidity": 0.9980577466645658, "top": 2230, "right": 3230, "bottom": 3840, "left": 800}, {"solidity": 0.9962469259466158, "top": 395, "right": 3245, "bottom": 2015, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726811f.jpg"} -{"rects": [{"solidity": 0.9980579182850681, "top": 415, "right": 3250, "bottom": 2135, "left": 575}, {"solidity": 0.9547935416962083, "top": 2310, "right": 3245, "bottom": 4035, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722953f.jpg"} -{"rects": [{"solidity": 0.9980581812852641, "top": 480, "right": 3165, "bottom": 2065, "left": 780}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/701768f.jpg"} -{"rects": [{"solidity": 0.998058654518158, "top": 2225, "right": 3165, "bottom": 3840, "left": 755}, {"solidity": 0.9965418598518607, "top": 415, "right": 3145, "bottom": 2005, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714981f.jpg"} -{"rects": [{"solidity": 0.9980587125823343, "top": 495, "right": 3185, "bottom": 2100, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724433f.jpg"} -{"rects": [{"solidity": 0.9980587612027648, "top": 430, "right": 5045, "bottom": 3690, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715372f.jpg"} -{"rects": [{"solidity": 0.9980589540962327, "top": 1305, "right": 3515, "bottom": 5240, "left": 345}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/717189f.jpg"} -{"rects": [{"solidity": 0.9980590294362555, "top": 1105, "right": 3550, "bottom": 5095, "left": 340}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721497f.jpg"} -{"rects": [{"solidity": 0.99805917892307, "top": 765, "right": 2030, "bottom": 3190, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731811f.jpg"} -{"rects": [{"solidity": 0.9980592481046837, "top": 2215, "right": 3185, "bottom": 3835, "left": 790}, {"solidity": 0.9985164218437362, "top": 395, "right": 3200, "bottom": 2010, "left": 805}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/719093f.jpg"} -{"rects": [{"solidity": 0.9980592531421737, "top": 535, "right": 5075, "bottom": 3610, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720043f.jpg"} -{"rects": [{"solidity": 0.9980593118725026, "top": 805, "right": 2020, "bottom": 3205, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712007f.jpg"} -{"rects": [{"solidity": 0.9980593151616944, "top": 875, "right": 3160, "bottom": 2715, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703015f.jpg"} -{"rects": [{"solidity": 0.9980594330301725, "top": 470, "right": 3555, "bottom": 2290, "left": 825}], "shape": {"h": 6860, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706399f.jpg"} -{"rects": [{"solidity": 0.99805946967209, "top": 525, "right": 5060, "bottom": 3730, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734671f.jpg"} -{"rects": [{"solidity": 0.9980597918954455, "top": 455, "right": 4885, "bottom": 3660, "left": 905}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710781f.jpg"} -{"rects": [{"solidity": 0.9980600417556574, "top": 440, "right": 5105, "bottom": 3700, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720708f.jpg"} -{"rects": [{"solidity": 0.9980600895827001, "top": 475, "right": 5070, "bottom": 3740, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734479f.jpg"} -{"rects": [{"solidity": 0.9980601071029657, "top": 350, "right": 3905, "bottom": 2760, "left": 900}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507543.jpg"} -{"rects": [{"solidity": 0.9980601326701968, "top": 790, "right": 2055, "bottom": 3220, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708024f.jpg"} -{"rects": [{"solidity": 0.9980601895993064, "top": 1215, "right": 3620, "bottom": 5325, "left": 370}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719123f.jpg"} -{"rects": [{"solidity": 0.9980603228509486, "top": 605, "right": 2445, "bottom": 3425, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705747f.jpg"} -{"rects": [{"solidity": 0.9980604153107383, "top": 785, "right": 2000, "bottom": 3195, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721288f.jpg"} -{"rects": [{"solidity": 0.9980604784153242, "top": 1120, "right": 3480, "bottom": 5150, "left": 205}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712394f.jpg"} -{"rects": [{"solidity": 0.9980610335634924, "top": 1060, "right": 2725, "bottom": 4215, "left": 320}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507863.jpg"} -{"rects": [{"solidity": 0.9980613468710468, "top": 1045, "right": 3880, "bottom": 2975, "left": 2290}, {"solidity": 0.9980707155363411, "top": 1030, "right": 2020, "bottom": 2955, "left": 440}, {"solidity": 0.9956733844166593, "top": 1050, "right": 5715, "bottom": 2950, "left": 4110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719575f.jpg"} -{"rects": [{"solidity": 0.9980616827367587, "top": 465, "right": 3125, "bottom": 2055, "left": 730}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724178f.jpg"} -{"rects": [{"solidity": 0.9980618652608729, "top": 840, "right": 2010, "bottom": 3250, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700491f.jpg"} -{"rects": [{"solidity": 0.998061889884232, "top": 260, "right": 3160, "bottom": 1875, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712368f.jpg"} -{"rects": [{"solidity": 0.9980621363618516, "top": 295, "right": 3245, "bottom": 2260, "left": 460}, {"solidity": 0.9952964619948307, "top": 2400, "right": 3085, "bottom": 4025, "left": 655}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706652f.jpg"} -{"rects": [{"solidity": 0.9980627061209416, "top": 410, "right": 3230, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726817f.jpg"} -{"rects": [{"solidity": 0.9980627237803005, "top": 435, "right": 5090, "bottom": 3735, "left": 1030}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714406f.jpg"} -{"rects": [{"solidity": 0.9980629758097211, "top": 475, "right": 3195, "bottom": 2090, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709596f.jpg"} -{"rects": [{"solidity": 0.9980630107295928, "top": 1145, "right": 3480, "bottom": 5135, "left": 255}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733292f.jpg"} -{"rects": [{"solidity": 0.9980633818529062, "top": 740, "right": 2515, "bottom": 3550, "left": 510}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719640f.jpg"} -{"rects": [{"solidity": 0.9980638265504699, "top": 485, "right": 5295, "bottom": 3410, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716818f.jpg"} -{"rects": [{"solidity": 0.9980638362185169, "top": 610, "right": 2480, "bottom": 2085, "left": 385}, {"solidity": 0.9985510568280423, "top": 2455, "right": 2470, "bottom": 3930, "left": 385}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716047f.jpg"} -{"rects": [{"solidity": 0.998063847844256, "top": 820, "right": 2045, "bottom": 3245, "left": 435}, {"solidity": 0.99742790864708, "top": 835, "right": 3865, "bottom": 3245, "left": 2250}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708028f.jpg"} -{"rects": [{"solidity": 0.9980639321184319, "top": 415, "right": 3145, "bottom": 2030, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729070f.jpg"} -{"rects": [{"solidity": 0.9980639411830233, "top": 870, "right": 3355, "bottom": 2875, "left": 540}, {"solidity": 0.995358928191995, "top": 3350, "right": 3350, "bottom": 5350, "left": 515}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729243f.jpg"} -{"rects": [{"solidity": 0.9980640749456625, "top": 2250, "right": 3235, "bottom": 3865, "left": 805}, {"solidity": 0.9955748777268846, "top": 4090, "right": 3265, "bottom": 5710, "left": 830}, {"solidity": 0.9972704256126144, "top": 400, "right": 3195, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719037f.jpg"} -{"rects": [{"solidity": 0.9980642130676542, "top": 385, "right": 5100, "bottom": 3275, "left": 1095}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700770f.jpg"} -{"rects": [{"solidity": 0.9980644237934727, "top": 480, "right": 5060, "bottom": 3680, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732369f.jpg"} -{"rects": [{"solidity": 0.9980646459355967, "top": 410, "right": 3170, "bottom": 2040, "left": 750}, {"solidity": 0.9963950185711165, "top": 4135, "right": 3165, "bottom": 5750, "left": 735}, {"solidity": 0.9980839142341947, "top": 2275, "right": 3175, "bottom": 3890, "left": 760}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734532f.jpg"} -{"rects": [{"solidity": 0.9980647305283872, "top": 800, "right": 3865, "bottom": 3205, "left": 2260}, {"solidity": 0.996721236673913, "top": 800, "right": 2030, "bottom": 3205, "left": 420}, {"solidity": 0.9969072739735462, "top": 810, "right": 5690, "bottom": 3210, "left": 4090}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721671f.jpg"} -{"rects": [{"solidity": 0.9980647839747884, "top": 435, "right": 5230, "bottom": 3685, "left": 1130}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732702f.jpg"} -{"rects": [{"solidity": 0.9980649083723906, "top": 1075, "right": 3910, "bottom": 5670, "left": 290}], "shape": {"h": 6920, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708846f.jpg"} -{"rects": [{"solidity": 0.998064941866063, "top": 370, "right": 3365, "bottom": 2325, "left": 620}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718530f.jpg"} -{"rects": [{"solidity": 0.9980649525506853, "top": 395, "right": 3205, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725245f.jpg"} -{"rects": [{"solidity": 0.9980649954774519, "top": 2260, "right": 3075, "bottom": 3880, "left": 670}, {"solidity": 0.9957802491045579, "top": 390, "right": 3095, "bottom": 2010, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734410f.jpg"} -{"rects": [{"solidity": 0.9980651322223695, "top": 405, "right": 5040, "bottom": 3660, "left": 1025}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713162f.jpg"} -{"rects": [{"solidity": 0.9980651328714022, "top": 425, "right": 5145, "bottom": 3655, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732647f.jpg"} -{"rects": [{"solidity": 0.9980651348200519, "top": 320, "right": 5230, "bottom": 3580, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718467f.jpg"} -{"rects": [{"solidity": 0.9980651770566659, "top": 580, "right": 2840, "bottom": 3610, "left": 800}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715467f.jpg"} -{"rects": [{"solidity": 0.9980652497717699, "top": 2240, "right": 3180, "bottom": 3865, "left": 760}, {"solidity": 0.9982179561823089, "top": 415, "right": 3170, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704089f.jpg"} -{"rects": [{"solidity": 0.9980652548344163, "top": 440, "right": 5005, "bottom": 3635, "left": 980}], "shape": {"h": 3855, "w": 6075}, "file": "/usr/local/google/home/danvk/milstein/720365f.jpg"} -{"rects": [{"solidity": 0.9980652654691254, "top": 420, "right": 3055, "bottom": 2050, "left": 625}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704552f.jpg"} -{"rects": [{"solidity": 0.998065471886679, "top": 4095, "right": 3105, "bottom": 5715, "left": 685}, {"solidity": 0.9991694245206485, "top": 2210, "right": 3110, "bottom": 3830, "left": 700}, {"solidity": 0.998253770268738, "top": 335, "right": 3115, "bottom": 1950, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710512f.jpg"} -{"rects": [{"solidity": 0.998065680962369, "top": 1025, "right": 3475, "bottom": 5050, "left": 205}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712404f.jpg"} -{"rects": [{"solidity": 0.9980658276863504, "top": 405, "right": 2610, "bottom": 3630, "left": 595}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733099f.jpg"} -{"rects": [{"solidity": 0.9980660897735508, "top": 350, "right": 5060, "bottom": 3635, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730825f.jpg"} -{"rects": [{"solidity": 0.998066487662271, "top": 470, "right": 3175, "bottom": 2065, "left": 790}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/711140f.jpg"} -{"rects": [{"solidity": 0.9980668063812498, "top": 505, "right": 5015, "bottom": 3795, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708047f.jpg"} -{"rects": [{"solidity": 0.9980668971964907, "top": 450, "right": 5040, "bottom": 3590, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711466f.jpg"} -{"rects": [{"solidity": 0.9980673407763924, "top": 830, "right": 2045, "bottom": 3195, "left": 480}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713215f.jpg"} -{"rects": [{"solidity": 0.9980673603670224, "top": 955, "right": 3550, "bottom": 5055, "left": 300}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710892f.jpg"} -{"rects": [{"solidity": 0.9980673979109538, "top": 425, "right": 5110, "bottom": 3645, "left": 1110}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731504f.jpg"} -{"rects": [{"solidity": 0.9980677415724919, "top": 3975, "right": 3240, "bottom": 5590, "left": 815}, {"solidity": 0.9978661019185772, "top": 2175, "right": 3215, "bottom": 3785, "left": 785}, {"solidity": 0.9962866105417748, "top": 435, "right": 3225, "bottom": 2050, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733228f.jpg"} -{"rects": [{"solidity": 0.9980687879345227, "top": 720, "right": 2090, "bottom": 3115, "left": 490}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710465f.jpg"} -{"rects": [{"solidity": 0.9980688516971057, "top": 480, "right": 5090, "bottom": 3760, "left": 1050}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700670f.jpg"} -{"rects": [{"solidity": 0.9980693181682417, "top": 640, "right": 3325, "bottom": 2565, "left": 585}, {"solidity": 0.9956315212147251, "top": 3245, "right": 3300, "bottom": 5175, "left": 570}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715473f.jpg"} -{"rects": [{"solidity": 0.998069394677446, "top": 345, "right": 3520, "bottom": 2180, "left": 830}, {"solidity": 0.9972151078470701, "top": 2460, "right": 3510, "bottom": 4280, "left": 815}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706398f.jpg"} -{"rects": [{"solidity": 0.9980696968137128, "top": 805, "right": 5625, "bottom": 3225, "left": 4010}, {"solidity": 0.9955049784788718, "top": 805, "right": 3815, "bottom": 3225, "left": 2200}, {"solidity": 0.9642087793265885, "top": 915, "right": 1930, "bottom": 3125, "left": 525}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719754f.jpg"} -{"rects": [{"solidity": 0.998069824206424, "top": 485, "right": 5050, "bottom": 3720, "left": 1035}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730676f.jpg"} -{"rects": [{"solidity": 0.9980698276735201, "top": 430, "right": 5115, "bottom": 3670, "left": 1095}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732669f.jpg"} -{"rects": [{"solidity": 0.9980703028802301, "top": 440, "right": 5155, "bottom": 3685, "left": 1140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714939f.jpg"} -{"rects": [{"solidity": 0.9980704495304975, "top": 4045, "right": 3195, "bottom": 5670, "left": 790}, {"solidity": 0.995286277508764, "top": 2200, "right": 3205, "bottom": 3835, "left": 780}, {"solidity": 0.9952850019079896, "top": 365, "right": 3195, "bottom": 1995, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732830f.jpg"} -{"rects": [{"solidity": 0.998070458334472, "top": 675, "right": 4805, "bottom": 3320, "left": 1330}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701724f.jpg"} -{"rects": [{"solidity": 0.9980705454802287, "top": 770, "right": 2065, "bottom": 3190, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713322f.jpg"} -{"rects": [{"solidity": 0.9980707913298335, "top": 445, "right": 3190, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719450f.jpg"} -{"rects": [{"solidity": 0.9980708037566185, "top": 4145, "right": 3105, "bottom": 5765, "left": 690}, {"solidity": 0.9980343996204358, "top": 425, "right": 3105, "bottom": 2045, "left": 695}, {"solidity": 0.9980240419032688, "top": 2300, "right": 3115, "bottom": 3910, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731020f.jpg"} -{"rects": [{"solidity": 0.9980708214187787, "top": 780, "right": 3825, "bottom": 3185, "left": 2220}, {"solidity": 0.9953621620212239, "top": 795, "right": 5690, "bottom": 3205, "left": 4080}, {"solidity": 0.9968749387723114, "top": 785, "right": 1980, "bottom": 3185, "left": 370}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732406f.jpg"} -{"rects": [{"solidity": 0.9980709346704779, "top": 4080, "right": 3195, "bottom": 5705, "left": 770}, {"solidity": 0.9970963642126088, "top": 2220, "right": 3205, "bottom": 3845, "left": 775}, {"solidity": 0.9970368457578154, "top": 385, "right": 3225, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703368f.jpg"} -{"rects": [{"solidity": 0.9980710111036823, "top": 635, "right": 3870, "bottom": 3065, "left": 2250}, {"solidity": 0.9969564341685023, "top": 635, "right": 2040, "bottom": 3070, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727319f.jpg"} -{"rects": [{"solidity": 0.9980710480965064, "top": 2265, "right": 3230, "bottom": 3865, "left": 820}, {"solidity": 0.9974386808386434, "top": 445, "right": 3220, "bottom": 2040, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733515f.jpg"} -{"rects": [{"solidity": 0.9980710752053737, "top": 430, "right": 3200, "bottom": 2035, "left": 780}, {"solidity": 0.9963694071543083, "top": 2270, "right": 3185, "bottom": 3900, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706949f.jpg"} -{"rects": [{"solidity": 0.9980711344265797, "top": 515, "right": 3230, "bottom": 2520, "left": 410}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729746f.jpg"} -{"rects": [{"solidity": 0.9980713406486351, "top": 740, "right": 2090, "bottom": 3135, "left": 495}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709799f.jpg"} -{"rects": [{"solidity": 0.9980713659324266, "top": 2300, "right": 3170, "bottom": 3915, "left": 760}, {"solidity": 0.997133481199009, "top": 425, "right": 3170, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/722881f.jpg"} -{"rects": [{"solidity": 0.9980714704832403, "top": 760, "right": 3345, "bottom": 2815, "left": 355}, {"solidity": 0.9974101997290271, "top": 2840, "right": 3035, "bottom": 4455, "left": 625}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715282f.jpg"} -{"rects": [{"solidity": 0.9980720996060377, "top": 855, "right": 3895, "bottom": 3265, "left": 2275}, {"solidity": 0.9980010204806593, "top": 860, "right": 2055, "bottom": 3265, "left": 435}, {"solidity": 0.996968743001983, "top": 870, "right": 5755, "bottom": 3270, "left": 4140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720173f.jpg"} -{"rects": [{"solidity": 0.9980723156730292, "top": 930, "right": 3615, "bottom": 4935, "left": 355}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710084f.jpg"} -{"rects": [{"solidity": 0.99807241604608, "top": 830, "right": 2015, "bottom": 3235, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714663f.jpg"} -{"rects": [{"solidity": 0.9980724662439845, "top": 975, "right": 2200, "bottom": 3385, "left": 580}, {"solidity": 0.9979078070634253, "top": 970, "right": 4095, "bottom": 3375, "left": 2485}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707767f.jpg"} -{"rects": [{"solidity": 0.9980726406981678, "top": 960, "right": 3650, "bottom": 5095, "left": 410}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/730839f.jpg"} -{"rects": [{"solidity": 0.9980726534986986, "top": 350, "right": 5200, "bottom": 3590, "left": 1135}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701508f.jpg"} -{"rects": [{"solidity": 0.9980727535533607, "top": 715, "right": 2000, "bottom": 3135, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710703f.jpg"} -{"rects": [{"solidity": 0.998072941019304, "top": 490, "right": 3130, "bottom": 2070, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734282f.jpg"} -{"rects": [{"solidity": 0.9980729475750442, "top": 835, "right": 2020, "bottom": 3240, "left": 415}, {"solidity": 0.9967729608084582, "top": 835, "right": 3940, "bottom": 3240, "left": 2335}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721776f.jpg"} -{"rects": [{"solidity": 0.9980732735050982, "top": 450, "right": 3060, "bottom": 2075, "left": 650}, {"solidity": 0.9971153185741432, "top": 2370, "right": 3070, "bottom": 3970, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729558f.jpg"} -{"rects": [{"solidity": 0.9980733340983626, "top": 660, "right": 1530, "bottom": 2445, "left": 360}], "shape": {"h": 3030, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/728924f.jpg"} -{"rects": [{"solidity": 0.9980734725738168, "top": 540, "right": 4870, "bottom": 3600, "left": 1080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718068f.jpg"} -{"rects": [{"solidity": 0.9980735208653744, "top": 745, "right": 2160, "bottom": 3165, "left": 540}, {"solidity": 0.9975835475578406, "top": 775, "right": 3955, "bottom": 3195, "left": 2335}, {"solidity": 0.9949413961875322, "top": 795, "right": 5705, "bottom": 3215, "left": 4085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733249f.jpg"} -{"rects": [{"solidity": 0.9980736153459493, "top": 485, "right": 5170, "bottom": 3790, "left": 1135}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712305f.jpg"} -{"rects": [{"solidity": 0.9980737302966006, "top": 355, "right": 3150, "bottom": 1975, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702164f.jpg"} -{"rects": [{"solidity": 0.9980738949765893, "top": 530, "right": 5065, "bottom": 3765, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707336f.jpg"} -{"rects": [{"solidity": 0.9980739649177234, "top": 435, "right": 3175, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704028f.jpg"} -{"rects": [{"solidity": 0.9980739779061361, "top": 1330, "right": 3580, "bottom": 5350, "left": 335}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707779f.jpg"} -{"rects": [{"solidity": 0.9980745141891795, "top": 370, "right": 5335, "bottom": 3645, "left": 1320}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732215f.jpg"} -{"rects": [{"solidity": 0.9980745600030961, "top": 485, "right": 4990, "bottom": 3720, "left": 970}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715163f.jpg"} -{"rects": [{"solidity": 0.9980745875174027, "top": 720, "right": 2670, "bottom": 2140, "left": 875}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726376f.jpg"} -{"rects": [{"solidity": 0.9980751562520219, "top": 390, "right": 3255, "bottom": 2000, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706634f.jpg"} -{"rects": [{"solidity": 0.9980752392670162, "top": 500, "right": 5085, "bottom": 3775, "left": 1045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702058f.jpg"} -{"rects": [{"solidity": 0.9980753418108805, "top": 505, "right": 5120, "bottom": 3770, "left": 1090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712372f.jpg"} -{"rects": [{"solidity": 0.9980758869422997, "top": 300, "right": 5085, "bottom": 3520, "left": 1005}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706482f.jpg"} -{"rects": [{"solidity": 0.9980759843219275, "top": 810, "right": 3470, "bottom": 2835, "left": 430}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720514f.jpg"} -{"rects": [{"solidity": 0.9980759894019892, "top": 440, "right": 4345, "bottom": 3815, "left": 1640}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709074f.jpg"} -{"rects": [{"solidity": 0.9980760762339168, "top": 1020, "right": 3590, "bottom": 5050, "left": 345}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723637f.jpg"} -{"rects": [{"solidity": 0.99807611199429, "top": 365, "right": 3130, "bottom": 1975, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700493f.jpg"} -{"rects": [{"solidity": 0.9980762287150305, "top": 550, "right": 5015, "bottom": 3780, "left": 980}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705975f.jpg"} -{"rects": [{"solidity": 0.9980762804907155, "top": 465, "right": 5055, "bottom": 3725, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712943f.jpg"} -{"rects": [{"solidity": 0.9980763501172325, "top": 390, "right": 3010, "bottom": 2010, "left": 610}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704853f.jpg"} -{"rects": [{"solidity": 0.9980764952835324, "top": 1055, "right": 3550, "bottom": 5090, "left": 260}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/714453f.jpg"} -{"rects": [{"solidity": 0.9980765751809579, "top": 800, "right": 5645, "bottom": 3250, "left": 3175}, {"solidity": 0.9970663109029773, "top": 875, "right": 2915, "bottom": 3195, "left": 515}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721743f.jpg"} -{"rects": [{"solidity": 0.9980766651189187, "top": 580, "right": 3370, "bottom": 2600, "left": 355}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716712f.jpg"} -{"rects": [{"solidity": 0.9980767065799718, "top": 1030, "right": 3550, "bottom": 5120, "left": 305}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712800f.jpg"} -{"rects": [{"solidity": 0.998077066504963, "top": 780, "right": 2010, "bottom": 3190, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724805f.jpg"} -{"rects": [{"solidity": 0.998077135382917, "top": 1040, "right": 3520, "bottom": 5070, "left": 275}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720046f.jpg"} -{"rects": [{"solidity": 0.9980774668947937, "top": 575, "right": 2760, "bottom": 3610, "left": 720}, {"solidity": 0.9984238746170163, "top": 600, "right": 5345, "bottom": 3620, "left": 3365}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718686f.jpg"} -{"rects": [{"solidity": 0.9980775087003434, "top": 1225, "right": 3620, "bottom": 5245, "left": 405}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708742f.jpg"} -{"rects": [{"solidity": 0.9980775736616851, "top": 715, "right": 2650, "bottom": 1915, "left": 685}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701002f.jpg"} -{"rects": [{"solidity": 0.9980776415663709, "top": 4060, "right": 3085, "bottom": 5690, "left": 665}, {"solidity": 0.9972159376370031, "top": 2210, "right": 3110, "bottom": 3835, "left": 685}, {"solidity": 0.9954230776606557, "top": 360, "right": 3115, "bottom": 1990, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729691f.jpg"} -{"rects": [{"solidity": 0.998077827772214, "top": 460, "right": 5065, "bottom": 3680, "left": 1015}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713488f.jpg"} -{"rects": [{"solidity": 0.9980779590028337, "top": 855, "right": 2035, "bottom": 3285, "left": 410}, {"solidity": 0.9970491594091938, "top": 860, "right": 3920, "bottom": 3285, "left": 2290}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729685f.jpg"} -{"rects": [{"solidity": 0.9980784245045069, "top": 940, "right": 2620, "bottom": 4085, "left": 180}], "shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508797.jpg"} -{"rects": [{"solidity": 0.9980786099160436, "top": 900, "right": 3915, "bottom": 3320, "left": 2295}, {"solidity": 0.9958333735517353, "top": 895, "right": 5770, "bottom": 3325, "left": 4140}, {"solidity": 0.9974117897328955, "top": 920, "right": 2050, "bottom": 3340, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733634f.jpg"} -{"rects": [{"solidity": 0.9980786562098521, "top": 400, "right": 5110, "bottom": 3625, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732646f.jpg"} -{"rects": [{"solidity": 0.9980787827578784, "top": 470, "right": 3145, "bottom": 2095, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705731f.jpg"} -{"rects": [{"solidity": 0.9980788664967424, "top": 285, "right": 3940, "bottom": 2705, "left": 920}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517203.jpg"} -{"rects": [{"solidity": 0.9980790217843512, "top": 1190, "right": 3390, "bottom": 4830, "left": 525}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731904f.jpg"} -{"rects": [{"solidity": 0.9980792293031981, "top": 825, "right": 5160, "bottom": 2220, "left": 3345}, {"solidity": 0.9952809823589064, "top": 825, "right": 2785, "bottom": 2225, "left": 985}, {"solidity": 0.9968758018020737, "top": 2225, "right": 2785, "bottom": 3630, "left": 995}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705527f.jpg"} -{"rects": [{"solidity": 0.9980793933282486, "top": 405, "right": 5160, "bottom": 3635, "left": 1055}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732683f.jpg"} -{"rects": [{"solidity": 0.9980795681623543, "top": 765, "right": 2030, "bottom": 3175, "left": 420}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721947f.jpg"} -{"rects": [{"solidity": 0.9980795687981757, "top": 1085, "right": 3500, "bottom": 5145, "left": 195}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704584f.jpg"} -{"rects": [{"solidity": 0.9980795935777325, "top": 480, "right": 5110, "bottom": 3685, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700506f.jpg"} -{"rects": [{"solidity": 0.9980795964286227, "top": 2150, "right": 2765, "bottom": 3580, "left": 920}, {"solidity": 0.998805915752321, "top": 655, "right": 2745, "bottom": 2090, "left": 915}, {"solidity": 0.9967724609375, "top": 655, "right": 5345, "bottom": 2080, "left": 3530}, {"solidity": 0.996393616603121, "top": 2140, "right": 5355, "bottom": 3560, "left": 3545}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707113f.jpg"} -{"rects": [{"solidity": 0.9980796129229986, "top": 780, "right": 3810, "bottom": 3170, "left": 2195}, {"solidity": 0.9957320092788073, "top": 770, "right": 1940, "bottom": 3185, "left": 340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720252f.jpg"} -{"rects": [{"solidity": 0.9980796188308216, "top": 1460, "right": 3400, "bottom": 5055, "left": 560}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709093f.jpg"} -{"rects": [{"solidity": 0.998079690227862, "top": 475, "right": 5030, "bottom": 3540, "left": 1130}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717464f.jpg"} -{"rects": [{"solidity": 0.9980797038198413, "top": 820, "right": 2060, "bottom": 3215, "left": 465}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720149f.jpg"} -{"rects": [{"solidity": 0.9980799683293745, "top": 630, "right": 2605, "bottom": 2030, "left": 785}, {"solidity": 0.9956301770745499, "top": 2035, "right": 2605, "bottom": 3435, "left": 780}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703943f.jpg"} -{"rects": [{"solidity": 0.9980801415686913, "top": 440, "right": 5175, "bottom": 3540, "left": 1290}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726157f.jpg"} -{"rects": [{"solidity": 0.9980801483547582, "top": 510, "right": 5140, "bottom": 3800, "left": 1110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712222f.jpg"} -{"rects": [{"solidity": 0.9980803341256279, "top": 870, "right": 3910, "bottom": 3285, "left": 2300}, {"solidity": 0.9963514449513688, "top": 860, "right": 2025, "bottom": 3265, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715355f.jpg"} -{"rects": [{"solidity": 0.9980804364149489, "top": 1130, "right": 3510, "bottom": 5115, "left": 305}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/719112f.jpg"} -{"rects": [{"solidity": 0.9980804516584333, "top": 2070, "right": 2705, "bottom": 3515, "left": 850}, {"solidity": 0.9962648248718721, "top": 2075, "right": 5280, "bottom": 3505, "left": 3430}, {"solidity": 0.9985706145391681, "top": 630, "right": 2695, "bottom": 2045, "left": 850}, {"solidity": 0.9948479381948666, "top": 610, "right": 5270, "bottom": 2045, "left": 3455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702732f.jpg"} -{"rects": [{"solidity": 0.9980805683759886, "top": 1230, "right": 3480, "bottom": 5125, "left": 370}], "shape": {"h": 6140, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/708085f.jpg"} -{"rects": [{"solidity": 0.9980805896018585, "top": 790, "right": 3865, "bottom": 3220, "left": 2250}, {"solidity": 0.9984884990278594, "top": 795, "right": 1980, "bottom": 3220, "left": 375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718178f.jpg"} -{"rects": [{"solidity": 0.9980807088948659, "top": 250, "right": 5095, "bottom": 3530, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703250f.jpg"} -{"rects": [{"solidity": 0.9980808246970445, "top": 2320, "right": 3190, "bottom": 3935, "left": 770}, {"solidity": 0.9965220604441909, "top": 540, "right": 3165, "bottom": 2165, "left": 760}, {"solidity": 0.9974731707317073, "top": 4085, "right": 3210, "bottom": 5690, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733144f.jpg"} -{"rects": [{"solidity": 0.9980810187818069, "top": 1060, "right": 3400, "bottom": 5125, "left": 425}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722436f.jpg"} -{"rects": [{"solidity": 0.9980811037297028, "top": 1005, "right": 3595, "bottom": 5105, "left": 315}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/716652f.jpg"} -{"rects": [{"solidity": 0.9980811455847255, "top": 885, "right": 3865, "bottom": 3320, "left": 2240}, {"solidity": 0.9971029241067879, "top": 875, "right": 2030, "bottom": 3310, "left": 395}, {"solidity": 0.997000041577249, "top": 900, "right": 5735, "bottom": 3325, "left": 4105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733470f.jpg"} -{"rects": [{"solidity": 0.9980812694599421, "top": 2175, "right": 3220, "bottom": 3810, "left": 785}, {"solidity": 0.9971937120898534, "top": 4065, "right": 3180, "bottom": 5690, "left": 805}, {"solidity": 0.9958473240142754, "top": 340, "right": 3210, "bottom": 1930, "left": 805}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723714f.jpg"} -{"rects": [{"solidity": 0.9980813004254507, "top": 425, "right": 5030, "bottom": 3615, "left": 1060}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708171f.jpg"} -{"rects": [{"solidity": 0.9980814407512268, "top": 2230, "right": 3210, "bottom": 3850, "left": 790}, {"solidity": 0.9968471242097662, "top": 425, "right": 3190, "bottom": 2040, "left": 770}, {"solidity": 0.9965482122253234, "top": 4060, "right": 3210, "bottom": 5680, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723318f.jpg"} -{"rects": [{"solidity": 0.9980818065436841, "top": 535, "right": 2675, "bottom": 3585, "left": 710}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711073f.jpg"} -{"rects": [{"solidity": 0.9980821539682448, "top": 1065, "right": 3525, "bottom": 5090, "left": 265}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722433f.jpg"} -{"rects": [{"solidity": 0.9980822255500742, "top": 355, "right": 5005, "bottom": 3575, "left": 980}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718394f.jpg"} -{"rects": [{"solidity": 0.9980822550831793, "top": 830, "right": 2155, "bottom": 3225, "left": 560}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723159f.jpg"} -{"rects": [{"solidity": 0.9980823890916074, "top": 1130, "right": 3520, "bottom": 5200, "left": 310}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712710f.jpg"} -{"rects": [{"solidity": 0.9980824976433381, "top": 805, "right": 2080, "bottom": 3225, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720543f.jpg"} -{"rects": [{"solidity": 0.9980825310590021, "top": 420, "right": 3150, "bottom": 2005, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723478f.jpg"} -{"rects": [{"solidity": 0.9980828145719157, "top": 885, "right": 5770, "bottom": 3295, "left": 4170}, {"solidity": 0.9950775721882829, "top": 895, "right": 3890, "bottom": 3270, "left": 2315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733668f.jpg"} -{"rects": [{"solidity": 0.9980829189791021, "top": 440, "right": 5080, "bottom": 3720, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717902f.jpg"} -{"rects": [{"solidity": 0.9980832232395819, "top": 475, "right": 5145, "bottom": 3745, "left": 1120}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701772f.jpg"} -{"rects": [{"solidity": 0.9980832596125492, "top": 4310, "right": 3205, "bottom": 5935, "left": 785}, {"solidity": 0.9966536154454453, "top": 2645, "right": 3210, "bottom": 4270, "left": 790}, {"solidity": 0.9969899687085517, "top": 210, "right": 2795, "bottom": 2620, "left": 1170}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710413f.jpg"} -{"rects": [{"solidity": 0.9980835075355196, "top": 2220, "right": 3350, "bottom": 3835, "left": 930}, {"solidity": 0.9972895449271626, "top": 380, "right": 3350, "bottom": 2000, "left": 925}, {"solidity": 0.9951779690816978, "top": 4090, "right": 3345, "bottom": 5695, "left": 930}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726869f.jpg"} -{"rects": [{"solidity": 0.9980835137085137, "top": 845, "right": 3905, "bottom": 3255, "left": 2285}, {"solidity": 0.9988684564024854, "top": 850, "right": 5750, "bottom": 3250, "left": 4165}, {"solidity": 0.9935627597672485, "top": 850, "right": 2035, "bottom": 3240, "left": 435}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731687f.jpg"} -{"rects": [{"solidity": 0.9980837327547895, "top": 540, "right": 3315, "bottom": 2470, "left": 585}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714469f.jpg"} -{"rects": [{"solidity": 0.9980842057519373, "top": 465, "right": 5125, "bottom": 3735, "left": 1070}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706336f.jpg"} -{"rects": [{"solidity": 0.9980842383682845, "top": 1350, "right": 3640, "bottom": 5395, "left": 360}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733489f.jpg"} -{"rects": [{"solidity": 0.9980843209869157, "top": 530, "right": 5170, "bottom": 3430, "left": 1550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724195f.jpg"} -{"rects": [{"solidity": 0.9980843760926197, "top": 670, "right": 2725, "bottom": 2075, "left": 905}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731995f.jpg"} -{"rects": [{"solidity": 0.9980843798995032, "top": 520, "right": 5080, "bottom": 3820, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712114f.jpg"} -{"rects": [{"solidity": 0.9980846230846231, "top": 2265, "right": 3095, "bottom": 3890, "left": 680}, {"solidity": 0.9966752280349407, "top": 4115, "right": 3085, "bottom": 5745, "left": 665}, {"solidity": 0.9989115681517067, "top": 420, "right": 3105, "bottom": 2035, "left": 700}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713607f.jpg"} -{"rects": [{"solidity": 0.9980847849706193, "top": 790, "right": 2015, "bottom": 3185, "left": 405}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716759f.jpg"} -{"rects": [{"solidity": 0.9980851911090358, "top": 475, "right": 5100, "bottom": 3780, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701664f.jpg"} -{"rects": [{"solidity": 0.9980854202252878, "top": 395, "right": 3115, "bottom": 1975, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729514f.jpg"} -{"rects": [{"solidity": 0.9980855705444993, "top": 2150, "right": 3220, "bottom": 3795, "left": 810}, {"solidity": 0.9974356502458305, "top": 4040, "right": 3205, "bottom": 5675, "left": 805}, {"solidity": 0.9954292521388963, "top": 295, "right": 3240, "bottom": 1930, "left": 845}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/706202f.jpg"} -{"rects": [{"solidity": 0.9980856756031302, "top": 955, "right": 3480, "bottom": 4955, "left": 290}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717405f.jpg"} -{"rects": [{"solidity": 0.9980858476217713, "top": 810, "right": 3855, "bottom": 3215, "left": 2245}, {"solidity": 0.9961183006493379, "top": 795, "right": 2060, "bottom": 3220, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709146f.jpg"} -{"rects": [{"solidity": 0.998085964491412, "top": 1025, "right": 3415, "bottom": 4960, "left": 300}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724553f.jpg"} -{"rects": [{"solidity": 0.9980859686528539, "top": 320, "right": 3155, "bottom": 1945, "left": 775}, {"solidity": 0.9981912633129538, "top": 2185, "right": 3150, "bottom": 3800, "left": 760}, {"solidity": 0.974294708467191, "top": 4065, "right": 2960, "bottom": 5545, "left": 995}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719571f.jpg"} -{"rects": [{"solidity": 0.9980864354234459, "top": 440, "right": 5065, "bottom": 3685, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730057f.jpg"} -{"rects": [{"solidity": 0.9980865897886354, "top": 425, "right": 5070, "bottom": 3670, "left": 1065}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709544f.jpg"} -{"rects": [{"solidity": 0.9980869067116762, "top": 1065, "right": 3630, "bottom": 5140, "left": 305}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/717479f.jpg"} -{"rects": [{"solidity": 0.998087021149403, "top": 895, "right": 2035, "bottom": 3315, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733644f.jpg"} -{"rects": [{"solidity": 0.9980870749843901, "top": 710, "right": 4695, "bottom": 3340, "left": 1305}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709056f.jpg"} -{"rects": [{"solidity": 0.9980871821982986, "top": 2285, "right": 3195, "bottom": 3905, "left": 770}, {"solidity": 0.9987067352967736, "top": 495, "right": 3190, "bottom": 2110, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722412f.jpg"} -{"rects": [{"solidity": 0.9980876093829482, "top": 430, "right": 3205, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719593f.jpg"} -{"rects": [{"solidity": 0.998087654368789, "top": 415, "right": 5100, "bottom": 3715, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719511f.jpg"} -{"rects": [{"solidity": 0.9980877923662081, "top": 565, "right": 5030, "bottom": 3680, "left": 1170}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720753f.jpg"} -{"rects": [{"solidity": 0.9980878081062937, "top": 395, "right": 3240, "bottom": 2020, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705584f.jpg"} -{"rects": [{"solidity": 0.9980880817086477, "top": 430, "right": 3155, "bottom": 2010, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705831f.jpg"} -{"rects": [{"solidity": 0.9980883977053103, "top": 1030, "right": 3565, "bottom": 5100, "left": 350}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722335f.jpg"} -{"rects": [{"solidity": 0.9980884010451355, "top": 745, "right": 3880, "bottom": 3180, "left": 2265}, {"solidity": 0.9958073020691859, "top": 755, "right": 2060, "bottom": 3200, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730354f.jpg"} -{"rects": [{"solidity": 0.9980887619392772, "top": 500, "right": 5145, "bottom": 3725, "left": 1065}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730047f.jpg"} -{"rects": [{"solidity": 0.9980888490190725, "top": 450, "right": 3270, "bottom": 2060, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727209f.jpg"} -{"rects": [{"solidity": 0.9980888977212506, "top": 805, "right": 2020, "bottom": 3195, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717441f.jpg"} -{"rects": [{"solidity": 0.9980889460772101, "top": 425, "right": 5085, "bottom": 3650, "left": 1075}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718970f.jpg"} -{"rects": [{"solidity": 0.9980892042147178, "top": 405, "right": 2880, "bottom": 1950, "left": 945}, {"solidity": 0.9980054126247715, "top": 4675, "right": 3845, "bottom": 6010, "left": 2770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700604f.jpg"} -{"rects": [{"solidity": 0.9980892978007494, "top": 815, "right": 2045, "bottom": 3230, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700393f.jpg"} -{"rects": [{"solidity": 0.9980897913820649, "top": 305, "right": 5075, "bottom": 3510, "left": 1005}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725884f.jpg"} -{"rects": [{"solidity": 0.998089931580121, "top": 385, "right": 2850, "bottom": 2000, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700494f.jpg"} -{"rects": [{"solidity": 0.9980899738094894, "top": 2105, "right": 2695, "bottom": 3525, "left": 855}, {"solidity": 0.998607713653108, "top": 605, "right": 2685, "bottom": 2025, "left": 850}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702769f.jpg"} -{"rects": [{"solidity": 0.9980903388993796, "top": 455, "right": 5130, "bottom": 3660, "left": 1095}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709175f.jpg"} -{"rects": [{"solidity": 0.9980904111144647, "top": 975, "right": 3500, "bottom": 4935, "left": 315}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723636f.jpg"} -{"rects": [{"solidity": 0.9980905142419935, "top": 725, "right": 3885, "bottom": 3115, "left": 2290}, {"solidity": 0.9955977649166505, "top": 735, "right": 2025, "bottom": 3125, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718528f.jpg"} -{"rects": [{"solidity": 0.9980906176992327, "top": 455, "right": 3160, "bottom": 2400, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734554f.jpg"} -{"rects": [{"solidity": 0.9980909467811242, "top": 410, "right": 3140, "bottom": 2030, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728781f.jpg"} -{"rects": [{"solidity": 0.998091553725132, "top": 560, "right": 3380, "bottom": 2615, "left": 540}, {"solidity": 0.9970192543576851, "top": 3020, "right": 3365, "bottom": 5070, "left": 540}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733788f.jpg"} -{"rects": [{"solidity": 0.9980917231327511, "top": 1295, "right": 3515, "bottom": 5195, "left": 385}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708737f.jpg"} -{"rects": [{"solidity": 0.998091813538461, "top": 1080, "right": 3495, "bottom": 5105, "left": 300}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708551f.jpg"} -{"rects": [{"solidity": 0.9980918338043921, "top": 1230, "right": 3670, "bottom": 5325, "left": 425}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711275f.jpg"} -{"rects": [{"solidity": 0.9980918397527024, "top": 435, "right": 3205, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722551f.jpg"} -{"rects": [{"solidity": 0.9980919833898007, "top": 750, "right": 3840, "bottom": 3150, "left": 2235}, {"solidity": 0.9991319128069367, "top": 750, "right": 2015, "bottom": 3145, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730349f.jpg"} -{"rects": [{"solidity": 0.9980920922414996, "top": 455, "right": 2900, "bottom": 2065, "left": 490}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705432f.jpg"} -{"rects": [{"solidity": 0.9980922322095199, "top": 150, "right": 3375, "bottom": 2040, "left": 620}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725436f.jpg"} -{"rects": [{"solidity": 0.9980924086241175, "top": 725, "right": 2030, "bottom": 3140, "left": 410}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700809f.jpg"} -{"rects": [{"solidity": 0.9980924287118977, "top": 490, "right": 5095, "bottom": 3795, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703596f.jpg"} -{"rects": [{"solidity": 0.9980927391670589, "top": 570, "right": 5070, "bottom": 3545, "left": 1275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734654f.jpg"} -{"rects": [{"solidity": 0.9980929630046363, "top": 1480, "right": 3615, "bottom": 5485, "left": 340}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/701214f.jpg"} -{"rects": [{"solidity": 0.9980930179852039, "top": 420, "right": 2980, "bottom": 2030, "left": 565}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707280f.jpg"} -{"rects": [{"solidity": 0.9980931467248544, "top": 380, "right": 5020, "bottom": 3670, "left": 880}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716728f.jpg"} -{"rects": [{"solidity": 0.9980931665023429, "top": 545, "right": 2510, "bottom": 3575, "left": 465}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715496f.jpg"} -{"rects": [{"solidity": 0.9980932621053619, "top": 765, "right": 3890, "bottom": 3170, "left": 2270}, {"solidity": 0.9974601071172216, "top": 785, "right": 2025, "bottom": 3195, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732494f.jpg"} -{"rects": [{"solidity": 0.9980937771773141, "top": 785, "right": 1990, "bottom": 3215, "left": 375}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705003f.jpg"} -{"rects": [{"solidity": 0.9980938064701838, "top": 2270, "right": 3125, "bottom": 3890, "left": 695}, {"solidity": 0.9962526165968373, "top": 385, "right": 3135, "bottom": 2020, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729336f.jpg"} -{"rects": [{"solidity": 0.9980939461922401, "top": 305, "right": 3930, "bottom": 2740, "left": 945}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507614.jpg"} -{"rects": [{"solidity": 0.9980940754887869, "top": 1055, "right": 3450, "bottom": 5045, "left": 235}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733383f.jpg"} -{"rects": [{"solidity": 0.9980943891063654, "top": 785, "right": 3830, "bottom": 3205, "left": 2220}, {"solidity": 0.9983196378965363, "top": 790, "right": 2025, "bottom": 3205, "left": 415}, {"solidity": 0.9958584740619086, "top": 785, "right": 5650, "bottom": 3205, "left": 4040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717949f.jpg"} -{"rects": [{"solidity": 0.9980945742353878, "top": 475, "right": 5745, "bottom": 4205, "left": 1190}], "shape": {"h": 4435, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711690f.jpg"} -{"rects": [{"solidity": 0.9980945843210594, "top": 360, "right": 3275, "bottom": 1985, "left": 860}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702998f.jpg"} -{"rects": [{"solidity": 0.9980946847000132, "top": 525, "right": 3215, "bottom": 3755, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714285f.jpg"} -{"rects": [{"solidity": 0.9980947319987816, "top": 445, "right": 3230, "bottom": 2060, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725195f.jpg"} -{"rects": [{"solidity": 0.9980947340058817, "top": 915, "right": 3540, "bottom": 4940, "left": 285}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714952f.jpg"} -{"rects": [{"solidity": 0.9980948328385056, "top": 780, "right": 2045, "bottom": 3205, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702942f.jpg"} -{"rects": [{"solidity": 0.9980949468305395, "top": 395, "right": 3185, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/700937f.jpg"} -{"rects": [{"solidity": 0.998095042614747, "top": 1110, "right": 3575, "bottom": 5110, "left": 360}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708416f.jpg"} -{"rects": [{"solidity": 0.998095148599944, "top": 930, "right": 2590, "bottom": 3890, "left": 420}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508529.jpg"} -{"rects": [{"solidity": 0.9980951586309036, "top": 985, "right": 3545, "bottom": 5075, "left": 305}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712346f.jpg"} -{"rects": [{"solidity": 0.998095280635034, "top": 395, "right": 3300, "bottom": 2015, "left": 865}, {"solidity": 0.9962423538125582, "top": 2255, "right": 3310, "bottom": 3875, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727550f.jpg"} -{"rects": [{"solidity": 0.9980953987819637, "top": 815, "right": 3870, "bottom": 3230, "left": 2265}, {"solidity": 0.9976908174114977, "top": 785, "right": 2035, "bottom": 3185, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703116f.jpg"} -{"rects": [{"solidity": 0.9980954074517768, "top": 575, "right": 3150, "bottom": 2490, "left": 1745}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517157.jpg"} -{"rects": [{"solidity": 0.9980956131318772, "top": 835, "right": 2020, "bottom": 3250, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728766f.jpg"} -{"rects": [{"solidity": 0.9980956397398473, "top": 330, "right": 3145, "bottom": 1915, "left": 735}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/709664f.jpg"} -{"rects": [{"solidity": 0.9980957282552754, "top": 405, "right": 3110, "bottom": 2025, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701884f.jpg"} -{"rects": [{"solidity": 0.998095792822259, "top": 4070, "right": 3210, "bottom": 5690, "left": 780}, {"solidity": 0.9958582114828184, "top": 2210, "right": 3220, "bottom": 3820, "left": 790}, {"solidity": 0.9960861825226451, "top": 365, "right": 3205, "bottom": 1965, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734796f.jpg"} -{"rects": [{"solidity": 0.9980959135621432, "top": 2255, "right": 3200, "bottom": 3880, "left": 770}, {"solidity": 0.997971419845365, "top": 400, "right": 3195, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719588f.jpg"} -{"rects": [{"solidity": 0.9980960493819312, "top": 820, "right": 1925, "bottom": 3250, "left": 295}, {"solidity": 0.9972042429350678, "top": 835, "right": 5565, "bottom": 3270, "left": 3935}, {"solidity": 0.9979680864381807, "top": 830, "right": 3735, "bottom": 3245, "left": 2110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704439f.jpg"} -{"rects": [{"solidity": 0.998096417617889, "top": 1040, "right": 3555, "bottom": 5025, "left": 325}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710117f.jpg"} -{"rects": [{"solidity": 0.9980965131293007, "top": 720, "right": 2020, "bottom": 3155, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727003f.jpg"} -{"rects": [{"solidity": 0.9980967641773372, "top": 475, "right": 3210, "bottom": 3810, "left": 830}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714752f.jpg"} -{"rects": [{"solidity": 0.9980969460822894, "top": 395, "right": 3120, "bottom": 2005, "left": 695}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728813f.jpg"} -{"rects": [{"solidity": 0.9980969551282052, "top": 785, "right": 2025, "bottom": 3195, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707776f.jpg"} -{"rects": [{"solidity": 0.9980971492958478, "top": 785, "right": 3780, "bottom": 3200, "left": 2175}, {"solidity": 0.9963257140593432, "top": 795, "right": 1995, "bottom": 3185, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713038f.jpg"} -{"rects": [{"solidity": 0.9980972370705298, "top": 805, "right": 2130, "bottom": 3205, "left": 525}, {"solidity": 0.9965244813823235, "top": 800, "right": 3910, "bottom": 3200, "left": 2310}, {"solidity": 0.9953291668314809, "top": 815, "right": 5670, "bottom": 3215, "left": 4075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710651f.jpg"} -{"rects": [{"solidity": 0.9980972603959289, "top": 410, "right": 5075, "bottom": 3645, "left": 975}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732670f.jpg"} -{"rects": [{"solidity": 0.9980973384837047, "top": 1110, "right": 3410, "bottom": 4920, "left": 415}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712667f.jpg"} -{"rects": [{"solidity": 0.9980974599940854, "top": 760, "right": 2050, "bottom": 3150, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724266f.jpg"} -{"rects": [{"solidity": 0.9980975150163494, "top": 1035, "right": 3575, "bottom": 5075, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719837f.jpg"} -{"rects": [{"solidity": 0.9980975345733389, "top": 2275, "right": 3170, "bottom": 3885, "left": 760}, {"solidity": 0.9988011423261738, "top": 435, "right": 3165, "bottom": 2045, "left": 760}, {"solidity": 0.9974601978577321, "top": 4110, "right": 3170, "bottom": 5720, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719814f.jpg"} -{"rects": [{"solidity": 0.9980978538137001, "top": 515, "right": 5135, "bottom": 3780, "left": 1020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720815f.jpg"} -{"rects": [{"solidity": 0.9980979468094844, "top": 735, "right": 3230, "bottom": 2740, "left": 420}, {"solidity": 0.9975976673260429, "top": 3450, "right": 3235, "bottom": 5455, "left": 425}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728723f.jpg"} -{"rects": [{"solidity": 0.9980981782648408, "top": 415, "right": 3830, "bottom": 2740, "left": 945}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508035.jpg"} -{"rects": [{"solidity": 0.9980987181680553, "top": 2120, "right": 3215, "bottom": 3745, "left": 815}, {"solidity": 0.9970916269123211, "top": 285, "right": 3200, "bottom": 1910, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705023f.jpg"} -{"rects": [{"solidity": 0.9980991861532523, "top": 860, "right": 2090, "bottom": 3270, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719053f.jpg"} -{"rects": [{"solidity": 0.9980993705720167, "top": 490, "right": 4645, "bottom": 3720, "left": 580}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725966f.jpg"} -{"rects": [{"solidity": 0.9980994484922081, "top": 470, "right": 2985, "bottom": 3710, "left": 530}, {"solidity": 0.9974354856641672, "top": 830, "right": 5385, "bottom": 3225, "left": 3250}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716955f.jpg"} -{"rects": [{"solidity": 0.9980996452457482, "top": 810, "right": 2040, "bottom": 3235, "left": 420}, {"solidity": 0.9987663769913162, "top": 815, "right": 3840, "bottom": 3235, "left": 2230}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730926f.jpg"} -{"rects": [{"solidity": 0.9980999019273772, "top": 300, "right": 5120, "bottom": 3535, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700529f.jpg"} -{"rects": [{"solidity": 0.9981001591658786, "top": 1020, "right": 3670, "bottom": 5125, "left": 325}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/721413f.jpg"} -{"rects": [{"solidity": 0.9981001695485421, "top": 1205, "right": 3585, "bottom": 5250, "left": 360}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723134f.jpg"} -{"rects": [{"solidity": 0.998100261580872, "top": 460, "right": 2595, "bottom": 3660, "left": 585}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733041f.jpg"} -{"rects": [{"solidity": 0.9981003407792879, "top": 420, "right": 5075, "bottom": 3685, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707291f.jpg"} -{"rects": [{"solidity": 0.998100372006554, "top": 425, "right": 5095, "bottom": 3700, "left": 1025}], "shape": {"h": 4030, "w": 6240}, "file": "/usr/local/google/home/danvk/milstein/703711f.jpg"} -{"rects": [{"solidity": 0.998100658438408, "top": 465, "right": 3315, "bottom": 2490, "left": 515}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704148f.jpg"} -{"rects": [{"solidity": 0.9981008241830581, "top": 550, "right": 5670, "bottom": 2150, "left": 3280}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726960f.jpg"} -{"rects": [{"solidity": 0.998100895667545, "top": 490, "right": 5020, "bottom": 3800, "left": 970}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714558f.jpg"} -{"rects": [{"solidity": 0.9981009841254141, "top": 375, "right": 2870, "bottom": 1790, "left": 1070}, {"solidity": 0.9942834224327439, "top": 2030, "right": 2895, "bottom": 3385, "left": 1045}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722078f.jpg"} -{"rects": [{"solidity": 0.9981010405642087, "top": 435, "right": 3230, "bottom": 2390, "left": 480}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704932f.jpg"} -{"rects": [{"solidity": 0.9981010514247, "top": 790, "right": 2020, "bottom": 3205, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721805f.jpg"} -{"rects": [{"solidity": 0.9981010994147491, "top": 760, "right": 2015, "bottom": 3170, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724315f.jpg"} -{"rects": [{"solidity": 0.9981011047524585, "top": 415, "right": 3055, "bottom": 2015, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729372f.jpg"} -{"rects": [{"solidity": 0.9981011983763308, "top": 400, "right": 3065, "bottom": 2010, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729795f.jpg"} -{"rects": [{"solidity": 0.9981012698964388, "top": 420, "right": 3055, "bottom": 2040, "left": 640}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700500f.jpg"} -{"rects": [{"solidity": 0.9981014364495623, "top": 490, "right": 5100, "bottom": 3725, "left": 1020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700915f.jpg"} -{"rects": [{"solidity": 0.9981015642618447, "top": 735, "right": 3385, "bottom": 2770, "left": 360}, {"solidity": 0.9974655601015071, "top": 2985, "right": 3085, "bottom": 4600, "left": 675}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715316f.jpg"} -{"rects": [{"solidity": 0.9981016918870459, "top": 880, "right": 5790, "bottom": 3300, "left": 4160}, {"solidity": 0.9973960421122845, "top": 875, "right": 2050, "bottom": 3285, "left": 420}, {"solidity": 0.9952016162976681, "top": 880, "right": 3925, "bottom": 3285, "left": 2305}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710650f.jpg"} -{"rects": [{"solidity": 0.9981018250422272, "top": 500, "right": 5080, "bottom": 3700, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720872f.jpg"} -{"rects": [{"solidity": 0.9981020080216148, "top": 425, "right": 5740, "bottom": 4035, "left": 1220}], "shape": {"h": 4420, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708857f.jpg"} -{"rects": [{"solidity": 0.99810225998369, "top": 955, "right": 3525, "bottom": 5005, "left": 280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715113f.jpg"} -{"rects": [{"solidity": 0.9981023174729043, "top": 2375, "right": 3155, "bottom": 4100, "left": 745}, {"solidity": 0.9972740819713839, "top": 405, "right": 3165, "bottom": 2135, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/700778f.jpg"} -{"rects": [{"solidity": 0.9981026576202097, "top": 720, "right": 2540, "bottom": 3525, "left": 525}, {"solidity": 0.9964882837699535, "top": 710, "right": 4430, "bottom": 2125, "left": 2590}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726031f.jpg"} -{"rects": [{"solidity": 0.9981027141326072, "top": 395, "right": 4920, "bottom": 3630, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704288f.jpg"} -{"rects": [{"solidity": 0.9981027229157993, "top": 340, "right": 5210, "bottom": 3615, "left": 1165}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726708f.jpg"} -{"rects": [{"solidity": 0.998102857952697, "top": 415, "right": 3180, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704452f.jpg"} -{"rects": [{"solidity": 0.9981028912625453, "top": 480, "right": 2975, "bottom": 2010, "left": 1055}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721082f.jpg"} -{"rects": [{"solidity": 0.9981030243030051, "top": 2280, "right": 3160, "bottom": 3915, "left": 745}, {"solidity": 0.9968854761621609, "top": 415, "right": 3160, "bottom": 2045, "left": 745}, {"solidity": 0.9965697605262058, "top": 4150, "right": 3150, "bottom": 5780, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724849f.jpg"} -{"rects": [{"solidity": 0.9981032032881624, "top": 530, "right": 5020, "bottom": 3795, "left": 985}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706323f.jpg"} -{"rects": [{"solidity": 0.9981032589712511, "top": 770, "right": 4860, "bottom": 3385, "left": 1405}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701122f.jpg"} -{"rects": [{"solidity": 0.9981033401007132, "top": 540, "right": 5120, "bottom": 3810, "left": 1115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733869f.jpg"} -{"rects": [{"solidity": 0.9981035375962107, "top": 815, "right": 2770, "bottom": 3580, "left": 805}, {"solidity": 0.996435500715493, "top": 820, "right": 5245, "bottom": 3570, "left": 3290}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705713f.jpg"} -{"rects": [{"solidity": 0.998103540186156, "top": 960, "right": 5935, "bottom": 2990, "left": 2705}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703756f.jpg"} -{"rects": [{"solidity": 0.9981036336825566, "top": 385, "right": 3145, "bottom": 2005, "left": 730}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/700877f.jpg"} -{"rects": [{"solidity": 0.9981037475091599, "top": 2210, "right": 3205, "bottom": 3830, "left": 790}, {"solidity": 0.9972019928531273, "top": 350, "right": 3210, "bottom": 1965, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720660f.jpg"} -{"rects": [{"solidity": 0.9981040192831527, "top": 1175, "right": 3560, "bottom": 5175, "left": 340}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/705770f.jpg"} -{"rects": [{"solidity": 0.9981048696154118, "top": 500, "right": 5140, "bottom": 3760, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710735f.jpg"} -{"rects": [{"solidity": 0.9981050351922036, "top": 780, "right": 2000, "bottom": 3185, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711765f.jpg"} -{"rects": [{"solidity": 0.9981052559052858, "top": 2175, "right": 3120, "bottom": 3865, "left": 525}, {"solidity": 0.9970975497712046, "top": 3995, "right": 3090, "bottom": 5665, "left": 555}, {"solidity": 0.9970934772754111, "top": 340, "right": 2825, "bottom": 2005, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711926f.jpg"} -{"rects": [{"solidity": 0.9981053465773134, "top": 1010, "right": 2480, "bottom": 3960, "left": 260}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508107.jpg"} -{"rects": [{"solidity": 0.9981053649105848, "top": 495, "right": 3180, "bottom": 2110, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702063f.jpg"} -{"rects": [{"solidity": 0.9981053676384726, "top": 1030, "right": 3515, "bottom": 5020, "left": 275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731510f.jpg"} -{"rects": [{"solidity": 0.9981055699481866, "top": 755, "right": 2015, "bottom": 3175, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709547f.jpg"} -{"rects": [{"solidity": 0.9981066928645689, "top": 480, "right": 5055, "bottom": 3745, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700132f.jpg"} -{"rects": [{"solidity": 0.9981068245397177, "top": 840, "right": 2035, "bottom": 3250, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710100f.jpg"} -{"rects": [{"solidity": 0.9981068304653509, "top": 405, "right": 5130, "bottom": 3670, "left": 1035}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/719998f.jpg"} -{"rects": [{"solidity": 0.9981069327193656, "top": 345, "right": 5175, "bottom": 3765, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709473f.jpg"} -{"rects": [{"solidity": 0.9981070938357268, "top": 530, "right": 5055, "bottom": 3765, "left": 1050}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702002f.jpg"} -{"rects": [{"solidity": 0.998107154380982, "top": 515, "right": 2655, "bottom": 3580, "left": 655}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715466f.jpg"} -{"rects": [{"solidity": 0.9981075057569051, "top": 430, "right": 4935, "bottom": 3645, "left": 910}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701199f.jpg"} -{"rects": [{"solidity": 0.998107622095703, "top": 730, "right": 2030, "bottom": 3140, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716675f.jpg"} -{"rects": [{"solidity": 0.9981079684876663, "top": 440, "right": 3195, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702988f.jpg"} -{"rects": [{"solidity": 0.9981087750167462, "top": 390, "right": 5085, "bottom": 3640, "left": 1020}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722275f.jpg"} -{"rects": [{"solidity": 0.9981091030789826, "top": 400, "right": 3125, "bottom": 1975, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729173f.jpg"} -{"rects": [{"solidity": 0.9981091629376999, "top": 285, "right": 5160, "bottom": 3550, "left": 1080}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702477f.jpg"} -{"rects": [{"solidity": 0.9981097413173551, "top": 420, "right": 3745, "bottom": 2525, "left": 935}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507963.jpg"} -{"rects": [{"solidity": 0.9981098115833422, "top": 815, "right": 2145, "bottom": 3190, "left": 560}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723439f.jpg"} -{"rects": [{"solidity": 0.9981098602927702, "top": 980, "right": 3575, "bottom": 5000, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713351f.jpg"} -{"rects": [{"solidity": 0.9981099968610088, "top": 1275, "right": 2885, "bottom": 2875, "left": 505}, {"solidity": 0.9956833955952608, "top": 1275, "right": 5665, "bottom": 2875, "left": 3285}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734611f.jpg"} -{"rects": [{"solidity": 0.9981100452875941, "top": 1020, "right": 3875, "bottom": 3425, "left": 2260}, {"solidity": 0.9974354125402687, "top": 1050, "right": 2030, "bottom": 3430, "left": 435}, {"solidity": 0.9959387659890112, "top": 1025, "right": 5710, "bottom": 3410, "left": 4125}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710485f.jpg"} -{"rects": [{"solidity": 0.9981100671754068, "top": 410, "right": 5080, "bottom": 3690, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725412f.jpg"} -{"rects": [{"solidity": 0.9981101783072305, "top": 335, "right": 3845, "bottom": 2775, "left": 815}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715965f.jpg"} -{"rects": [{"solidity": 0.9981102373967586, "top": 640, "right": 3720, "bottom": 2830, "left": 640}, {"solidity": 0.9957721041738465, "top": 3495, "right": 3715, "bottom": 5665, "left": 635}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710279f.jpg"} -{"rects": [{"solidity": 0.9981103638278908, "top": 460, "right": 3305, "bottom": 2070, "left": 890}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705357f.jpg"} -{"rects": [{"solidity": 0.9981103699526134, "top": 815, "right": 2005, "bottom": 3220, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716676f.jpg"} -{"rects": [{"solidity": 0.9981105679238131, "top": 315, "right": 5350, "bottom": 3540, "left": 1340}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708743f.jpg"} -{"rects": [{"solidity": 0.998110600559108, "top": 455, "right": 3310, "bottom": 2070, "left": 885}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734061f.jpg"} -{"rects": [{"solidity": 0.9981106718276086, "top": 835, "right": 3260, "bottom": 2805, "left": 480}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704319f.jpg"} -{"rects": [{"solidity": 0.9981107001617112, "top": 725, "right": 2025, "bottom": 3140, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711438f.jpg"} -{"rects": [{"solidity": 0.9981107369092429, "top": 645, "right": 2670, "bottom": 2070, "left": 840}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703343f.jpg"} -{"rects": [{"solidity": 0.9981108639952138, "top": 3830, "right": 3310, "bottom": 5435, "left": 900}, {"solidity": 0.9955930511425197, "top": 515, "right": 3030, "bottom": 1765, "left": 1360}, {"solidity": 0.9911005708837084, "top": 2180, "right": 3040, "bottom": 3430, "left": 1385}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707320f.jpg"} -{"rects": [{"solidity": 0.9981110495501188, "top": 370, "right": 3245, "bottom": 1980, "left": 830}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726818f.jpg"} -{"rects": [{"solidity": 0.9981111088843017, "top": 650, "right": 2765, "bottom": 2040, "left": 955}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707232f.jpg"} -{"rects": [{"solidity": 0.9981114141585725, "top": 315, "right": 5085, "bottom": 3580, "left": 1050}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717489f.jpg"} -{"rects": [{"solidity": 0.9981114973575094, "top": 400, "right": 5165, "bottom": 3560, "left": 1220}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717315f.jpg"} -{"rects": [{"solidity": 0.9981116133830155, "top": 465, "right": 5100, "bottom": 3705, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731490f.jpg"} -{"rects": [{"solidity": 0.9981118677203007, "top": 380, "right": 5295, "bottom": 3615, "left": 1280}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730879f.jpg"} -{"rects": [{"solidity": 0.9981120475031904, "top": 1250, "right": 3565, "bottom": 5200, "left": 400}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/719113f.jpg"} -{"rects": [{"solidity": 0.998112121338818, "top": 820, "right": 2035, "bottom": 3235, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701267f.jpg"} -{"rects": [{"solidity": 0.9981121881041812, "top": 700, "right": 2055, "bottom": 3110, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708068f.jpg"} -{"rects": [{"solidity": 0.9981121890812942, "top": 490, "right": 5085, "bottom": 3705, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718225f.jpg"} -{"rects": [{"solidity": 0.9981124819740427, "top": 800, "right": 3855, "bottom": 3225, "left": 2235}, {"solidity": 0.9976120037898564, "top": 800, "right": 2005, "bottom": 3220, "left": 390}, {"solidity": 0.9947862390792845, "top": 805, "right": 5680, "bottom": 3205, "left": 4065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717993f.jpg"} -{"rects": [{"solidity": 0.9981126068764781, "top": 330, "right": 3200, "bottom": 1955, "left": 815}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705018f.jpg"} -{"rects": [{"solidity": 0.9981129232257194, "top": 425, "right": 5240, "bottom": 3625, "left": 1245}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723217f.jpg"} -{"rects": [{"solidity": 0.9981131800211052, "top": 645, "right": 2780, "bottom": 2065, "left": 955}, {"solidity": 0.9982131206606097, "top": 660, "right": 5225, "bottom": 2070, "left": 3390}, {"solidity": 0.9953432295983724, "top": 2140, "right": 2775, "bottom": 3540, "left": 975}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707023f.jpg"} -{"rects": [{"solidity": 0.9981132639412982, "top": 700, "right": 4775, "bottom": 3495, "left": 1155}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705153f.jpg"} -{"rects": [{"solidity": 0.998113625709433, "top": 530, "right": 5005, "bottom": 3630, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721582f.jpg"} -{"rects": [{"solidity": 0.9981136849117211, "top": 545, "right": 3470, "bottom": 2165, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701263f.jpg"} -{"rects": [{"solidity": 0.9981137078947471, "top": 925, "right": 3460, "bottom": 5315, "left": 505}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/716722f.jpg"} -{"rects": [{"solidity": 0.9981137503161447, "top": 365, "right": 5405, "bottom": 3595, "left": 1360}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733488f.jpg"} -{"rects": [{"solidity": 0.99811385740762, "top": 430, "right": 3165, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721236f.jpg"} -{"rects": [{"solidity": 0.9981139180512002, "top": 395, "right": 3195, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704998f.jpg"} -{"rects": [{"solidity": 0.9981139204836561, "top": 665, "right": 3895, "bottom": 3085, "left": 2270}, {"solidity": 0.9967084051164089, "top": 675, "right": 5775, "bottom": 3100, "left": 4150}, {"solidity": 0.9927769710429657, "top": 675, "right": 1970, "bottom": 3030, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732522f.jpg"} -{"rects": [{"solidity": 0.9981140603305597, "top": 465, "right": 3095, "bottom": 2075, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700237f.jpg"} -{"rects": [{"solidity": 0.9981144035240486, "top": 870, "right": 2060, "bottom": 3290, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703241f.jpg"} -{"rects": [{"solidity": 0.998114539674248, "top": 600, "right": 2695, "bottom": 3615, "left": 650}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713630f.jpg"} -{"rects": [{"solidity": 0.9981145398133091, "top": 385, "right": 5145, "bottom": 3635, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732722f.jpg"} -{"rects": [{"solidity": 0.9981147353698397, "top": 1105, "right": 3565, "bottom": 5190, "left": 350}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732599f.jpg"} -{"rects": [{"solidity": 0.998114874313908, "top": 535, "right": 5150, "bottom": 3770, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703192f.jpg"} -{"rects": [{"solidity": 0.9981149060915463, "top": 1085, "right": 3535, "bottom": 5130, "left": 300}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713662f.jpg"} -{"rects": [{"solidity": 0.9981150607229411, "top": 1265, "right": 3585, "bottom": 5275, "left": 355}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/726483f.jpg"} -{"rects": [{"solidity": 0.9981152158053984, "top": 765, "right": 2820, "bottom": 3490, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706256f.jpg"} -{"rects": [{"solidity": 0.9981155017087984, "top": 520, "right": 5120, "bottom": 3570, "left": 1145}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708520f.jpg"} -{"rects": [{"solidity": 0.9981155058208019, "top": 505, "right": 5095, "bottom": 3740, "left": 1030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716956f.jpg"} -{"rects": [{"solidity": 0.9981155368597071, "top": 440, "right": 3150, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722410f.jpg"} -{"rects": [{"solidity": 0.9981155617298243, "top": 4100, "right": 3165, "bottom": 5715, "left": 745}, {"solidity": 0.9974541751527495, "top": 2250, "right": 3155, "bottom": 3865, "left": 735}, {"solidity": 0.9965402287329154, "top": 415, "right": 3145, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709650f.jpg"} -{"rects": [{"solidity": 0.998115571163956, "top": 1050, "right": 3510, "bottom": 5045, "left": 280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731509f.jpg"} -{"rects": [{"solidity": 0.9981162776346942, "top": 400, "right": 3160, "bottom": 2010, "left": 750}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729445f.jpg"} -{"rects": [{"solidity": 0.9981163354301226, "top": 350, "right": 5170, "bottom": 3600, "left": 1125}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728075f.jpg"} -{"rects": [{"solidity": 0.9981164326565936, "top": 375, "right": 2815, "bottom": 3565, "left": 800}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733067f.jpg"} -{"rects": [{"solidity": 0.9981167364111674, "top": 785, "right": 3900, "bottom": 3195, "left": 2290}, {"solidity": 0.9961768460441562, "top": 790, "right": 2040, "bottom": 3200, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713409f.jpg"} -{"rects": [{"solidity": 0.9981169441936749, "top": 1085, "right": 3530, "bottom": 5135, "left": 250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732757f.jpg"} -{"rects": [{"solidity": 0.9981169990706636, "top": 700, "right": 2715, "bottom": 2120, "left": 890}, {"solidity": 0.9937932171501168, "top": 2090, "right": 5240, "bottom": 3520, "left": 3405}, {"solidity": 0.9956524910642643, "top": 660, "right": 5225, "bottom": 2085, "left": 3395}, {"solidity": 0.9427185496637698, "top": 2130, "right": 2800, "bottom": 3565, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706280f.jpg"} -{"rects": [{"solidity": 0.9981176394263428, "top": 275, "right": 5085, "bottom": 3500, "left": 990}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704809f.jpg"} -{"rects": [{"solidity": 0.9981176843912043, "top": 1320, "right": 3140, "bottom": 4725, "left": 580}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710513f.jpg"} -{"rects": [{"solidity": 0.998118144438859, "top": 425, "right": 3025, "bottom": 2055, "left": 625}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704754f.jpg"} -{"rects": [{"solidity": 0.9981182670259395, "top": 975, "right": 3495, "bottom": 4775, "left": 450}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708107f.jpg"} -{"rects": [{"solidity": 0.998118300928447, "top": 475, "right": 2630, "bottom": 3685, "left": 610}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733081f.jpg"} -{"rects": [{"solidity": 0.9981190372526104, "top": 990, "right": 3485, "bottom": 5080, "left": 255}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714822f.jpg"} -{"rects": [{"solidity": 0.9981191119309573, "top": 430, "right": 3275, "bottom": 2015, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725980f.jpg"} -{"rects": [{"solidity": 0.9981191588217283, "top": 670, "right": 2700, "bottom": 2095, "left": 880}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703106f.jpg"} -{"rects": [{"solidity": 0.998119181895925, "top": 790, "right": 3485, "bottom": 4900, "left": 235}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705376f.jpg"} -{"rects": [{"solidity": 0.998119806458399, "top": 865, "right": 2055, "bottom": 3260, "left": 455}, {"solidity": 0.9943491855194532, "top": 825, "right": 3915, "bottom": 3235, "left": 2310}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731375f.jpg"} -{"rects": [{"solidity": 0.9981200393303722, "top": 320, "right": 4975, "bottom": 3585, "left": 970}], "shape": {"h": 3865, "w": 6065}, "file": "/usr/local/google/home/danvk/milstein/732749f.jpg"} -{"rects": [{"solidity": 0.9981209706158681, "top": 820, "right": 1965, "bottom": 3235, "left": 355}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713681f.jpg"} -{"rects": [{"solidity": 0.9981211310908631, "top": 335, "right": 2410, "bottom": 1530, "left": 620}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716357f.jpg"} -{"rects": [{"solidity": 0.9981212036059821, "top": 440, "right": 3185, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734531f.jpg"} -{"rects": [{"solidity": 0.998121448879241, "top": 555, "right": 3750, "bottom": 2670, "left": 1035}], "shape": {"h": 3040, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517017.jpg"} -{"rects": [{"solidity": 0.9981214976463414, "top": 395, "right": 4980, "bottom": 3660, "left": 965}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717143f.jpg"} -{"rects": [{"solidity": 0.9981216240221589, "top": 410, "right": 3150, "bottom": 2000, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729131f.jpg"} -{"rects": [{"solidity": 0.9981221289302378, "top": 1150, "right": 3465, "bottom": 5190, "left": 280}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721227f.jpg"} -{"rects": [{"solidity": 0.998122822897985, "top": 475, "right": 5045, "bottom": 3790, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712221f.jpg"} -{"rects": [{"solidity": 0.99812287944537, "top": 545, "right": 3165, "bottom": 2165, "left": 735}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715449f.jpg"} -{"rects": [{"solidity": 0.9981231029831069, "top": 280, "right": 5065, "bottom": 3510, "left": 1010}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707015f.jpg"} -{"rects": [{"solidity": 0.9981232847028093, "top": 1180, "right": 3530, "bottom": 5175, "left": 310}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/717014f.jpg"} -{"rects": [{"solidity": 0.9981234300831099, "top": 795, "right": 1980, "bottom": 3210, "left": 380}, {"solidity": 0.9956904684888673, "top": 805, "right": 3835, "bottom": 3185, "left": 2260}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730135f.jpg"} -{"rects": [{"solidity": 0.9981236208613331, "top": 695, "right": 3325, "bottom": 2585, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713596f.jpg"} -{"rects": [{"solidity": 0.9981237451950734, "top": 415, "right": 5120, "bottom": 3655, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732631f.jpg"} -{"rects": [{"solidity": 0.9981239725365052, "top": 420, "right": 3230, "bottom": 2035, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725819f.jpg"} -{"rects": [{"solidity": 0.9981245516456014, "top": 575, "right": 2950, "bottom": 2190, "left": 530}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707822f.jpg"} -{"rects": [{"solidity": 0.9981247101824827, "top": 765, "right": 2000, "bottom": 3125, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724229f.jpg"} -{"rects": [{"solidity": 0.9981247560269321, "top": 330, "right": 3515, "bottom": 2155, "left": 815}], "shape": {"h": 6870, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/706423f.jpg"} -{"rects": [{"solidity": 0.9981249620657066, "top": 995, "right": 3490, "bottom": 5020, "left": 610}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722780f.jpg"} -{"rects": [{"solidity": 0.9981250823777514, "top": 410, "right": 3165, "bottom": 2005, "left": 770}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/730418f.jpg"} -{"rects": [{"solidity": 0.9981253066421798, "top": 515, "right": 5120, "bottom": 3790, "left": 1100}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712401f.jpg"} -{"rects": [{"solidity": 0.9981253425943485, "top": 410, "right": 5105, "bottom": 3690, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720154f.jpg"} -{"rects": [{"solidity": 0.9981253529079616, "top": 425, "right": 3175, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710586f.jpg"} -{"rects": [{"solidity": 0.9981253921373591, "top": 335, "right": 5075, "bottom": 3585, "left": 1040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700144f.jpg"} -{"rects": [{"solidity": 0.9981254626262108, "top": 400, "right": 3090, "bottom": 2020, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728800f.jpg"} -{"rects": [{"solidity": 0.9981259324102728, "top": 620, "right": 4815, "bottom": 3510, "left": 1280}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705689f.jpg"} -{"rects": [{"solidity": 0.9981261114262586, "top": 430, "right": 3095, "bottom": 2065, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701488f.jpg"} -{"rects": [{"solidity": 0.9981261333470889, "top": 1030, "right": 3500, "bottom": 5000, "left": 310}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710163f.jpg"} -{"rects": [{"solidity": 0.9981265189280544, "top": 760, "right": 3855, "bottom": 3160, "left": 2255}, {"solidity": 0.995975228136009, "top": 750, "right": 2015, "bottom": 3155, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720183f.jpg"} -{"rects": [{"solidity": 0.998126520517296, "top": 445, "right": 3210, "bottom": 2020, "left": 835}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724927f.jpg"} -{"rects": [{"solidity": 0.9981266380865185, "top": 450, "right": 5040, "bottom": 3665, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724947f.jpg"} -{"rects": [{"solidity": 0.9981276905507975, "top": 505, "right": 5660, "bottom": 4200, "left": 1360}], "shape": {"h": 4435, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708385f.jpg"} -{"rects": [{"solidity": 0.9981276962621483, "top": 745, "right": 2055, "bottom": 3165, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723277f.jpg"} -{"rects": [{"solidity": 0.9981277451413214, "top": 775, "right": 1940, "bottom": 3190, "left": 325}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711507f.jpg"} -{"rects": [{"solidity": 0.9981277867111997, "top": 745, "right": 1975, "bottom": 3150, "left": 370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732413f.jpg"} -{"rects": [{"solidity": 0.9981278914765154, "top": 420, "right": 3200, "bottom": 2025, "left": 800}, {"solidity": 0.9959071593729312, "top": 2240, "right": 3200, "bottom": 3855, "left": 790}, {"solidity": 0.99565434139494, "top": 4050, "right": 3160, "bottom": 5660, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722874f.jpg"} -{"rects": [{"solidity": 0.9981279806834114, "top": 585, "right": 4205, "bottom": 3615, "left": 2200}, {"solidity": 0.9974460954534442, "top": 780, "right": 2025, "bottom": 3150, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717880f.jpg"} -{"rects": [{"solidity": 0.9981280489932487, "top": 435, "right": 5140, "bottom": 3685, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727946f.jpg"} -{"rects": [{"solidity": 0.9981282459685922, "top": 400, "right": 3130, "bottom": 2005, "left": 715}, {"solidity": 0.9979159882774341, "top": 2250, "right": 3115, "bottom": 3860, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709126f.jpg"} -{"rects": [{"solidity": 0.9981284224860357, "top": 2210, "right": 3215, "bottom": 3825, "left": 800}, {"solidity": 0.9956950460116641, "top": 375, "right": 3210, "bottom": 1965, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733391f.jpg"} -{"rects": [{"solidity": 0.9981285353036597, "top": 370, "right": 3090, "bottom": 1980, "left": 675}, {"solidity": 0.9969221859637365, "top": 2230, "right": 3090, "bottom": 3850, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700182f.jpg"} -{"rects": [{"solidity": 0.9981285892740458, "top": 405, "right": 4930, "bottom": 3700, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714159f.jpg"} -{"rects": [{"solidity": 0.9981287194538585, "top": 815, "right": 3845, "bottom": 3225, "left": 2235}, {"solidity": 0.997513505367749, "top": 820, "right": 2025, "bottom": 3225, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723794f.jpg"} -{"rects": [{"solidity": 0.9981289832193182, "top": 420, "right": 3150, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702346f.jpg"} -{"rects": [{"solidity": 0.9981293677056146, "top": 415, "right": 5165, "bottom": 3700, "left": 1080}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/722476f.jpg"} -{"rects": [{"solidity": 0.9981294444500165, "top": 2115, "right": 2555, "bottom": 3515, "left": 760}, {"solidity": 0.9961446658626311, "top": 670, "right": 5240, "bottom": 2060, "left": 3440}, {"solidity": 0.9982693008900004, "top": 670, "right": 2580, "bottom": 2035, "left": 780}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727916f.jpg"} -{"rects": [{"solidity": 0.9981295465869456, "top": 1300, "right": 3520, "bottom": 5265, "left": 340}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717019f.jpg"} -{"rects": [{"solidity": 0.9981298346193407, "top": 395, "right": 3200, "bottom": 2005, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719005f.jpg"} -{"rects": [{"solidity": 0.998130296952837, "top": 4205, "right": 3115, "bottom": 5820, "left": 705}, {"solidity": 0.9977672784777312, "top": 2415, "right": 3125, "bottom": 4025, "left": 715}, {"solidity": 0.9984609390220144, "top": 460, "right": 3110, "bottom": 2065, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733680f.jpg"} -{"rects": [{"solidity": 0.998131073043249, "top": 335, "right": 3485, "bottom": 2155, "left": 805}, {"solidity": 0.9984851898173682, "top": 4560, "right": 3445, "bottom": 6380, "left": 780}, {"solidity": 0.9958489042556495, "top": 2435, "right": 3460, "bottom": 4265, "left": 795}], "shape": {"h": 6860, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711632f.jpg"} -{"rects": [{"solidity": 0.9981310744844492, "top": 1090, "right": 3565, "bottom": 5125, "left": 300}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716983f.jpg"} -{"rects": [{"solidity": 0.9981311666030718, "top": 1140, "right": 3635, "bottom": 5195, "left": 370}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/733504f.jpg"} -{"rects": [{"solidity": 0.9981312573365186, "top": 415, "right": 5110, "bottom": 3695, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724909f.jpg"} -{"rects": [{"solidity": 0.9981312636238715, "top": 670, "right": 3310, "bottom": 2670, "left": 500}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729140f.jpg"} -{"rects": [{"solidity": 0.9981313290484422, "top": 445, "right": 3210, "bottom": 2065, "left": 770}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701103f.jpg"} -{"rects": [{"solidity": 0.998131532413097, "top": 1020, "right": 3610, "bottom": 5020, "left": 340}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730661f.jpg"} -{"rects": [{"solidity": 0.9981316185174521, "top": 405, "right": 3100, "bottom": 2020, "left": 665}, {"solidity": 0.9956470325034357, "top": 2290, "right": 3100, "bottom": 3945, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700990f.jpg"} -{"rects": [{"solidity": 0.9981317292432839, "top": 500, "right": 5060, "bottom": 3775, "left": 1020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710642f.jpg"} -{"rects": [{"solidity": 0.9981317382243138, "top": 445, "right": 3305, "bottom": 2060, "left": 885}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727265f.jpg"} -{"rects": [{"solidity": 0.998131912728116, "top": 825, "right": 2030, "bottom": 3245, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720646f.jpg"} -{"rects": [{"solidity": 0.9981320529444238, "top": 805, "right": 2025, "bottom": 3225, "left": 405}, {"solidity": 0.9968438271802932, "top": 840, "right": 5670, "bottom": 3255, "left": 4040}, {"solidity": 0.9980284317509327, "top": 805, "right": 3840, "bottom": 3220, "left": 2220}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732491f.jpg"} -{"rects": [{"solidity": 0.9981324527012738, "top": 2395, "right": 3120, "bottom": 4005, "left": 715}, {"solidity": 0.9961720421664279, "top": 435, "right": 3115, "bottom": 2040, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723311f.jpg"} -{"rects": [{"solidity": 0.9981324767299862, "top": 475, "right": 4975, "bottom": 3705, "left": 1165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718010f.jpg"} -{"rects": [{"solidity": 0.9981325800405818, "top": 455, "right": 5095, "bottom": 3680, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720788f.jpg"} -{"rects": [{"solidity": 0.9981327066095748, "top": 450, "right": 3290, "bottom": 2065, "left": 870}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/725348f.jpg"} -{"rects": [{"solidity": 0.9981327066095748, "top": 735, "right": 2015, "bottom": 3150, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707691f.jpg"} -{"rects": [{"solidity": 0.9981327120578533, "top": 490, "right": 5105, "bottom": 3720, "left": 1055}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708605f.jpg"} -{"rects": [{"solidity": 0.9981329579834652, "top": 910, "right": 2010, "bottom": 3325, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729224f.jpg"} -{"rects": [{"solidity": 0.9981329779677871, "top": 1015, "right": 3505, "bottom": 5070, "left": 295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709183f.jpg"} -{"rects": [{"solidity": 0.9981330476233247, "top": 790, "right": 3865, "bottom": 3205, "left": 2240}, {"solidity": 0.9968702101200824, "top": 780, "right": 2050, "bottom": 3195, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730561f.jpg"} -{"rects": [{"solidity": 0.9981333471844382, "top": 785, "right": 3860, "bottom": 3200, "left": 2255}, {"solidity": 0.9969951766392908, "top": 790, "right": 2105, "bottom": 3200, "left": 500}, {"solidity": 0.9953855823056458, "top": 785, "right": 5640, "bottom": 3195, "left": 4020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715718f.jpg"} -{"rects": [{"solidity": 0.9981334863413666, "top": 990, "right": 3560, "bottom": 4980, "left": 370}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708487f.jpg"} -{"rects": [{"solidity": 0.9981342098577236, "top": 840, "right": 2925, "bottom": 2355, "left": 830}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509341.jpg"} -{"rects": [{"solidity": 0.9981346105369296, "top": 455, "right": 5270, "bottom": 3640, "left": 1325}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733713f.jpg"} -{"rects": [{"solidity": 0.9981347024049316, "top": 1135, "right": 3630, "bottom": 5210, "left": 330}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/713179f.jpg"} -{"rects": [{"solidity": 0.9981347775698174, "top": 855, "right": 3965, "bottom": 3275, "left": 2345}, {"solidity": 0.9967836998034305, "top": 845, "right": 2080, "bottom": 3265, "left": 450}, {"solidity": 0.9957744927122961, "top": 865, "right": 5845, "bottom": 3275, "left": 4220}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720218f.jpg"} -{"rects": [{"solidity": 0.9981349445340275, "top": 2280, "right": 3175, "bottom": 3885, "left": 755}, {"solidity": 0.9990822344012393, "top": 460, "right": 3175, "bottom": 2060, "left": 760}, {"solidity": 0.9964938781223854, "top": 4135, "right": 3160, "bottom": 5740, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732115f.jpg"} -{"rects": [{"solidity": 0.9981351210225374, "top": 800, "right": 4020, "bottom": 3205, "left": 2405}, {"solidity": 0.9971959397988095, "top": 800, "right": 2175, "bottom": 3205, "left": 565}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708789f.jpg"} -{"rects": [{"solidity": 0.9981354720786944, "top": 345, "right": 5290, "bottom": 3645, "left": 1225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724335f.jpg"} -{"rects": [{"solidity": 0.998135755028808, "top": 1040, "right": 3500, "bottom": 5095, "left": 270}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721473f.jpg"} -{"rects": [{"solidity": 0.9981359269021721, "top": 445, "right": 3190, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721626f.jpg"} -{"rects": [{"solidity": 0.99813618207717, "top": 375, "right": 5160, "bottom": 3660, "left": 1120}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717599f.jpg"} -{"rects": [{"solidity": 0.998136301818365, "top": 425, "right": 3250, "bottom": 1995, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726153f.jpg"} -{"rects": [{"solidity": 0.9981363226576789, "top": 450, "right": 5075, "bottom": 3675, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732834f.jpg"} -{"rects": [{"solidity": 0.9981370518601846, "top": 725, "right": 2050, "bottom": 3135, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725956f.jpg"} -{"rects": [{"solidity": 0.9981370544980485, "top": 1285, "right": 3590, "bottom": 5270, "left": 390}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726485f.jpg"} -{"rects": [{"solidity": 0.9981372075937591, "top": 710, "right": 3330, "bottom": 2765, "left": 510}, {"solidity": 0.9970080387215454, "top": 3335, "right": 3335, "bottom": 5400, "left": 500}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733814f.jpg"} -{"rects": [{"solidity": 0.9981373237431916, "top": 980, "right": 3555, "bottom": 5020, "left": 275}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/711010f.jpg"} -{"rects": [{"solidity": 0.9981373832647585, "top": 395, "right": 3205, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703140f.jpg"} -{"rects": [{"solidity": 0.9981374220715484, "top": 440, "right": 3330, "bottom": 2015, "left": 945}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725881f.jpg"} -{"rects": [{"solidity": 0.9981376156700329, "top": 405, "right": 5090, "bottom": 3635, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732685f.jpg"} -{"rects": [{"solidity": 0.9981379213590623, "top": 2220, "right": 3035, "bottom": 3845, "left": 605}, {"solidity": 0.9976510400476842, "top": 390, "right": 3025, "bottom": 2010, "left": 600}, {"solidity": 0.9967315170045505, "top": 4095, "right": 3025, "bottom": 5705, "left": 615}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730925f.jpg"} -{"rects": [{"solidity": 0.9981381359876831, "top": 935, "right": 2710, "bottom": 3950, "left": 265}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507999.jpg"} -{"rects": [{"solidity": 0.9981384055038446, "top": 2140, "right": 2630, "bottom": 3575, "left": 785}, {"solidity": 0.9965585312576178, "top": 630, "right": 2640, "bottom": 2075, "left": 805}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705289f.jpg"} -{"rects": [{"solidity": 0.9981384502857832, "top": 350, "right": 5235, "bottom": 3650, "left": 1190}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717142f.jpg"} -{"rects": [{"solidity": 0.9981385109434013, "top": 420, "right": 2870, "bottom": 2005, "left": 510}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706874f.jpg"} -{"rects": [{"solidity": 0.9981385514427847, "top": 755, "right": 2080, "bottom": 3165, "left": 470}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717954f.jpg"} -{"rects": [{"solidity": 0.9981386018055064, "top": 805, "right": 3175, "bottom": 2690, "left": 500}, {"solidity": 0.9938103790820705, "top": 3325, "right": 3155, "bottom": 5170, "left": 490}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712031f.jpg"} -{"rects": [{"solidity": 0.9981392417337341, "top": 370, "right": 5120, "bottom": 3615, "left": 1130}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719104f.jpg"} -{"rects": [{"solidity": 0.9981393021099673, "top": 1135, "right": 4245, "bottom": 2755, "left": 1825}, {"solidity": 0.9964617988410354, "top": 735, "right": 1805, "bottom": 3135, "left": 190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719375f.jpg"} -{"rects": [{"solidity": 0.9981394685492393, "top": 400, "right": 3190, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704732f.jpg"} -{"rects": [{"solidity": 0.998139534883721, "top": 450, "right": 2055, "bottom": 2740, "left": 535}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716335f.jpg"} -{"rects": [{"solidity": 0.9981396805301153, "top": 1040, "right": 2700, "bottom": 4070, "left": 235}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508127.jpg"} -{"rects": [{"solidity": 0.9981397040311075, "top": 650, "right": 2375, "bottom": 3425, "left": 425}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704928f.jpg"} -{"rects": [{"solidity": 0.9981397425403676, "top": 2260, "right": 3210, "bottom": 3870, "left": 790}, {"solidity": 0.9967736617000023, "top": 420, "right": 3205, "bottom": 2035, "left": 790}, {"solidity": 0.9968129244980518, "top": 4100, "right": 3200, "bottom": 5710, "left": 780}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/726952f.jpg"} -{"rects": [{"solidity": 0.9981400414355823, "top": 480, "right": 4550, "bottom": 3690, "left": 505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725997f.jpg"} -{"rects": [{"solidity": 0.998140204865557, "top": 2235, "right": 3175, "bottom": 3855, "left": 750}, {"solidity": 0.995483416121275, "top": 4030, "right": 3165, "bottom": 5650, "left": 735}, {"solidity": 0.9972546749748588, "top": 460, "right": 3175, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732047f.jpg"} -{"rects": [{"solidity": 0.9981402486604588, "top": 390, "right": 3175, "bottom": 2000, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720140f.jpg"} -{"rects": [{"solidity": 0.9981406296484259, "top": 525, "right": 2755, "bottom": 1940, "left": 720}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733429f.jpg"} -{"rects": [{"solidity": 0.9981407811583879, "top": 1005, "right": 3515, "bottom": 5035, "left": 255}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711801f.jpg"} -{"rects": [{"solidity": 0.9981410663255936, "top": 2150, "right": 3160, "bottom": 3775, "left": 755}, {"solidity": 0.9972052057485525, "top": 300, "right": 3155, "bottom": 1925, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703218f.jpg"} -{"rects": [{"solidity": 0.998141161687084, "top": 3965, "right": 3135, "bottom": 5805, "left": 775}, {"solidity": 0.9982205389482544, "top": 2135, "right": 3110, "bottom": 3935, "left": 785}, {"solidity": 0.9969192574959725, "top": 300, "right": 3110, "bottom": 2110, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731116f.jpg"} -{"rects": [{"solidity": 0.9981411915837827, "top": 545, "right": 3060, "bottom": 2155, "left": 650}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704680f.jpg"} -{"rects": [{"solidity": 0.9981414476936157, "top": 880, "right": 1990, "bottom": 3265, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729735f.jpg"} -{"rects": [{"solidity": 0.998141614196508, "top": 830, "right": 1980, "bottom": 3235, "left": 370}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732850f.jpg"} -{"rects": [{"solidity": 0.998141935483871, "top": 2295, "right": 3065, "bottom": 3910, "left": 650}, {"solidity": 0.9957565040046985, "top": 430, "right": 3075, "bottom": 2055, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724390f.jpg"} -{"rects": [{"solidity": 0.9981419786578108, "top": 440, "right": 5065, "bottom": 3655, "left": 1015}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709679f.jpg"} -{"rects": [{"solidity": 0.9981423511791891, "top": 2200, "right": 3110, "bottom": 3815, "left": 685}, {"solidity": 0.9969969291178399, "top": 4015, "right": 3105, "bottom": 5625, "left": 680}, {"solidity": 0.9981623545197328, "top": 405, "right": 3115, "bottom": 2010, "left": 695}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731022f.jpg"} -{"rects": [{"solidity": 0.9981430365773302, "top": 440, "right": 5060, "bottom": 3715, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704792f.jpg"} -{"rects": [{"solidity": 0.9981430676136163, "top": 2235, "right": 3125, "bottom": 3860, "left": 720}, {"solidity": 0.9988186152483017, "top": 365, "right": 3135, "bottom": 1980, "left": 735}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723216f.jpg"} -{"rects": [{"solidity": 0.9981433728726148, "top": 410, "right": 3115, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729803f.jpg"} -{"rects": [{"solidity": 0.9981437310420481, "top": 605, "right": 3365, "bottom": 2680, "left": 255}, {"solidity": 0.9970496092116162, "top": 3115, "right": 3350, "bottom": 5105, "left": 260}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/715257f.jpg"} -{"rects": [{"solidity": 0.9981437850443483, "top": 1035, "right": 3510, "bottom": 5050, "left": 255}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716711f.jpg"} -{"rects": [{"solidity": 0.9981438756007256, "top": 425, "right": 3125, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709886f.jpg"} -{"rects": [{"solidity": 0.9981438817525157, "top": 495, "right": 5180, "bottom": 3740, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709496f.jpg"} -{"rects": [{"solidity": 0.9981441923578355, "top": 485, "right": 5075, "bottom": 3765, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701101f.jpg"} -{"rects": [{"solidity": 0.99814445764509, "top": 4115, "right": 3185, "bottom": 5745, "left": 765}, {"solidity": 0.998139457298941, "top": 425, "right": 3205, "bottom": 2045, "left": 785}, {"solidity": 0.996683106641493, "top": 2260, "right": 3190, "bottom": 3895, "left": 780}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734746f.jpg"} -{"rects": [{"solidity": 0.9981445372899177, "top": 2220, "right": 3045, "bottom": 3830, "left": 645}, {"solidity": 0.9977234051587573, "top": 370, "right": 3025, "bottom": 1980, "left": 630}, {"solidity": 0.9969454593331358, "top": 4070, "right": 3035, "bottom": 5680, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718389f.jpg"} -{"rects": [{"solidity": 0.9981447302649287, "top": 4120, "right": 3055, "bottom": 5740, "left": 630}, {"solidity": 0.995693158329227, "top": 2245, "right": 3070, "bottom": 3870, "left": 640}, {"solidity": 0.9961179077160196, "top": 390, "right": 3090, "bottom": 2015, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730785f.jpg"} -{"rects": [{"solidity": 0.9981447541879682, "top": 430, "right": 3110, "bottom": 2050, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701190f.jpg"} -{"rects": [{"solidity": 0.9981448110838675, "top": 285, "right": 2330, "bottom": 1470, "left": 530}, {"solidity": 0.9803029473741824, "top": 1740, "right": 2300, "bottom": 2845, "left": 585}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716452f.jpg"} -{"rects": [{"solidity": 0.9981450766014662, "top": 425, "right": 3210, "bottom": 2035, "left": 820}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712026f.jpg"} -{"rects": [{"solidity": 0.9981452353639163, "top": 1070, "right": 3505, "bottom": 5060, "left": 305}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/717323f.jpg"} -{"rects": [{"solidity": 0.9981455784835948, "top": 425, "right": 3220, "bottom": 2045, "left": 790}, {"solidity": 0.9977313682584631, "top": 2260, "right": 3210, "bottom": 3880, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732349f.jpg"} -{"rects": [{"solidity": 0.9981459551919235, "top": 365, "right": 3355, "bottom": 2285, "left": 615}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724827f.jpg"} -{"rects": [{"solidity": 0.9981459866063007, "top": 965, "right": 3465, "bottom": 4965, "left": 265}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716631f.jpg"} -{"rects": [{"solidity": 0.9981461395609312, "top": 2250, "right": 3045, "bottom": 3870, "left": 630}, {"solidity": 0.9958600757684246, "top": 400, "right": 3055, "bottom": 2005, "left": 635}, {"solidity": 0.9960447734271743, "top": 4120, "right": 3045, "bottom": 5720, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729554f.jpg"} -{"rects": [{"solidity": 0.9981462866723912, "top": 575, "right": 2765, "bottom": 3630, "left": 745}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710708f.jpg"} -{"rects": [{"solidity": 0.998146385364925, "top": 1080, "right": 2600, "bottom": 4080, "left": 180}], "shape": {"h": 4655, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508277.jpg"} -{"rects": [{"solidity": 0.9981465153845659, "top": 365, "right": 3255, "bottom": 1985, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710434f.jpg"} -{"rects": [{"solidity": 0.9981469185094479, "top": 890, "right": 3485, "bottom": 4980, "left": 280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721932f.jpg"} -{"rects": [{"solidity": 0.9981472021887257, "top": 315, "right": 3850, "bottom": 2745, "left": 860}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507522.jpg"} -{"rects": [{"solidity": 0.9981472635017365, "top": 420, "right": 3160, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707301f.jpg"} -{"rects": [{"solidity": 0.9981473022484724, "top": 2305, "right": 3085, "bottom": 3930, "left": 660}, {"solidity": 0.9969103419865214, "top": 415, "right": 3095, "bottom": 2040, "left": 670}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731480f.jpg"} -{"rects": [{"solidity": 0.9981476931032407, "top": 395, "right": 5250, "bottom": 3600, "left": 1270}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718156f.jpg"} -{"rects": [{"solidity": 0.9981477870930006, "top": 685, "right": 2525, "bottom": 2170, "left": 440}, {"solidity": 0.99548676700587, "top": 2425, "right": 2520, "bottom": 3910, "left": 430}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716270f.jpg"} -{"rects": [{"solidity": 0.9981480417504548, "top": 325, "right": 5085, "bottom": 3580, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700518f.jpg"} -{"rects": [{"solidity": 0.9981482218947871, "top": 795, "right": 2120, "bottom": 3180, "left": 530}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710080f.jpg"} -{"rects": [{"solidity": 0.998148226358211, "top": 440, "right": 3150, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728780f.jpg"} -{"rects": [{"solidity": 0.9981482730674917, "top": 365, "right": 5225, "bottom": 3650, "left": 1190}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726163f.jpg"} -{"rects": [{"solidity": 0.9981485252268404, "top": 875, "right": 3565, "bottom": 4950, "left": 450}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721201f.jpg"} -{"rects": [{"solidity": 0.9981486985965003, "top": 815, "right": 2045, "bottom": 3230, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706905f.jpg"} -{"rects": [{"solidity": 0.9981490423305971, "top": 440, "right": 3105, "bottom": 2055, "left": 685}, {"solidity": 0.9979321659833215, "top": 2270, "right": 3100, "bottom": 3890, "left": 695}, {"solidity": 0.9957382049409682, "top": 4085, "right": 3090, "bottom": 5725, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730656f.jpg"} -{"rects": [{"solidity": 0.9981491833912038, "top": 695, "right": 2505, "bottom": 3495, "left": 490}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711515f.jpg"} -{"rects": [{"solidity": 0.9981492745932934, "top": 2220, "right": 3195, "bottom": 3830, "left": 780}, {"solidity": 0.9959477536885206, "top": 4085, "right": 3200, "bottom": 5690, "left": 785}, {"solidity": 0.9942517137225619, "top": 405, "right": 3170, "bottom": 1985, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734599f.jpg"} -{"rects": [{"solidity": 0.9981492987666425, "top": 405, "right": 5130, "bottom": 3645, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732720f.jpg"} -{"rects": [{"solidity": 0.998149452525963, "top": 1090, "right": 3455, "bottom": 5090, "left": 250}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710980f.jpg"} -{"rects": [{"solidity": 0.9981497163671798, "top": 605, "right": 2805, "bottom": 2410, "left": 1600}, {"solidity": 0.9949552989987211, "top": 605, "right": 1435, "bottom": 2405, "left": 245}, {"solidity": 0.9699868152942587, "top": 810, "right": 4090, "bottom": 2265, "left": 2985}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716454f.jpg"} -{"rects": [{"solidity": 0.9981498113885396, "top": 465, "right": 4880, "bottom": 3340, "left": 1225}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731137f.jpg"} -{"rects": [{"solidity": 0.9981498552552844, "top": 390, "right": 3120, "bottom": 2005, "left": 705}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/700798f.jpg"} -{"rects": [{"solidity": 0.9981500839222178, "top": 755, "right": 2005, "bottom": 3155, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713541f.jpg"} -{"rects": [{"solidity": 0.9981500911947231, "top": 960, "right": 3520, "bottom": 4990, "left": 285}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722593f.jpg"} -{"rects": [{"solidity": 0.9981503595111665, "top": 215, "right": 2640, "bottom": 3235, "left": 180}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509975.jpg"} -{"rects": [{"solidity": 0.9981504926194461, "top": 900, "right": 3515, "bottom": 4935, "left": 305}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720034f.jpg"} -{"rects": [{"solidity": 0.9981507729834855, "top": 780, "right": 2010, "bottom": 3180, "left": 420}, {"solidity": 0.9959697694027368, "top": 1115, "right": 4925, "bottom": 2745, "left": 3915}, {"solidity": 0.9951221400642639, "top": 1125, "right": 3535, "bottom": 2755, "left": 2530}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732524f.jpg"} -{"rects": [{"solidity": 0.9981509590175245, "top": 315, "right": 5110, "bottom": 3595, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704847f.jpg"} -{"rects": [{"solidity": 0.9981511083720124, "top": 605, "right": 2645, "bottom": 2040, "left": 820}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704595f.jpg"} -{"rects": [{"solidity": 0.9981513508987204, "top": 825, "right": 2000, "bottom": 3245, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701271f.jpg"} -{"rects": [{"solidity": 0.9981514000523314, "top": 355, "right": 5300, "bottom": 3640, "left": 1240}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733483f.jpg"} -{"rects": [{"solidity": 0.9981522783453158, "top": 1170, "right": 3485, "bottom": 5180, "left": 220}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721012f.jpg"} -{"rects": [{"solidity": 0.9981523922336097, "top": 465, "right": 3335, "bottom": 2090, "left": 925}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702338f.jpg"} -{"rects": [{"solidity": 0.998152461283684, "top": 485, "right": 5150, "bottom": 3775, "left": 1115}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708039f.jpg"} -{"rects": [{"solidity": 0.9981527015147847, "top": 840, "right": 1955, "bottom": 3265, "left": 325}, {"solidity": 0.9991745104298673, "top": 845, "right": 3805, "bottom": 3260, "left": 2190}, {"solidity": 0.9977295555031634, "top": 855, "right": 5665, "bottom": 3270, "left": 4050}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719084f.jpg"} -{"rects": [{"solidity": 0.9981527912321689, "top": 405, "right": 5130, "bottom": 3645, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732721f.jpg"} -{"rects": [{"solidity": 0.9981528154929349, "top": 820, "right": 1900, "bottom": 3210, "left": 280}, {"solidity": 0.9988070481939492, "top": 815, "right": 3760, "bottom": 3190, "left": 2135}, {"solidity": 0.9967225599833361, "top": 815, "right": 5640, "bottom": 3195, "left": 4015}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708114f.jpg"} -{"rects": [{"solidity": 0.9981528228096467, "top": 860, "right": 3540, "bottom": 4910, "left": 270}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714619f.jpg"} -{"rects": [{"solidity": 0.9981529399508389, "top": 1070, "right": 3600, "bottom": 5155, "left": 325}], "shape": {"h": 6240, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/703724f.jpg"} -{"rects": [{"solidity": 0.9981531359675346, "top": 1030, "right": 3575, "bottom": 5070, "left": 290}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726156f.jpg"} -{"rects": [{"solidity": 0.9981531555780084, "top": 795, "right": 4745, "bottom": 3420, "left": 1270}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701582f.jpg"} -{"rects": [{"solidity": 0.9981532664873641, "top": 795, "right": 3125, "bottom": 2685, "left": 435}, {"solidity": 0.9951662420798223, "top": 3230, "right": 3110, "bottom": 5115, "left": 425}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712728f.jpg"} -{"rects": [{"solidity": 0.9981536975305307, "top": 325, "right": 3185, "bottom": 1955, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706174f.jpg"} -{"rects": [{"solidity": 0.9981537914006717, "top": 2270, "right": 3045, "bottom": 3900, "left": 615}, {"solidity": 0.9959628349011957, "top": 4120, "right": 3030, "bottom": 5745, "left": 620}, {"solidity": 0.9977770166788371, "top": 420, "right": 3055, "bottom": 2030, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710472f.jpg"} -{"rects": [{"solidity": 0.9981539377977255, "top": 1210, "right": 3650, "bottom": 5300, "left": 345}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716989f.jpg"} -{"rects": [{"solidity": 0.9981540024287728, "top": 415, "right": 3120, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729672f.jpg"} -{"rects": [{"solidity": 0.9981540638967611, "top": 2275, "right": 3070, "bottom": 3855, "left": 675}, {"solidity": 0.9976964051084413, "top": 415, "right": 3075, "bottom": 1985, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734804f.jpg"} -{"rects": [{"solidity": 0.9981541292583792, "top": 460, "right": 5075, "bottom": 3735, "left": 1030}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700688f.jpg"} -{"rects": [{"solidity": 0.9981541408772986, "top": 2255, "right": 3060, "bottom": 3835, "left": 665}, {"solidity": 0.9982560039481669, "top": 380, "right": 3045, "bottom": 1960, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729733f.jpg"} -{"rects": [{"solidity": 0.9981543793123804, "top": 1015, "right": 2655, "bottom": 4020, "left": 245}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507931.jpg"} -{"rects": [{"solidity": 0.9981544007766758, "top": 735, "right": 3480, "bottom": 3125, "left": 300}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724290f.jpg"} -{"rects": [{"solidity": 0.9981547781659933, "top": 1365, "right": 3570, "bottom": 5390, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/726653f.jpg"} -{"rects": [{"solidity": 0.9981549097559552, "top": 2245, "right": 3110, "bottom": 3870, "left": 720}, {"solidity": 0.9977079998304638, "top": 355, "right": 3110, "bottom": 1975, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724616f.jpg"} -{"rects": [{"solidity": 0.9981549516888666, "top": 750, "right": 5735, "bottom": 3165, "left": 4125}, {"solidity": 0.9973164616469482, "top": 775, "right": 2010, "bottom": 3185, "left": 410}, {"solidity": 0.9958994520448043, "top": 765, "right": 3860, "bottom": 3155, "left": 2270}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722671f.jpg"} -{"rects": [{"solidity": 0.9981549633459296, "top": 760, "right": 1990, "bottom": 3145, "left": 385}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719061f.jpg"} -{"rects": [{"solidity": 0.9981549877278222, "top": 350, "right": 3140, "bottom": 1940, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731357f.jpg"} -{"rects": [{"solidity": 0.9981551966858004, "top": 1070, "right": 3560, "bottom": 5160, "left": 320}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713319f.jpg"} -{"rects": [{"solidity": 0.9981554657018137, "top": 1245, "right": 3595, "bottom": 5270, "left": 335}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708979f.jpg"} -{"rects": [{"solidity": 0.9981556271737596, "top": 945, "right": 5815, "bottom": 2975, "left": 2605}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703381f.jpg"} -{"rects": [{"solidity": 0.9981557312002032, "top": 505, "right": 2985, "bottom": 2135, "left": 555}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706603f.jpg"} -{"rects": [{"solidity": 0.9981558159151482, "top": 760, "right": 2045, "bottom": 3185, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713189f.jpg"} -{"rects": [{"solidity": 0.9981560844911116, "top": 1115, "right": 3430, "bottom": 5080, "left": 475}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/716897f.jpg"} -{"rects": [{"solidity": 0.9981561103908823, "top": 1100, "right": 3595, "bottom": 5215, "left": 320}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721356f.jpg"} -{"rects": [{"solidity": 0.9981573093868995, "top": 470, "right": 5110, "bottom": 3775, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724334f.jpg"} -{"rects": [{"solidity": 0.9981577183056326, "top": 530, "right": 5145, "bottom": 3810, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707592f.jpg"} -{"rects": [{"solidity": 0.9981577412305522, "top": 410, "right": 4240, "bottom": 2815, "left": 1240}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507619.jpg"} -{"rects": [{"solidity": 0.9981581226789856, "top": 435, "right": 3320, "bottom": 2020, "left": 925}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725993f.jpg"} -{"rects": [{"solidity": 0.9981582849949874, "top": 435, "right": 3200, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706610f.jpg"} -{"rects": [{"solidity": 0.9981583139202388, "top": 2500, "right": 3220, "bottom": 4110, "left": 800}, {"solidity": 0.9976471209406236, "top": 605, "right": 3190, "bottom": 2205, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730905f.jpg"} -{"rects": [{"solidity": 0.9981584175585555, "top": 390, "right": 3430, "bottom": 3625, "left": 1365}, {"solidity": 0.997445845144687, "top": 410, "right": 5830, "bottom": 3650, "left": 3820}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707036f.jpg"} -{"rects": [{"solidity": 0.9981584181942916, "top": 480, "right": 5030, "bottom": 3745, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700351f.jpg"} -{"rects": [{"solidity": 0.9981585049788569, "top": 395, "right": 5540, "bottom": 3675, "left": 800}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714205f.jpg"} -{"rects": [{"solidity": 0.9981585157538236, "top": 670, "right": 2625, "bottom": 2070, "left": 800}, {"solidity": 0.9983662646055448, "top": 2080, "right": 2630, "bottom": 3485, "left": 825}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705054f.jpg"} -{"rects": [{"solidity": 0.9981585175777867, "top": 350, "right": 2415, "bottom": 1560, "left": 610}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715921f.jpg"} -{"rects": [{"solidity": 0.9981585879703044, "top": 2315, "right": 3130, "bottom": 3915, "left": 700}, {"solidity": 0.996975891495506, "top": 420, "right": 3110, "bottom": 2020, "left": 685}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728988f.jpg"} -{"rects": [{"solidity": 0.998158871375278, "top": 500, "right": 3075, "bottom": 2120, "left": 660}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704002f.jpg"} -{"rects": [{"solidity": 0.9981589682470471, "top": 355, "right": 3085, "bottom": 1970, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719048f.jpg"} -{"rects": [{"solidity": 0.9981592350419698, "top": 340, "right": 4090, "bottom": 2765, "left": 875}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508771.jpg"} -{"rects": [{"solidity": 0.9981597196618245, "top": 435, "right": 3205, "bottom": 2055, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705129f.jpg"} -{"rects": [{"solidity": 0.9981598995029352, "top": 520, "right": 5060, "bottom": 3815, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712449f.jpg"} -{"rects": [{"solidity": 0.9981603956740654, "top": 880, "right": 3890, "bottom": 3315, "left": 2265}, {"solidity": 0.9966646990326337, "top": 895, "right": 5755, "bottom": 3310, "left": 4135}, {"solidity": 0.9924811786505643, "top": 890, "right": 2025, "bottom": 3315, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719996f.jpg"} -{"rects": [{"solidity": 0.998160400596155, "top": 575, "right": 2700, "bottom": 3600, "left": 700}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723508f.jpg"} -{"rects": [{"solidity": 0.998160528629804, "top": 380, "right": 3210, "bottom": 1990, "left": 790}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713742f.jpg"} -{"rects": [{"solidity": 0.9981608047698567, "top": 1055, "right": 3465, "bottom": 5085, "left": 205}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712301f.jpg"} -{"rects": [{"solidity": 0.9981612013484523, "top": 855, "right": 3760, "bottom": 3275, "left": 2130}, {"solidity": 0.9984201345787401, "top": 845, "right": 1900, "bottom": 3270, "left": 290}, {"solidity": 0.9971794294220768, "top": 885, "right": 5625, "bottom": 3265, "left": 4000}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720866f.jpg"} -{"rects": [{"solidity": 0.9981618826427829, "top": 815, "right": 3795, "bottom": 3230, "left": 2170}, {"solidity": 0.9984696622625158, "top": 815, "right": 5660, "bottom": 3225, "left": 4040}, {"solidity": 0.9987556575672784, "top": 810, "right": 1945, "bottom": 3225, "left": 330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734387f.jpg"} -{"rects": [{"solidity": 0.9981623927371392, "top": 855, "right": 3805, "bottom": 3255, "left": 2225}, {"solidity": 0.9973263547413865, "top": 860, "right": 1960, "bottom": 3250, "left": 380}, {"solidity": 0.9963079693831607, "top": 860, "right": 5665, "bottom": 3250, "left": 4085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728939f.jpg"} -{"rects": [{"solidity": 0.9981624392312094, "top": 395, "right": 5100, "bottom": 3630, "left": 1010}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710580f.jpg"} -{"rects": [{"solidity": 0.9981630213277436, "top": 410, "right": 3145, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729328f.jpg"} -{"rects": [{"solidity": 0.9981634023524613, "top": 600, "right": 5065, "bottom": 3845, "left": 1040}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718387f.jpg"} -{"rects": [{"solidity": 0.9981634820530654, "top": 420, "right": 5105, "bottom": 3715, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720648f.jpg"} -{"rects": [{"solidity": 0.9981637616928002, "top": 480, "right": 3010, "bottom": 1900, "left": 1165}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726154f.jpg"} -{"rects": [{"solidity": 0.9981638500958416, "top": 3135, "right": 3275, "bottom": 5040, "left": 575}, {"solidity": 0.9960673454059918, "top": 635, "right": 3275, "bottom": 2485, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713312f.jpg"} -{"rects": [{"solidity": 0.9981639478972067, "top": 860, "right": 3835, "bottom": 3280, "left": 2215}, {"solidity": 0.9994966313017889, "top": 860, "right": 5700, "bottom": 3280, "left": 4090}, {"solidity": 0.9961740034849323, "top": 880, "right": 1980, "bottom": 3255, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705364f.jpg"} -{"rects": [{"solidity": 0.9981639773642804, "top": 410, "right": 3080, "bottom": 2030, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700923f.jpg"} -{"rects": [{"solidity": 0.998164286754505, "top": 415, "right": 5000, "bottom": 3670, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718092f.jpg"} -{"rects": [{"solidity": 0.9981643104937679, "top": 340, "right": 3940, "bottom": 2785, "left": 935}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516913.jpg"} -{"rects": [{"solidity": 0.9981643630595655, "top": 390, "right": 3490, "bottom": 2020, "left": 1075}, {"solidity": 0.9995464940127561, "top": 2075, "right": 3485, "bottom": 3700, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704511f.jpg"} -{"rects": [{"solidity": 0.9981645331325302, "top": 1035, "right": 3395, "bottom": 4935, "left": 245}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722560f.jpg"} -{"rects": [{"solidity": 0.9981645826114025, "top": 325, "right": 4935, "bottom": 3535, "left": 935}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734459f.jpg"} -{"rects": [{"solidity": 0.9981646379913248, "top": 1100, "right": 3645, "bottom": 5140, "left": 385}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/733503f.jpg"} -{"rects": [{"solidity": 0.998165014433728, "top": 825, "right": 2095, "bottom": 3250, "left": 470}, {"solidity": 0.9958100964097139, "top": 830, "right": 3890, "bottom": 3255, "left": 2275}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734263f.jpg"} -{"rects": [{"solidity": 0.9981651032597503, "top": 500, "right": 3330, "bottom": 2480, "left": 275}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709253f.jpg"} -{"rects": [{"solidity": 0.998165190858097, "top": 710, "right": 3235, "bottom": 2715, "left": 425}, {"solidity": 0.9966588900734688, "top": 3310, "right": 3235, "bottom": 5320, "left": 420}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729249f.jpg"} -{"rects": [{"solidity": 0.998165323945569, "top": 505, "right": 3155, "bottom": 2075, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710230f.jpg"} -{"rects": [{"solidity": 0.9981656091595477, "top": 950, "right": 3500, "bottom": 4965, "left": 325}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715018f.jpg"} -{"rects": [{"solidity": 0.9981657260133402, "top": 1010, "right": 3200, "bottom": 2630, "left": 780}, {"solidity": 0.9976339101078207, "top": 3345, "right": 3210, "bottom": 4965, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730805f.jpg"} -{"rects": [{"solidity": 0.9981660234787878, "top": 780, "right": 2030, "bottom": 3185, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721821f.jpg"} -{"rects": [{"solidity": 0.9981664627251746, "top": 430, "right": 5020, "bottom": 3685, "left": 1025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709442f.jpg"} -{"rects": [{"solidity": 0.9981667087896129, "top": 460, "right": 5065, "bottom": 3750, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700793f.jpg"} -{"rects": [{"solidity": 0.9981667846066898, "top": 2135, "right": 2750, "bottom": 3585, "left": 920}, {"solidity": 0.9995576357772767, "top": 630, "right": 2740, "bottom": 2080, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706746f.jpg"} -{"rects": [{"solidity": 0.9981668076402311, "top": 2200, "right": 3130, "bottom": 3820, "left": 715}, {"solidity": 0.9988078268757289, "top": 340, "right": 3130, "bottom": 1955, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718127f.jpg"} -{"rects": [{"solidity": 0.9981669611307421, "top": 1080, "right": 3530, "bottom": 5140, "left": 305}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709168f.jpg"} -{"rects": [{"solidity": 0.9981672865550377, "top": 685, "right": 2690, "bottom": 2095, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703824f.jpg"} -{"rects": [{"solidity": 0.9981676914674324, "top": 410, "right": 3410, "bottom": 2255, "left": 695}, {"solidity": 0.997463321337796, "top": 2525, "right": 3415, "bottom": 4360, "left": 690}, {"solidity": 0.9986312910644305, "top": 4655, "right": 3395, "bottom": 6480, "left": 675}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/701702f.jpg"} -{"rects": [{"solidity": 0.9981679636064592, "top": 435, "right": 5100, "bottom": 3660, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732706f.jpg"} -{"rects": [{"solidity": 0.9981682514018811, "top": 2250, "right": 3190, "bottom": 3865, "left": 760}, {"solidity": 0.9965065192286601, "top": 385, "right": 3205, "bottom": 2005, "left": 785}, {"solidity": 0.9946604465090572, "top": 4100, "right": 3200, "bottom": 5695, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719032f.jpg"} -{"rects": [{"solidity": 0.9981682862872127, "top": 425, "right": 3155, "bottom": 2040, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701874f.jpg"} -{"rects": [{"solidity": 0.9981683026741371, "top": 945, "right": 3510, "bottom": 4885, "left": 340}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718944f.jpg"} -{"rects": [{"solidity": 0.9981686903274419, "top": 715, "right": 2620, "bottom": 2140, "left": 765}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705256f.jpg"} -{"rects": [{"solidity": 0.9981687548015828, "top": 2230, "right": 5005, "bottom": 3655, "left": 3175}, {"solidity": 0.9972513247356578, "top": 635, "right": 5000, "bottom": 2055, "left": 3165}, {"solidity": 0.9965225257649227, "top": 2245, "right": 2800, "bottom": 3665, "left": 975}, {"solidity": 0.9972368273309997, "top": 630, "right": 2800, "bottom": 2045, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725252f.jpg"} -{"rects": [{"solidity": 0.9981690732257222, "top": 790, "right": 3475, "bottom": 4885, "left": 220}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706161f.jpg"} -{"rects": [{"solidity": 0.9981691991681657, "top": 775, "right": 2050, "bottom": 3200, "left": 425}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714587f.jpg"} -{"rects": [{"solidity": 0.9981694073844245, "top": 475, "right": 5035, "bottom": 3635, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719133f.jpg"} -{"rects": [{"solidity": 0.9981694517784812, "top": 550, "right": 2815, "bottom": 3560, "left": 775}, {"solidity": 0.9965763430240931, "top": 535, "right": 5415, "bottom": 3575, "left": 3400}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718644f.jpg"} -{"rects": [{"solidity": 0.9981696522625291, "top": 520, "right": 5050, "bottom": 3790, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712388f.jpg"} -{"rects": [{"solidity": 0.9981700282452162, "top": 295, "right": 3950, "bottom": 2710, "left": 940}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516923.jpg"} -{"rects": [{"solidity": 0.9981702453747869, "top": 410, "right": 2770, "bottom": 3605, "left": 755}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732994f.jpg"} -{"rects": [{"solidity": 0.9981705625471667, "top": 530, "right": 4950, "bottom": 3770, "left": 945}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705050f.jpg"} -{"rects": [{"solidity": 0.9981705780515183, "top": 790, "right": 2045, "bottom": 3200, "left": 450}, {"solidity": 0.995897919028062, "top": 1130, "right": 3655, "bottom": 2970, "left": 2245}, {"solidity": 0.9982064128256513, "top": 1135, "right": 5280, "bottom": 2960, "left": 3900}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703353f.jpg"} -{"rects": [{"solidity": 0.9981706553297774, "top": 375, "right": 5260, "bottom": 3630, "left": 1130}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732622f.jpg"} -{"rects": [{"solidity": 0.9981707612149758, "top": 420, "right": 3120, "bottom": 2035, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701238f.jpg"} -{"rects": [{"solidity": 0.9981708988018396, "top": 775, "right": 3860, "bottom": 3165, "left": 2265}, {"solidity": 0.9963005704111576, "top": 785, "right": 5715, "bottom": 3195, "left": 4110}, {"solidity": 0.9978735473940175, "top": 765, "right": 2000, "bottom": 3160, "left": 415}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731694f.jpg"} -{"rects": [{"solidity": 0.9981712872330814, "top": 450, "right": 5075, "bottom": 3750, "left": 1035}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710937f.jpg"} -{"rects": [{"solidity": 0.9981713330329095, "top": 815, "right": 1950, "bottom": 3195, "left": 330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721565f.jpg"} -{"rects": [{"solidity": 0.9981718013915991, "top": 695, "right": 2740, "bottom": 2100, "left": 920}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704422f.jpg"} -{"rects": [{"solidity": 0.9981718464351006, "top": 760, "right": 1980, "bottom": 3175, "left": 375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705698f.jpg"} -{"rects": [{"solidity": 0.9981719229246658, "top": 850, "right": 1985, "bottom": 3265, "left": 365}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720004f.jpg"} -{"rects": [{"solidity": 0.9981720059047948, "top": 875, "right": 3545, "bottom": 4900, "left": 280}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732915f.jpg"} -{"rects": [{"solidity": 0.9981720563887108, "top": 745, "right": 2005, "bottom": 3170, "left": 380}, {"solidity": 0.9974447073741647, "top": 745, "right": 3890, "bottom": 3170, "left": 2270}, {"solidity": 0.9971888707456856, "top": 740, "right": 5745, "bottom": 3170, "left": 4125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707775f.jpg"} -{"rects": [{"solidity": 0.9981728547953035, "top": 485, "right": 5120, "bottom": 3725, "left": 1040}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700916f.jpg"} -{"rects": [{"solidity": 0.9981731588967162, "top": 415, "right": 3175, "bottom": 2035, "left": 750}, {"solidity": 0.9987100624753323, "top": 2275, "right": 3175, "bottom": 3895, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701303f.jpg"} -{"rects": [{"solidity": 0.9981741658965103, "top": 2230, "right": 3090, "bottom": 3845, "left": 670}, {"solidity": 0.9957081828010864, "top": 380, "right": 3095, "bottom": 1980, "left": 685}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731579f.jpg"} -{"rects": [{"solidity": 0.99817455678304, "top": 2245, "right": 3230, "bottom": 3845, "left": 820}, {"solidity": 0.9957951870258959, "top": 390, "right": 3210, "bottom": 1990, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719310f.jpg"} -{"rects": [{"solidity": 0.998174697458009, "top": 1075, "right": 3615, "bottom": 5095, "left": 330}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732741f.jpg"} -{"rects": [{"solidity": 0.9981749844627056, "top": 410, "right": 3180, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734233f.jpg"} -{"rects": [{"solidity": 0.9981752364794887, "top": 800, "right": 2140, "bottom": 3200, "left": 545}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711099f.jpg"} -{"rects": [{"solidity": 0.9981756182361763, "top": 730, "right": 3785, "bottom": 3155, "left": 2155}, {"solidity": 0.9993742943808915, "top": 765, "right": 1870, "bottom": 3135, "left": 310}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717616f.jpg"} -{"rects": [{"solidity": 0.998175901027486, "top": 425, "right": 3125, "bottom": 2005, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714382f.jpg"} -{"rects": [{"solidity": 0.998176246501503, "top": 420, "right": 3060, "bottom": 2035, "left": 655}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718894f.jpg"} -{"rects": [{"solidity": 0.998176368861092, "top": 555, "right": 3155, "bottom": 2160, "left": 745}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723180f.jpg"} -{"rects": [{"solidity": 0.9981768273740712, "top": 625, "right": 3885, "bottom": 2445, "left": 1170}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706394f.jpg"} -{"rects": [{"solidity": 0.9981768995530463, "top": 400, "right": 5175, "bottom": 3675, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709025f.jpg"} -{"rects": [{"solidity": 0.9981769113720537, "top": 690, "right": 2760, "bottom": 3705, "left": 725}, {"solidity": 0.9988483321418344, "top": 680, "right": 5260, "bottom": 3700, "left": 3240}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715646f.jpg"} -{"rects": [{"solidity": 0.9981770035725305, "top": 455, "right": 5070, "bottom": 3415, "left": 1310}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734408f.jpg"} -{"rects": [{"solidity": 0.9981770191438666, "top": 815, "right": 2650, "bottom": 3825, "left": 210}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508291.jpg"} -{"rects": [{"solidity": 0.9981770647498817, "top": 805, "right": 3845, "bottom": 3220, "left": 2240}, {"solidity": 0.9987968223101662, "top": 805, "right": 5665, "bottom": 3215, "left": 4060}, {"solidity": 0.9971778292343116, "top": 810, "right": 2030, "bottom": 3220, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731652f.jpg"} -{"rects": [{"solidity": 0.9981774541312396, "top": 635, "right": 2520, "bottom": 3700, "left": 500}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715555f.jpg"} -{"rects": [{"solidity": 0.9981777003120662, "top": 465, "right": 5000, "bottom": 3525, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711460f.jpg"} -{"rects": [{"solidity": 0.9981779609235921, "top": 440, "right": 5230, "bottom": 3410, "left": 1385}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730483f.jpg"} -{"rects": [{"solidity": 0.99817802070835, "top": 435, "right": 3520, "bottom": 2230, "left": 840}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706819f.jpg"} -{"rects": [{"solidity": 0.9981785002762384, "top": 455, "right": 3180, "bottom": 2030, "left": 795}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723518f.jpg"} -{"rects": [{"solidity": 0.998178825586455, "top": 495, "right": 5055, "bottom": 3675, "left": 1090}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731944f.jpg"} -{"rects": [{"solidity": 0.998178841553524, "top": 435, "right": 5090, "bottom": 3725, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724766f.jpg"} -{"rects": [{"solidity": 0.9981790236893983, "top": 765, "right": 2010, "bottom": 3155, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724703f.jpg"} -{"rects": [{"solidity": 0.9981794751753196, "top": 985, "right": 3475, "bottom": 5040, "left": 265}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713762f.jpg"} -{"rects": [{"solidity": 0.9981797901315211, "top": 1045, "right": 3545, "bottom": 5075, "left": 280}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721607f.jpg"} -{"rects": [{"solidity": 0.9981799647784197, "top": 1075, "right": 3560, "bottom": 5115, "left": 275}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716980f.jpg"} -{"rects": [{"solidity": 0.9981806037087694, "top": 815, "right": 1975, "bottom": 3245, "left": 345}, {"solidity": 0.9974969512097536, "top": 810, "right": 3865, "bottom": 3230, "left": 2240}, {"solidity": 0.9958409426766389, "top": 815, "right": 5750, "bottom": 3225, "left": 4125}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719805f.jpg"} -{"rects": [{"solidity": 0.9981809318471067, "top": 400, "right": 3090, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729424f.jpg"} -{"rects": [{"solidity": 0.9981809338646899, "top": 765, "right": 3390, "bottom": 4255, "left": 595}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706010f.jpg"} -{"rects": [{"solidity": 0.9981809594322041, "top": 770, "right": 3850, "bottom": 3200, "left": 2225}, {"solidity": 0.9976677338842657, "top": 780, "right": 1995, "bottom": 3215, "left": 385}, {"solidity": 0.9972674754852586, "top": 770, "right": 5680, "bottom": 3185, "left": 4075}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733948f.jpg"} -{"rects": [{"solidity": 0.9981811398992234, "top": 710, "right": 2760, "bottom": 3725, "left": 335}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516877.jpg"} -{"rects": [{"solidity": 0.9981812125961467, "top": 450, "right": 5010, "bottom": 3670, "left": 995}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709695f.jpg"} -{"rects": [{"solidity": 0.9981812834427536, "top": 320, "right": 5115, "bottom": 3550, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702566f.jpg"} -{"rects": [{"solidity": 0.9981814421754416, "top": 780, "right": 2015, "bottom": 3175, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718814f.jpg"} -{"rects": [{"solidity": 0.9981815715356193, "top": 430, "right": 3115, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728849f.jpg"} -{"rects": [{"solidity": 0.9981820970102045, "top": 375, "right": 3090, "bottom": 2005, "left": 670}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700202f.jpg"} -{"rects": [{"solidity": 0.9981821510356279, "top": 310, "right": 3200, "bottom": 1935, "left": 785}, {"solidity": 0.997088281378192, "top": 2160, "right": 3200, "bottom": 3790, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718732f.jpg"} -{"rects": [{"solidity": 0.9981822356957194, "top": 465, "right": 5235, "bottom": 3705, "left": 1215}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721022f.jpg"} -{"rects": [{"solidity": 0.9981824367011712, "top": 2140, "right": 2630, "bottom": 3565, "left": 810}, {"solidity": 0.9953771686517648, "top": 675, "right": 2630, "bottom": 2085, "left": 815}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705641f.jpg"} -{"rects": [{"solidity": 0.9981826252541108, "top": 460, "right": 3180, "bottom": 2065, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706609f.jpg"} -{"rects": [{"solidity": 0.9981830089038137, "top": 640, "right": 4985, "bottom": 3265, "left": 1555}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733755f.jpg"} -{"rects": [{"solidity": 0.9981831057583856, "top": 375, "right": 5265, "bottom": 3630, "left": 1240}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728190f.jpg"} -{"rects": [{"solidity": 0.9981831194236366, "top": 430, "right": 5090, "bottom": 3665, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714872f.jpg"} -{"rects": [{"solidity": 0.9981836960005698, "top": 705, "right": 2015, "bottom": 3120, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705363f.jpg"} -{"rects": [{"solidity": 0.9981840730768341, "top": 1055, "right": 3490, "bottom": 5125, "left": 275}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709852f.jpg"} -{"rects": [{"solidity": 0.99818418572999, "top": 420, "right": 3140, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707699f.jpg"} -{"rects": [{"solidity": 0.9981842202678036, "top": 2280, "right": 3145, "bottom": 3910, "left": 725}, {"solidity": 0.9965503389084788, "top": 435, "right": 3170, "bottom": 2070, "left": 740}, {"solidity": 0.9973072684586268, "top": 4125, "right": 3135, "bottom": 5755, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703881f.jpg"} -{"rects": [{"solidity": 0.9981843552491176, "top": 795, "right": 2035, "bottom": 3185, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715405f.jpg"} -{"rects": [{"solidity": 0.9981843774668785, "top": 310, "right": 5095, "bottom": 3555, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707126f.jpg"} -{"rects": [{"solidity": 0.9981844798910883, "top": 1030, "right": 3520, "bottom": 5015, "left": 295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724790f.jpg"} -{"rects": [{"solidity": 0.9981846097299862, "top": 505, "right": 5135, "bottom": 3705, "left": 1090}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702825f.jpg"} -{"rects": [{"solidity": 0.998185047759356, "top": 320, "right": 4060, "bottom": 2745, "left": 840}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508765.jpg"} -{"rects": [{"solidity": 0.9981851001414378, "top": 900, "right": 3510, "bottom": 4845, "left": 580}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731787f.jpg"} -{"rects": [{"solidity": 0.9981851660005974, "top": 285, "right": 5120, "bottom": 3525, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706896f.jpg"} -{"rects": [{"solidity": 0.9981853290181364, "top": 445, "right": 5085, "bottom": 3745, "left": 1020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730151f.jpg"} -{"rects": [{"solidity": 0.9981853605080608, "top": 1035, "right": 3565, "bottom": 5055, "left": 290}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/726941f.jpg"} -{"rects": [{"solidity": 0.9981854093014436, "top": 945, "right": 3470, "bottom": 5055, "left": 205}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704585f.jpg"} -{"rects": [{"solidity": 0.9981859073746767, "top": 500, "right": 5060, "bottom": 3775, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712115f.jpg"} -{"rects": [{"solidity": 0.9981861287486196, "top": 410, "right": 5100, "bottom": 3640, "left": 1010}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720918f.jpg"} -{"rects": [{"solidity": 0.9981862009009721, "top": 460, "right": 4985, "bottom": 3655, "left": 1010}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731945f.jpg"} -{"rects": [{"solidity": 0.9981862814581911, "top": 460, "right": 3175, "bottom": 2080, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701401f.jpg"} -{"rects": [{"solidity": 0.9981866679928729, "top": 1025, "right": 3590, "bottom": 5055, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710165f.jpg"} -{"rects": [{"solidity": 0.9981871908097878, "top": 475, "right": 5050, "bottom": 3730, "left": 970}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734456f.jpg"} -{"rects": [{"solidity": 0.9981877576677578, "top": 450, "right": 3095, "bottom": 2030, "left": 715}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729925f.jpg"} -{"rects": [{"solidity": 0.9981879991541828, "top": 425, "right": 3140, "bottom": 2025, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729766f.jpg"} -{"rects": [{"solidity": 0.9981885107177101, "top": 2300, "right": 3105, "bottom": 3910, "left": 675}, {"solidity": 0.9962242418555893, "top": 400, "right": 3105, "bottom": 2015, "left": 690}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729741f.jpg"} -{"rects": [{"solidity": 0.9981885454405304, "top": 2180, "right": 2705, "bottom": 3620, "left": 890}, {"solidity": 0.9957771005659556, "top": 720, "right": 2710, "bottom": 2155, "left": 890}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726735f.jpg"} -{"rects": [{"solidity": 0.9981887781317439, "top": 2270, "right": 3175, "bottom": 3890, "left": 755}, {"solidity": 0.9982783840109769, "top": 415, "right": 3150, "bottom": 2025, "left": 735}, {"solidity": 0.9959888943117285, "top": 4135, "right": 3180, "bottom": 5750, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719527f.jpg"} -{"rects": [{"solidity": 0.9981888140092822, "top": 1065, "right": 3490, "bottom": 5110, "left": 210}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718414f.jpg"} -{"rects": [{"solidity": 0.9981891151135474, "top": 430, "right": 3200, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715743f.jpg"} -{"rects": [{"solidity": 0.9981895531458913, "top": 640, "right": 3910, "bottom": 3055, "left": 2280}, {"solidity": 0.997670037195384, "top": 635, "right": 2045, "bottom": 3050, "left": 430}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706048f.jpg"} -{"rects": [{"solidity": 0.9981897804586318, "top": 865, "right": 2065, "bottom": 3275, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724405f.jpg"} -{"rects": [{"solidity": 0.9981898740253983, "top": 450, "right": 5090, "bottom": 3740, "left": 1030}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730101f.jpg"} -{"rects": [{"solidity": 0.9981899700033898, "top": 355, "right": 3520, "bottom": 1985, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707279f.jpg"} -{"rects": [{"solidity": 0.9981901983440474, "top": 365, "right": 3510, "bottom": 1995, "left": 1090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705349f.jpg"} -{"rects": [{"solidity": 0.9981902086794252, "top": 435, "right": 5030, "bottom": 3665, "left": 1020}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715037f.jpg"} -{"rects": [{"solidity": 0.9981905247478231, "top": 870, "right": 2025, "bottom": 3245, "left": 435}, {"solidity": 0.9930131694216656, "top": 1010, "right": 3920, "bottom": 3125, "left": 2245}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708448f.jpg"} -{"rects": [{"solidity": 0.998190911273497, "top": 760, "right": 2005, "bottom": 3125, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714896f.jpg"} -{"rects": [{"solidity": 0.998191031015065, "top": 2300, "right": 3020, "bottom": 3915, "left": 615}, {"solidity": 0.9993722393166842, "top": 440, "right": 3010, "bottom": 2050, "left": 610}, {"solidity": 0.9975387444010511, "top": 4165, "right": 3005, "bottom": 5775, "left": 605}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718117f.jpg"} -{"rects": [{"solidity": 0.998191086992271, "top": 815, "right": 1985, "bottom": 3225, "left": 365}, {"solidity": 0.9967267638099943, "top": 825, "right": 3850, "bottom": 3225, "left": 2255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719866f.jpg"} -{"rects": [{"solidity": 0.9981910882330195, "top": 460, "right": 5095, "bottom": 3755, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714373f.jpg"} -{"rects": [{"solidity": 0.9981911316914375, "top": 790, "right": 2035, "bottom": 3210, "left": 430}, {"solidity": 0.9974844811336085, "top": 795, "right": 3870, "bottom": 3200, "left": 2260}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731143f.jpg"} -{"rects": [{"solidity": 0.9981913326574019, "top": 770, "right": 2590, "bottom": 3775, "left": 185}], "shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508963.jpg"} -{"rects": [{"solidity": 0.9981916940291913, "top": 880, "right": 3295, "bottom": 2845, "left": 475}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720193f.jpg"} -{"rects": [{"solidity": 0.9981917690097523, "top": 435, "right": 3375, "bottom": 2060, "left": 965}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720164f.jpg"} -{"rects": [{"solidity": 0.9981927063489737, "top": 855, "right": 1995, "bottom": 3270, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734826f.jpg"} -{"rects": [{"solidity": 0.9981927828032292, "top": 1035, "right": 3545, "bottom": 5055, "left": 330}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709768f.jpg"} -{"rects": [{"solidity": 0.9981928293934155, "top": 545, "right": 4940, "bottom": 3535, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712650f.jpg"} -{"rects": [{"solidity": 0.9981928838029209, "top": 655, "right": 2680, "bottom": 2070, "left": 870}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703277f.jpg"} -{"rects": [{"solidity": 0.9981928841512356, "top": 445, "right": 5140, "bottom": 3700, "left": 1045}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710533f.jpg"} -{"rects": [{"solidity": 0.9981934907392119, "top": 810, "right": 1990, "bottom": 3225, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709079f.jpg"} -{"rects": [{"solidity": 0.998193495232178, "top": 435, "right": 3110, "bottom": 2010, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714148f.jpg"} -{"rects": [{"solidity": 0.9981935106110459, "top": 795, "right": 2010, "bottom": 3170, "left": 415}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718020f.jpg"} -{"rects": [{"solidity": 0.9981936735771255, "top": 345, "right": 5305, "bottom": 3640, "left": 1280}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723666f.jpg"} -{"rects": [{"solidity": 0.9981945338661161, "top": 480, "right": 4875, "bottom": 3450, "left": 1145}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707655f.jpg"} -{"rects": [{"solidity": 0.9981945546355618, "top": 890, "right": 3505, "bottom": 4895, "left": 270}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/712145f.jpg"} -{"rects": [{"solidity": 0.9981951617852814, "top": 940, "right": 2720, "bottom": 3930, "left": 295}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507523.jpg"} -{"rects": [{"solidity": 0.9981952484738509, "top": 455, "right": 3185, "bottom": 2050, "left": 785}, {"solidity": 0.9957332791111053, "top": 2280, "right": 3200, "bottom": 3890, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709635f.jpg"} -{"rects": [{"solidity": 0.9981954864557885, "top": 380, "right": 5175, "bottom": 3680, "left": 1110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708571f.jpg"} -{"rects": [{"solidity": 0.9981955364634458, "top": 775, "right": 2030, "bottom": 3190, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732508f.jpg"} -{"rects": [{"solidity": 0.9981956820354534, "top": 805, "right": 3785, "bottom": 3205, "left": 2180}, {"solidity": 0.9932327205057477, "top": 810, "right": 1980, "bottom": 3205, "left": 380}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717943f.jpg"} -{"rects": [{"solidity": 0.9981957396174191, "top": 315, "right": 3200, "bottom": 1930, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704866f.jpg"} -{"rects": [{"solidity": 0.998196138788647, "top": 1045, "right": 3475, "bottom": 5050, "left": 295}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708798f.jpg"} -{"rects": [{"solidity": 0.9981961923770695, "top": 555, "right": 5065, "bottom": 3690, "left": 1205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733749f.jpg"} -{"rects": [{"solidity": 0.9981962127389188, "top": 1355, "right": 3280, "bottom": 4790, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723859f.jpg"} -{"rects": [{"solidity": 0.9981962158912101, "top": 395, "right": 3115, "bottom": 2015, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701875f.jpg"} -{"rects": [{"solidity": 0.9981962255247319, "top": 1430, "right": 3525, "bottom": 5235, "left": 530}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734442f.jpg"} -{"rects": [{"solidity": 0.998196243523316, "top": 795, "right": 2045, "bottom": 3215, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720886f.jpg"} -{"rects": [{"solidity": 0.9981963761210522, "top": 920, "right": 3550, "bottom": 4990, "left": 320}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714760f.jpg"} -{"rects": [{"solidity": 0.9981968409209896, "top": 625, "right": 5045, "bottom": 3265, "left": 1630}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720871f.jpg"} -{"rects": [{"solidity": 0.9981968606329931, "top": 380, "right": 5190, "bottom": 3495, "left": 1235}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733505f.jpg"} -{"rects": [{"solidity": 0.9981969122830867, "top": 420, "right": 5110, "bottom": 3675, "left": 1005}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715011f.jpg"} -{"rects": [{"solidity": 0.9981969370538856, "top": 1050, "right": 3520, "bottom": 5100, "left": 225}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/716975f.jpg"} -{"rects": [{"solidity": 0.9981970074172933, "top": 395, "right": 3330, "bottom": 2020, "left": 915}, {"solidity": 0.9972742606832947, "top": 2145, "right": 3320, "bottom": 3775, "left": 905}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702484f.jpg"} -{"rects": [{"solidity": 0.9981973538480234, "top": 1120, "right": 3680, "bottom": 5215, "left": 340}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/721017f.jpg"} -{"rects": [{"solidity": 0.9981978256612528, "top": 430, "right": 5155, "bottom": 3615, "left": 1180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708403f.jpg"} -{"rects": [{"solidity": 0.9981980724029137, "top": 2330, "right": 3175, "bottom": 3920, "left": 795}, {"solidity": 0.9980804031153457, "top": 545, "right": 3165, "bottom": 2135, "left": 790}, {"solidity": 0.9967659120461441, "top": 4125, "right": 3175, "bottom": 5720, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/716537f.jpg"} -{"rects": [{"solidity": 0.9981984625315415, "top": 420, "right": 5085, "bottom": 3625, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707513f.jpg"} -{"rects": [{"solidity": 0.9981984948715217, "top": 435, "right": 3175, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718800f.jpg"} -{"rects": [{"solidity": 0.9981985729126901, "top": 415, "right": 5125, "bottom": 3665, "left": 1040}], "shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/707432f.jpg"} -{"rects": [{"solidity": 0.9981986258832098, "top": 415, "right": 3180, "bottom": 2020, "left": 770}, {"solidity": 0.9952677923685664, "top": 2255, "right": 3165, "bottom": 3840, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702352f.jpg"} -{"rects": [{"solidity": 0.9981988698403064, "top": 465, "right": 3190, "bottom": 2065, "left": 805}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724010f.jpg"} -{"rects": [{"solidity": 0.9981988814997652, "top": 495, "right": 5105, "bottom": 3790, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705317f.jpg"} -{"rects": [{"solidity": 0.9981990326232376, "top": 780, "right": 2025, "bottom": 3210, "left": 415}, {"solidity": 0.9961512551503726, "top": 1040, "right": 3575, "bottom": 2810, "left": 2200}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705104f.jpg"} -{"rects": [{"solidity": 0.9981993009808817, "top": 785, "right": 5595, "bottom": 3205, "left": 3980}, {"solidity": 0.9982067946535794, "top": 780, "right": 2025, "bottom": 3195, "left": 425}, {"solidity": 0.9970516574870283, "top": 800, "right": 3795, "bottom": 3185, "left": 2205}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723506f.jpg"} -{"rects": [{"solidity": 0.9981993790290922, "top": 2220, "right": 3165, "bottom": 3830, "left": 755}, {"solidity": 0.9965450619388567, "top": 370, "right": 3165, "bottom": 1980, "left": 755}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/728843f.jpg"} -{"rects": [{"solidity": 0.9981994543995036, "top": 425, "right": 3085, "bottom": 2045, "left": 655}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733647f.jpg"} -{"rects": [{"solidity": 0.9982004307165826, "top": 400, "right": 3000, "bottom": 1815, "left": 1190}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726550f.jpg"} -{"rects": [{"solidity": 0.9982004484128545, "top": 2205, "right": 2820, "bottom": 3620, "left": 1010}, {"solidity": 0.9969687739501247, "top": 415, "right": 2825, "bottom": 1835, "left": 1010}, {"solidity": 0.9964281327535804, "top": 4090, "right": 2830, "bottom": 5505, "left": 1015}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727385f.jpg"} -{"rects": [{"solidity": 0.9982005300612536, "top": 835, "right": 2080, "bottom": 3235, "left": 470}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707623f.jpg"} -{"rects": [{"solidity": 0.9982007009836383, "top": 2345, "right": 3120, "bottom": 3960, "left": 705}, {"solidity": 0.9971102360907458, "top": 455, "right": 3115, "bottom": 2050, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731851f.jpg"} -{"rects": [{"solidity": 0.9982007504506303, "top": 420, "right": 3145, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721886f.jpg"} -{"rects": [{"solidity": 0.9982011409338165, "top": 4005, "right": 3125, "bottom": 5605, "left": 750}, {"solidity": 0.9977107693950558, "top": 2140, "right": 3125, "bottom": 3745, "left": 775}, {"solidity": 0.9981924304237185, "top": 310, "right": 3130, "bottom": 1900, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702268f.jpg"} -{"rects": [{"solidity": 0.9982013220607524, "top": 800, "right": 2055, "bottom": 3215, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734439f.jpg"} -{"rects": [{"solidity": 0.9982015058448672, "top": 905, "right": 3545, "bottom": 4970, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714804f.jpg"} -{"rects": [{"solidity": 0.9982016733516386, "top": 385, "right": 5075, "bottom": 3635, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733554f.jpg"} -{"rects": [{"solidity": 0.9982017544349832, "top": 580, "right": 5055, "bottom": 3505, "left": 1210}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708971f.jpg"} -{"rects": [{"solidity": 0.9982017891224472, "top": 380, "right": 3265, "bottom": 1985, "left": 850}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726519f.jpg"} -{"rects": [{"solidity": 0.9982018321079031, "top": 365, "right": 3205, "bottom": 1970, "left": 800}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718824f.jpg"} -{"rects": [{"solidity": 0.9982022588631813, "top": 385, "right": 5050, "bottom": 3645, "left": 1045}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732732f.jpg"} -{"rects": [{"solidity": 0.9982025145399116, "top": 865, "right": 2010, "bottom": 3275, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711437f.jpg"} -{"rects": [{"solidity": 0.9982025455110969, "top": 1160, "right": 3410, "bottom": 5210, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708681f.jpg"} -{"rects": [{"solidity": 0.9982027371671651, "top": 1095, "right": 2610, "bottom": 4240, "left": 180}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508269.jpg"} -{"rects": [{"solidity": 0.9982027525757343, "top": 750, "right": 2050, "bottom": 3170, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732429f.jpg"} -{"rects": [{"solidity": 0.9982028683234027, "top": 635, "right": 2765, "bottom": 3650, "left": 295}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509261.jpg"} -{"rects": [{"solidity": 0.9982031075929512, "top": 615, "right": 5035, "bottom": 3565, "left": 1185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717138f.jpg"} -{"rects": [{"solidity": 0.998203150112504, "top": 540, "right": 5000, "bottom": 2165, "left": 2590}, {"solidity": 0.9986885309603839, "top": 980, "right": 2025, "bottom": 3380, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704937f.jpg"} -{"rects": [{"solidity": 0.99820325573146, "top": 1045, "right": 3515, "bottom": 5070, "left": 270}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705335f.jpg"} -{"rects": [{"solidity": 0.9982033044978785, "top": 830, "right": 2025, "bottom": 3250, "left": 415}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714662f.jpg"} -{"rects": [{"solidity": 0.9982033259178619, "top": 510, "right": 2865, "bottom": 3575, "left": 785}, {"solidity": 0.9962694711776962, "top": 560, "right": 5080, "bottom": 1980, "left": 3285}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720132f.jpg"} -{"rects": [{"solidity": 0.998203377650018, "top": 4005, "right": 3185, "bottom": 5620, "left": 780}, {"solidity": 0.9989582888333164, "top": 2115, "right": 3185, "bottom": 3730, "left": 815}, {"solidity": 0.9974724507012549, "top": 290, "right": 3210, "bottom": 1890, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731091f.jpg"} -{"rects": [{"solidity": 0.9982034882798242, "top": 4105, "right": 3130, "bottom": 5740, "left": 705}, {"solidity": 0.9971289576521254, "top": 2240, "right": 3130, "bottom": 3870, "left": 705}, {"solidity": 0.997767136901612, "top": 390, "right": 3120, "bottom": 2010, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723348f.jpg"} -{"rects": [{"solidity": 0.998203537417021, "top": 410, "right": 4925, "bottom": 3695, "left": 870}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724050f.jpg"} -{"rects": [{"solidity": 0.9982035628761613, "top": 315, "right": 3980, "bottom": 2740, "left": 970}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517285.jpg"} -{"rects": [{"solidity": 0.9982035844235916, "top": 430, "right": 5045, "bottom": 3750, "left": 980}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720340f.jpg"} -{"rects": [{"solidity": 0.9982037505944654, "top": 400, "right": 3225, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726275f.jpg"} -{"rects": [{"solidity": 0.9982039285342171, "top": 720, "right": 2635, "bottom": 2135, "left": 840}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730489f.jpg"} -{"rects": [{"solidity": 0.9982040805854697, "top": 850, "right": 1920, "bottom": 3260, "left": 290}, {"solidity": 0.9965783910992849, "top": 880, "right": 3780, "bottom": 3275, "left": 2135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706085f.jpg"} -{"rects": [{"solidity": 0.9982042465820392, "top": 510, "right": 3185, "bottom": 2115, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710577f.jpg"} -{"rects": [{"solidity": 0.9982044363638708, "top": 840, "right": 2030, "bottom": 3245, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711752f.jpg"} -{"rects": [{"solidity": 0.998205344086498, "top": 515, "right": 5105, "bottom": 3735, "left": 1055}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700356f.jpg"} -{"rects": [{"solidity": 0.9982055090553265, "top": 2170, "right": 3255, "bottom": 3795, "left": 825}, {"solidity": 0.9953584975573606, "top": 700, "right": 2645, "bottom": 2145, "left": 805}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706490f.jpg"} -{"rects": [{"solidity": 0.9982055108183899, "top": 485, "right": 3240, "bottom": 2105, "left": 825}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714984f.jpg"} -{"rects": [{"solidity": 0.9982056626323605, "top": 730, "right": 2030, "bottom": 3150, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703360f.jpg"} -{"rects": [{"solidity": 0.998205751382387, "top": 435, "right": 3175, "bottom": 2040, "left": 770}, {"solidity": 0.9967579591450666, "top": 2260, "right": 3175, "bottom": 3870, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734791f.jpg"} -{"rects": [{"solidity": 0.9982057840111841, "top": 430, "right": 3195, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706960f.jpg"} -{"rects": [{"solidity": 0.9982057918565855, "top": 445, "right": 5110, "bottom": 3715, "left": 1090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725418f.jpg"} -{"rects": [{"solidity": 0.9982060312568787, "top": 700, "right": 2655, "bottom": 3520, "left": 630}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704242f.jpg"} -{"rects": [{"solidity": 0.9982062809254943, "top": 425, "right": 3195, "bottom": 2040, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701672f.jpg"} -{"rects": [{"solidity": 0.9982067208487491, "top": 485, "right": 5035, "bottom": 3755, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706225f.jpg"} -{"rects": [{"solidity": 0.998206953148165, "top": 440, "right": 5160, "bottom": 3620, "left": 1195}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717443f.jpg"} -{"rects": [{"solidity": 0.9982071783886296, "top": 1075, "right": 3540, "bottom": 5145, "left": 325}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732637f.jpg"} -{"rects": [{"solidity": 0.9982072150292437, "top": 935, "right": 3545, "bottom": 5010, "left": 315}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713317f.jpg"} -{"rects": [{"solidity": 0.9982078676255397, "top": 590, "right": 3055, "bottom": 2195, "left": 670}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704888f.jpg"} -{"rects": [{"solidity": 0.998208017529692, "top": 1085, "right": 3535, "bottom": 5045, "left": 390}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731781f.jpg"} -{"rects": [{"solidity": 0.9982080480147562, "top": 560, "right": 4990, "bottom": 3820, "left": 955}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703183f.jpg"} -{"rects": [{"solidity": 0.9982081283389171, "top": 720, "right": 2440, "bottom": 3535, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723446f.jpg"} -{"rects": [{"solidity": 0.9982081821839216, "top": 1040, "right": 2700, "bottom": 4070, "left": 240}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507506.jpg"} -{"rects": [{"solidity": 0.9982084188911704, "top": 1230, "right": 2725, "bottom": 4275, "left": 310}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715993f.jpg"} -{"rects": [{"solidity": 0.9982090206296055, "top": 1040, "right": 3535, "bottom": 5125, "left": 295}], "shape": {"h": 6140, "w": 3665}, "file": "/usr/local/google/home/danvk/milstein/717125f.jpg"} -{"rects": [{"solidity": 0.9982091311883488, "top": 435, "right": 3190, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712317f.jpg"} -{"rects": [{"solidity": 0.9982092795466279, "top": 530, "right": 5000, "bottom": 3530, "left": 965}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730123f.jpg"} -{"rects": [{"solidity": 0.9982093518046076, "top": 725, "right": 3860, "bottom": 3145, "left": 2240}, {"solidity": 0.9956521881798583, "top": 730, "right": 1995, "bottom": 3135, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726217f.jpg"} -{"rects": [{"solidity": 0.9982094092655048, "top": 895, "right": 3845, "bottom": 3315, "left": 2225}, {"solidity": 0.9964902582167169, "top": 905, "right": 2010, "bottom": 3325, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729755f.jpg"} -{"rects": [{"solidity": 0.9982101351885525, "top": 3395, "right": 3220, "bottom": 5030, "left": 785}, {"solidity": 0.996185365791632, "top": 475, "right": 2830, "bottom": 2910, "left": 1180}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706588f.jpg"} -{"rects": [{"solidity": 0.9982102895396462, "top": 1130, "right": 3445, "bottom": 5155, "left": 185}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712396f.jpg"} -{"rects": [{"solidity": 0.9982103894514935, "top": 1070, "right": 3535, "bottom": 5070, "left": 295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711933f.jpg"} -{"rects": [{"solidity": 0.9982106199864431, "top": 2300, "right": 3080, "bottom": 3920, "left": 660}, {"solidity": 0.9981001207248671, "top": 425, "right": 3070, "bottom": 2035, "left": 655}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730198f.jpg"} -{"rects": [{"solidity": 0.998210745358916, "top": 925, "right": 2040, "bottom": 3320, "left": 435}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728968f.jpg"} -{"rects": [{"solidity": 0.9982109449277733, "top": 1040, "right": 1770, "bottom": 2980, "left": 495}, {"solidity": 0.9982668091393864, "top": 1050, "right": 3410, "bottom": 2975, "left": 2130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730321f.jpg"} -{"rects": [{"solidity": 0.9982109913869076, "top": 345, "right": 5185, "bottom": 3555, "left": 1180}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708420f.jpg"} -{"rects": [{"solidity": 0.998211123851817, "top": 475, "right": 3295, "bottom": 2520, "left": 260}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711836f.jpg"} -{"rects": [{"solidity": 0.998211220848828, "top": 485, "right": 5160, "bottom": 3790, "left": 1115}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701086f.jpg"} -{"rects": [{"solidity": 0.9982114383851843, "top": 550, "right": 3060, "bottom": 2165, "left": 650}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707522f.jpg"} -{"rects": [{"solidity": 0.9982115075620394, "top": 525, "right": 5045, "bottom": 2150, "left": 2615}, {"solidity": 0.9990237402621389, "top": 835, "right": 1915, "bottom": 3235, "left": 325}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705715f.jpg"} -{"rects": [{"solidity": 0.9982115966877615, "top": 810, "right": 3865, "bottom": 3230, "left": 2245}, {"solidity": 0.9968663499873307, "top": 810, "right": 5695, "bottom": 3240, "left": 4075}, {"solidity": 0.99781783070486, "top": 815, "right": 2040, "bottom": 3235, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732110f.jpg"} -{"rects": [{"solidity": 0.9982116362865621, "top": 415, "right": 3105, "bottom": 2000, "left": 705}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728874f.jpg"} -{"rects": [{"solidity": 0.9982124633346384, "top": 415, "right": 3195, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704090f.jpg"} -{"rects": [{"solidity": 0.9982126783692142, "top": 2315, "right": 3055, "bottom": 3930, "left": 640}, {"solidity": 0.9947512312532294, "top": 440, "right": 3050, "bottom": 2040, "left": 640}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702073f.jpg"} -{"rects": [{"solidity": 0.9982127651307887, "top": 690, "right": 2065, "bottom": 3095, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710831f.jpg"} -{"rects": [{"solidity": 0.9982129082026228, "top": 720, "right": 3840, "bottom": 3145, "left": 2225}, {"solidity": 0.9961489833832181, "top": 730, "right": 5695, "bottom": 3150, "left": 4070}, {"solidity": 0.9962321024868124, "top": 725, "right": 1990, "bottom": 3145, "left": 380}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732811f.jpg"} -{"rects": [{"solidity": 0.9982134793220837, "top": 490, "right": 5020, "bottom": 3790, "left": 980}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708041f.jpg"} -{"rects": [{"solidity": 0.9982136698185037, "top": 790, "right": 3825, "bottom": 3200, "left": 2220}, {"solidity": 0.9961058886245141, "top": 795, "right": 2020, "bottom": 3210, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723566f.jpg"} -{"rects": [{"solidity": 0.9982139591740625, "top": 865, "right": 5055, "bottom": 3420, "left": 1125}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730724f.jpg"} -{"rects": [{"solidity": 0.9982141314053634, "top": 2210, "right": 3210, "bottom": 3830, "left": 780}, {"solidity": 0.9955972108153373, "top": 330, "right": 3210, "bottom": 1945, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733924f.jpg"} -{"rects": [{"solidity": 0.9982146219218458, "top": 405, "right": 3180, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705529f.jpg"} -{"rects": [{"solidity": 0.9982146780233683, "top": 430, "right": 3400, "bottom": 2255, "left": 670}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/706404f.jpg"} -{"rects": [{"solidity": 0.9982146970744068, "top": 420, "right": 5110, "bottom": 3725, "left": 1075}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725407f.jpg"} -{"rects": [{"solidity": 0.99821473456261, "top": 445, "right": 3210, "bottom": 2055, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713949f.jpg"} -{"rects": [{"solidity": 0.9982152645454309, "top": 830, "right": 2055, "bottom": 3240, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716780f.jpg"} -{"rects": [{"solidity": 0.9982153208840023, "top": 460, "right": 3155, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719604f.jpg"} -{"rects": [{"solidity": 0.9982154879953982, "top": 810, "right": 2085, "bottom": 3210, "left": 480}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714553f.jpg"} -{"rects": [{"solidity": 0.9982155913510937, "top": 570, "right": 3145, "bottom": 2185, "left": 725}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710978f.jpg"} -{"rects": [{"solidity": 0.9982160123108769, "top": 650, "right": 3135, "bottom": 2220, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710194f.jpg"} -{"rects": [{"solidity": 0.998216834642868, "top": 665, "right": 5245, "bottom": 2160, "left": 3300}, {"solidity": 0.9968307577327146, "top": 2140, "right": 2805, "bottom": 3515, "left": 865}, {"solidity": 0.9971917840709644, "top": 695, "right": 2785, "bottom": 2085, "left": 870}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722785f.jpg"} -{"rects": [{"solidity": 0.998217267421376, "top": 415, "right": 5075, "bottom": 3635, "left": 1000}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722344f.jpg"} -{"rects": [{"solidity": 0.9982176825460471, "top": 475, "right": 5050, "bottom": 3725, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712049f.jpg"} -{"rects": [{"solidity": 0.9982177900934059, "top": 315, "right": 3355, "bottom": 2750, "left": 290}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509983.jpg"} -{"rects": [{"solidity": 0.9982178446131801, "top": 845, "right": 2075, "bottom": 3240, "left": 480}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712436f.jpg"} -{"rects": [{"solidity": 0.9982181843102317, "top": 4050, "right": 3205, "bottom": 5650, "left": 795}, {"solidity": 0.9968358684639371, "top": 2325, "right": 3195, "bottom": 3925, "left": 790}, {"solidity": 0.9973607829677196, "top": 615, "right": 3180, "bottom": 2195, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733162f.jpg"} -{"rects": [{"solidity": 0.9982182037164816, "top": 465, "right": 5060, "bottom": 3750, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723054f.jpg"} -{"rects": [{"solidity": 0.9982182225478772, "top": 405, "right": 3200, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710838f.jpg"} -{"rects": [{"solidity": 0.9982184792290874, "top": 1575, "right": 2345, "bottom": 2785, "left": 545}, {"solidity": 0.9969527208263572, "top": 215, "right": 2335, "bottom": 1435, "left": 545}, {"solidity": 0.9974594591444903, "top": 2945, "right": 2355, "bottom": 4155, "left": 565}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/706065f.jpg"} -{"rects": [{"solidity": 0.9982187634601493, "top": 440, "right": 5050, "bottom": 3670, "left": 1050}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715546f.jpg"} -{"rects": [{"solidity": 0.9982191199973907, "top": 760, "right": 2020, "bottom": 3165, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719953f.jpg"} -{"rects": [{"solidity": 0.9982191625862543, "top": 4075, "right": 3065, "bottom": 5690, "left": 650}, {"solidity": 0.9964486485774846, "top": 2240, "right": 3065, "bottom": 3835, "left": 665}, {"solidity": 0.9959196722554193, "top": 400, "right": 3075, "bottom": 2005, "left": 670}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726629f.jpg"} -{"rects": [{"solidity": 0.9982194709467437, "top": 430, "right": 3185, "bottom": 2050, "left": 750}, {"solidity": 0.9965718875502008, "top": 4075, "right": 3190, "bottom": 5690, "left": 760}, {"solidity": 0.9962455141207677, "top": 2250, "right": 3175, "bottom": 3860, "left": 765}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706840f.jpg"} -{"rects": [{"solidity": 0.998220126996344, "top": 820, "right": 3830, "bottom": 3240, "left": 2210}, {"solidity": 0.9980022840230975, "top": 815, "right": 1950, "bottom": 3230, "left": 330}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723148f.jpg"} -{"rects": [{"solidity": 0.9982206121477563, "top": 910, "right": 3875, "bottom": 3335, "left": 2250}, {"solidity": 0.997070690144113, "top": 935, "right": 5755, "bottom": 3345, "left": 4130}, {"solidity": 0.9964155850877987, "top": 900, "right": 2025, "bottom": 3310, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721285f.jpg"} -{"rects": [{"solidity": 0.9982206617945272, "top": 480, "right": 5150, "bottom": 3665, "left": 1180}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704289f.jpg"} -{"rects": [{"solidity": 0.9982206640653369, "top": 730, "right": 2025, "bottom": 3120, "left": 430}, {"solidity": 0.9975680435637414, "top": 745, "right": 3880, "bottom": 3130, "left": 2280}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718384f.jpg"} -{"rects": [{"solidity": 0.998220774175435, "top": 405, "right": 3165, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724756f.jpg"} -{"rects": [{"solidity": 0.9982212384133446, "top": 2305, "right": 3135, "bottom": 3905, "left": 750}, {"solidity": 0.9948975806506006, "top": 430, "right": 3125, "bottom": 1995, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728456f.jpg"} -{"rects": [{"solidity": 0.9982216841386672, "top": 995, "right": 3470, "bottom": 5120, "left": 240}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714562f.jpg"} -{"rects": [{"solidity": 0.9982218234332889, "top": 835, "right": 1995, "bottom": 3245, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730213f.jpg"} -{"rects": [{"solidity": 0.9982218313408947, "top": 375, "right": 5095, "bottom": 3635, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727296f.jpg"} -{"rects": [{"solidity": 0.9982218360845642, "top": 245, "right": 2390, "bottom": 1450, "left": 585}, {"solidity": 0.9385173116089613, "top": 1555, "right": 2220, "bottom": 2635, "left": 780}, {"solidity": 0.9985364068788877, "top": 2875, "right": 2385, "bottom": 4305, "left": 1515}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715770f.jpg"} -{"rects": [{"solidity": 0.9982218437965492, "top": 410, "right": 5230, "bottom": 3645, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732642f.jpg"} -{"rects": [{"solidity": 0.9982220228291666, "top": 1145, "right": 3925, "bottom": 5725, "left": 285}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/708331f.jpg"} -{"rects": [{"solidity": 0.998222193385132, "top": 785, "right": 2035, "bottom": 3195, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722527f.jpg"} -{"rects": [{"solidity": 0.9982222026644958, "top": 895, "right": 2550, "bottom": 3610, "left": 435}], "shape": {"h": 4660, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/1517019.jpg"} -{"rects": [{"solidity": 0.9982222450358887, "top": 260, "right": 2680, "bottom": 3275, "left": 240}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507505.jpg"} -{"rects": [{"solidity": 0.9982224275796757, "top": 395, "right": 5055, "bottom": 3635, "left": 990}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708249f.jpg"} -{"rects": [{"solidity": 0.9982227476890968, "top": 355, "right": 5060, "bottom": 3635, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704837f.jpg"} -{"rects": [{"solidity": 0.9982228982571602, "top": 850, "right": 2435, "bottom": 2435, "left": 325}], "shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508615.jpg"} -{"rects": [{"solidity": 0.9982230353910493, "top": 350, "right": 5210, "bottom": 3575, "left": 1215}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733551f.jpg"} -{"rects": [{"solidity": 0.9982232613412247, "top": 275, "right": 5095, "bottom": 3510, "left": 1075}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710182f.jpg"} -{"rects": [{"solidity": 0.9982232756577388, "top": 455, "right": 5165, "bottom": 3695, "left": 1080}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732703f.jpg"} -{"rects": [{"solidity": 0.9982233593885477, "top": 730, "right": 2045, "bottom": 3130, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712357f.jpg"} -{"rects": [{"solidity": 0.9982235702311509, "top": 455, "right": 5015, "bottom": 3755, "left": 935}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723897f.jpg"} -{"rects": [{"solidity": 0.9982236041792198, "top": 355, "right": 5225, "bottom": 3655, "left": 1200}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732746f.jpg"} -{"rects": [{"solidity": 0.9982236235500448, "top": 560, "right": 2945, "bottom": 2180, "left": 535}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702386f.jpg"} -{"rects": [{"solidity": 0.9982239527298188, "top": 440, "right": 1875, "bottom": 3590, "left": 235}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708382f.jpg"} -{"rects": [{"solidity": 0.9982240280066951, "top": 300, "right": 3170, "bottom": 1925, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727227f.jpg"} -{"rects": [{"solidity": 0.9982241103663617, "top": 1420, "right": 3235, "bottom": 4760, "left": 730}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715547f.jpg"} -{"rects": [{"solidity": 0.9982244211912338, "top": 415, "right": 3160, "bottom": 2000, "left": 770}], "shape": {"h": 6065, "w": 3875}, "file": "/usr/local/google/home/danvk/milstein/728161f.jpg"} -{"rects": [{"solidity": 0.9982244837304042, "top": 470, "right": 5030, "bottom": 3705, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731861f.jpg"} -{"rects": [{"solidity": 0.998224608918982, "top": 485, "right": 5065, "bottom": 3760, "left": 945}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704624f.jpg"} -{"rects": [{"solidity": 0.9982248772643459, "top": 245, "right": 3155, "bottom": 1840, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720664f.jpg"} -{"rects": [{"solidity": 0.9982265101266272, "top": 880, "right": 2020, "bottom": 3295, "left": 405}, {"solidity": 0.9947170128342661, "top": 865, "right": 3865, "bottom": 3290, "left": 2235}, {"solidity": 0.9957306277643123, "top": 885, "right": 5740, "bottom": 3305, "left": 4115}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721717f.jpg"} -{"rects": [{"solidity": 0.9982268540618, "top": 445, "right": 5045, "bottom": 3710, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730326f.jpg"} -{"rects": [{"solidity": 0.9982270523067487, "top": 810, "right": 2055, "bottom": 3235, "left": 430}, {"solidity": 0.9918280025826596, "top": 1145, "right": 3665, "bottom": 2990, "left": 2235}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704433f.jpg"} -{"rects": [{"solidity": 0.9982272170187166, "top": 2255, "right": 3200, "bottom": 3875, "left": 770}, {"solidity": 0.9954679588531632, "top": 395, "right": 3205, "bottom": 2025, "left": 765}, {"solidity": 0.9942126500981928, "top": 4150, "right": 3190, "bottom": 5760, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724030f.jpg"} -{"rects": [{"solidity": 0.9982273982753974, "top": 445, "right": 2935, "bottom": 1980, "left": 985}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701820f.jpg"} -{"rects": [{"solidity": 0.9982275617372474, "top": 465, "right": 3120, "bottom": 2080, "left": 700}, {"solidity": 0.9984190845531655, "top": 2320, "right": 3135, "bottom": 3930, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730750f.jpg"} -{"rects": [{"solidity": 0.9982278124742203, "top": 345, "right": 5285, "bottom": 3570, "left": 1265}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727860f.jpg"} -{"rects": [{"solidity": 0.9982278426241474, "top": 415, "right": 5165, "bottom": 3675, "left": 1070}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732677f.jpg"} -{"rects": [{"solidity": 0.9982278584745242, "top": 445, "right": 3535, "bottom": 2250, "left": 815}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/703415f.jpg"} -{"rects": [{"solidity": 0.9982279686248432, "top": 950, "right": 3575, "bottom": 4995, "left": 290}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713262f.jpg"} -{"rects": [{"solidity": 0.998228171160502, "top": 1640, "right": 3640, "bottom": 5575, "left": 510}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723756f.jpg"} -{"rects": [{"solidity": 0.9982282486466696, "top": 800, "right": 2040, "bottom": 3205, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720416f.jpg"} -{"rects": [{"solidity": 0.9982283218010117, "top": 495, "right": 5070, "bottom": 3750, "left": 1035}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701756f.jpg"} -{"rects": [{"solidity": 0.9982283732832634, "top": 305, "right": 3920, "bottom": 2760, "left": 870}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509831.jpg"} -{"rects": [{"solidity": 0.998228472160234, "top": 775, "right": 2010, "bottom": 3125, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717667f.jpg"} -{"rects": [{"solidity": 0.9982285545939834, "top": 1090, "right": 3530, "bottom": 5120, "left": 260}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725400f.jpg"} -{"rects": [{"solidity": 0.9982290056671819, "top": 2285, "right": 3175, "bottom": 3900, "left": 755}, {"solidity": 0.9956073480618273, "top": 410, "right": 3180, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734405f.jpg"} -{"rects": [{"solidity": 0.9982294982160683, "top": 765, "right": 3245, "bottom": 2765, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728474f.jpg"} -{"rects": [{"solidity": 0.9982298281082415, "top": 395, "right": 5025, "bottom": 3665, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721226f.jpg"} -{"rects": [{"solidity": 0.9982299940745765, "top": 525, "right": 5120, "bottom": 3790, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733565f.jpg"} -{"rects": [{"solidity": 0.9982305228352966, "top": 430, "right": 3050, "bottom": 2050, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719059f.jpg"} -{"rects": [{"solidity": 0.998230554565394, "top": 740, "right": 3860, "bottom": 3165, "left": 2245}, {"solidity": 0.9962970602390704, "top": 755, "right": 2010, "bottom": 3155, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711756f.jpg"} -{"rects": [{"solidity": 0.9982308239514128, "top": 845, "right": 3425, "bottom": 4855, "left": 200}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707464f.jpg"} -{"rects": [{"solidity": 0.9982310385155612, "top": 755, "right": 3515, "bottom": 2765, "left": 320}, {"solidity": 0.9936511603531221, "top": 3400, "right": 3545, "bottom": 5310, "left": 430}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730688f.jpg"} -{"rects": [{"solidity": 0.998231179004872, "top": 405, "right": 5315, "bottom": 3660, "left": 1195}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732617f.jpg"} -{"rects": [{"solidity": 0.9982314836433945, "top": 425, "right": 4500, "bottom": 3670, "left": 480}, {"solidity": 0.9521629485935984, "top": 1235, "right": 5840, "bottom": 3030, "left": 4505}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712999f.jpg"} -{"rects": [{"solidity": 0.9982319763401587, "top": 2230, "right": 3195, "bottom": 3845, "left": 780}, {"solidity": 0.996896327644345, "top": 425, "right": 3185, "bottom": 2035, "left": 765}, {"solidity": 0.9966642438087326, "top": 4065, "right": 3195, "bottom": 5675, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734492f.jpg"} -{"rects": [{"solidity": 0.998232228944525, "top": 455, "right": 3145, "bottom": 2050, "left": 755}, {"solidity": 0.997686614225497, "top": 2290, "right": 3155, "bottom": 3875, "left": 765}, {"solidity": 0.9928167394184787, "top": 4130, "right": 3165, "bottom": 5705, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733796f.jpg"} -{"rects": [{"solidity": 0.998232244050297, "top": 440, "right": 2785, "bottom": 3270, "left": 830}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712421f.jpg"} -{"rects": [{"solidity": 0.9982322853614721, "top": 4120, "right": 3255, "bottom": 5750, "left": 835}, {"solidity": 0.9989060620793777, "top": 2250, "right": 3270, "bottom": 3880, "left": 855}, {"solidity": 0.9974694290176459, "top": 405, "right": 3275, "bottom": 2020, "left": 865}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702279f.jpg"} -{"rects": [{"solidity": 0.9982324858055909, "top": 485, "right": 5005, "bottom": 3735, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714736f.jpg"} -{"rects": [{"solidity": 0.9982329260495616, "top": 810, "right": 3910, "bottom": 3220, "left": 2285}, {"solidity": 0.9964908214053455, "top": 800, "right": 5780, "bottom": 3230, "left": 4165}, {"solidity": 0.9955119544914802, "top": 805, "right": 2015, "bottom": 3225, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732845f.jpg"} -{"rects": [{"solidity": 0.9982329475221935, "top": 515, "right": 5145, "bottom": 3770, "left": 1015}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713746f.jpg"} -{"rects": [{"solidity": 0.9982329749568781, "top": 800, "right": 3870, "bottom": 3210, "left": 2260}, {"solidity": 0.9988265404516675, "top": 810, "right": 2050, "bottom": 3215, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734670f.jpg"} -{"rects": [{"solidity": 0.9982331284621772, "top": 975, "right": 3560, "bottom": 5025, "left": 290}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721882f.jpg"} -{"rects": [{"solidity": 0.9982331450018966, "top": 670, "right": 2795, "bottom": 2060, "left": 980}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705120f.jpg"} -{"rects": [{"solidity": 0.9982332561916549, "top": 425, "right": 5940, "bottom": 4060, "left": 1420}], "shape": {"h": 4415, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711659f.jpg"} -{"rects": [{"solidity": 0.9982332724042942, "top": 2260, "right": 3195, "bottom": 3880, "left": 780}, {"solidity": 0.9965381803122756, "top": 4130, "right": 3215, "bottom": 5740, "left": 795}, {"solidity": 0.9974530765861492, "top": 425, "right": 3200, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709247f.jpg"} -{"rects": [{"solidity": 0.9982335112574205, "top": 1375, "right": 3555, "bottom": 5390, "left": 280}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714261f.jpg"} -{"rects": [{"solidity": 0.9982335225298274, "top": 845, "right": 2095, "bottom": 3265, "left": 480}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710834f.jpg"} -{"rects": [{"solidity": 0.998234080547435, "top": 950, "right": 3630, "bottom": 5025, "left": 360}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708076f.jpg"} -{"rects": [{"solidity": 0.9982341035620269, "top": 1045, "right": 3535, "bottom": 5070, "left": 295}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709740f.jpg"} -{"rects": [{"solidity": 0.9982346136234003, "top": 620, "right": 3275, "bottom": 2680, "left": 235}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720091f.jpg"} -{"rects": [{"solidity": 0.998234746502511, "top": 850, "right": 3875, "bottom": 3255, "left": 2250}, {"solidity": 0.9999739253155852, "top": 865, "right": 2025, "bottom": 3260, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710408f.jpg"} -{"rects": [{"solidity": 0.9982347551403545, "top": 435, "right": 3165, "bottom": 2055, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715340f.jpg"} -{"rects": [{"solidity": 0.9982347749338041, "top": 850, "right": 2005, "bottom": 3270, "left": 390}, {"solidity": 0.9970739409954401, "top": 860, "right": 3850, "bottom": 3280, "left": 2230}, {"solidity": 0.9969372376800791, "top": 845, "right": 5740, "bottom": 3260, "left": 4130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729281f.jpg"} -{"rects": [{"solidity": 0.9982348321816501, "top": 2275, "right": 3130, "bottom": 4205, "left": 315}, {"solidity": 0.9980961629072262, "top": 315, "right": 3125, "bottom": 2265, "left": 415}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705719f.jpg"} -{"rects": [{"solidity": 0.9982348629044704, "top": 380, "right": 3125, "bottom": 1995, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700868f.jpg"} -{"rects": [{"solidity": 0.998234952001304, "top": 435, "right": 5075, "bottom": 3690, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720752f.jpg"} -{"rects": [{"solidity": 0.9982349648730023, "top": 1005, "right": 3510, "bottom": 5010, "left": 260}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731495f.jpg"} -{"rects": [{"solidity": 0.9982356236699028, "top": 1025, "right": 3630, "bottom": 5110, "left": 355}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/723433f.jpg"} -{"rects": [{"solidity": 0.9982363144473354, "top": 420, "right": 3070, "bottom": 2030, "left": 655}, {"solidity": 0.9985044623347867, "top": 2280, "right": 3055, "bottom": 3890, "left": 640}, {"solidity": 0.996280834178843, "top": 4140, "right": 3060, "bottom": 5755, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734195f.jpg"} -{"rects": [{"solidity": 0.9982364076804014, "top": 410, "right": 5145, "bottom": 3670, "left": 1120}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726939f.jpg"} -{"rects": [{"solidity": 0.9982365381486904, "top": 430, "right": 3230, "bottom": 2035, "left": 820}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/706707f.jpg"} -{"rects": [{"solidity": 0.9982367741977001, "top": 370, "right": 3210, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702193f.jpg"} -{"rects": [{"solidity": 0.9982370561101371, "top": 400, "right": 3090, "bottom": 2010, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729145f.jpg"} -{"rects": [{"solidity": 0.9982370984740084, "top": 630, "right": 2395, "bottom": 3510, "left": 355}, {"solidity": 0.9982790527335837, "top": 885, "right": 4215, "bottom": 3290, "left": 2600}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715664f.jpg"} -{"rects": [{"solidity": 0.9982371951816669, "top": 335, "right": 5185, "bottom": 3590, "left": 1165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730062f.jpg"} -{"rects": [{"solidity": 0.9982373447884161, "top": 130, "right": 2365, "bottom": 3570, "left": 130}], "shape": {"h": 3700, "w": 2495}, "file": "/usr/local/google/home/danvk/milstein/1558329.jpg"} -{"rects": [{"solidity": 0.9982373602707415, "top": 2260, "right": 3320, "bottom": 3880, "left": 895}, {"solidity": 0.9987892292929228, "top": 440, "right": 3330, "bottom": 2050, "left": 905}, {"solidity": 0.9976078945926167, "top": 4090, "right": 3315, "bottom": 5705, "left": 890}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726792f.jpg"} -{"rects": [{"solidity": 0.9982375426092492, "top": 230, "right": 5080, "bottom": 3510, "left": 1025}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702331f.jpg"} -{"rects": [{"solidity": 0.9982376147975682, "top": 390, "right": 3055, "bottom": 2005, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723121f.jpg"} -{"rects": [{"solidity": 0.9982379137928262, "top": 810, "right": 2010, "bottom": 3220, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721684f.jpg"} -{"rects": [{"solidity": 0.9982381671718341, "top": 825, "right": 2045, "bottom": 3225, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721643f.jpg"} -{"rects": [{"solidity": 0.9982381777540148, "top": 2250, "right": 3195, "bottom": 3870, "left": 780}, {"solidity": 0.9971830075916653, "top": 430, "right": 3190, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705492f.jpg"} -{"rects": [{"solidity": 0.9982383396746779, "top": 780, "right": 2035, "bottom": 3225, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700017f.jpg"} -{"rects": [{"solidity": 0.9982384923353501, "top": 955, "right": 3610, "bottom": 5105, "left": 330}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/713186f.jpg"} -{"rects": [{"solidity": 0.9982389176087044, "top": 510, "right": 5130, "bottom": 3760, "left": 1110}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709501f.jpg"} -{"rects": [{"solidity": 0.9982391042541419, "top": 775, "right": 2070, "bottom": 3190, "left": 470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712964f.jpg"} -{"rects": [{"solidity": 0.9982392750926494, "top": 440, "right": 5030, "bottom": 3535, "left": 1090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711491f.jpg"} -{"rects": [{"solidity": 0.9982392753549437, "top": 585, "right": 2685, "bottom": 3625, "left": 650}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714690f.jpg"} -{"rects": [{"solidity": 0.9982394026199749, "top": 325, "right": 3190, "bottom": 1945, "left": 775}, {"solidity": 0.9964268338654956, "top": 2180, "right": 3185, "bottom": 3795, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718057f.jpg"} -{"rects": [{"solidity": 0.9982394586263162, "top": 440, "right": 5095, "bottom": 3695, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714248f.jpg"} -{"rects": [{"solidity": 0.9982396466396918, "top": 860, "right": 3915, "bottom": 3285, "left": 2305}, {"solidity": 0.9972497533483367, "top": 855, "right": 2040, "bottom": 3280, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729182f.jpg"} -{"rects": [{"solidity": 0.9982399791745225, "top": 435, "right": 5100, "bottom": 3695, "left": 1075}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726176f.jpg"} -{"rects": [{"solidity": 0.9982405811257047, "top": 665, "right": 2060, "bottom": 3075, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703291f.jpg"} -{"rects": [{"solidity": 0.9982407160266289, "top": 1040, "right": 3515, "bottom": 5050, "left": 300}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717005f.jpg"} -{"rects": [{"solidity": 0.9982408156451841, "top": 820, "right": 3870, "bottom": 3240, "left": 2250}, {"solidity": 0.9966330509787718, "top": 810, "right": 2050, "bottom": 3235, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704817f.jpg"} -{"rects": [{"solidity": 0.9982409484139699, "top": 2090, "right": 3220, "bottom": 3715, "left": 800}, {"solidity": 0.9978963571062083, "top": 365, "right": 3205, "bottom": 1995, "left": 790}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704568f.jpg"} -{"rects": [{"solidity": 0.998241098848223, "top": 550, "right": 2840, "bottom": 3580, "left": 785}, {"solidity": 0.9973757292350918, "top": 850, "right": 5085, "bottom": 3250, "left": 3470}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715709f.jpg"} -{"rects": [{"solidity": 0.9982411594692918, "top": 765, "right": 2015, "bottom": 3170, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713366f.jpg"} -{"rects": [{"solidity": 0.9982413372268407, "top": 325, "right": 5695, "bottom": 3955, "left": 1180}], "shape": {"h": 4410, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/702232f.jpg"} -{"rects": [{"solidity": 0.998241398954747, "top": 690, "right": 2465, "bottom": 2090, "left": 645}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706109f.jpg"} -{"rects": [{"solidity": 0.9982414533017118, "top": 340, "right": 5400, "bottom": 3640, "left": 1375}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723667f.jpg"} -{"rects": [{"solidity": 0.9982414722521916, "top": 1030, "right": 3465, "bottom": 5040, "left": 215}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721652f.jpg"} -{"rects": [{"solidity": 0.9982416955757258, "top": 2325, "right": 2895, "bottom": 3755, "left": 1040}, {"solidity": 0.9972515988295271, "top": 4155, "right": 2865, "bottom": 5590, "left": 1035}, {"solidity": 0.9966172789391787, "top": 485, "right": 2885, "bottom": 1920, "left": 1060}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702615f.jpg"} -{"rects": [{"solidity": 0.9982417241446182, "top": 415, "right": 3130, "bottom": 2030, "left": 720}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728832f.jpg"} -{"rects": [{"solidity": 0.9982418119223373, "top": 380, "right": 5505, "bottom": 3615, "left": 3500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707038f.jpg"} -{"rects": [{"solidity": 0.9982418950520702, "top": 645, "right": 2640, "bottom": 3650, "left": 650}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720423f.jpg"} -{"rects": [{"solidity": 0.9982425752208944, "top": 890, "right": 3520, "bottom": 4880, "left": 285}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/733569f.jpg"} -{"rects": [{"solidity": 0.9982427962672876, "top": 1055, "right": 3555, "bottom": 5095, "left": 260}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725406f.jpg"} -{"rects": [{"solidity": 0.9982428215454566, "top": 2275, "right": 3220, "bottom": 3870, "left": 835}, {"solidity": 0.998952890023535, "top": 470, "right": 3240, "bottom": 2060, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732061f.jpg"} -{"rects": [{"solidity": 0.9982429941258789, "top": 585, "right": 4975, "bottom": 3510, "left": 950}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712813f.jpg"} -{"rects": [{"solidity": 0.9982430052976052, "top": 1065, "right": 2455, "bottom": 4040, "left": 230}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508299.jpg"} -{"rects": [{"solidity": 0.9982432316848734, "top": 375, "right": 5020, "bottom": 3625, "left": 990}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712944f.jpg"} -{"rects": [{"solidity": 0.9982434837853535, "top": 900, "right": 3550, "bottom": 4955, "left": 245}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710968f.jpg"} -{"rects": [{"solidity": 0.9982434937375888, "top": 865, "right": 3565, "bottom": 2880, "left": 350}, {"solidity": 0.9986054601299883, "top": 440, "right": 5755, "bottom": 3645, "left": 3740}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733005f.jpg"} -{"rects": [{"solidity": 0.9982435501793925, "top": 410, "right": 3205, "bottom": 2015, "left": 800}, {"solidity": 0.9953811388772921, "top": 2215, "right": 3200, "bottom": 3805, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724222f.jpg"} -{"rects": [{"solidity": 0.9982439606937166, "top": 540, "right": 5075, "bottom": 3775, "left": 1010}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706619f.jpg"} -{"rects": [{"solidity": 0.9982439943962762, "top": 765, "right": 3820, "bottom": 3165, "left": 2195}, {"solidity": 0.9444622766516053, "top": 865, "right": 1845, "bottom": 3135, "left": 375}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708091f.jpg"} -{"rects": [{"solidity": 0.9982441879369208, "top": 810, "right": 2005, "bottom": 3215, "left": 395}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718019f.jpg"} -{"rects": [{"solidity": 0.9982442943015479, "top": 1250, "right": 3290, "bottom": 4735, "left": 675}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708994f.jpg"} -{"rects": [{"solidity": 0.9982446782718324, "top": 865, "right": 3925, "bottom": 3270, "left": 2305}, {"solidity": 0.996183268629089, "top": 860, "right": 2075, "bottom": 3260, "left": 470}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709401f.jpg"} -{"rects": [{"solidity": 0.9982446822959256, "top": 290, "right": 5095, "bottom": 3610, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702083f.jpg"} -{"rects": [{"solidity": 0.9982452444790969, "top": 440, "right": 5155, "bottom": 3685, "left": 1090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723454f.jpg"} -{"rects": [{"solidity": 0.9982453050182554, "top": 400, "right": 5285, "bottom": 3670, "left": 1260}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719106f.jpg"} -{"rects": [{"solidity": 0.9982453090715881, "top": 675, "right": 3515, "bottom": 3075, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718040f.jpg"} -{"rects": [{"solidity": 0.9982456709378553, "top": 435, "right": 5100, "bottom": 3700, "left": 1065}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707605f.jpg"} -{"rects": [{"solidity": 0.9982458452607954, "top": 460, "right": 5055, "bottom": 3730, "left": 1000}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716851f.jpg"} -{"rects": [{"solidity": 0.9982459933698743, "top": 1005, "right": 3545, "bottom": 5025, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709767f.jpg"} -{"rects": [{"solidity": 0.9982460214592758, "top": 325, "right": 5725, "bottom": 3795, "left": 235}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716815f.jpg"} -{"rects": [{"solidity": 0.9982463277145172, "top": 455, "right": 3180, "bottom": 2015, "left": 820}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720102f.jpg"} -{"rects": [{"solidity": 0.9982463888600228, "top": 420, "right": 3210, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725187f.jpg"} -{"rects": [{"solidity": 0.9982464189620045, "top": 500, "right": 5250, "bottom": 2120, "left": 3250}, {"solidity": 0.9955904509846373, "top": 2205, "right": 2790, "bottom": 3750, "left": 945}, {"solidity": 0.9931656727568509, "top": 525, "right": 2785, "bottom": 2070, "left": 930}, {"solidity": 0.9925807759661701, "top": 2210, "right": 5175, "bottom": 3755, "left": 3330}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708711f.jpg"} -{"rects": [{"solidity": 0.9982464262741065, "top": 2335, "right": 3165, "bottom": 3915, "left": 1220}, {"solidity": 0.9923872026251025, "top": 420, "right": 3165, "bottom": 2005, "left": 1215}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704100f.jpg"} -{"rects": [{"solidity": 0.9982465312166151, "top": 785, "right": 2055, "bottom": 3200, "left": 450}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702658f.jpg"} -{"rects": [{"solidity": 0.9982469825771921, "top": 410, "right": 5155, "bottom": 3690, "left": 1120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732759f.jpg"} -{"rects": [{"solidity": 0.9982472396392914, "top": 420, "right": 5080, "bottom": 3710, "left": 1045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708716f.jpg"} -{"rects": [{"solidity": 0.9982476102393107, "top": 535, "right": 2760, "bottom": 3590, "left": 730}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713209f.jpg"} -{"rects": [{"solidity": 0.9982476827190013, "top": 3095, "right": 3485, "bottom": 5135, "left": 665}, {"solidity": 0.9962686814022877, "top": 680, "right": 3515, "bottom": 2720, "left": 695}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/732038f.jpg"} -{"rects": [{"solidity": 0.9982477551493499, "top": 360, "right": 3815, "bottom": 2775, "left": 755}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716525f.jpg"} -{"rects": [{"solidity": 0.9982478662717627, "top": 615, "right": 4850, "bottom": 3640, "left": 1135}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706782f.jpg"} -{"rects": [{"solidity": 0.9982482782814203, "top": 620, "right": 4995, "bottom": 3545, "left": 1230}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720269f.jpg"} -{"rects": [{"solidity": 0.9982484671697543, "top": 480, "right": 5040, "bottom": 3720, "left": 980}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708270f.jpg"} -{"rects": [{"solidity": 0.9982485830009893, "top": 355, "right": 3590, "bottom": 2840, "left": 335}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722448f.jpg"} -{"rects": [{"solidity": 0.9982492778033842, "top": 555, "right": 3510, "bottom": 4645, "left": 270}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702966f.jpg"} -{"rects": [{"solidity": 0.9982493299214434, "top": 680, "right": 2280, "bottom": 3105, "left": 655}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706117f.jpg"} -{"rects": [{"solidity": 0.9982495438735064, "top": 470, "right": 3225, "bottom": 2510, "left": 225}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714683f.jpg"} -{"rects": [{"solidity": 0.9982497007344139, "top": 330, "right": 3155, "bottom": 1945, "left": 745}, {"solidity": 0.9976549814662673, "top": 2195, "right": 3145, "bottom": 3810, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711812f.jpg"} -{"rects": [{"solidity": 0.9982501121722966, "top": 435, "right": 3215, "bottom": 2050, "left": 785}, {"solidity": 0.9933024814128498, "top": 2310, "right": 3215, "bottom": 3930, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700978f.jpg"} -{"rects": [{"solidity": 0.9982502423781253, "top": 540, "right": 5040, "bottom": 3770, "left": 1015}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705974f.jpg"} -{"rects": [{"solidity": 0.9982504277877423, "top": 475, "right": 5220, "bottom": 3695, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717141f.jpg"} -{"rects": [{"solidity": 0.9982504648718571, "top": 2290, "right": 3095, "bottom": 3895, "left": 670}, {"solidity": 0.9970283472366542, "top": 415, "right": 3070, "bottom": 2020, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734630f.jpg"} -{"rects": [{"solidity": 0.9982511007114767, "top": 735, "right": 2055, "bottom": 3155, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716798f.jpg"} -{"rects": [{"solidity": 0.9982511108027788, "top": 2395, "right": 3170, "bottom": 4010, "left": 755}, {"solidity": 0.9950110435153253, "top": 555, "right": 3130, "bottom": 2175, "left": 710}, {"solidity": 0.9964907623527431, "top": 4190, "right": 3160, "bottom": 5805, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731556f.jpg"} -{"rects": [{"solidity": 0.9982511697346549, "top": 960, "right": 3575, "bottom": 2990, "left": 350}, {"solidity": 0.9988627060259203, "top": 3570, "right": 3570, "bottom": 5590, "left": 350}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724953f.jpg"} -{"rects": [{"solidity": 0.9982513899208322, "top": 4105, "right": 3275, "bottom": 5735, "left": 860}, {"solidity": 0.9975252889589069, "top": 2220, "right": 3285, "bottom": 3840, "left": 880}, {"solidity": 0.997820666429196, "top": 380, "right": 3290, "bottom": 1995, "left": 880}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702281f.jpg"} -{"rects": [{"solidity": 0.998252039554214, "top": 960, "right": 5490, "bottom": 2595, "left": 680}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720234f.jpg"} -{"rects": [{"solidity": 0.9982521256373769, "top": 690, "right": 2445, "bottom": 3735, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712689f.jpg"} -{"rects": [{"solidity": 0.998252457679015, "top": 395, "right": 5130, "bottom": 3475, "left": 1260}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700651f.jpg"} -{"rects": [{"solidity": 0.9982525070023994, "top": 900, "right": 3600, "bottom": 4975, "left": 375}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700533f.jpg"} -{"rects": [{"solidity": 0.9982525220401887, "top": 375, "right": 2935, "bottom": 1985, "left": 550}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704760f.jpg"} -{"rects": [{"solidity": 0.998253235848481, "top": 825, "right": 2045, "bottom": 3245, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721266f.jpg"} -{"rects": [{"solidity": 0.9982533868620144, "top": 370, "right": 2785, "bottom": 2790, "left": 1160}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707331f.jpg"} -{"rects": [{"solidity": 0.9982533941135665, "top": 1085, "right": 3775, "bottom": 5125, "left": 505}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713933f.jpg"} -{"rects": [{"solidity": 0.9982534285165079, "top": 2240, "right": 3165, "bottom": 3820, "left": 760}, {"solidity": 0.9972842416294551, "top": 410, "right": 3175, "bottom": 1990, "left": 770}, {"solidity": 0.9958433646799059, "top": 4090, "right": 3180, "bottom": 5670, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726124f.jpg"} -{"rects": [{"solidity": 0.9982534649389819, "top": 440, "right": 5120, "bottom": 3690, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701405f.jpg"} -{"rects": [{"solidity": 0.9982535032417916, "top": 395, "right": 5125, "bottom": 3625, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732676f.jpg"} -{"rects": [{"solidity": 0.998254006298227, "top": 320, "right": 3275, "bottom": 2790, "left": 210}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509875.jpg"} -{"rects": [{"solidity": 0.9982541292141284, "top": 380, "right": 3200, "bottom": 1980, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724522f.jpg"} -{"rects": [{"solidity": 0.9982542142571508, "top": 405, "right": 5170, "bottom": 3595, "left": 1210}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703048f.jpg"} -{"rects": [{"solidity": 0.9982542943394771, "top": 790, "right": 3850, "bottom": 3215, "left": 2235}, {"solidity": 0.9973029774608297, "top": 805, "right": 2025, "bottom": 3215, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704500f.jpg"} -{"rects": [{"solidity": 0.9982543050612472, "top": 2025, "right": 5450, "bottom": 3580, "left": 3530}, {"solidity": 0.9920563422971357, "top": 2010, "right": 2745, "bottom": 3595, "left": 820}, {"solidity": 0.99337604748158, "top": 300, "right": 5440, "bottom": 1850, "left": 3515}, {"solidity": 0.9926045279986868, "top": 295, "right": 2745, "bottom": 1845, "left": 840}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709748f.jpg"} -{"rects": [{"solidity": 0.9982543687286263, "top": 475, "right": 4990, "bottom": 3675, "left": 980}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720770f.jpg"} -{"rects": [{"solidity": 0.9982546585453982, "top": 400, "right": 3135, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729584f.jpg"} -{"rects": [{"solidity": 0.9982548397981609, "top": 1245, "right": 3540, "bottom": 5250, "left": 300}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722223f.jpg"} -{"rects": [{"solidity": 0.9982550460661411, "top": 390, "right": 3095, "bottom": 2010, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729610f.jpg"} -{"rects": [{"solidity": 0.9982554695585948, "top": 430, "right": 3080, "bottom": 2045, "left": 685}, {"solidity": 0.9982887490165224, "top": 2265, "right": 3060, "bottom": 3885, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715719f.jpg"} -{"rects": [{"solidity": 0.9982555146708356, "top": 490, "right": 2600, "bottom": 2920, "left": 970}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714147f.jpg"} -{"rects": [{"solidity": 0.9982555252449036, "top": 3990, "right": 3215, "bottom": 5600, "left": 790}, {"solidity": 0.997239647868593, "top": 590, "right": 3195, "bottom": 2200, "left": 780}, {"solidity": 0.9962720314835045, "top": 2295, "right": 3220, "bottom": 3900, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733175f.jpg"} -{"rects": [{"solidity": 0.9982555285121851, "top": 430, "right": 5180, "bottom": 3715, "left": 1145}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725012f.jpg"} -{"rects": [{"solidity": 0.9982558360720024, "top": 485, "right": 5400, "bottom": 3690, "left": 1385}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701219f.jpg"} -{"rects": [{"solidity": 0.9982559558432714, "top": 475, "right": 5070, "bottom": 3715, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700706f.jpg"} -{"rects": [{"solidity": 0.9982560904719124, "top": 990, "right": 4025, "bottom": 5505, "left": 395}], "shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/703414f.jpg"} -{"rects": [{"solidity": 0.9982561124935814, "top": 390, "right": 5120, "bottom": 3580, "left": 1135}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718162f.jpg"} -{"rects": [{"solidity": 0.9982562941369565, "top": 450, "right": 5290, "bottom": 3680, "left": 1220}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701098f.jpg"} -{"rects": [{"solidity": 0.9982566193982224, "top": 3320, "right": 3290, "bottom": 5330, "left": 475}, {"solidity": 0.9978507486670402, "top": 730, "right": 3285, "bottom": 2735, "left": 475}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734851f.jpg"} -{"rects": [{"solidity": 0.99825664108408, "top": 515, "right": 5030, "bottom": 3800, "left": 995}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703599f.jpg"} -{"rects": [{"solidity": 0.9982566979922972, "top": 670, "right": 1980, "bottom": 3090, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725258f.jpg"} -{"rects": [{"solidity": 0.9982569413599974, "top": 1015, "right": 3450, "bottom": 4855, "left": 430}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708780f.jpg"} -{"rects": [{"solidity": 0.9982569785059449, "top": 385, "right": 3125, "bottom": 2010, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700873f.jpg"} -{"rects": [{"solidity": 0.9982570695294284, "top": 445, "right": 4995, "bottom": 3650, "left": 990}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724021f.jpg"} -{"rects": [{"solidity": 0.9982572380580835, "top": 840, "right": 2055, "bottom": 3270, "left": 435}, {"solidity": 0.9920599857137549, "top": 1080, "right": 3885, "bottom": 3040, "left": 2325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701396f.jpg"} -{"rects": [{"solidity": 0.9982574714116403, "top": 415, "right": 3290, "bottom": 2040, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707200f.jpg"} -{"rects": [{"solidity": 0.9982575305335506, "top": 775, "right": 2035, "bottom": 3190, "left": 420}, {"solidity": 0.9975261515590278, "top": 865, "right": 3740, "bottom": 3100, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719401f.jpg"} -{"rects": [{"solidity": 0.9982576342245124, "top": 760, "right": 2025, "bottom": 3145, "left": 460}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724397f.jpg"} -{"rects": [{"solidity": 0.9982580599709902, "top": 400, "right": 5000, "bottom": 3635, "left": 980}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708459f.jpg"} -{"rects": [{"solidity": 0.9982580869393539, "top": 365, "right": 4985, "bottom": 3650, "left": 1250}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721313f.jpg"} -{"rects": [{"solidity": 0.9982583120938853, "top": 2245, "right": 3200, "bottom": 3875, "left": 780}, {"solidity": 0.9981831572185434, "top": 375, "right": 3190, "bottom": 1990, "left": 790}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/731079f.jpg"} -{"rects": [{"solidity": 0.9982583221868465, "top": 475, "right": 5100, "bottom": 3725, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726851f.jpg"} -{"rects": [{"solidity": 0.9982586487114, "top": 380, "right": 3330, "bottom": 2000, "left": 920}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702332f.jpg"} -{"rects": [{"solidity": 0.9982587145640277, "top": 795, "right": 2340, "bottom": 3585, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705193f.jpg"} -{"rects": [{"solidity": 0.9982587263735736, "top": 405, "right": 3250, "bottom": 2030, "left": 830}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704632f.jpg"} -{"rects": [{"solidity": 0.9982589361301102, "top": 740, "right": 2050, "bottom": 3170, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729850f.jpg"} -{"rects": [{"solidity": 0.9982590832894606, "top": 430, "right": 3190, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734208f.jpg"} -{"rects": [{"solidity": 0.9982598159271958, "top": 470, "right": 3000, "bottom": 2090, "left": 590}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703088f.jpg"} -{"rects": [{"solidity": 0.9982601801702058, "top": 460, "right": 5065, "bottom": 3640, "left": 1075}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708191f.jpg"} -{"rects": [{"solidity": 0.9982604004297654, "top": 685, "right": 4695, "bottom": 3235, "left": 1470}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734488f.jpg"} -{"rects": [{"solidity": 0.9982605686731209, "top": 390, "right": 5245, "bottom": 3660, "left": 1115}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732621f.jpg"} -{"rects": [{"solidity": 0.9982605835884636, "top": 350, "right": 5055, "bottom": 3630, "left": 1010}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706138f.jpg"} -{"rects": [{"solidity": 0.9982607199674074, "top": 420, "right": 5025, "bottom": 3695, "left": 965}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707337f.jpg"} -{"rects": [{"solidity": 0.9982609041530581, "top": 695, "right": 2515, "bottom": 3515, "left": 500}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719255f.jpg"} -{"rects": [{"solidity": 0.9982610540391118, "top": 420, "right": 3165, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703665f.jpg"} -{"rects": [{"solidity": 0.9982611737077473, "top": 530, "right": 3415, "bottom": 2365, "left": 670}], "shape": {"h": 4430, "w": 6900}, "file": "/usr/local/google/home/danvk/milstein/706393f.jpg"} -{"rects": [{"solidity": 0.9982612019239827, "top": 410, "right": 3335, "bottom": 2165, "left": 675}, {"solidity": 0.9971830440548677, "top": 2340, "right": 3180, "bottom": 3955, "left": 765}, {"solidity": 0.9970741813552938, "top": 4155, "right": 3180, "bottom": 5775, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725287f.jpg"} -{"rects": [{"solidity": 0.998261248949371, "top": 825, "right": 2090, "bottom": 3240, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710844f.jpg"} -{"rects": [{"solidity": 0.9982618572642149, "top": 430, "right": 5165, "bottom": 3705, "left": 1145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725373f.jpg"} -{"rects": [{"solidity": 0.998262588265298, "top": 405, "right": 3230, "bottom": 2030, "left": 800}, {"solidity": 0.995039219634867, "top": 2195, "right": 2920, "bottom": 3600, "left": 1085}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705138f.jpg"} -{"rects": [{"solidity": 0.9982625919477054, "top": 525, "right": 5090, "bottom": 3820, "left": 1060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712214f.jpg"} -{"rects": [{"solidity": 0.998262886322944, "top": 425, "right": 5180, "bottom": 3725, "left": 1105}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702792f.jpg"} -{"rects": [{"solidity": 0.9982629081459722, "top": 335, "right": 2295, "bottom": 1535, "left": 805}, {"solidity": 0.9943622914012626, "top": 345, "right": 3960, "bottom": 1555, "left": 2470}, {"solidity": 0.9964903856338844, "top": 1620, "right": 2290, "bottom": 2820, "left": 800}, {"solidity": 0.9951702760144892, "top": 1610, "right": 3955, "bottom": 2810, "left": 2465}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716285f.jpg"} -{"rects": [{"solidity": 0.9982632300062395, "top": 840, "right": 5655, "bottom": 3240, "left": 4025}, {"solidity": 0.9983544586719704, "top": 815, "right": 1930, "bottom": 3195, "left": 295}, {"solidity": 0.9983557504778091, "top": 835, "right": 3785, "bottom": 3205, "left": 2150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702293f.jpg"} -{"rects": [{"solidity": 0.9982638144201447, "top": 680, "right": 3420, "bottom": 2705, "left": 380}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720510f.jpg"} -{"rects": [{"solidity": 0.998264116336958, "top": 2330, "right": 3185, "bottom": 3935, "left": 790}, {"solidity": 0.9962316735687229, "top": 455, "right": 3190, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722627f.jpg"} -{"rects": [{"solidity": 0.9982643039027179, "top": 565, "right": 2550, "bottom": 3605, "left": 560}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713941f.jpg"} -{"rects": [{"solidity": 0.9982644889964282, "top": 660, "right": 2320, "bottom": 3370, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703675f.jpg"} -{"rects": [{"solidity": 0.9982645072301406, "top": 425, "right": 3170, "bottom": 2035, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/706922f.jpg"} -{"rects": [{"solidity": 0.9982646503556514, "top": 2115, "right": 2945, "bottom": 3560, "left": 1115}, {"solidity": 0.9959730771443365, "top": 475, "right": 2945, "bottom": 1920, "left": 1120}, {"solidity": 0.9957759232520007, "top": 2130, "right": 5060, "bottom": 3545, "left": 3230}, {"solidity": 0.9960901805108232, "top": 485, "right": 5060, "bottom": 1885, "left": 3250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727017f.jpg"} -{"rects": [{"solidity": 0.9982646506795605, "top": 455, "right": 5090, "bottom": 3715, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713826f.jpg"} -{"rects": [{"solidity": 0.9982647205281763, "top": 475, "right": 5110, "bottom": 3765, "left": 1085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724764f.jpg"} -{"rects": [{"solidity": 0.9982656237437258, "top": 685, "right": 4280, "bottom": 2500, "left": 3070}, {"solidity": 0.9935588043275508, "top": 675, "right": 2885, "bottom": 2485, "left": 1685}, {"solidity": 0.9940975695874772, "top": 675, "right": 1495, "bottom": 2465, "left": 295}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715881f.jpg"} -{"rects": [{"solidity": 0.9982657951506853, "top": 425, "right": 3155, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706671f.jpg"} -{"rects": [{"solidity": 0.9982660534002404, "top": 395, "right": 3290, "bottom": 2405, "left": 465}, {"solidity": 0.9968508002065049, "top": 4190, "right": 3085, "bottom": 5810, "left": 660}, {"solidity": 0.9970538597364083, "top": 2485, "right": 3080, "bottom": 4090, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729400f.jpg"} -{"rects": [{"solidity": 0.9982662968099861, "top": 795, "right": 2185, "bottom": 3215, "left": 565}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703207f.jpg"} -{"rects": [{"solidity": 0.9982664398216173, "top": 865, "right": 2005, "bottom": 3285, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729852f.jpg"} -{"rects": [{"solidity": 0.9982665586910496, "top": 1075, "right": 3600, "bottom": 5135, "left": 310}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720968f.jpg"} -{"rects": [{"solidity": 0.9982666185529809, "top": 430, "right": 3180, "bottom": 2045, "left": 760}, {"solidity": 0.9966830684843108, "top": 2250, "right": 3190, "bottom": 3865, "left": 765}, {"solidity": 0.9974929090731262, "top": 4075, "right": 3185, "bottom": 5670, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706593f.jpg"} -{"rects": [{"solidity": 0.9982667317931878, "top": 515, "right": 5125, "bottom": 3725, "left": 1080}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703920f.jpg"} -{"rects": [{"solidity": 0.9982668022988357, "top": 885, "right": 1990, "bottom": 3300, "left": 380}, {"solidity": 0.9980778097421278, "top": 880, "right": 3750, "bottom": 3295, "left": 2145}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709659f.jpg"} -{"rects": [{"solidity": 0.9982669999443081, "top": 460, "right": 3200, "bottom": 2060, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710540f.jpg"} -{"rects": [{"solidity": 0.9982671838388717, "top": 425, "right": 5100, "bottom": 3715, "left": 1055}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719697f.jpg"} -{"rects": [{"solidity": 0.9982678934488578, "top": 525, "right": 5050, "bottom": 3820, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712209f.jpg"} -{"rects": [{"solidity": 0.9982679002491509, "top": 860, "right": 1930, "bottom": 3250, "left": 300}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714275f.jpg"} -{"rects": [{"solidity": 0.9982679702182554, "top": 840, "right": 5720, "bottom": 3230, "left": 4110}, {"solidity": 0.9953459276047739, "top": 815, "right": 3865, "bottom": 3215, "left": 2260}, {"solidity": 0.997371055352249, "top": 810, "right": 2045, "bottom": 3215, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713385f.jpg"} -{"rects": [{"solidity": 0.9982681591474014, "top": 815, "right": 1965, "bottom": 3235, "left": 365}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706851f.jpg"} -{"rects": [{"solidity": 0.9982683292406799, "top": 430, "right": 3155, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704668f.jpg"} -{"rects": [{"solidity": 0.9982685609253298, "top": 485, "right": 1760, "bottom": 2415, "left": 475}], "shape": {"h": 2605, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/715686f.jpg"} -{"rects": [{"solidity": 0.9982687136897355, "top": 870, "right": 3815, "bottom": 3290, "left": 2200}, {"solidity": 0.9981109079829372, "top": 880, "right": 5615, "bottom": 3250, "left": 4045}, {"solidity": 0.9912897662355716, "top": 1125, "right": 1965, "bottom": 3095, "left": 480}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714875f.jpg"} -{"rects": [{"solidity": 0.9982690353551281, "top": 1265, "right": 3515, "bottom": 5225, "left": 345}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708486f.jpg"} -{"rects": [{"solidity": 0.9982690556701296, "top": 435, "right": 3215, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702522f.jpg"} -{"rects": [{"solidity": 0.9982691134729633, "top": 445, "right": 5090, "bottom": 3695, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722990f.jpg"} -{"rects": [{"solidity": 0.9982695922562057, "top": 1060, "right": 3480, "bottom": 5080, "left": 275}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720778f.jpg"} -{"rects": [{"solidity": 0.9982697549907774, "top": 695, "right": 2545, "bottom": 2175, "left": 460}, {"solidity": 0.9925280250407693, "top": 2395, "right": 2545, "bottom": 3880, "left": 465}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716207f.jpg"} -{"rects": [{"solidity": 0.9982698404515813, "top": 2665, "right": 3090, "bottom": 4285, "left": 680}, {"solidity": 0.9981694560669456, "top": 190, "right": 2720, "bottom": 2595, "left": 1100}, {"solidity": 0.9965249011144172, "top": 4365, "right": 3105, "bottom": 5995, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720579f.jpg"} -{"rects": [{"solidity": 0.998270017125083, "top": 1680, "right": 2340, "bottom": 2885, "left": 545}, {"solidity": 0.9959913858686111, "top": 3020, "right": 2340, "bottom": 4225, "left": 545}, {"solidity": 0.9957879320445225, "top": 355, "right": 2335, "bottom": 1560, "left": 540}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716485f.jpg"} -{"rects": [{"solidity": 0.9982700750553094, "top": 895, "right": 2685, "bottom": 3900, "left": 250}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517201.jpg"} -{"rects": [{"solidity": 0.9982700832522435, "top": 430, "right": 3190, "bottom": 2030, "left": 790}, {"solidity": 0.9966728462914048, "top": 2170, "right": 3190, "bottom": 3765, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707595f.jpg"} -{"rects": [{"solidity": 0.9982701682654506, "top": 375, "right": 5140, "bottom": 3620, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732680f.jpg"} -{"rects": [{"solidity": 0.9982702807170122, "top": 780, "right": 2040, "bottom": 3200, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715418f.jpg"} -{"rects": [{"solidity": 0.9982708415237918, "top": 800, "right": 2020, "bottom": 3185, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713623f.jpg"} -{"rects": [{"solidity": 0.9982712480531716, "top": 455, "right": 4945, "bottom": 3725, "left": 1305}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718577f.jpg"} -{"rects": [{"solidity": 0.9982712988508397, "top": 405, "right": 5035, "bottom": 3585, "left": 1085}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718969f.jpg"} -{"rects": [{"solidity": 0.9982713436965899, "top": 2270, "right": 3170, "bottom": 3875, "left": 760}, {"solidity": 0.9985750376667222, "top": 410, "right": 3165, "bottom": 2010, "left": 760}, {"solidity": 0.9963566477216729, "top": 4135, "right": 3155, "bottom": 5740, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722843f.jpg"} -{"rects": [{"solidity": 0.9982713998146787, "top": 415, "right": 3160, "bottom": 2040, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706063f.jpg"} -{"rects": [{"solidity": 0.9982714249779091, "top": 885, "right": 5745, "bottom": 3300, "left": 4130}, {"solidity": 0.994431164290586, "top": 865, "right": 3880, "bottom": 3285, "left": 2295}, {"solidity": 0.9954340330932762, "top": 850, "right": 2000, "bottom": 3245, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716638f.jpg"} -{"rects": [{"solidity": 0.9982717348539791, "top": 415, "right": 5130, "bottom": 3695, "left": 1080}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703179f.jpg"} -{"rects": [{"solidity": 0.9982718258986181, "top": 800, "right": 3785, "bottom": 3195, "left": 2165}, {"solidity": 0.9963459792710245, "top": 800, "right": 1925, "bottom": 3200, "left": 320}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720110f.jpg"} -{"rects": [{"solidity": 0.9982719289919914, "top": 935, "right": 2020, "bottom": 3340, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728304f.jpg"} -{"rects": [{"solidity": 0.9982724749758334, "top": 520, "right": 2675, "bottom": 3585, "left": 695}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715081f.jpg"} -{"rects": [{"solidity": 0.9982725002014342, "top": 400, "right": 3125, "bottom": 2010, "left": 700}, {"solidity": 0.9953097825912246, "top": 2225, "right": 3115, "bottom": 3850, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721702f.jpg"} -{"rects": [{"solidity": 0.998272573158296, "top": 2395, "right": 3175, "bottom": 4005, "left": 745}, {"solidity": 0.9925751405419826, "top": 4215, "right": 3150, "bottom": 5850, "left": 720}, {"solidity": 0.9971191092597279, "top": 435, "right": 3170, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731884f.jpg"} -{"rects": [{"solidity": 0.9982734026050963, "top": 490, "right": 5030, "bottom": 3720, "left": 1025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722936f.jpg"} -{"rects": [{"solidity": 0.9982735923571671, "top": 410, "right": 5035, "bottom": 3685, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716690f.jpg"} -{"rects": [{"solidity": 0.9982739227048057, "top": 685, "right": 3240, "bottom": 2560, "left": 560}, {"solidity": 0.99388371668942, "top": 4315, "right": 2795, "bottom": 5720, "left": 960}, {"solidity": 0.9940895130315955, "top": 2875, "right": 2710, "bottom": 4080, "left": 1110}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719188f.jpg"} -{"rects": [{"solidity": 0.9982741739465032, "top": 315, "right": 5120, "bottom": 3545, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702514f.jpg"} -{"rects": [{"solidity": 0.9982743488388974, "top": 695, "right": 1985, "bottom": 3095, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727522f.jpg"} -{"rects": [{"solidity": 0.9982745184392563, "top": 370, "right": 3675, "bottom": 2805, "left": 670}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508209.jpg"} -{"rects": [{"solidity": 0.9982745885557325, "top": 310, "right": 2375, "bottom": 1520, "left": 570}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/707095f.jpg"} -{"rects": [{"solidity": 0.9982749631498657, "top": 860, "right": 2015, "bottom": 3275, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720378f.jpg"} -{"rects": [{"solidity": 0.9982757791843603, "top": 800, "right": 3810, "bottom": 3210, "left": 2180}, {"solidity": 0.9994752363046334, "top": 795, "right": 1990, "bottom": 3205, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722993f.jpg"} -{"rects": [{"solidity": 0.9982757926207058, "top": 530, "right": 4925, "bottom": 3465, "left": 1095}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719122f.jpg"} -{"rects": [{"solidity": 0.9982762341109934, "top": 855, "right": 2305, "bottom": 3595, "left": 475}], "shape": {"h": 4410, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711702f.jpg"} -{"rects": [{"solidity": 0.9982762675877089, "top": 805, "right": 3860, "bottom": 3230, "left": 2250}, {"solidity": 0.9980904708334819, "top": 805, "right": 2020, "bottom": 3225, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730544f.jpg"} -{"rects": [{"solidity": 0.9982762816156419, "top": 455, "right": 5045, "bottom": 3685, "left": 1035}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720271f.jpg"} -{"rects": [{"solidity": 0.9982763381138358, "top": 1170, "right": 3475, "bottom": 5115, "left": 290}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708919f.jpg"} -{"rects": [{"solidity": 0.9982763716850658, "top": 920, "right": 2695, "bottom": 3935, "left": 270}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517293.jpg"} -{"rects": [{"solidity": 0.9982764394997591, "top": 565, "right": 2665, "bottom": 3605, "left": 625}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715480f.jpg"} -{"rects": [{"solidity": 0.998276616077358, "top": 375, "right": 3045, "bottom": 1980, "left": 625}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730224f.jpg"} -{"rects": [{"solidity": 0.9982773100195956, "top": 710, "right": 3360, "bottom": 2640, "left": 635}, {"solidity": 0.9959524281758012, "top": 3200, "right": 3335, "bottom": 5115, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714025f.jpg"} -{"rects": [{"solidity": 0.9982774548854992, "top": 485, "right": 5110, "bottom": 3735, "left": 995}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709498f.jpg"} -{"rects": [{"solidity": 0.9982786176184214, "top": 410, "right": 5020, "bottom": 3655, "left": 1015}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712636f.jpg"} -{"rects": [{"solidity": 0.9982791315065895, "top": 1040, "right": 3555, "bottom": 5080, "left": 275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723937f.jpg"} -{"rects": [{"solidity": 0.9982793244497106, "top": 595, "right": 3280, "bottom": 2630, "left": 440}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710238f.jpg"} -{"rects": [{"solidity": 0.9982795375971637, "top": 755, "right": 1930, "bottom": 3170, "left": 335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720856f.jpg"} -{"rects": [{"solidity": 0.9982799728600326, "top": 780, "right": 4605, "bottom": 3320, "left": 1485}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721819f.jpg"} -{"rects": [{"solidity": 0.9982800360373402, "top": 905, "right": 3530, "bottom": 4940, "left": 260}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715221f.jpg"} -{"rects": [{"solidity": 0.9982802489702214, "top": 620, "right": 2485, "bottom": 3685, "left": 505}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720718f.jpg"} -{"rects": [{"solidity": 0.9982808743645185, "top": 480, "right": 5080, "bottom": 3705, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716811f.jpg"} -{"rects": [{"solidity": 0.9982810230224062, "top": 855, "right": 3205, "bottom": 2875, "left": 375}, {"solidity": 0.996009077646296, "top": 3615, "right": 3160, "bottom": 5235, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719929f.jpg"} -{"rects": [{"solidity": 0.9982813711254609, "top": 500, "right": 5145, "bottom": 3705, "left": 1160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732248f.jpg"} -{"rects": [{"solidity": 0.9982816216874731, "top": 410, "right": 3220, "bottom": 2025, "left": 790}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706240f.jpg"} -{"rects": [{"solidity": 0.9982819041309001, "top": 435, "right": 3170, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734586f.jpg"} -{"rects": [{"solidity": 0.9982821074124612, "top": 4060, "right": 3155, "bottom": 5655, "left": 745}, {"solidity": 0.9942197100992595, "top": 2165, "right": 3160, "bottom": 3765, "left": 760}, {"solidity": 0.996066842418573, "top": 360, "right": 3150, "bottom": 1855, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732312f.jpg"} -{"rects": [{"solidity": 0.9982821786848644, "top": 1110, "right": 3590, "bottom": 5095, "left": 375}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723644f.jpg"} -{"rects": [{"solidity": 0.9982831017342602, "top": 410, "right": 3145, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729638f.jpg"} -{"rects": [{"solidity": 0.998283124919748, "top": 660, "right": 4370, "bottom": 3680, "left": 2360}, {"solidity": 0.9959963447745397, "top": 800, "right": 2030, "bottom": 3210, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714889f.jpg"} -{"rects": [{"solidity": 0.9982832328269031, "top": 640, "right": 4845, "bottom": 3670, "left": 1385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714209f.jpg"} -{"rects": [{"solidity": 0.9982834699431758, "top": 205, "right": 3230, "bottom": 1835, "left": 810}, {"solidity": 0.9894201750096947, "top": 1930, "right": 3020, "bottom": 3505, "left": 1105}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714586f.jpg"} -{"rects": [{"solidity": 0.9982837517534949, "top": 465, "right": 5035, "bottom": 3685, "left": 1005}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730969f.jpg"} -{"rects": [{"solidity": 0.9982838554340309, "top": 780, "right": 2010, "bottom": 3205, "left": 385}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705002f.jpg"} -{"rects": [{"solidity": 0.9982839442778818, "top": 945, "right": 3855, "bottom": 3335, "left": 2265}, {"solidity": 0.9964599366828713, "top": 950, "right": 2040, "bottom": 3345, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709450f.jpg"} -{"rects": [{"solidity": 0.9982839883930424, "top": 380, "right": 3215, "bottom": 1975, "left": 820}, {"solidity": 0.9956876433891442, "top": 2220, "right": 3220, "bottom": 3840, "left": 815}], "shape": {"h": 6015, "w": 3850}, "file": "/usr/local/google/home/danvk/milstein/727590f.jpg"} -{"rects": [{"solidity": 0.9982842061516113, "top": 465, "right": 5405, "bottom": 3705, "left": 1405}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718202f.jpg"} -{"rects": [{"solidity": 0.998284761941818, "top": 740, "right": 2010, "bottom": 3160, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702524f.jpg"} -{"rects": [{"solidity": 0.998284836364118, "top": 455, "right": 3170, "bottom": 2045, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710484f.jpg"} -{"rects": [{"solidity": 0.9982849194583772, "top": 515, "right": 5090, "bottom": 3715, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700909f.jpg"} -{"rects": [{"solidity": 0.998285290751707, "top": 440, "right": 2665, "bottom": 3665, "left": 635}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733048f.jpg"} -{"rects": [{"solidity": 0.9982854378563074, "top": 595, "right": 2710, "bottom": 3655, "left": 695}, {"solidity": 0.9965067715383678, "top": 830, "right": 5120, "bottom": 3255, "left": 3500}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723810f.jpg"} -{"rects": [{"solidity": 0.9982855860601059, "top": 465, "right": 5065, "bottom": 3785, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707838f.jpg"} -{"rects": [{"solidity": 0.9982857254173674, "top": 795, "right": 3905, "bottom": 3210, "left": 2300}, {"solidity": 0.9970186699683946, "top": 795, "right": 2040, "bottom": 3200, "left": 430}, {"solidity": 0.9945798834461291, "top": 805, "right": 5765, "bottom": 3200, "left": 4160}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733359f.jpg"} -{"rects": [{"solidity": 0.9982857835120238, "top": 2190, "right": 2375, "bottom": 3420, "left": 680}, {"solidity": 0.9974722765818657, "top": 635, "right": 2355, "bottom": 1865, "left": 720}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712166f.jpg"} -{"rects": [{"solidity": 0.9982864255807562, "top": 790, "right": 3900, "bottom": 3195, "left": 2280}, {"solidity": 0.996503779741364, "top": 790, "right": 2110, "bottom": 3205, "left": 495}, {"solidity": 0.9951579779088864, "top": 790, "right": 5650, "bottom": 3205, "left": 4045}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719809f.jpg"} -{"rects": [{"solidity": 0.9982864366937282, "top": 790, "right": 2075, "bottom": 3160, "left": 490}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721061f.jpg"} -{"rects": [{"solidity": 0.9982864809658617, "top": 475, "right": 5030, "bottom": 3670, "left": 980}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722994f.jpg"} -{"rects": [{"solidity": 0.998286942357644, "top": 1070, "right": 3585, "bottom": 5110, "left": 295}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725396f.jpg"} -{"rects": [{"solidity": 0.9982872217135467, "top": 2260, "right": 3080, "bottom": 3885, "left": 660}, {"solidity": 0.9985962004253159, "top": 405, "right": 3085, "bottom": 2020, "left": 660}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723287f.jpg"} -{"rects": [{"solidity": 0.9982875379466023, "top": 440, "right": 3235, "bottom": 2050, "left": 825}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707545f.jpg"} -{"rects": [{"solidity": 0.9982876498306398, "top": 730, "right": 2525, "bottom": 3730, "left": 510}, {"solidity": 0.9974058525784008, "top": 1010, "right": 4200, "bottom": 3420, "left": 2590}, {"solidity": 0.9981852242126215, "top": 1000, "right": 5855, "bottom": 3410, "left": 4250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713641f.jpg"} -{"rects": [{"solidity": 0.9982878954849632, "top": 295, "right": 3175, "bottom": 1920, "left": 750}, {"solidity": 0.9977950165453766, "top": 2125, "right": 3170, "bottom": 3755, "left": 755}, {"solidity": 0.9960322784688812, "top": 3975, "right": 3170, "bottom": 5605, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704444f.jpg"} -{"rects": [{"solidity": 0.9982882114923696, "top": 810, "right": 4795, "bottom": 3425, "left": 1325}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701492f.jpg"} -{"rects": [{"solidity": 0.9982884628625951, "top": 450, "right": 3220, "bottom": 2045, "left": 815}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718329f.jpg"} -{"rects": [{"solidity": 0.998288485617132, "top": 3055, "right": 2810, "bottom": 5470, "left": 1200}, {"solidity": 0.9971274814016593, "top": 380, "right": 2805, "bottom": 2790, "left": 1195}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734156f.jpg"} -{"rects": [{"solidity": 0.998288890236778, "top": 3995, "right": 3160, "bottom": 5625, "left": 740}, {"solidity": 0.99934781774703, "top": 2145, "right": 3170, "bottom": 3770, "left": 750}, {"solidity": 0.9987934641697365, "top": 305, "right": 3175, "bottom": 1925, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703364f.jpg"} -{"rects": [{"solidity": 0.9982889048991355, "top": 615, "right": 2625, "bottom": 1995, "left": 800}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703309f.jpg"} -{"rects": [{"solidity": 0.9982889120864737, "top": 770, "right": 3915, "bottom": 3210, "left": 2300}, {"solidity": 0.9971240197727684, "top": 790, "right": 2060, "bottom": 3205, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719025f.jpg"} -{"rects": [{"solidity": 0.9982890809920757, "top": 825, "right": 2065, "bottom": 3240, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710442f.jpg"} -{"rects": [{"solidity": 0.99828908898031, "top": 395, "right": 3130, "bottom": 2005, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720298f.jpg"} -{"rects": [{"solidity": 0.9982892034188656, "top": 440, "right": 5875, "bottom": 4100, "left": 1350}], "shape": {"h": 4440, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706374f.jpg"} -{"rects": [{"solidity": 0.9982892053953218, "top": 500, "right": 5115, "bottom": 3760, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704884f.jpg"} -{"rects": [{"solidity": 0.9982892868219585, "top": 440, "right": 3205, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723699f.jpg"} -{"rects": [{"solidity": 0.9982893666245135, "top": 640, "right": 3485, "bottom": 3050, "left": 290}, {"solidity": 0.997245317206404, "top": 3305, "right": 3135, "bottom": 4885, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716694f.jpg"} -{"rects": [{"solidity": 0.9982893684440142, "top": 745, "right": 3470, "bottom": 4820, "left": 240}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704044f.jpg"} -{"rects": [{"solidity": 0.9982893916666904, "top": 425, "right": 5070, "bottom": 3695, "left": 1015}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706339f.jpg"} -{"rects": [{"solidity": 0.998289392299366, "top": 815, "right": 5735, "bottom": 3225, "left": 4115}, {"solidity": 0.997195557086499, "top": 810, "right": 3880, "bottom": 3215, "left": 2265}, {"solidity": 0.9971336368688395, "top": 815, "right": 2020, "bottom": 3220, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709492f.jpg"} -{"rects": [{"solidity": 0.9982894410963428, "top": 2285, "right": 3195, "bottom": 3875, "left": 800}, {"solidity": 0.9963539743657366, "top": 420, "right": 3190, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717614f.jpg"} -{"rects": [{"solidity": 0.9982897472123526, "top": 700, "right": 2030, "bottom": 3110, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725932f.jpg"} -{"rects": [{"solidity": 0.9982897748580739, "top": 475, "right": 3200, "bottom": 2095, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702255f.jpg"} -{"rects": [{"solidity": 0.9982901083974944, "top": 280, "right": 3270, "bottom": 2145, "left": 470}, {"solidity": 0.9964390448261417, "top": 2185, "right": 3235, "bottom": 4075, "left": 465}, {"solidity": 0.9957435920146834, "top": 4100, "right": 3260, "bottom": 5935, "left": 470}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704310f.jpg"} -{"rects": [{"solidity": 0.9982902027331045, "top": 395, "right": 3160, "bottom": 2010, "left": 735}, {"solidity": 0.9976937876807148, "top": 3970, "right": 3170, "bottom": 5590, "left": 750}, {"solidity": 0.9978950751185025, "top": 2175, "right": 3165, "bottom": 3790, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731724f.jpg"} -{"rects": [{"solidity": 0.9982903455944263, "top": 805, "right": 3760, "bottom": 3215, "left": 2135}, {"solidity": 0.9992450079404337, "top": 820, "right": 1905, "bottom": 3205, "left": 285}, {"solidity": 0.9955048398001418, "top": 820, "right": 5610, "bottom": 3205, "left": 4005}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709411f.jpg"} -{"rects": [{"solidity": 0.998290444484434, "top": 420, "right": 3225, "bottom": 2005, "left": 845}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711783f.jpg"} -{"rects": [{"solidity": 0.9982905847781021, "top": 490, "right": 2950, "bottom": 3685, "left": 960}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732918f.jpg"} -{"rects": [{"solidity": 0.9982910241110429, "top": 625, "right": 1525, "bottom": 2430, "left": 320}, {"solidity": 0.992107432460084, "top": 625, "right": 2925, "bottom": 2420, "left": 1720}, {"solidity": 0.9929188316661365, "top": 620, "right": 4320, "bottom": 2410, "left": 3120}], "shape": {"h": 3030, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/718863f.jpg"} -{"rects": [{"solidity": 0.9982910642820981, "top": 630, "right": 2630, "bottom": 3360, "left": 620}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712322f.jpg"} -{"rects": [{"solidity": 0.9982915130102896, "top": 2250, "right": 3170, "bottom": 3860, "left": 745}, {"solidity": 0.9963576286906787, "top": 410, "right": 3175, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707227f.jpg"} -{"rects": [{"solidity": 0.9982922408704197, "top": 400, "right": 5060, "bottom": 3690, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716843f.jpg"} -{"rects": [{"solidity": 0.9982923693854449, "top": 625, "right": 2670, "bottom": 2065, "left": 845}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705093f.jpg"} -{"rects": [{"solidity": 0.9982925095939735, "top": 645, "right": 3400, "bottom": 4695, "left": 130}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725242f.jpg"} -{"rects": [{"solidity": 0.9982927550629623, "top": 1070, "right": 3585, "bottom": 5095, "left": 295}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725399f.jpg"} -{"rects": [{"solidity": 0.998292801345233, "top": 860, "right": 3900, "bottom": 2860, "left": 715}, {"solidity": 0.9980055441124968, "top": 395, "right": 5945, "bottom": 3575, "left": 3945}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724955f.jpg"} -{"rects": [{"solidity": 0.9982929448148601, "top": 740, "right": 2040, "bottom": 3160, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706961f.jpg"} -{"rects": [{"solidity": 0.9982931602868791, "top": 795, "right": 2015, "bottom": 3200, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722438f.jpg"} -{"rects": [{"solidity": 0.9982932038772772, "top": 2160, "right": 3315, "bottom": 3785, "left": 895}, {"solidity": 0.9958348940475161, "top": 3850, "right": 3320, "bottom": 5485, "left": 895}, {"solidity": 0.9972737448802532, "top": 400, "right": 3320, "bottom": 2030, "left": 900}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706067f.jpg"} -{"rects": [{"solidity": 0.9982933523526902, "top": 805, "right": 2125, "bottom": 3230, "left": 495}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708649f.jpg"} -{"rects": [{"solidity": 0.9982934215358766, "top": 685, "right": 2260, "bottom": 3510, "left": 235}, {"solidity": 0.9972049882947758, "top": 685, "right": 5970, "bottom": 3495, "left": 3960}, {"solidity": 0.9755790185501099, "top": 785, "right": 3945, "bottom": 3305, "left": 2275}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717697f.jpg"} -{"rects": [{"solidity": 0.9982934701208157, "top": 440, "right": 4920, "bottom": 3455, "left": 1140}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730108f.jpg"} -{"rects": [{"solidity": 0.9982936441526138, "top": 780, "right": 3810, "bottom": 3175, "left": 2210}, {"solidity": 0.9920197418890571, "top": 790, "right": 2000, "bottom": 3170, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720112f.jpg"} -{"rects": [{"solidity": 0.9982948930755866, "top": 810, "right": 2040, "bottom": 3230, "left": 430}, {"solidity": 0.9973443512885598, "top": 820, "right": 3885, "bottom": 3225, "left": 2280}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717190f.jpg"} -{"rects": [{"solidity": 0.9982951012380952, "top": 1020, "right": 3505, "bottom": 5050, "left": 300}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722959f.jpg"} -{"rects": [{"solidity": 0.9982953046901636, "top": 430, "right": 3300, "bottom": 2050, "left": 885}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726738f.jpg"} -{"rects": [{"solidity": 0.9982953704835359, "top": 500, "right": 3105, "bottom": 2120, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701423f.jpg"} -{"rects": [{"solidity": 0.9982953785596946, "top": 635, "right": 5110, "bottom": 3700, "left": 3055}, {"solidity": 0.9977573073231847, "top": 615, "right": 2605, "bottom": 3715, "left": 585}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714442f.jpg"} -{"rects": [{"solidity": 0.9982954172949584, "top": 780, "right": 2025, "bottom": 3185, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719419f.jpg"} -{"rects": [{"solidity": 0.9982959395791655, "top": 750, "right": 3920, "bottom": 3155, "left": 2315}, {"solidity": 0.9970931671280425, "top": 765, "right": 2075, "bottom": 3155, "left": 475}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718776f.jpg"} -{"rects": [{"solidity": 0.9982962213763595, "top": 775, "right": 3855, "bottom": 3195, "left": 2225}, {"solidity": 0.9966401234292418, "top": 805, "right": 5740, "bottom": 3235, "left": 4105}, {"solidity": 0.9971326851541421, "top": 765, "right": 1985, "bottom": 3190, "left": 355}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710511f.jpg"} -{"rects": [{"solidity": 0.9982963182438873, "top": 2055, "right": 3215, "bottom": 3680, "left": 810}, {"solidity": 0.9980233904174741, "top": 350, "right": 3215, "bottom": 1970, "left": 805}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700702f.jpg"} -{"rects": [{"solidity": 0.9982964004171552, "top": 2155, "right": 3115, "bottom": 3765, "left": 700}, {"solidity": 0.9949179412970363, "top": 460, "right": 2895, "bottom": 1870, "left": 1085}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733703f.jpg"} -{"rects": [{"solidity": 0.9982967251144225, "top": 415, "right": 5045, "bottom": 3650, "left": 955}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719825f.jpg"} -{"rects": [{"solidity": 0.9982967643416847, "top": 485, "right": 5040, "bottom": 3690, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720808f.jpg"} -{"rects": [{"solidity": 0.9982968440198338, "top": 815, "right": 2120, "bottom": 3230, "left": 500}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701652f.jpg"} -{"rects": [{"solidity": 0.9982969748378032, "top": 435, "right": 3170, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731891f.jpg"} -{"rects": [{"solidity": 0.9982972888038169, "top": 440, "right": 5155, "bottom": 3680, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726006f.jpg"} -{"rects": [{"solidity": 0.9982973383260804, "top": 595, "right": 3590, "bottom": 5335, "left": 315}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714208f.jpg"} -{"rects": [{"solidity": 0.9982975177874948, "top": 780, "right": 2025, "bottom": 3175, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717783f.jpg"} -{"rects": [{"solidity": 0.9982979174324382, "top": 440, "right": 3220, "bottom": 2030, "left": 830}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/726975f.jpg"} -{"rects": [{"solidity": 0.9982981917478476, "top": 815, "right": 2070, "bottom": 3230, "left": 460}, {"solidity": 0.9980084268842909, "top": 810, "right": 3895, "bottom": 3220, "left": 2285}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721680f.jpg"} -{"rects": [{"solidity": 0.9982983674349796, "top": 3055, "right": 3515, "bottom": 5100, "left": 690}, {"solidity": 0.9966705703372115, "top": 575, "right": 3550, "bottom": 2625, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732040f.jpg"} -{"rects": [{"solidity": 0.9982983908841959, "top": 425, "right": 5075, "bottom": 3660, "left": 1015}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708199f.jpg"} -{"rects": [{"solidity": 0.9982988286815402, "top": 450, "right": 5175, "bottom": 3695, "left": 1080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706982f.jpg"} -{"rects": [{"solidity": 0.9982988511638934, "top": 525, "right": 3335, "bottom": 2150, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701896f.jpg"} -{"rects": [{"solidity": 0.9982988651000024, "top": 2125, "right": 2710, "bottom": 3540, "left": 875}, {"solidity": 0.9953638976270923, "top": 690, "right": 2730, "bottom": 2120, "left": 885}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704735f.jpg"} -{"rects": [{"solidity": 0.9982995063615554, "top": 435, "right": 5015, "bottom": 3630, "left": 970}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712953f.jpg"} -{"rects": [{"solidity": 0.9983000635554128, "top": 1075, "right": 2620, "bottom": 4080, "left": 165}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509361.jpg"} -{"rects": [{"solidity": 0.9983002915310474, "top": 410, "right": 5075, "bottom": 3645, "left": 1075}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708201f.jpg"} -{"rects": [{"solidity": 0.9983003995787446, "top": 505, "right": 5110, "bottom": 3760, "left": 1090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720603f.jpg"} -{"rects": [{"solidity": 0.9983005925049593, "top": 695, "right": 3290, "bottom": 2305, "left": 895}, {"solidity": 0.9956673338611874, "top": 2475, "right": 3020, "bottom": 3890, "left": 1195}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734091f.jpg"} -{"rects": [{"solidity": 0.9983005975445208, "top": 860, "right": 2455, "bottom": 2370, "left": 335}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509191.jpg"} -{"rects": [{"solidity": 0.9983006618619576, "top": 290, "right": 3435, "bottom": 3735, "left": 785}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731009f.jpg"} -{"rects": [{"solidity": 0.9983007031005582, "top": 795, "right": 2060, "bottom": 3190, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709668f.jpg"} -{"rects": [{"solidity": 0.9983008505861054, "top": 835, "right": 2090, "bottom": 3200, "left": 510}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711887f.jpg"} -{"rects": [{"solidity": 0.9983010132774284, "top": 515, "right": 3800, "bottom": 2545, "left": 960}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721892f.jpg"} -{"rects": [{"solidity": 0.9983018880153478, "top": 780, "right": 2040, "bottom": 3190, "left": 430}, {"solidity": 0.9993045173870653, "top": 775, "right": 3875, "bottom": 3185, "left": 2270}, {"solidity": 0.9971325420792962, "top": 770, "right": 5710, "bottom": 3180, "left": 4100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724547f.jpg"} -{"rects": [{"solidity": 0.9983019588253506, "top": 410, "right": 5065, "bottom": 3650, "left": 975}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711121f.jpg"} -{"rects": [{"solidity": 0.998302265755837, "top": 1355, "right": 3700, "bottom": 5380, "left": 440}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/718901f.jpg"} -{"rects": [{"solidity": 0.998302387368473, "top": 485, "right": 5125, "bottom": 3765, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702056f.jpg"} -{"rects": [{"solidity": 0.9983027385281581, "top": 805, "right": 2010, "bottom": 3225, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725237f.jpg"} -{"rects": [{"solidity": 0.9983032970195973, "top": 1145, "right": 3580, "bottom": 5210, "left": 315}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/716900f.jpg"} -{"rects": [{"solidity": 0.9983033986755564, "top": 375, "right": 3195, "bottom": 1990, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705661f.jpg"} -{"rects": [{"solidity": 0.9983034718120365, "top": 2235, "right": 3200, "bottom": 3835, "left": 805}, {"solidity": 0.996407429017222, "top": 370, "right": 3195, "bottom": 1980, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718376f.jpg"} -{"rects": [{"solidity": 0.9983035918180928, "top": 330, "right": 3175, "bottom": 1940, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722804f.jpg"} -{"rects": [{"solidity": 0.9983035978829831, "top": 430, "right": 2430, "bottom": 1635, "left": 630}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715961f.jpg"} -{"rects": [{"solidity": 0.9983039857930862, "top": 875, "right": 1945, "bottom": 3290, "left": 315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714890f.jpg"} -{"rects": [{"solidity": 0.9983039895093697, "top": 415, "right": 5085, "bottom": 3685, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730674f.jpg"} -{"rects": [{"solidity": 0.9983040205071109, "top": 750, "right": 3835, "bottom": 3165, "left": 2225}, {"solidity": 0.9984681699975063, "top": 750, "right": 2030, "bottom": 3170, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732575f.jpg"} -{"rects": [{"solidity": 0.9983041538594953, "top": 430, "right": 5085, "bottom": 3680, "left": 1075}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712241f.jpg"} -{"rects": [{"solidity": 0.9983043394567093, "top": 320, "right": 5110, "bottom": 3555, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700527f.jpg"} -{"rects": [{"solidity": 0.9983047854494085, "top": 785, "right": 2045, "bottom": 3205, "left": 425}, {"solidity": 0.997417636538013, "top": 795, "right": 3855, "bottom": 3210, "left": 2245}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706873f.jpg"} -{"rects": [{"solidity": 0.9983048047169454, "top": 1135, "right": 2620, "bottom": 4140, "left": 190}], "shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1508941.jpg"} -{"rects": [{"solidity": 0.9983050156867539, "top": 670, "right": 2560, "bottom": 3725, "left": 540}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715610f.jpg"} -{"rects": [{"solidity": 0.9983050945058574, "top": 1030, "right": 3510, "bottom": 5090, "left": 280}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/703835f.jpg"} -{"rects": [{"solidity": 0.9983054375613913, "top": 425, "right": 3195, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719980f.jpg"} -{"rects": [{"solidity": 0.9983054499694015, "top": 380, "right": 4125, "bottom": 2805, "left": 1120}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508211.jpg"} -{"rects": [{"solidity": 0.9983055682013522, "top": 465, "right": 5170, "bottom": 3710, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702819f.jpg"} -{"rects": [{"solidity": 0.9983056249349568, "top": 535, "right": 3135, "bottom": 2150, "left": 740}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723990f.jpg"} -{"rects": [{"solidity": 0.9983063879727242, "top": 580, "right": 2630, "bottom": 3615, "left": 580}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712692f.jpg"} -{"rects": [{"solidity": 0.9983064127084054, "top": 445, "right": 3100, "bottom": 2000, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718949f.jpg"} -{"rects": [{"solidity": 0.9983064807537906, "top": 405, "right": 5115, "bottom": 3645, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723809f.jpg"} -{"rects": [{"solidity": 0.9983068366392676, "top": 380, "right": 3115, "bottom": 1985, "left": 725}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/715423f.jpg"} -{"rects": [{"solidity": 0.9983068629380706, "top": 1290, "right": 3665, "bottom": 5310, "left": 390}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733478f.jpg"} -{"rects": [{"solidity": 0.9983072895755376, "top": 420, "right": 3220, "bottom": 2035, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705559f.jpg"} -{"rects": [{"solidity": 0.9983073225227665, "top": 525, "right": 2735, "bottom": 3560, "left": 285}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509905.jpg"} -{"rects": [{"solidity": 0.9983073317281682, "top": 465, "right": 5125, "bottom": 3770, "left": 1080}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724332f.jpg"} -{"rects": [{"solidity": 0.9983076888819613, "top": 575, "right": 3880, "bottom": 3010, "left": 2255}, {"solidity": 0.9961359473401467, "top": 580, "right": 2065, "bottom": 2985, "left": 445}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705344f.jpg"} -{"rects": [{"solidity": 0.9983077818518178, "top": 475, "right": 5130, "bottom": 3670, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708187f.jpg"} -{"rects": [{"solidity": 0.9983082622289849, "top": 375, "right": 3095, "bottom": 1995, "left": 675}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729482f.jpg"} -{"rects": [{"solidity": 0.9983082843473614, "top": 3395, "right": 3220, "bottom": 5030, "left": 785}, {"solidity": 0.996235083304739, "top": 475, "right": 2830, "bottom": 2910, "left": 1180}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706587f.jpg"} -{"rects": [{"solidity": 0.9983086906345264, "top": 420, "right": 5115, "bottom": 3725, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714241f.jpg"} -{"rects": [{"solidity": 0.9983093132495594, "top": 345, "right": 5090, "bottom": 3570, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700532f.jpg"} -{"rects": [{"solidity": 0.9983099266644299, "top": 440, "right": 4985, "bottom": 3705, "left": 960}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727482f.jpg"} -{"rects": [{"solidity": 0.998309939566553, "top": 425, "right": 3150, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708144f.jpg"} -{"rects": [{"solidity": 0.998310168840954, "top": 425, "right": 5135, "bottom": 3715, "left": 1105}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725378f.jpg"} -{"rects": [{"solidity": 0.9983102814585549, "top": 355, "right": 5400, "bottom": 3575, "left": 1370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730757f.jpg"} -{"rects": [{"solidity": 0.998310317024359, "top": 765, "right": 3880, "bottom": 3190, "left": 2265}, {"solidity": 0.9978419232933987, "top": 770, "right": 2060, "bottom": 3195, "left": 445}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720486f.jpg"} -{"rects": [{"solidity": 0.9983109662324688, "top": 875, "right": 2025, "bottom": 3285, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729388f.jpg"} -{"rects": [{"solidity": 0.9983109665354072, "top": 830, "right": 2215, "bottom": 3225, "left": 620}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710562f.jpg"} -{"rects": [{"solidity": 0.9983110607825096, "top": 730, "right": 3870, "bottom": 3150, "left": 2255}, {"solidity": 0.9937646522531909, "top": 700, "right": 2065, "bottom": 3120, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706166f.jpg"} -{"rects": [{"solidity": 0.9983110865905905, "top": 1045, "right": 3560, "bottom": 5095, "left": 255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718412f.jpg"} -{"rects": [{"solidity": 0.9983116225307479, "top": 380, "right": 3240, "bottom": 1990, "left": 830}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707540f.jpg"} -{"rects": [{"solidity": 0.9983116685695435, "top": 760, "right": 3850, "bottom": 3170, "left": 2235}, {"solidity": 0.9964669927055154, "top": 785, "right": 2025, "bottom": 3165, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719327f.jpg"} -{"rects": [{"solidity": 0.9983117027032312, "top": 370, "right": 3210, "bottom": 1975, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713738f.jpg"} -{"rects": [{"solidity": 0.9983123495242838, "top": 460, "right": 3635, "bottom": 2265, "left": 935}], "shape": {"h": 6910, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711631f.jpg"} -{"rects": [{"solidity": 0.9983125841910231, "top": 2035, "right": 2750, "bottom": 3465, "left": 910}, {"solidity": 0.9952958977318468, "top": 595, "right": 2755, "bottom": 2035, "left": 935}, {"solidity": 0.9948633964758138, "top": 2000, "right": 5270, "bottom": 3430, "left": 3450}, {"solidity": 0.9948308041079962, "top": 590, "right": 5285, "bottom": 2005, "left": 3450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702862f.jpg"} -{"rects": [{"solidity": 0.9983126596621674, "top": 445, "right": 4930, "bottom": 3540, "left": 1140}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726194f.jpg"} -{"rects": [{"solidity": 0.9983127843197178, "top": 2050, "right": 3455, "bottom": 3680, "left": 1030}, {"solidity": 0.9993804929093723, "top": 375, "right": 3440, "bottom": 2000, "left": 1030}, {"solidity": 0.9968710286132398, "top": 395, "right": 5940, "bottom": 2025, "left": 3530}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705798f.jpg"} -{"rects": [{"solidity": 0.998312870510662, "top": 675, "right": 2675, "bottom": 3700, "left": 260}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715885f.jpg"} -{"rects": [{"solidity": 0.998312913319045, "top": 915, "right": 3240, "bottom": 2870, "left": 430}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703585f.jpg"} -{"rects": [{"solidity": 0.9983129290395977, "top": 420, "right": 3205, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722645f.jpg"} -{"rects": [{"solidity": 0.9983129672062802, "top": 2220, "right": 3270, "bottom": 3835, "left": 860}, {"solidity": 0.9956332161071387, "top": 370, "right": 3260, "bottom": 1985, "left": 840}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726799f.jpg"} -{"rects": [{"solidity": 0.9983134022403891, "top": 960, "right": 3560, "bottom": 5060, "left": 305}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/720633f.jpg"} -{"rects": [{"solidity": 0.998313611348627, "top": 500, "right": 5105, "bottom": 3780, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710935f.jpg"} -{"rects": [{"solidity": 0.9983139533600659, "top": 695, "right": 5835, "bottom": 3515, "left": 3815}, {"solidity": 0.9960560672807369, "top": 860, "right": 3610, "bottom": 3290, "left": 1975}, {"solidity": 0.9319007997414976, "top": 1205, "right": 1715, "bottom": 2935, "left": 355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720275f.jpg"} -{"rects": [{"solidity": 0.998314183942096, "top": 440, "right": 5720, "bottom": 4120, "left": 1160}], "shape": {"h": 4430, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/708876f.jpg"} -{"rects": [{"solidity": 0.9983142046707019, "top": 325, "right": 5085, "bottom": 3565, "left": 1090}], "shape": {"h": 3865, "w": 6065}, "file": "/usr/local/google/home/danvk/milstein/732747f.jpg"} -{"rects": [{"solidity": 0.9983142731260656, "top": 850, "right": 3920, "bottom": 3270, "left": 2290}, {"solidity": 0.995475113122172, "top": 860, "right": 2025, "bottom": 3285, "left": 400}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706649f.jpg"} -{"rects": [{"solidity": 0.998315175089835, "top": 495, "right": 5050, "bottom": 3725, "left": 980}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734557f.jpg"} -{"rects": [{"solidity": 0.9983152050148872, "top": 410, "right": 5080, "bottom": 3695, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720415f.jpg"} -{"rects": [{"solidity": 0.998315394800666, "top": 770, "right": 2025, "bottom": 3170, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721960f.jpg"} -{"rects": [{"solidity": 0.9983154735157462, "top": 680, "right": 2730, "bottom": 3495, "left": 710}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710924f.jpg"} -{"rects": [{"solidity": 0.9983155025203169, "top": 305, "right": 3205, "bottom": 1925, "left": 790}, {"solidity": 0.9968194508251759, "top": 2160, "right": 3200, "bottom": 3785, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710627f.jpg"} -{"rects": [{"solidity": 0.9983155277422596, "top": 815, "right": 3870, "bottom": 3220, "left": 2245}, {"solidity": 0.9970363960493955, "top": 815, "right": 2010, "bottom": 3225, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719567f.jpg"} -{"rects": [{"solidity": 0.9983157145610627, "top": 1030, "right": 3525, "bottom": 5015, "left": 325}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731591f.jpg"} -{"rects": [{"solidity": 0.9983157633400275, "top": 480, "right": 4855, "bottom": 3745, "left": 1200}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708198f.jpg"} -{"rects": [{"solidity": 0.9983164070596113, "top": 2240, "right": 3230, "bottom": 3865, "left": 800}, {"solidity": 0.9970350126334244, "top": 440, "right": 3210, "bottom": 2055, "left": 780}, {"solidity": 0.9966516839918834, "top": 4090, "right": 2935, "bottom": 5530, "left": 1105}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705852f.jpg"} -{"rects": [{"solidity": 0.9983167870383931, "top": 390, "right": 5275, "bottom": 3615, "left": 1235}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710160f.jpg"} -{"rects": [{"solidity": 0.998317180993262, "top": 510, "right": 5185, "bottom": 3795, "left": 1160}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712128f.jpg"} -{"rects": [{"solidity": 0.9983172051935539, "top": 785, "right": 2035, "bottom": 3195, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730001f.jpg"} -{"rects": [{"solidity": 0.9983172394900844, "top": 840, "right": 3790, "bottom": 3215, "left": 2165}, {"solidity": 0.9984528529000013, "top": 835, "right": 1930, "bottom": 3210, "left": 310}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719069f.jpg"} -{"rects": [{"solidity": 0.9983173928444917, "top": 2225, "right": 3050, "bottom": 3830, "left": 660}, {"solidity": 0.996638831994118, "top": 360, "right": 3070, "bottom": 1980, "left": 675}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/728285f.jpg"} -{"rects": [{"solidity": 0.9983177306057454, "top": 300, "right": 3180, "bottom": 1920, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710887f.jpg"} -{"rects": [{"solidity": 0.9983181108293532, "top": 2185, "right": 3190, "bottom": 3800, "left": 790}, {"solidity": 0.9975333620177165, "top": 385, "right": 3190, "bottom": 1980, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734632f.jpg"} -{"rects": [{"solidity": 0.9983182309607836, "top": 410, "right": 3085, "bottom": 2015, "left": 670}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729786f.jpg"} -{"rects": [{"solidity": 0.9983182724436928, "top": 420, "right": 5155, "bottom": 3650, "left": 1090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732667f.jpg"} -{"rects": [{"solidity": 0.9983184560720809, "top": 315, "right": 3205, "bottom": 1935, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719555f.jpg"} -{"rects": [{"solidity": 0.9983187537762367, "top": 985, "right": 3470, "bottom": 5020, "left": 275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722286f.jpg"} -{"rects": [{"solidity": 0.9983193372630719, "top": 870, "right": 3605, "bottom": 4965, "left": 360}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702555f.jpg"} -{"rects": [{"solidity": 0.9983196224730566, "top": 870, "right": 2045, "bottom": 3300, "left": 420}, {"solidity": 0.9961684966702031, "top": 870, "right": 3935, "bottom": 3310, "left": 2305}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702115f.jpg"} -{"rects": [{"solidity": 0.9983199941461832, "top": 580, "right": 4990, "bottom": 3785, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720835f.jpg"} -{"rects": [{"solidity": 0.998320013921797, "top": 750, "right": 2025, "bottom": 3140, "left": 450}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713915f.jpg"} -{"rects": [{"solidity": 0.9983200458345877, "top": 490, "right": 2345, "bottom": 2905, "left": 735}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708158f.jpg"} -{"rects": [{"solidity": 0.9983202326526138, "top": 2020, "right": 3430, "bottom": 3640, "left": 1020}, {"solidity": 0.998305886316226, "top": 340, "right": 3435, "bottom": 1955, "left": 1030}, {"solidity": 0.99653724976346, "top": 355, "right": 5935, "bottom": 1975, "left": 3540}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705360f.jpg"} -{"rects": [{"solidity": 0.9983202592729217, "top": 395, "right": 5195, "bottom": 3660, "left": 1100}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/722413f.jpg"} -{"rects": [{"solidity": 0.9983206698916816, "top": 305, "right": 3135, "bottom": 1915, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704877f.jpg"} -{"rects": [{"solidity": 0.9983207597272715, "top": 1230, "right": 3525, "bottom": 5255, "left": 250}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703181f.jpg"} -{"rects": [{"solidity": 0.9983208230878737, "top": 800, "right": 2040, "bottom": 3210, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705464f.jpg"} -{"rects": [{"solidity": 0.9983209023603578, "top": 1390, "right": 3360, "bottom": 5315, "left": 565}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708733f.jpg"} -{"rects": [{"solidity": 0.9983211355959466, "top": 1640, "right": 1585, "bottom": 2510, "left": 140}, {"solidity": 0.9943189916719268, "top": 1645, "right": 3055, "bottom": 2515, "left": 1620}, {"solidity": 0.9945894627234398, "top": 565, "right": 3040, "bottom": 1450, "left": 1620}, {"solidity": 0.9929987729808317, "top": 575, "right": 4515, "bottom": 1430, "left": 3070}, {"solidity": 0.9936288604348096, "top": 560, "right": 1570, "bottom": 1420, "left": 135}], "shape": {"h": 3020, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715772f.jpg"} -{"rects": [{"solidity": 0.9983212274116856, "top": 590, "right": 5215, "bottom": 2010, "left": 3355}, {"solidity": 0.9969700434484335, "top": 2230, "right": 5215, "bottom": 3655, "left": 3355}, {"solidity": 0.9956079667150841, "top": 2255, "right": 2965, "bottom": 3665, "left": 1140}, {"solidity": 0.9965990785240497, "top": 595, "right": 2940, "bottom": 2005, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725681f.jpg"} -{"rects": [{"solidity": 0.9983212628994006, "top": 855, "right": 2280, "bottom": 3585, "left": 470}], "shape": {"h": 4430, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/708329f.jpg"} -{"rects": [{"solidity": 0.9983213538054715, "top": 500, "right": 3180, "bottom": 2105, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701221f.jpg"} -{"rects": [{"solidity": 0.9983216936508643, "top": 335, "right": 3840, "bottom": 2740, "left": 790}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716403f.jpg"} -{"rects": [{"solidity": 0.9983223992740564, "top": 2465, "right": 3505, "bottom": 4285, "left": 790}, {"solidity": 0.9982355154633933, "top": 345, "right": 3515, "bottom": 2175, "left": 805}, {"solidity": 0.996638095141144, "top": 4595, "right": 3510, "bottom": 6420, "left": 800}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711701f.jpg"} -{"rects": [{"solidity": 0.9983226896603136, "top": 440, "right": 5270, "bottom": 3710, "left": 1245}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731049f.jpg"} -{"rects": [{"solidity": 0.998322703995067, "top": 1015, "right": 3515, "bottom": 5045, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718462f.jpg"} -{"rects": [{"solidity": 0.9983227242651019, "top": 330, "right": 3950, "bottom": 2775, "left": 940}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516907.jpg"} -{"rects": [{"solidity": 0.9983232429249811, "top": 655, "right": 3300, "bottom": 2280, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701328f.jpg"} -{"rects": [{"solidity": 0.9983233136513113, "top": 480, "right": 5135, "bottom": 3780, "left": 1080}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703592f.jpg"} -{"rects": [{"solidity": 0.9983235476414232, "top": 460, "right": 5060, "bottom": 3715, "left": 1035}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720186f.jpg"} -{"rects": [{"solidity": 0.9983237317200054, "top": 1100, "right": 3530, "bottom": 5100, "left": 265}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724568f.jpg"} -{"rects": [{"solidity": 0.9983237586863476, "top": 500, "right": 3930, "bottom": 2585, "left": 2445}, {"solidity": 0.991279614673067, "top": 500, "right": 2110, "bottom": 2585, "left": 625}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716187f.jpg"} -{"rects": [{"solidity": 0.9983242305884641, "top": 400, "right": 3165, "bottom": 2010, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708123f.jpg"} -{"rects": [{"solidity": 0.9983244785549522, "top": 825, "right": 2020, "bottom": 3220, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717877f.jpg"} -{"rects": [{"solidity": 0.998324738944853, "top": 310, "right": 5100, "bottom": 3540, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700396f.jpg"} -{"rects": [{"solidity": 0.9983248824351497, "top": 745, "right": 3890, "bottom": 3150, "left": 2270}, {"solidity": 0.9940592693788012, "top": 745, "right": 2045, "bottom": 3155, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702238f.jpg"} -{"rects": [{"solidity": 0.9983249527489065, "top": 300, "right": 3170, "bottom": 1920, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703082f.jpg"} -{"rects": [{"solidity": 0.9983253603837262, "top": 770, "right": 2055, "bottom": 3195, "left": 435}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706466f.jpg"} -{"rects": [{"solidity": 0.99832552475348, "top": 525, "right": 4405, "bottom": 2595, "left": 2965}, {"solidity": 0.9962872550353837, "top": 505, "right": 2760, "bottom": 1950, "left": 695}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730075f.jpg"} -{"rects": [{"solidity": 0.9983255859183092, "top": 1050, "right": 3440, "bottom": 5025, "left": 295}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713886f.jpg"} -{"rects": [{"solidity": 0.998325710939849, "top": 2250, "right": 3250, "bottom": 3890, "left": 820}, {"solidity": 0.9963307201679573, "top": 400, "right": 3260, "bottom": 2025, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725793f.jpg"} -{"rects": [{"solidity": 0.9983258724797968, "top": 320, "right": 5060, "bottom": 3615, "left": 985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715164f.jpg"} -{"rects": [{"solidity": 0.9983260369432332, "top": 480, "right": 5070, "bottom": 3715, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719924f.jpg"} -{"rects": [{"solidity": 0.9983260581244126, "top": 425, "right": 3170, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704171f.jpg"} -{"rects": [{"solidity": 0.998326121869961, "top": 405, "right": 3225, "bottom": 2020, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725122f.jpg"} -{"rects": [{"solidity": 0.9983261550699857, "top": 485, "right": 4955, "bottom": 3710, "left": 960}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732247f.jpg"} -{"rects": [{"solidity": 0.9983262578717182, "top": 800, "right": 3785, "bottom": 3215, "left": 2160}, {"solidity": 0.9980572672654351, "top": 785, "right": 1930, "bottom": 3200, "left": 305}, {"solidity": 0.9999084533520786, "top": 835, "right": 5650, "bottom": 3215, "left": 4035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718759f.jpg"} -{"rects": [{"solidity": 0.9983262716052637, "top": 440, "right": 3085, "bottom": 2035, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728977f.jpg"} -{"rects": [{"solidity": 0.9983268983268984, "top": 410, "right": 3225, "bottom": 2025, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722278f.jpg"} -{"rects": [{"solidity": 0.9983270994566664, "top": 485, "right": 5060, "bottom": 3715, "left": 995}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713950f.jpg"} -{"rects": [{"solidity": 0.9983272713700168, "top": 490, "right": 4970, "bottom": 3705, "left": 990}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726573f.jpg"} -{"rects": [{"solidity": 0.9983275094824239, "top": 775, "right": 2010, "bottom": 3160, "left": 420}, {"solidity": 0.9945648925927155, "top": 780, "right": 3845, "bottom": 3170, "left": 2255}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724771f.jpg"} -{"rects": [{"solidity": 0.9983275612643023, "top": 725, "right": 5060, "bottom": 3565, "left": 3030}, {"solidity": 0.9953776909829755, "top": 760, "right": 2595, "bottom": 3475, "left": 680}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702861f.jpg"} -{"rects": [{"solidity": 0.9983280051150896, "top": 405, "right": 3150, "bottom": 2025, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705234f.jpg"} -{"rects": [{"solidity": 0.9983282444258328, "top": 755, "right": 2010, "bottom": 3150, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707627f.jpg"} -{"rects": [{"solidity": 0.998328300086147, "top": 915, "right": 2005, "bottom": 3350, "left": 390}, {"solidity": 0.994635486978571, "top": 935, "right": 3860, "bottom": 3360, "left": 2245}, {"solidity": 0.9959712099950206, "top": 955, "right": 5680, "bottom": 3380, "left": 4060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722835f.jpg"} -{"rects": [{"solidity": 0.9983284933351111, "top": 290, "right": 3195, "bottom": 1910, "left": 805}, {"solidity": 0.9980560346379282, "top": 2120, "right": 3190, "bottom": 3740, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710350f.jpg"} -{"rects": [{"solidity": 0.9983286771460748, "top": 500, "right": 5095, "bottom": 3785, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702057f.jpg"} -{"rects": [{"solidity": 0.9983292572878386, "top": 745, "right": 2020, "bottom": 3145, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719361f.jpg"} -{"rects": [{"solidity": 0.9983293610705166, "top": 775, "right": 1990, "bottom": 3180, "left": 390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715576f.jpg"} -{"rects": [{"solidity": 0.998329707531043, "top": 365, "right": 5165, "bottom": 3680, "left": 1100}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712941f.jpg"} -{"rects": [{"solidity": 0.9983297288113141, "top": 1385, "right": 3565, "bottom": 5385, "left": 290}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723665f.jpg"} -{"rects": [{"solidity": 0.9983302330629085, "top": 425, "right": 5055, "bottom": 3700, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725415f.jpg"} -{"rects": [{"solidity": 0.9983303113708405, "top": 2390, "right": 3120, "bottom": 3995, "left": 715}, {"solidity": 0.9960330945783448, "top": 4175, "right": 3090, "bottom": 5785, "left": 690}, {"solidity": 0.9968110725911028, "top": 575, "right": 3135, "bottom": 2175, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720443f.jpg"} -{"rects": [{"solidity": 0.9983310521150767, "top": 435, "right": 3155, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710046f.jpg"} -{"rects": [{"solidity": 0.998331573066385, "top": 330, "right": 5135, "bottom": 3600, "left": 1115}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732743f.jpg"} -{"rects": [{"solidity": 0.9983317002568093, "top": 2200, "right": 3175, "bottom": 3830, "left": 760}, {"solidity": 0.9972934287573194, "top": 425, "right": 3170, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701829f.jpg"} -{"rects": [{"solidity": 0.9983317337730514, "top": 390, "right": 3200, "bottom": 2005, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730584f.jpg"} -{"rects": [{"solidity": 0.9983322193164046, "top": 425, "right": 3245, "bottom": 2030, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727233f.jpg"} -{"rects": [{"solidity": 0.9983324562349017, "top": 390, "right": 2460, "bottom": 2825, "left": 830}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710445f.jpg"} -{"rects": [{"solidity": 0.9983329937942707, "top": 1025, "right": 4825, "bottom": 3035, "left": 1625}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703776f.jpg"} -{"rects": [{"solidity": 0.99833307961638, "top": 400, "right": 5215, "bottom": 3670, "left": 1170}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721442f.jpg"} -{"rects": [{"solidity": 0.9983333125556801, "top": 1010, "right": 3540, "bottom": 5080, "left": 325}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707411f.jpg"} -{"rects": [{"solidity": 0.998333344162806, "top": 420, "right": 3195, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710554f.jpg"} -{"rects": [{"solidity": 0.9983333766503795, "top": 2265, "right": 3210, "bottom": 3880, "left": 810}, {"solidity": 0.9962010643513723, "top": 530, "right": 3205, "bottom": 2150, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733191f.jpg"} -{"rects": [{"solidity": 0.9983333812246774, "top": 700, "right": 2655, "bottom": 2125, "left": 810}, {"solidity": 0.9974119112857888, "top": 2195, "right": 2650, "bottom": 3545, "left": 805}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702587f.jpg"} -{"rects": [{"solidity": 0.9983334656748156, "top": 425, "right": 5070, "bottom": 3660, "left": 1060}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714078f.jpg"} -{"rects": [{"solidity": 0.9983337951552451, "top": 780, "right": 2335, "bottom": 2605, "left": 445}], "shape": {"h": 5990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465639.jpg"} -{"rects": [{"solidity": 0.998333818509011, "top": 1240, "right": 3335, "bottom": 5110, "left": 265}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731287f.jpg"} -{"rects": [{"solidity": 0.9983342244694258, "top": 400, "right": 5110, "bottom": 3625, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715041f.jpg"} -{"rects": [{"solidity": 0.9983343797212881, "top": 510, "right": 5145, "bottom": 3775, "left": 1120}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707835f.jpg"} -{"rects": [{"solidity": 0.9983343979031166, "top": 915, "right": 2600, "bottom": 3905, "left": 185}], "shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508361.jpg"} -{"rects": [{"solidity": 0.9983345029418682, "top": 490, "right": 5075, "bottom": 3750, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701882f.jpg"} -{"rects": [{"solidity": 0.9983347156494446, "top": 785, "right": 3030, "bottom": 2390, "left": 620}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718837f.jpg"} -{"rects": [{"solidity": 0.9983347524357071, "top": 3305, "right": 3160, "bottom": 5185, "left": 495}, {"solidity": 0.9699215540178135, "top": 825, "right": 3170, "bottom": 2655, "left": 555}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/715359f.jpg"} -{"rects": [{"solidity": 0.9983353341336535, "top": 2085, "right": 2730, "bottom": 3710, "left": 310}, {"solidity": 0.9969753455491858, "top": 2085, "right": 5755, "bottom": 3710, "left": 3330}, {"solidity": 0.9995542900385427, "top": 375, "right": 5770, "bottom": 1995, "left": 3350}, {"solidity": 0.9977810650887574, "top": 365, "right": 2745, "bottom": 1990, "left": 320}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734334f.jpg"} -{"rects": [{"solidity": 0.9983357556253406, "top": 420, "right": 3170, "bottom": 2030, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719287f.jpg"} -{"rects": [{"solidity": 0.9983360145598726, "top": 2360, "right": 3140, "bottom": 3970, "left": 735}, {"solidity": 0.998352065292085, "top": 540, "right": 3140, "bottom": 2145, "left": 735}, {"solidity": 0.996437737634776, "top": 4200, "right": 3130, "bottom": 5795, "left": 725}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/731957f.jpg"} -{"rects": [{"solidity": 0.9983361171784659, "top": 785, "right": 2035, "bottom": 3205, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714238f.jpg"} -{"rects": [{"solidity": 0.9983361174319649, "top": 420, "right": 3250, "bottom": 2005, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727025f.jpg"} -{"rects": [{"solidity": 0.9983364388657657, "top": 810, "right": 1945, "bottom": 3190, "left": 330}, {"solidity": 0.99624148768989, "top": 820, "right": 3800, "bottom": 3205, "left": 2175}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713172f.jpg"} -{"rects": [{"solidity": 0.9983369416206579, "top": 445, "right": 5025, "bottom": 3750, "left": 970}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721123f.jpg"} -{"rects": [{"solidity": 0.9983369505194621, "top": 490, "right": 3120, "bottom": 2110, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701530f.jpg"} -{"rects": [{"solidity": 0.9983373757921915, "top": 815, "right": 2080, "bottom": 3220, "left": 475}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720458f.jpg"} -{"rects": [{"solidity": 0.9983376118515488, "top": 425, "right": 3215, "bottom": 2050, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727387f.jpg"} -{"rects": [{"solidity": 0.9983378063642964, "top": 2295, "right": 3210, "bottom": 3895, "left": 815}, {"solidity": 0.9987478980214146, "top": 440, "right": 3190, "bottom": 2030, "left": 795}, {"solidity": 0.9960171053455853, "top": 4150, "right": 3220, "bottom": 5745, "left": 820}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/732116f.jpg"} -{"rects": [{"solidity": 0.9983378691673775, "top": 520, "right": 5095, "bottom": 3765, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724330f.jpg"} -{"rects": [{"solidity": 0.9983379623591152, "top": 375, "right": 5230, "bottom": 3620, "left": 1195}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732605f.jpg"} -{"rects": [{"solidity": 0.9983380946706303, "top": 2345, "right": 3260, "bottom": 3970, "left": 855}, {"solidity": 0.995904265424208, "top": 450, "right": 3265, "bottom": 2095, "left": 850}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/703191f.jpg"} -{"rects": [{"solidity": 0.9983381935458953, "top": 475, "right": 5030, "bottom": 3725, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714424f.jpg"} -{"rects": [{"solidity": 0.9983382510815831, "top": 875, "right": 2070, "bottom": 3295, "left": 450}, {"solidity": 0.9981991675579552, "top": 885, "right": 3950, "bottom": 3305, "left": 2335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733638f.jpg"} -{"rects": [{"solidity": 0.9983383172372121, "top": 315, "right": 3455, "bottom": 2720, "left": 405}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509371.jpg"} -{"rects": [{"solidity": 0.9983384899293132, "top": 790, "right": 3900, "bottom": 3210, "left": 2290}, {"solidity": 0.9963580601878474, "top": 800, "right": 2080, "bottom": 3200, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712531f.jpg"} -{"rects": [{"solidity": 0.9983385720700494, "top": 310, "right": 2915, "bottom": 1935, "left": 500}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706721f.jpg"} -{"rects": [{"solidity": 0.9983386093711412, "top": 1010, "right": 3105, "bottom": 2635, "left": 690}, {"solidity": 0.998798560849833, "top": 1005, "right": 5535, "bottom": 2625, "left": 3125}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712074f.jpg"} -{"rects": [{"solidity": 0.99833882706178, "top": 255, "right": 3165, "bottom": 1865, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721127f.jpg"} -{"rects": [{"solidity": 0.9983388649460874, "top": 765, "right": 2020, "bottom": 3160, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715563f.jpg"} -{"rects": [{"solidity": 0.9983396848205419, "top": 485, "right": 5080, "bottom": 3730, "left": 1070}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700686f.jpg"} -{"rects": [{"solidity": 0.998339688618223, "top": 835, "right": 2075, "bottom": 3245, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700729f.jpg"} -{"rects": [{"solidity": 0.9983398197518588, "top": 530, "right": 5045, "bottom": 3805, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707583f.jpg"} -{"rects": [{"solidity": 0.9983405232691183, "top": 275, "right": 3255, "bottom": 2730, "left": 230}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509945.jpg"} -{"rects": [{"solidity": 0.9983407560969478, "top": 1105, "right": 3470, "bottom": 5130, "left": 240}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714885f.jpg"} -{"rects": [{"solidity": 0.9983412368518627, "top": 395, "right": 3205, "bottom": 2000, "left": 795}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/718073f.jpg"} -{"rects": [{"solidity": 0.9983413106860095, "top": 895, "right": 2020, "bottom": 3325, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729489f.jpg"} -{"rects": [{"solidity": 0.9983413650117673, "top": 870, "right": 2700, "bottom": 3860, "left": 260}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507521.jpg"} -{"rects": [{"solidity": 0.9983415103795732, "top": 430, "right": 3170, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707711f.jpg"} -{"rects": [{"solidity": 0.9983416465678524, "top": 2195, "right": 3090, "bottom": 3810, "left": 670}, {"solidity": 0.9963255930989542, "top": 4075, "right": 3090, "bottom": 5690, "left": 675}, {"solidity": 0.9966101256741778, "top": 355, "right": 3075, "bottom": 1975, "left": 665}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728481f.jpg"} -{"rects": [{"solidity": 0.9983416631029833, "top": 790, "right": 2045, "bottom": 3200, "left": 445}, {"solidity": 0.9982125176052311, "top": 810, "right": 3920, "bottom": 3215, "left": 2320}, {"solidity": 0.9970437711538775, "top": 810, "right": 5815, "bottom": 3220, "left": 4215}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718338f.jpg"} -{"rects": [{"solidity": 0.9983418425864634, "top": 385, "right": 3155, "bottom": 1985, "left": 755}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730387f.jpg"} -{"rects": [{"solidity": 0.9983418552914664, "top": 360, "right": 4905, "bottom": 3605, "left": 885}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727249f.jpg"} -{"rects": [{"solidity": 0.9983421177161692, "top": 405, "right": 3190, "bottom": 2005, "left": 780}, {"solidity": 0.9955960792804142, "top": 2205, "right": 2910, "bottom": 3620, "left": 1095}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704119f.jpg"} -{"rects": [{"solidity": 0.9983422913719944, "top": 320, "right": 5165, "bottom": 3615, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723536f.jpg"} -{"rects": [{"solidity": 0.9983423470582824, "top": 420, "right": 5090, "bottom": 3700, "left": 1055}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724770f.jpg"} -{"rects": [{"solidity": 0.9983423776030144, "top": 1060, "right": 3600, "bottom": 5180, "left": 335}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/723979f.jpg"} -{"rects": [{"solidity": 0.998342482528215, "top": 2235, "right": 3115, "bottom": 3855, "left": 710}, {"solidity": 0.9956407564742779, "top": 4110, "right": 3120, "bottom": 5710, "left": 715}, {"solidity": 0.9945772183720614, "top": 475, "right": 3025, "bottom": 1870, "left": 865}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710545f.jpg"} -{"rects": [{"solidity": 0.9983425121996394, "top": 990, "right": 3590, "bottom": 5085, "left": 345}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707782f.jpg"} -{"rects": [{"solidity": 0.9983426631710378, "top": 760, "right": 3880, "bottom": 3185, "left": 2255}, {"solidity": 0.9976440275939672, "top": 775, "right": 2050, "bottom": 3200, "left": 425}, {"solidity": 0.9966852449398651, "top": 760, "right": 5690, "bottom": 3175, "left": 4090}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712358f.jpg"} -{"rects": [{"solidity": 0.9983428675202034, "top": 2205, "right": 3150, "bottom": 3815, "left": 740}, {"solidity": 0.9997524953999968, "top": 415, "right": 3145, "bottom": 2020, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706510f.jpg"} -{"rects": [{"solidity": 0.9983429172565986, "top": 410, "right": 2745, "bottom": 3605, "left": 755}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733107f.jpg"} -{"rects": [{"solidity": 0.9983431558234708, "top": 550, "right": 3410, "bottom": 2175, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701308f.jpg"} -{"rects": [{"solidity": 0.9983433000825164, "top": 405, "right": 2985, "bottom": 2035, "left": 560}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704525f.jpg"} -{"rects": [{"solidity": 0.9983442552835856, "top": 520, "right": 5055, "bottom": 3720, "left": 1060}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701809f.jpg"} -{"rects": [{"solidity": 0.998344343934086, "top": 405, "right": 3220, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705647f.jpg"} -{"rects": [{"solidity": 0.9983447411980495, "top": 380, "right": 2675, "bottom": 2805, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710874f.jpg"} -{"rects": [{"solidity": 0.9983447975900898, "top": 520, "right": 2575, "bottom": 2605, "left": 1075}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508163.jpg"} -{"rects": [{"solidity": 0.9983448478988852, "top": 860, "right": 2010, "bottom": 3280, "left": 385}, {"solidity": 0.9962815872914198, "top": 840, "right": 3910, "bottom": 3265, "left": 2285}, {"solidity": 0.9962101925196419, "top": 845, "right": 5740, "bottom": 3265, "left": 4120}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728485f.jpg"} -{"rects": [{"solidity": 0.9983449178288949, "top": 450, "right": 3200, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719254f.jpg"} -{"rects": [{"solidity": 0.9983450489029648, "top": 400, "right": 5295, "bottom": 3575, "left": 1495}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710861f.jpg"} -{"rects": [{"solidity": 0.9983453579159799, "top": 2335, "right": 3295, "bottom": 3965, "left": 875}, {"solidity": 0.9962709777541218, "top": 445, "right": 3305, "bottom": 2075, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704762f.jpg"} -{"rects": [{"solidity": 0.998345875246359, "top": 810, "right": 5735, "bottom": 3230, "left": 4110}, {"solidity": 0.9983055624955958, "top": 810, "right": 1950, "bottom": 3235, "left": 330}, {"solidity": 0.9972568370529126, "top": 820, "right": 3835, "bottom": 3230, "left": 2205}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717184f.jpg"} -{"rects": [{"solidity": 0.9983459040516491, "top": 450, "right": 5585, "bottom": 4075, "left": 1080}], "shape": {"h": 4405, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/711256f.jpg"} -{"rects": [{"solidity": 0.9983465107509033, "top": 300, "right": 3150, "bottom": 1925, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715668f.jpg"} -{"rects": [{"solidity": 0.9983470606935909, "top": 385, "right": 5085, "bottom": 3610, "left": 1090}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714922f.jpg"} -{"rects": [{"solidity": 0.9983471552276637, "top": 610, "right": 2730, "bottom": 2035, "left": 895}, {"solidity": 0.9957609176819293, "top": 2060, "right": 2710, "bottom": 3495, "left": 880}, {"solidity": 0.9956499152801581, "top": 2075, "right": 5285, "bottom": 3500, "left": 3460}, {"solidity": 0.9964668775848411, "top": 620, "right": 5285, "bottom": 2050, "left": 3465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705283f.jpg"} -{"rects": [{"solidity": 0.9983471679358286, "top": 1025, "right": 3530, "bottom": 5040, "left": 285}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731387f.jpg"} -{"rects": [{"solidity": 0.9983471794573868, "top": 985, "right": 4170, "bottom": 3350, "left": 2340}, {"solidity": 0.9482054287267292, "top": 3655, "right": 2140, "bottom": 5550, "left": 325}], "shape": {"h": 6005, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465703.jpg"} -{"rects": [{"solidity": 0.9983475663922353, "top": 1050, "right": 3470, "bottom": 4965, "left": 395}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717541f.jpg"} -{"rects": [{"solidity": 0.9983478971666724, "top": 445, "right": 5035, "bottom": 3695, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713435f.jpg"} -{"rects": [{"solidity": 0.9983480211607562, "top": 2060, "right": 3160, "bottom": 3685, "left": 750}, {"solidity": 0.9984414597468338, "top": 370, "right": 3150, "bottom": 1995, "left": 745}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705691f.jpg"} -{"rects": [{"solidity": 0.9983493801257585, "top": 805, "right": 3860, "bottom": 3215, "left": 2250}, {"solidity": 0.9955981434346459, "top": 820, "right": 2015, "bottom": 3200, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723051f.jpg"} -{"rects": [{"solidity": 0.9983497187477988, "top": 475, "right": 3195, "bottom": 2055, "left": 820}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721094f.jpg"} -{"rects": [{"solidity": 0.9983497232885631, "top": 440, "right": 3085, "bottom": 2060, "left": 675}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701805f.jpg"} -{"rects": [{"solidity": 0.9983499536026558, "top": 405, "right": 3125, "bottom": 2010, "left": 725}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/715322f.jpg"} -{"rects": [{"solidity": 0.998350124989076, "top": 345, "right": 5020, "bottom": 3610, "left": 1010}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733555f.jpg"} -{"rects": [{"solidity": 0.9983502826163074, "top": 485, "right": 5100, "bottom": 3700, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734668f.jpg"} -{"rects": [{"solidity": 0.9983506361143173, "top": 825, "right": 3990, "bottom": 3240, "left": 2370}, {"solidity": 0.9952415113960208, "top": 835, "right": 2085, "bottom": 3230, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703286f.jpg"} -{"rects": [{"solidity": 0.9983506958508174, "top": 400, "right": 3125, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700544f.jpg"} -{"rects": [{"solidity": 0.9983507395226281, "top": 550, "right": 5255, "bottom": 1975, "left": 3415}, {"solidity": 0.9949657017190405, "top": 560, "right": 2625, "bottom": 2000, "left": 800}, {"solidity": 0.9957515054015151, "top": 2005, "right": 2625, "bottom": 3430, "left": 830}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707145f.jpg"} -{"rects": [{"solidity": 0.9983509097267451, "top": 430, "right": 3190, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705106f.jpg"} -{"rects": [{"solidity": 0.9983510761397825, "top": 2260, "right": 3325, "bottom": 3875, "left": 900}, {"solidity": 0.9972366605187468, "top": 405, "right": 3310, "bottom": 2030, "left": 895}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702502f.jpg"} -{"rects": [{"solidity": 0.9983511873083868, "top": 305, "right": 3110, "bottom": 1920, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722688f.jpg"} -{"rects": [{"solidity": 0.9983517469850025, "top": 430, "right": 3210, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734506f.jpg"} -{"rects": [{"solidity": 0.998351837604499, "top": 380, "right": 3150, "bottom": 2000, "left": 735}, {"solidity": 0.999726409151932, "top": 4555, "right": 3830, "bottom": 6010, "left": 2470}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710827f.jpg"} -{"rects": [{"solidity": 0.9983522988135034, "top": 375, "right": 5130, "bottom": 3660, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722116f.jpg"} -{"rects": [{"solidity": 0.9983525035881057, "top": 130, "right": 3335, "bottom": 1675, "left": 915}], "shape": {"h": 3465, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703631f.jpg"} -{"rects": [{"solidity": 0.9983525138683484, "top": 485, "right": 3270, "bottom": 3875, "left": 655}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714065f.jpg"} -{"rects": [{"solidity": 0.9983528615404451, "top": 2230, "right": 3255, "bottom": 3845, "left": 835}, {"solidity": 0.9965389417571825, "top": 370, "right": 3255, "bottom": 1975, "left": 830}, {"solidity": 0.9981172147808411, "top": 4110, "right": 3255, "bottom": 5710, "left": 840}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/726924f.jpg"} -{"rects": [{"solidity": 0.9983528980308767, "top": 4040, "right": 3190, "bottom": 5650, "left": 760}, {"solidity": 0.9991978919699, "top": 2240, "right": 3185, "bottom": 3850, "left": 760}, {"solidity": 0.9966351277166016, "top": 430, "right": 3175, "bottom": 2045, "left": 760}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720811f.jpg"} -{"rects": [{"solidity": 0.9983529012924128, "top": 690, "right": 3870, "bottom": 3120, "left": 2250}, {"solidity": 0.9962924542800061, "top": 695, "right": 2035, "bottom": 3125, "left": 415}, {"solidity": 0.9974501920384333, "top": 710, "right": 5720, "bottom": 3115, "left": 4085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726713f.jpg"} -{"rects": [{"solidity": 0.9983537098130539, "top": 405, "right": 3315, "bottom": 2020, "left": 905}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725511f.jpg"} -{"rects": [{"solidity": 0.9983538707553382, "top": 2235, "right": 3115, "bottom": 3820, "left": 750}, {"solidity": 0.9967424478569006, "top": 375, "right": 3120, "bottom": 1925, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718496f.jpg"} -{"rects": [{"solidity": 0.998354362731041, "top": 730, "right": 2065, "bottom": 3130, "left": 455}, {"solidity": 0.9959054574356502, "top": 700, "right": 3955, "bottom": 3095, "left": 2325}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711840f.jpg"} -{"rects": [{"solidity": 0.99835545018715, "top": 375, "right": 5195, "bottom": 3645, "left": 1175}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714037f.jpg"} -{"rects": [{"solidity": 0.9983555952094092, "top": 780, "right": 1940, "bottom": 3175, "left": 325}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703003f.jpg"} -{"rects": [{"solidity": 0.9983561147354251, "top": 2265, "right": 3220, "bottom": 3875, "left": 805}, {"solidity": 0.9960320933625091, "top": 415, "right": 3220, "bottom": 2035, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710587f.jpg"} -{"rects": [{"solidity": 0.9983563961181472, "top": 445, "right": 3195, "bottom": 2065, "left": 770}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/700861f.jpg"} -{"rects": [{"solidity": 0.9983565827272962, "top": 915, "right": 3605, "bottom": 2900, "left": 175}, {"solidity": 0.9980495856757426, "top": 3385, "right": 3625, "bottom": 5360, "left": 185}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/706349f.jpg"} -{"rects": [{"solidity": 0.9983569950933899, "top": 605, "right": 3205, "bottom": 2610, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722491f.jpg"} -{"rects": [{"solidity": 0.9983570592981694, "top": 2270, "right": 3215, "bottom": 3880, "left": 805}, {"solidity": 0.9978230476680865, "top": 470, "right": 3220, "bottom": 2075, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732054f.jpg"} -{"rects": [{"solidity": 0.9983572469685353, "top": 955, "right": 3560, "bottom": 5050, "left": 365}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710888f.jpg"} -{"rects": [{"solidity": 0.9983575506761927, "top": 670, "right": 2735, "bottom": 3730, "left": 320}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715975f.jpg"} -{"rects": [{"solidity": 0.9983576942026605, "top": 770, "right": 2025, "bottom": 3170, "left": 430}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718988f.jpg"} -{"rects": [{"solidity": 0.9983578727432992, "top": 815, "right": 2005, "bottom": 3210, "left": 395}, {"solidity": 0.9971518801505947, "top": 810, "right": 3845, "bottom": 3210, "left": 2235}, {"solidity": 0.9982375876283246, "top": 805, "right": 5690, "bottom": 3200, "left": 4090}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719279f.jpg"} -{"rects": [{"solidity": 0.9983580200730653, "top": 435, "right": 5660, "bottom": 3635, "left": 735}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701632f.jpg"} -{"rects": [{"solidity": 0.9983584380129881, "top": 420, "right": 5190, "bottom": 3695, "left": 1095}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/733426f.jpg"} -{"rects": [{"solidity": 0.9983585438829787, "top": 480, "right": 5115, "bottom": 3765, "left": 1065}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730102f.jpg"} -{"rects": [{"solidity": 0.9983586126261556, "top": 2270, "right": 3165, "bottom": 3885, "left": 740}, {"solidity": 0.9952138056949523, "top": 505, "right": 2890, "bottom": 1890, "left": 1110}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734102f.jpg"} -{"rects": [{"solidity": 0.9983587386906838, "top": 500, "right": 3940, "bottom": 2580, "left": 2465}, {"solidity": 0.9911198795749027, "top": 510, "right": 2170, "bottom": 2585, "left": 680}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716215f.jpg"} -{"rects": [{"solidity": 0.9983589485664175, "top": 2275, "right": 3185, "bottom": 3890, "left": 770}, {"solidity": 0.9976649304992509, "top": 440, "right": 3175, "bottom": 2050, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/718729f.jpg"} -{"rects": [{"solidity": 0.9983591000751255, "top": 800, "right": 2005, "bottom": 3195, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719642f.jpg"} -{"rects": [{"solidity": 0.998359177902731, "top": 740, "right": 2015, "bottom": 3150, "left": 405}, {"solidity": 0.9964152938810202, "top": 760, "right": 5725, "bottom": 3175, "left": 4110}, {"solidity": 0.9941024707885467, "top": 740, "right": 3865, "bottom": 3150, "left": 2250}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714219f.jpg"} -{"rects": [{"solidity": 0.99835921046187, "top": 650, "right": 3235, "bottom": 2655, "left": 420}, {"solidity": 0.9967144849615949, "top": 3350, "right": 3230, "bottom": 5360, "left": 410}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728754f.jpg"} -{"rects": [{"solidity": 0.9983593558618378, "top": 405, "right": 3190, "bottom": 2020, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704204f.jpg"} -{"rects": [{"solidity": 0.9983593691968337, "top": 2215, "right": 3185, "bottom": 3825, "left": 765}, {"solidity": 0.9976390838351628, "top": 390, "right": 3180, "bottom": 2000, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734229f.jpg"} -{"rects": [{"solidity": 0.9983595642230607, "top": 380, "right": 3150, "bottom": 1990, "left": 720}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/701234f.jpg"} -{"rects": [{"solidity": 0.9983599887875791, "top": 355, "right": 5280, "bottom": 3570, "left": 1260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723221f.jpg"} -{"rects": [{"solidity": 0.9983600062352238, "top": 825, "right": 2010, "bottom": 3240, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722442f.jpg"} -{"rects": [{"solidity": 0.9983601121336456, "top": 385, "right": 5055, "bottom": 3660, "left": 1025}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703180f.jpg"} -{"rects": [{"solidity": 0.9983602721719926, "top": 430, "right": 5050, "bottom": 3660, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715436f.jpg"} -{"rects": [{"solidity": 0.9983606557377049, "top": 465, "right": 3170, "bottom": 2075, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727502f.jpg"} -{"rects": [{"solidity": 0.9983606947985417, "top": 1075, "right": 3510, "bottom": 5120, "left": 255}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723931f.jpg"} -{"rects": [{"solidity": 0.9983611631506069, "top": 455, "right": 3180, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723565f.jpg"} -{"rects": [{"solidity": 0.9983614194605536, "top": 930, "right": 5770, "bottom": 3345, "left": 4150}, {"solidity": 0.9953021883436353, "top": 910, "right": 3930, "bottom": 3325, "left": 2305}, {"solidity": 0.9944560753390183, "top": 1075, "right": 2070, "bottom": 3140, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719941f.jpg"} -{"rects": [{"solidity": 0.9983615879104463, "top": 900, "right": 2035, "bottom": 3320, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728416f.jpg"} -{"rects": [{"solidity": 0.9983616489042917, "top": 780, "right": 3840, "bottom": 3185, "left": 2235}, {"solidity": 0.9974230071998164, "top": 815, "right": 1995, "bottom": 3170, "left": 435}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732498f.jpg"} -{"rects": [{"solidity": 0.9983617609604054, "top": 665, "right": 2020, "bottom": 3080, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724992f.jpg"} -{"rects": [{"solidity": 0.9983619390503384, "top": 430, "right": 3155, "bottom": 1990, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710311f.jpg"} -{"rects": [{"solidity": 0.9983620039986373, "top": 265, "right": 2710, "bottom": 3265, "left": 275}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507555.jpg"} -{"rects": [{"solidity": 0.9983620509691199, "top": 425, "right": 3190, "bottom": 2040, "left": 765}, {"solidity": 0.9972111771143225, "top": 2205, "right": 3195, "bottom": 3820, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719027f.jpg"} -{"rects": [{"solidity": 0.9983627434928858, "top": 1130, "right": 3520, "bottom": 5135, "left": 310}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709772f.jpg"} -{"rects": [{"solidity": 0.9983633537533144, "top": 425, "right": 2895, "bottom": 1890, "left": 1015}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701178f.jpg"} -{"rects": [{"solidity": 0.9983635923045124, "top": 435, "right": 5105, "bottom": 3720, "left": 1085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725410f.jpg"} -{"rects": [{"solidity": 0.998363867025849, "top": 765, "right": 2040, "bottom": 3190, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709697f.jpg"} -{"rects": [{"solidity": 0.9983638992466327, "top": 2360, "right": 3055, "bottom": 3995, "left": 630}, {"solidity": 0.9958688024017397, "top": 455, "right": 3065, "bottom": 2085, "left": 650}, {"solidity": 0.9927854876307142, "top": 4245, "right": 2810, "bottom": 5720, "left": 825}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734605f.jpg"} -{"rects": [{"solidity": 0.9983644553546958, "top": 375, "right": 5070, "bottom": 3570, "left": 1105}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731059f.jpg"} -{"rects": [{"solidity": 0.9983645278574355, "top": 2220, "right": 3175, "bottom": 3845, "left": 750}, {"solidity": 0.9979692523566006, "top": 4080, "right": 3180, "bottom": 5700, "left": 760}, {"solidity": 0.9963430925976597, "top": 385, "right": 3160, "bottom": 2010, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730633f.jpg"} -{"rects": [{"solidity": 0.9983647079350924, "top": 340, "right": 5280, "bottom": 3585, "left": 1275}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727853f.jpg"} -{"rects": [{"solidity": 0.9983647110402806, "top": 2255, "right": 3155, "bottom": 3880, "left": 735}, {"solidity": 0.998623298422583, "top": 4125, "right": 3150, "bottom": 5745, "left": 735}, {"solidity": 0.9955901560903695, "top": 395, "right": 3140, "bottom": 2005, "left": 720}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/705484f.jpg"} -{"rects": [{"solidity": 0.9983649903437916, "top": 990, "right": 3510, "bottom": 5020, "left": 245}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716935f.jpg"} -{"rects": [{"solidity": 0.9983650048738331, "top": 1075, "right": 3590, "bottom": 5020, "left": 420}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709205f.jpg"} -{"rects": [{"solidity": 0.9983655010902043, "top": 430, "right": 3165, "bottom": 2035, "left": 735}, {"solidity": 0.9951966645532433, "top": 2245, "right": 3160, "bottom": 3830, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701602f.jpg"} -{"rects": [{"solidity": 0.9983655810599688, "top": 2060, "right": 2735, "bottom": 3485, "left": 895}, {"solidity": 0.9971559602123165, "top": 620, "right": 2720, "bottom": 2045, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707141f.jpg"} -{"rects": [{"solidity": 0.9983656693474005, "top": 420, "right": 3170, "bottom": 2030, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721349f.jpg"} -{"rects": [{"solidity": 0.998365817431065, "top": 470, "right": 3215, "bottom": 2080, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705040f.jpg"} -{"rects": [{"solidity": 0.9983661588879628, "top": 495, "right": 5060, "bottom": 3765, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707116f.jpg"} -{"rects": [{"solidity": 0.9983661938826653, "top": 1970, "right": 2935, "bottom": 4370, "left": 1325}, {"solidity": 0.9953729101358412, "top": 340, "right": 3305, "bottom": 1950, "left": 900}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725867f.jpg"} -{"rects": [{"solidity": 0.9983667822728627, "top": 825, "right": 2020, "bottom": 3245, "left": 395}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728508f.jpg"} -{"rects": [{"solidity": 0.9983668147843325, "top": 455, "right": 5100, "bottom": 3730, "left": 1225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718088f.jpg"} -{"rects": [{"solidity": 0.9983668349027384, "top": 815, "right": 3655, "bottom": 2835, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733096f.jpg"} -{"rects": [{"solidity": 0.9983670275374128, "top": 425, "right": 3110, "bottom": 2040, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707030f.jpg"} -{"rects": [{"solidity": 0.9983671120301683, "top": 775, "right": 2030, "bottom": 3155, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713101f.jpg"} -{"rects": [{"solidity": 0.9983676251811052, "top": 490, "right": 5105, "bottom": 3690, "left": 1070}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724870f.jpg"} -{"rects": [{"solidity": 0.9983677610201243, "top": 2175, "right": 2820, "bottom": 3570, "left": 1020}, {"solidity": 0.9950272044131044, "top": 3985, "right": 2815, "bottom": 5400, "left": 1040}, {"solidity": 0.9951285919649706, "top": 455, "right": 2775, "bottom": 1845, "left": 980}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703145f.jpg"} -{"rects": [{"solidity": 0.9983680045293098, "top": 315, "right": 5115, "bottom": 3565, "left": 1035}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704964f.jpg"} -{"rects": [{"solidity": 0.9983687925620768, "top": 490, "right": 5065, "bottom": 3740, "left": 1025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701195f.jpg"} -{"rects": [{"solidity": 0.998368855502666, "top": 345, "right": 5105, "bottom": 3570, "left": 1045}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708278f.jpg"} -{"rects": [{"solidity": 0.9983688640207502, "top": 775, "right": 2005, "bottom": 3155, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721385f.jpg"} -{"rects": [{"solidity": 0.9983695672877295, "top": 370, "right": 5260, "bottom": 3650, "left": 1230}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704836f.jpg"} -{"rects": [{"solidity": 0.9983695996954894, "top": 780, "right": 3885, "bottom": 3215, "left": 2255}, {"solidity": 0.996282019911849, "top": 775, "right": 2065, "bottom": 3210, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720666f.jpg"} -{"rects": [{"solidity": 0.9983699816866468, "top": 480, "right": 3180, "bottom": 2085, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704730f.jpg"} -{"rects": [{"solidity": 0.9983699892261396, "top": 2215, "right": 2855, "bottom": 3695, "left": 1020}, {"solidity": 0.9955420800624409, "top": 530, "right": 2850, "bottom": 1905, "left": 1015}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711126f.jpg"} -{"rects": [{"solidity": 0.9983700677918743, "top": 680, "right": 3260, "bottom": 2690, "left": 440}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724262f.jpg"} -{"rects": [{"solidity": 0.9983705156308406, "top": 1120, "right": 3595, "bottom": 5180, "left": 295}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725375f.jpg"} -{"rects": [{"solidity": 0.9983705435493169, "top": 445, "right": 3235, "bottom": 2060, "left": 815}, {"solidity": 0.9952281294726052, "top": 2305, "right": 3215, "bottom": 3905, "left": 810}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/732104f.jpg"} -{"rects": [{"solidity": 0.9983705822157384, "top": 890, "right": 3600, "bottom": 4895, "left": 350}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723918f.jpg"} -{"rects": [{"solidity": 0.9983707537711874, "top": 1140, "right": 3665, "bottom": 5250, "left": 385}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/721357f.jpg"} -{"rects": [{"solidity": 0.998370794310362, "top": 760, "right": 2050, "bottom": 3180, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702133f.jpg"} -{"rects": [{"solidity": 0.9983709414667978, "top": 715, "right": 2015, "bottom": 3130, "left": 400}, {"solidity": 0.9976557026016463, "top": 720, "right": 3920, "bottom": 3120, "left": 2320}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719002f.jpg"} -{"rects": [{"solidity": 0.9983712337784013, "top": 385, "right": 5445, "bottom": 3630, "left": 1410}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733410f.jpg"} -{"rects": [{"solidity": 0.99837143451343, "top": 395, "right": 3305, "bottom": 2020, "left": 885}, {"solidity": 0.9979614535221019, "top": 2225, "right": 3280, "bottom": 3855, "left": 870}, {"solidity": 0.9996234218616594, "top": 4095, "right": 3260, "bottom": 5715, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704778f.jpg"} -{"rects": [{"solidity": 0.9983714345273251, "top": 975, "right": 3785, "bottom": 2995, "left": 2350}, {"solidity": 0.9966720250249815, "top": 970, "right": 2055, "bottom": 2985, "left": 615}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714680f.jpg"} -{"rects": [{"solidity": 0.9983717449985718, "top": 1150, "right": 3400, "bottom": 5150, "left": 280}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718110f.jpg"} -{"rects": [{"solidity": 0.9983723969102006, "top": 420, "right": 3200, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706823f.jpg"} -{"rects": [{"solidity": 0.9983724656758424, "top": 410, "right": 2805, "bottom": 3615, "left": 775}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732997f.jpg"} -{"rects": [{"solidity": 0.9983725517252575, "top": 700, "right": 2520, "bottom": 2185, "left": 430}, {"solidity": 0.996177054225894, "top": 2480, "right": 2515, "bottom": 3975, "left": 415}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716014f.jpg"} -{"rects": [{"solidity": 0.9983725616456349, "top": 815, "right": 2070, "bottom": 3240, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703764f.jpg"} -{"rects": [{"solidity": 0.9983728379244075, "top": 2185, "right": 3125, "bottom": 3815, "left": 715}, {"solidity": 0.9974309528538206, "top": 325, "right": 3130, "bottom": 1955, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705113f.jpg"} -{"rects": [{"solidity": 0.9983729936272899, "top": 310, "right": 3170, "bottom": 1930, "left": 760}, {"solidity": 0.9980699120737723, "top": 4025, "right": 3140, "bottom": 5650, "left": 755}, {"solidity": 0.9979165378067003, "top": 2150, "right": 3145, "bottom": 3775, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719228f.jpg"} -{"rects": [{"solidity": 0.998373308675058, "top": 435, "right": 5060, "bottom": 3710, "left": 990}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723213f.jpg"} -{"rects": [{"solidity": 0.9983738777187658, "top": 440, "right": 4995, "bottom": 3645, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715141f.jpg"} -{"rects": [{"solidity": 0.9983740503108606, "top": 300, "right": 5215, "bottom": 3530, "left": 1220}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733482f.jpg"} -{"rects": [{"solidity": 0.9983741502694814, "top": 770, "right": 3925, "bottom": 3190, "left": 2300}, {"solidity": 0.9965849234984275, "top": 770, "right": 2035, "bottom": 3185, "left": 415}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716783f.jpg"} -{"rects": [{"solidity": 0.9983743200747232, "top": 290, "right": 3210, "bottom": 1910, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704938f.jpg"} -{"rects": [{"solidity": 0.9983744409110887, "top": 390, "right": 3175, "bottom": 2005, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729397f.jpg"} -{"rects": [{"solidity": 0.9983745111168602, "top": 445, "right": 5115, "bottom": 3715, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732760f.jpg"} -{"rects": [{"solidity": 0.998375032992466, "top": 970, "right": 3575, "bottom": 5045, "left": 295}], "shape": {"h": 6240, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/700952f.jpg"} -{"rects": [{"solidity": 0.9983750589830328, "top": 1125, "right": 2625, "bottom": 2735, "left": 270}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723588f.jpg"} -{"rects": [{"solidity": 0.9983752665859704, "top": 515, "right": 2470, "bottom": 2060, "left": 205}], "shape": {"h": 4645, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715775f.jpg"} -{"rects": [{"solidity": 0.9983752894599238, "top": 2195, "right": 2835, "bottom": 3480, "left": 735}, {"solidity": 0.9951578886266012, "top": 625, "right": 2680, "bottom": 2060, "left": 855}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706521f.jpg"} -{"rects": [{"solidity": 0.9983754154874891, "top": 735, "right": 2050, "bottom": 3140, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712456f.jpg"} -{"rects": [{"solidity": 0.9983755898212484, "top": 320, "right": 5115, "bottom": 3565, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700896f.jpg"} -{"rects": [{"solidity": 0.998375905279438, "top": 775, "right": 1950, "bottom": 3190, "left": 335}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711133f.jpg"} -{"rects": [{"solidity": 0.9983760017956403, "top": 425, "right": 3180, "bottom": 2020, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713579f.jpg"} -{"rects": [{"solidity": 0.9983763287529168, "top": 800, "right": 2140, "bottom": 3210, "left": 530}, {"solidity": 0.9974235512755533, "top": 775, "right": 3995, "bottom": 3180, "left": 2385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722194f.jpg"} -{"rects": [{"solidity": 0.9983765786822946, "top": 490, "right": 5075, "bottom": 3775, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707587f.jpg"} -{"rects": [{"solidity": 0.9983767404264685, "top": 450, "right": 5115, "bottom": 3720, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721773f.jpg"} -{"rects": [{"solidity": 0.9983768460518495, "top": 545, "right": 3140, "bottom": 2150, "left": 740}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/707614f.jpg"} -{"rects": [{"solidity": 0.9983771637816246, "top": 850, "right": 2005, "bottom": 3270, "left": 380}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720891f.jpg"} -{"rects": [{"solidity": 0.9983772547441829, "top": 1200, "right": 3625, "bottom": 5235, "left": 375}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708924f.jpg"} -{"rects": [{"solidity": 0.9983772701213647, "top": 830, "right": 1930, "bottom": 3235, "left": 315}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719856f.jpg"} -{"rects": [{"solidity": 0.9983772846124536, "top": 650, "right": 1995, "bottom": 3060, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725981f.jpg"} -{"rects": [{"solidity": 0.9983775300213742, "top": 390, "right": 5125, "bottom": 3675, "left": 1085}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731476f.jpg"} -{"rects": [{"solidity": 0.9983778383813076, "top": 635, "right": 2025, "bottom": 3060, "left": 410}, {"solidity": 0.9943510067343521, "top": 790, "right": 3790, "bottom": 2745, "left": 2275}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706967f.jpg"} -{"rects": [{"solidity": 0.9983779218092809, "top": 930, "right": 2675, "bottom": 3945, "left": 255}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517199.jpg"} -{"rects": [{"solidity": 0.9983781074949479, "top": 950, "right": 3370, "bottom": 5005, "left": 520}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709798f.jpg"} -{"rects": [{"solidity": 0.9983782101285474, "top": 400, "right": 5105, "bottom": 3685, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727033f.jpg"} -{"rects": [{"solidity": 0.9983782340834918, "top": 445, "right": 5155, "bottom": 3665, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715156f.jpg"} -{"rects": [{"solidity": 0.9983782778977867, "top": 300, "right": 3210, "bottom": 1920, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703046f.jpg"} -{"rects": [{"solidity": 0.9983782809778365, "top": 345, "right": 5085, "bottom": 3575, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717506f.jpg"} -{"rects": [{"solidity": 0.9983784436509169, "top": 630, "right": 2955, "bottom": 2435, "left": 1740}, {"solidity": 0.9981934143314767, "top": 625, "right": 1625, "bottom": 2430, "left": 415}, {"solidity": 0.9981068695240624, "top": 620, "right": 4265, "bottom": 2425, "left": 3055}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715950f.jpg"} -{"rects": [{"solidity": 0.9983785200840192, "top": 715, "right": 2310, "bottom": 3130, "left": 700}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701434f.jpg"} -{"rects": [{"solidity": 0.9983786509189293, "top": 865, "right": 2440, "bottom": 3245, "left": 835}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706559f.jpg"} -{"rects": [{"solidity": 0.9983786772183143, "top": 390, "right": 4945, "bottom": 3680, "left": 940}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722477f.jpg"} -{"rects": [{"solidity": 0.9983790559854083, "top": 385, "right": 3300, "bottom": 1995, "left": 875}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725543f.jpg"} -{"rects": [{"solidity": 0.998379297848721, "top": 1230, "right": 3575, "bottom": 5270, "left": 320}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/709050f.jpg"} -{"rects": [{"solidity": 0.9983796386496773, "top": 455, "right": 3205, "bottom": 2060, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726478f.jpg"} -{"rects": [{"solidity": 0.9983797229404883, "top": 440, "right": 5275, "bottom": 3635, "left": 1280}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730025f.jpg"} -{"rects": [{"solidity": 0.9983798676730243, "top": 680, "right": 2045, "bottom": 3085, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703997f.jpg"} -{"rects": [{"solidity": 0.9983798911702445, "top": 790, "right": 2045, "bottom": 3195, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708086f.jpg"} -{"rects": [{"solidity": 0.9983799984698137, "top": 770, "right": 2005, "bottom": 3155, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717546f.jpg"} -{"rects": [{"solidity": 0.998380790135475, "top": 410, "right": 3175, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714046f.jpg"} -{"rects": [{"solidity": 0.9983811133031897, "top": 475, "right": 5100, "bottom": 3770, "left": 1050}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714591f.jpg"} -{"rects": [{"solidity": 0.9983811730424841, "top": 400, "right": 3170, "bottom": 1970, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724183f.jpg"} -{"rects": [{"solidity": 0.9983814769023266, "top": 535, "right": 3255, "bottom": 2155, "left": 835}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701997f.jpg"} -{"rects": [{"solidity": 0.9983815071451956, "top": 465, "right": 5060, "bottom": 3665, "left": 1010}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712011f.jpg"} -{"rects": [{"solidity": 0.9983823958727166, "top": 490, "right": 4985, "bottom": 3745, "left": 955}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706241f.jpg"} -{"rects": [{"solidity": 0.9983829894361765, "top": 415, "right": 3115, "bottom": 2025, "left": 695}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729954f.jpg"} -{"rects": [{"solidity": 0.998383115983937, "top": 630, "right": 2625, "bottom": 3680, "left": 600}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722516f.jpg"} -{"rects": [{"solidity": 0.9983831223847005, "top": 890, "right": 3915, "bottom": 3300, "left": 2300}, {"solidity": 0.9982352364456355, "top": 895, "right": 2025, "bottom": 3285, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709349f.jpg"} -{"rects": [{"solidity": 0.9983831278424097, "top": 2295, "right": 3295, "bottom": 3910, "left": 875}, {"solidity": 0.9966553781648121, "top": 430, "right": 3300, "bottom": 2050, "left": 880}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726788f.jpg"} -{"rects": [{"solidity": 0.9983832808833369, "top": 480, "right": 3125, "bottom": 2105, "left": 705}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707694f.jpg"} -{"rects": [{"solidity": 0.9983836206896551, "top": 775, "right": 2055, "bottom": 3190, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715409f.jpg"} -{"rects": [{"solidity": 0.9983837077743656, "top": 395, "right": 5870, "bottom": 3620, "left": 3845}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705061f.jpg"} -{"rects": [{"solidity": 0.9983840742616251, "top": 445, "right": 3200, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719466f.jpg"} -{"rects": [{"solidity": 0.9983841323080191, "top": 810, "right": 2045, "bottom": 3230, "left": 430}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724787f.jpg"} -{"rects": [{"solidity": 0.9983843303924963, "top": 385, "right": 5275, "bottom": 3570, "left": 1310}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717022f.jpg"} -{"rects": [{"solidity": 0.9983850259374623, "top": 860, "right": 3510, "bottom": 4945, "left": 305}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715024f.jpg"} -{"rects": [{"solidity": 0.9983852868242997, "top": 420, "right": 5195, "bottom": 3655, "left": 1090}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732713f.jpg"} -{"rects": [{"solidity": 0.9983853641069045, "top": 850, "right": 2045, "bottom": 3250, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712715f.jpg"} -{"rects": [{"solidity": 0.9983856670156428, "top": 335, "right": 5025, "bottom": 3615, "left": 1010}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732751f.jpg"} -{"rects": [{"solidity": 0.9983856788580139, "top": 470, "right": 5235, "bottom": 3445, "left": 1480}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734444f.jpg"} -{"rects": [{"solidity": 0.9983857094041264, "top": 360, "right": 5260, "bottom": 3565, "left": 1270}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730060f.jpg"} -{"rects": [{"solidity": 0.998385763107914, "top": 490, "right": 5125, "bottom": 3795, "left": 1085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701662f.jpg"} -{"rects": [{"solidity": 0.9983859803574447, "top": 715, "right": 3855, "bottom": 3145, "left": 2230}, {"solidity": 0.9986809024716753, "top": 745, "right": 1985, "bottom": 3160, "left": 390}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720705f.jpg"} -{"rects": [{"solidity": 0.9983863393480038, "top": 525, "right": 4990, "bottom": 3755, "left": 970}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701416f.jpg"} -{"rects": [{"solidity": 0.9983863804024804, "top": 445, "right": 5045, "bottom": 3720, "left": 1020}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726947f.jpg"} -{"rects": [{"solidity": 0.9983867623811128, "top": 770, "right": 5750, "bottom": 3190, "left": 4145}, {"solidity": 0.9954414306694566, "top": 770, "right": 3950, "bottom": 3185, "left": 2325}, {"solidity": 0.9949059839467462, "top": 2120, "right": 2160, "bottom": 3495, "left": 350}, {"solidity": 0.9955791652152531, "top": 585, "right": 2160, "bottom": 1940, "left": 345}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706600f.jpg"} -{"rects": [{"solidity": 0.998386800172412, "top": 440, "right": 5145, "bottom": 3670, "left": 1145}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709805f.jpg"} -{"rects": [{"solidity": 0.9983873776825972, "top": 280, "right": 3205, "bottom": 1895, "left": 790}, {"solidity": 0.9966433313645181, "top": 2105, "right": 3215, "bottom": 3725, "left": 805}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720547f.jpg"} -{"rects": [{"solidity": 0.9983879148534747, "top": 905, "right": 3895, "bottom": 3310, "left": 2275}, {"solidity": 0.9974912404098288, "top": 910, "right": 2035, "bottom": 3315, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728690f.jpg"} -{"rects": [{"solidity": 0.9983882665807076, "top": 420, "right": 3155, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728778f.jpg"} -{"rects": [{"solidity": 0.9983883540554235, "top": 490, "right": 5055, "bottom": 3700, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700178f.jpg"} -{"rects": [{"solidity": 0.9983884951749096, "top": 475, "right": 5070, "bottom": 3760, "left": 1015}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705319f.jpg"} -{"rects": [{"solidity": 0.9983886465621709, "top": 885, "right": 1910, "bottom": 3245, "left": 295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721729f.jpg"} -{"rects": [{"solidity": 0.9983888045809172, "top": 580, "right": 5070, "bottom": 3795, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722887f.jpg"} -{"rects": [{"solidity": 0.9983890664380181, "top": 420, "right": 3195, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706871f.jpg"} -{"rects": [{"solidity": 0.99838913245649, "top": 715, "right": 1980, "bottom": 2020, "left": 815}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717283f.jpg"} -{"rects": [{"solidity": 0.9983892622006175, "top": 325, "right": 3350, "bottom": 2785, "left": 340}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509967.jpg"} -{"rects": [{"solidity": 0.9983892985634457, "top": 410, "right": 3055, "bottom": 2040, "left": 635}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701487f.jpg"} -{"rects": [{"solidity": 0.9983902158376687, "top": 1060, "right": 3600, "bottom": 5150, "left": 350}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/712986f.jpg"} -{"rects": [{"solidity": 0.998390559656482, "top": 775, "right": 1940, "bottom": 3195, "left": 315}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706892f.jpg"} -{"rects": [{"solidity": 0.9983908836008235, "top": 800, "right": 2050, "bottom": 3230, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715125f.jpg"} -{"rects": [{"solidity": 0.9983913287429985, "top": 820, "right": 3810, "bottom": 3230, "left": 2200}, {"solidity": 0.9960523230059671, "top": 825, "right": 2040, "bottom": 3230, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715105f.jpg"} -{"rects": [{"solidity": 0.9983913607710448, "top": 775, "right": 3465, "bottom": 5135, "left": 540}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711131f.jpg"} -{"rects": [{"solidity": 0.998391888522812, "top": 460, "right": 5275, "bottom": 3650, "left": 1310}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733720f.jpg"} -{"rects": [{"solidity": 0.998392355102224, "top": 425, "right": 5275, "bottom": 3640, "left": 1265}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730015f.jpg"} -{"rects": [{"solidity": 0.9983924411928743, "top": 2140, "right": 3230, "bottom": 3765, "left": 870}, {"solidity": 0.997021059726766, "top": 300, "right": 3235, "bottom": 1915, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710307f.jpg"} -{"rects": [{"solidity": 0.998392520720408, "top": 320, "right": 3150, "bottom": 1935, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703337f.jpg"} -{"rects": [{"solidity": 0.9983925322425844, "top": 485, "right": 5345, "bottom": 3695, "left": 3350}, {"solidity": 0.9947400642924776, "top": 475, "right": 2795, "bottom": 3685, "left": 805}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732919f.jpg"} -{"rects": [{"solidity": 0.9983929197563731, "top": 775, "right": 1960, "bottom": 3190, "left": 355}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711565f.jpg"} -{"rects": [{"solidity": 0.9983930746701916, "top": 2240, "right": 3140, "bottom": 3855, "left": 735}, {"solidity": 0.9972341972679583, "top": 470, "right": 3145, "bottom": 2080, "left": 730}, {"solidity": 0.9961567692966357, "top": 4035, "right": 3125, "bottom": 5630, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712295f.jpg"} -{"rects": [{"solidity": 0.9983932741112698, "top": 2155, "right": 3160, "bottom": 3780, "left": 735}, {"solidity": 0.9993011227125457, "top": 300, "right": 3170, "bottom": 1920, "left": 760}, {"solidity": 0.9963133790236138, "top": 4030, "right": 3140, "bottom": 5645, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714049f.jpg"} -{"rects": [{"solidity": 0.9983935895096058, "top": 980, "right": 2695, "bottom": 3990, "left": 270}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516937.jpg"} -{"rects": [{"solidity": 0.9983938767145485, "top": 430, "right": 4995, "bottom": 3705, "left": 970}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725417f.jpg"} -{"rects": [{"solidity": 0.9983950081214519, "top": 545, "right": 3480, "bottom": 2165, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701196f.jpg"} -{"rects": [{"solidity": 0.9983957312322566, "top": 1045, "right": 3430, "bottom": 4975, "left": 300}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/716663f.jpg"} -{"rects": [{"solidity": 0.998396282872839, "top": 445, "right": 3130, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715397f.jpg"} -{"rects": [{"solidity": 0.9983963069516945, "top": 955, "right": 3520, "bottom": 4960, "left": 280}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/726574f.jpg"} -{"rects": [{"solidity": 0.9983963826599017, "top": 760, "right": 3855, "bottom": 3160, "left": 2260}, {"solidity": 0.9967285596740456, "top": 760, "right": 2035, "bottom": 3160, "left": 445}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730407f.jpg"} -{"rects": [{"solidity": 0.998396437386193, "top": 630, "right": 2715, "bottom": 2055, "left": 885}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705638f.jpg"} -{"rects": [{"solidity": 0.99839647421078, "top": 415, "right": 3195, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720681f.jpg"} -{"rects": [{"solidity": 0.9983964854688776, "top": 495, "right": 5035, "bottom": 3725, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718303f.jpg"} -{"rects": [{"solidity": 0.9983967122785663, "top": 780, "right": 2060, "bottom": 3175, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715039f.jpg"} -{"rects": [{"solidity": 0.9983972845048033, "top": 810, "right": 3925, "bottom": 3215, "left": 2320}, {"solidity": 0.9962764879337287, "top": 810, "right": 2035, "bottom": 3220, "left": 435}, {"solidity": 0.995506588048309, "top": 825, "right": 5815, "bottom": 3235, "left": 4215}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731719f.jpg"} -{"rects": [{"solidity": 0.9983974327900957, "top": 845, "right": 3535, "bottom": 4865, "left": 310}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719272f.jpg"} -{"rects": [{"solidity": 0.9983974824966965, "top": 760, "right": 3840, "bottom": 3180, "left": 2230}, {"solidity": 0.9948888354646319, "top": 765, "right": 2045, "bottom": 3165, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720884f.jpg"} -{"rects": [{"solidity": 0.9983978545182244, "top": 400, "right": 5060, "bottom": 3620, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711888f.jpg"} -{"rects": [{"solidity": 0.9983978691659907, "top": 635, "right": 2735, "bottom": 2045, "left": 950}, {"solidity": 0.9964652712904285, "top": 2115, "right": 2735, "bottom": 3505, "left": 935}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706020f.jpg"} -{"rects": [{"solidity": 0.9983981161538653, "top": 1075, "right": 3570, "bottom": 5095, "left": 315}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722208f.jpg"} -{"rects": [{"solidity": 0.9983981533897003, "top": 1000, "right": 3540, "bottom": 5075, "left": 310}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710567f.jpg"} -{"rects": [{"solidity": 0.9983985431664549, "top": 985, "right": 3460, "bottom": 5080, "left": 220}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705946f.jpg"} -{"rects": [{"solidity": 0.9983985766871648, "top": 455, "right": 5040, "bottom": 3660, "left": 1045}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704291f.jpg"} -{"rects": [{"solidity": 0.9983985977258154, "top": 405, "right": 3225, "bottom": 2015, "left": 800}, {"solidity": 0.9962003754544254, "top": 2285, "right": 3190, "bottom": 3900, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732107f.jpg"} -{"rects": [{"solidity": 0.9983987012039864, "top": 300, "right": 3210, "bottom": 1930, "left": 775}, {"solidity": 0.9976478826169295, "top": 2120, "right": 3205, "bottom": 3750, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/707348f.jpg"} -{"rects": [{"solidity": 0.99839878620466, "top": 480, "right": 5090, "bottom": 3680, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732616f.jpg"} -{"rects": [{"solidity": 0.9983990278434134, "top": 885, "right": 2010, "bottom": 3295, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704542f.jpg"} -{"rects": [{"solidity": 0.9983993636574051, "top": 775, "right": 2030, "bottom": 3180, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704872f.jpg"} -{"rects": [{"solidity": 0.9983994642873985, "top": 470, "right": 5070, "bottom": 3725, "left": 980}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720050f.jpg"} -{"rects": [{"solidity": 0.9983995208544761, "top": 855, "right": 2045, "bottom": 3240, "left": 460}, {"solidity": 0.9970395876068945, "top": 865, "right": 3925, "bottom": 3245, "left": 2335}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711878f.jpg"} -{"rects": [{"solidity": 0.9983997289702864, "top": 430, "right": 5265, "bottom": 3615, "left": 1310}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713868f.jpg"} -{"rects": [{"solidity": 0.9983997439590334, "top": 380, "right": 3025, "bottom": 2005, "left": 605}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705572f.jpg"} -{"rects": [{"solidity": 0.9983999029678767, "top": 1045, "right": 3575, "bottom": 5205, "left": 335}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717581f.jpg"} -{"rects": [{"solidity": 0.9984000392427779, "top": 380, "right": 5590, "bottom": 3640, "left": 860}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714206f.jpg"} -{"rects": [{"solidity": 0.9984000409589514, "top": 2295, "right": 3130, "bottom": 3920, "left": 710}, {"solidity": 0.9939598117528498, "top": 425, "right": 3140, "bottom": 2060, "left": 720}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/700862f.jpg"} -{"rects": [{"solidity": 0.998400217182637, "top": 840, "right": 1945, "bottom": 3245, "left": 325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724256f.jpg"} -{"rects": [{"solidity": 0.9984003203265769, "top": 395, "right": 5025, "bottom": 3595, "left": 1005}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718302f.jpg"} -{"rects": [{"solidity": 0.9984006168503985, "top": 1000, "right": 3550, "bottom": 5085, "left": 325}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722212f.jpg"} -{"rects": [{"solidity": 0.9984007238158348, "top": 435, "right": 3085, "bottom": 2060, "left": 655}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700883f.jpg"} -{"rects": [{"solidity": 0.9984007266221271, "top": 425, "right": 2710, "bottom": 3625, "left": 700}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733054f.jpg"} -{"rects": [{"solidity": 0.9984007928025961, "top": 455, "right": 2805, "bottom": 3650, "left": 780}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733069f.jpg"} -{"rects": [{"solidity": 0.9984008918046078, "top": 440, "right": 5825, "bottom": 4140, "left": 1270}], "shape": {"h": 4425, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/708836f.jpg"} -{"rects": [{"solidity": 0.998400962022848, "top": 735, "right": 2045, "bottom": 3140, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707719f.jpg"} -{"rects": [{"solidity": 0.9984009898634179, "top": 345, "right": 5065, "bottom": 3625, "left": 1040}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730505f.jpg"} -{"rects": [{"solidity": 0.9984011045729712, "top": 450, "right": 3115, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711945f.jpg"} -{"rects": [{"solidity": 0.9984012738444549, "top": 285, "right": 3185, "bottom": 1905, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702967f.jpg"} -{"rects": [{"solidity": 0.9984012815378455, "top": 425, "right": 3160, "bottom": 2040, "left": 730}, {"solidity": 0.995087432765666, "top": 2215, "right": 3155, "bottom": 3845, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722270f.jpg"} -{"rects": [{"solidity": 0.9984015665827145, "top": 450, "right": 5275, "bottom": 3655, "left": 1290}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705769f.jpg"} -{"rects": [{"solidity": 0.9984017842959908, "top": 2235, "right": 3115, "bottom": 3845, "left": 705}, {"solidity": 0.9956824964318153, "top": 415, "right": 3110, "bottom": 2030, "left": 700}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/728900f.jpg"} -{"rects": [{"solidity": 0.9984019359636539, "top": 515, "right": 4970, "bottom": 3650, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733793f.jpg"} -{"rects": [{"solidity": 0.998402286455066, "top": 430, "right": 5140, "bottom": 3715, "left": 1105}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725005f.jpg"} -{"rects": [{"solidity": 0.9984027804398103, "top": 2245, "right": 3205, "bottom": 3870, "left": 780}, {"solidity": 0.9986779320546926, "top": 360, "right": 3195, "bottom": 1980, "left": 775}, {"solidity": 0.9976369129606977, "top": 4155, "right": 3180, "bottom": 5770, "left": 750}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720875f.jpg"} -{"rects": [{"solidity": 0.9984029887747984, "top": 660, "right": 2965, "bottom": 2460, "left": 1750}, {"solidity": 0.9974316501503495, "top": 660, "right": 1580, "bottom": 2460, "left": 365}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715936f.jpg"} -{"rects": [{"solidity": 0.9984038239350648, "top": 985, "right": 2695, "bottom": 4000, "left": 275}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517295.jpg"} -{"rects": [{"solidity": 0.998403880099213, "top": 780, "right": 2045, "bottom": 3185, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712594f.jpg"} -{"rects": [{"solidity": 0.9984039428226552, "top": 475, "right": 3730, "bottom": 2710, "left": 925}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716376f.jpg"} -{"rects": [{"solidity": 0.9984041511182887, "top": 395, "right": 5130, "bottom": 3650, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732649f.jpg"} -{"rects": [{"solidity": 0.9984042638583422, "top": 370, "right": 3085, "bottom": 1990, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701687f.jpg"} -{"rects": [{"solidity": 0.9984047016079992, "top": 365, "right": 5675, "bottom": 3590, "left": 3650}, {"solidity": 0.9968008645051447, "top": 410, "right": 3095, "bottom": 3635, "left": 1065}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705733f.jpg"} -{"rects": [{"solidity": 0.998404964909228, "top": 315, "right": 3185, "bottom": 1930, "left": 765}, {"solidity": 0.9970778197089522, "top": 2190, "right": 3185, "bottom": 3795, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720895f.jpg"} -{"rects": [{"solidity": 0.9984054737665626, "top": 130, "right": 3155, "bottom": 1695, "left": 725}], "shape": {"h": 3440, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721461f.jpg"} -{"rects": [{"solidity": 0.9984056143074286, "top": 380, "right": 3125, "bottom": 1995, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700295f.jpg"} -{"rects": [{"solidity": 0.9984059272563988, "top": 2260, "right": 3710, "bottom": 4675, "left": 2085}, {"solidity": 0.9971604414806821, "top": 360, "right": 3215, "bottom": 1980, "left": 790}, {"solidity": 0.9962083010085337, "top": 2265, "right": 1905, "bottom": 4675, "left": 285}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732386f.jpg"} -{"rects": [{"solidity": 0.9984059516248468, "top": 1065, "right": 3485, "bottom": 5135, "left": 255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701789f.jpg"} -{"rects": [{"solidity": 0.9984061696658098, "top": 1280, "right": 5725, "bottom": 3025, "left": 3200}, {"solidity": 0.9966552119129438, "top": 1285, "right": 2915, "bottom": 3040, "left": 400}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722090f.jpg"} -{"rects": [{"solidity": 0.9984063873283647, "top": 455, "right": 3170, "bottom": 2070, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703662f.jpg"} -{"rects": [{"solidity": 0.9984065967535611, "top": 2205, "right": 3215, "bottom": 3825, "left": 795}, {"solidity": 0.99854795938167, "top": 340, "right": 3215, "bottom": 1950, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731096f.jpg"} -{"rects": [{"solidity": 0.9984073500954621, "top": 485, "right": 2985, "bottom": 2105, "left": 580}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703089f.jpg"} -{"rects": [{"solidity": 0.9984074873373125, "top": 445, "right": 3225, "bottom": 2120, "left": 845}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721519f.jpg"} -{"rects": [{"solidity": 0.9984075616789491, "top": 965, "right": 1990, "bottom": 3375, "left": 360}, {"solidity": 0.9960262898711836, "top": 1165, "right": 3625, "bottom": 3020, "left": 2215}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715038f.jpg"} -{"rects": [{"solidity": 0.998407846948693, "top": 790, "right": 5760, "bottom": 3220, "left": 4140}, {"solidity": 0.9934905396709847, "top": 800, "right": 3890, "bottom": 3205, "left": 2270}, {"solidity": 0.9972089407712437, "top": 825, "right": 2020, "bottom": 3205, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734484f.jpg"} -{"rects": [{"solidity": 0.998408037365331, "top": 405, "right": 5065, "bottom": 3625, "left": 1060}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708797f.jpg"} -{"rects": [{"solidity": 0.9984080891143131, "top": 675, "right": 2560, "bottom": 3720, "left": 540}, {"solidity": 0.9962491132942697, "top": 945, "right": 4235, "bottom": 3360, "left": 2625}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714441f.jpg"} -{"rects": [{"solidity": 0.998408195587454, "top": 495, "right": 4480, "bottom": 3670, "left": 535}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726355f.jpg"} -{"rects": [{"solidity": 0.9984091458014652, "top": 780, "right": 2025, "bottom": 3200, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722690f.jpg"} -{"rects": [{"solidity": 0.9984091847798028, "top": 845, "right": 5655, "bottom": 3245, "left": 4030}, {"solidity": 0.9937593504272395, "top": 835, "right": 1885, "bottom": 3260, "left": 285}, {"solidity": 0.9948208441503517, "top": 835, "right": 3765, "bottom": 3245, "left": 2155}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724170f.jpg"} -{"rects": [{"solidity": 0.9984096361944866, "top": 1125, "right": 3565, "bottom": 5120, "left": 355}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708415f.jpg"} -{"rects": [{"solidity": 0.9984102820377276, "top": 480, "right": 4940, "bottom": 3725, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730154f.jpg"} -{"rects": [{"solidity": 0.9984107680296784, "top": 910, "right": 3550, "bottom": 4925, "left": 290}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713527f.jpg"} -{"rects": [{"solidity": 0.9984107849187646, "top": 400, "right": 3250, "bottom": 2020, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734708f.jpg"} -{"rects": [{"solidity": 0.9984109681951409, "top": 635, "right": 2750, "bottom": 2060, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704828f.jpg"} -{"rects": [{"solidity": 0.9984114197331958, "top": 410, "right": 3175, "bottom": 2025, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705626f.jpg"} -{"rects": [{"solidity": 0.9984114938389114, "top": 2285, "right": 3160, "bottom": 3910, "left": 750}, {"solidity": 0.9992528757841584, "top": 420, "right": 3165, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727967f.jpg"} -{"rects": [{"solidity": 0.9984117124190892, "top": 360, "right": 5110, "bottom": 3640, "left": 1045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732656f.jpg"} -{"rects": [{"solidity": 0.9984118479042667, "top": 735, "right": 2600, "bottom": 2165, "left": 775}, {"solidity": 0.9962559996871854, "top": 2190, "right": 2595, "bottom": 3615, "left": 780}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704740f.jpg"} -{"rects": [{"solidity": 0.9984120137269198, "top": 440, "right": 5145, "bottom": 3670, "left": 1070}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732704f.jpg"} -{"rects": [{"solidity": 0.9984125402890205, "top": 400, "right": 3190, "bottom": 2015, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700152f.jpg"} -{"rects": [{"solidity": 0.9984126732302893, "top": 925, "right": 3645, "bottom": 5340, "left": 235}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708594f.jpg"} -{"rects": [{"solidity": 0.9984128409185643, "top": 840, "right": 3795, "bottom": 3255, "left": 2170}, {"solidity": 0.9969770990408781, "top": 835, "right": 5670, "bottom": 3270, "left": 4045}, {"solidity": 0.9971202164669501, "top": 850, "right": 1935, "bottom": 3265, "left": 315}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730862f.jpg"} -{"rects": [{"solidity": 0.998413476044786, "top": 365, "right": 3185, "bottom": 1995, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705600f.jpg"} -{"rects": [{"solidity": 0.9984138576718776, "top": 760, "right": 2020, "bottom": 3180, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703151f.jpg"} -{"rects": [{"solidity": 0.9984142086901364, "top": 785, "right": 3790, "bottom": 3210, "left": 2170}, {"solidity": 0.9963517621889427, "top": 805, "right": 5670, "bottom": 3235, "left": 4055}, {"solidity": 0.9986981836407247, "top": 785, "right": 1925, "bottom": 3185, "left": 315}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716587f.jpg"} -{"rects": [{"solidity": 0.9984142831972749, "top": 450, "right": 3185, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734276f.jpg"} -{"rects": [{"solidity": 0.9984144266895378, "top": 570, "right": 2530, "bottom": 3610, "left": 490}, {"solidity": 0.9974590571368773, "top": 895, "right": 4355, "bottom": 3295, "left": 2750}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714709f.jpg"} -{"rects": [{"solidity": 0.99841477507909, "top": 430, "right": 5380, "bottom": 3650, "left": 1390}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718419f.jpg"} -{"rects": [{"solidity": 0.998414977260464, "top": 465, "right": 5155, "bottom": 3695, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701326f.jpg"} -{"rects": [{"solidity": 0.9984153837097199, "top": 365, "right": 5230, "bottom": 3610, "left": 1220}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724188f.jpg"} -{"rects": [{"solidity": 0.9984155791778296, "top": 715, "right": 2045, "bottom": 3130, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704073f.jpg"} -{"rects": [{"solidity": 0.9984168817145262, "top": 330, "right": 4845, "bottom": 3480, "left": 930}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731802f.jpg"} -{"rects": [{"solidity": 0.9984169537397867, "top": 1510, "right": 4010, "bottom": 6090, "left": 375}], "shape": {"h": 6915, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/701210f.jpg"} -{"rects": [{"solidity": 0.9984170029454126, "top": 300, "right": 3140, "bottom": 1920, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706176f.jpg"} -{"rects": [{"solidity": 0.9984171068051565, "top": 2240, "right": 3210, "bottom": 3860, "left": 790}, {"solidity": 0.9984426131920959, "top": 430, "right": 3210, "bottom": 2045, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730749f.jpg"} -{"rects": [{"solidity": 0.9984171559867245, "top": 420, "right": 3130, "bottom": 2050, "left": 710}, {"solidity": 0.9980015132311956, "top": 2260, "right": 3130, "bottom": 3890, "left": 710}, {"solidity": 0.9997970105780043, "top": 4135, "right": 3125, "bottom": 5750, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706066f.jpg"} -{"rects": [{"solidity": 0.9984177183153914, "top": 555, "right": 5225, "bottom": 3600, "left": 1140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733558f.jpg"} -{"rects": [{"solidity": 0.9984177876683914, "top": 310, "right": 3180, "bottom": 1930, "left": 765}, {"solidity": 0.9976383211431558, "top": 2135, "right": 3180, "bottom": 3755, "left": 770}, {"solidity": 0.9962460136086041, "top": 3985, "right": 3145, "bottom": 5615, "left": 730}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/706491f.jpg"} -{"rects": [{"solidity": 0.9984177897679817, "top": 480, "right": 4905, "bottom": 3710, "left": 935}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730023f.jpg"} -{"rects": [{"solidity": 0.9984178880444441, "top": 335, "right": 3965, "bottom": 2755, "left": 955}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516889.jpg"} -{"rects": [{"solidity": 0.9984185658429626, "top": 375, "right": 3205, "bottom": 1990, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700188f.jpg"} -{"rects": [{"solidity": 0.9984186041999156, "top": 2115, "right": 2700, "bottom": 3540, "left": 875}, {"solidity": 0.99761491973005, "top": 625, "right": 2700, "bottom": 2035, "left": 875}, {"solidity": 0.9949548488417747, "top": 615, "right": 5225, "bottom": 2045, "left": 3420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706788f.jpg"} -{"rects": [{"solidity": 0.9984186945444962, "top": 885, "right": 2015, "bottom": 3295, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701952f.jpg"} -{"rects": [{"solidity": 0.9984188321101057, "top": 335, "right": 5075, "bottom": 3595, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700517f.jpg"} -{"rects": [{"solidity": 0.9984188526860183, "top": 430, "right": 3230, "bottom": 2045, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710863f.jpg"} -{"rects": [{"solidity": 0.9984198355601234, "top": 325, "right": 3205, "bottom": 1945, "left": 785}, {"solidity": 0.9985440442713618, "top": 2195, "right": 3205, "bottom": 3820, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702957f.jpg"} -{"rects": [{"solidity": 0.9984203380669571, "top": 455, "right": 3130, "bottom": 2075, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703755f.jpg"} -{"rects": [{"solidity": 0.9984204346217568, "top": 405, "right": 3255, "bottom": 2025, "left": 840}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725359f.jpg"} -{"rects": [{"solidity": 0.9984206395602337, "top": 440, "right": 3185, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724965f.jpg"} -{"rects": [{"solidity": 0.9984206595018693, "top": 1250, "right": 3680, "bottom": 5275, "left": 430}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/733491f.jpg"} -{"rects": [{"solidity": 0.9984207941290699, "top": 1055, "right": 3590, "bottom": 5040, "left": 400}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/717164f.jpg"} -{"rects": [{"solidity": 0.9984211832850641, "top": 425, "right": 3175, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711980f.jpg"} -{"rects": [{"solidity": 0.9984213639929524, "top": 795, "right": 2060, "bottom": 3210, "left": 440}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733610f.jpg"} -{"rects": [{"solidity": 0.9984214101191563, "top": 1145, "right": 3625, "bottom": 5205, "left": 335}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716990f.jpg"} -{"rects": [{"solidity": 0.9984215470468611, "top": 1125, "right": 3245, "bottom": 5455, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726695f.jpg"} -{"rects": [{"solidity": 0.9984217872927352, "top": 815, "right": 2015, "bottom": 3210, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728934f.jpg"} -{"rects": [{"solidity": 0.9984222202902471, "top": 415, "right": 3170, "bottom": 2030, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732307f.jpg"} -{"rects": [{"solidity": 0.9984226567185761, "top": 1280, "right": 3485, "bottom": 5205, "left": 345}], "shape": {"h": 6140, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/717296f.jpg"} -{"rects": [{"solidity": 0.99842277906973, "top": 820, "right": 3915, "bottom": 3235, "left": 2300}, {"solidity": 0.9929149045466734, "top": 815, "right": 5770, "bottom": 3230, "left": 4155}, {"solidity": 0.9952402398996854, "top": 805, "right": 2050, "bottom": 3220, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723267f.jpg"} -{"rects": [{"solidity": 0.9984233837089899, "top": 390, "right": 5230, "bottom": 3680, "left": 1175}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727700f.jpg"} -{"rects": [{"solidity": 0.9984234279011511, "top": 940, "right": 4610, "bottom": 2930, "left": 1435}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700799f.jpg"} -{"rects": [{"solidity": 0.9984237450399543, "top": 395, "right": 3120, "bottom": 2005, "left": 695}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729092f.jpg"} -{"rects": [{"solidity": 0.9984248862002696, "top": 885, "right": 2140, "bottom": 3270, "left": 375}, {"solidity": 0.9964263036812263, "top": 880, "right": 4025, "bottom": 3315, "left": 2395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709468f.jpg"} -{"rects": [{"solidity": 0.9984249189369275, "top": 1080, "right": 5545, "bottom": 2680, "left": 785}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730467f.jpg"} -{"rects": [{"solidity": 0.9984252778921366, "top": 470, "right": 5130, "bottom": 3775, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719536f.jpg"} -{"rects": [{"solidity": 0.9984253797803275, "top": 835, "right": 2050, "bottom": 3250, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711005f.jpg"} -{"rects": [{"solidity": 0.9984264450934762, "top": 425, "right": 5110, "bottom": 3645, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708588f.jpg"} -{"rects": [{"solidity": 0.9984269341046215, "top": 700, "right": 4965, "bottom": 3320, "left": 1140}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701586f.jpg"} -{"rects": [{"solidity": 0.9984274495621399, "top": 2265, "right": 3225, "bottom": 3885, "left": 820}, {"solidity": 0.9958576245395102, "top": 4120, "right": 3220, "bottom": 5740, "left": 820}, {"solidity": 0.9963969722455845, "top": 425, "right": 3215, "bottom": 2005, "left": 835}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/731705f.jpg"} -{"rects": [{"solidity": 0.998427632343635, "top": 390, "right": 3130, "bottom": 2000, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707180f.jpg"} -{"rects": [{"solidity": 0.9984281704611444, "top": 415, "right": 5070, "bottom": 3740, "left": 1000}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722609f.jpg"} -{"rects": [{"solidity": 0.9984282065652678, "top": 445, "right": 5105, "bottom": 3665, "left": 1085}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731061f.jpg"} -{"rects": [{"solidity": 0.9984282099831878, "top": 2315, "right": 3190, "bottom": 3895, "left": 790}, {"solidity": 0.9982824079446923, "top": 460, "right": 3190, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724901f.jpg"} -{"rects": [{"solidity": 0.9984285334792781, "top": 655, "right": 2060, "bottom": 3075, "left": 435}, {"solidity": 0.9987127331328735, "top": 690, "right": 3885, "bottom": 3055, "left": 2260}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702490f.jpg"} -{"rects": [{"solidity": 0.9984286192996782, "top": 780, "right": 3890, "bottom": 3180, "left": 2280}, {"solidity": 0.9956116166543226, "top": 780, "right": 2030, "bottom": 3180, "left": 420}, {"solidity": 0.9968331964759496, "top": 800, "right": 5725, "bottom": 3200, "left": 4120}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716635f.jpg"} -{"rects": [{"solidity": 0.9984288637625891, "top": 1275, "right": 3495, "bottom": 5260, "left": 305}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/709049f.jpg"} -{"rects": [{"solidity": 0.9984292110717995, "top": 685, "right": 3300, "bottom": 2745, "left": 465}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716858f.jpg"} -{"rects": [{"solidity": 0.9984294500978734, "top": 315, "right": 5110, "bottom": 3545, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703186f.jpg"} -{"rects": [{"solidity": 0.9984298719293475, "top": 800, "right": 2030, "bottom": 3215, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719912f.jpg"} -{"rects": [{"solidity": 0.9984300444249438, "top": 505, "right": 3170, "bottom": 2070, "left": 825}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724046f.jpg"} -{"rects": [{"solidity": 0.9984301913762627, "top": 770, "right": 2030, "bottom": 3190, "left": 400}, {"solidity": 0.9968917118752051, "top": 780, "right": 3885, "bottom": 3200, "left": 2260}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709360f.jpg"} -{"rects": [{"solidity": 0.9984303404709748, "top": 940, "right": 3500, "bottom": 5005, "left": 285}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715044f.jpg"} -{"rects": [{"solidity": 0.9984308054429513, "top": 395, "right": 5115, "bottom": 3640, "left": 1090}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710508f.jpg"} -{"rects": [{"solidity": 0.9984308715378442, "top": 445, "right": 3185, "bottom": 2045, "left": 785}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/730214f.jpg"} -{"rects": [{"solidity": 0.9984317603982068, "top": 405, "right": 5045, "bottom": 3600, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732610f.jpg"} -{"rects": [{"solidity": 0.9984318963890059, "top": 910, "right": 3120, "bottom": 2815, "left": 390}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702570f.jpg"} -{"rects": [{"solidity": 0.9984336124800447, "top": 1060, "right": 3605, "bottom": 5120, "left": 310}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/721257f.jpg"} -{"rects": [{"solidity": 0.9984338353141277, "top": 375, "right": 5695, "bottom": 3620, "left": 3680}, {"solidity": 0.9980788722189893, "top": 350, "right": 3130, "bottom": 3590, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707035f.jpg"} -{"rects": [{"solidity": 0.9984339889897189, "top": 680, "right": 5005, "bottom": 3430, "left": 1310}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710007f.jpg"} -{"rects": [{"solidity": 0.998434588147596, "top": 795, "right": 2050, "bottom": 3215, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719759f.jpg"} -{"rects": [{"solidity": 0.9984346836163552, "top": 790, "right": 2685, "bottom": 3810, "left": 225}], "shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509771.jpg"} -{"rects": [{"solidity": 0.9984347650464521, "top": 390, "right": 3190, "bottom": 1965, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725338f.jpg"} -{"rects": [{"solidity": 0.9984352890813966, "top": 565, "right": 2750, "bottom": 3620, "left": 795}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715551f.jpg"} -{"rects": [{"solidity": 0.9984353939623817, "top": 1065, "right": 3480, "bottom": 5110, "left": 275}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/702413f.jpg"} -{"rects": [{"solidity": 0.9984355317160388, "top": 425, "right": 3105, "bottom": 1990, "left": 730}, {"solidity": 0.9986572070586716, "top": 2285, "right": 3120, "bottom": 3845, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729078f.jpg"} -{"rects": [{"solidity": 0.9984360928679684, "top": 480, "right": 2945, "bottom": 2025, "left": 1090}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712163f.jpg"} -{"rects": [{"solidity": 0.9984363927157356, "top": 440, "right": 3110, "bottom": 2045, "left": 700}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724515f.jpg"} -{"rects": [{"solidity": 0.9984365268014898, "top": 365, "right": 3170, "bottom": 1995, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701300f.jpg"} -{"rects": [{"solidity": 0.998436724646236, "top": 805, "right": 2040, "bottom": 3215, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705695f.jpg"} -{"rects": [{"solidity": 0.9984367511809945, "top": 440, "right": 5085, "bottom": 3720, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714739f.jpg"} -{"rects": [{"solidity": 0.9984367759275851, "top": 540, "right": 2740, "bottom": 3585, "left": 735}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715544f.jpg"} -{"rects": [{"solidity": 0.9984370607595993, "top": 590, "right": 4865, "bottom": 3280, "left": 1395}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716846f.jpg"} -{"rects": [{"solidity": 0.9984372253559387, "top": 385, "right": 3175, "bottom": 2005, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727316f.jpg"} -{"rects": [{"solidity": 0.9984374491357141, "top": 495, "right": 3180, "bottom": 2100, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721025f.jpg"} -{"rects": [{"solidity": 0.9984376576582441, "top": 430, "right": 3200, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715489f.jpg"} -{"rects": [{"solidity": 0.9984379220458014, "top": 425, "right": 3190, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715572f.jpg"} -{"rects": [{"solidity": 0.9984386489454402, "top": 820, "right": 2050, "bottom": 3230, "left": 440}, {"solidity": 0.9958066051635424, "top": 820, "right": 3900, "bottom": 3235, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708111f.jpg"} -{"rects": [{"solidity": 0.9984387326066084, "top": 825, "right": 2690, "bottom": 3965, "left": 260}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508893.jpg"} -{"rects": [{"solidity": 0.9984397406473458, "top": 870, "right": 2050, "bottom": 3275, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729652f.jpg"} -{"rects": [{"solidity": 0.9984399375975039, "top": 470, "right": 3160, "bottom": 2085, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701304f.jpg"} -{"rects": [{"solidity": 0.9984399424944598, "top": 920, "right": 2010, "bottom": 3365, "left": 370}, {"solidity": 0.9962852897473997, "top": 910, "right": 3890, "bottom": 3365, "left": 2240}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712767f.jpg"} -{"rects": [{"solidity": 0.9984405180586068, "top": 405, "right": 3185, "bottom": 2015, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706694f.jpg"} -{"rects": [{"solidity": 0.9984410157505625, "top": 670, "right": 4975, "bottom": 3320, "left": 1130}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701978f.jpg"} -{"rects": [{"solidity": 0.9984411727979164, "top": 805, "right": 4810, "bottom": 3445, "left": 1330}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700591f.jpg"} -{"rects": [{"solidity": 0.998441426198933, "top": 1190, "right": 2695, "bottom": 4195, "left": 280}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517245.jpg"} -{"rects": [{"solidity": 0.9984415911867958, "top": 1075, "right": 3495, "bottom": 5075, "left": 260}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711237f.jpg"} -{"rects": [{"solidity": 0.9984417146515664, "top": 420, "right": 5525, "bottom": 3605, "left": 1565}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724939f.jpg"} -{"rects": [{"solidity": 0.9984420580221189, "top": 3975, "right": 3125, "bottom": 5600, "left": 710}, {"solidity": 0.9962286198192757, "top": 320, "right": 3140, "bottom": 1915, "left": 735}, {"solidity": 0.9951054735971322, "top": 2155, "right": 3135, "bottom": 3750, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721566f.jpg"} -{"rects": [{"solidity": 0.9984425119362179, "top": 360, "right": 5155, "bottom": 3675, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723039f.jpg"} -{"rects": [{"solidity": 0.9984428346212993, "top": 340, "right": 3140, "bottom": 1950, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700852f.jpg"} -{"rects": [{"solidity": 0.998443219864254, "top": 420, "right": 3190, "bottom": 2025, "left": 785}, {"solidity": 0.9960800119614892, "top": 2260, "right": 3225, "bottom": 3870, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715541f.jpg"} -{"rects": [{"solidity": 0.9984432575397691, "top": 445, "right": 3205, "bottom": 2065, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705139f.jpg"} -{"rects": [{"solidity": 0.9984432686807758, "top": 380, "right": 3220, "bottom": 1990, "left": 815}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/707726f.jpg"} -{"rects": [{"solidity": 0.9984433000866244, "top": 1050, "right": 3505, "bottom": 5030, "left": 275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713328f.jpg"} -{"rects": [{"solidity": 0.9984433702552145, "top": 455, "right": 5085, "bottom": 3570, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711483f.jpg"} -{"rects": [{"solidity": 0.9984433877723519, "top": 505, "right": 4935, "bottom": 3515, "left": 1160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730106f.jpg"} -{"rects": [{"solidity": 0.9984434530593637, "top": 465, "right": 3165, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709244f.jpg"} -{"rects": [{"solidity": 0.9984435286584464, "top": 2285, "right": 3175, "bottom": 3885, "left": 780}, {"solidity": 0.9967570163234564, "top": 425, "right": 3175, "bottom": 2025, "left": 780}, {"solidity": 0.997863233749678, "top": 4135, "right": 3180, "bottom": 5730, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/733354f.jpg"} -{"rects": [{"solidity": 0.9984436747585407, "top": 450, "right": 3620, "bottom": 2275, "left": 910}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706414f.jpg"} -{"rects": [{"solidity": 0.9984446093775211, "top": 485, "right": 3165, "bottom": 2090, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702050f.jpg"} -{"rects": [{"solidity": 0.9984449737848763, "top": 370, "right": 3265, "bottom": 1995, "left": 840}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705189f.jpg"} -{"rects": [{"solidity": 0.9984452387440094, "top": 835, "right": 3935, "bottom": 3250, "left": 2310}, {"solidity": 0.9975365118417217, "top": 840, "right": 2060, "bottom": 3255, "left": 430}, {"solidity": 0.9958483139202079, "top": 850, "right": 5790, "bottom": 3265, "left": 4165}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720210f.jpg"} -{"rects": [{"solidity": 0.9984455907574957, "top": 430, "right": 3180, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732410f.jpg"} -{"rects": [{"solidity": 0.9984456438341668, "top": 2340, "right": 3165, "bottom": 3935, "left": 780}, {"solidity": 0.996501590636552, "top": 465, "right": 3175, "bottom": 2060, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711454f.jpg"} -{"rects": [{"solidity": 0.9984456927631197, "top": 345, "right": 3350, "bottom": 1965, "left": 940}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703858f.jpg"} -{"rects": [{"solidity": 0.9984457629935192, "top": 770, "right": 2040, "bottom": 3175, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721911f.jpg"} -{"rects": [{"solidity": 0.9984462692546978, "top": 745, "right": 3875, "bottom": 3145, "left": 2265}, {"solidity": 0.9947165979138527, "top": 765, "right": 2065, "bottom": 3145, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720643f.jpg"} -{"rects": [{"solidity": 0.9984464434416545, "top": 415, "right": 3110, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700805f.jpg"} -{"rects": [{"solidity": 0.9984467565236226, "top": 480, "right": 4965, "bottom": 3770, "left": 945}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708056f.jpg"} -{"rects": [{"solidity": 0.9984467823835916, "top": 3255, "right": 3535, "bottom": 5620, "left": 335}, {"solidity": 0.9961230146216786, "top": 635, "right": 3545, "bottom": 3030, "left": 360}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733584f.jpg"} -{"rects": [{"solidity": 0.9984470320899123, "top": 445, "right": 5050, "bottom": 3680, "left": 970}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717416f.jpg"} -{"rects": [{"solidity": 0.9984475025252443, "top": 295, "right": 3235, "bottom": 1910, "left": 835}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719500f.jpg"} -{"rects": [{"solidity": 0.9984476029732514, "top": 650, "right": 2750, "bottom": 2070, "left": 915}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727353f.jpg"} -{"rects": [{"solidity": 0.9984477058945653, "top": 460, "right": 3015, "bottom": 2085, "left": 590}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703850f.jpg"} -{"rects": [{"solidity": 0.9984477520974393, "top": 405, "right": 3110, "bottom": 2030, "left": 670}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700030f.jpg"} -{"rects": [{"solidity": 0.9984478589219051, "top": 430, "right": 5150, "bottom": 3655, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715056f.jpg"} -{"rects": [{"solidity": 0.9984480296655313, "top": 660, "right": 2010, "bottom": 3095, "left": 385}, {"solidity": 0.9969834806628078, "top": 665, "right": 3845, "bottom": 3105, "left": 2220}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727015f.jpg"} -{"rects": [{"solidity": 0.99844855292387, "top": 530, "right": 5110, "bottom": 3755, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722650f.jpg"} -{"rects": [{"solidity": 0.9984491272939993, "top": 1000, "right": 3510, "bottom": 5000, "left": 270}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723021f.jpg"} -{"rects": [{"solidity": 0.9984494869387888, "top": 790, "right": 2060, "bottom": 3205, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709313f.jpg"} -{"rects": [{"solidity": 0.9984497876532046, "top": 415, "right": 3145, "bottom": 2030, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729100f.jpg"} -{"rects": [{"solidity": 0.9984501600229345, "top": 440, "right": 5080, "bottom": 3650, "left": 1080}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731773f.jpg"} -{"rects": [{"solidity": 0.9984502731393592, "top": 385, "right": 3065, "bottom": 2005, "left": 660}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702271f.jpg"} -{"rects": [{"solidity": 0.9984502936727033, "top": 440, "right": 3315, "bottom": 2015, "left": 935}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727677f.jpg"} -{"rects": [{"solidity": 0.9984504431870136, "top": 1010, "right": 3470, "bottom": 5000, "left": 265}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721865f.jpg"} -{"rects": [{"solidity": 0.9984505783766814, "top": 450, "right": 5225, "bottom": 3680, "left": 1195}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728857f.jpg"} -{"rects": [{"solidity": 0.998450882183821, "top": 1165, "right": 3655, "bottom": 5205, "left": 365}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704707f.jpg"} -{"rects": [{"solidity": 0.998450954485398, "top": 795, "right": 2055, "bottom": 3205, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704691f.jpg"} -{"rects": [{"solidity": 0.9984510492618266, "top": 1085, "right": 3440, "bottom": 5045, "left": 265}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714851f.jpg"} -{"rects": [{"solidity": 0.9984510909568034, "top": 720, "right": 2300, "bottom": 3140, "left": 675}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702379f.jpg"} -{"rects": [{"solidity": 0.9984510969996304, "top": 410, "right": 3055, "bottom": 1985, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728749f.jpg"} -{"rects": [{"solidity": 0.9984513336166613, "top": 390, "right": 5030, "bottom": 3655, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719660f.jpg"} -{"rects": [{"solidity": 0.9984513794313569, "top": 2300, "right": 3075, "bottom": 3915, "left": 655}, {"solidity": 0.9972079871625644, "top": 430, "right": 3085, "bottom": 2045, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707533f.jpg"} -{"rects": [{"solidity": 0.99845157176851, "top": 905, "right": 3545, "bottom": 4945, "left": 265}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713720f.jpg"} -{"rects": [{"solidity": 0.9984525936860643, "top": 840, "right": 2035, "bottom": 3260, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718975f.jpg"} -{"rects": [{"solidity": 0.9984525986232754, "top": 275, "right": 3755, "bottom": 2725, "left": 755}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507500.jpg"} -{"rects": [{"solidity": 0.9984526099636347, "top": 720, "right": 2090, "bottom": 3130, "left": 480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722118f.jpg"} -{"rects": [{"solidity": 0.9984528999197313, "top": 1160, "right": 3630, "bottom": 5250, "left": 365}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/718623f.jpg"} -{"rects": [{"solidity": 0.9984531774594817, "top": 1245, "right": 3565, "bottom": 5270, "left": 335}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718427f.jpg"} -{"rects": [{"solidity": 0.9984533543493251, "top": 790, "right": 3755, "bottom": 3170, "left": 2145}, {"solidity": 0.995735408767733, "top": 775, "right": 1895, "bottom": 3165, "left": 310}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712230f.jpg"} -{"rects": [{"solidity": 0.9984534910166022, "top": 310, "right": 3530, "bottom": 2140, "left": 810}, {"solidity": 0.9975480707188025, "top": 4495, "right": 3545, "bottom": 6335, "left": 835}, {"solidity": 0.9968822472393297, "top": 2390, "right": 3525, "bottom": 4225, "left": 835}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710266f.jpg"} -{"rects": [{"solidity": 0.9984535892802847, "top": 555, "right": 5010, "bottom": 3800, "left": 990}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701815f.jpg"} -{"rects": [{"solidity": 0.9984540022234575, "top": 1680, "right": 2340, "bottom": 2885, "left": 535}, {"solidity": 0.9975357461760579, "top": 350, "right": 2345, "bottom": 1555, "left": 540}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716516f.jpg"} -{"rects": [{"solidity": 0.9984541180311288, "top": 2230, "right": 3175, "bottom": 3855, "left": 755}, {"solidity": 0.9963247813823192, "top": 355, "right": 3165, "bottom": 1985, "left": 760}, {"solidity": 0.9937294365441004, "top": 4130, "right": 3135, "bottom": 5695, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707928f.jpg"} -{"rects": [{"solidity": 0.9984542068361086, "top": 1285, "right": 3495, "bottom": 5075, "left": 460}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/720990f.jpg"} -{"rects": [{"solidity": 0.9984542307382659, "top": 490, "right": 3020, "bottom": 2105, "left": 600}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703239f.jpg"} -{"rects": [{"solidity": 0.9984543299779144, "top": 770, "right": 1980, "bottom": 3185, "left": 370}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723958f.jpg"} -{"rects": [{"solidity": 0.9984545274420448, "top": 740, "right": 2100, "bottom": 3135, "left": 510}, {"solidity": 0.9957176355254094, "top": 775, "right": 4045, "bottom": 3175, "left": 2435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711501f.jpg"} -{"rects": [{"solidity": 0.9984548333332098, "top": 510, "right": 5740, "bottom": 4225, "left": 1180}], "shape": {"h": 4435, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/702205f.jpg"} -{"rects": [{"solidity": 0.998455468051053, "top": 480, "right": 5030, "bottom": 3770, "left": 1005}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700444f.jpg"} -{"rects": [{"solidity": 0.9984561407553862, "top": 375, "right": 5060, "bottom": 3640, "left": 1050}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732730f.jpg"} -{"rects": [{"solidity": 0.9984564714579226, "top": 320, "right": 5115, "bottom": 3570, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700897f.jpg"} -{"rects": [{"solidity": 0.9984567753589217, "top": 425, "right": 4915, "bottom": 3640, "left": 835}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726127f.jpg"} -{"rects": [{"solidity": 0.9984569664564905, "top": 405, "right": 5020, "bottom": 3690, "left": 970}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721798f.jpg"} -{"rects": [{"solidity": 0.9984572744300669, "top": 770, "right": 2020, "bottom": 3165, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712091f.jpg"} -{"rects": [{"solidity": 0.998457836667623, "top": 420, "right": 3180, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703035f.jpg"} -{"rects": [{"solidity": 0.9984583460720349, "top": 785, "right": 2025, "bottom": 3195, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721802f.jpg"} -{"rects": [{"solidity": 0.9984583944631747, "top": 445, "right": 3175, "bottom": 2050, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719453f.jpg"} -{"rects": [{"solidity": 0.9984585132557978, "top": 360, "right": 3165, "bottom": 1945, "left": 755}, {"solidity": 0.9943842957670026, "top": 2185, "right": 3155, "bottom": 3780, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712077f.jpg"} -{"rects": [{"solidity": 0.9984585181414964, "top": 1130, "right": 5500, "bottom": 2745, "left": 685}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734749f.jpg"} -{"rects": [{"solidity": 0.9984588636385712, "top": 2190, "right": 3175, "bottom": 3795, "left": 755}, {"solidity": 0.998568370047192, "top": 405, "right": 3175, "bottom": 2010, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704638f.jpg"} -{"rects": [{"solidity": 0.9984591589858959, "top": 1075, "right": 3495, "bottom": 5090, "left": 265}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722750f.jpg"} -{"rects": [{"solidity": 0.99845919248573, "top": 480, "right": 5150, "bottom": 3730, "left": 1025}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708179f.jpg"} -{"rects": [{"solidity": 0.9984595366155036, "top": 425, "right": 3235, "bottom": 2030, "left": 840}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715000f.jpg"} -{"rects": [{"solidity": 0.9984596327020736, "top": 485, "right": 5090, "bottom": 3765, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710957f.jpg"} -{"rects": [{"solidity": 0.9984601391381303, "top": 430, "right": 5020, "bottom": 3635, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723634f.jpg"} -{"rects": [{"solidity": 0.9984608863561437, "top": 490, "right": 5015, "bottom": 3735, "left": 910}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705917f.jpg"} -{"rects": [{"solidity": 0.9984609614464376, "top": 395, "right": 3195, "bottom": 2000, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701458f.jpg"} -{"rects": [{"solidity": 0.998461258621622, "top": 570, "right": 2850, "bottom": 1985, "left": 1040}, {"solidity": 0.9953127941890539, "top": 4130, "right": 2860, "bottom": 5540, "left": 1040}, {"solidity": 0.9952545099976069, "top": 2360, "right": 2830, "bottom": 3755, "left": 1045}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704263f.jpg"} -{"rects": [{"solidity": 0.9984617686083721, "top": 795, "right": 1985, "bottom": 3205, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705422f.jpg"} -{"rects": [{"solidity": 0.998461953676516, "top": 825, "right": 1985, "bottom": 3235, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728928f.jpg"} -{"rects": [{"solidity": 0.9984619616865903, "top": 1270, "right": 3580, "bottom": 5280, "left": 325}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721920f.jpg"} -{"rects": [{"solidity": 0.9984626300851467, "top": 750, "right": 2665, "bottom": 2170, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728245f.jpg"} -{"rects": [{"solidity": 0.9984626362221068, "top": 785, "right": 3905, "bottom": 3190, "left": 2290}, {"solidity": 0.9972805540141034, "top": 780, "right": 2015, "bottom": 3190, "left": 405}, {"solidity": 0.9727557132301694, "top": 785, "right": 5750, "bottom": 2175, "left": 3985}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705478f.jpg"} -{"rects": [{"solidity": 0.9984627587713037, "top": 1000, "right": 3530, "bottom": 5105, "left": 290}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717197f.jpg"} -{"rects": [{"solidity": 0.9984629769143841, "top": 470, "right": 3130, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714176f.jpg"} -{"rects": [{"solidity": 0.9984631014935418, "top": 455, "right": 3130, "bottom": 2065, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719608f.jpg"} -{"rects": [{"solidity": 0.9984633052555733, "top": 475, "right": 5075, "bottom": 3705, "left": 1050}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700505f.jpg"} -{"rects": [{"solidity": 0.9984633557181808, "top": 450, "right": 5060, "bottom": 3690, "left": 1050}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724908f.jpg"} -{"rects": [{"solidity": 0.9984636870143438, "top": 410, "right": 5265, "bottom": 3620, "left": 1260}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718972f.jpg"} -{"rects": [{"solidity": 0.9984638611805194, "top": 435, "right": 3090, "bottom": 2025, "left": 690}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/728370f.jpg"} -{"rects": [{"solidity": 0.9984641590840106, "top": 300, "right": 5165, "bottom": 3570, "left": 1150}], "shape": {"h": 3875, "w": 6095}, "file": "/usr/local/google/home/danvk/milstein/732748f.jpg"} -{"rects": [{"solidity": 0.9984641871930819, "top": 1360, "right": 3105, "bottom": 5245, "left": 460}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/718172f.jpg"} -{"rects": [{"solidity": 0.9984642816982859, "top": 435, "right": 3210, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706738f.jpg"} -{"rects": [{"solidity": 0.9984643768353391, "top": 1030, "right": 3465, "bottom": 5030, "left": 305}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722454f.jpg"} -{"rects": [{"solidity": 0.9984650380644489, "top": 395, "right": 3155, "bottom": 2000, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/729292f.jpg"} -{"rects": [{"solidity": 0.9984650721890039, "top": 405, "right": 4060, "bottom": 2685, "left": 2545}, {"solidity": 0.9963579192634401, "top": 405, "right": 1990, "bottom": 2685, "left": 515}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716472f.jpg"} -{"rects": [{"solidity": 0.9984652533555454, "top": 525, "right": 5100, "bottom": 3740, "left": 1095}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709497f.jpg"} -{"rects": [{"solidity": 0.9984656058910353, "top": 390, "right": 3160, "bottom": 2000, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730329f.jpg"} -{"rects": [{"solidity": 0.9984657633149827, "top": 745, "right": 2045, "bottom": 3160, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710886f.jpg"} -{"rects": [{"solidity": 0.9984658465135958, "top": 2285, "right": 3115, "bottom": 3910, "left": 715}, {"solidity": 0.9968225059578013, "top": 395, "right": 3125, "bottom": 2020, "left": 720}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719421f.jpg"} -{"rects": [{"solidity": 0.9984659905732647, "top": 490, "right": 5085, "bottom": 3770, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700870f.jpg"} -{"rects": [{"solidity": 0.9984660437874774, "top": 405, "right": 3195, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725835f.jpg"} -{"rects": [{"solidity": 0.9984661981128412, "top": 3145, "right": 3135, "bottom": 4770, "left": 740}, {"solidity": 0.9963083780117563, "top": 395, "right": 2750, "bottom": 2810, "left": 1130}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715400f.jpg"} -{"rects": [{"solidity": 0.9984666479182569, "top": 485, "right": 3155, "bottom": 2065, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701545f.jpg"} -{"rects": [{"solidity": 0.9984669013920302, "top": 1035, "right": 3355, "bottom": 2240, "left": 1560}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509685.jpg"} -{"rects": [{"solidity": 0.9984670364633214, "top": 770, "right": 3855, "bottom": 3180, "left": 2230}, {"solidity": 0.9979046911456093, "top": 770, "right": 1970, "bottom": 3170, "left": 360}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718762f.jpg"} -{"rects": [{"solidity": 0.9984670409039513, "top": 455, "right": 5135, "bottom": 3685, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732678f.jpg"} -{"rects": [{"solidity": 0.9984673805874715, "top": 755, "right": 3905, "bottom": 3150, "left": 2290}, {"solidity": 0.9985935899025629, "top": 750, "right": 2060, "bottom": 3145, "left": 450}, {"solidity": 0.9962740321651212, "top": 760, "right": 5720, "bottom": 3165, "left": 4115}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716781f.jpg"} -{"rects": [{"solidity": 0.9984675556368793, "top": 440, "right": 3195, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702577f.jpg"} -{"rects": [{"solidity": 0.998467875565626, "top": 770, "right": 3255, "bottom": 2775, "left": 445}, {"solidity": 0.9964961988323633, "top": 3255, "right": 3250, "bottom": 5270, "left": 425}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728709f.jpg"} -{"rects": [{"solidity": 0.9984682639194822, "top": 595, "right": 2695, "bottom": 3615, "left": 240}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509395.jpg"} -{"rects": [{"solidity": 0.9984684380649547, "top": 405, "right": 5185, "bottom": 3660, "left": 1150}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732609f.jpg"} -{"rects": [{"solidity": 0.9984685656705847, "top": 450, "right": 5125, "bottom": 3730, "left": 1100}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725006f.jpg"} -{"rects": [{"solidity": 0.9984687313306542, "top": 610, "right": 2505, "bottom": 3655, "left": 480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715509f.jpg"} -{"rects": [{"solidity": 0.9984689196367448, "top": 620, "right": 2465, "bottom": 2700, "left": 335}, {"solidity": 0.9328965397653283, "top": 3025, "right": 2100, "bottom": 5440, "left": 315}, {"solidity": 0.9717247772375566, "top": 3055, "right": 4160, "bottom": 5305, "left": 2420}], "shape": {"h": 5985, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465577.jpg"} -{"rects": [{"solidity": 0.9984692832930884, "top": 4040, "right": 3180, "bottom": 5650, "left": 775}, {"solidity": 0.9915664973966704, "top": 535, "right": 3110, "bottom": 2060, "left": 1165}, {"solidity": 0.99660811793452, "top": 2315, "right": 3120, "bottom": 3695, "left": 1100}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704497f.jpg"} -{"rects": [{"solidity": 0.9984693944012402, "top": 835, "right": 2055, "bottom": 3240, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733828f.jpg"} -{"rects": [{"solidity": 0.9984696683020592, "top": 330, "right": 5085, "bottom": 3545, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701905f.jpg"} -{"rects": [{"solidity": 0.998469831195821, "top": 465, "right": 4995, "bottom": 3675, "left": 1050}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724674f.jpg"} -{"rects": [{"solidity": 0.9984699642458172, "top": 2195, "right": 3165, "bottom": 3820, "left": 745}, {"solidity": 0.9978624589494958, "top": 320, "right": 3170, "bottom": 1935, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723068f.jpg"} -{"rects": [{"solidity": 0.9984702145810992, "top": 680, "right": 2760, "bottom": 3695, "left": 330}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509137.jpg"} -{"rects": [{"solidity": 0.9984703999676916, "top": 685, "right": 2725, "bottom": 2060, "left": 910}, {"solidity": 0.9945898742287858, "top": 2120, "right": 2725, "bottom": 3480, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727302f.jpg"} -{"rects": [{"solidity": 0.9984710429251432, "top": 400, "right": 3115, "bottom": 2005, "left": 715}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/700824f.jpg"} -{"rects": [{"solidity": 0.9984711149939937, "top": 825, "right": 2070, "bottom": 3250, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706168f.jpg"} -{"rects": [{"solidity": 0.9984712550607288, "top": 2250, "right": 3185, "bottom": 3855, "left": 765}, {"solidity": 0.9977244315962185, "top": 350, "right": 3185, "bottom": 1950, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730116f.jpg"} -{"rects": [{"solidity": 0.9984713365873417, "top": 365, "right": 4970, "bottom": 3585, "left": 965}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733522f.jpg"} -{"rects": [{"solidity": 0.9984717612231037, "top": 425, "right": 3200, "bottom": 2045, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704992f.jpg"} -{"rects": [{"solidity": 0.9984718316189596, "top": 795, "right": 1945, "bottom": 3200, "left": 315}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707246f.jpg"} -{"rects": [{"solidity": 0.9984720561278178, "top": 520, "right": 2860, "bottom": 3320, "left": 860}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700622f.jpg"} -{"rects": [{"solidity": 0.9984721655758187, "top": 425, "right": 3280, "bottom": 2035, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725161f.jpg"} -{"rects": [{"solidity": 0.9984725016589634, "top": 995, "right": 3535, "bottom": 5005, "left": 285}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724808f.jpg"} -{"rects": [{"solidity": 0.9984726430897216, "top": 945, "right": 3520, "bottom": 5000, "left": 225}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710853f.jpg"} -{"rects": [{"solidity": 0.9984729712679191, "top": 825, "right": 1995, "bottom": 3240, "left": 385}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728625f.jpg"} -{"rects": [{"solidity": 0.9984731441584824, "top": 2255, "right": 3150, "bottom": 3865, "left": 735}, {"solidity": 0.9975051865857822, "top": 425, "right": 3140, "bottom": 2020, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731890f.jpg"} -{"rects": [{"solidity": 0.9984740622918808, "top": 795, "right": 3890, "bottom": 3205, "left": 2275}, {"solidity": 0.9969095951407834, "top": 795, "right": 2045, "bottom": 3200, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732315f.jpg"} -{"rects": [{"solidity": 0.9984740786525536, "top": 770, "right": 3840, "bottom": 3190, "left": 2225}, {"solidity": 0.9968713613448631, "top": 770, "right": 2075, "bottom": 3185, "left": 455}, {"solidity": 0.9977950427372599, "top": 775, "right": 5595, "bottom": 3190, "left": 3990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731725f.jpg"} -{"rects": [{"solidity": 0.9984749576194295, "top": 430, "right": 5150, "bottom": 3700, "left": 1070}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/732286f.jpg"} -{"rects": [{"solidity": 0.9984749825198468, "top": 1020, "right": 3515, "bottom": 5040, "left": 260}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/731386f.jpg"} -{"rects": [{"solidity": 0.9984750665352549, "top": 2260, "right": 3280, "bottom": 3875, "left": 855}, {"solidity": 0.9975109119553708, "top": 410, "right": 3285, "bottom": 2020, "left": 865}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727948f.jpg"} -{"rects": [{"solidity": 0.9984755560537398, "top": 390, "right": 3240, "bottom": 2010, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726104f.jpg"} -{"rects": [{"solidity": 0.9984755884758956, "top": 1330, "right": 3280, "bottom": 4770, "left": 665}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708956f.jpg"} -{"rects": [{"solidity": 0.998475960975536, "top": 415, "right": 5150, "bottom": 3705, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725011f.jpg"} -{"rects": [{"solidity": 0.9984772339173036, "top": 635, "right": 2670, "bottom": 2065, "left": 860}, {"solidity": 0.9965167891772747, "top": 635, "right": 5225, "bottom": 2050, "left": 3455}, {"solidity": 0.9921066161275038, "top": 2130, "right": 2680, "bottom": 3520, "left": 860}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704010f.jpg"} -{"rects": [{"solidity": 0.9984773962013812, "top": 2155, "right": 3120, "bottom": 4005, "left": 785}, {"solidity": 0.9950595381461226, "top": 4005, "right": 3120, "bottom": 5835, "left": 760}, {"solidity": 0.9962748729524559, "top": 325, "right": 3110, "bottom": 2145, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731113f.jpg"} -{"rects": [{"solidity": 0.9984776708363796, "top": 445, "right": 3345, "bottom": 2030, "left": 965}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726004f.jpg"} -{"rects": [{"solidity": 0.9984781591813457, "top": 815, "right": 3875, "bottom": 3240, "left": 2255}, {"solidity": 0.9995026216651585, "top": 810, "right": 2055, "bottom": 3235, "left": 440}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705473f.jpg"} -{"rects": [{"solidity": 0.9984782437951618, "top": 730, "right": 3235, "bottom": 2635, "left": 545}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712430f.jpg"} -{"rects": [{"solidity": 0.998479065257505, "top": 775, "right": 2030, "bottom": 3185, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705483f.jpg"} -{"rects": [{"solidity": 0.998479592978484, "top": 725, "right": 2010, "bottom": 3120, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711172f.jpg"} -{"rects": [{"solidity": 0.9984796850043987, "top": 335, "right": 3960, "bottom": 2780, "left": 950}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516903.jpg"} -{"rects": [{"solidity": 0.9984801401756067, "top": 420, "right": 3180, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705566f.jpg"} -{"rects": [{"solidity": 0.99848044634443, "top": 405, "right": 3180, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/718830f.jpg"} -{"rects": [{"solidity": 0.9984804584379627, "top": 720, "right": 2000, "bottom": 3140, "left": 385}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702023f.jpg"} -{"rects": [{"solidity": 0.998480523217282, "top": 755, "right": 2010, "bottom": 3180, "left": 405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725804f.jpg"} -{"rects": [{"solidity": 0.9984806181416791, "top": 740, "right": 3895, "bottom": 3140, "left": 2280}, {"solidity": 0.9989584994580942, "top": 735, "right": 2015, "bottom": 3145, "left": 410}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718810f.jpg"} -{"rects": [{"solidity": 0.998480690650884, "top": 1050, "right": 3330, "bottom": 5045, "left": 460}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723998f.jpg"} -{"rects": [{"solidity": 0.9984806947786963, "top": 2220, "right": 2975, "bottom": 3755, "left": 1015}, {"solidity": 0.996184576902113, "top": 405, "right": 2975, "bottom": 1950, "left": 1035}, {"solidity": 0.995820336044982, "top": 4030, "right": 2970, "bottom": 5525, "left": 1035}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733347f.jpg"} -{"rects": [{"solidity": 0.9984816432921055, "top": 665, "right": 2395, "bottom": 3085, "left": 775}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705433f.jpg"} -{"rects": [{"solidity": 0.9984817813765182, "top": 425, "right": 5110, "bottom": 3645, "left": 1040}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722347f.jpg"} -{"rects": [{"solidity": 0.9984826480560313, "top": 680, "right": 4710, "bottom": 3455, "left": 1440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704926f.jpg"} -{"rects": [{"solidity": 0.9984827582250853, "top": 1055, "right": 3545, "bottom": 5125, "left": 320}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710290f.jpg"} -{"rects": [{"solidity": 0.9984830526249042, "top": 720, "right": 2620, "bottom": 2155, "left": 820}, {"solidity": 0.9960766686372897, "top": 2180, "right": 2635, "bottom": 3600, "left": 815}, {"solidity": 0.9955254404336578, "top": 730, "right": 5315, "bottom": 2145, "left": 3505}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726302f.jpg"} -{"rects": [{"solidity": 0.9984843479781591, "top": 665, "right": 2780, "bottom": 2090, "left": 960}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702596f.jpg"} -{"rects": [{"solidity": 0.9984846305087997, "top": 550, "right": 3395, "bottom": 2170, "left": 965}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712782f.jpg"} -{"rects": [{"solidity": 0.9984847273947861, "top": 410, "right": 3130, "bottom": 2040, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701436f.jpg"} -{"rects": [{"solidity": 0.9984847901177498, "top": 2200, "right": 3105, "bottom": 3820, "left": 685}, {"solidity": 0.9963984553803289, "top": 4095, "right": 3090, "bottom": 5720, "left": 660}, {"solidity": 0.9971061331307519, "top": 365, "right": 3110, "bottom": 1985, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/728329f.jpg"} -{"rects": [{"solidity": 0.9984848289468594, "top": 520, "right": 3140, "bottom": 2130, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/702029f.jpg"} -{"rects": [{"solidity": 0.9984849505083833, "top": 450, "right": 3115, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721064f.jpg"} -{"rects": [{"solidity": 0.9984850138338779, "top": 2105, "right": 3170, "bottom": 3725, "left": 750}, {"solidity": 0.9976115033082605, "top": 285, "right": 3170, "bottom": 1905, "left": 745}, {"solidity": 0.9966623983876817, "top": 3935, "right": 3170, "bottom": 5555, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729768f.jpg"} -{"rects": [{"solidity": 0.9984851305352096, "top": 420, "right": 5110, "bottom": 3650, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732681f.jpg"} -{"rects": [{"solidity": 0.9984861847782943, "top": 415, "right": 5205, "bottom": 3650, "left": 1110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715624f.jpg"} -{"rects": [{"solidity": 0.9984862033725089, "top": 725, "right": 3845, "bottom": 3155, "left": 2225}, {"solidity": 0.9970218715287088, "top": 720, "right": 1995, "bottom": 3155, "left": 370}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725820f.jpg"} -{"rects": [{"solidity": 0.9984862148256793, "top": 1260, "right": 3475, "bottom": 4940, "left": 210}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723865f.jpg"} -{"rects": [{"solidity": 0.9984863128116179, "top": 360, "right": 3465, "bottom": 1985, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709318f.jpg"} -{"rects": [{"solidity": 0.9984866194620737, "top": 395, "right": 3145, "bottom": 2010, "left": 725}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/728909f.jpg"} -{"rects": [{"solidity": 0.9984867723615313, "top": 310, "right": 3895, "bottom": 2775, "left": 880}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509835.jpg"} -{"rects": [{"solidity": 0.9984868394855254, "top": 4110, "right": 3290, "bottom": 5690, "left": 890}, {"solidity": 0.9957572849271094, "top": 435, "right": 3300, "bottom": 2020, "left": 890}, {"solidity": 0.9967316237040489, "top": 2270, "right": 3300, "bottom": 3845, "left": 895}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727267f.jpg"} -{"rects": [{"solidity": 0.9984871850883399, "top": 510, "right": 2980, "bottom": 2115, "left": 575}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705391f.jpg"} -{"rects": [{"solidity": 0.9984874133480944, "top": 530, "right": 3185, "bottom": 2155, "left": 780}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706662f.jpg"} -{"rects": [{"solidity": 0.9984877373095413, "top": 2360, "right": 3260, "bottom": 3960, "left": 845}, {"solidity": 0.997709469509172, "top": 4090, "right": 3235, "bottom": 5685, "left": 840}, {"solidity": 0.9973510416804806, "top": 645, "right": 3205, "bottom": 2245, "left": 830}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733155f.jpg"} -{"rects": [{"solidity": 0.9984877469337519, "top": 320, "right": 5100, "bottom": 3555, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705401f.jpg"} -{"rects": [{"solidity": 0.9984878138431131, "top": 775, "right": 2665, "bottom": 3190, "left": 1050}, {"solidity": 0.9979604416031187, "top": 795, "right": 5015, "bottom": 3210, "left": 3400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730833f.jpg"} -{"rects": [{"solidity": 0.9984878960933946, "top": 515, "right": 3035, "bottom": 3585, "left": 1010}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715443f.jpg"} -{"rects": [{"solidity": 0.9984879143272751, "top": 505, "right": 5195, "bottom": 3745, "left": 1140}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734346f.jpg"} -{"rects": [{"solidity": 0.9984891524709333, "top": 475, "right": 5280, "bottom": 3665, "left": 1300}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730042f.jpg"} -{"rects": [{"solidity": 0.9984892114200121, "top": 780, "right": 1935, "bottom": 3185, "left": 315}, {"solidity": 0.9968723325231805, "top": 795, "right": 3805, "bottom": 3170, "left": 2180}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703950f.jpg"} -{"rects": [{"solidity": 0.9984892305104266, "top": 420, "right": 3155, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719261f.jpg"} -{"rects": [{"solidity": 0.9984892522916733, "top": 4095, "right": 3025, "bottom": 5725, "left": 605}, {"solidity": 0.9962453309186164, "top": 2230, "right": 3030, "bottom": 3850, "left": 615}, {"solidity": 0.9953213599686334, "top": 400, "right": 3025, "bottom": 1990, "left": 620}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729080f.jpg"} -{"rects": [{"solidity": 0.9984893566822209, "top": 450, "right": 3215, "bottom": 2045, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713550f.jpg"} -{"rects": [{"solidity": 0.9984896800191458, "top": 875, "right": 2055, "bottom": 3290, "left": 445}, {"solidity": 0.9953649796310692, "top": 860, "right": 3890, "bottom": 3290, "left": 2275}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711441f.jpg"} -{"rects": [{"solidity": 0.9984897772245253, "top": 525, "right": 3395, "bottom": 2445, "left": 600}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/711561f.jpg"} -{"rects": [{"solidity": 0.998489830770209, "top": 460, "right": 4775, "bottom": 3665, "left": 1325}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720361f.jpg"} -{"rects": [{"solidity": 0.998490319815512, "top": 2175, "right": 3145, "bottom": 3800, "left": 725}, {"solidity": 0.9983132815475562, "top": 4045, "right": 3130, "bottom": 5670, "left": 710}, {"solidity": 0.9988264495759143, "top": 320, "right": 3145, "bottom": 1940, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723262f.jpg"} -{"rects": [{"solidity": 0.9984903969768982, "top": 2230, "right": 3190, "bottom": 3840, "left": 785}, {"solidity": 0.9987140268495607, "top": 415, "right": 3190, "bottom": 2025, "left": 785}, {"solidity": 0.995598931540017, "top": 4055, "right": 3180, "bottom": 5675, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719615f.jpg"} -{"rects": [{"solidity": 0.9984905158828109, "top": 385, "right": 3185, "bottom": 2015, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700052f.jpg"} -{"rects": [{"solidity": 0.9984906735013527, "top": 500, "right": 3015, "bottom": 1920, "left": 1145}, {"solidity": 0.9962704230200967, "top": 2235, "right": 2985, "bottom": 3675, "left": 1140}, {"solidity": 0.9947990067780685, "top": 4065, "right": 2920, "bottom": 5520, "left": 1080}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727642f.jpg"} -{"rects": [{"solidity": 0.998490676096903, "top": 1200, "right": 2570, "bottom": 4115, "left": 205}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507570.jpg"} -{"rects": [{"solidity": 0.9984908810685846, "top": 795, "right": 2040, "bottom": 3215, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706926f.jpg"} -{"rects": [{"solidity": 0.9984909756644127, "top": 540, "right": 5055, "bottom": 3665, "left": 1145}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701623f.jpg"} -{"rects": [{"solidity": 0.9984911252254225, "top": 410, "right": 5305, "bottom": 3665, "left": 1165}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732717f.jpg"} -{"rects": [{"solidity": 0.9984913724364495, "top": 755, "right": 1965, "bottom": 3180, "left": 340}, {"solidity": 0.9993875483364445, "top": 795, "right": 3850, "bottom": 3170, "left": 2225}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706921f.jpg"} -{"rects": [{"solidity": 0.9984914375531178, "top": 1215, "right": 3925, "bottom": 5765, "left": 260}], "shape": {"h": 6845, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/706422f.jpg"} -{"rects": [{"solidity": 0.9984914832336343, "top": 405, "right": 3165, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719042f.jpg"} -{"rects": [{"solidity": 0.9984921077305254, "top": 2265, "right": 3200, "bottom": 3875, "left": 775}, {"solidity": 0.9948666848813101, "top": 4095, "right": 3200, "bottom": 5710, "left": 770}, {"solidity": 0.998763902046537, "top": 430, "right": 3205, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719034f.jpg"} -{"rects": [{"solidity": 0.9984925592838119, "top": 455, "right": 5140, "bottom": 3775, "left": 1075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720342f.jpg"} -{"rects": [{"solidity": 0.9984926411127284, "top": 810, "right": 2070, "bottom": 3225, "left": 460}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720031f.jpg"} -{"rects": [{"solidity": 0.9984926545771187, "top": 515, "right": 5660, "bottom": 2115, "left": 3275}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705384f.jpg"} -{"rects": [{"solidity": 0.9984929358384376, "top": 815, "right": 3885, "bottom": 3230, "left": 2270}, {"solidity": 0.9978127649110546, "top": 805, "right": 2030, "bottom": 3220, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730568f.jpg"} -{"rects": [{"solidity": 0.9984933606288143, "top": 1150, "right": 3925, "bottom": 5710, "left": 215}], "shape": {"h": 6850, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711697f.jpg"} -{"rects": [{"solidity": 0.9984935161465869, "top": 770, "right": 2035, "bottom": 3155, "left": 445}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712189f.jpg"} -{"rects": [{"solidity": 0.9984939429486942, "top": 490, "right": 5105, "bottom": 3730, "left": 1030}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700917f.jpg"} -{"rects": [{"solidity": 0.9984950885161573, "top": 765, "right": 2970, "bottom": 2160, "left": 990}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714865f.jpg"} -{"rects": [{"solidity": 0.9984954931661957, "top": 3255, "right": 3220, "bottom": 5255, "left": 400}, {"solidity": 0.9986037133195935, "top": 620, "right": 3225, "bottom": 2620, "left": 410}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728759f.jpg"} -{"rects": [{"solidity": 0.9984955082331755, "top": 480, "right": 5130, "bottom": 3710, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707164f.jpg"} -{"rects": [{"solidity": 0.9984955692086694, "top": 805, "right": 3870, "bottom": 3220, "left": 2260}, {"solidity": 0.9967525831724764, "top": 805, "right": 2055, "bottom": 3220, "left": 445}, {"solidity": 0.99431135956538, "top": 815, "right": 5710, "bottom": 3230, "left": 4115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723245f.jpg"} -{"rects": [{"solidity": 0.9984958450981287, "top": 675, "right": 2445, "bottom": 3500, "left": 395}, {"solidity": 0.9927833855435665, "top": 1135, "right": 3980, "bottom": 2820, "left": 2680}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716860f.jpg"} -{"rects": [{"solidity": 0.9984960829349646, "top": 900, "right": 1975, "bottom": 3300, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729969f.jpg"} -{"rects": [{"solidity": 0.9984963703775006, "top": 430, "right": 3000, "bottom": 2015, "left": 610}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729677f.jpg"} -{"rects": [{"solidity": 0.9984963730299551, "top": 445, "right": 3215, "bottom": 2045, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734562f.jpg"} -{"rects": [{"solidity": 0.9984965423299638, "top": 665, "right": 3615, "bottom": 4785, "left": 370}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706165f.jpg"} -{"rects": [{"solidity": 0.9984966888275468, "top": 2360, "right": 3230, "bottom": 3970, "left": 815}, {"solidity": 0.9956431313820686, "top": 4120, "right": 3250, "bottom": 5735, "left": 830}, {"solidity": 0.9966769847050255, "top": 605, "right": 3200, "bottom": 2215, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733143f.jpg"} -{"rects": [{"solidity": 0.9984969206700788, "top": 950, "right": 3545, "bottom": 5065, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714791f.jpg"} -{"rects": [{"solidity": 0.9984970362723903, "top": 2300, "right": 3130, "bottom": 3905, "left": 715}, {"solidity": 0.9958489094041544, "top": 4165, "right": 3125, "bottom": 5770, "left": 700}, {"solidity": 0.9954445198228934, "top": 435, "right": 3125, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734812f.jpg"} -{"rects": [{"solidity": 0.9984971387209125, "top": 760, "right": 2020, "bottom": 3175, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719878f.jpg"} -{"rects": [{"solidity": 0.9984971835395025, "top": 365, "right": 5350, "bottom": 3625, "left": 1335}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723662f.jpg"} -{"rects": [{"solidity": 0.9984972903783014, "top": 445, "right": 5000, "bottom": 3680, "left": 990}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718042f.jpg"} -{"rects": [{"solidity": 0.9984975172192856, "top": 395, "right": 3005, "bottom": 2020, "left": 585}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705327f.jpg"} -{"rects": [{"solidity": 0.9984979090764574, "top": 440, "right": 3265, "bottom": 2045, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725021f.jpg"} -{"rects": [{"solidity": 0.9984979198165881, "top": 420, "right": 3025, "bottom": 2025, "left": 645}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703336f.jpg"} -{"rects": [{"solidity": 0.9984987537731642, "top": 2330, "right": 3165, "bottom": 3950, "left": 745}, {"solidity": 0.992666359622142, "top": 480, "right": 3155, "bottom": 2100, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700979f.jpg"} -{"rects": [{"solidity": 0.9984988837362477, "top": 410, "right": 5220, "bottom": 3645, "left": 1165}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732718f.jpg"} -{"rects": [{"solidity": 0.9984998961108176, "top": 420, "right": 5085, "bottom": 3735, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722607f.jpg"} -{"rects": [{"solidity": 0.9984999881328175, "top": 490, "right": 4980, "bottom": 3775, "left": 950}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708059f.jpg"} -{"rects": [{"solidity": 0.998501341671441, "top": 420, "right": 3155, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704493f.jpg"} -{"rects": [{"solidity": 0.9985013975138913, "top": 350, "right": 5095, "bottom": 3575, "left": 1030}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708285f.jpg"} -{"rects": [{"solidity": 0.9985020039984677, "top": 945, "right": 3565, "bottom": 5010, "left": 325}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720410f.jpg"} -{"rects": [{"solidity": 0.9985025014469543, "top": 970, "right": 3550, "bottom": 4955, "left": 365}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726193f.jpg"} -{"rects": [{"solidity": 0.9985025488125241, "top": 505, "right": 5140, "bottom": 3780, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712213f.jpg"} -{"rects": [{"solidity": 0.9985026026959606, "top": 805, "right": 2045, "bottom": 3220, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718502f.jpg"} -{"rects": [{"solidity": 0.9985027248446332, "top": 780, "right": 2070, "bottom": 3185, "left": 470}, {"solidity": 0.9978437133938446, "top": 780, "right": 3955, "bottom": 3185, "left": 2355}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724206f.jpg"} -{"rects": [{"solidity": 0.9985028927974655, "top": 850, "right": 2035, "bottom": 3255, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717309f.jpg"} -{"rects": [{"solidity": 0.9985029167311961, "top": 770, "right": 3875, "bottom": 3185, "left": 2260}, {"solidity": 0.9961250681014445, "top": 785, "right": 5740, "bottom": 3210, "left": 4115}, {"solidity": 0.9983861750074684, "top": 780, "right": 2020, "bottom": 3195, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713546f.jpg"} -{"rects": [{"solidity": 0.9985031362080542, "top": 330, "right": 3145, "bottom": 1945, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733775f.jpg"} -{"rects": [{"solidity": 0.9985038399301364, "top": 765, "right": 2055, "bottom": 3185, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703686f.jpg"} -{"rects": [{"solidity": 0.9985040298297093, "top": 820, "right": 2105, "bottom": 3245, "left": 485}, {"solidity": 0.9976372846750945, "top": 830, "right": 3860, "bottom": 3250, "left": 2240}, {"solidity": 0.9975985630426011, "top": 830, "right": 5595, "bottom": 3240, "left": 3990}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717501f.jpg"} -{"rects": [{"solidity": 0.9985043412950722, "top": 325, "right": 3140, "bottom": 1940, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700246f.jpg"} -{"rects": [{"solidity": 0.9985045873563099, "top": 615, "right": 3430, "bottom": 4695, "left": 185}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703242f.jpg"} -{"rects": [{"solidity": 0.9985046644090667, "top": 730, "right": 2020, "bottom": 3140, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707315f.jpg"} -{"rects": [{"solidity": 0.9985059616947857, "top": 2265, "right": 3165, "bottom": 3880, "left": 740}, {"solidity": 0.9988380912421128, "top": 420, "right": 3160, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733791f.jpg"} -{"rects": [{"solidity": 0.9985060250437381, "top": 1035, "right": 2715, "bottom": 4185, "left": 280}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508831.jpg"} -{"rects": [{"solidity": 0.9985060424089092, "top": 815, "right": 2150, "bottom": 3220, "left": 540}, {"solidity": 0.9970410830482378, "top": 815, "right": 3980, "bottom": 3220, "left": 2370}, {"solidity": 0.9978784679204082, "top": 820, "right": 5830, "bottom": 3220, "left": 4225}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731639f.jpg"} -{"rects": [{"solidity": 0.9985067294772902, "top": 845, "right": 2085, "bottom": 3255, "left": 480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713838f.jpg"} -{"rects": [{"solidity": 0.9985069297932422, "top": 910, "right": 2090, "bottom": 3310, "left": 475}, {"solidity": 0.9994989246402182, "top": 930, "right": 3920, "bottom": 3330, "left": 2310}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710398f.jpg"} -{"rects": [{"solidity": 0.9985072374904896, "top": 920, "right": 1990, "bottom": 3340, "left": 370}, {"solidity": 0.9968515800046357, "top": 930, "right": 3830, "bottom": 3345, "left": 2205}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709378f.jpg"} -{"rects": [{"solidity": 0.9985074507817687, "top": 400, "right": 5055, "bottom": 3580, "left": 1100}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717097f.jpg"} -{"rects": [{"solidity": 0.9985075848074751, "top": 760, "right": 2040, "bottom": 3155, "left": 435}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719374f.jpg"} -{"rects": [{"solidity": 0.9985079977135549, "top": 725, "right": 3845, "bottom": 3135, "left": 2230}, {"solidity": 0.997440016549388, "top": 725, "right": 5660, "bottom": 3145, "left": 4050}, {"solidity": 0.9975936982134345, "top": 730, "right": 2030, "bottom": 3140, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712966f.jpg"} -{"rects": [{"solidity": 0.9985082892382352, "top": 810, "right": 2070, "bottom": 3245, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702304f.jpg"} -{"rects": [{"solidity": 0.99850834066602, "top": 380, "right": 5260, "bottom": 3595, "left": 1260}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716948f.jpg"} -{"rects": [{"solidity": 0.998508357066457, "top": 450, "right": 3190, "bottom": 2060, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706556f.jpg"} -{"rects": [{"solidity": 0.9985083802497897, "top": 2285, "right": 3165, "bottom": 3895, "left": 750}, {"solidity": 0.9963012418645103, "top": 425, "right": 3165, "bottom": 2045, "left": 750}, {"solidity": 0.995545468458465, "top": 4125, "right": 3150, "bottom": 5730, "left": 740}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700639f.jpg"} -{"rects": [{"solidity": 0.9985087379816677, "top": 1040, "right": 3630, "bottom": 5085, "left": 350}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708629f.jpg"} -{"rects": [{"solidity": 0.9985089335171135, "top": 2285, "right": 3160, "bottom": 3900, "left": 740}, {"solidity": 0.9970508605685554, "top": 425, "right": 3170, "bottom": 2045, "left": 750}, {"solidity": 0.9979993525412755, "top": 4130, "right": 3160, "bottom": 5740, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707978f.jpg"} -{"rects": [{"solidity": 0.99850911116621, "top": 775, "right": 2005, "bottom": 3195, "left": 390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722015f.jpg"} -{"rects": [{"solidity": 0.9985091817683612, "top": 2215, "right": 2860, "bottom": 3680, "left": 1010}, {"solidity": 0.9965174527923997, "top": 2235, "right": 5085, "bottom": 3690, "left": 3240}, {"solidity": 0.995969021458887, "top": 705, "right": 5110, "bottom": 2100, "left": 3260}, {"solidity": 0.9911264308293146, "top": 700, "right": 2840, "bottom": 1990, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712081f.jpg"} -{"rects": [{"solidity": 0.998509554423509, "top": 1045, "right": 3545, "bottom": 5055, "left": 300}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722227f.jpg"} -{"rects": [{"solidity": 0.9985100782903555, "top": 520, "right": 5165, "bottom": 3765, "left": 1120}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708728f.jpg"} -{"rects": [{"solidity": 0.9985103186618471, "top": 420, "right": 5075, "bottom": 3655, "left": 1065}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713429f.jpg"} -{"rects": [{"solidity": 0.9985104440786333, "top": 435, "right": 5070, "bottom": 3695, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719544f.jpg"} -{"rects": [{"solidity": 0.9985105080595796, "top": 2160, "right": 5060, "bottom": 3760, "left": 3130}, {"solidity": 0.9960931611988577, "top": 465, "right": 2780, "bottom": 2070, "left": 845}, {"solidity": 0.99785058673173, "top": 2150, "right": 2745, "bottom": 3770, "left": 870}, {"solidity": 0.9956983093038256, "top": 505, "right": 5050, "bottom": 1985, "left": 3155}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719582f.jpg"} -{"rects": [{"solidity": 0.9985105152454096, "top": 765, "right": 2050, "bottom": 3185, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711072f.jpg"} -{"rects": [{"solidity": 0.9985112196236713, "top": 450, "right": 3195, "bottom": 2030, "left": 825}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/714895f.jpg"} -{"rects": [{"solidity": 0.9985114079153684, "top": 345, "right": 5225, "bottom": 3600, "left": 1190}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733493f.jpg"} -{"rects": [{"solidity": 0.9985114588669689, "top": 855, "right": 3860, "bottom": 3260, "left": 2235}, {"solidity": 0.9971082222021405, "top": 840, "right": 2010, "bottom": 3255, "left": 390}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726655f.jpg"} -{"rects": [{"solidity": 0.998511508186705, "top": 740, "right": 3820, "bottom": 3145, "left": 2210}, {"solidity": 0.9985697547309371, "top": 745, "right": 2000, "bottom": 3140, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719703f.jpg"} -{"rects": [{"solidity": 0.9985119431891543, "top": 735, "right": 1980, "bottom": 3150, "left": 365}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720422f.jpg"} -{"rects": [{"solidity": 0.9985127568643295, "top": 385, "right": 5215, "bottom": 3630, "left": 1215}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733480f.jpg"} -{"rects": [{"solidity": 0.9985131255127153, "top": 460, "right": 3100, "bottom": 2085, "left": 680}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705927f.jpg"} -{"rects": [{"solidity": 0.9985131841776939, "top": 2290, "right": 3090, "bottom": 3905, "left": 680}, {"solidity": 0.9988330780012387, "top": 410, "right": 3080, "bottom": 2015, "left": 675}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731327f.jpg"} -{"rects": [{"solidity": 0.9985132065780075, "top": 130, "right": 4845, "bottom": 3260, "left": 850}], "shape": {"h": 3625, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715595f.jpg"} -{"rects": [{"solidity": 0.9985134098140639, "top": 450, "right": 3175, "bottom": 2070, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701186f.jpg"} -{"rects": [{"solidity": 0.9985134165590472, "top": 805, "right": 5260, "bottom": 3550, "left": 1270}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718169f.jpg"} -{"rects": [{"solidity": 0.9985134719653306, "top": 885, "right": 3610, "bottom": 4885, "left": 390}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/720317f.jpg"} -{"rects": [{"solidity": 0.9985138140213807, "top": 1060, "right": 3390, "bottom": 3070, "left": 560}, {"solidity": 0.9967237892022849, "top": 630, "right": 5670, "bottom": 3455, "left": 3660}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706817f.jpg"} -{"rects": [{"solidity": 0.9985140107557317, "top": 905, "right": 2055, "bottom": 3320, "left": 435}, {"solidity": 0.9988751369714679, "top": 905, "right": 3925, "bottom": 3315, "left": 2310}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709389f.jpg"} -{"rects": [{"solidity": 0.998514340960361, "top": 825, "right": 3920, "bottom": 3235, "left": 2300}, {"solidity": 0.9990627745139979, "top": 840, "right": 2030, "bottom": 3240, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724395f.jpg"} -{"rects": [{"solidity": 0.9985144632828901, "top": 640, "right": 2730, "bottom": 2065, "left": 915}, {"solidity": 0.9941515606433283, "top": 2100, "right": 2765, "bottom": 3510, "left": 930}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706104f.jpg"} -{"rects": [{"solidity": 0.9985148415496491, "top": 890, "right": 3465, "bottom": 4970, "left": 245}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719618f.jpg"} -{"rects": [{"solidity": 0.9985153450502227, "top": 485, "right": 5050, "bottom": 3730, "left": 950}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703801f.jpg"} -{"rects": [{"solidity": 0.9985156346638369, "top": 735, "right": 5195, "bottom": 3720, "left": 1320}], "shape": {"h": 4415, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/708841f.jpg"} -{"rects": [{"solidity": 0.9985161035518576, "top": 945, "right": 3510, "bottom": 5030, "left": 275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711582f.jpg"} -{"rects": [{"solidity": 0.9985165262203991, "top": 805, "right": 2220, "bottom": 3220, "left": 605}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732565f.jpg"} -{"rects": [{"solidity": 0.9985178370642952, "top": 775, "right": 3810, "bottom": 3190, "left": 2180}, {"solidity": 0.9974776928440379, "top": 760, "right": 1975, "bottom": 3180, "left": 355}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724241f.jpg"} -{"rects": [{"solidity": 0.9985181011691832, "top": 320, "right": 4040, "bottom": 2795, "left": 990}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509839.jpg"} -{"rects": [{"solidity": 0.9985181663040787, "top": 760, "right": 2040, "bottom": 3175, "left": 440}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715495f.jpg"} -{"rects": [{"solidity": 0.9985183458746754, "top": 455, "right": 3130, "bottom": 2045, "left": 750}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/715075f.jpg"} -{"rects": [{"solidity": 0.9985183521786607, "top": 850, "right": 3505, "bottom": 2895, "left": 710}, {"solidity": 0.9977009198539774, "top": 3235, "right": 3465, "bottom": 5275, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733587f.jpg"} -{"rects": [{"solidity": 0.9985183527608819, "top": 805, "right": 1970, "bottom": 3175, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712707f.jpg"} -{"rects": [{"solidity": 0.9985184383674522, "top": 435, "right": 3180, "bottom": 2570, "left": 350}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517167.jpg"} -{"rects": [{"solidity": 0.9985184944462658, "top": 435, "right": 5150, "bottom": 3705, "left": 1135}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725416f.jpg"} -{"rects": [{"solidity": 0.998518551628795, "top": 820, "right": 2035, "bottom": 3255, "left": 415}, {"solidity": 0.9966835325996224, "top": 815, "right": 3795, "bottom": 3230, "left": 2165}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710859f.jpg"} -{"rects": [{"solidity": 0.998518925036132, "top": 280, "right": 3875, "bottom": 2680, "left": 795}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509929.jpg"} -{"rects": [{"solidity": 0.9985190777629362, "top": 350, "right": 2985, "bottom": 1975, "left": 585}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702275f.jpg"} -{"rects": [{"solidity": 0.9985192751193253, "top": 2020, "right": 3240, "bottom": 3645, "left": 830}, {"solidity": 0.9964062137723163, "top": 280, "right": 3215, "bottom": 1905, "left": 795}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710707f.jpg"} -{"rects": [{"solidity": 0.998519434871825, "top": 445, "right": 5280, "bottom": 3655, "left": 1285}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733756f.jpg"} -{"rects": [{"solidity": 0.9985200473850299, "top": 745, "right": 2000, "bottom": 3145, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728229f.jpg"} -{"rects": [{"solidity": 0.998520240647079, "top": 435, "right": 3150, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701749f.jpg"} -{"rects": [{"solidity": 0.9985202893870527, "top": 610, "right": 2765, "bottom": 2025, "left": 920}, {"solidity": 0.9961551820620188, "top": 600, "right": 4950, "bottom": 2025, "left": 3110}, {"solidity": 0.9972577741853903, "top": 2295, "right": 4955, "bottom": 3685, "left": 3125}, {"solidity": 0.9958585252381968, "top": 2300, "right": 2765, "bottom": 3695, "left": 935}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725554f.jpg"} -{"rects": [{"solidity": 0.9985204422933145, "top": 880, "right": 3440, "bottom": 4950, "left": 305}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711180f.jpg"} -{"rects": [{"solidity": 0.9985204508731287, "top": 395, "right": 3255, "bottom": 2000, "left": 840}, {"solidity": 0.9974599122041449, "top": 2240, "right": 3255, "bottom": 3845, "left": 840}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/726929f.jpg"} -{"rects": [{"solidity": 0.9985209332929668, "top": 415, "right": 5095, "bottom": 3715, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729540f.jpg"} -{"rects": [{"solidity": 0.9985212046395597, "top": 420, "right": 2965, "bottom": 2040, "left": 550}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705031f.jpg"} -{"rects": [{"solidity": 0.9985212380806691, "top": 425, "right": 2990, "bottom": 1975, "left": 1080}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724128f.jpg"} -{"rects": [{"solidity": 0.9985213600921183, "top": 430, "right": 3145, "bottom": 2045, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703373f.jpg"} -{"rects": [{"solidity": 0.9985213758847447, "top": 460, "right": 5120, "bottom": 3755, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710947f.jpg"} -{"rects": [{"solidity": 0.9985214280433672, "top": 2325, "right": 3185, "bottom": 3945, "left": 770}, {"solidity": 0.9953316913765071, "top": 475, "right": 3185, "bottom": 2100, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710228f.jpg"} -{"rects": [{"solidity": 0.998522110989137, "top": 765, "right": 2025, "bottom": 3165, "left": 425}, {"solidity": 0.9986362757436877, "top": 785, "right": 3895, "bottom": 3155, "left": 2330}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717452f.jpg"} -{"rects": [{"solidity": 0.9985223447177036, "top": 695, "right": 1965, "bottom": 3120, "left": 350}, {"solidity": 0.9975246809535275, "top": 720, "right": 3875, "bottom": 3150, "left": 2260}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733225f.jpg"} -{"rects": [{"solidity": 0.9985227082908894, "top": 400, "right": 5055, "bottom": 3650, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707304f.jpg"} -{"rects": [{"solidity": 0.9985243653324228, "top": 365, "right": 3595, "bottom": 2260, "left": 2445}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715658f.jpg"} -{"rects": [{"solidity": 0.9985244997892142, "top": 415, "right": 3170, "bottom": 2025, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719974f.jpg"} -{"rects": [{"solidity": 0.9985245428399343, "top": 540, "right": 4940, "bottom": 3435, "left": 1290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731905f.jpg"} -{"rects": [{"solidity": 0.9985246173938815, "top": 720, "right": 3910, "bottom": 3125, "left": 2305}, {"solidity": 0.998804489586215, "top": 730, "right": 2045, "bottom": 3125, "left": 450}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711084f.jpg"} -{"rects": [{"solidity": 0.9985247725486801, "top": 375, "right": 4245, "bottom": 2810, "left": 1090}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508923.jpg"} -{"rects": [{"solidity": 0.9985254974715396, "top": 575, "right": 3115, "bottom": 2120, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719432f.jpg"} -{"rects": [{"solidity": 0.9985259774027325, "top": 475, "right": 5070, "bottom": 3765, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710800f.jpg"} -{"rects": [{"solidity": 0.9985260044905444, "top": 780, "right": 4520, "bottom": 3450, "left": 1500}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731223f.jpg"} -{"rects": [{"solidity": 0.9985263576551545, "top": 960, "right": 3585, "bottom": 5065, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717447f.jpg"} -{"rects": [{"solidity": 0.9985272716092402, "top": 505, "right": 5085, "bottom": 3510, "left": 1000}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719121f.jpg"} -{"rects": [{"solidity": 0.9985273499035879, "top": 875, "right": 2055, "bottom": 3295, "left": 435}, {"solidity": 0.9969498476530861, "top": 880, "right": 5790, "bottom": 3295, "left": 4165}, {"solidity": 0.9974328129081779, "top": 880, "right": 3920, "bottom": 3280, "left": 2290}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726673f.jpg"} -{"rects": [{"solidity": 0.9985274029006288, "top": 2250, "right": 3055, "bottom": 3860, "left": 635}, {"solidity": 0.9964541880447149, "top": 400, "right": 3065, "bottom": 2015, "left": 655}, {"solidity": 0.9982619846572953, "top": 4065, "right": 3040, "bottom": 5670, "left": 630}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733625f.jpg"} -{"rects": [{"solidity": 0.9985274034666923, "top": 435, "right": 5495, "bottom": 3630, "left": 1525}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724946f.jpg"} -{"rects": [{"solidity": 0.9985277660809425, "top": 525, "right": 4880, "bottom": 3490, "left": 815}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712810f.jpg"} -{"rects": [{"solidity": 0.9985281897714089, "top": 495, "right": 5095, "bottom": 3695, "left": 1090}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731847f.jpg"} -{"rects": [{"solidity": 0.9985292617605686, "top": 1510, "right": 3445, "bottom": 5230, "left": 600}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/731205f.jpg"} -{"rects": [{"solidity": 0.9985294735515314, "top": 425, "right": 3175, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704262f.jpg"} -{"rects": [{"solidity": 0.9985294874765104, "top": 740, "right": 2045, "bottom": 3160, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722267f.jpg"} -{"rects": [{"solidity": 0.9985295295455637, "top": 740, "right": 3890, "bottom": 3165, "left": 2270}, {"solidity": 0.9979781589656416, "top": 745, "right": 2065, "bottom": 3165, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731646f.jpg"} -{"rects": [{"solidity": 0.9985296714602704, "top": 445, "right": 5150, "bottom": 3655, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721673f.jpg"} -{"rects": [{"solidity": 0.9985297278120235, "top": 415, "right": 3180, "bottom": 1975, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720525f.jpg"} -{"rects": [{"solidity": 0.9985297484128699, "top": 940, "right": 5705, "bottom": 3350, "left": 4085}, {"solidity": 0.9964750463597517, "top": 940, "right": 3875, "bottom": 3345, "left": 2245}, {"solidity": 0.9973950926907464, "top": 930, "right": 2020, "bottom": 3335, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726670f.jpg"} -{"rects": [{"solidity": 0.9985300369571427, "top": 1400, "right": 3305, "bottom": 5360, "left": 485}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723005f.jpg"} -{"rects": [{"solidity": 0.9985301763146578, "top": 755, "right": 3890, "bottom": 3175, "left": 2270}, {"solidity": 0.9996286609189835, "top": 755, "right": 2040, "bottom": 3165, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703954f.jpg"} -{"rects": [{"solidity": 0.998531165498845, "top": 635, "right": 2500, "bottom": 3695, "left": 480}, {"solidity": 0.99711434605278, "top": 865, "right": 4160, "bottom": 3275, "left": 2535}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712584f.jpg"} -{"rects": [{"solidity": 0.9985311799304585, "top": 450, "right": 3240, "bottom": 2060, "left": 835}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725704f.jpg"} -{"rects": [{"solidity": 0.9985316910025288, "top": 385, "right": 3045, "bottom": 1985, "left": 635}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729349f.jpg"} -{"rects": [{"solidity": 0.9985318596122951, "top": 380, "right": 3185, "bottom": 1995, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705862f.jpg"} -{"rects": [{"solidity": 0.9985320385454566, "top": 1045, "right": 3520, "bottom": 5085, "left": 265}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717188f.jpg"} -{"rects": [{"solidity": 0.998532181288349, "top": 505, "right": 5010, "bottom": 3695, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708272f.jpg"} -{"rects": [{"solidity": 0.9985322744965355, "top": 1460, "right": 3620, "bottom": 5505, "left": 310}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/733406f.jpg"} -{"rects": [{"solidity": 0.998532583211538, "top": 1250, "right": 3620, "bottom": 5245, "left": 405}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708662f.jpg"} -{"rects": [{"solidity": 0.9985327932311314, "top": 425, "right": 5165, "bottom": 3675, "left": 1160}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715255f.jpg"} -{"rects": [{"solidity": 0.9985329548782149, "top": 435, "right": 5010, "bottom": 3675, "left": 1000}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726572f.jpg"} -{"rects": [{"solidity": 0.9985332469399663, "top": 695, "right": 3885, "bottom": 3120, "left": 2275}, {"solidity": 0.9979442955818516, "top": 715, "right": 1995, "bottom": 3145, "left": 390}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704925f.jpg"} -{"rects": [{"solidity": 0.9985332508006567, "top": 805, "right": 2035, "bottom": 3180, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714089f.jpg"} -{"rects": [{"solidity": 0.9985335022223082, "top": 395, "right": 3195, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705614f.jpg"} -{"rects": [{"solidity": 0.9985337187846915, "top": 435, "right": 5110, "bottom": 3705, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715183f.jpg"} -{"rects": [{"solidity": 0.9985339893563611, "top": 405, "right": 3175, "bottom": 1980, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717894f.jpg"} -{"rects": [{"solidity": 0.9985339989348815, "top": 780, "right": 3515, "bottom": 4805, "left": 315}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/733598f.jpg"} -{"rects": [{"solidity": 0.9985341859008398, "top": 2165, "right": 2885, "bottom": 3800, "left": 465}, {"solidity": 0.9965655281969817, "top": 2170, "right": 5660, "bottom": 3810, "left": 3235}, {"solidity": 0.9966788072945469, "top": 425, "right": 5675, "bottom": 2065, "left": 3255}, {"solidity": 0.9975859405175743, "top": 420, "right": 2870, "bottom": 2050, "left": 470}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728886f.jpg"} -{"rects": [{"solidity": 0.9985352003613602, "top": 445, "right": 3185, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714777f.jpg"} -{"rects": [{"solidity": 0.9985353790006963, "top": 370, "right": 3360, "bottom": 2285, "left": 625}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718540f.jpg"} -{"rects": [{"solidity": 0.9985353924126514, "top": 2330, "right": 2970, "bottom": 3895, "left": 605}, {"solidity": 0.9942902654867256, "top": 520, "right": 2910, "bottom": 2055, "left": 580}, {"solidity": 0.9959602315180592, "top": 4165, "right": 2945, "bottom": 5690, "left": 625}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734301f.jpg"} -{"rects": [{"solidity": 0.9985356339656684, "top": 2285, "right": 3145, "bottom": 3910, "left": 705}, {"solidity": 0.9972550863504086, "top": 420, "right": 3135, "bottom": 2055, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702424f.jpg"} -{"rects": [{"solidity": 0.9985357498598366, "top": 490, "right": 5060, "bottom": 3730, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700365f.jpg"} -{"rects": [{"solidity": 0.9985361383562814, "top": 350, "right": 5110, "bottom": 3580, "left": 1100}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733497f.jpg"} -{"rects": [{"solidity": 0.998536190782485, "top": 505, "right": 2625, "bottom": 3690, "left": 600}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733042f.jpg"} -{"rects": [{"solidity": 0.9985368264314392, "top": 745, "right": 2020, "bottom": 3165, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702479f.jpg"} -{"rects": [{"solidity": 0.998538249676071, "top": 315, "right": 3185, "bottom": 1940, "left": 805}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702337f.jpg"} -{"rects": [{"solidity": 0.9985388581038238, "top": 945, "right": 2705, "bottom": 3960, "left": 285}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517265.jpg"} -{"rects": [{"solidity": 0.9985389012537428, "top": 830, "right": 1970, "bottom": 3205, "left": 645}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724365f.jpg"} -{"rects": [{"solidity": 0.9985389750860307, "top": 415, "right": 3120, "bottom": 2000, "left": 735}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722707f.jpg"} -{"rects": [{"solidity": 0.998540162463363, "top": 1010, "right": 3520, "bottom": 5120, "left": 260}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/713889f.jpg"} -{"rects": [{"solidity": 0.9985405113736096, "top": 790, "right": 5740, "bottom": 3195, "left": 4130}, {"solidity": 0.9957873823514556, "top": 775, "right": 2030, "bottom": 3160, "left": 455}, {"solidity": 0.9969695231217287, "top": 790, "right": 3875, "bottom": 3175, "left": 2310}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719352f.jpg"} -{"rects": [{"solidity": 0.99854087137584, "top": 840, "right": 3800, "bottom": 2840, "left": 610}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733047f.jpg"} -{"rects": [{"solidity": 0.998540898434843, "top": 420, "right": 5030, "bottom": 3630, "left": 950}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732684f.jpg"} -{"rects": [{"solidity": 0.9985410092102811, "top": 2225, "right": 3070, "bottom": 3840, "left": 645}, {"solidity": 0.9972522642774823, "top": 390, "right": 3055, "bottom": 2000, "left": 645}, {"solidity": 0.9968681970461329, "top": 4075, "right": 3065, "bottom": 5675, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730464f.jpg"} -{"rects": [{"solidity": 0.9985410164566147, "top": 550, "right": 5450, "bottom": 4000, "left": 1205}], "shape": {"h": 4410, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/708400f.jpg"} -{"rects": [{"solidity": 0.998541861138829, "top": 440, "right": 3195, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704885f.jpg"} -{"rects": [{"solidity": 0.9985422599173193, "top": 745, "right": 2075, "bottom": 3155, "left": 460}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712443f.jpg"} -{"rects": [{"solidity": 0.9985423185530031, "top": 470, "right": 5150, "bottom": 3735, "left": 1115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723044f.jpg"} -{"rects": [{"solidity": 0.9985425372749317, "top": 420, "right": 3170, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732568f.jpg"} -{"rects": [{"solidity": 0.9985431133317646, "top": 660, "right": 2785, "bottom": 2020, "left": 935}, {"solidity": 0.995843143948712, "top": 2025, "right": 2760, "bottom": 3420, "left": 950}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702721f.jpg"} -{"rects": [{"solidity": 0.998543147125953, "top": 2060, "right": 3240, "bottom": 3670, "left": 825}, {"solidity": 0.9974070744149773, "top": 425, "right": 3025, "bottom": 1825, "left": 1210}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727747f.jpg"} -{"rects": [{"solidity": 0.998543596831435, "top": 355, "right": 3200, "bottom": 1970, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701693f.jpg"} -{"rects": [{"solidity": 0.998544989689662, "top": 540, "right": 3130, "bottom": 2160, "left": 715}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701266f.jpg"} -{"rects": [{"solidity": 0.9985450439551576, "top": 455, "right": 3185, "bottom": 2065, "left": 765}], "shape": {"h": 6140, "w": 3765}, "file": "/usr/local/google/home/danvk/milstein/701115f.jpg"} -{"rects": [{"solidity": 0.998545485059754, "top": 825, "right": 5260, "bottom": 3530, "left": 1275}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718163f.jpg"} -{"rects": [{"solidity": 0.9985461956080829, "top": 445, "right": 3185, "bottom": 2050, "left": 770}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730983f.jpg"} -{"rects": [{"solidity": 0.9985470233180355, "top": 770, "right": 1965, "bottom": 3190, "left": 340}, {"solidity": 0.9979800534329365, "top": 790, "right": 3815, "bottom": 3180, "left": 2190}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704531f.jpg"} -{"rects": [{"solidity": 0.9985474156543694, "top": 130, "right": 3030, "bottom": 3405, "left": 130}], "shape": {"h": 3965, "w": 3160}, "file": "/usr/local/google/home/danvk/milstein/1557948.jpg"} -{"rects": [{"solidity": 0.9985475764274202, "top": 2080, "right": 3070, "bottom": 3710, "left": 645}, {"solidity": 0.9976449751984445, "top": 410, "right": 3040, "bottom": 2035, "left": 620}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702400f.jpg"} -{"rects": [{"solidity": 0.9985482147822566, "top": 430, "right": 5145, "bottom": 3615, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707666f.jpg"} -{"rects": [{"solidity": 0.9985485306871119, "top": 410, "right": 4985, "bottom": 3660, "left": 960}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732673f.jpg"} -{"rects": [{"solidity": 0.9985485515616945, "top": 505, "right": 5020, "bottom": 3795, "left": 960}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705318f.jpg"} -{"rects": [{"solidity": 0.9985491125405039, "top": 490, "right": 4960, "bottom": 3580, "left": 1090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711496f.jpg"} -{"rects": [{"solidity": 0.9985491775237922, "top": 560, "right": 2660, "bottom": 3610, "left": 660}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715538f.jpg"} -{"rects": [{"solidity": 0.9985491999972497, "top": 1115, "right": 3300, "bottom": 2905, "left": 1255}, {"solidity": 0.9458407676925783, "top": 3355, "right": 2035, "bottom": 5530, "left": 360}, {"solidity": 0.9428249033613132, "top": 3345, "right": 4185, "bottom": 5455, "left": 2515}], "shape": {"h": 5995, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465632.jpg"} -{"rects": [{"solidity": 0.9985496148529822, "top": 395, "right": 3220, "bottom": 2005, "left": 810}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710014f.jpg"} -{"rects": [{"solidity": 0.9985497253218606, "top": 2245, "right": 3185, "bottom": 3850, "left": 765}, {"solidity": 0.9973264458256907, "top": 415, "right": 3195, "bottom": 2020, "left": 775}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723155f.jpg"} -{"rects": [{"solidity": 0.9985497937263679, "top": 460, "right": 3255, "bottom": 2050, "left": 865}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708148f.jpg"} -{"rects": [{"solidity": 0.9985498229202298, "top": 885, "right": 3485, "bottom": 4960, "left": 250}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715648f.jpg"} -{"rects": [{"solidity": 0.9985500021797353, "top": 305, "right": 5080, "bottom": 3585, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700292f.jpg"} -{"rects": [{"solidity": 0.998550710665934, "top": 440, "right": 3150, "bottom": 2055, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707262f.jpg"} -{"rects": [{"solidity": 0.9985511474779357, "top": 740, "right": 2055, "bottom": 3140, "left": 475}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706663f.jpg"} -{"rects": [{"solidity": 0.9985515298863384, "top": 2230, "right": 3100, "bottom": 3855, "left": 690}, {"solidity": 0.9957486269567092, "top": 405, "right": 3115, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726712f.jpg"} -{"rects": [{"solidity": 0.9985516962353874, "top": 940, "right": 3560, "bottom": 4915, "left": 325}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712974f.jpg"} -{"rects": [{"solidity": 0.9985521292102558, "top": 310, "right": 5335, "bottom": 3520, "left": 1335}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712637f.jpg"} -{"rects": [{"solidity": 0.9985521691928839, "top": 915, "right": 3575, "bottom": 4955, "left": 290}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710829f.jpg"} -{"rects": [{"solidity": 0.9985521906196172, "top": 440, "right": 3190, "bottom": 2045, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703786f.jpg"} -{"rects": [{"solidity": 0.9985523170984908, "top": 480, "right": 5095, "bottom": 3760, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720601f.jpg"} -{"rects": [{"solidity": 0.9985527187484075, "top": 530, "right": 3300, "bottom": 2555, "left": 250}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715640f.jpg"} -{"rects": [{"solidity": 0.9985527820089044, "top": 960, "right": 2730, "bottom": 3965, "left": 310}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516949.jpg"} -{"rects": [{"solidity": 0.9985534848959715, "top": 685, "right": 2765, "bottom": 2105, "left": 925}, {"solidity": 0.9966265574868581, "top": 2160, "right": 5280, "bottom": 3590, "left": 3460}, {"solidity": 0.9965807725605782, "top": 660, "right": 5260, "bottom": 2085, "left": 3435}, {"solidity": 0.9958121953645678, "top": 2170, "right": 2745, "bottom": 3585, "left": 950}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705911f.jpg"} -{"rects": [{"solidity": 0.9985536069426867, "top": 770, "right": 3890, "bottom": 3190, "left": 2280}, {"solidity": 0.9965019205142275, "top": 790, "right": 2040, "bottom": 3195, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713431f.jpg"} -{"rects": [{"solidity": 0.9985547077051792, "top": 1030, "right": 3655, "bottom": 5060, "left": 350}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/730979f.jpg"} -{"rects": [{"solidity": 0.9985547867215556, "top": 4090, "right": 3075, "bottom": 5660, "left": 690}, {"solidity": 0.9902795551569747, "top": 415, "right": 3085, "bottom": 1990, "left": 695}, {"solidity": 0.9928458730878877, "top": 2235, "right": 3085, "bottom": 3795, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730918f.jpg"} -{"rects": [{"solidity": 0.9985548231136336, "top": 745, "right": 1990, "bottom": 3140, "left": 390}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718843f.jpg"} -{"rects": [{"solidity": 0.9985550392521844, "top": 460, "right": 5045, "bottom": 3705, "left": 1050}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726942f.jpg"} -{"rects": [{"solidity": 0.9985560242724093, "top": 330, "right": 5115, "bottom": 3575, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704042f.jpg"} -{"rects": [{"solidity": 0.9985563367553499, "top": 705, "right": 2515, "bottom": 3475, "left": 505}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714182f.jpg"} -{"rects": [{"solidity": 0.9985563913668319, "top": 445, "right": 3190, "bottom": 2055, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706847f.jpg"} -{"rects": [{"solidity": 0.9985573185101845, "top": 385, "right": 5095, "bottom": 3625, "left": 1095}], "shape": {"h": 3890, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728150f.jpg"} -{"rects": [{"solidity": 0.9985580108344051, "top": 330, "right": 3135, "bottom": 1955, "left": 750}, {"solidity": 0.9958339347338311, "top": 2175, "right": 3120, "bottom": 3820, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704343f.jpg"} -{"rects": [{"solidity": 0.9985580135757747, "top": 615, "right": 4235, "bottom": 2385, "left": 3020}, {"solidity": 0.9962307507430052, "top": 585, "right": 1445, "bottom": 2380, "left": 245}, {"solidity": 0.9970718368209185, "top": 590, "right": 2830, "bottom": 2385, "left": 1630}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716397f.jpg"} -{"rects": [{"solidity": 0.9985587679231172, "top": 440, "right": 3200, "bottom": 2060, "left": 780}, {"solidity": 0.9967906501583793, "top": 2315, "right": 3200, "bottom": 3930, "left": 775}, {"solidity": 0.995899325372884, "top": 4155, "right": 3190, "bottom": 5775, "left": 765}], "shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/700841f.jpg"} -{"rects": [{"solidity": 0.9985588356943439, "top": 330, "right": 3185, "bottom": 1945, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711045f.jpg"} -{"rects": [{"solidity": 0.998559206129139, "top": 490, "right": 5025, "bottom": 3780, "left": 925}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730054f.jpg"} -{"rects": [{"solidity": 0.9985592618181461, "top": 445, "right": 3155, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719983f.jpg"} -{"rects": [{"solidity": 0.9985595172436168, "top": 800, "right": 2020, "bottom": 3215, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732362f.jpg"} -{"rects": [{"solidity": 0.998559717087285, "top": 405, "right": 3220, "bottom": 2015, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706665f.jpg"} -{"rects": [{"solidity": 0.9985598484457961, "top": 430, "right": 3145, "bottom": 2040, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701411f.jpg"} -{"rects": [{"solidity": 0.9985599305610353, "top": 835, "right": 2060, "bottom": 3225, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712534f.jpg"} -{"rects": [{"solidity": 0.9985604187174377, "top": 450, "right": 5090, "bottom": 3700, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700346f.jpg"} -{"rects": [{"solidity": 0.9985606515927131, "top": 480, "right": 4950, "bottom": 3580, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711471f.jpg"} -{"rects": [{"solidity": 0.9985607926317138, "top": 280, "right": 4205, "bottom": 3665, "left": 1595}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717160f.jpg"} -{"rects": [{"solidity": 0.9985610402908719, "top": 475, "right": 4965, "bottom": 3675, "left": 1045}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724634f.jpg"} -{"rects": [{"solidity": 0.9985612818481441, "top": 370, "right": 4435, "bottom": 2790, "left": 1405}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508699.jpg"} -{"rects": [{"solidity": 0.9985614223068834, "top": 650, "right": 2730, "bottom": 2045, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706781f.jpg"} -{"rects": [{"solidity": 0.9985615734624982, "top": 515, "right": 5175, "bottom": 3805, "left": 1140}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712306f.jpg"} -{"rects": [{"solidity": 0.9985618121167329, "top": 470, "right": 3140, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723502f.jpg"} -{"rects": [{"solidity": 0.998562378627048, "top": 480, "right": 5110, "bottom": 3765, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700995f.jpg"} -{"rects": [{"solidity": 0.9985624336216052, "top": 505, "right": 5040, "bottom": 3790, "left": 1010}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712453f.jpg"} -{"rects": [{"solidity": 0.99856279090877, "top": 440, "right": 3455, "bottom": 2275, "left": 735}], "shape": {"h": 6885, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/701700f.jpg"} -{"rects": [{"solidity": 0.9985628977989471, "top": 440, "right": 5150, "bottom": 3410, "left": 1320}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730035f.jpg"} -{"rects": [{"solidity": 0.9985630348144635, "top": 265, "right": 3685, "bottom": 2700, "left": 735}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508195.jpg"} -{"rects": [{"solidity": 0.9985634327148203, "top": 780, "right": 2190, "bottom": 3190, "left": 580}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712212f.jpg"} -{"rects": [{"solidity": 0.998563435449359, "top": 290, "right": 3300, "bottom": 2170, "left": 865}], "shape": {"h": 2540, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727099f.jpg"} -{"rects": [{"solidity": 0.9985635516490671, "top": 470, "right": 3075, "bottom": 1955, "left": 990}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701852f.jpg"} -{"rects": [{"solidity": 0.9985637037115006, "top": 1045, "right": 3520, "bottom": 5060, "left": 250}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718719f.jpg"} -{"rects": [{"solidity": 0.9985639327959803, "top": 3470, "right": 3230, "bottom": 5065, "left": 820}, {"solidity": 0.9968091746242603, "top": 1375, "right": 3230, "bottom": 2960, "left": 850}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/730803f.jpg"} -{"rects": [{"solidity": 0.9985640246921731, "top": 740, "right": 2020, "bottom": 3135, "left": 430}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723580f.jpg"} -{"rects": [{"solidity": 0.9985644160867487, "top": 360, "right": 5340, "bottom": 3600, "left": 1370}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723655f.jpg"} -{"rects": [{"solidity": 0.9985650814546652, "top": 420, "right": 2965, "bottom": 2020, "left": 575}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702274f.jpg"} -{"rects": [{"solidity": 0.9985656157881965, "top": 1295, "right": 3660, "bottom": 5410, "left": 415}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/731199f.jpg"} -{"rects": [{"solidity": 0.9985656504378163, "top": 330, "right": 4975, "bottom": 3600, "left": 960}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732899f.jpg"} -{"rects": [{"solidity": 0.9985658672580511, "top": 385, "right": 5040, "bottom": 3650, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709493f.jpg"} -{"rects": [{"solidity": 0.9985662040417188, "top": 835, "right": 2210, "bottom": 3215, "left": 610}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725166f.jpg"} -{"rects": [{"solidity": 0.9985671977631079, "top": 820, "right": 2150, "bottom": 3210, "left": 560}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710919f.jpg"} -{"rects": [{"solidity": 0.9985673492379274, "top": 745, "right": 2025, "bottom": 3145, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721941f.jpg"} -{"rects": [{"solidity": 0.9985673844369497, "top": 1070, "right": 3475, "bottom": 5105, "left": 210}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701844f.jpg"} -{"rects": [{"solidity": 0.9985674299265249, "top": 325, "right": 5275, "bottom": 3545, "left": 1265}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727859f.jpg"} -{"rects": [{"solidity": 0.9985679241097642, "top": 860, "right": 1970, "bottom": 3270, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733910f.jpg"} -{"rects": [{"solidity": 0.9985680748887092, "top": 1150, "right": 3040, "bottom": 2760, "left": 630}, {"solidity": 0.9954217016551558, "top": 1140, "right": 5480, "bottom": 2750, "left": 3070}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712766f.jpg"} -{"rects": [{"solidity": 0.998568365109301, "top": 595, "right": 4125, "bottom": 3630, "left": 2070}, {"solidity": 0.9971569728719545, "top": 770, "right": 1995, "bottom": 3160, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719173f.jpg"} -{"rects": [{"solidity": 0.9985686972856741, "top": 460, "right": 5165, "bottom": 3720, "left": 1125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733662f.jpg"} -{"rects": [{"solidity": 0.9985688247254446, "top": 770, "right": 3820, "bottom": 3175, "left": 2230}, {"solidity": 0.9970248172974822, "top": 780, "right": 5655, "bottom": 3175, "left": 4050}, {"solidity": 0.9967126133737463, "top": 775, "right": 2020, "bottom": 3175, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730482f.jpg"} -{"rects": [{"solidity": 0.998569006801283, "top": 465, "right": 2220, "bottom": 2550, "left": 735}, {"solidity": 0.9963112716126876, "top": 480, "right": 3995, "bottom": 2565, "left": 2510}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716109f.jpg"} -{"rects": [{"solidity": 0.9985694392435873, "top": 465, "right": 5085, "bottom": 3675, "left": 1075}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721457f.jpg"} -{"rects": [{"solidity": 0.998569896317483, "top": 325, "right": 5105, "bottom": 3550, "left": 1035}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707055f.jpg"} -{"rects": [{"solidity": 0.9985699125122949, "top": 350, "right": 3165, "bottom": 1975, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702677f.jpg"} -{"rects": [{"solidity": 0.9985701808300715, "top": 795, "right": 3840, "bottom": 3210, "left": 2230}, {"solidity": 0.9968849905729977, "top": 790, "right": 1945, "bottom": 3200, "left": 350}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730082f.jpg"} -{"rects": [{"solidity": 0.9985705260577259, "top": 640, "right": 3480, "bottom": 4740, "left": 225}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704382f.jpg"} -{"rects": [{"solidity": 0.9985705497938236, "top": 500, "right": 5380, "bottom": 3730, "left": 1405}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713331f.jpg"} -{"rects": [{"solidity": 0.9985708864006118, "top": 525, "right": 5150, "bottom": 3810, "left": 1110}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712279f.jpg"} -{"rects": [{"solidity": 0.9985710615888511, "top": 2290, "right": 3130, "bottom": 3905, "left": 705}, {"solidity": 0.9963249336401773, "top": 410, "right": 3125, "bottom": 2040, "left": 710}, {"solidity": 0.9973814157726271, "top": 4135, "right": 3125, "bottom": 5755, "left": 705}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729957f.jpg"} -{"rects": [{"solidity": 0.9985712313417261, "top": 855, "right": 1990, "bottom": 3275, "left": 370}, {"solidity": 0.9973814148090172, "top": 860, "right": 3840, "bottom": 3285, "left": 2225}, {"solidity": 0.9983582345203815, "top": 870, "right": 5685, "bottom": 3290, "left": 4075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733633f.jpg"} -{"rects": [{"solidity": 0.9985722819201659, "top": 440, "right": 3115, "bottom": 2040, "left": 720}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730481f.jpg"} -{"rects": [{"solidity": 0.9985724319359651, "top": 445, "right": 3415, "bottom": 2455, "left": 405}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707867f.jpg"} -{"rects": [{"solidity": 0.9985727847278213, "top": 860, "right": 2090, "bottom": 3270, "left": 485}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722680f.jpg"} -{"rects": [{"solidity": 0.9985727954844924, "top": 410, "right": 3170, "bottom": 2020, "left": 745}, {"solidity": 0.9970240215539854, "top": 2265, "right": 3165, "bottom": 3870, "left": 745}, {"solidity": 0.9978616046077715, "top": 4115, "right": 3160, "bottom": 5715, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734098f.jpg"} -{"rects": [{"solidity": 0.9985728377980194, "top": 1410, "right": 3905, "bottom": 5495, "left": 300}], "shape": {"h": 6875, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708859f.jpg"} -{"rects": [{"solidity": 0.9985733018284179, "top": 440, "right": 3175, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734568f.jpg"} -{"rects": [{"solidity": 0.9985735030597558, "top": 800, "right": 3805, "bottom": 3215, "left": 2180}, {"solidity": 0.997608319562074, "top": 800, "right": 1945, "bottom": 3215, "left": 330}, {"solidity": 0.9954593992293049, "top": 2215, "right": 5440, "bottom": 3190, "left": 4040}, {"solidity": 0.9954718664249076, "top": 820, "right": 5440, "bottom": 1770, "left": 4065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710383f.jpg"} -{"rects": [{"solidity": 0.9985735853284704, "top": 1160, "right": 3110, "bottom": 4540, "left": 520}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/718946f.jpg"} -{"rects": [{"solidity": 0.9985736806546055, "top": 820, "right": 4005, "bottom": 3220, "left": 2400}, {"solidity": 0.9963236494472414, "top": 820, "right": 2160, "bottom": 3220, "left": 550}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710222f.jpg"} -{"rects": [{"solidity": 0.9985752021131834, "top": 815, "right": 2025, "bottom": 3235, "left": 400}, {"solidity": 0.996998295723933, "top": 840, "right": 3900, "bottom": 3260, "left": 2270}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732481f.jpg"} -{"rects": [{"solidity": 0.9985756959594234, "top": 840, "right": 2090, "bottom": 3250, "left": 470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702071f.jpg"} -{"rects": [{"solidity": 0.9985757562056337, "top": 645, "right": 2885, "bottom": 2085, "left": 950}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719631f.jpg"} -{"rects": [{"solidity": 0.9985759793697144, "top": 320, "right": 5090, "bottom": 3595, "left": 1050}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701782f.jpg"} -{"rects": [{"solidity": 0.9985760747126244, "top": 1060, "right": 1910, "bottom": 3450, "left": 335}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717829f.jpg"} -{"rects": [{"solidity": 0.9985761037620735, "top": 395, "right": 4915, "bottom": 3615, "left": 895}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718477f.jpg"} -{"rects": [{"solidity": 0.9985761913598812, "top": 2260, "right": 3200, "bottom": 3885, "left": 780}, {"solidity": 0.9969752416730088, "top": 405, "right": 3210, "bottom": 2010, "left": 785}, {"solidity": 0.9946588930409094, "top": 4135, "right": 3190, "bottom": 5760, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726072f.jpg"} -{"rects": [{"solidity": 0.9985767224349608, "top": 465, "right": 5275, "bottom": 3650, "left": 1315}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730738f.jpg"} -{"rects": [{"solidity": 0.9985769235733739, "top": 405, "right": 3200, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727594f.jpg"} -{"rects": [{"solidity": 0.9985774012790515, "top": 440, "right": 3185, "bottom": 2055, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707161f.jpg"} -{"rects": [{"solidity": 0.9985777612691648, "top": 645, "right": 2645, "bottom": 2065, "left": 830}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703823f.jpg"} -{"rects": [{"solidity": 0.9985778818805421, "top": 515, "right": 5075, "bottom": 3770, "left": 1065}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700409f.jpg"} -{"rects": [{"solidity": 0.9985778915637453, "top": 350, "right": 5275, "bottom": 3570, "left": 1265}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727863f.jpg"} -{"rects": [{"solidity": 0.9985784456826634, "top": 870, "right": 2265, "bottom": 3600, "left": 450}], "shape": {"h": 4425, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/701644f.jpg"} -{"rects": [{"solidity": 0.9985785629339554, "top": 430, "right": 5400, "bottom": 3660, "left": 1410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718192f.jpg"} -{"rects": [{"solidity": 0.9985788000699668, "top": 495, "right": 5130, "bottom": 3740, "left": 1060}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716819f.jpg"} -{"rects": [{"solidity": 0.9985789689368113, "top": 430, "right": 5280, "bottom": 3635, "left": 1295}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731100f.jpg"} -{"rects": [{"solidity": 0.9985794471647963, "top": 2515, "right": 2490, "bottom": 3995, "left": 400}, {"solidity": 0.9953626932211158, "top": 715, "right": 2490, "bottom": 2165, "left": 405}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716028f.jpg"} -{"rects": [{"solidity": 0.9985795386195155, "top": 375, "right": 5040, "bottom": 3625, "left": 1025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708669f.jpg"} -{"rects": [{"solidity": 0.9985795454545454, "top": 405, "right": 3225, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/725826f.jpg"} -{"rects": [{"solidity": 0.9985802919570043, "top": 495, "right": 5040, "bottom": 3790, "left": 1005}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712229f.jpg"} -{"rects": [{"solidity": 0.9985804365400162, "top": 800, "right": 2030, "bottom": 3215, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724238f.jpg"} -{"rects": [{"solidity": 0.9985805213829222, "top": 370, "right": 3160, "bottom": 1975, "left": 740}, {"solidity": 0.9965725049519051, "top": 2205, "right": 3150, "bottom": 3825, "left": 730}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728559f.jpg"} -{"rects": [{"solidity": 0.998580621649356, "top": 3160, "right": 1830, "bottom": 5575, "left": 200}, {"solidity": 0.9966082695448868, "top": 465, "right": 1825, "bottom": 2885, "left": 195}, {"solidity": 0.9974882381923044, "top": 3165, "right": 3540, "bottom": 5580, "left": 1920}, {"solidity": 0.9977822905586178, "top": 470, "right": 3540, "bottom": 2880, "left": 1920}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718664f.jpg"} -{"rects": [{"solidity": 0.9985808379263306, "top": 315, "right": 4085, "bottom": 3730, "left": 1455}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709097f.jpg"} -{"rects": [{"solidity": 0.9985811080111598, "top": 370, "right": 5025, "bottom": 3550, "left": 1060}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723891f.jpg"} -{"rects": [{"solidity": 0.9985816955016497, "top": 860, "right": 5255, "bottom": 3565, "left": 1260}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718164f.jpg"} -{"rects": [{"solidity": 0.9985817742908871, "top": 735, "right": 2005, "bottom": 3125, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726191f.jpg"} -{"rects": [{"solidity": 0.9985826280381944, "top": 910, "right": 3595, "bottom": 4905, "left": 350}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726805f.jpg"} -{"rects": [{"solidity": 0.9985832578600078, "top": 2300, "right": 3105, "bottom": 3910, "left": 690}, {"solidity": 0.9973855615528338, "top": 420, "right": 3105, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734409f.jpg"} -{"rects": [{"solidity": 0.998583285517788, "top": 1250, "right": 3160, "bottom": 5255, "left": 425}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718490f.jpg"} -{"rects": [{"solidity": 0.9985834221402022, "top": 615, "right": 2010, "bottom": 3020, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702326f.jpg"} -{"rects": [{"solidity": 0.9985836286399753, "top": 1130, "right": 3395, "bottom": 4945, "left": 405}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712664f.jpg"} -{"rects": [{"solidity": 0.9985837423154907, "top": 350, "right": 5225, "bottom": 3625, "left": 1205}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724190f.jpg"} -{"rects": [{"solidity": 0.9985842026825633, "top": 870, "right": 3735, "bottom": 3260, "left": 2110}, {"solidity": 0.9967090667061086, "top": 875, "right": 1875, "bottom": 3245, "left": 295}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731105f.jpg"} -{"rects": [{"solidity": 0.9985842504541084, "top": 1015, "right": 3490, "bottom": 5045, "left": 225}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707852f.jpg"} -{"rects": [{"solidity": 0.9985848965750872, "top": 1250, "right": 3125, "bottom": 5275, "left": 370}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723983f.jpg"} -{"rects": [{"solidity": 0.9985850761490536, "top": 405, "right": 5100, "bottom": 3710, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714590f.jpg"} -{"rects": [{"solidity": 0.9985853595945339, "top": 430, "right": 3170, "bottom": 2055, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/706287f.jpg"} -{"rects": [{"solidity": 0.9985856821571825, "top": 455, "right": 5000, "bottom": 3695, "left": 990}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723486f.jpg"} -{"rects": [{"solidity": 0.9985870217267214, "top": 1105, "right": 3515, "bottom": 5120, "left": 285}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724584f.jpg"} -{"rects": [{"solidity": 0.9985873632011429, "top": 435, "right": 5100, "bottom": 3710, "left": 1050}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707237f.jpg"} -{"rects": [{"solidity": 0.998587540226737, "top": 435, "right": 5290, "bottom": 3640, "left": 1285}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730741f.jpg"} -{"rects": [{"solidity": 0.9985881912047866, "top": 480, "right": 3075, "bottom": 2090, "left": 655}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700637f.jpg"} -{"rects": [{"solidity": 0.9985882687393596, "top": 395, "right": 3195, "bottom": 2005, "left": 775}, {"solidity": 0.9975084615235272, "top": 2240, "right": 3200, "bottom": 3850, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713457f.jpg"} -{"rects": [{"solidity": 0.9985887884571292, "top": 800, "right": 2025, "bottom": 3220, "left": 415}, {"solidity": 0.9962978397604256, "top": 805, "right": 3885, "bottom": 3215, "left": 2255}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709519f.jpg"} -{"rects": [{"solidity": 0.9985898256347449, "top": 560, "right": 5035, "bottom": 3825, "left": 995}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702227f.jpg"} -{"rects": [{"solidity": 0.998589967716003, "top": 390, "right": 3245, "bottom": 2020, "left": 825}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705813f.jpg"} -{"rects": [{"solidity": 0.9985907041629382, "top": 435, "right": 5110, "bottom": 3700, "left": 1065}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705546f.jpg"} -{"rects": [{"solidity": 0.9985916803410417, "top": 2235, "right": 5015, "bottom": 3765, "left": 3070}, {"solidity": 0.9910497673737854, "top": 640, "right": 2680, "bottom": 2075, "left": 695}, {"solidity": 0.9940955687756896, "top": 625, "right": 5040, "bottom": 2050, "left": 3045}, {"solidity": 0.9966805612950752, "top": 2270, "right": 2675, "bottom": 3695, "left": 705}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731246f.jpg"} -{"rects": [{"solidity": 0.9985923977895432, "top": 360, "right": 2375, "bottom": 1565, "left": 570}], "shape": {"h": 4650, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/709631f.jpg"} -{"rects": [{"solidity": 0.9985925450288301, "top": 415, "right": 3055, "bottom": 2025, "left": 645}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728386f.jpg"} -{"rects": [{"solidity": 0.998592616892852, "top": 475, "right": 4900, "bottom": 3465, "left": 1145}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718182f.jpg"} -{"rects": [{"solidity": 0.9985929144304843, "top": 1095, "right": 3395, "bottom": 4720, "left": 505}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731266f.jpg"} -{"rects": [{"solidity": 0.9985930389077623, "top": 355, "right": 3265, "bottom": 1975, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707340f.jpg"} -{"rects": [{"solidity": 0.9985934532530915, "top": 1110, "right": 3505, "bottom": 5115, "left": 295}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/716985f.jpg"} -{"rects": [{"solidity": 0.9985935801449645, "top": 660, "right": 2055, "bottom": 3075, "left": 440}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705369f.jpg"} -{"rects": [{"solidity": 0.9985941424752766, "top": 2260, "right": 3120, "bottom": 3875, "left": 705}, {"solidity": 0.9979717540751816, "top": 410, "right": 3110, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723336f.jpg"} -{"rects": [{"solidity": 0.9985943873789748, "top": 780, "right": 2065, "bottom": 3180, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713687f.jpg"} -{"rects": [{"solidity": 0.9985951851682844, "top": 455, "right": 3155, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713539f.jpg"} -{"rects": [{"solidity": 0.9985952003218387, "top": 390, "right": 3200, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734230f.jpg"} -{"rects": [{"solidity": 0.9985952084324652, "top": 480, "right": 4995, "bottom": 3590, "left": 1080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708592f.jpg"} -{"rects": [{"solidity": 0.9985954948554389, "top": 790, "right": 5275, "bottom": 3595, "left": 1175}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730031f.jpg"} -{"rects": [{"solidity": 0.9985961231908962, "top": 470, "right": 5110, "bottom": 3765, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714425f.jpg"} -{"rects": [{"solidity": 0.9985964238432244, "top": 705, "right": 2470, "bottom": 3760, "left": 455}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712719f.jpg"} -{"rects": [{"solidity": 0.9985972828485948, "top": 450, "right": 4545, "bottom": 3640, "left": 2535}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732981f.jpg"} -{"rects": [{"solidity": 0.9985973942415957, "top": 2250, "right": 2805, "bottom": 4655, "left": 1180}, {"solidity": 0.99732996653601, "top": 375, "right": 3200, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729981f.jpg"} -{"rects": [{"solidity": 0.9985974664324822, "top": 445, "right": 3195, "bottom": 2065, "left": 780}, {"solidity": 0.9959115285837199, "top": 4130, "right": 3190, "bottom": 5760, "left": 775}, {"solidity": 0.9964192973481948, "top": 2310, "right": 3190, "bottom": 3920, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721623f.jpg"} -{"rects": [{"solidity": 0.9985975729464025, "top": 460, "right": 5125, "bottom": 3710, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711016f.jpg"} -{"rects": [{"solidity": 0.9985979309834743, "top": 760, "right": 3835, "bottom": 3190, "left": 2225}, {"solidity": 0.9970409332193162, "top": 755, "right": 2005, "bottom": 3170, "left": 385}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731698f.jpg"} -{"rects": [{"solidity": 0.9985987796519632, "top": 375, "right": 5020, "bottom": 3580, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701976f.jpg"} -{"rects": [{"solidity": 0.9985989243354575, "top": 4140, "right": 3125, "bottom": 5750, "left": 705}, {"solidity": 0.9957046305628093, "top": 2240, "right": 3145, "bottom": 3865, "left": 725}, {"solidity": 0.9953624579621408, "top": 365, "right": 3145, "bottom": 1975, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734327f.jpg"} -{"rects": [{"solidity": 0.9985998274729944, "top": 720, "right": 2040, "bottom": 3140, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720546f.jpg"} -{"rects": [{"solidity": 0.998599922182463, "top": 2230, "right": 3190, "bottom": 3855, "left": 760}, {"solidity": 0.9987256820350275, "top": 425, "right": 3175, "bottom": 2035, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709278f.jpg"} -{"rects": [{"solidity": 0.9986002539806199, "top": 1200, "right": 3600, "bottom": 5190, "left": 400}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733495f.jpg"} -{"rects": [{"solidity": 0.998600588347572, "top": 545, "right": 5015, "bottom": 3740, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709461f.jpg"} -{"rects": [{"solidity": 0.9986006615054701, "top": 415, "right": 5075, "bottom": 3675, "left": 1050}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707606f.jpg"} -{"rects": [{"solidity": 0.9986016876628808, "top": 430, "right": 3165, "bottom": 2040, "left": 745}, {"solidity": 0.9985360707619898, "top": 2250, "right": 3150, "bottom": 3860, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/706638f.jpg"} -{"rects": [{"solidity": 0.9986021222585588, "top": 310, "right": 5125, "bottom": 3555, "left": 1060}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706013f.jpg"} -{"rects": [{"solidity": 0.9986022352894479, "top": 425, "right": 5065, "bottom": 3710, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714954f.jpg"} -{"rects": [{"solidity": 0.9986033229196788, "top": 920, "right": 3535, "bottom": 4965, "left": 250}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720455f.jpg"} -{"rects": [{"solidity": 0.9986036784745508, "top": 855, "right": 5675, "bottom": 3270, "left": 4050}, {"solidity": 0.9975274893540204, "top": 850, "right": 1940, "bottom": 3260, "left": 320}, {"solidity": 0.9974330873105932, "top": 860, "right": 3800, "bottom": 3265, "left": 2180}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723343f.jpg"} -{"rects": [{"solidity": 0.9986046148603758, "top": 480, "right": 5100, "bottom": 3720, "left": 1025}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720409f.jpg"} -{"rects": [{"solidity": 0.9986046239315127, "top": 730, "right": 2200, "bottom": 3135, "left": 590}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702403f.jpg"} -{"rects": [{"solidity": 0.9986052061970172, "top": 920, "right": 2710, "bottom": 3930, "left": 285}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517283.jpg"} -{"rects": [{"solidity": 0.9986056219952437, "top": 500, "right": 4955, "bottom": 3705, "left": 1285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717152f.jpg"} -{"rects": [{"solidity": 0.9986058145246836, "top": 700, "right": 4965, "bottom": 3520, "left": 1195}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731860f.jpg"} -{"rects": [{"solidity": 0.9986062609250845, "top": 465, "right": 4825, "bottom": 3670, "left": 2810}, {"solidity": 0.9975762464319137, "top": 435, "right": 2540, "bottom": 3635, "left": 530}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733102f.jpg"} -{"rects": [{"solidity": 0.99860662864842, "top": 455, "right": 5040, "bottom": 3675, "left": 1060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731512f.jpg"} -{"rects": [{"solidity": 0.998606898101337, "top": 390, "right": 3225, "bottom": 2010, "left": 805}, {"solidity": 0.9974963596680406, "top": 2250, "right": 3220, "bottom": 3855, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731014f.jpg"} -{"rects": [{"solidity": 0.9986081422073643, "top": 425, "right": 3175, "bottom": 2040, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704095f.jpg"} -{"rects": [{"solidity": 0.9986084106619153, "top": 2265, "right": 3210, "bottom": 3870, "left": 800}, {"solidity": 0.9965675394798528, "top": 425, "right": 3200, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724678f.jpg"} -{"rects": [{"solidity": 0.9986086922992886, "top": 2260, "right": 3180, "bottom": 3875, "left": 755}, {"solidity": 0.9960603838633323, "top": 435, "right": 3175, "bottom": 2055, "left": 745}, {"solidity": 0.9979482216307767, "top": 4085, "right": 3185, "bottom": 5700, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701695f.jpg"} -{"rects": [{"solidity": 0.9986088343787749, "top": 525, "right": 5075, "bottom": 3795, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712384f.jpg"} -{"rects": [{"solidity": 0.9986093723784573, "top": 480, "right": 5550, "bottom": 2095, "left": 3135}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721741f.jpg"} -{"rects": [{"solidity": 0.9986104395885171, "top": 395, "right": 5015, "bottom": 3600, "left": 1025}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722940f.jpg"} -{"rects": [{"solidity": 0.9986106330201424, "top": 430, "right": 5165, "bottom": 3695, "left": 1150}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727255f.jpg"} -{"rects": [{"solidity": 0.9986108524244117, "top": 535, "right": 2575, "bottom": 3750, "left": 560}, {"solidity": 0.9966081882737997, "top": 525, "right": 4920, "bottom": 3745, "left": 2895}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733061f.jpg"} -{"rects": [{"solidity": 0.9986109070936344, "top": 300, "right": 3120, "bottom": 1930, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705576f.jpg"} -{"rects": [{"solidity": 0.9986109143325305, "top": 1030, "right": 3935, "bottom": 5540, "left": 315}], "shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711221f.jpg"} -{"rects": [{"solidity": 0.9986109646385041, "top": 540, "right": 5045, "bottom": 3770, "left": 955}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704903f.jpg"} -{"rects": [{"solidity": 0.9986118266148969, "top": 330, "right": 3960, "bottom": 2745, "left": 945}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516899.jpg"} -{"rects": [{"solidity": 0.9986119322417294, "top": 720, "right": 2000, "bottom": 3145, "left": 385}, {"solidity": 0.9969054020076205, "top": 730, "right": 3820, "bottom": 3150, "left": 2205}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727324f.jpg"} -{"rects": [{"solidity": 0.9986125597780096, "top": 795, "right": 2020, "bottom": 3195, "left": 420}, {"solidity": 0.9972041254092536, "top": 785, "right": 5715, "bottom": 3175, "left": 4125}, {"solidity": 0.9961319940306897, "top": 800, "right": 3860, "bottom": 3180, "left": 2275}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718316f.jpg"} -{"rects": [{"solidity": 0.9986128911661037, "top": 485, "right": 5095, "bottom": 3775, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700996f.jpg"} -{"rects": [{"solidity": 0.9986129550192911, "top": 1035, "right": 3585, "bottom": 5065, "left": 335}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/726711f.jpg"} -{"rects": [{"solidity": 0.9986132382835343, "top": 980, "right": 3240, "bottom": 2180, "left": 1355}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507831.jpg"} -{"rects": [{"solidity": 0.9986132481671601, "top": 845, "right": 2085, "bottom": 3270, "left": 480}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714117f.jpg"} -{"rects": [{"solidity": 0.9986134728580772, "top": 820, "right": 2085, "bottom": 3215, "left": 480}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712620f.jpg"} -{"rects": [{"solidity": 0.9986135758651287, "top": 2945, "right": 3305, "bottom": 4815, "left": 635}, {"solidity": 0.9962415971950712, "top": 515, "right": 3320, "bottom": 2395, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713611f.jpg"} -{"rects": [{"solidity": 0.9986136440127423, "top": 1145, "right": 3545, "bottom": 5140, "left": 335}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723643f.jpg"} -{"rects": [{"solidity": 0.9986138283196487, "top": 970, "right": 3625, "bottom": 5055, "left": 385}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709769f.jpg"} -{"rects": [{"solidity": 0.9986144473004384, "top": 820, "right": 2125, "bottom": 3225, "left": 510}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713278f.jpg"} -{"rects": [{"solidity": 0.998614962930842, "top": 2270, "right": 3270, "bottom": 3880, "left": 855}, {"solidity": 0.9979469111375213, "top": 390, "right": 3260, "bottom": 2000, "left": 845}, {"solidity": 0.9949662254145653, "top": 4090, "right": 3290, "bottom": 5695, "left": 870}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719590f.jpg"} -{"rects": [{"solidity": 0.9986150808851696, "top": 765, "right": 3890, "bottom": 3170, "left": 2290}, {"solidity": 0.998864337574015, "top": 755, "right": 2040, "bottom": 3165, "left": 450}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702613f.jpg"} -{"rects": [{"solidity": 0.9986160793383997, "top": 705, "right": 2690, "bottom": 2145, "left": 865}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726317f.jpg"} -{"rects": [{"solidity": 0.9986162609915424, "top": 2230, "right": 3230, "bottom": 3855, "left": 785}, {"solidity": 0.9970348665372135, "top": 410, "right": 3235, "bottom": 2040, "left": 805}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/716767f.jpg"} -{"rects": [{"solidity": 0.9986165497938481, "top": 530, "right": 5030, "bottom": 3780, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707435f.jpg"} -{"rects": [{"solidity": 0.9986169397372755, "top": 445, "right": 5110, "bottom": 3725, "left": 1075}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732755f.jpg"} -{"rects": [{"solidity": 0.9986171123682817, "top": 390, "right": 5010, "bottom": 3585, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718964f.jpg"} -{"rects": [{"solidity": 0.9986177068861882, "top": 500, "right": 4980, "bottom": 3700, "left": 1035}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724636f.jpg"} -{"rects": [{"solidity": 0.9986195931674167, "top": 465, "right": 5200, "bottom": 3700, "left": 1145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730149f.jpg"} -{"rects": [{"solidity": 0.998620644540285, "top": 460, "right": 5110, "bottom": 3770, "left": 1050}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714644f.jpg"} -{"rects": [{"solidity": 0.9986208264801316, "top": 895, "right": 2380, "bottom": 3315, "left": 755}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706912f.jpg"} -{"rects": [{"solidity": 0.9986210862208872, "top": 495, "right": 5085, "bottom": 3790, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701665f.jpg"} -{"rects": [{"solidity": 0.9986213868847938, "top": 515, "right": 5005, "bottom": 3785, "left": 985}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710734f.jpg"} -{"rects": [{"solidity": 0.9986215406167027, "top": 395, "right": 4950, "bottom": 3540, "left": 1030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717163f.jpg"} -{"rects": [{"solidity": 0.9986219319716528, "top": 350, "right": 5240, "bottom": 3645, "left": 1225}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723652f.jpg"} -{"rects": [{"solidity": 0.9986219329902757, "top": 405, "right": 3230, "bottom": 2015, "left": 820}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703586f.jpg"} -{"rects": [{"solidity": 0.9986221161701963, "top": 510, "right": 3040, "bottom": 2120, "left": 630}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707525f.jpg"} -{"rects": [{"solidity": 0.9986222001254318, "top": 860, "right": 2070, "bottom": 3265, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731120f.jpg"} -{"rects": [{"solidity": 0.9986238016157098, "top": 400, "right": 5190, "bottom": 3645, "left": 1095}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722977f.jpg"} -{"rects": [{"solidity": 0.9986246573750327, "top": 900, "right": 2070, "bottom": 3320, "left": 460}, {"solidity": 0.9951447887508389, "top": 890, "right": 3925, "bottom": 3305, "left": 2315}, {"solidity": 0.9967684543044915, "top": 905, "right": 5720, "bottom": 3305, "left": 4130}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728648f.jpg"} -{"rects": [{"solidity": 0.99862527687632, "top": 2095, "right": 3025, "bottom": 3710, "left": 605}, {"solidity": 0.9960580719570532, "top": 2075, "right": 5600, "bottom": 3700, "left": 3175}, {"solidity": 0.9955758200683121, "top": 380, "right": 5600, "bottom": 2005, "left": 3180}, {"solidity": 0.9964390136617678, "top": 385, "right": 3000, "bottom": 2000, "left": 590}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731538f.jpg"} -{"rects": [{"solidity": 0.9986256778859958, "top": 510, "right": 3130, "bottom": 2125, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718226f.jpg"} -{"rects": [{"solidity": 0.9986257898527304, "top": 3285, "right": 3195, "bottom": 6000, "left": 1375}, {"solidity": 0.996631968065307, "top": 305, "right": 3175, "bottom": 3010, "left": 1345}], "shape": {"h": 6885, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/710248f.jpg"} -{"rects": [{"solidity": 0.9986260822457844, "top": 420, "right": 3145, "bottom": 2025, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715740f.jpg"} -{"rects": [{"solidity": 0.9986263146597982, "top": 725, "right": 2670, "bottom": 2160, "left": 830}, {"solidity": 0.995368938092269, "top": 2165, "right": 2680, "bottom": 3595, "left": 830}, {"solidity": 0.9948619598975255, "top": 2125, "right": 5090, "bottom": 3570, "left": 3235}, {"solidity": 0.9963102677765105, "top": 690, "right": 5045, "bottom": 2090, "left": 3290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705291f.jpg"} -{"rects": [{"solidity": 0.9986269227996356, "top": 365, "right": 2920, "bottom": 1975, "left": 535}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704977f.jpg"} -{"rects": [{"solidity": 0.9986270885458723, "top": 1020, "right": 2590, "bottom": 4025, "left": 170}], "shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509279.jpg"} -{"rects": [{"solidity": 0.9986276698858311, "top": 800, "right": 3780, "bottom": 3220, "left": 2155}, {"solidity": 0.9984127340415639, "top": 790, "right": 5645, "bottom": 3205, "left": 4020}, {"solidity": 0.9973323072147348, "top": 820, "right": 1935, "bottom": 3225, "left": 315}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701587f.jpg"} -{"rects": [{"solidity": 0.9986277553355251, "top": 250, "right": 3170, "bottom": 1870, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720379f.jpg"} -{"rects": [{"solidity": 0.9986284900206415, "top": 420, "right": 2560, "bottom": 3615, "left": 560}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733093f.jpg"} -{"rects": [{"solidity": 0.9986285840863633, "top": 425, "right": 3180, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700719f.jpg"} -{"rects": [{"solidity": 0.9986290440757445, "top": 425, "right": 3155, "bottom": 2025, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730553f.jpg"} -{"rects": [{"solidity": 0.9986306332906756, "top": 465, "right": 5650, "bottom": 4110, "left": 1080}], "shape": {"h": 4410, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711320f.jpg"} -{"rects": [{"solidity": 0.9986307375524901, "top": 1740, "right": 3020, "bottom": 4735, "left": 1000}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704279f.jpg"} -{"rects": [{"solidity": 0.9986314563963199, "top": 700, "right": 3860, "bottom": 3110, "left": 2250}, {"solidity": 0.9974794288873712, "top": 695, "right": 5710, "bottom": 3100, "left": 4100}, {"solidity": 0.9960750080617055, "top": 715, "right": 2030, "bottom": 3120, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731640f.jpg"} -{"rects": [{"solidity": 0.9986314577078372, "top": 760, "right": 3845, "bottom": 3175, "left": 2235}, {"solidity": 0.9984915920824768, "top": 765, "right": 2035, "bottom": 3180, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719269f.jpg"} -{"rects": [{"solidity": 0.99863184469301, "top": 420, "right": 5110, "bottom": 3700, "left": 1080}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709002f.jpg"} -{"rects": [{"solidity": 0.9986319058887776, "top": 505, "right": 5055, "bottom": 3785, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700792f.jpg"} -{"rects": [{"solidity": 0.9986319211663504, "top": 630, "right": 2760, "bottom": 2040, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702689f.jpg"} -{"rects": [{"solidity": 0.9986320510440382, "top": 835, "right": 1935, "bottom": 3240, "left": 330}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700700f.jpg"} -{"rects": [{"solidity": 0.9986320635337611, "top": 405, "right": 3200, "bottom": 2025, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706673f.jpg"} -{"rects": [{"solidity": 0.9986321502461053, "top": 1025, "right": 3480, "bottom": 5045, "left": 290}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723971f.jpg"} -{"rects": [{"solidity": 0.9986333690764736, "top": 450, "right": 5105, "bottom": 3730, "left": 1060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708715f.jpg"} -{"rects": [{"solidity": 0.9986335443855795, "top": 455, "right": 3165, "bottom": 2065, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707293f.jpg"} -{"rects": [{"solidity": 0.9986349672168356, "top": 705, "right": 2020, "bottom": 3125, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705123f.jpg"} -{"rects": [{"solidity": 0.998635055390168, "top": 730, "right": 2660, "bottom": 3740, "left": 210}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507921.jpg"} -{"rects": [{"solidity": 0.9986351595430157, "top": 945, "right": 3515, "bottom": 5045, "left": 290}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713986f.jpg"} -{"rects": [{"solidity": 0.9986357187033871, "top": 320, "right": 5075, "bottom": 3570, "left": 1045}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700520f.jpg"} -{"rects": [{"solidity": 0.9986359197662446, "top": 520, "right": 5090, "bottom": 3790, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720874f.jpg"} -{"rects": [{"solidity": 0.9986361657551764, "top": 425, "right": 3170, "bottom": 1995, "left": 815}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713134f.jpg"} -{"rects": [{"solidity": 0.9986362248532754, "top": 1000, "right": 3530, "bottom": 5010, "left": 300}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713293f.jpg"} -{"rects": [{"solidity": 0.9986364585230225, "top": 510, "right": 5680, "bottom": 4225, "left": 1120}], "shape": {"h": 4420, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/711696f.jpg"} -{"rects": [{"solidity": 0.9986370538587319, "top": 2550, "right": 3865, "bottom": 6010, "left": 130}, {"solidity": 0.9953527911589686, "top": 545, "right": 2995, "bottom": 1915, "left": 1205}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/727040f.jpg"} -{"rects": [{"solidity": 0.9986374338228599, "top": 755, "right": 3875, "bottom": 3165, "left": 2270}, {"solidity": 0.9947675430102055, "top": 750, "right": 2005, "bottom": 3155, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720001f.jpg"} -{"rects": [{"solidity": 0.9986374990538188, "top": 750, "right": 1940, "bottom": 3125, "left": 330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705398f.jpg"} -{"rects": [{"solidity": 0.998637959134921, "top": 510, "right": 5035, "bottom": 3760, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713934f.jpg"} -{"rects": [{"solidity": 0.9986385718905021, "top": 1255, "right": 3505, "bottom": 5235, "left": 305}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720630f.jpg"} -{"rects": [{"solidity": 0.9986387791730026, "top": 2250, "right": 3200, "bottom": 3870, "left": 765}, {"solidity": 0.9968232075068085, "top": 405, "right": 3195, "bottom": 2035, "left": 765}, {"solidity": 0.9966971887550201, "top": 4115, "right": 3175, "bottom": 5735, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706526f.jpg"} -{"rects": [{"solidity": 0.9986388355623471, "top": 750, "right": 2025, "bottom": 3175, "left": 410}, {"solidity": 0.9974605763303883, "top": 755, "right": 3880, "bottom": 3170, "left": 2255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707121f.jpg"} -{"rects": [{"solidity": 0.9986389673123685, "top": 4045, "right": 3230, "bottom": 5640, "left": 815}, {"solidity": 0.9950258301875027, "top": 2255, "right": 2990, "bottom": 3700, "left": 1155}, {"solidity": 0.9950883943276055, "top": 485, "right": 2970, "bottom": 1925, "left": 1155}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725931f.jpg"} -{"rects": [{"solidity": 0.9986393147329817, "top": 435, "right": 2995, "bottom": 2050, "left": 590}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704060f.jpg"} -{"rects": [{"solidity": 0.9986395317886213, "top": 790, "right": 1995, "bottom": 3190, "left": 400}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713533f.jpg"} -{"rects": [{"solidity": 0.9986402497853285, "top": 455, "right": 2590, "bottom": 3645, "left": 585}, {"solidity": 0.9976126201297745, "top": 1065, "right": 5845, "bottom": 3075, "left": 2655}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733087f.jpg"} -{"rects": [{"solidity": 0.9986410581627106, "top": 2200, "right": 3165, "bottom": 3810, "left": 750}, {"solidity": 0.9969703162354071, "top": 3960, "right": 3170, "bottom": 5570, "left": 755}, {"solidity": 0.9971196486231986, "top": 460, "right": 3165, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732055f.jpg"} -{"rects": [{"solidity": 0.9986412825265079, "top": 2195, "right": 3195, "bottom": 3810, "left": 770}, {"solidity": 0.998756114695248, "top": 4085, "right": 3200, "bottom": 5695, "left": 775}, {"solidity": 0.9973845158051861, "top": 325, "right": 3185, "bottom": 1915, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734606f.jpg"} -{"rects": [{"solidity": 0.9986413292056446, "top": 1245, "right": 3585, "bottom": 5255, "left": 335}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723657f.jpg"} -{"rects": [{"solidity": 0.998641536709163, "top": 415, "right": 3105, "bottom": 2030, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728336f.jpg"} -{"rects": [{"solidity": 0.9986417948938365, "top": 335, "right": 3925, "bottom": 2755, "left": 905}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517277.jpg"} -{"rects": [{"solidity": 0.9986418498076052, "top": 1250, "right": 3150, "bottom": 5245, "left": 465}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718282f.jpg"} -{"rects": [{"solidity": 0.9986428344052602, "top": 340, "right": 3950, "bottom": 2775, "left": 935}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516897.jpg"} -{"rects": [{"solidity": 0.9986431611100111, "top": 445, "right": 3140, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704674f.jpg"} -{"rects": [{"solidity": 0.9986432178618274, "top": 2340, "right": 3315, "bottom": 3960, "left": 905}, {"solidity": 0.9970714861883644, "top": 460, "right": 3310, "bottom": 2075, "left": 900}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731409f.jpg"} -{"rects": [{"solidity": 0.9986433211498252, "top": 400, "right": 3065, "bottom": 2030, "left": 645}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704562f.jpg"} -{"rects": [{"solidity": 0.9986433402831262, "top": 770, "right": 1910, "bottom": 3180, "left": 290}, {"solidity": 0.998630172308208, "top": 775, "right": 3770, "bottom": 3185, "left": 2150}, {"solidity": 0.995144132439768, "top": 780, "right": 5655, "bottom": 3200, "left": 4030}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710630f.jpg"} -{"rects": [{"solidity": 0.9986433968817789, "top": 440, "right": 2990, "bottom": 2050, "left": 605}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703061f.jpg"} -{"rects": [{"solidity": 0.9986434253186166, "top": 780, "right": 1990, "bottom": 3195, "left": 385}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720755f.jpg"} -{"rects": [{"solidity": 0.9986435435622381, "top": 745, "right": 2045, "bottom": 3145, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714833f.jpg"} -{"rects": [{"solidity": 0.9986436308367163, "top": 345, "right": 3190, "bottom": 1975, "left": 780}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/704876f.jpg"} -{"rects": [{"solidity": 0.9986437524160208, "top": 395, "right": 3200, "bottom": 1995, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/721770f.jpg"} -{"rects": [{"solidity": 0.9986439926593064, "top": 435, "right": 3200, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703075f.jpg"} -{"rects": [{"solidity": 0.9986444717238401, "top": 1030, "right": 3530, "bottom": 4985, "left": 350}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717282f.jpg"} -{"rects": [{"solidity": 0.9986450345354888, "top": 2300, "right": 3125, "bottom": 3915, "left": 710}, {"solidity": 0.9975268705674908, "top": 440, "right": 3140, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734046f.jpg"} -{"rects": [{"solidity": 0.9986453484296463, "top": 290, "right": 5110, "bottom": 3830, "left": 1345}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707823f.jpg"} -{"rects": [{"solidity": 0.9986453978798687, "top": 490, "right": 4935, "bottom": 3705, "left": 1115}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718089f.jpg"} -{"rects": [{"solidity": 0.998645888168241, "top": 810, "right": 1910, "bottom": 3200, "left": 320}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718835f.jpg"} -{"rects": [{"solidity": 0.9986460606956212, "top": 435, "right": 5065, "bottom": 3615, "left": 1110}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718214f.jpg"} -{"rects": [{"solidity": 0.9986461293273562, "top": 1070, "right": 3505, "bottom": 5050, "left": 325}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722849f.jpg"} -{"rects": [{"solidity": 0.998646348755758, "top": 800, "right": 1965, "bottom": 3200, "left": 370}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719671f.jpg"} -{"rects": [{"solidity": 0.9986465955328921, "top": 395, "right": 5055, "bottom": 3635, "left": 1060}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708195f.jpg"} -{"rects": [{"solidity": 0.9986472852525174, "top": 460, "right": 3185, "bottom": 2075, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703667f.jpg"} -{"rects": [{"solidity": 0.9986482737261835, "top": 330, "right": 3195, "bottom": 1955, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705544f.jpg"} -{"rects": [{"solidity": 0.9986484699938463, "top": 420, "right": 5050, "bottom": 3690, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717624f.jpg"} -{"rects": [{"solidity": 0.9986490225759721, "top": 390, "right": 2945, "bottom": 2000, "left": 545}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702675f.jpg"} -{"rects": [{"solidity": 0.998649078886632, "top": 1000, "right": 3490, "bottom": 5055, "left": 275}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/706390f.jpg"} -{"rects": [{"solidity": 0.9986491358475281, "top": 3230, "right": 3240, "bottom": 5235, "left": 425}, {"solidity": 0.9962292710072342, "top": 725, "right": 3260, "bottom": 2735, "left": 440}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729421f.jpg"} -{"rects": [{"solidity": 0.9986498628008061, "top": 615, "right": 2615, "bottom": 2025, "left": 775}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707102f.jpg"} -{"rects": [{"solidity": 0.9986504183893343, "top": 415, "right": 5175, "bottom": 3690, "left": 1145}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725008f.jpg"} -{"rects": [{"solidity": 0.9986505174875089, "top": 1090, "right": 3405, "bottom": 2285, "left": 1515}], "shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507769.jpg"} -{"rects": [{"solidity": 0.9986507580070122, "top": 980, "right": 3555, "bottom": 5015, "left": 295}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715502f.jpg"} -{"rects": [{"solidity": 0.9986518325447624, "top": 455, "right": 3055, "bottom": 2075, "left": 635}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707122f.jpg"} -{"rects": [{"solidity": 0.9986543027180104, "top": 655, "right": 2710, "bottom": 3645, "left": 735}, {"solidity": 0.9965025873053021, "top": 875, "right": 4360, "bottom": 3285, "left": 2740}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721550f.jpg"} -{"rects": [{"solidity": 0.9986548412089687, "top": 345, "right": 5270, "bottom": 3565, "left": 1265}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727855f.jpg"} -{"rects": [{"solidity": 0.9986552654978409, "top": 545, "right": 5115, "bottom": 3730, "left": 1160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710624f.jpg"} -{"rects": [{"solidity": 0.9986553568559943, "top": 505, "right": 5005, "bottom": 3685, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724877f.jpg"} -{"rects": [{"solidity": 0.9986557016624812, "top": 490, "right": 3335, "bottom": 2105, "left": 920}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702242f.jpg"} -{"rects": [{"solidity": 0.9986562559177342, "top": 470, "right": 5075, "bottom": 3730, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700443f.jpg"} -{"rects": [{"solidity": 0.9986565318935411, "top": 650, "right": 5100, "bottom": 3360, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702883f.jpg"} -{"rects": [{"solidity": 0.9986567338299752, "top": 985, "right": 3760, "bottom": 4280, "left": 330}], "shape": {"h": 6030, "w": 4140}, "file": "/usr/local/google/home/danvk/milstein/726689f.jpg"} -{"rects": [{"solidity": 0.9986571534889741, "top": 830, "right": 2020, "bottom": 3245, "left": 410}, {"solidity": 0.9906955847977966, "top": 825, "right": 3810, "bottom": 3245, "left": 2205}, {"solidity": 0.9921531281492667, "top": 815, "right": 5615, "bottom": 3235, "left": 4010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701611f.jpg"} -{"rects": [{"solidity": 0.9986575183822934, "top": 455, "right": 3155, "bottom": 2065, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700580f.jpg"} -{"rects": [{"solidity": 0.9986575839367066, "top": 645, "right": 2700, "bottom": 2095, "left": 875}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705091f.jpg"} -{"rects": [{"solidity": 0.9986583205252548, "top": 475, "right": 4990, "bottom": 3730, "left": 880}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703802f.jpg"} -{"rects": [{"solidity": 0.9986586812412531, "top": 385, "right": 3450, "bottom": 2000, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700279f.jpg"} -{"rects": [{"solidity": 0.9986589882049692, "top": 800, "right": 2015, "bottom": 3210, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721255f.jpg"} -{"rects": [{"solidity": 0.9986590583034988, "top": 785, "right": 3615, "bottom": 3195, "left": 2000}, {"solidity": 0.9933008473847952, "top": 1005, "right": 1810, "bottom": 2975, "left": 320}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714199f.jpg"} -{"rects": [{"solidity": 0.9986594532484321, "top": 695, "right": 2685, "bottom": 3710, "left": 245}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507905.jpg"} -{"rects": [{"solidity": 0.9986605938355196, "top": 875, "right": 3945, "bottom": 3285, "left": 2320}, {"solidity": 0.9972320808579584, "top": 860, "right": 2040, "bottom": 3280, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733899f.jpg"} -{"rects": [{"solidity": 0.9986610198494182, "top": 845, "right": 3485, "bottom": 2910, "left": 640}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726529f.jpg"} -{"rects": [{"solidity": 0.9986611348414655, "top": 2255, "right": 3090, "bottom": 3870, "left": 675}, {"solidity": 0.9981688161511071, "top": 415, "right": 3085, "bottom": 2015, "left": 685}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729628f.jpg"} -{"rects": [{"solidity": 0.998661442393289, "top": 790, "right": 3825, "bottom": 3195, "left": 2215}, {"solidity": 0.9991823518297728, "top": 785, "right": 2020, "bottom": 3190, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715172f.jpg"} -{"rects": [{"solidity": 0.9986615374986157, "top": 2135, "right": 2655, "bottom": 3550, "left": 805}, {"solidity": 0.9947800259518559, "top": 685, "right": 2630, "bottom": 2105, "left": 830}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727599f.jpg"} -{"rects": [{"solidity": 0.998661671100824, "top": 390, "right": 3295, "bottom": 2005, "left": 885}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700273f.jpg"} -{"rects": [{"solidity": 0.998661923460726, "top": 330, "right": 3180, "bottom": 1945, "left": 775}, {"solidity": 0.9975035162891482, "top": 2190, "right": 3155, "bottom": 3800, "left": 760}, {"solidity": 0.9974325472006271, "top": 4055, "right": 3140, "bottom": 5665, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715726f.jpg"} -{"rects": [{"solidity": 0.9986621301333116, "top": 340, "right": 5270, "bottom": 3570, "left": 1255}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727850f.jpg"} -{"rects": [{"solidity": 0.9986622193346396, "top": 760, "right": 2160, "bottom": 3475, "left": 350}], "shape": {"h": 4430, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/711196f.jpg"} -{"rects": [{"solidity": 0.9986624564812566, "top": 305, "right": 3085, "bottom": 1920, "left": 680}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720652f.jpg"} -{"rects": [{"solidity": 0.9986627261664371, "top": 365, "right": 5350, "bottom": 3635, "left": 1330}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724199f.jpg"} -{"rects": [{"solidity": 0.9986629457926498, "top": 450, "right": 3105, "bottom": 2055, "left": 685}, {"solidity": 0.9947345641045667, "top": 2300, "right": 3095, "bottom": 3910, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729689f.jpg"} -{"rects": [{"solidity": 0.9986629885296777, "top": 420, "right": 3175, "bottom": 2025, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719467f.jpg"} -{"rects": [{"solidity": 0.9986632759520083, "top": 805, "right": 2015, "bottom": 3215, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722515f.jpg"} -{"rects": [{"solidity": 0.9986642313878363, "top": 935, "right": 2645, "bottom": 3945, "left": 195}], "shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508287.jpg"} -{"rects": [{"solidity": 0.9986643635499676, "top": 820, "right": 2070, "bottom": 3230, "left": 445}, {"solidity": 0.9964766216905757, "top": 830, "right": 3955, "bottom": 3240, "left": 2320}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717186f.jpg"} -{"rects": [{"solidity": 0.9986653017325161, "top": 415, "right": 3045, "bottom": 2020, "left": 625}, {"solidity": 0.9963678458431833, "top": 2260, "right": 3035, "bottom": 3875, "left": 630}, {"solidity": 0.9936323744514871, "top": 4060, "right": 3030, "bottom": 5690, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734271f.jpg"} -{"rects": [{"solidity": 0.9986654102842248, "top": 515, "right": 5075, "bottom": 3750, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706550f.jpg"} -{"rects": [{"solidity": 0.9986666794655199, "top": 390, "right": 5410, "bottom": 3645, "left": 1395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730027f.jpg"} -{"rects": [{"solidity": 0.9986669621834838, "top": 410, "right": 3120, "bottom": 2025, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729261f.jpg"} -{"rects": [{"solidity": 0.9986669704245016, "top": 1340, "right": 3515, "bottom": 4900, "left": 485}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721372f.jpg"} -{"rects": [{"solidity": 0.9986669851270399, "top": 2025, "right": 3235, "bottom": 3650, "left": 835}, {"solidity": 0.9972778388831028, "top": 260, "right": 3220, "bottom": 1880, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712311f.jpg"} -{"rects": [{"solidity": 0.9986671646019523, "top": 380, "right": 3100, "bottom": 1995, "left": 680}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704129f.jpg"} -{"rects": [{"solidity": 0.9986678465374568, "top": 535, "right": 4975, "bottom": 3725, "left": 875}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709488f.jpg"} -{"rects": [{"solidity": 0.99866815267218, "top": 880, "right": 3495, "bottom": 4830, "left": 295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/711457f.jpg"} -{"rects": [{"solidity": 0.9986682789197904, "top": 800, "right": 2180, "bottom": 3210, "left": 560}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707958f.jpg"} -{"rects": [{"solidity": 0.9986684395205614, "top": 325, "right": 5065, "bottom": 3575, "left": 1045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700522f.jpg"} -{"rects": [{"solidity": 0.9986688637256569, "top": 130, "right": 5430, "bottom": 3330, "left": 1415}], "shape": {"h": 3620, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732216f.jpg"} -{"rects": [{"solidity": 0.9986692754075999, "top": 490, "right": 5075, "bottom": 3765, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702151f.jpg"} -{"rects": [{"solidity": 0.9986697407897629, "top": 430, "right": 5165, "bottom": 3710, "left": 1145}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725370f.jpg"} -{"rects": [{"solidity": 0.998669961045301, "top": 680, "right": 2610, "bottom": 2100, "left": 825}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704264f.jpg"} -{"rects": [{"solidity": 0.9986699731028866, "top": 680, "right": 4695, "bottom": 3520, "left": 2755}, {"solidity": 0.996797006002576, "top": 625, "right": 2740, "bottom": 2050, "left": 915}, {"solidity": 0.9977343345416883, "top": 2130, "right": 2720, "bottom": 3540, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704405f.jpg"} -{"rects": [{"solidity": 0.998669998582232, "top": 430, "right": 5035, "bottom": 3640, "left": 980}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718791f.jpg"} -{"rects": [{"solidity": 0.998670285374745, "top": 785, "right": 3900, "bottom": 3210, "left": 2285}, {"solidity": 0.9980927305419984, "top": 785, "right": 5740, "bottom": 3210, "left": 4125}, {"solidity": 0.9949092403321224, "top": 805, "right": 2050, "bottom": 3215, "left": 435}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717111f.jpg"} -{"rects": [{"solidity": 0.9986707790783208, "top": 680, "right": 2030, "bottom": 3095, "left": 415}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704917f.jpg"} -{"rects": [{"solidity": 0.9986711479646075, "top": 675, "right": 2545, "bottom": 2155, "left": 465}, {"solidity": 0.9954759822472149, "top": 2445, "right": 2550, "bottom": 3930, "left": 460}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716251f.jpg"} -{"rects": [{"solidity": 0.9986716071302211, "top": 435, "right": 3185, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700573f.jpg"} -{"rects": [{"solidity": 0.9986723244734855, "top": 2420, "right": 3145, "bottom": 4030, "left": 745}, {"solidity": 0.996796122820713, "top": 540, "right": 3130, "bottom": 2155, "left": 725}, {"solidity": 0.9963806699027223, "top": 4250, "right": 3145, "bottom": 5855, "left": 725}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717923f.jpg"} -{"rects": [{"solidity": 0.9986723810137595, "top": 490, "right": 3145, "bottom": 2100, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701325f.jpg"} -{"rects": [{"solidity": 0.9986726651989407, "top": 445, "right": 2545, "bottom": 2865, "left": 915}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709214f.jpg"} -{"rects": [{"solidity": 0.9986727128399767, "top": 885, "right": 1915, "bottom": 3295, "left": 290}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719090f.jpg"} -{"rects": [{"solidity": 0.9986729978726818, "top": 540, "right": 2855, "bottom": 3560, "left": 830}, {"solidity": 0.9973268104046767, "top": 920, "right": 4690, "bottom": 3325, "left": 3075}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715064f.jpg"} -{"rects": [{"solidity": 0.9986730028371392, "top": 855, "right": 2010, "bottom": 3265, "left": 385}, {"solidity": 0.9969141940657578, "top": 840, "right": 3885, "bottom": 3255, "left": 2255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713190f.jpg"} -{"rects": [{"solidity": 0.9986734112328581, "top": 2230, "right": 3050, "bottom": 3845, "left": 630}, {"solidity": 0.9974063298439609, "top": 380, "right": 3045, "bottom": 2000, "left": 630}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729086f.jpg"} -{"rects": [{"solidity": 0.9986734714446012, "top": 495, "right": 5000, "bottom": 3740, "left": 965}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733566f.jpg"} -{"rects": [{"solidity": 0.9986735696838172, "top": 365, "right": 5180, "bottom": 3585, "left": 1170}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708650f.jpg"} -{"rects": [{"solidity": 0.9986737000753579, "top": 420, "right": 3215, "bottom": 1995, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726192f.jpg"} -{"rects": [{"solidity": 0.9986746835319684, "top": 450, "right": 3160, "bottom": 2065, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707372f.jpg"} -{"rects": [{"solidity": 0.9986747070458052, "top": 520, "right": 2880, "bottom": 3595, "left": 850}, {"solidity": 0.9975186748944462, "top": 905, "right": 4735, "bottom": 3315, "left": 3125}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715258f.jpg"} -{"rects": [{"solidity": 0.9986749120782425, "top": 375, "right": 5165, "bottom": 3655, "left": 1115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709037f.jpg"} -{"rects": [{"solidity": 0.998675110423559, "top": 1345, "right": 2475, "bottom": 4265, "left": 245}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508871.jpg"} -{"rects": [{"solidity": 0.9986757159410694, "top": 375, "right": 5225, "bottom": 3635, "left": 1200}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726706f.jpg"} -{"rects": [{"solidity": 0.998675844910339, "top": 790, "right": 3780, "bottom": 3205, "left": 2155}, {"solidity": 0.998069766914639, "top": 795, "right": 1925, "bottom": 3180, "left": 295}, {"solidity": 0.9970249332725734, "top": 815, "right": 5655, "bottom": 3195, "left": 4020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723570f.jpg"} -{"rects": [{"solidity": 0.9986759394177379, "top": 2195, "right": 3215, "bottom": 3820, "left": 830}, {"solidity": 0.9976390526167983, "top": 4100, "right": 3215, "bottom": 5720, "left": 835}, {"solidity": 0.9984827984814849, "top": 310, "right": 3215, "bottom": 1930, "left": 850}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721557f.jpg"} -{"rects": [{"solidity": 0.9986759675377012, "top": 385, "right": 5145, "bottom": 3595, "left": 1150}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723211f.jpg"} -{"rects": [{"solidity": 0.9986769962601783, "top": 525, "right": 5075, "bottom": 3690, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730004f.jpg"} -{"rects": [{"solidity": 0.998677068980017, "top": 425, "right": 3305, "bottom": 2035, "left": 890}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726326f.jpg"} -{"rects": [{"solidity": 0.9986774221646424, "top": 480, "right": 5250, "bottom": 3650, "left": 1295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733718f.jpg"} -{"rects": [{"solidity": 0.9986775662335866, "top": 2525, "right": 2510, "bottom": 4010, "left": 425}, {"solidity": 0.9975236939318283, "top": 695, "right": 2510, "bottom": 2175, "left": 420}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716031f.jpg"} -{"rects": [{"solidity": 0.998677900729114, "top": 515, "right": 3320, "bottom": 2525, "left": 290}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718715f.jpg"} -{"rects": [{"solidity": 0.9986781516622818, "top": 880, "right": 2250, "bottom": 3595, "left": 440}], "shape": {"h": 4415, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706449f.jpg"} -{"rects": [{"solidity": 0.9986787297890447, "top": 500, "right": 2970, "bottom": 2125, "left": 550}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703649f.jpg"} -{"rects": [{"solidity": 0.9986788261804576, "top": 360, "right": 3115, "bottom": 1975, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701627f.jpg"} -{"rects": [{"solidity": 0.9986788826482058, "top": 620, "right": 2605, "bottom": 2100, "left": 325}, {"solidity": 0.9993379663081596, "top": 2585, "right": 2585, "bottom": 4050, "left": 315}], "shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/715759f.jpg"} -{"rects": [{"solidity": 0.9986795109943216, "top": 460, "right": 5085, "bottom": 3710, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704892f.jpg"} -{"rects": [{"solidity": 0.9986801921394699, "top": 2445, "right": 3595, "bottom": 4275, "left": 910}, {"solidity": 0.9967321603680106, "top": 4555, "right": 3605, "bottom": 6390, "left": 925}, {"solidity": 0.996603171575917, "top": 330, "right": 3585, "bottom": 2165, "left": 915}], "shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/710253f.jpg"} -{"rects": [{"solidity": 0.9986802105256414, "top": 410, "right": 3165, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/733278f.jpg"} -{"rects": [{"solidity": 0.9986813249274112, "top": 995, "right": 3645, "bottom": 5040, "left": 365}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/708083f.jpg"} -{"rects": [{"solidity": 0.998681819521251, "top": 775, "right": 3455, "bottom": 5135, "left": 525}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717328f.jpg"} -{"rects": [{"solidity": 0.9986822145823205, "top": 405, "right": 2420, "bottom": 1600, "left": 620}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715868f.jpg"} -{"rects": [{"solidity": 0.9986823071545244, "top": 385, "right": 3230, "bottom": 2000, "left": 810}, {"solidity": 1.0, "top": 4820, "right": 3835, "bottom": 6010, "left": 2495}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710836f.jpg"} -{"rects": [{"solidity": 0.9986825730846526, "top": 435, "right": 5050, "bottom": 3605, "left": 1030}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718222f.jpg"} -{"rects": [{"solidity": 0.9986839224291166, "top": 560, "right": 5610, "bottom": 4180, "left": 1195}], "shape": {"h": 4415, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/708335f.jpg"} -{"rects": [{"solidity": 0.9986841390718795, "top": 445, "right": 3685, "bottom": 2570, "left": 855}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508807.jpg"} -{"rects": [{"solidity": 0.9986851204332284, "top": 500, "right": 3195, "bottom": 2105, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701826f.jpg"} -{"rects": [{"solidity": 0.9986851978121848, "top": 465, "right": 5015, "bottom": 3670, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730048f.jpg"} -{"rects": [{"solidity": 0.9986852965259858, "top": 850, "right": 1995, "bottom": 3260, "left": 395}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700835f.jpg"} -{"rects": [{"solidity": 0.9986853963080983, "top": 365, "right": 4985, "bottom": 3605, "left": 975}], "shape": {"h": 3895, "w": 6075}, "file": "/usr/local/google/home/danvk/milstein/728162f.jpg"} -{"rects": [{"solidity": 0.9986866020011862, "top": 535, "right": 5085, "bottom": 3760, "left": 1015}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709445f.jpg"} -{"rects": [{"solidity": 0.9986866521982894, "top": 300, "right": 5150, "bottom": 3540, "left": 1135}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725894f.jpg"} -{"rects": [{"solidity": 0.9986866834227747, "top": 390, "right": 5215, "bottom": 3630, "left": 1110}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712251f.jpg"} -{"rects": [{"solidity": 0.9986867437743993, "top": 395, "right": 5005, "bottom": 3655, "left": 1035}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713167f.jpg"} -{"rects": [{"solidity": 0.9986868606037934, "top": 420, "right": 5160, "bottom": 3660, "left": 1145}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726055f.jpg"} -{"rects": [{"solidity": 0.9986874254218989, "top": 170, "right": 3385, "bottom": 2085, "left": 2225}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723494f.jpg"} -{"rects": [{"solidity": 0.9986878877243535, "top": 615, "right": 3150, "bottom": 2235, "left": 735}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706561f.jpg"} -{"rects": [{"solidity": 0.9986880039482322, "top": 1030, "right": 3505, "bottom": 5085, "left": 220}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714228f.jpg"} -{"rects": [{"solidity": 0.9986880709872862, "top": 435, "right": 5070, "bottom": 3705, "left": 1045}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714428f.jpg"} -{"rects": [{"solidity": 0.9986883466383228, "top": 2325, "right": 3105, "bottom": 3940, "left": 695}, {"solidity": 0.9977229061410375, "top": 415, "right": 3095, "bottom": 2035, "left": 690}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712373f.jpg"} -{"rects": [{"solidity": 0.9986887928901745, "top": 465, "right": 5110, "bottom": 3740, "left": 1085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710933f.jpg"} -{"rects": [{"solidity": 0.9986890015946766, "top": 645, "right": 2615, "bottom": 3670, "left": 565}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716828f.jpg"} -{"rects": [{"solidity": 0.9986895456870301, "top": 935, "right": 3515, "bottom": 5025, "left": 280}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710953f.jpg"} -{"rects": [{"solidity": 0.9986898581331456, "top": 675, "right": 2740, "bottom": 2090, "left": 920}, {"solidity": 0.9943318254065289, "top": 2110, "right": 2750, "bottom": 3525, "left": 925}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726038f.jpg"} -{"rects": [{"solidity": 0.9986900136763853, "top": 405, "right": 3255, "bottom": 2025, "left": 830}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/725197f.jpg"} -{"rects": [{"solidity": 0.9986900329330813, "top": 955, "right": 3580, "bottom": 5005, "left": 295}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/724456f.jpg"} -{"rects": [{"solidity": 0.9986902846609697, "top": 290, "right": 1990, "bottom": 1310, "left": 460}], "shape": {"h": 3930, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727170f.jpg"} -{"rects": [{"solidity": 0.9986903291251117, "top": 455, "right": 5010, "bottom": 3615, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707625f.jpg"} -{"rects": [{"solidity": 0.9986904281912748, "top": 465, "right": 3135, "bottom": 2080, "left": 720}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705203f.jpg"} -{"rects": [{"solidity": 0.9986910994764397, "top": 905, "right": 3535, "bottom": 4980, "left": 315}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713247f.jpg"} -{"rects": [{"solidity": 0.9986915058348935, "top": 395, "right": 5250, "bottom": 3665, "left": 1220}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719362f.jpg"} -{"rects": [{"solidity": 0.9986916221734036, "top": 370, "right": 5080, "bottom": 3680, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716879f.jpg"} -{"rects": [{"solidity": 0.9986926425003614, "top": 765, "right": 3860, "bottom": 3190, "left": 2245}, {"solidity": 0.9981869940167583, "top": 780, "right": 2035, "bottom": 3200, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713708f.jpg"} -{"rects": [{"solidity": 0.9986927099354045, "top": 415, "right": 5090, "bottom": 3685, "left": 995}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/730965f.jpg"} -{"rects": [{"solidity": 0.9986936013057338, "top": 845, "right": 3885, "bottom": 3240, "left": 2305}, {"solidity": 0.9980731071905835, "top": 860, "right": 2010, "bottom": 3235, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728848f.jpg"} -{"rects": [{"solidity": 0.9986936747539005, "top": 505, "right": 3035, "bottom": 2125, "left": 615}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703254f.jpg"} -{"rects": [{"solidity": 0.9986938938732335, "top": 670, "right": 1955, "bottom": 3085, "left": 340}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724841f.jpg"} -{"rects": [{"solidity": 0.998694061077441, "top": 980, "right": 5595, "bottom": 2995, "left": 2575}, {"solidity": 0.9982087949152043, "top": 780, "right": 2060, "bottom": 3175, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715315f.jpg"} -{"rects": [{"solidity": 0.998694525387452, "top": 815, "right": 2045, "bottom": 3230, "left": 430}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706463f.jpg"} -{"rects": [{"solidity": 0.9986948538534067, "top": 2290, "right": 2960, "bottom": 3695, "left": 1155}, {"solidity": 0.9941712823178901, "top": 4140, "right": 2995, "bottom": 5545, "left": 1160}, {"solidity": 0.9941957712763294, "top": 490, "right": 2980, "bottom": 1880, "left": 1160}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725089f.jpg"} -{"rects": [{"solidity": 0.9986949514195665, "top": 745, "right": 2030, "bottom": 3140, "left": 420}, {"solidity": 0.9958766877041975, "top": 755, "right": 3855, "bottom": 3150, "left": 2250}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716748f.jpg"} -{"rects": [{"solidity": 0.9986949900512444, "top": 3265, "right": 3255, "bottom": 5270, "left": 435}, {"solidity": 0.9975647691418922, "top": 630, "right": 3250, "bottom": 2640, "left": 430}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728757f.jpg"} -{"rects": [{"solidity": 0.998695502917954, "top": 2240, "right": 3210, "bottom": 3840, "left": 805}, {"solidity": 0.9951700917976468, "top": 4055, "right": 3225, "bottom": 5655, "left": 805}, {"solidity": 0.9970380407212125, "top": 435, "right": 3195, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710451f.jpg"} -{"rects": [{"solidity": 0.9986956168171098, "top": 2220, "right": 3205, "bottom": 3825, "left": 795}, {"solidity": 0.996186847805345, "top": 390, "right": 3185, "bottom": 1975, "left": 805}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711984f.jpg"} -{"rects": [{"solidity": 0.9986960915343743, "top": 465, "right": 3030, "bottom": 2070, "left": 625}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704034f.jpg"} -{"rects": [{"solidity": 0.9986963180059937, "top": 815, "right": 1920, "bottom": 3205, "left": 325}, {"solidity": 0.9980869935523365, "top": 815, "right": 3745, "bottom": 3195, "left": 2155}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724085f.jpg"} -{"rects": [{"solidity": 0.9986963774105907, "top": 2290, "right": 3185, "bottom": 3965, "left": 650}, {"solidity": 0.9950574629909547, "top": 4110, "right": 3190, "bottom": 5790, "left": 660}, {"solidity": 0.9960243973910863, "top": 440, "right": 3175, "bottom": 2160, "left": 735}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724729f.jpg"} -{"rects": [{"solidity": 0.9986967919867861, "top": 425, "right": 5035, "bottom": 3700, "left": 985}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704518f.jpg"} -{"rects": [{"solidity": 0.9986971060786975, "top": 495, "right": 3115, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714116f.jpg"} -{"rects": [{"solidity": 0.9986971745776189, "top": 370, "right": 5050, "bottom": 3570, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731058f.jpg"} -{"rects": [{"solidity": 0.9986981331454737, "top": 430, "right": 5120, "bottom": 3705, "left": 1040}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/722425f.jpg"} -{"rects": [{"solidity": 0.998698485775615, "top": 820, "right": 3850, "bottom": 3240, "left": 2245}, {"solidity": 0.9994241580344594, "top": 825, "right": 2040, "bottom": 3240, "left": 440}, {"solidity": 0.9983002500781494, "top": 810, "right": 5660, "bottom": 3225, "left": 4060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707224f.jpg"} -{"rects": [{"solidity": 0.9986987237640954, "top": 610, "right": 2900, "bottom": 3640, "left": 880}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724255f.jpg"} -{"rects": [{"solidity": 0.9986994958428712, "top": 420, "right": 5245, "bottom": 3595, "left": 1275}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731917f.jpg"} -{"rects": [{"solidity": 0.9987000430085273, "top": 2165, "right": 3175, "bottom": 3785, "left": 775}, {"solidity": 0.999743799294313, "top": 315, "right": 3175, "bottom": 1930, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704038f.jpg"} -{"rects": [{"solidity": 0.9987002850625859, "top": 1255, "right": 3490, "bottom": 5055, "left": 540}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/734064f.jpg"} -{"rects": [{"solidity": 0.9987013118096514, "top": 1215, "right": 3340, "bottom": 4895, "left": 295}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731285f.jpg"} -{"rects": [{"solidity": 0.9987015645188113, "top": 2180, "right": 3170, "bottom": 3805, "left": 750}, {"solidity": 0.9987269194014918, "top": 320, "right": 3170, "bottom": 1940, "left": 750}, {"solidity": 0.9981868186529828, "top": 4065, "right": 3160, "bottom": 5685, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720655f.jpg"} -{"rects": [{"solidity": 0.9987021040335723, "top": 2410, "right": 2900, "bottom": 3850, "left": 1080}, {"solidity": 0.9959544501048846, "top": 735, "right": 2890, "bottom": 2170, "left": 1065}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703084f.jpg"} -{"rects": [{"solidity": 0.9987024376566936, "top": 785, "right": 2040, "bottom": 3190, "left": 435}, {"solidity": 0.9961164156878438, "top": 785, "right": 3885, "bottom": 3185, "left": 2285}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721940f.jpg"} -{"rects": [{"solidity": 0.9987032048690737, "top": 315, "right": 5115, "bottom": 3555, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700528f.jpg"} -{"rects": [{"solidity": 0.9987032806680494, "top": 880, "right": 2040, "bottom": 3310, "left": 415}, {"solidity": 0.9953562885980641, "top": 880, "right": 3905, "bottom": 3310, "left": 2270}, {"solidity": 0.9971103666000902, "top": 880, "right": 5750, "bottom": 3300, "left": 4135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709491f.jpg"} -{"rects": [{"solidity": 0.9987033139032815, "top": 245, "right": 3380, "bottom": 3750, "left": 715}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732271f.jpg"} -{"rects": [{"solidity": 0.9987040527803959, "top": 340, "right": 5275, "bottom": 3560, "left": 1270}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727865f.jpg"} -{"rects": [{"solidity": 0.9987045004108861, "top": 2275, "right": 3045, "bottom": 3895, "left": 635}, {"solidity": 0.997984438441256, "top": 4125, "right": 3025, "bottom": 5740, "left": 615}, {"solidity": 0.9963645663377619, "top": 415, "right": 3060, "bottom": 2035, "left": 660}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707899f.jpg"} -{"rects": [{"solidity": 0.9987047879511575, "top": 2020, "right": 2755, "bottom": 3450, "left": 925}, {"solidity": 0.9975422515866934, "top": 2100, "right": 5260, "bottom": 3535, "left": 3435}, {"solidity": 0.9992674170386183, "top": 610, "right": 5260, "bottom": 2040, "left": 3445}, {"solidity": 0.9950231185921293, "top": 620, "right": 2710, "bottom": 1960, "left": 965}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703320f.jpg"} -{"rects": [{"solidity": 0.9987052957579963, "top": 470, "right": 3005, "bottom": 2095, "left": 595}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703939f.jpg"} -{"rects": [{"solidity": 0.9987054820314181, "top": 765, "right": 2060, "bottom": 3125, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712009f.jpg"} -{"rects": [{"solidity": 0.9987055536427448, "top": 1515, "right": 3460, "bottom": 5205, "left": 625}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731200f.jpg"} -{"rects": [{"solidity": 0.9987055560769288, "top": 415, "right": 3230, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725807f.jpg"} -{"rects": [{"solidity": 0.9987056725029461, "top": 770, "right": 2050, "bottom": 3190, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703271f.jpg"} -{"rects": [{"solidity": 0.9987065272406687, "top": 2045, "right": 3115, "bottom": 3660, "left": 760}, {"solidity": 0.9961395429344719, "top": 375, "right": 2820, "bottom": 1735, "left": 1030}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730836f.jpg"} -{"rects": [{"solidity": 0.9987070092549404, "top": 475, "right": 5135, "bottom": 3710, "left": 1085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713059f.jpg"} -{"rects": [{"solidity": 0.9987070130070632, "top": 370, "right": 3205, "bottom": 1980, "left": 775}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/701535f.jpg"} -{"rects": [{"solidity": 0.9987075887573018, "top": 275, "right": 3170, "bottom": 1900, "left": 750}, {"solidity": 0.9986234204632238, "top": 3920, "right": 3150, "bottom": 5535, "left": 720}, {"solidity": 0.9994934160216057, "top": 2100, "right": 3160, "bottom": 3710, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707345f.jpg"} -{"rects": [{"solidity": 0.9987077980040152, "top": 795, "right": 2045, "bottom": 3205, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700183f.jpg"} -{"rects": [{"solidity": 0.9987082629502249, "top": 405, "right": 3195, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732555f.jpg"} -{"rects": [{"solidity": 0.9987086139988838, "top": 2205, "right": 3175, "bottom": 3815, "left": 765}, {"solidity": 0.9949955757518791, "top": 375, "right": 3165, "bottom": 1990, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720137f.jpg"} -{"rects": [{"solidity": 0.998708843510712, "top": 860, "right": 4775, "bottom": 3490, "left": 1370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701938f.jpg"} -{"rects": [{"solidity": 0.9987093856864279, "top": 245, "right": 3125, "bottom": 1880, "left": 670}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711856f.jpg"} -{"rects": [{"solidity": 0.9987096306976223, "top": 430, "right": 3175, "bottom": 2025, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710542f.jpg"} -{"rects": [{"solidity": 0.9987106677484107, "top": 1075, "right": 3605, "bottom": 5120, "left": 345}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705482f.jpg"} -{"rects": [{"solidity": 0.9987108731348066, "top": 440, "right": 5110, "bottom": 3700, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725372f.jpg"} -{"rects": [{"solidity": 0.9987109484257761, "top": 310, "right": 3270, "bottom": 2345, "left": 730}], "shape": {"h": 2540, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/727100f.jpg"} -{"rects": [{"solidity": 0.9987113795392634, "top": 450, "right": 5265, "bottom": 3720, "left": 1240}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708977f.jpg"} -{"rects": [{"solidity": 0.9987115384615385, "top": 400, "right": 3225, "bottom": 2015, "left": 795}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733774f.jpg"} -{"rects": [{"solidity": 0.9987123404047121, "top": 635, "right": 2585, "bottom": 3450, "left": 575}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708783f.jpg"} -{"rects": [{"solidity": 0.9987130288967521, "top": 390, "right": 5075, "bottom": 3575, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719620f.jpg"} -{"rects": [{"solidity": 0.9987132203610132, "top": 500, "right": 3165, "bottom": 2105, "left": 755}, {"solidity": 0.9952845475758362, "top": 2270, "right": 3180, "bottom": 3885, "left": 760}, {"solidity": 0.9961867453611367, "top": 4080, "right": 3170, "bottom": 5685, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731172f.jpg"} -{"rects": [{"solidity": 0.9987132575975274, "top": 770, "right": 3905, "bottom": 3195, "left": 2280}, {"solidity": 0.9979245100878463, "top": 780, "right": 5755, "bottom": 3200, "left": 4140}, {"solidity": 0.997636071040419, "top": 780, "right": 2045, "bottom": 3205, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733961f.jpg"} -{"rects": [{"solidity": 0.998713913426067, "top": 385, "right": 2920, "bottom": 1805, "left": 1085}, {"solidity": 0.9961188107340951, "top": 2095, "right": 2895, "bottom": 3515, "left": 1055}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704254f.jpg"} -{"rects": [{"solidity": 0.9987142716797354, "top": 505, "right": 5095, "bottom": 3745, "left": 1025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709480f.jpg"} -{"rects": [{"solidity": 0.9987150874602885, "top": 295, "right": 3970, "bottom": 2715, "left": 955}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516895.jpg"} -{"rects": [{"solidity": 0.9987155679796311, "top": 500, "right": 5060, "bottom": 3790, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724329f.jpg"} -{"rects": [{"solidity": 0.998715601265762, "top": 910, "right": 3590, "bottom": 4925, "left": 335}], "shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/712683f.jpg"} -{"rects": [{"solidity": 0.998715634907253, "top": 705, "right": 4300, "bottom": 3755, "left": 2320}, {"solidity": 0.9967271044001539, "top": 800, "right": 2025, "bottom": 3200, "left": 415}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715318f.jpg"} -{"rects": [{"solidity": 0.9987157051611986, "top": 655, "right": 2725, "bottom": 2060, "left": 895}, {"solidity": 0.9967430585505866, "top": 625, "right": 5310, "bottom": 2045, "left": 3510}, {"solidity": 0.9968695634583485, "top": 2150, "right": 2700, "bottom": 3555, "left": 925}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706789f.jpg"} -{"rects": [{"solidity": 0.9987160931882908, "top": 330, "right": 2365, "bottom": 1530, "left": 565}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/729442f.jpg"} -{"rects": [{"solidity": 0.9987167505742135, "top": 1145, "right": 3405, "bottom": 4870, "left": 295}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710146f.jpg"} -{"rects": [{"solidity": 0.9987173532626799, "top": 535, "right": 5130, "bottom": 3830, "left": 1070}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703600f.jpg"} -{"rects": [{"solidity": 0.998717369072208, "top": 1265, "right": 4045, "bottom": 5815, "left": 345}], "shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708821f.jpg"} -{"rects": [{"solidity": 0.9987175772659698, "top": 430, "right": 5085, "bottom": 3710, "left": 1050}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719427f.jpg"} -{"rects": [{"solidity": 0.9987176957979877, "top": 660, "right": 2625, "bottom": 3705, "left": 615}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715715f.jpg"} -{"rects": [{"solidity": 0.9987177809760566, "top": 350, "right": 5235, "bottom": 3585, "left": 1230}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733490f.jpg"} -{"rects": [{"solidity": 0.9987186905844424, "top": 350, "right": 3335, "bottom": 1985, "left": 915}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707693f.jpg"} -{"rects": [{"solidity": 0.9987192747528525, "top": 765, "right": 2035, "bottom": 3175, "left": 425}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720022f.jpg"} -{"rects": [{"solidity": 0.9987202116803122, "top": 790, "right": 2000, "bottom": 3185, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733710f.jpg"} -{"rects": [{"solidity": 0.9987203907203908, "top": 490, "right": 3010, "bottom": 2095, "left": 605}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705788f.jpg"} -{"rects": [{"solidity": 0.9987213770185368, "top": 4095, "right": 3070, "bottom": 5700, "left": 655}, {"solidity": 0.997730059749002, "top": 2230, "right": 3090, "bottom": 3835, "left": 685}, {"solidity": 0.9962050762416853, "top": 395, "right": 3095, "bottom": 1995, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730928f.jpg"} -{"rects": [{"solidity": 0.9987218341457331, "top": 695, "right": 2305, "bottom": 3510, "left": 300}, {"solidity": 0.9987876293168597, "top": 915, "right": 5885, "bottom": 3330, "left": 4265}, {"solidity": 0.9960908522071203, "top": 910, "right": 4115, "bottom": 3315, "left": 2480}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728671f.jpg"} -{"rects": [{"solidity": 0.9987230579705949, "top": 750, "right": 2055, "bottom": 3160, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703056f.jpg"} -{"rects": [{"solidity": 0.9987232227005273, "top": 785, "right": 3930, "bottom": 3215, "left": 2305}, {"solidity": 0.9964673982228786, "top": 785, "right": 5780, "bottom": 3220, "left": 4150}, {"solidity": 0.9987410491470129, "top": 790, "right": 2060, "bottom": 3220, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731660f.jpg"} -{"rects": [{"solidity": 0.9987238206912968, "top": 665, "right": 2845, "bottom": 3480, "left": 820}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716721f.jpg"} -{"rects": [{"solidity": 0.9987239597818298, "top": 1650, "right": 3200, "bottom": 3250, "left": 795}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/733120f.jpg"} -{"rects": [{"solidity": 0.9987243209027287, "top": 405, "right": 3200, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706811f.jpg"} -{"rects": [{"solidity": 0.9987251456976346, "top": 995, "right": 3620, "bottom": 5000, "left": 400}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712150f.jpg"} -{"rects": [{"solidity": 0.9987254402931894, "top": 2490, "right": 2460, "bottom": 3970, "left": 370}, {"solidity": 0.9962537625965188, "top": 585, "right": 2475, "bottom": 2065, "left": 390}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716055f.jpg"} -{"rects": [{"solidity": 0.9987256589472405, "top": 540, "right": 5115, "bottom": 3780, "left": 1030}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703225f.jpg"} -{"rects": [{"solidity": 0.9987262052555349, "top": 820, "right": 3820, "bottom": 3215, "left": 2195}, {"solidity": 0.994398158192127, "top": 800, "right": 1945, "bottom": 3220, "left": 340}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720901f.jpg"} -{"rects": [{"solidity": 0.9987266389699924, "top": 4125, "right": 3210, "bottom": 5735, "left": 780}, {"solidity": 0.9975205066033842, "top": 2300, "right": 3190, "bottom": 3915, "left": 770}, {"solidity": 0.9973639889268177, "top": 445, "right": 3195, "bottom": 2055, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733839f.jpg"} -{"rects": [{"solidity": 0.998726943637873, "top": 1350, "right": 3390, "bottom": 4685, "left": 335}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704963f.jpg"} -{"rects": [{"solidity": 0.9987269442254679, "top": 650, "right": 2760, "bottom": 2060, "left": 935}, {"solidity": 0.9951109845770216, "top": 635, "right": 5300, "bottom": 2045, "left": 3460}, {"solidity": 0.9966087556665558, "top": 2070, "right": 2780, "bottom": 3460, "left": 945}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704223f.jpg"} -{"rects": [{"solidity": 0.9987284204516702, "top": 370, "right": 3105, "bottom": 1975, "left": 690}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729118f.jpg"} -{"rects": [{"solidity": 0.9987286909418417, "top": 340, "right": 2965, "bottom": 1945, "left": 555}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703256f.jpg"} -{"rects": [{"solidity": 0.9987287528077358, "top": 750, "right": 1930, "bottom": 3180, "left": 305}, {"solidity": 0.9995996771796777, "top": 745, "right": 3785, "bottom": 3175, "left": 2170}, {"solidity": 0.9981767962882264, "top": 750, "right": 5660, "bottom": 3175, "left": 4040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711871f.jpg"} -{"rects": [{"solidity": 0.9987288893223453, "top": 785, "right": 1970, "bottom": 3190, "left": 360}, {"solidity": 0.9954099552681638, "top": 795, "right": 3855, "bottom": 3215, "left": 2230}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718617f.jpg"} -{"rects": [{"solidity": 0.9987296853651435, "top": 2240, "right": 3165, "bottom": 3860, "left": 740}, {"solidity": 0.9976494519154707, "top": 4075, "right": 3160, "bottom": 5685, "left": 740}, {"solidity": 0.9988779567137752, "top": 430, "right": 3165, "bottom": 2035, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732023f.jpg"} -{"rects": [{"solidity": 0.9987298449946607, "top": 605, "right": 2850, "bottom": 2200, "left": 470}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719839f.jpg"} -{"rects": [{"solidity": 0.9987303474449746, "top": 405, "right": 3980, "bottom": 2840, "left": 975}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509471.jpg"} -{"rects": [{"solidity": 0.9987307729184723, "top": 965, "right": 3485, "bottom": 5045, "left": 245}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713733f.jpg"} -{"rects": [{"solidity": 0.9987309439774734, "top": 450, "right": 3175, "bottom": 2060, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/734510f.jpg"} -{"rects": [{"solidity": 0.9987314167263358, "top": 410, "right": 3190, "bottom": 2010, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702835f.jpg"} -{"rects": [{"solidity": 0.998731656779785, "top": 325, "right": 3950, "bottom": 2745, "left": 930}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517287.jpg"} -{"rects": [{"solidity": 0.9987317421769993, "top": 440, "right": 4960, "bottom": 3710, "left": 1265}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710119f.jpg"} -{"rects": [{"solidity": 0.9987329192311657, "top": 385, "right": 5090, "bottom": 3660, "left": 1035}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714200f.jpg"} -{"rects": [{"solidity": 0.9987334600833477, "top": 365, "right": 5065, "bottom": 3625, "left": 1055}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719107f.jpg"} -{"rects": [{"solidity": 0.9987335320555393, "top": 520, "right": 3320, "bottom": 3920, "left": 690}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714434f.jpg"} -{"rects": [{"solidity": 0.9987338010390482, "top": 470, "right": 5270, "bottom": 3670, "left": 1270}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730026f.jpg"} -{"rects": [{"solidity": 0.9987353421977372, "top": 780, "right": 2050, "bottom": 3200, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702014f.jpg"} -{"rects": [{"solidity": 0.9987358662827446, "top": 340, "right": 2405, "bottom": 1540, "left": 610}], "shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715809f.jpg"} -{"rects": [{"solidity": 0.9987359442142912, "top": 500, "right": 2715, "bottom": 2915, "left": 1095}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707332f.jpg"} -{"rects": [{"solidity": 0.9987360909236744, "top": 660, "right": 5045, "bottom": 2080, "left": 3220}, {"solidity": 0.9944570702769518, "top": 2280, "right": 2910, "bottom": 3710, "left": 1065}, {"solidity": 0.9963918214619805, "top": 2290, "right": 5045, "bottom": 3705, "left": 3240}, {"solidity": 0.9977283733655522, "top": 665, "right": 2880, "bottom": 2070, "left": 1085}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725533f.jpg"} -{"rects": [{"solidity": 0.9987365883999378, "top": 390, "right": 3160, "bottom": 2000, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701295f.jpg"} -{"rects": [{"solidity": 0.9987369986546907, "top": 405, "right": 5045, "bottom": 3635, "left": 940}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714186f.jpg"} -{"rects": [{"solidity": 0.9987370687441632, "top": 460, "right": 5080, "bottom": 3730, "left": 1045}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721874f.jpg"} -{"rects": [{"solidity": 0.9987377913373336, "top": 130, "right": 5155, "bottom": 3355, "left": 1100}], "shape": {"h": 3705, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727247f.jpg"} -{"rects": [{"solidity": 0.9987378024729467, "top": 280, "right": 3265, "bottom": 2715, "left": 255}], "shape": {"h": 2895, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507504.jpg"} -{"rects": [{"solidity": 0.9987380795925239, "top": 455, "right": 3150, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/701831f.jpg"} -{"rects": [{"solidity": 0.9987389914970551, "top": 330, "right": 3470, "bottom": 2795, "left": 450}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509957.jpg"} -{"rects": [{"solidity": 0.9987410506504572, "top": 520, "right": 3445, "bottom": 2150, "left": 1015}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701880f.jpg"} -{"rects": [{"solidity": 0.9987410718873645, "top": 465, "right": 3155, "bottom": 2090, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719480f.jpg"} -{"rects": [{"solidity": 0.9987411382129304, "top": 460, "right": 5070, "bottom": 3730, "left": 1040}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730077f.jpg"} -{"rects": [{"solidity": 0.9987416323377961, "top": 795, "right": 2050, "bottom": 3215, "left": 435}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706477f.jpg"} -{"rects": [{"solidity": 0.998741919250571, "top": 560, "right": 3250, "bottom": 2175, "left": 835}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703993f.jpg"} -{"rects": [{"solidity": 0.9987420702657257, "top": 820, "right": 3880, "bottom": 3260, "left": 2260}, {"solidity": 0.9973984781738086, "top": 840, "right": 5730, "bottom": 3265, "left": 4105}, {"solidity": 0.9974207067583891, "top": 840, "right": 2035, "bottom": 3260, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715131f.jpg"} -{"rects": [{"solidity": 0.9987437340153452, "top": 590, "right": 2835, "bottom": 3615, "left": 805}, {"solidity": 0.9955127828817987, "top": 830, "right": 4330, "bottom": 3150, "left": 2850}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709254f.jpg"} -{"rects": [{"solidity": 0.9987438605782116, "top": 855, "right": 5735, "bottom": 3260, "left": 4115}, {"solidity": 0.9986689453976849, "top": 835, "right": 3890, "bottom": 3255, "left": 2280}, {"solidity": 0.9958476788003827, "top": 855, "right": 2065, "bottom": 3265, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713482f.jpg"} -{"rects": [{"solidity": 0.9987440486952329, "top": 490, "right": 3310, "bottom": 2400, "left": 580}, {"solidity": 0.9950711453766163, "top": 2555, "right": 3155, "bottom": 4165, "left": 755}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718392f.jpg"} -{"rects": [{"solidity": 0.9987440838986391, "top": 425, "right": 5045, "bottom": 3685, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720493f.jpg"} -{"rects": [{"solidity": 0.9987444555362307, "top": 410, "right": 4320, "bottom": 2850, "left": 1320}], "shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509671.jpg"} -{"rects": [{"solidity": 0.99874517342304, "top": 795, "right": 1995, "bottom": 3190, "left": 420}, {"solidity": 0.996592444232359, "top": 810, "right": 3820, "bottom": 3185, "left": 2235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713689f.jpg"} -{"rects": [{"solidity": 0.998745286613325, "top": 765, "right": 3890, "bottom": 3160, "left": 2290}, {"solidity": 0.9979038679568645, "top": 765, "right": 2025, "bottom": 3160, "left": 430}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716866f.jpg"} -{"rects": [{"solidity": 0.9987454999060069, "top": 465, "right": 5090, "bottom": 3745, "left": 1040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715063f.jpg"} -{"rects": [{"solidity": 0.9987455059175057, "top": 1075, "right": 3550, "bottom": 5105, "left": 275}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/725401f.jpg"} -{"rects": [{"solidity": 0.9987458234942533, "top": 685, "right": 3890, "bottom": 3085, "left": 2285}, {"solidity": 0.9968930794161606, "top": 700, "right": 2040, "bottom": 3105, "left": 435}, {"solidity": 0.9993349925598177, "top": 680, "right": 5750, "bottom": 3075, "left": 4155}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733357f.jpg"} -{"rects": [{"solidity": 0.9987473550904186, "top": 670, "right": 3810, "bottom": 2670, "left": 615}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733086f.jpg"} -{"rects": [{"solidity": 0.998747378233512, "top": 810, "right": 2045, "bottom": 3225, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714797f.jpg"} -{"rects": [{"solidity": 0.9987479570918738, "top": 850, "right": 3345, "bottom": 4475, "left": 645}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721846f.jpg"} -{"rects": [{"solidity": 0.9987479580957225, "top": 760, "right": 2075, "bottom": 3170, "left": 475}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717948f.jpg"} -{"rects": [{"solidity": 0.9987482507606784, "top": 2265, "right": 3170, "bottom": 3890, "left": 755}, {"solidity": 0.9968400364808796, "top": 4110, "right": 3170, "bottom": 5740, "left": 750}, {"solidity": 0.9989065452004452, "top": 430, "right": 3175, "bottom": 2040, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734183f.jpg"} -{"rects": [{"solidity": 0.99874897230957, "top": 385, "right": 3320, "bottom": 2835, "left": 295}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509963.jpg"} -{"rects": [{"solidity": 0.9987493507165598, "top": 370, "right": 5175, "bottom": 3590, "left": 1110}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732602f.jpg"} -{"rects": [{"solidity": 0.9987495314782024, "top": 800, "right": 2020, "bottom": 3215, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719334f.jpg"} -{"rects": [{"solidity": 0.9987501376082359, "top": 375, "right": 5080, "bottom": 3635, "left": 1025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724465f.jpg"} -{"rects": [{"solidity": 0.9987507173644944, "top": 450, "right": 5655, "bottom": 4075, "left": 1120}], "shape": {"h": 4410, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/711657f.jpg"} -{"rects": [{"solidity": 0.9987508577158493, "top": 305, "right": 3885, "bottom": 2750, "left": 880}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508153.jpg"} -{"rects": [{"solidity": 0.9987512241289789, "top": 495, "right": 3205, "bottom": 2090, "left": 805}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710680f.jpg"} -{"rects": [{"solidity": 0.998751794650332, "top": 1000, "right": 3545, "bottom": 5100, "left": 310}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712573f.jpg"} -{"rects": [{"solidity": 0.9987519232217595, "top": 275, "right": 2130, "bottom": 1580, "left": 335}], "shape": {"h": 3965, "w": 2575}, "file": "/usr/local/google/home/danvk/milstein/734433f.jpg"} -{"rects": [{"solidity": 0.9987522977722324, "top": 2095, "right": 2705, "bottom": 3525, "left": 855}, {"solidity": 0.9953235401238315, "top": 595, "right": 2685, "bottom": 2025, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704064f.jpg"} -{"rects": [{"solidity": 0.9987524119496957, "top": 445, "right": 3125, "bottom": 2060, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701803f.jpg"} -{"rects": [{"solidity": 0.9987527201316279, "top": 485, "right": 5095, "bottom": 3775, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701314f.jpg"} -{"rects": [{"solidity": 0.9987538169120764, "top": 1050, "right": 3515, "bottom": 5130, "left": 285}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712680f.jpg"} -{"rects": [{"solidity": 0.9987552958822675, "top": 465, "right": 2740, "bottom": 3665, "left": 740}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733013f.jpg"} -{"rects": [{"solidity": 0.9987557355879247, "top": 410, "right": 2755, "bottom": 3610, "left": 755}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732995f.jpg"} -{"rects": [{"solidity": 0.9987559836225886, "top": 875, "right": 3800, "bottom": 3300, "left": 2180}, {"solidity": 0.9985180258425298, "top": 855, "right": 1985, "bottom": 3275, "left": 375}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710796f.jpg"} -{"rects": [{"solidity": 0.9987571294244728, "top": 235, "right": 3220, "bottom": 1840, "left": 810}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719514f.jpg"} -{"rects": [{"solidity": 0.9987574102358332, "top": 2125, "right": 3200, "bottom": 3735, "left": 785}, {"solidity": 0.9977453516177834, "top": 475, "right": 3065, "bottom": 1905, "left": 1260}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728217f.jpg"} -{"rects": [{"solidity": 0.9987575348715311, "top": 465, "right": 3175, "bottom": 2075, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710928f.jpg"} -{"rects": [{"solidity": 0.998757783607801, "top": 415, "right": 3185, "bottom": 2045, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700044f.jpg"} -{"rects": [{"solidity": 0.9987578068389634, "top": 870, "right": 2635, "bottom": 3875, "left": 210}], "shape": {"h": 4605, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716300f.jpg"} -{"rects": [{"solidity": 0.998758008426187, "top": 2260, "right": 3220, "bottom": 3865, "left": 790}, {"solidity": 0.9962017569707312, "top": 405, "right": 3225, "bottom": 2015, "left": 805}, {"solidity": 0.9974447001911598, "top": 4105, "right": 3210, "bottom": 5710, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722409f.jpg"} -{"rects": [{"solidity": 0.9987581381148454, "top": 635, "right": 2455, "bottom": 3680, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712210f.jpg"} -{"rects": [{"solidity": 0.9987582093195323, "top": 1000, "right": 3965, "bottom": 5500, "left": 310}], "shape": {"h": 6865, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711543f.jpg"} -{"rects": [{"solidity": 0.9987587779359287, "top": 430, "right": 3170, "bottom": 2005, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714694f.jpg"} -{"rects": [{"solidity": 0.9987589738306596, "top": 430, "right": 5050, "bottom": 3690, "left": 1010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730370f.jpg"} -{"rects": [{"solidity": 0.9987600374431562, "top": 475, "right": 4905, "bottom": 3700, "left": 920}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709131f.jpg"} -{"rects": [{"solidity": 0.9987602396546894, "top": 925, "right": 3530, "bottom": 4940, "left": 305}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709023f.jpg"} -{"rects": [{"solidity": 0.9987604009228336, "top": 480, "right": 5070, "bottom": 3760, "left": 995}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709495f.jpg"} -{"rects": [{"solidity": 0.9987604125347085, "top": 395, "right": 2835, "bottom": 1995, "left": 455}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702399f.jpg"} -{"rects": [{"solidity": 0.9987604915536353, "top": 390, "right": 3155, "bottom": 2005, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700121f.jpg"} -{"rects": [{"solidity": 0.9987606250977255, "top": 540, "right": 5150, "bottom": 3780, "left": 1110}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733560f.jpg"} -{"rects": [{"solidity": 0.998760671991187, "top": 760, "right": 2025, "bottom": 3185, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715402f.jpg"} -{"rects": [{"solidity": 0.9987613809245173, "top": 500, "right": 5130, "bottom": 3755, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710430f.jpg"} -{"rects": [{"solidity": 0.9987616249423306, "top": 615, "right": 2810, "bottom": 2040, "left": 990}, {"solidity": 0.995425226194457, "top": 565, "right": 5360, "bottom": 2000, "left": 3535}, {"solidity": 0.9956602906823313, "top": 2075, "right": 2820, "bottom": 3490, "left": 990}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706524f.jpg"} -{"rects": [{"solidity": 0.9987618721269291, "top": 815, "right": 2065, "bottom": 3225, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702916f.jpg"} -{"rects": [{"solidity": 0.9987619708899399, "top": 865, "right": 1930, "bottom": 3235, "left": 310}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711026f.jpg"} -{"rects": [{"solidity": 0.9987620124089822, "top": 1035, "right": 3535, "bottom": 5040, "left": 305}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722306f.jpg"} -{"rects": [{"solidity": 0.9987622730566725, "top": 430, "right": 3075, "bottom": 2055, "left": 660}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701836f.jpg"} -{"rects": [{"solidity": 0.9987623831788806, "top": 400, "right": 5090, "bottom": 3665, "left": 975}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/721660f.jpg"} -{"rects": [{"solidity": 0.998762397776957, "top": 1330, "right": 3660, "bottom": 5335, "left": 415}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/732298f.jpg"} -{"rects": [{"solidity": 0.9987630110122191, "top": 1030, "right": 3630, "bottom": 5105, "left": 365}], "shape": {"h": 6250, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/718147f.jpg"} -{"rects": [{"solidity": 0.9987639383931199, "top": 2295, "right": 3170, "bottom": 3895, "left": 765}, {"solidity": 0.998758955820137, "top": 430, "right": 3165, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/724643f.jpg"} -{"rects": [{"solidity": 0.9987640790449855, "top": 585, "right": 2665, "bottom": 3600, "left": 190}], "shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508233.jpg"} -{"rects": [{"solidity": 0.9987649908291398, "top": 440, "right": 5060, "bottom": 3740, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721875f.jpg"} -{"rects": [{"solidity": 0.9987651470278194, "top": 710, "right": 2035, "bottom": 3105, "left": 465}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725325f.jpg"} -{"rects": [{"solidity": 0.9987652667089486, "top": 390, "right": 5170, "bottom": 3650, "left": 1060}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718478f.jpg"} -{"rects": [{"solidity": 0.998765512524022, "top": 785, "right": 3955, "bottom": 3190, "left": 2350}, {"solidity": 0.9966851266083733, "top": 780, "right": 2100, "bottom": 3175, "left": 500}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710509f.jpg"} -{"rects": [{"solidity": 0.9987665612500564, "top": 2290, "right": 3100, "bottom": 3910, "left": 690}, {"solidity": 0.9987562710040373, "top": 430, "right": 3095, "bottom": 2050, "left": 685}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713608f.jpg"} -{"rects": [{"solidity": 0.9987666187018384, "top": 710, "right": 2545, "bottom": 2025, "left": 820}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716645f.jpg"} -{"rects": [{"solidity": 0.9987666869521307, "top": 415, "right": 3225, "bottom": 2030, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724963f.jpg"} -{"rects": [{"solidity": 0.9987673710567138, "top": 2255, "right": 3180, "bottom": 3870, "left": 760}, {"solidity": 0.9974936616700976, "top": 440, "right": 3180, "bottom": 2055, "left": 760}, {"solidity": 0.9980034438977428, "top": 4065, "right": 3175, "bottom": 5675, "left": 755}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719617f.jpg"} -{"rects": [{"solidity": 0.9987675980591343, "top": 345, "right": 5265, "bottom": 3600, "left": 1230}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733477f.jpg"} -{"rects": [{"solidity": 0.9987687144156858, "top": 445, "right": 3115, "bottom": 2065, "left": 700}, {"solidity": 0.9973221719660659, "top": 2270, "right": 3110, "bottom": 3890, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706197f.jpg"} -{"rects": [{"solidity": 0.9987703361295847, "top": 325, "right": 3155, "bottom": 1950, "left": 750}, {"solidity": 0.9978750917869373, "top": 2190, "right": 3140, "bottom": 3810, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705806f.jpg"} -{"rects": [{"solidity": 0.9987708087427246, "top": 500, "right": 3950, "bottom": 2590, "left": 2470}, {"solidity": 0.9884724690619907, "top": 510, "right": 2180, "bottom": 2580, "left": 690}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716219f.jpg"} -{"rects": [{"solidity": 0.9987714827158074, "top": 720, "right": 1990, "bottom": 3125, "left": 390}, {"solidity": 0.9977840410789243, "top": 760, "right": 3840, "bottom": 3125, "left": 2250}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721666f.jpg"} -{"rects": [{"solidity": 0.9987714905243654, "top": 810, "right": 2095, "bottom": 3190, "left": 520}, {"solidity": 0.9791657892741928, "top": 925, "right": 3780, "bottom": 3085, "left": 2390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718321f.jpg"} -{"rects": [{"solidity": 0.998771714168644, "top": 415, "right": 5130, "bottom": 3640, "left": 1045}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732690f.jpg"} -{"rects": [{"solidity": 0.9987718966340989, "top": 805, "right": 2045, "bottom": 3225, "left": 425}, {"solidity": 0.9969441416020008, "top": 805, "right": 3825, "bottom": 3235, "left": 2205}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715681f.jpg"} -{"rects": [{"solidity": 0.9987719343484484, "top": 2150, "right": 3175, "bottom": 3770, "left": 765}, {"solidity": 0.9982181662958556, "top": 310, "right": 3195, "bottom": 1920, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707689f.jpg"} -{"rects": [{"solidity": 0.9987720016373312, "top": 2130, "right": 3185, "bottom": 3750, "left": 755}, {"solidity": 0.9978045715057168, "top": 315, "right": 3185, "bottom": 1940, "left": 775}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733848f.jpg"} -{"rects": [{"solidity": 0.9987727964109576, "top": 405, "right": 2970, "bottom": 3630, "left": 940}, {"solidity": 0.9972439666124044, "top": 380, "right": 5660, "bottom": 3615, "left": 3615}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704952f.jpg"} -{"rects": [{"solidity": 0.9987729576103884, "top": 1015, "right": 3215, "bottom": 5225, "left": 425}], "shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/718491f.jpg"} -{"rects": [{"solidity": 0.9987741377001692, "top": 1040, "right": 3555, "bottom": 5085, "left": 265}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713777f.jpg"} -{"rects": [{"solidity": 0.9987742587734658, "top": 365, "right": 2990, "bottom": 1965, "left": 610}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709984f.jpg"} -{"rects": [{"solidity": 0.9987748959787005, "top": 370, "right": 3150, "bottom": 1990, "left": 735}], "shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/700849f.jpg"} -{"rects": [{"solidity": 0.9987749687516462, "top": 440, "right": 5085, "bottom": 3655, "left": 1010}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723141f.jpg"} -{"rects": [{"solidity": 0.9987766716896769, "top": 570, "right": 2985, "bottom": 2170, "left": 600}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707815f.jpg"} -{"rects": [{"solidity": 0.9987767813872411, "top": 440, "right": 5710, "bottom": 4110, "left": 1160}], "shape": {"h": 4420, "w": 6935}, "file": "/usr/local/google/home/danvk/milstein/708886f.jpg"} -{"rects": [{"solidity": 0.9987781060643999, "top": 440, "right": 3265, "bottom": 2020, "left": 880}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/726938f.jpg"} -{"rects": [{"solidity": 0.9987783265353992, "top": 855, "right": 1995, "bottom": 3260, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728497f.jpg"} -{"rects": [{"solidity": 0.9987783828115314, "top": 1070, "right": 3795, "bottom": 5090, "left": 520}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710646f.jpg"} -{"rects": [{"solidity": 0.9987795090492043, "top": 395, "right": 2905, "bottom": 1825, "left": 1050}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702735f.jpg"} -{"rects": [{"solidity": 0.9987799036205746, "top": 525, "right": 2830, "bottom": 3565, "left": 810}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713574f.jpg"} -{"rects": [{"solidity": 0.998779985268971, "top": 415, "right": 3180, "bottom": 2020, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734577f.jpg"} -{"rects": [{"solidity": 0.9987801646681345, "top": 410, "right": 5000, "bottom": 3640, "left": 965}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704287f.jpg"} -{"rects": [{"solidity": 0.9987814645027835, "top": 1060, "right": 3410, "bottom": 5090, "left": 240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712216f.jpg"} -{"rects": [{"solidity": 0.9987814993075161, "top": 420, "right": 5105, "bottom": 3660, "left": 1095}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722698f.jpg"} -{"rects": [{"solidity": 0.998781629145609, "top": 845, "right": 2055, "bottom": 3200, "left": 485}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712634f.jpg"} -{"rects": [{"solidity": 0.9987816973953201, "top": 880, "right": 3890, "bottom": 3315, "left": 2270}, {"solidity": 0.9973538816643128, "top": 900, "right": 5730, "bottom": 3340, "left": 4105}, {"solidity": 0.9961580977805529, "top": 865, "right": 2040, "bottom": 3310, "left": 415}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729956f.jpg"} -{"rects": [{"solidity": 0.998782162620673, "top": 575, "right": 2915, "bottom": 3625, "left": 875}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719643f.jpg"} -{"rects": [{"solidity": 0.9987828056330159, "top": 460, "right": 3060, "bottom": 1885, "left": 1290}, {"solidity": 0.9950092513877081, "top": 2260, "right": 3065, "bottom": 3680, "left": 1275}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726410f.jpg"} -{"rects": [{"solidity": 0.9987839928199482, "top": 410, "right": 5090, "bottom": 3650, "left": 1015}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732668f.jpg"} -{"rects": [{"solidity": 0.9987847656425352, "top": 905, "right": 5230, "bottom": 3335, "left": 3615}, {"solidity": 0.9964619766740657, "top": 1325, "right": 3105, "bottom": 2950, "left": 675}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734306f.jpg"} -{"rects": [{"solidity": 0.9987848262110116, "top": 935, "right": 3520, "bottom": 5020, "left": 305}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720831f.jpg"} -{"rects": [{"solidity": 0.9987848850263495, "top": 850, "right": 2135, "bottom": 3245, "left": 545}, {"solidity": 0.9972399157761126, "top": 810, "right": 3950, "bottom": 3205, "left": 2360}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721355f.jpg"} -{"rects": [{"solidity": 0.9987849886436385, "top": 1400, "right": 3505, "bottom": 5300, "left": 400}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721858f.jpg"} -{"rects": [{"solidity": 0.998785208111013, "top": 410, "right": 5145, "bottom": 3660, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725840f.jpg"} -{"rects": [{"solidity": 0.9987852297670197, "top": 320, "right": 5045, "bottom": 3605, "left": 1035}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730662f.jpg"} -{"rects": [{"solidity": 0.9987852844025971, "top": 2255, "right": 3210, "bottom": 3865, "left": 805}, {"solidity": 0.9991365237423386, "top": 425, "right": 3210, "bottom": 2030, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/703096f.jpg"} -{"rects": [{"solidity": 0.9987867062353462, "top": 835, "right": 3735, "bottom": 3195, "left": 2110}, {"solidity": 0.9959051646601319, "top": 805, "right": 1900, "bottom": 3205, "left": 295}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713924f.jpg"} -{"rects": [{"solidity": 0.9987869811152112, "top": 805, "right": 3850, "bottom": 3230, "left": 2225}, {"solidity": 0.9976728500234953, "top": 810, "right": 1965, "bottom": 3230, "left": 335}, {"solidity": 0.9968014937056476, "top": 815, "right": 5735, "bottom": 3240, "left": 4115}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710515f.jpg"} -{"rects": [{"solidity": 0.9987870237914735, "top": 760, "right": 1995, "bottom": 3160, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712144f.jpg"} -{"rects": [{"solidity": 0.9987890466464511, "top": 745, "right": 3850, "bottom": 3135, "left": 2255}, {"solidity": 0.997326176664273, "top": 755, "right": 1995, "bottom": 3150, "left": 405}, {"solidity": 0.9977594304445675, "top": 735, "right": 5690, "bottom": 3130, "left": 4105}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731230f.jpg"} -{"rects": [{"solidity": 0.9987898448758319, "top": 470, "right": 4985, "bottom": 3710, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709457f.jpg"} -{"rects": [{"solidity": 0.9987901077670588, "top": 745, "right": 2000, "bottom": 3165, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718697f.jpg"} -{"rects": [{"solidity": 0.9987902846560743, "top": 410, "right": 3160, "bottom": 2020, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730560f.jpg"} -{"rects": [{"solidity": 0.9987906678781777, "top": 2150, "right": 3105, "bottom": 3770, "left": 730}, {"solidity": 0.994681011426135, "top": 455, "right": 2885, "bottom": 1995, "left": 975}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720209f.jpg"} -{"rects": [{"solidity": 0.9987911872405956, "top": 800, "right": 2035, "bottom": 3230, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706451f.jpg"} -{"rects": [{"solidity": 0.9987916570974422, "top": 475, "right": 5155, "bottom": 3710, "left": 1085}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702726f.jpg"} -{"rects": [{"solidity": 0.9987919040556291, "top": 430, "right": 5215, "bottom": 3670, "left": 1115}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732697f.jpg"} -{"rects": [{"solidity": 0.998792282737223, "top": 685, "right": 2710, "bottom": 2080, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726521f.jpg"} -{"rects": [{"solidity": 0.9987934306646734, "top": 520, "right": 2670, "bottom": 3565, "left": 720}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715059f.jpg"} -{"rects": [{"solidity": 0.9987935156096842, "top": 360, "right": 5280, "bottom": 3575, "left": 1275}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727861f.jpg"} -{"rects": [{"solidity": 0.9987936362184983, "top": 445, "right": 5120, "bottom": 3685, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733715f.jpg"} -{"rects": [{"solidity": 0.9987944386932763, "top": 790, "right": 2135, "bottom": 3190, "left": 535}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721661f.jpg"} -{"rects": [{"solidity": 0.9987950353080377, "top": 440, "right": 4980, "bottom": 3635, "left": 1005}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731942f.jpg"} -{"rects": [{"solidity": 0.9987964041282535, "top": 495, "right": 5120, "bottom": 3360, "left": 1300}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734063f.jpg"} -{"rects": [{"solidity": 0.9987964529060046, "top": 820, "right": 3780, "bottom": 3240, "left": 2160}, {"solidity": 0.9967453422516082, "top": 825, "right": 5660, "bottom": 3250, "left": 4030}, {"solidity": 0.9973966713434335, "top": 825, "right": 1925, "bottom": 3245, "left": 310}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722614f.jpg"} -{"rects": [{"solidity": 0.9987965297557507, "top": 835, "right": 3445, "bottom": 2845, "left": 385}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720089f.jpg"} -{"rects": [{"solidity": 0.9987980149523072, "top": 760, "right": 2020, "bottom": 3175, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714362f.jpg"} -{"rects": [{"solidity": 0.9987980710743882, "top": 2100, "right": 2715, "bottom": 3525, "left": 900}, {"solidity": 0.9968472579440804, "top": 615, "right": 2720, "bottom": 2035, "left": 900}, {"solidity": 0.9955721151250068, "top": 615, "right": 5290, "bottom": 2035, "left": 3475}, {"solidity": 0.9961246412880616, "top": 2110, "right": 5265, "bottom": 3515, "left": 3495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705284f.jpg"} -{"rects": [{"solidity": 0.9987990845098534, "top": 430, "right": 3235, "bottom": 2015, "left": 850}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711149f.jpg"} -{"rects": [{"solidity": 0.9987991004896742, "top": 2400, "right": 3145, "bottom": 3985, "left": 760}, {"solidity": 0.9965763675192116, "top": 4240, "right": 3105, "bottom": 5830, "left": 745}, {"solidity": 0.9963637465531348, "top": 550, "right": 3130, "bottom": 2135, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731954f.jpg"} -{"rects": [{"solidity": 0.9987994263204688, "top": 345, "right": 3130, "bottom": 1950, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719245f.jpg"} -{"rects": [{"solidity": 0.9988002073241744, "top": 2210, "right": 3165, "bottom": 3835, "left": 745}, {"solidity": 0.9975502189029101, "top": 340, "right": 3165, "bottom": 1960, "left": 750}, {"solidity": 0.9970697080668455, "top": 4095, "right": 3150, "bottom": 5715, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710433f.jpg"} -{"rects": [{"solidity": 0.9988011738905264, "top": 485, "right": 3285, "bottom": 2110, "left": 865}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727927f.jpg"} -{"rects": [{"solidity": 0.9988020518410646, "top": 460, "right": 5120, "bottom": 3745, "left": 1080}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714714f.jpg"} -{"rects": [{"solidity": 0.9988027804084841, "top": 450, "right": 5135, "bottom": 3745, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720077f.jpg"} -{"rects": [{"solidity": 0.9988029445552083, "top": 585, "right": 2805, "bottom": 3630, "left": 755}, {"solidity": 0.9962968707588507, "top": 870, "right": 4625, "bottom": 3280, "left": 3000}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715237f.jpg"} -{"rects": [{"solidity": 0.9988039488977521, "top": 1005, "right": 3535, "bottom": 5010, "left": 285}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711603f.jpg"} -{"rects": [{"solidity": 0.9988060338969889, "top": 840, "right": 1995, "bottom": 3255, "left": 385}, {"solidity": 0.9947972782776662, "top": 1160, "right": 3705, "bottom": 2985, "left": 2270}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716660f.jpg"} -{"rects": [{"solidity": 0.9988061422596323, "top": 370, "right": 4325, "bottom": 2810, "left": 1165}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508645.jpg"} -{"rects": [{"solidity": 0.9988070240878236, "top": 455, "right": 3145, "bottom": 2065, "left": 715}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729093f.jpg"} -{"rects": [{"solidity": 0.9988073516070173, "top": 790, "right": 1985, "bottom": 3155, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713174f.jpg"} -{"rects": [{"solidity": 0.9988079968238699, "top": 980, "right": 3610, "bottom": 5055, "left": 385}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711776f.jpg"} -{"rects": [{"solidity": 0.9988085111909044, "top": 305, "right": 3185, "bottom": 1930, "left": 800}, {"solidity": 0.999829434937629, "top": 2160, "right": 3180, "bottom": 3780, "left": 815}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/715657f.jpg"} -{"rects": [{"solidity": 0.9988086918774977, "top": 365, "right": 5280, "bottom": 3585, "left": 1275}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727857f.jpg"} -{"rects": [{"solidity": 0.998808932299388, "top": 1055, "right": 3460, "bottom": 4965, "left": 285}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724793f.jpg"} -{"rects": [{"solidity": 0.9988093322606597, "top": 410, "right": 3185, "bottom": 2025, "left": 765}, {"solidity": 0.9975616757351258, "top": 2215, "right": 3190, "bottom": 3825, "left": 765}, {"solidity": 0.9952012368848394, "top": 4020, "right": 2890, "bottom": 5440, "left": 1055}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707186f.jpg"} -{"rects": [{"solidity": 0.9988096624357929, "top": 800, "right": 2030, "bottom": 3215, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723579f.jpg"} -{"rects": [{"solidity": 0.9988097873336991, "top": 790, "right": 3775, "bottom": 3210, "left": 2155}, {"solidity": 0.9980906255875621, "top": 820, "right": 5640, "bottom": 3210, "left": 4015}, {"solidity": 0.9983891299009576, "top": 795, "right": 1915, "bottom": 3180, "left": 305}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709567f.jpg"} -{"rects": [{"solidity": 0.998810206795838, "top": 760, "right": 2000, "bottom": 3165, "left": 395}, {"solidity": 0.998128166681367, "top": 770, "right": 3780, "bottom": 3170, "left": 2175}, {"solidity": 0.9968737954149, "top": 765, "right": 5555, "bottom": 3170, "left": 3950}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719016f.jpg"} -{"rects": [{"solidity": 0.9988106427429162, "top": 2155, "right": 2685, "bottom": 3635, "left": 775}, {"solidity": 0.9968687274187074, "top": 475, "right": 5250, "bottom": 1965, "left": 3345}, {"solidity": 0.9963666103558309, "top": 480, "right": 2680, "bottom": 1970, "left": 775}, {"solidity": 0.9947946500822854, "top": 2155, "right": 5225, "bottom": 3640, "left": 3345}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731405f.jpg"} -{"rects": [{"solidity": 0.9988106572905733, "top": 770, "right": 3810, "bottom": 3175, "left": 2200}, {"solidity": 0.9976465729447666, "top": 770, "right": 2015, "bottom": 3170, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733294f.jpg"} -{"rects": [{"solidity": 0.9988109901411266, "top": 325, "right": 3755, "bottom": 2770, "left": 745}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507923.jpg"} -{"rects": [{"solidity": 0.998811669020601, "top": 590, "right": 3345, "bottom": 2500, "left": 640}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712183f.jpg"} -{"rects": [{"solidity": 0.998813847142103, "top": 2240, "right": 3295, "bottom": 3870, "left": 865}, {"solidity": 0.9973935372595457, "top": 405, "right": 3290, "bottom": 2035, "left": 885}, {"solidity": 0.9966445231052709, "top": 4110, "right": 3275, "bottom": 5730, "left": 870}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726899f.jpg"} -{"rects": [{"solidity": 0.9988141923135172, "top": 855, "right": 3840, "bottom": 3265, "left": 2220}, {"solidity": 0.9973603325524181, "top": 850, "right": 1915, "bottom": 3230, "left": 295}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709384f.jpg"} -{"rects": [{"solidity": 0.9988143986133619, "top": 2255, "right": 3185, "bottom": 3865, "left": 760}, {"solidity": 0.9970104248547093, "top": 415, "right": 3185, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/710657f.jpg"} -{"rects": [{"solidity": 0.9988145590562509, "top": 360, "right": 5005, "bottom": 3625, "left": 995}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732738f.jpg"} -{"rects": [{"solidity": 0.9988149620596724, "top": 375, "right": 3160, "bottom": 2000, "left": 730}, {"solidity": 0.9941425001588985, "top": 2235, "right": 3150, "bottom": 3820, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705549f.jpg"} -{"rects": [{"solidity": 0.9988157986393295, "top": 760, "right": 2040, "bottom": 3145, "left": 450}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721379f.jpg"} -{"rects": [{"solidity": 0.9988158532307901, "top": 525, "right": 5070, "bottom": 3790, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712304f.jpg"} -{"rects": [{"solidity": 0.9988160498232184, "top": 785, "right": 2025, "bottom": 3200, "left": 420}, {"solidity": 0.9959751971117263, "top": 780, "right": 3855, "bottom": 3200, "left": 2245}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720665f.jpg"} -{"rects": [{"solidity": 0.9988162197096219, "top": 310, "right": 3125, "bottom": 1935, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701428f.jpg"} -{"rects": [{"solidity": 0.9988163777298896, "top": 420, "right": 3170, "bottom": 2040, "left": 755}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705621f.jpg"} -{"rects": [{"solidity": 0.9988164583088216, "top": 375, "right": 4985, "bottom": 3550, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718159f.jpg"} -{"rects": [{"solidity": 0.9988165142670945, "top": 1130, "right": 3535, "bottom": 5110, "left": 275}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717216f.jpg"} -{"rects": [{"solidity": 0.9988165484320095, "top": 490, "right": 3145, "bottom": 2080, "left": 760}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711497f.jpg"} -{"rects": [{"solidity": 0.9988166745983768, "top": 2265, "right": 3185, "bottom": 3875, "left": 755}, {"solidity": 0.996484404218715, "top": 395, "right": 3175, "bottom": 2000, "left": 765}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733850f.jpg"} -{"rects": [{"solidity": 0.9988176737309257, "top": 620, "right": 3375, "bottom": 2535, "left": 650}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712194f.jpg"} -{"rects": [{"solidity": 0.9988177308163134, "top": 4100, "right": 3150, "bottom": 5710, "left": 725}, {"solidity": 0.9965264799515383, "top": 350, "right": 3145, "bottom": 1965, "left": 720}, {"solidity": 0.9990038024794249, "top": 2210, "right": 3135, "bottom": 3820, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700777f.jpg"} -{"rects": [{"solidity": 0.9988177967844073, "top": 600, "right": 2565, "bottom": 1965, "left": 770}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706532f.jpg"} -{"rects": [{"solidity": 0.9988179038076502, "top": 1270, "right": 3600, "bottom": 5280, "left": 375}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/726484f.jpg"} -{"rects": [{"solidity": 0.9988180946334743, "top": 305, "right": 5140, "bottom": 3570, "left": 1150}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732728f.jpg"} -{"rects": [{"solidity": 0.9988184987489035, "top": 2285, "right": 3135, "bottom": 3890, "left": 715}, {"solidity": 0.9959398856816974, "top": 425, "right": 3140, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734406f.jpg"} -{"rects": [{"solidity": 0.9988185703719703, "top": 800, "right": 2060, "bottom": 3210, "left": 465}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724495f.jpg"} -{"rects": [{"solidity": 0.9988191745617585, "top": 1220, "right": 3535, "bottom": 5205, "left": 330}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717012f.jpg"} -{"rects": [{"solidity": 0.9988192788914734, "top": 670, "right": 2075, "bottom": 3085, "left": 455}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705552f.jpg"} -{"rects": [{"solidity": 0.9988194362263615, "top": 450, "right": 5115, "bottom": 3735, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715138f.jpg"} -{"rects": [{"solidity": 0.9988210054311061, "top": 735, "right": 1895, "bottom": 3145, "left": 275}, {"solidity": 0.9991542303011521, "top": 730, "right": 3735, "bottom": 3135, "left": 2115}, {"solidity": 0.9970649103854013, "top": 750, "right": 5605, "bottom": 3135, "left": 3980}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707982f.jpg"} -{"rects": [{"solidity": 0.9988216304565292, "top": 295, "right": 3935, "bottom": 2750, "left": 915}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508123.jpg"} -{"rects": [{"solidity": 0.9988231343854201, "top": 795, "right": 3800, "bottom": 3190, "left": 2220}, {"solidity": 0.9973073410913129, "top": 795, "right": 1950, "bottom": 3185, "left": 375}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729912f.jpg"} -{"rects": [{"solidity": 0.9988239225295821, "top": 450, "right": 2550, "bottom": 2360, "left": 540}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706102f.jpg"} -{"rects": [{"solidity": 0.99882405197179, "top": 415, "right": 3245, "bottom": 2045, "left": 830}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703934f.jpg"} -{"rects": [{"solidity": 0.998824277701752, "top": 430, "right": 3160, "bottom": 2045, "left": 735}, {"solidity": 0.998306648260202, "top": 2270, "right": 3155, "bottom": 3880, "left": 730}, {"solidity": 0.9972875810654408, "top": 4110, "right": 3145, "bottom": 5720, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734315f.jpg"} -{"rects": [{"solidity": 0.9988252869747309, "top": 310, "right": 3230, "bottom": 1935, "left": 805}, {"solidity": 0.9983773907932898, "top": 2160, "right": 3225, "bottom": 3785, "left": 800}, {"solidity": 0.9981155557830682, "top": 4015, "right": 3225, "bottom": 5640, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727223f.jpg"} -{"rects": [{"solidity": 0.9988257803601367, "top": 2280, "right": 3185, "bottom": 3895, "left": 750}, {"solidity": 0.9963684215569474, "top": 385, "right": 3185, "bottom": 2005, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727198f.jpg"} -{"rects": [{"solidity": 0.9988266106395334, "top": 1130, "right": 3325, "bottom": 5010, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721583f.jpg"} -{"rects": [{"solidity": 0.998827206563154, "top": 1060, "right": 3535, "bottom": 5120, "left": 225}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708147f.jpg"} -{"rects": [{"solidity": 0.9988276199479411, "top": 1030, "right": 3310, "bottom": 5120, "left": 255}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722981f.jpg"} -{"rects": [{"solidity": 0.9988276826497032, "top": 355, "right": 5240, "bottom": 3620, "left": 1190}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718886f.jpg"} -{"rects": [{"solidity": 0.998828278849941, "top": 1695, "right": 3135, "bottom": 3305, "left": 755}, {"solidity": 0.9925751807357321, "top": 315, "right": 2910, "bottom": 1440, "left": 1010}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713979f.jpg"} -{"rects": [{"solidity": 0.9988293384023367, "top": 360, "right": 2375, "bottom": 1565, "left": 570}], "shape": {"h": 4675, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715946f.jpg"} -{"rects": [{"solidity": 0.9988294194534788, "top": 480, "right": 3150, "bottom": 2045, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710207f.jpg"} -{"rects": [{"solidity": 0.9988294505351083, "top": 580, "right": 5220, "bottom": 3640, "left": 3205}, {"solidity": 0.9970550252800824, "top": 685, "right": 2780, "bottom": 3430, "left": 845}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719162f.jpg"} -{"rects": [{"solidity": 0.9988303526712871, "top": 2085, "right": 3225, "bottom": 3700, "left": 815}, {"solidity": 0.9977567572824346, "top": 260, "right": 3205, "bottom": 1865, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706207f.jpg"} -{"rects": [{"solidity": 0.9988303603650049, "top": 420, "right": 3320, "bottom": 2040, "left": 910}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703211f.jpg"} -{"rects": [{"solidity": 0.9988311771487127, "top": 2110, "right": 3180, "bottom": 3740, "left": 770}, {"solidity": 0.997841811853384, "top": 270, "right": 3190, "bottom": 1895, "left": 770}, {"solidity": 0.997993583312767, "top": 3980, "right": 3175, "bottom": 5605, "left": 760}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704971f.jpg"} -{"rects": [{"solidity": 0.9988323623705622, "top": 1125, "right": 3560, "bottom": 5210, "left": 340}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709333f.jpg"} -{"rects": [{"solidity": 0.9988326485758883, "top": 355, "right": 5065, "bottom": 3630, "left": 1030}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728226f.jpg"} -{"rects": [{"solidity": 0.9988336402701044, "top": 540, "right": 3975, "bottom": 2625, "left": 2500}, {"solidity": 0.9978780579724393, "top": 525, "right": 2175, "bottom": 2610, "left": 700}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716077f.jpg"} -{"rects": [{"solidity": 0.9988337285697625, "top": 450, "right": 3165, "bottom": 2055, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720825f.jpg"} -{"rects": [{"solidity": 0.9988340514552765, "top": 895, "right": 3525, "bottom": 4965, "left": 300}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723101f.jpg"} -{"rects": [{"solidity": 0.9988347175682961, "top": 330, "right": 3945, "bottom": 2770, "left": 925}], "shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516915.jpg"} -{"rects": [{"solidity": 0.9988350517127321, "top": 830, "right": 2085, "bottom": 3245, "left": 470}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707325f.jpg"} -{"rects": [{"solidity": 0.9988351291758539, "top": 750, "right": 2000, "bottom": 3175, "left": 380}, {"solidity": 0.9957303909810507, "top": 745, "right": 3835, "bottom": 3175, "left": 2215}, {"solidity": 0.9976690202772605, "top": 755, "right": 5645, "bottom": 3170, "left": 4030}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722565f.jpg"} -{"rects": [{"solidity": 0.9988353646372626, "top": 335, "right": 5125, "bottom": 3565, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705431f.jpg"} -{"rects": [{"solidity": 0.9988358242964712, "top": 760, "right": 3455, "bottom": 2730, "left": 375}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723521f.jpg"} -{"rects": [{"solidity": 0.9988372620273746, "top": 440, "right": 3150, "bottom": 2045, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719787f.jpg"} -{"rects": [{"solidity": 0.9988375021796834, "top": 420, "right": 3190, "bottom": 2030, "left": 770}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704172f.jpg"} -{"rects": [{"solidity": 0.9988378158862644, "top": 770, "right": 2010, "bottom": 3165, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717568f.jpg"} -{"rects": [{"solidity": 0.9988389487475312, "top": 620, "right": 4830, "bottom": 3480, "left": 1240}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706791f.jpg"} -{"rects": [{"solidity": 0.9988392830942887, "top": 805, "right": 2005, "bottom": 3215, "left": 405}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719903f.jpg"} -{"rects": [{"solidity": 0.9988404098951689, "top": 355, "right": 3670, "bottom": 2750, "left": 645}], "shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509117.jpg"} -{"rects": [{"solidity": 0.9988404679936503, "top": 2235, "right": 3180, "bottom": 3840, "left": 780}, {"solidity": 0.996332009331897, "top": 405, "right": 3185, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/718812f.jpg"} -{"rects": [{"solidity": 0.9988410821760386, "top": 305, "right": 3185, "bottom": 1930, "left": 800}, {"solidity": 0.9988570944801897, "top": 2155, "right": 3175, "bottom": 3775, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703856f.jpg"} -{"rects": [{"solidity": 0.9988412182671345, "top": 395, "right": 5110, "bottom": 3620, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703608f.jpg"} -{"rects": [{"solidity": 0.9988418538235275, "top": 565, "right": 3035, "bottom": 2165, "left": 645}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732388f.jpg"} -{"rects": [{"solidity": 0.9988418737060042, "top": 415, "right": 3280, "bottom": 2025, "left": 865}, {"solidity": 0.9960280451102953, "top": 2270, "right": 3265, "bottom": 3865, "left": 870}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727692f.jpg"} -{"rects": [{"solidity": 0.9988425060874149, "top": 420, "right": 5265, "bottom": 3605, "left": 1255}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708705f.jpg"} -{"rects": [{"solidity": 0.9988427472853459, "top": 870, "right": 1965, "bottom": 3265, "left": 355}, {"solidity": 0.9974882557222812, "top": 855, "right": 3810, "bottom": 3255, "left": 2200}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719273f.jpg"} -{"rects": [{"solidity": 0.9988427508863477, "top": 355, "right": 3740, "bottom": 2740, "left": 735}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507953.jpg"} -{"rects": [{"solidity": 0.9988429555354896, "top": 490, "right": 5185, "bottom": 3755, "left": 1115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717701f.jpg"} -{"rects": [{"solidity": 0.9988432059957539, "top": 900, "right": 3520, "bottom": 4865, "left": 470}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731780f.jpg"} -{"rects": [{"solidity": 0.9988432713189285, "top": 455, "right": 3175, "bottom": 2065, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701761f.jpg"} -{"rects": [{"solidity": 0.9988434132794956, "top": 580, "right": 2770, "bottom": 3625, "left": 750}, {"solidity": 0.9978474199372007, "top": 590, "right": 5360, "bottom": 3615, "left": 3370}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715461f.jpg"} -{"rects": [{"solidity": 0.998843729006253, "top": 920, "right": 3910, "bottom": 3340, "left": 2300}, {"solidity": 0.9978183183572003, "top": 905, "right": 5735, "bottom": 3335, "left": 4135}, {"solidity": 0.9959183144582372, "top": 925, "right": 2045, "bottom": 3340, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730445f.jpg"} -{"rects": [{"solidity": 0.9988437821171634, "top": 780, "right": 3870, "bottom": 3205, "left": 2255}, {"solidity": 0.9965838721095239, "top": 775, "right": 5695, "bottom": 3190, "left": 4085}, {"solidity": 0.9984704902241546, "top": 790, "right": 2040, "bottom": 3205, "left": 440}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718682f.jpg"} -{"rects": [{"solidity": 0.9988437870274816, "top": 635, "right": 2795, "bottom": 2060, "left": 945}, {"solidity": 0.9988499024383052, "top": 2130, "right": 2780, "bottom": 3555, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702584f.jpg"} -{"rects": [{"solidity": 0.9988443796726384, "top": 410, "right": 3155, "bottom": 2025, "left": 730}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721620f.jpg"} -{"rects": [{"solidity": 0.9988444716358542, "top": 530, "right": 5015, "bottom": 3790, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707832f.jpg"} -{"rects": [{"solidity": 0.9988445579316949, "top": 815, "right": 1950, "bottom": 3240, "left": 325}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705195f.jpg"} -{"rects": [{"solidity": 0.9988446856552687, "top": 1105, "right": 3495, "bottom": 5040, "left": 345}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717225f.jpg"} -{"rects": [{"solidity": 0.9988448209472468, "top": 420, "right": 3240, "bottom": 2040, "left": 820}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704635f.jpg"} -{"rects": [{"solidity": 0.9988448477695113, "top": 405, "right": 5405, "bottom": 3640, "left": 1390}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718283f.jpg"} -{"rects": [{"solidity": 0.9988460238569598, "top": 990, "right": 3305, "bottom": 5065, "left": 270}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731754f.jpg"} -{"rects": [{"solidity": 0.9988475290826528, "top": 840, "right": 3770, "bottom": 3205, "left": 2150}, {"solidity": 0.9970701802483245, "top": 840, "right": 5640, "bottom": 3230, "left": 4045}, {"solidity": 1.0, "top": 835, "right": 1900, "bottom": 3205, "left": 310}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720233f.jpg"} -{"rects": [{"solidity": 0.9988477007744679, "top": 405, "right": 5250, "bottom": 3625, "left": 1190}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701972f.jpg"} -{"rects": [{"solidity": 0.9988478332521212, "top": 425, "right": 5045, "bottom": 3695, "left": 1000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719785f.jpg"} -{"rects": [{"solidity": 0.9988483432595177, "top": 755, "right": 2005, "bottom": 3150, "left": 410}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718078f.jpg"} -{"rects": [{"solidity": 0.9988487124012432, "top": 310, "right": 3165, "bottom": 1930, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703219f.jpg"} -{"rects": [{"solidity": 0.9988491842939811, "top": 785, "right": 3870, "bottom": 3190, "left": 2270}, {"solidity": 0.9959963324186133, "top": 790, "right": 5705, "bottom": 3190, "left": 4095}, {"solidity": 0.9979668912517107, "top": 795, "right": 2045, "bottom": 3190, "left": 450}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703165f.jpg"} -{"rects": [{"solidity": 0.9988491905209942, "top": 330, "right": 5150, "bottom": 3600, "left": 1130}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730978f.jpg"} -{"rects": [{"solidity": 0.9988493673136282, "top": 845, "right": 2080, "bottom": 3255, "left": 465}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708037f.jpg"} -{"rects": [{"solidity": 0.9988495205255261, "top": 480, "right": 3125, "bottom": 2085, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700482f.jpg"} -{"rects": [{"solidity": 0.9988505153752173, "top": 945, "right": 2615, "bottom": 3945, "left": 180}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508217.jpg"} -{"rects": [{"solidity": 0.9988506570464817, "top": 2250, "right": 3210, "bottom": 3860, "left": 810}, {"solidity": 0.9985250543660362, "top": 425, "right": 3205, "bottom": 2025, "left": 810}, {"solidity": 0.995739579951552, "top": 4040, "right": 2915, "bottom": 5455, "left": 1115}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716679f.jpg"} -{"rects": [{"solidity": 0.9988517942531576, "top": 2135, "right": 2665, "bottom": 3555, "left": 835}, {"solidity": 0.999252710755104, "top": 655, "right": 5260, "bottom": 2075, "left": 3445}, {"solidity": 0.9977835296189922, "top": 655, "right": 2655, "bottom": 2075, "left": 840}, {"solidity": 0.9971046580941838, "top": 2135, "right": 5260, "bottom": 3540, "left": 3460}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705290f.jpg"} -{"rects": [{"solidity": 0.9988526692312883, "top": 925, "right": 3250, "bottom": 2910, "left": 435}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703603f.jpg"} -{"rects": [{"solidity": 0.9988527046167924, "top": 395, "right": 5255, "bottom": 3565, "left": 1285}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718175f.jpg"} -{"rects": [{"solidity": 0.9988530562677101, "top": 765, "right": 2080, "bottom": 3190, "left": 465}, {"solidity": 0.9968419864195739, "top": 770, "right": 3905, "bottom": 3185, "left": 2285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710962f.jpg"} -{"rects": [{"solidity": 0.998853090415197, "top": 405, "right": 5240, "bottom": 3610, "left": 1255}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722479f.jpg"} -{"rects": [{"solidity": 0.9988532617158589, "top": 420, "right": 5060, "bottom": 3670, "left": 1040}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703861f.jpg"} -{"rects": [{"solidity": 0.9988533413891786, "top": 735, "right": 2095, "bottom": 3140, "left": 485}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707527f.jpg"} -{"rects": [{"solidity": 0.9988546385534438, "top": 2210, "right": 3210, "bottom": 3830, "left": 790}, {"solidity": 0.9977413490773958, "top": 380, "right": 3225, "bottom": 2000, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718739f.jpg"} -{"rects": [{"solidity": 0.9988563445262115, "top": 835, "right": 2145, "bottom": 3240, "left": 535}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707501f.jpg"} -{"rects": [{"solidity": 0.9988567605437089, "top": 480, "right": 5210, "bottom": 3410, "left": 1405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727284f.jpg"} -{"rects": [{"solidity": 0.9988573653716808, "top": 455, "right": 3050, "bottom": 3650, "left": 1050}, {"solidity": 0.997445837186879, "top": 450, "right": 5460, "bottom": 3640, "left": 3455}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733023f.jpg"} -{"rects": [{"solidity": 0.9988589100646077, "top": 420, "right": 3190, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704801f.jpg"} -{"rects": [{"solidity": 0.9988594230825473, "top": 800, "right": 2040, "bottom": 3205, "left": 430}, {"solidity": 0.9978375952758773, "top": 800, "right": 3885, "bottom": 3205, "left": 2275}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719817f.jpg"} -{"rects": [{"solidity": 0.9988594368711196, "top": 430, "right": 3155, "bottom": 2040, "left": 730}, {"solidity": 0.9973150598390326, "top": 2285, "right": 3145, "bottom": 3900, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734546f.jpg"} -{"rects": [{"solidity": 0.9988596042391955, "top": 1120, "right": 3515, "bottom": 5055, "left": 650}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733559f.jpg"} -{"rects": [{"solidity": 0.9988601970506794, "top": 2255, "right": 3090, "bottom": 3870, "left": 670}, {"solidity": 0.9978762204470265, "top": 390, "right": 3085, "bottom": 2000, "left": 665}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729382f.jpg"} -{"rects": [{"solidity": 0.9988602839117263, "top": 910, "right": 2685, "bottom": 3920, "left": 265}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516933.jpg"} -{"rects": [{"solidity": 0.9988610683919407, "top": 490, "right": 5085, "bottom": 3715, "left": 980}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705466f.jpg"} -{"rects": [{"solidity": 0.9988611490023158, "top": 810, "right": 3930, "bottom": 3250, "left": 2305}, {"solidity": 0.9958849315594095, "top": 820, "right": 2040, "bottom": 3250, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720776f.jpg"} -{"rects": [{"solidity": 0.9988614507818682, "top": 260, "right": 3175, "bottom": 1880, "left": 760}, {"solidity": 0.9988877291408441, "top": 2110, "right": 3160, "bottom": 3730, "left": 780}, {"solidity": 0.9977179937989674, "top": 3990, "right": 3160, "bottom": 5610, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705809f.jpg"} -{"rects": [{"solidity": 0.9988615928845339, "top": 585, "right": 2735, "bottom": 3565, "left": 735}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718349f.jpg"} -{"rects": [{"solidity": 0.9988616418530892, "top": 495, "right": 5090, "bottom": 3710, "left": 1035}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700250f.jpg"} -{"rects": [{"solidity": 0.9988631181393676, "top": 420, "right": 3200, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720030f.jpg"} -{"rects": [{"solidity": 0.9988640509275791, "top": 405, "right": 5140, "bottom": 3600, "left": 1070}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730840f.jpg"} -{"rects": [{"solidity": 0.9988641034021883, "top": 440, "right": 3150, "bottom": 2050, "left": 735}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/715123f.jpg"} -{"rects": [{"solidity": 0.9988641735593564, "top": 2245, "right": 3070, "bottom": 3870, "left": 630}, {"solidity": 0.9962419913266831, "top": 390, "right": 3085, "bottom": 2025, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710633f.jpg"} -{"rects": [{"solidity": 0.9988641918657948, "top": 495, "right": 4955, "bottom": 3565, "left": 1000}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711485f.jpg"} -{"rects": [{"solidity": 0.9988642446171526, "top": 990, "right": 3555, "bottom": 5060, "left": 340}], "shape": {"h": 6260, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707323f.jpg"} -{"rects": [{"solidity": 0.9988644308295653, "top": 630, "right": 2770, "bottom": 3660, "left": 765}, {"solidity": 0.9975774271218142, "top": 630, "right": 5350, "bottom": 3635, "left": 3370}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720229f.jpg"} -{"rects": [{"solidity": 0.9988647612191357, "top": 770, "right": 3155, "bottom": 2805, "left": 480}, {"solidity": 0.9836187416260607, "top": 3385, "right": 3070, "bottom": 4985, "left": 685}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710136f.jpg"} -{"rects": [{"solidity": 0.998865105465283, "top": 490, "right": 5080, "bottom": 3760, "left": 1045}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731465f.jpg"} -{"rects": [{"solidity": 0.9988651171997427, "top": 2250, "right": 3220, "bottom": 3845, "left": 830}, {"solidity": 0.9984398543864094, "top": 395, "right": 3210, "bottom": 1985, "left": 835}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/711729f.jpg"} -{"rects": [{"solidity": 0.9988663044423474, "top": 460, "right": 3080, "bottom": 2080, "left": 670}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705366f.jpg"} -{"rects": [{"solidity": 0.998867581300329, "top": 1215, "right": 3650, "bottom": 5240, "left": 375}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/722226f.jpg"} -{"rects": [{"solidity": 0.9988686658910778, "top": 455, "right": 3175, "bottom": 2070, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701157f.jpg"} -{"rects": [{"solidity": 0.9988692009675707, "top": 755, "right": 3955, "bottom": 3160, "left": 2360}, {"solidity": 0.995505008238094, "top": 770, "right": 2030, "bottom": 3180, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724081f.jpg"} -{"rects": [{"solidity": 0.9988697170680327, "top": 320, "right": 5100, "bottom": 3585, "left": 1055}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706110f.jpg"} -{"rects": [{"solidity": 0.9988697503924615, "top": 455, "right": 5275, "bottom": 3640, "left": 1305}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730736f.jpg"} -{"rects": [{"solidity": 0.9988698018026027, "top": 315, "right": 3195, "bottom": 1945, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706173f.jpg"} -{"rects": [{"solidity": 0.9988700608033049, "top": 425, "right": 5210, "bottom": 3650, "left": 1125}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732636f.jpg"} -{"rects": [{"solidity": 0.9988707000042065, "top": 810, "right": 3845, "bottom": 3225, "left": 2235}, {"solidity": 0.9979390396443223, "top": 805, "right": 2040, "bottom": 3220, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720749f.jpg"} -{"rects": [{"solidity": 0.9988707835346727, "top": 400, "right": 3065, "bottom": 2015, "left": 645}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729901f.jpg"} -{"rects": [{"solidity": 0.9988709495314441, "top": 575, "right": 3220, "bottom": 2185, "left": 795}, {"solidity": 0.9974795739126231, "top": 2350, "right": 3220, "bottom": 3970, "left": 800}, {"solidity": 0.9970574529860498, "top": 4100, "right": 3190, "bottom": 5710, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733239f.jpg"} -{"rects": [{"solidity": 0.998871076262195, "top": 800, "right": 2055, "bottom": 3215, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728587f.jpg"} -{"rects": [{"solidity": 0.9988723814616075, "top": 420, "right": 5115, "bottom": 3685, "left": 1090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725311f.jpg"} -{"rects": [{"solidity": 0.9988730816454705, "top": 490, "right": 5100, "bottom": 3770, "left": 1045}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700957f.jpg"} -{"rects": [{"solidity": 0.9988732321817766, "top": 765, "right": 2040, "bottom": 3190, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731755f.jpg"} -{"rects": [{"solidity": 0.9988736725933618, "top": 435, "right": 5145, "bottom": 3725, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732758f.jpg"} -{"rects": [{"solidity": 0.9988754686897428, "top": 890, "right": 2005, "bottom": 3300, "left": 395}, {"solidity": 0.9959818308874913, "top": 890, "right": 3840, "bottom": 3300, "left": 2220}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719238f.jpg"} -{"rects": [{"solidity": 0.9988770824734308, "top": 485, "right": 5115, "bottom": 3740, "left": 1070}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732096f.jpg"} -{"rects": [{"solidity": 0.998877347775272, "top": 435, "right": 3170, "bottom": 2030, "left": 775}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734688f.jpg"} -{"rects": [{"solidity": 0.9988781822662015, "top": 785, "right": 2085, "bottom": 3195, "left": 475}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710589f.jpg"} -{"rects": [{"solidity": 0.998879079763138, "top": 450, "right": 5075, "bottom": 3685, "left": 1060}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700236f.jpg"} -{"rects": [{"solidity": 0.998879136196193, "top": 735, "right": 2040, "bottom": 3145, "left": 415}, {"solidity": 0.9972968177932614, "top": 740, "right": 3895, "bottom": 3145, "left": 2270}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704416f.jpg"} -{"rects": [{"solidity": 0.9988798371794829, "top": 1050, "right": 3370, "bottom": 5115, "left": 560}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712991f.jpg"} -{"rects": [{"solidity": 0.9988800903856255, "top": 420, "right": 5235, "bottom": 3620, "left": 1265}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732984f.jpg"} -{"rects": [{"solidity": 0.9988801037107394, "top": 775, "right": 2050, "bottom": 3195, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703639f.jpg"} -{"rects": [{"solidity": 0.9988801187343992, "top": 760, "right": 2000, "bottom": 3135, "left": 430}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718610f.jpg"} -{"rects": [{"solidity": 0.9988823073589094, "top": 750, "right": 4905, "bottom": 3290, "left": 1135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703101f.jpg"} -{"rects": [{"solidity": 0.998882511466404, "top": 735, "right": 2005, "bottom": 3140, "left": 390}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705118f.jpg"} -{"rects": [{"solidity": 0.998882692280027, "top": 680, "right": 2765, "bottom": 2115, "left": 935}, {"solidity": 0.9925638444575039, "top": 610, "right": 5155, "bottom": 1825, "left": 3355}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706145f.jpg"} -{"rects": [{"solidity": 0.998882916720632, "top": 835, "right": 2040, "bottom": 3255, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706591f.jpg"} -{"rects": [{"solidity": 0.9988835011327271, "top": 810, "right": 2475, "bottom": 3225, "left": 870}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707534f.jpg"} -{"rects": [{"solidity": 0.9988837532594013, "top": 475, "right": 4845, "bottom": 3695, "left": 875}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701907f.jpg"} -{"rects": [{"solidity": 0.9988838214881953, "top": 740, "right": 1960, "bottom": 3160, "left": 335}, {"solidity": 0.9969385165458243, "top": 745, "right": 3830, "bottom": 3165, "left": 2210}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732558f.jpg"} -{"rects": [{"solidity": 0.9988838667451789, "top": 505, "right": 2750, "bottom": 3550, "left": 740}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715498f.jpg"} -{"rects": [{"solidity": 0.9988843194631176, "top": 1050, "right": 3535, "bottom": 5095, "left": 240}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713778f.jpg"} -{"rects": [{"solidity": 0.9988851823502756, "top": 445, "right": 5115, "bottom": 3675, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715089f.jpg"} -{"rects": [{"solidity": 0.9988854688649632, "top": 2255, "right": 2870, "bottom": 3785, "left": 980}, {"solidity": 0.983606628908534, "top": 4060, "right": 2865, "bottom": 5605, "left": 975}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/723690f.jpg"} -{"rects": [{"solidity": 0.9988861741879851, "top": 750, "right": 2030, "bottom": 3150, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716895f.jpg"} -{"rects": [{"solidity": 0.9988870088846284, "top": 860, "right": 2005, "bottom": 3280, "left": 390}, {"solidity": 0.997180305917495, "top": 865, "right": 3880, "bottom": 3285, "left": 2260}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713528f.jpg"} -{"rects": [{"solidity": 0.9988870460034117, "top": 440, "right": 5280, "bottom": 3635, "left": 1290}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733714f.jpg"} -{"rects": [{"solidity": 0.9988879152143416, "top": 350, "right": 3420, "bottom": 2505, "left": 455}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722231f.jpg"} -{"rects": [{"solidity": 0.9988886753779144, "top": 445, "right": 3150, "bottom": 2065, "left": 725}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707321f.jpg"} -{"rects": [{"solidity": 0.9988887074923456, "top": 450, "right": 5060, "bottom": 3715, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717220f.jpg"} -{"rects": [{"solidity": 0.9988892385207182, "top": 1035, "right": 3580, "bottom": 5105, "left": 310}], "shape": {"h": 6265, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/721579f.jpg"} -{"rects": [{"solidity": 0.998889259495536, "top": 340, "right": 3190, "bottom": 1955, "left": 785}, {"solidity": 0.9972215444178745, "top": 2175, "right": 3180, "bottom": 3795, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715720f.jpg"} -{"rects": [{"solidity": 0.9988905896274953, "top": 885, "right": 3850, "bottom": 3300, "left": 2230}, {"solidity": 0.9957025356969387, "top": 880, "right": 2020, "bottom": 3295, "left": 395}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701069f.jpg"} -{"rects": [{"solidity": 0.9988908503767492, "top": 990, "right": 2705, "bottom": 4000, "left": 280}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516887.jpg"} -{"rects": [{"solidity": 0.9988910299488263, "top": 530, "right": 5075, "bottom": 3820, "left": 1050}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707827f.jpg"} -{"rects": [{"solidity": 0.9988913702090787, "top": 2265, "right": 3165, "bottom": 3890, "left": 735}, {"solidity": 0.9984501138397789, "top": 4120, "right": 3175, "bottom": 5740, "left": 750}, {"solidity": 0.9966815326331943, "top": 415, "right": 3170, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734711f.jpg"} -{"rects": [{"solidity": 0.9988914438720268, "top": 1200, "right": 3525, "bottom": 5160, "left": 330}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721493f.jpg"} -{"rects": [{"solidity": 0.9988915871861178, "top": 475, "right": 5050, "bottom": 3660, "left": 1045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709111f.jpg"} -{"rects": [{"solidity": 0.9988917297764989, "top": 770, "right": 2040, "bottom": 3180, "left": 430}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723467f.jpg"} -{"rects": [{"solidity": 0.9988918620303043, "top": 780, "right": 2020, "bottom": 3185, "left": 415}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732442f.jpg"} -{"rects": [{"solidity": 0.9988925802879292, "top": 2095, "right": 3115, "bottom": 3715, "left": 710}, {"solidity": 0.9972358275544349, "top": 570, "right": 2590, "bottom": 2000, "left": 770}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704099f.jpg"} -{"rects": [{"solidity": 0.9988942058342875, "top": 385, "right": 3245, "bottom": 1985, "left": 835}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727240f.jpg"} -{"rects": [{"solidity": 0.9988949353344427, "top": 2290, "right": 3095, "bottom": 3905, "left": 670}, {"solidity": 0.9953160981401387, "top": 4130, "right": 3075, "bottom": 5740, "left": 655}, {"solidity": 0.9972029071424127, "top": 455, "right": 3100, "bottom": 2050, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734378f.jpg"} -{"rects": [{"solidity": 0.9988958164453295, "top": 395, "right": 3130, "bottom": 1980, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732472f.jpg"} -{"rects": [{"solidity": 0.9988959158571664, "top": 855, "right": 2040, "bottom": 3260, "left": 420}, {"solidity": 0.9971843011754891, "top": 855, "right": 5720, "bottom": 3265, "left": 4115}, {"solidity": 0.9952978616182498, "top": 1010, "right": 3810, "bottom": 3105, "left": 2295}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709705f.jpg"} -{"rects": [{"solidity": 0.9988963973388008, "top": 615, "right": 3500, "bottom": 2405, "left": 815}], "shape": {"h": 6910, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711333f.jpg"} -{"rects": [{"solidity": 0.9988972061487169, "top": 2290, "right": 3100, "bottom": 3905, "left": 670}, {"solidity": 0.9961980114155911, "top": 410, "right": 3100, "bottom": 2040, "left": 680}, {"solidity": 0.9922148020293263, "top": 4145, "right": 3075, "bottom": 5740, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701871f.jpg"} -{"rects": [{"solidity": 0.9988985764344093, "top": 635, "right": 2695, "bottom": 2055, "left": 875}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706984f.jpg"} -{"rects": [{"solidity": 0.9988990010527096, "top": 810, "right": 2045, "bottom": 3230, "left": 430}, {"solidity": 0.9968080240670476, "top": 805, "right": 3870, "bottom": 3230, "left": 2255}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718603f.jpg"} -{"rects": [{"solidity": 0.9988993834884659, "top": 535, "right": 4890, "bottom": 3735, "left": 1115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717263f.jpg"} -{"rects": [{"solidity": 0.9988995908653246, "top": 455, "right": 3030, "bottom": 2080, "left": 610}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707286f.jpg"} -{"rects": [{"solidity": 0.9989000943051252, "top": 380, "right": 5145, "bottom": 3635, "left": 1140}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726704f.jpg"} -{"rects": [{"solidity": 0.998900339222842, "top": 515, "right": 2945, "bottom": 2135, "left": 530}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703209f.jpg"} -{"rects": [{"solidity": 0.9989031295394132, "top": 810, "right": 2035, "bottom": 3205, "left": 440}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716627f.jpg"} -{"rects": [{"solidity": 0.9989043561625075, "top": 370, "right": 3175, "bottom": 1970, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703862f.jpg"} -{"rects": [{"solidity": 0.9989050965987356, "top": 755, "right": 2010, "bottom": 3180, "left": 395}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704485f.jpg"} -{"rects": [{"solidity": 0.9989054983372615, "top": 440, "right": 3265, "bottom": 2060, "left": 860}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726211f.jpg"} -{"rects": [{"solidity": 0.9989056008057877, "top": 795, "right": 2035, "bottom": 3215, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721592f.jpg"} -{"rects": [{"solidity": 0.9989064299969173, "top": 430, "right": 3060, "bottom": 2045, "left": 660}, {"solidity": 0.9976557908783641, "top": 2310, "right": 3065, "bottom": 3925, "left": 665}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710397f.jpg"} -{"rects": [{"solidity": 0.998906785950695, "top": 460, "right": 3095, "bottom": 2040, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/729876f.jpg"} -{"rects": [{"solidity": 0.9989081805765723, "top": 425, "right": 5095, "bottom": 3605, "left": 1135}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717224f.jpg"} -{"rects": [{"solidity": 0.9989084476691811, "top": 475, "right": 5660, "bottom": 4110, "left": 1135}], "shape": {"h": 4420, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/708396f.jpg"} -{"rects": [{"solidity": 0.9989087938378947, "top": 660, "right": 4200, "bottom": 2460, "left": 3000}, {"solidity": 0.9943094781843915, "top": 650, "right": 1535, "bottom": 2450, "left": 320}, {"solidity": 0.9943231977175864, "top": 655, "right": 2865, "bottom": 2450, "left": 1660}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716493f.jpg"} -{"rects": [{"solidity": 0.9989101980095256, "top": 530, "right": 2770, "bottom": 2335, "left": 1560}, {"solidity": 0.9993860517917441, "top": 520, "right": 1405, "bottom": 2325, "left": 200}, {"solidity": 0.9961856879114754, "top": 530, "right": 4165, "bottom": 2335, "left": 2960}], "shape": {"h": 2855, "w": 4430}, "file": "/usr/local/google/home/danvk/milstein/732504f.jpg"} -{"rects": [{"solidity": 0.998910428984899, "top": 475, "right": 5065, "bottom": 3700, "left": 1020}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729112f.jpg"} -{"rects": [{"solidity": 0.9989108549304013, "top": 780, "right": 1985, "bottom": 3190, "left": 370}, {"solidity": 0.9963130290284052, "top": 775, "right": 3795, "bottom": 3185, "left": 2175}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718857f.jpg"} -{"rects": [{"solidity": 0.9989121620849941, "top": 515, "right": 5015, "bottom": 3795, "left": 990}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712276f.jpg"} -{"rects": [{"solidity": 0.9989124488996637, "top": 810, "right": 2030, "bottom": 3215, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713471f.jpg"} -{"rects": [{"solidity": 0.9989127553716469, "top": 310, "right": 3635, "bottom": 2775, "left": 615}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509791.jpg"} -{"rects": [{"solidity": 0.9989139795933263, "top": 350, "right": 5275, "bottom": 3570, "left": 1270}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727852f.jpg"} -{"rects": [{"solidity": 0.9989139983985529, "top": 400, "right": 3030, "bottom": 2010, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728382f.jpg"} -{"rects": [{"solidity": 0.9989140762861409, "top": 2165, "right": 3185, "bottom": 3790, "left": 790}, {"solidity": 0.9982759402930902, "top": 305, "right": 3190, "bottom": 1915, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708032f.jpg"} -{"rects": [{"solidity": 0.9989142901326048, "top": 815, "right": 3910, "bottom": 3225, "left": 2290}, {"solidity": 0.9962536552653554, "top": 800, "right": 2050, "bottom": 3220, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732456f.jpg"} -{"rects": [{"solidity": 0.9989148561412327, "top": 495, "right": 4850, "bottom": 3710, "left": 1185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718574f.jpg"} -{"rects": [{"solidity": 0.9989150851739103, "top": 415, "right": 3150, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710816f.jpg"} -{"rects": [{"solidity": 0.9989157283546659, "top": 830, "right": 1995, "bottom": 3250, "left": 375}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704112f.jpg"} -{"rects": [{"solidity": 0.9989164997107159, "top": 470, "right": 5165, "bottom": 3705, "left": 1110}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708239f.jpg"} -{"rects": [{"solidity": 0.998916962207488, "top": 460, "right": 2075, "bottom": 2745, "left": 575}, {"solidity": 0.9986109814174993, "top": 620, "right": 3870, "bottom": 2420, "left": 2670}], "shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715756f.jpg"} -{"rects": [{"solidity": 0.9989169675090253, "top": 1180, "right": 4805, "bottom": 2540, "left": 3010}, {"solidity": 0.9970400430919522, "top": 1170, "right": 2985, "bottom": 2545, "left": 1230}], "shape": {"h": 3880, "w": 6070}, "file": "/usr/local/google/home/danvk/milstein/728127f.jpg"} -{"rects": [{"solidity": 0.9989172410094129, "top": 445, "right": 3205, "bottom": 2015, "left": 815}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727685f.jpg"} -{"rects": [{"solidity": 0.998918027883058, "top": 2255, "right": 3210, "bottom": 3885, "left": 785}, {"solidity": 0.9984991218266007, "top": 350, "right": 3220, "bottom": 1975, "left": 795}, {"solidity": 0.997483793517407, "top": 4170, "right": 3200, "bottom": 5795, "left": 780}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/733531f.jpg"} -{"rects": [{"solidity": 0.9989184630587539, "top": 795, "right": 3850, "bottom": 3215, "left": 2235}, {"solidity": 0.9966501653900003, "top": 800, "right": 5675, "bottom": 3220, "left": 4060}, {"solidity": 0.9972264654101077, "top": 810, "right": 2050, "bottom": 3225, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714079f.jpg"} -{"rects": [{"solidity": 0.9989185093561893, "top": 405, "right": 3205, "bottom": 2010, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705216f.jpg"} -{"rects": [{"solidity": 0.9989191393242356, "top": 395, "right": 3190, "bottom": 2015, "left": 790}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700186f.jpg"} -{"rects": [{"solidity": 0.9989191855917378, "top": 445, "right": 3175, "bottom": 2050, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721796f.jpg"} -{"rects": [{"solidity": 0.9989195655109876, "top": 300, "right": 3155, "bottom": 1920, "left": 740}, {"solidity": 0.9976574717566367, "top": 2160, "right": 3140, "bottom": 3780, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704766f.jpg"} -{"rects": [{"solidity": 0.9989201354208553, "top": 770, "right": 2000, "bottom": 3180, "left": 390}, {"solidity": 0.9948765826413116, "top": 775, "right": 3860, "bottom": 3185, "left": 2260}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704428f.jpg"} -{"rects": [{"solidity": 0.9989201631668041, "top": 370, "right": 5105, "bottom": 3595, "left": 1055}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706886f.jpg"} -{"rects": [{"solidity": 0.9989211266520248, "top": 2305, "right": 3160, "bottom": 3920, "left": 735}, {"solidity": 0.9989941427411713, "top": 445, "right": 3150, "bottom": 2055, "left": 735}, {"solidity": 0.9965568571613488, "top": 4150, "right": 3150, "bottom": 5760, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733708f.jpg"} -{"rects": [{"solidity": 0.9989211465005297, "top": 780, "right": 2025, "bottom": 3190, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719268f.jpg"} -{"rects": [{"solidity": 0.9989216762383588, "top": 1190, "right": 3520, "bottom": 5215, "left": 290}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717387f.jpg"} -{"rects": [{"solidity": 0.9989220677519854, "top": 515, "right": 5085, "bottom": 3805, "left": 1020}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705315f.jpg"} -{"rects": [{"solidity": 0.9989222139069586, "top": 915, "right": 3880, "bottom": 3335, "left": 2255}, {"solidity": 0.9978024438615571, "top": 905, "right": 2025, "bottom": 3325, "left": 400}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719433f.jpg"} -{"rects": [{"solidity": 0.9989222681078614, "top": 400, "right": 5070, "bottom": 3655, "left": 1050}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724848f.jpg"} -{"rects": [{"solidity": 0.9989223663954255, "top": 395, "right": 5110, "bottom": 3660, "left": 1090}], "shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708965f.jpg"} -{"rects": [{"solidity": 0.998922642516707, "top": 415, "right": 3265, "bottom": 2035, "left": 850}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726741f.jpg"} -{"rects": [{"solidity": 0.9989238650642781, "top": 820, "right": 1910, "bottom": 3245, "left": 300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705313f.jpg"} -{"rects": [{"solidity": 0.9989238956926568, "top": 4130, "right": 2975, "bottom": 5735, "left": 565}, {"solidity": 0.997624997149345, "top": 2270, "right": 2980, "bottom": 3875, "left": 570}, {"solidity": 0.9974079391309204, "top": 415, "right": 2980, "bottom": 2010, "left": 575}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734734f.jpg"} -{"rects": [{"solidity": 0.9989252656175366, "top": 770, "right": 2020, "bottom": 3190, "left": 410}, {"solidity": 0.9952089244261026, "top": 790, "right": 3885, "bottom": 3210, "left": 2270}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708088f.jpg"} -{"rects": [{"solidity": 0.9989258029864613, "top": 430, "right": 3070, "bottom": 2045, "left": 655}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704048f.jpg"} -{"rects": [{"solidity": 0.99892633361558, "top": 815, "right": 2025, "bottom": 3205, "left": 470}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734254f.jpg"} -{"rects": [{"solidity": 0.9989266721959311, "top": 780, "right": 2005, "bottom": 3190, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732466f.jpg"} -{"rects": [{"solidity": 0.9989270815284756, "top": 415, "right": 3175, "bottom": 1995, "left": 785}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710709f.jpg"} -{"rects": [{"solidity": 0.9989271228324723, "top": 445, "right": 5040, "bottom": 3690, "left": 1000}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730049f.jpg"} -{"rects": [{"solidity": 0.9989286467162011, "top": 340, "right": 5025, "bottom": 3595, "left": 1020}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732734f.jpg"} -{"rects": [{"solidity": 0.9989308352213425, "top": 475, "right": 1675, "bottom": 1350, "left": 540}], "shape": {"h": 2555, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727116f.jpg"} -{"rects": [{"solidity": 0.9989309338018707, "top": 2355, "right": 3215, "bottom": 3970, "left": 805}, {"solidity": 0.9972586296392422, "top": 590, "right": 3205, "bottom": 2200, "left": 790}, {"solidity": 0.99711798611928, "top": 4120, "right": 3210, "bottom": 5735, "left": 805}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/733254f.jpg"} -{"rects": [{"solidity": 0.9989315377141363, "top": 420, "right": 3240, "bottom": 2030, "left": 820}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719781f.jpg"} -{"rects": [{"solidity": 0.9989317511237528, "top": 420, "right": 3190, "bottom": 2035, "left": 770}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706245f.jpg"} -{"rects": [{"solidity": 0.9989324415889559, "top": 2080, "right": 2630, "bottom": 3500, "left": 810}, {"solidity": 0.9961014314366838, "top": 635, "right": 2620, "bottom": 2055, "left": 810}, {"solidity": 0.9958162085004799, "top": 2025, "right": 5255, "bottom": 3445, "left": 3445}, {"solidity": 0.997559079678967, "top": 575, "right": 5245, "bottom": 1990, "left": 3445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704122f.jpg"} -{"rects": [{"solidity": 0.9989324518558296, "top": 420, "right": 3080, "bottom": 2040, "left": 665}, {"solidity": 0.9976080349311056, "top": 2280, "right": 3060, "bottom": 3900, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726678f.jpg"} -{"rects": [{"solidity": 0.9989327198069948, "top": 2280, "right": 3160, "bottom": 3900, "left": 730}, {"solidity": 0.9965482714165523, "top": 440, "right": 3150, "bottom": 2070, "left": 725}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701247f.jpg"} -{"rects": [{"solidity": 0.9989340006060801, "top": 1045, "right": 3610, "bottom": 5050, "left": 395}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/727253f.jpg"} -{"rects": [{"solidity": 0.9989341930348933, "top": 415, "right": 5100, "bottom": 3495, "left": 1250}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726158f.jpg"} -{"rects": [{"solidity": 0.9989343109254444, "top": 825, "right": 1970, "bottom": 3230, "left": 375}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715564f.jpg"} -{"rects": [{"solidity": 0.9989343314229274, "top": 415, "right": 3065, "bottom": 2025, "left": 660}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700550f.jpg"} -{"rects": [{"solidity": 0.9989357532577398, "top": 1265, "right": 3600, "bottom": 5275, "left": 375}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/726486f.jpg"} -{"rects": [{"solidity": 0.998937093693937, "top": 535, "right": 5230, "bottom": 3735, "left": 1160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709462f.jpg"} -{"rects": [{"solidity": 0.9989371542415996, "top": 505, "right": 5710, "bottom": 4210, "left": 1140}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/708366f.jpg"} -{"rects": [{"solidity": 0.9989380793761459, "top": 820, "right": 1995, "bottom": 3240, "left": 385}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707084f.jpg"} -{"rects": [{"solidity": 0.9989381993896236, "top": 770, "right": 1905, "bottom": 3205, "left": 280}, {"solidity": 0.9973876250242033, "top": 775, "right": 3750, "bottom": 3210, "left": 2120}, {"solidity": 0.9969346200517144, "top": 770, "right": 5600, "bottom": 3205, "left": 3970}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703622f.jpg"} -{"rects": [{"solidity": 0.9989383852169663, "top": 320, "right": 5100, "bottom": 3540, "left": 1025}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700692f.jpg"} -{"rects": [{"solidity": 0.9989385650799576, "top": 610, "right": 1620, "bottom": 2410, "left": 420}, {"solidity": 0.9940824607635084, "top": 610, "right": 4310, "bottom": 2410, "left": 3105}, {"solidity": 0.9965736546901035, "top": 610, "right": 2965, "bottom": 2410, "left": 1770}], "shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716495f.jpg"} -{"rects": [{"solidity": 0.9989395920964265, "top": 790, "right": 4275, "bottom": 3525, "left": 2455}, {"solidity": 0.9952662510037799, "top": 805, "right": 2240, "bottom": 3530, "left": 425}], "shape": {"h": 4415, "w": 6910}, "file": "/usr/local/google/home/danvk/milstein/703424f.jpg"} -{"rects": [{"solidity": 0.998939892893738, "top": 2230, "right": 3270, "bottom": 3840, "left": 845}, {"solidity": 0.997634873515746, "top": 375, "right": 3255, "bottom": 1985, "left": 830}, {"solidity": 0.9978497400962129, "top": 4070, "right": 3255, "bottom": 5685, "left": 840}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/726914f.jpg"} -{"rects": [{"solidity": 0.9989400124363282, "top": 810, "right": 2060, "bottom": 3235, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729134f.jpg"} -{"rects": [{"solidity": 0.9989413577029547, "top": 695, "right": 2400, "bottom": 3450, "left": 430}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703013f.jpg"} -{"rects": [{"solidity": 0.9989414632409352, "top": 795, "right": 2055, "bottom": 3215, "left": 450}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704920f.jpg"} -{"rects": [{"solidity": 0.9989423246422333, "top": 2255, "right": 3170, "bottom": 3870, "left": 740}, {"solidity": 0.9975171205089092, "top": 420, "right": 3155, "bottom": 2030, "left": 740}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700582f.jpg"} -{"rects": [{"solidity": 0.9989426795909876, "top": 425, "right": 3140, "bottom": 1995, "left": 790}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724297f.jpg"} -{"rects": [{"solidity": 0.9989432327999792, "top": 2260, "right": 3160, "bottom": 3870, "left": 750}, {"solidity": 0.9989707637722001, "top": 440, "right": 3150, "bottom": 2030, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734278f.jpg"} -{"rects": [{"solidity": 0.9989433840702263, "top": 400, "right": 3095, "bottom": 2020, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706878f.jpg"} -{"rects": [{"solidity": 0.9989437795356483, "top": 425, "right": 3175, "bottom": 2045, "left": 755}], "shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/700928f.jpg"} -{"rects": [{"solidity": 0.9989442637541602, "top": 625, "right": 2820, "bottom": 2075, "left": 985}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703344f.jpg"} -{"rects": [{"solidity": 0.998944687294957, "top": 1030, "right": 3490, "bottom": 4990, "left": 255}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719946f.jpg"} -{"rects": [{"solidity": 0.9989454156123502, "top": 460, "right": 3175, "bottom": 2075, "left": 750}, {"solidity": 0.9973769214537309, "top": 2130, "right": 3140, "bottom": 3745, "left": 740}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700972f.jpg"} -{"rects": [{"solidity": 0.9989455194471092, "top": 325, "right": 5000, "bottom": 3605, "left": 940}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703173f.jpg"} -{"rects": [{"solidity": 0.9989456036638082, "top": 345, "right": 5280, "bottom": 3560, "left": 1270}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727856f.jpg"} -{"rects": [{"solidity": 0.998945691845394, "top": 2180, "right": 3110, "bottom": 3795, "left": 695}, {"solidity": 0.9956143190056965, "top": 310, "right": 3115, "bottom": 1925, "left": 700}, {"solidity": 0.9962437775380496, "top": 4070, "right": 3090, "bottom": 5695, "left": 705}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719545f.jpg"} -{"rects": [{"solidity": 0.9989463814485805, "top": 405, "right": 3115, "bottom": 2025, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721649f.jpg"} -{"rects": [{"solidity": 0.9989464132776451, "top": 495, "right": 5090, "bottom": 3780, "left": 1040}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700813f.jpg"} -{"rects": [{"solidity": 0.9989468592409769, "top": 330, "right": 4955, "bottom": 3595, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733711f.jpg"} -{"rects": [{"solidity": 0.9989474560256919, "top": 980, "right": 4115, "bottom": 2205, "left": 2015}, {"solidity": 0.9431006783291681, "top": 3435, "right": 1840, "bottom": 5480, "left": 535}, {"solidity": 0.98869004336704, "top": 935, "right": 1550, "bottom": 2820, "left": 265}], "shape": {"h": 6050, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465709.jpg"} -{"rects": [{"solidity": 0.9989475565253376, "top": 410, "right": 5240, "bottom": 3680, "left": 1160}], "shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716729f.jpg"} -{"rects": [{"solidity": 0.9989481059037556, "top": 325, "right": 5430, "bottom": 3530, "left": 1435}], "shape": {"h": 3920, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708628f.jpg"} -{"rects": [{"solidity": 0.9989483070904983, "top": 330, "right": 5080, "bottom": 3555, "left": 1015}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725601f.jpg"} -{"rects": [{"solidity": 0.9989483561998447, "top": 2250, "right": 3115, "bottom": 3865, "left": 710}, {"solidity": 0.9965766636085726, "top": 405, "right": 3110, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710729f.jpg"} -{"rects": [{"solidity": 0.9989485329454302, "top": 390, "right": 3105, "bottom": 2005, "left": 690}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/728682f.jpg"} -{"rects": [{"solidity": 0.9989491578062621, "top": 850, "right": 3525, "bottom": 5555, "left": 280}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714203f.jpg"} -{"rects": [{"solidity": 0.9989499947018081, "top": 2225, "right": 3105, "bottom": 3840, "left": 680}, {"solidity": 0.9966724852716561, "top": 400, "right": 3105, "bottom": 2025, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710820f.jpg"} -{"rects": [{"solidity": 0.9989502749823144, "top": 860, "right": 3605, "bottom": 3235, "left": 1980}, {"solidity": 0.9977497536572425, "top": 1095, "right": 1750, "bottom": 2935, "left": 305}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724294f.jpg"} -{"rects": [{"solidity": 0.9989505126342133, "top": 745, "right": 3905, "bottom": 3155, "left": 2290}, {"solidity": 0.9964731696298925, "top": 755, "right": 2030, "bottom": 3175, "left": 410}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723321f.jpg"} -{"rects": [{"solidity": 0.9989505679244314, "top": 415, "right": 4970, "bottom": 3295, "left": 1320}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731197f.jpg"} -{"rects": [{"solidity": 0.9989506172839506, "top": 860, "right": 5710, "bottom": 3265, "left": 4100}, {"solidity": 0.9981008158375727, "top": 860, "right": 2000, "bottom": 3275, "left": 395}, {"solidity": 0.9970422462045947, "top": 855, "right": 3840, "bottom": 3270, "left": 2230}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728521f.jpg"} -{"rects": [{"solidity": 0.9989508050553517, "top": 810, "right": 3640, "bottom": 2945, "left": 575}], "shape": {"h": 6850, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711288f.jpg"} -{"rects": [{"solidity": 0.9989509654640608, "top": 425, "right": 2835, "bottom": 3610, "left": 820}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733008f.jpg"} -{"rects": [{"solidity": 0.9989536123052601, "top": 855, "right": 2050, "bottom": 3260, "left": 435}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707996f.jpg"} -{"rects": [{"solidity": 0.9989545434200178, "top": 445, "right": 3155, "bottom": 2060, "left": 720}, {"solidity": 0.994537306279993, "top": 2270, "right": 3145, "bottom": 3880, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732146f.jpg"} -{"rects": [{"solidity": 0.9989546193372483, "top": 735, "right": 2010, "bottom": 3140, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712536f.jpg"} -{"rects": [{"solidity": 0.9989556114085438, "top": 1105, "right": 3480, "bottom": 5030, "left": 400}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712646f.jpg"} -{"rects": [{"solidity": 0.9989558119757044, "top": 625, "right": 3580, "bottom": 2455, "left": 850}], "shape": {"h": 4410, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/706450f.jpg"} -{"rects": [{"solidity": 0.9989562190077336, "top": 440, "right": 3315, "bottom": 2055, "left": 890}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727699f.jpg"} -{"rects": [{"solidity": 0.9989563738500786, "top": 495, "right": 2525, "bottom": 2905, "left": 905}], "shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711814f.jpg"} -{"rects": [{"solidity": 0.9989571732959117, "top": 380, "right": 3345, "bottom": 1995, "left": 925}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700264f.jpg"} -{"rects": [{"solidity": 0.9989581007665401, "top": 2220, "right": 3155, "bottom": 3830, "left": 740}, {"solidity": 0.9921019455076372, "top": 395, "right": 3150, "bottom": 2005, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710783f.jpg"} -{"rects": [{"solidity": 0.9989590839939146, "top": 730, "right": 2040, "bottom": 3155, "left": 420}, {"solidity": 0.9943060293426517, "top": 730, "right": 3830, "bottom": 3160, "left": 2205}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718990f.jpg"} -{"rects": [{"solidity": 0.9989592798087394, "top": 880, "right": 4020, "bottom": 3290, "left": 2400}, {"solidity": 0.9979150344148823, "top": 890, "right": 2070, "bottom": 3300, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700296f.jpg"} -{"rects": [{"solidity": 0.9989595700407236, "top": 720, "right": 2010, "bottom": 3145, "left": 385}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706677f.jpg"} -{"rects": [{"solidity": 0.9989598135985969, "top": 690, "right": 2075, "bottom": 3115, "left": 455}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726565f.jpg"} -{"rects": [{"solidity": 0.9989614191169186, "top": 415, "right": 3040, "bottom": 2030, "left": 605}, {"solidity": 0.9967117351748469, "top": 2295, "right": 3040, "bottom": 3920, "left": 605}, {"solidity": 0.9962467126546299, "top": 4145, "right": 3035, "bottom": 5760, "left": 605}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729477f.jpg"} -{"rects": [{"solidity": 0.9989614381669866, "top": 575, "right": 3015, "bottom": 2195, "left": 600}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704183f.jpg"} -{"rects": [{"solidity": 0.998962506688243, "top": 765, "right": 2290, "bottom": 3160, "left": 680}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700447f.jpg"} -{"rects": [{"solidity": 0.9989625887598748, "top": 2185, "right": 3110, "bottom": 3805, "left": 700}, {"solidity": 0.9959911000460681, "top": 4100, "right": 3090, "bottom": 5705, "left": 680}, {"solidity": 0.9973528179890578, "top": 325, "right": 3100, "bottom": 1935, "left": 710}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721703f.jpg"} -{"rects": [{"solidity": 0.9989629732739421, "top": 450, "right": 5245, "bottom": 3630, "left": 1275}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731919f.jpg"} -{"rects": [{"solidity": 0.9989636703503182, "top": 295, "right": 3195, "bottom": 1905, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703293f.jpg"} -{"rects": [{"solidity": 0.998963704054348, "top": 2175, "right": 3200, "bottom": 3800, "left": 780}, {"solidity": 0.997752909693858, "top": 320, "right": 3200, "bottom": 1950, "left": 785}, {"solidity": 0.9982395777551891, "top": 4035, "right": 3215, "bottom": 5655, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701588f.jpg"} -{"rects": [{"solidity": 0.9989645762504112, "top": 850, "right": 2030, "bottom": 3265, "left": 415}, {"solidity": 0.9993512180880397, "top": 860, "right": 3865, "bottom": 3260, "left": 2250}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720191f.jpg"} -{"rects": [{"solidity": 0.9989646529214414, "top": 370, "right": 5185, "bottom": 3600, "left": 1175}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733484f.jpg"} -{"rects": [{"solidity": 0.9989649138129018, "top": 760, "right": 2035, "bottom": 3175, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725816f.jpg"} -{"rects": [{"solidity": 0.9989653049858817, "top": 1330, "right": 3610, "bottom": 5320, "left": 390}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/733500f.jpg"} -{"rects": [{"solidity": 0.99896561233555, "top": 415, "right": 5035, "bottom": 3630, "left": 945}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714967f.jpg"} -{"rects": [{"solidity": 0.9989662246200068, "top": 760, "right": 3855, "bottom": 3170, "left": 2240}, {"solidity": 0.9962384993010176, "top": 765, "right": 5695, "bottom": 3175, "left": 4075}, {"solidity": 0.9986101005882603, "top": 765, "right": 2020, "bottom": 3160, "left": 410}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732305f.jpg"} -{"rects": [{"solidity": 0.9989667631448906, "top": 660, "right": 2545, "bottom": 3540, "left": 505}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712585f.jpg"} -{"rects": [{"solidity": 0.9989668024951237, "top": 725, "right": 2045, "bottom": 3145, "left": 430}, {"solidity": 0.9969030509002231, "top": 750, "right": 3900, "bottom": 3160, "left": 2285}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711069f.jpg"} -{"rects": [{"solidity": 0.9989670186097551, "top": 435, "right": 3150, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729154f.jpg"} -{"rects": [{"solidity": 0.9989677328068021, "top": 805, "right": 2100, "bottom": 3225, "left": 485}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704512f.jpg"} -{"rects": [{"solidity": 0.99896775719323, "top": 1090, "right": 3530, "bottom": 5110, "left": 310}], "shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/720734f.jpg"} -{"rects": [{"solidity": 0.9989680082559339, "top": 410, "right": 3170, "bottom": 2035, "left": 740}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/704643f.jpg"} -{"rects": [{"solidity": 0.9989680696949852, "top": 700, "right": 2650, "bottom": 2095, "left": 830}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727263f.jpg"} -{"rects": [{"solidity": 0.9989683586877781, "top": 835, "right": 1990, "bottom": 3250, "left": 380}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712224f.jpg"} -{"rects": [{"solidity": 0.9989687403718029, "top": 420, "right": 5290, "bottom": 3625, "left": 1300}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730740f.jpg"} -{"rects": [{"solidity": 0.9989696906463561, "top": 700, "right": 2860, "bottom": 3095, "left": 1250}, {"solidity": 0.9967238075407735, "top": 3615, "right": 3135, "bottom": 5225, "left": 725}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/731028f.jpg"} -{"rects": [{"solidity": 0.9989703459637562, "top": 605, "right": 3035, "bottom": 2215, "left": 645}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705386f.jpg"} -{"rects": [{"solidity": 0.998970798813542, "top": 395, "right": 3280, "bottom": 2020, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705519f.jpg"} -{"rects": [{"solidity": 0.9989710158821462, "top": 2270, "right": 3240, "bottom": 3890, "left": 810}, {"solidity": 0.9928419158007608, "top": 385, "right": 3240, "bottom": 2025, "left": 810}, {"solidity": 0.9963715647830261, "top": 4130, "right": 3225, "bottom": 5730, "left": 800}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/726913f.jpg"} -{"rects": [{"solidity": 0.998971267074894, "top": 410, "right": 3095, "bottom": 1935, "left": 905}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/734450f.jpg"} -{"rects": [{"solidity": 0.9989722474596148, "top": 540, "right": 3230, "bottom": 2150, "left": 805}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718663f.jpg"} -{"rects": [{"solidity": 0.9989723302054767, "top": 390, "right": 5030, "bottom": 3645, "left": 990}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714921f.jpg"} -{"rects": [{"solidity": 0.9989724660161133, "top": 805, "right": 3795, "bottom": 3200, "left": 2190}, {"solidity": 0.9963047383377608, "top": 805, "right": 2005, "bottom": 3200, "left": 415}, {"solidity": 0.9971198863881451, "top": 800, "right": 5575, "bottom": 3195, "left": 3990}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707317f.jpg"} -{"rects": [{"solidity": 0.998973650576434, "top": 2145, "right": 3225, "bottom": 3755, "left": 805}, {"solidity": 0.9947997483749214, "top": 3985, "right": 3210, "bottom": 5595, "left": 785}, {"solidity": 0.9883014835712564, "top": 310, "right": 3235, "bottom": 1925, "left": 830}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730718f.jpg"} -{"rects": [{"solidity": 0.9989736517151242, "top": 2300, "right": 3150, "bottom": 3920, "left": 730}, {"solidity": 0.9996133323022195, "top": 405, "right": 3145, "bottom": 2020, "left": 730}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729200f.jpg"} -{"rects": [{"solidity": 0.9989741961956227, "top": 450, "right": 2820, "bottom": 3665, "left": 800}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733068f.jpg"} -{"rects": [{"solidity": 0.9989750964435188, "top": 1045, "right": 3520, "bottom": 5140, "left": 265}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723354f.jpg"} -{"rects": [{"solidity": 0.9989755782177029, "top": 385, "right": 5265, "bottom": 3580, "left": 1275}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723220f.jpg"} -{"rects": [{"solidity": 0.9989756739522705, "top": 890, "right": 3255, "bottom": 2865, "left": 440}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706142f.jpg"} -{"rects": [{"solidity": 0.9989780174857912, "top": 450, "right": 5065, "bottom": 3735, "left": 1010}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721772f.jpg"} -{"rects": [{"solidity": 0.9989795265728798, "top": 350, "right": 5225, "bottom": 3620, "left": 1205}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724189f.jpg"} -{"rects": [{"solidity": 0.9989797633050868, "top": 420, "right": 2450, "bottom": 1600, "left": 670}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715856f.jpg"} -{"rects": [{"solidity": 0.9989807561635405, "top": 825, "right": 3865, "bottom": 3240, "left": 2240}, {"solidity": 0.9992574710944104, "top": 815, "right": 1980, "bottom": 3230, "left": 360}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724737f.jpg"} -{"rects": [{"solidity": 0.9989807729406469, "top": 405, "right": 3140, "bottom": 2025, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701056f.jpg"} -{"rects": [{"solidity": 0.9989810587254148, "top": 440, "right": 3155, "bottom": 2045, "left": 740}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734793f.jpg"} -{"rects": [{"solidity": 0.9989814731250726, "top": 775, "right": 2025, "bottom": 3205, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723192f.jpg"} -{"rects": [{"solidity": 0.99898155039367, "top": 740, "right": 2040, "bottom": 3140, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716752f.jpg"} -{"rects": [{"solidity": 0.9989816798439857, "top": 750, "right": 1960, "bottom": 3160, "left": 330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716682f.jpg"} -{"rects": [{"solidity": 0.9989817603720844, "top": 775, "right": 1990, "bottom": 3175, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724149f.jpg"} -{"rects": [{"solidity": 0.9989822713364598, "top": 1065, "right": 3465, "bottom": 5110, "left": 175}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723710f.jpg"} -{"rects": [{"solidity": 0.9989834373731713, "top": 470, "right": 5040, "bottom": 3700, "left": 1020}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700235f.jpg"} -{"rects": [{"solidity": 0.998983641628706, "top": 750, "right": 2000, "bottom": 3130, "left": 415}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713522f.jpg"} -{"rects": [{"solidity": 0.9989844005213842, "top": 430, "right": 3185, "bottom": 2040, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713552f.jpg"} -{"rects": [{"solidity": 0.9989852866565195, "top": 855, "right": 3870, "bottom": 3280, "left": 2255}, {"solidity": 0.9969127121904227, "top": 865, "right": 2015, "bottom": 3290, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728743f.jpg"} -{"rects": [{"solidity": 0.9989855374050567, "top": 460, "right": 3300, "bottom": 2065, "left": 890}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726451f.jpg"} -{"rects": [{"solidity": 0.9989859211690598, "top": 3300, "right": 3235, "bottom": 5335, "left": 415}, {"solidity": 0.9975665635759907, "top": 745, "right": 3260, "bottom": 2785, "left": 440}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731195f.jpg"} -{"rects": [{"solidity": 0.9989859966982041, "top": 445, "right": 5105, "bottom": 3755, "left": 1030}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714526f.jpg"} -{"rects": [{"solidity": 0.9989860852267789, "top": 810, "right": 3945, "bottom": 3230, "left": 2330}, {"solidity": 0.9991133808561194, "top": 810, "right": 2085, "bottom": 3225, "left": 470}, {"solidity": 0.9952607251285586, "top": 830, "right": 5750, "bottom": 3245, "left": 4135}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721048f.jpg"} -{"rects": [{"solidity": 0.9989862037428495, "top": 890, "right": 2125, "bottom": 2945, "left": 705}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711127f.jpg"} -{"rects": [{"solidity": 0.9989863984322962, "top": 2280, "right": 3170, "bottom": 3895, "left": 750}, {"solidity": 0.9974136100727663, "top": 4115, "right": 3165, "bottom": 5730, "left": 740}, {"solidity": 0.9961704827639517, "top": 440, "right": 3180, "bottom": 2055, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732126f.jpg"} -{"rects": [{"solidity": 0.9989866899494301, "top": 830, "right": 3805, "bottom": 3260, "left": 2180}, {"solidity": 0.9982393746258671, "top": 830, "right": 5665, "bottom": 3255, "left": 4045}, {"solidity": 0.9999325374898806, "top": 835, "right": 1950, "bottom": 3250, "left": 330}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720243f.jpg"} -{"rects": [{"solidity": 0.9989868287740629, "top": 750, "right": 1990, "bottom": 3140, "left": 390}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732506f.jpg"} -{"rects": [{"solidity": 0.9989879229786752, "top": 405, "right": 3175, "bottom": 2015, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701139f.jpg"} -{"rects": [{"solidity": 0.9989908300968541, "top": 430, "right": 2925, "bottom": 1975, "left": 1060}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/713667f.jpg"} -{"rects": [{"solidity": 0.9989944762596793, "top": 445, "right": 5125, "bottom": 3720, "left": 1085}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706452f.jpg"} -{"rects": [{"solidity": 0.9989950631256463, "top": 905, "right": 3820, "bottom": 3315, "left": 2215}, {"solidity": 0.9968252521075441, "top": 915, "right": 5695, "bottom": 3325, "left": 4085}, {"solidity": 0.9961898988318731, "top": 910, "right": 1995, "bottom": 3310, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709572f.jpg"} -{"rects": [{"solidity": 0.9989950703597668, "top": 435, "right": 5015, "bottom": 3650, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711478f.jpg"} -{"rects": [{"solidity": 0.9989959005636129, "top": 455, "right": 5115, "bottom": 3675, "left": 1030}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731836f.jpg"} -{"rects": [{"solidity": 0.9989970850763024, "top": 2260, "right": 3125, "bottom": 3870, "left": 710}, {"solidity": 0.9986705232301746, "top": 405, "right": 3135, "bottom": 2015, "left": 725}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728464f.jpg"} -{"rects": [{"solidity": 0.9989971952583884, "top": 470, "right": 3270, "bottom": 3870, "left": 660}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/715632f.jpg"} -{"rects": [{"solidity": 0.9989973275710363, "top": 670, "right": 4230, "bottom": 3680, "left": 2190}, {"solidity": 0.996435600904809, "top": 745, "right": 2005, "bottom": 3150, "left": 395}, {"solidity": 0.9967679017389414, "top": 850, "right": 5875, "bottom": 3250, "left": 4280}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724258f.jpg"} -{"rects": [{"solidity": 0.9989984041239041, "top": 465, "right": 3215, "bottom": 2050, "left": 840}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719441f.jpg"} -{"rects": [{"solidity": 0.9989989428363877, "top": 1090, "right": 3525, "bottom": 5085, "left": 335}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717445f.jpg"} -{"rects": [{"solidity": 0.9989989541789666, "top": 435, "right": 3185, "bottom": 2060, "left": 765}, {"solidity": 0.9986378866683158, "top": 2260, "right": 3190, "bottom": 3875, "left": 765}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701943f.jpg"} -{"rects": [{"solidity": 0.9989990925105429, "top": 405, "right": 5160, "bottom": 3625, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732675f.jpg"} -{"rects": [{"solidity": 0.9989999287754152, "top": 1105, "right": 3545, "bottom": 5100, "left": 325}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/723500f.jpg"} -{"rects": [{"solidity": 0.9990003278667446, "top": 415, "right": 3205, "bottom": 2030, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719501f.jpg"} -{"rects": [{"solidity": 0.9990011641996721, "top": 915, "right": 3655, "bottom": 4965, "left": 395}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/716662f.jpg"} -{"rects": [{"solidity": 0.9990013638332116, "top": 2380, "right": 3160, "bottom": 3995, "left": 750}, {"solidity": 0.9960669301661601, "top": 485, "right": 3180, "bottom": 2105, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709276f.jpg"} -{"rects": [{"solidity": 0.9990015721996207, "top": 440, "right": 3195, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734032f.jpg"} -{"rects": [{"solidity": 0.9990024807586362, "top": 800, "right": 2040, "bottom": 3210, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722498f.jpg"} -{"rects": [{"solidity": 0.9990031645729749, "top": 455, "right": 5245, "bottom": 3610, "left": 1315}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733719f.jpg"} -{"rects": [{"solidity": 0.9990032223696509, "top": 440, "right": 3205, "bottom": 2040, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/702546f.jpg"} -{"rects": [{"solidity": 0.999003836358361, "top": 330, "right": 3140, "bottom": 1945, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705373f.jpg"} -{"rects": [{"solidity": 0.9990041984279184, "top": 850, "right": 1975, "bottom": 3265, "left": 355}, {"solidity": 0.9976904481902522, "top": 860, "right": 3810, "bottom": 3265, "left": 2210}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723835f.jpg"} -{"rects": [{"solidity": 0.999004364736526, "top": 555, "right": 3300, "bottom": 2170, "left": 875}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701329f.jpg"} -{"rects": [{"solidity": 0.9990043916317345, "top": 2280, "right": 3120, "bottom": 3890, "left": 695}, {"solidity": 0.9971967089819268, "top": 435, "right": 3120, "bottom": 2045, "left": 705}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731871f.jpg"} -{"rects": [{"solidity": 0.999007599781478, "top": 290, "right": 3145, "bottom": 1935, "left": 780}, {"solidity": 0.9963278256157828, "top": 2150, "right": 3140, "bottom": 3790, "left": 770}, {"solidity": 0.9963704495737731, "top": 4025, "right": 3125, "bottom": 5655, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719071f.jpg"} -{"rects": [{"solidity": 0.9990078005463199, "top": 1105, "right": 3600, "bottom": 5160, "left": 300}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716883f.jpg"} -{"rects": [{"solidity": 0.9990082529086151, "top": 3400, "right": 3220, "bottom": 5440, "left": 400}, {"solidity": 0.9990056942619361, "top": 675, "right": 3235, "bottom": 2710, "left": 415}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733812f.jpg"} -{"rects": [{"solidity": 0.9990093414447658, "top": 440, "right": 3310, "bottom": 2450, "left": 490}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729777f.jpg"} -{"rects": [{"solidity": 0.9990096422332567, "top": 645, "right": 4595, "bottom": 3300, "left": 1155}], "shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712781f.jpg"} -{"rects": [{"solidity": 0.9990096947359988, "top": 800, "right": 3825, "bottom": 3215, "left": 2200}, {"solidity": 0.9982604397685294, "top": 795, "right": 1960, "bottom": 3215, "left": 340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718061f.jpg"} -{"rects": [{"solidity": 0.9990102319302424, "top": 550, "right": 3405, "bottom": 2165, "left": 1005}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734240f.jpg"} -{"rects": [{"solidity": 0.9990116983802096, "top": 1195, "right": 3585, "bottom": 5230, "left": 305}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/709435f.jpg"} -{"rects": [{"solidity": 0.9990117064072048, "top": 560, "right": 2780, "bottom": 3625, "left": 710}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715169f.jpg"} -{"rects": [{"solidity": 0.999012611933754, "top": 440, "right": 3105, "bottom": 2050, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722998f.jpg"} -{"rects": [{"solidity": 0.9990132832267918, "top": 730, "right": 3865, "bottom": 3135, "left": 2260}, {"solidity": 0.9954137704149104, "top": 740, "right": 5705, "bottom": 3150, "left": 4100}, {"solidity": 0.9972953904045155, "top": 730, "right": 2035, "bottom": 3140, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730215f.jpg"} -{"rects": [{"solidity": 0.9990143556964347, "top": 780, "right": 2050, "bottom": 3180, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719844f.jpg"} -{"rects": [{"solidity": 0.9990165673056837, "top": 2285, "right": 3315, "bottom": 3905, "left": 900}, {"solidity": 0.997433008979613, "top": 4155, "right": 3295, "bottom": 5770, "left": 885}, {"solidity": 0.9969135802469136, "top": 425, "right": 3310, "bottom": 2040, "left": 910}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704349f.jpg"} -{"rects": [{"solidity": 0.9990167190217815, "top": 4125, "right": 3140, "bottom": 5730, "left": 725}, {"solidity": 0.9946771315980368, "top": 2265, "right": 3160, "bottom": 3885, "left": 730}, {"solidity": 0.994366020742538, "top": 385, "right": 3155, "bottom": 2000, "left": 740}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729067f.jpg"} -{"rects": [{"solidity": 0.9990169732796323, "top": 330, "right": 5115, "bottom": 3575, "left": 1025}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702600f.jpg"} -{"rects": [{"solidity": 0.9990179952613131, "top": 1025, "right": 3560, "bottom": 5005, "left": 340}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708473f.jpg"} -{"rects": [{"solidity": 0.9990182107408574, "top": 510, "right": 3290, "bottom": 2515, "left": 260}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711786f.jpg"} -{"rects": [{"solidity": 0.9990182530679592, "top": 395, "right": 2940, "bottom": 1955, "left": 985}, {"solidity": 0.99347061778001, "top": 2295, "right": 2915, "bottom": 3755, "left": 990}, {"solidity": 0.9955246956699917, "top": 4085, "right": 2885, "bottom": 5510, "left": 945}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731257f.jpg"} -{"rects": [{"solidity": 0.9990184263722593, "top": 2285, "right": 3200, "bottom": 3895, "left": 790}, {"solidity": 0.9980723776304014, "top": 435, "right": 3190, "bottom": 2035, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713103f.jpg"} -{"rects": [{"solidity": 0.9990186962494892, "top": 420, "right": 3200, "bottom": 2035, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724096f.jpg"} -{"rects": [{"solidity": 0.9990190941902434, "top": 1265, "right": 3605, "bottom": 5275, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/726487f.jpg"} -{"rects": [{"solidity": 0.9990191586704438, "top": 455, "right": 3190, "bottom": 2065, "left": 770}, {"solidity": 0.998017781852696, "top": 2255, "right": 3185, "bottom": 3870, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711080f.jpg"} -{"rects": [{"solidity": 0.9990204122082558, "top": 415, "right": 5215, "bottom": 3645, "left": 1140}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732711f.jpg"} -{"rects": [{"solidity": 0.9990210554920751, "top": 490, "right": 3180, "bottom": 2090, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710629f.jpg"} -{"rects": [{"solidity": 0.9990212441866118, "top": 805, "right": 3930, "bottom": 3215, "left": 2320}, {"solidity": 0.9950622405250885, "top": 820, "right": 2050, "bottom": 3200, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716913f.jpg"} -{"rects": [{"solidity": 0.9990215137795403, "top": 465, "right": 3020, "bottom": 2080, "left": 610}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702370f.jpg"} -{"rects": [{"solidity": 0.9990223556106755, "top": 1250, "right": 3470, "bottom": 5090, "left": 410}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720992f.jpg"} -{"rects": [{"solidity": 0.999022494393246, "top": 460, "right": 5070, "bottom": 3485, "left": 1190}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734062f.jpg"} -{"rects": [{"solidity": 0.9990228211314129, "top": 415, "right": 3190, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704012f.jpg"} -{"rects": [{"solidity": 0.9990229269057826, "top": 855, "right": 2035, "bottom": 3260, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722323f.jpg"} -{"rects": [{"solidity": 0.9990236597541777, "top": 1150, "right": 3325, "bottom": 4610, "left": 630}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/733411f.jpg"} -{"rects": [{"solidity": 0.9990237860509444, "top": 355, "right": 5095, "bottom": 3595, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705842f.jpg"} -{"rects": [{"solidity": 0.9990238266760676, "top": 1065, "right": 3580, "bottom": 5105, "left": 335}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732623f.jpg"} -{"rects": [{"solidity": 0.9990239922332503, "top": 975, "right": 2690, "bottom": 3985, "left": 265}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516881.jpg"} -{"rects": [{"solidity": 0.9990250410509032, "top": 815, "right": 3910, "bottom": 3235, "left": 2290}, {"solidity": 0.9978368295952799, "top": 820, "right": 2080, "bottom": 3230, "left": 465}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718052f.jpg"} -{"rects": [{"solidity": 0.9990256944759143, "top": 955, "right": 5225, "bottom": 3375, "left": 3620}, {"solidity": 0.9965682532700244, "top": 1310, "right": 3010, "bottom": 2930, "left": 595}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720358f.jpg"} -{"rects": [{"solidity": 0.9990260822660818, "top": 445, "right": 4670, "bottom": 3740, "left": 605}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727663f.jpg"} -{"rects": [{"solidity": 0.9990267482035394, "top": 780, "right": 3865, "bottom": 3180, "left": 2250}, {"solidity": 0.9950423298779875, "top": 785, "right": 1975, "bottom": 3190, "left": 355}, {"solidity": 0.986988060140235, "top": 965, "right": 5665, "bottom": 2950, "left": 4185}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710241f.jpg"} -{"rects": [{"solidity": 0.9990283339502641, "top": 910, "right": 3410, "bottom": 2875, "left": 370}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708071f.jpg"} -{"rects": [{"solidity": 0.9990291262135922, "top": 950, "right": 2275, "bottom": 3660, "left": 475}], "shape": {"h": 4430, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/711198f.jpg"} -{"rects": [{"solidity": 0.9990295470572632, "top": 385, "right": 3100, "bottom": 1995, "left": 685}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718592f.jpg"} -{"rects": [{"solidity": 0.999029600911689, "top": 475, "right": 4985, "bottom": 3780, "left": 925}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703598f.jpg"} -{"rects": [{"solidity": 0.9990301319433267, "top": 520, "right": 2590, "bottom": 3550, "left": 580}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714002f.jpg"} -{"rects": [{"solidity": 0.9990308606280669, "top": 2240, "right": 3195, "bottom": 3855, "left": 785}, {"solidity": 0.9962704278836374, "top": 4065, "right": 3200, "bottom": 5680, "left": 780}, {"solidity": 0.9958114641776766, "top": 405, "right": 3205, "bottom": 2030, "left": 790}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732153f.jpg"} -{"rects": [{"solidity": 0.9990317090823732, "top": 450, "right": 3195, "bottom": 2050, "left": 785}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710862f.jpg"} -{"rects": [{"solidity": 0.9990324629843793, "top": 780, "right": 2040, "bottom": 3185, "left": 435}, {"solidity": 0.9979104643812781, "top": 780, "right": 3920, "bottom": 3175, "left": 2315}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718839f.jpg"} -{"rects": [{"solidity": 0.9990325391854892, "top": 435, "right": 5135, "bottom": 3675, "left": 1060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731265f.jpg"} -{"rects": [{"solidity": 0.9990325404948505, "top": 565, "right": 4840, "bottom": 3565, "left": 1110}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705166f.jpg"} -{"rects": [{"solidity": 0.9990329410479578, "top": 405, "right": 3050, "bottom": 2025, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704791f.jpg"} -{"rects": [{"solidity": 0.9990329918518206, "top": 800, "right": 2035, "bottom": 3210, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720056f.jpg"} -{"rects": [{"solidity": 0.9990334666932813, "top": 310, "right": 5070, "bottom": 3570, "left": 1040}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700519f.jpg"} -{"rects": [{"solidity": 0.9990338635698253, "top": 420, "right": 3315, "bottom": 2025, "left": 905}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725985f.jpg"} -{"rects": [{"solidity": 0.9990343186787299, "top": 960, "right": 3525, "bottom": 4940, "left": 285}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709476f.jpg"} -{"rects": [{"solidity": 0.999036398023146, "top": 890, "right": 1905, "bottom": 3260, "left": 280}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714907f.jpg"} -{"rects": [{"solidity": 0.999037595150513, "top": 945, "right": 1980, "bottom": 3355, "left": 365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717743f.jpg"} -{"rects": [{"solidity": 0.9990375990162551, "top": 435, "right": 5115, "bottom": 3650, "left": 1055}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709139f.jpg"} -{"rects": [{"solidity": 0.9990392698450823, "top": 780, "right": 1920, "bottom": 3165, "left": 295}, {"solidity": 0.9978045353421022, "top": 790, "right": 3790, "bottom": 3165, "left": 2160}, {"solidity": 0.9932914883146547, "top": 1040, "right": 5560, "bottom": 2895, "left": 4085}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723272f.jpg"} -{"rects": [{"solidity": 0.9990394682110196, "top": 485, "right": 3340, "bottom": 2530, "left": 280}, {"solidity": 0.9969675687383904, "top": 2580, "right": 3115, "bottom": 4180, "left": 715}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720083f.jpg"} -{"rects": [{"solidity": 0.9990397662665194, "top": 470, "right": 5030, "bottom": 3625, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707651f.jpg"} -{"rects": [{"solidity": 0.9990397879568612, "top": 480, "right": 4900, "bottom": 3490, "left": 1130}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730105f.jpg"} -{"rects": [{"solidity": 0.9990412757498995, "top": 1240, "right": 3705, "bottom": 5350, "left": 445}], "shape": {"h": 6140, "w": 4060}, "file": "/usr/local/google/home/danvk/milstein/712820f.jpg"} -{"rects": [{"solidity": 0.9990426656300898, "top": 415, "right": 3225, "bottom": 2030, "left": 800}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704651f.jpg"} -{"rects": [{"solidity": 0.9990428905683143, "top": 265, "right": 3770, "bottom": 2710, "left": 620}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508713.jpg"} -{"rects": [{"solidity": 0.9990431243761112, "top": 750, "right": 5535, "bottom": 3565, "left": 2515}, {"solidity": 0.9968624252136409, "top": 910, "right": 2125, "bottom": 3335, "left": 500}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721545f.jpg"} -{"rects": [{"solidity": 0.9990438881028237, "top": 2110, "right": 3190, "bottom": 3730, "left": 770}, {"solidity": 0.9974018901169309, "top": 395, "right": 3175, "bottom": 2025, "left": 755}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704574f.jpg"} -{"rects": [{"solidity": 0.9990443042470344, "top": 505, "right": 3245, "bottom": 2450, "left": 245}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/712515f.jpg"} -{"rects": [{"solidity": 0.9990447923316595, "top": 1315, "right": 3080, "bottom": 5265, "left": 410}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719869f.jpg"} -{"rects": [{"solidity": 0.9990456057146394, "top": 795, "right": 3830, "bottom": 3200, "left": 2225}, {"solidity": 0.9976694529073249, "top": 795, "right": 2060, "bottom": 3205, "left": 455}, {"solidity": 0.9971924927846737, "top": 800, "right": 5600, "bottom": 3205, "left": 4000}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715447f.jpg"} -{"rects": [{"solidity": 0.9990460089753033, "top": 2220, "right": 3160, "bottom": 3825, "left": 745}, {"solidity": 0.9964747089528784, "top": 365, "right": 3145, "bottom": 1985, "left": 730}, {"solidity": 0.9958447306745702, "top": 4085, "right": 3160, "bottom": 5695, "left": 745}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734045f.jpg"} -{"rects": [{"solidity": 0.9990462239583333, "top": 550, "right": 2940, "bottom": 2160, "left": 540}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700850f.jpg"} -{"rects": [{"solidity": 0.9990465004256105, "top": 410, "right": 3125, "bottom": 2005, "left": 735}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715145f.jpg"} -{"rects": [{"solidity": 0.9990475908975963, "top": 825, "right": 2155, "bottom": 3225, "left": 560}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710912f.jpg"} -{"rects": [{"solidity": 0.9990479843294111, "top": 865, "right": 2690, "bottom": 3870, "left": 250}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/706444f.jpg"} -{"rects": [{"solidity": 0.9990480464117439, "top": 1885, "right": 2770, "bottom": 4300, "left": 1145}, {"solidity": 0.9976153783761862, "top": 200, "right": 3170, "bottom": 1815, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722856f.jpg"} -{"rects": [{"solidity": 0.999048626474629, "top": 315, "right": 3145, "bottom": 1940, "left": 745}, {"solidity": 0.9970494765095437, "top": 2140, "right": 3140, "bottom": 3760, "left": 745}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702723f.jpg"} -{"rects": [{"solidity": 0.9990488855565793, "top": 955, "right": 3600, "bottom": 4950, "left": 325}], "shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/723823f.jpg"} -{"rects": [{"solidity": 0.9990492747324388, "top": 485, "right": 3095, "bottom": 2055, "left": 735}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713137f.jpg"} -{"rects": [{"solidity": 0.9990496555001188, "top": 365, "right": 3040, "bottom": 1975, "left": 640}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702661f.jpg"} -{"rects": [{"solidity": 0.9990498842644255, "top": 420, "right": 3100, "bottom": 2050, "left": 680}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/700938f.jpg"} -{"rects": [{"solidity": 0.9990504153936008, "top": 660, "right": 2550, "bottom": 3730, "left": 490}, {"solidity": 0.9960155886458818, "top": 865, "right": 4235, "bottom": 3295, "left": 2620}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721974f.jpg"} -{"rects": [{"solidity": 0.9990505361869273, "top": 830, "right": 3785, "bottom": 3240, "left": 2180}, {"solidity": 0.9967355503439853, "top": 835, "right": 1975, "bottom": 3245, "left": 365}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721571f.jpg"} -{"rects": [{"solidity": 0.999050831194774, "top": 630, "right": 2525, "bottom": 3690, "left": 540}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716755f.jpg"} -{"rects": [{"solidity": 0.999051553521758, "top": 1285, "right": 2565, "bottom": 4415, "left": 175}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507636.jpg"} -{"rects": [{"solidity": 0.999051830360654, "top": 500, "right": 2990, "bottom": 3325, "left": 955}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719118f.jpg"} -{"rects": [{"solidity": 0.9990522411229309, "top": 555, "right": 2355, "bottom": 2960, "left": 755}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722300f.jpg"} -{"rects": [{"solidity": 0.9990523899911369, "top": 360, "right": 5275, "bottom": 3580, "left": 1270}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727854f.jpg"} -{"rects": [{"solidity": 0.9990527291549668, "top": 775, "right": 1990, "bottom": 3135, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723752f.jpg"} -{"rects": [{"solidity": 0.9990535133903792, "top": 2285, "right": 3040, "bottom": 3905, "left": 620}, {"solidity": 0.9993765325568914, "top": 420, "right": 3040, "bottom": 2040, "left": 625}, {"solidity": 0.9970376394052045, "top": 4120, "right": 3035, "bottom": 5745, "left": 630}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730660f.jpg"} -{"rects": [{"solidity": 0.9990535766221506, "top": 380, "right": 3365, "bottom": 2310, "left": 635}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710944f.jpg"} -{"rects": [{"solidity": 0.9990544326275234, "top": 815, "right": 2045, "bottom": 3245, "left": 430}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706292f.jpg"} -{"rects": [{"solidity": 0.999054625237957, "top": 420, "right": 3270, "bottom": 2040, "left": 865}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/706530f.jpg"} -{"rects": [{"solidity": 0.999054996539424, "top": 440, "right": 3135, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/702317f.jpg"} -{"rects": [{"solidity": 0.9990556917058255, "top": 425, "right": 3210, "bottom": 2040, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703178f.jpg"} -{"rects": [{"solidity": 0.9990564887260031, "top": 555, "right": 5095, "bottom": 3820, "left": 905}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733797f.jpg"} -{"rects": [{"solidity": 0.999057784891, "top": 2295, "right": 3185, "bottom": 3905, "left": 765}, {"solidity": 0.9982425761765694, "top": 470, "right": 3180, "bottom": 2080, "left": 760}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713453f.jpg"} -{"rects": [{"solidity": 0.9990582293182956, "top": 450, "right": 5150, "bottom": 3675, "left": 1070}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719662f.jpg"} -{"rects": [{"solidity": 0.9990601367161952, "top": 2095, "right": 2765, "bottom": 3515, "left": 935}, {"solidity": 0.9965332675766235, "top": 620, "right": 2770, "bottom": 2045, "left": 935}, {"solidity": 0.9971040003146757, "top": 615, "right": 5140, "bottom": 2035, "left": 3330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705241f.jpg"} -{"rects": [{"solidity": 0.9990611632244548, "top": 1145, "right": 3440, "bottom": 4860, "left": 470}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723027f.jpg"} -{"rects": [{"solidity": 0.9990614984151719, "top": 350, "right": 3270, "bottom": 2365, "left": 450}, {"solidity": 0.996113214746502, "top": 4305, "right": 3105, "bottom": 5920, "left": 690}, {"solidity": 0.9959690690406906, "top": 2555, "right": 3100, "bottom": 4165, "left": 695}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728550f.jpg"} -{"rects": [{"solidity": 0.9990616508428851, "top": 2230, "right": 3165, "bottom": 3835, "left": 760}, {"solidity": 0.9976439995307551, "top": 430, "right": 3155, "bottom": 2040, "left": 750}, {"solidity": 0.9997413999103083, "top": 4050, "right": 3155, "bottom": 5650, "left": 755}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731960f.jpg"} -{"rects": [{"solidity": 0.9990624675594312, "top": 765, "right": 2055, "bottom": 3180, "left": 450}, {"solidity": 0.9957670007146622, "top": 790, "right": 3930, "bottom": 3205, "left": 2315}, {"solidity": 0.9953905157656775, "top": 805, "right": 5780, "bottom": 3210, "left": 4175}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710185f.jpg"} -{"rects": [{"solidity": 0.9990630454872164, "top": 2200, "right": 3205, "bottom": 3820, "left": 785}, {"solidity": 0.9973833136675541, "top": 355, "right": 3195, "bottom": 1965, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/700167f.jpg"} -{"rects": [{"solidity": 0.9990630776632651, "top": 505, "right": 3405, "bottom": 2140, "left": 975}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701676f.jpg"} -{"rects": [{"solidity": 0.9990643501266354, "top": 865, "right": 2060, "bottom": 3270, "left": 440}, {"solidity": 0.9981062697737269, "top": 875, "right": 3915, "bottom": 3275, "left": 2300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707879f.jpg"} -{"rects": [{"solidity": 0.9990648388610044, "top": 1005, "right": 3935, "bottom": 5510, "left": 305}], "shape": {"h": 6845, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711542f.jpg"} -{"rects": [{"solidity": 0.9990652171129295, "top": 920, "right": 5715, "bottom": 3345, "left": 4095}, {"solidity": 0.9961341338409723, "top": 910, "right": 3855, "bottom": 3325, "left": 2250}, {"solidity": 0.995736577136983, "top": 910, "right": 2015, "bottom": 3315, "left": 415}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730628f.jpg"} -{"rects": [{"solidity": 0.9990652884757457, "top": 820, "right": 2010, "bottom": 3245, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706303f.jpg"} -{"rects": [{"solidity": 0.999065367716271, "top": 560, "right": 3135, "bottom": 2145, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719823f.jpg"} -{"rects": [{"solidity": 0.99906537490841, "top": 855, "right": 2035, "bottom": 3255, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714964f.jpg"} -{"rects": [{"solidity": 0.9990658320807346, "top": 1275, "right": 3615, "bottom": 5350, "left": 335}], "shape": {"h": 6250, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/730040f.jpg"} -{"rects": [{"solidity": 0.9990687127224821, "top": 505, "right": 5045, "bottom": 3745, "left": 955}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709449f.jpg"} -{"rects": [{"solidity": 0.9990690547997013, "top": 755, "right": 3875, "bottom": 3170, "left": 2265}, {"solidity": 0.9902467834616251, "top": 760, "right": 2035, "bottom": 3180, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719981f.jpg"} -{"rects": [{"solidity": 0.9990703352047889, "top": 545, "right": 2650, "bottom": 3615, "left": 625}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714825f.jpg"} -{"rects": [{"solidity": 0.9990717141267644, "top": 390, "right": 2980, "bottom": 2010, "left": 580}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702272f.jpg"} -{"rects": [{"solidity": 0.9990718527296844, "top": 315, "right": 3280, "bottom": 1930, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704339f.jpg"} -{"rects": [{"solidity": 0.9990722036589018, "top": 395, "right": 5055, "bottom": 3670, "left": 1025}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730752f.jpg"} -{"rects": [{"solidity": 0.9990731115452325, "top": 780, "right": 2005, "bottom": 3200, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704029f.jpg"} -{"rects": [{"solidity": 0.9990732459536661, "top": 1105, "right": 3465, "bottom": 5130, "left": 190}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712296f.jpg"} -{"rects": [{"solidity": 0.9990738218469082, "top": 2265, "right": 3190, "bottom": 3880, "left": 760}, {"solidity": 0.9960860365581524, "top": 410, "right": 3195, "bottom": 2035, "left": 765}, {"solidity": 0.9967319735855975, "top": 4110, "right": 3185, "bottom": 5725, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732125f.jpg"} -{"rects": [{"solidity": 0.9990750394660722, "top": 355, "right": 3130, "bottom": 1975, "left": 755}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719062f.jpg"} -{"rects": [{"solidity": 0.9990750611699236, "top": 420, "right": 5050, "bottom": 3685, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727254f.jpg"} -{"rects": [{"solidity": 0.9990753746826634, "top": 2310, "right": 3350, "bottom": 3930, "left": 940}, {"solidity": 0.9942698901563719, "top": 480, "right": 3345, "bottom": 2080, "left": 940}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706567f.jpg"} -{"rects": [{"solidity": 0.9990758956889085, "top": 860, "right": 2045, "bottom": 3285, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706309f.jpg"} -{"rects": [{"solidity": 0.9990763338078774, "top": 430, "right": 5015, "bottom": 3695, "left": 935}], "shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/720060f.jpg"} -{"rects": [{"solidity": 0.9990766579120157, "top": 375, "right": 4985, "bottom": 3585, "left": 985}], "shape": {"h": 3855, "w": 6075}, "file": "/usr/local/google/home/danvk/milstein/724585f.jpg"} -{"rects": [{"solidity": 0.9990766899986671, "top": 845, "right": 3885, "bottom": 3255, "left": 2280}, {"solidity": 0.9966130645433645, "top": 855, "right": 1990, "bottom": 3265, "left": 370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700726f.jpg"} -{"rects": [{"solidity": 0.9990771720919973, "top": 1060, "right": 2630, "bottom": 4225, "left": 185}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508905.jpg"} -{"rects": [{"solidity": 0.9990771774446787, "top": 775, "right": 3860, "bottom": 3190, "left": 2235}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717907f.jpg"} -{"rects": [{"solidity": 0.9990777376840897, "top": 545, "right": 3135, "bottom": 2160, "left": 720}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702956f.jpg"} -{"rects": [{"solidity": 0.999078411540816, "top": 420, "right": 3085, "bottom": 2005, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729506f.jpg"} -{"rects": [{"solidity": 0.9990793764223795, "top": 810, "right": 2065, "bottom": 3230, "left": 450}, {"solidity": 0.9963973004029973, "top": 810, "right": 3865, "bottom": 3235, "left": 2255}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718786f.jpg"} -{"rects": [{"solidity": 0.9990798869027652, "top": 755, "right": 3915, "bottom": 3170, "left": 2285}, {"solidity": 0.9989475643172965, "top": 775, "right": 2035, "bottom": 3195, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715395f.jpg"} -{"rects": [{"solidity": 0.9990801733792494, "top": 395, "right": 3035, "bottom": 2005, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729493f.jpg"} -{"rects": [{"solidity": 0.9990806611538424, "top": 490, "right": 5065, "bottom": 3735, "left": 1050}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700422f.jpg"} -{"rects": [{"solidity": 0.9990808280426233, "top": 395, "right": 3195, "bottom": 1995, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715582f.jpg"} -{"rects": [{"solidity": 0.9990809296107769, "top": 895, "right": 3775, "bottom": 3310, "left": 2155}, {"solidity": 0.9967876667042944, "top": 905, "right": 5665, "bottom": 3325, "left": 4050}, {"solidity": 0.9944718766918667, "top": 895, "right": 1935, "bottom": 3305, "left": 330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730264f.jpg"} -{"rects": [{"solidity": 0.9990815848121103, "top": 2245, "right": 3145, "bottom": 3860, "left": 720}, {"solidity": 0.9961942202333653, "top": 4120, "right": 3130, "bottom": 5735, "left": 700}, {"solidity": 0.9951365121844523, "top": 375, "right": 3170, "bottom": 2005, "left": 735}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734289f.jpg"} -{"rects": [{"solidity": 0.9990825452632389, "top": 505, "right": 2535, "bottom": 2925, "left": 915}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703156f.jpg"} -{"rects": [{"solidity": 0.9990826526681422, "top": 750, "right": 3860, "bottom": 3150, "left": 2255}, {"solidity": 0.9959846830347961, "top": 745, "right": 5715, "bottom": 3160, "left": 4100}, {"solidity": 0.9973395715792853, "top": 760, "right": 2020, "bottom": 3160, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730202f.jpg"} -{"rects": [{"solidity": 0.9990828365364572, "top": 655, "right": 4290, "bottom": 3075, "left": 2670}, {"solidity": 0.9949901442825584, "top": 1105, "right": 2575, "bottom": 2725, "left": 150}, {"solidity": 0.9953820468189407, "top": 670, "right": 6010, "bottom": 3105, "left": 4390}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710877f.jpg"} -{"rects": [{"solidity": 0.9990857715185801, "top": 500, "right": 5070, "bottom": 3725, "left": 1060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701151f.jpg"} -{"rects": [{"solidity": 0.9990857969680029, "top": 745, "right": 3865, "bottom": 3135, "left": 2265}, {"solidity": 0.9962177066871211, "top": 740, "right": 2000, "bottom": 3130, "left": 405}, {"solidity": 0.9945955334987593, "top": 1045, "right": 5495, "bottom": 2860, "left": 4090}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719369f.jpg"} -{"rects": [{"solidity": 0.9990858059342422, "top": 780, "right": 2035, "bottom": 3200, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719591f.jpg"} -{"rects": [{"solidity": 0.9990864337018804, "top": 365, "right": 2810, "bottom": 2770, "left": 1190}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702020f.jpg"} -{"rects": [{"solidity": 0.9990880160817446, "top": 460, "right": 3145, "bottom": 2075, "left": 720}, {"solidity": 0.9972931528339918, "top": 2285, "right": 3135, "bottom": 3910, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701673f.jpg"} -{"rects": [{"solidity": 0.9990884706235972, "top": 420, "right": 3125, "bottom": 2020, "left": 720}, {"solidity": 0.9968197197029992, "top": 2270, "right": 3135, "bottom": 3865, "left": 725}], "shape": {"h": 6140, "w": 4070}, "file": "/usr/local/google/home/danvk/milstein/701134f.jpg"} -{"rects": [{"solidity": 0.9990898097284224, "top": 4115, "right": 3120, "bottom": 5730, "left": 700}, {"solidity": 0.9965871623315273, "top": 2270, "right": 3140, "bottom": 3890, "left": 715}, {"solidity": 0.9966853104544665, "top": 430, "right": 3145, "bottom": 2050, "left": 720}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734336f.jpg"} -{"rects": [{"solidity": 0.9990906142700007, "top": 450, "right": 3250, "bottom": 2030, "left": 870}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708096f.jpg"} -{"rects": [{"solidity": 0.9990907244217878, "top": 490, "right": 3275, "bottom": 2105, "left": 860}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700255f.jpg"} -{"rects": [{"solidity": 0.9990907495732904, "top": 290, "right": 3205, "bottom": 1915, "left": 780}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707248f.jpg"} -{"rects": [{"solidity": 0.999091227751308, "top": 1025, "right": 4280, "bottom": 2635, "left": 1875}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702398f.jpg"} -{"rects": [{"solidity": 0.9990916081174803, "top": 480, "right": 5040, "bottom": 3735, "left": 950}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723238f.jpg"} -{"rects": [{"solidity": 0.9990916597853015, "top": 550, "right": 5145, "bottom": 3775, "left": 1045}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709483f.jpg"} -{"rects": [{"solidity": 0.9990917289770438, "top": 425, "right": 3175, "bottom": 2050, "left": 755}, {"solidity": 0.995767747920109, "top": 2250, "right": 3185, "bottom": 3865, "left": 765}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720024f.jpg"} -{"rects": [{"solidity": 0.9990917525907921, "top": 420, "right": 3190, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714226f.jpg"} -{"rects": [{"solidity": 0.9990919594473646, "top": 800, "right": 1990, "bottom": 3215, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713176f.jpg"} -{"rects": [{"solidity": 0.9990919620998456, "top": 430, "right": 3200, "bottom": 2050, "left": 780}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707925f.jpg"} -{"rects": [{"solidity": 0.9990945341373274, "top": 335, "right": 5235, "bottom": 3560, "left": 1235}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733485f.jpg"} -{"rects": [{"solidity": 0.9990951951631719, "top": 765, "right": 3895, "bottom": 3160, "left": 2270}, {"solidity": 0.996139021384133, "top": 740, "right": 2055, "bottom": 3150, "left": 455}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704758f.jpg"} -{"rects": [{"solidity": 0.9990962581240626, "top": 405, "right": 3210, "bottom": 2020, "left": 780}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/725588f.jpg"} -{"rects": [{"solidity": 0.9990974205568915, "top": 855, "right": 3855, "bottom": 3270, "left": 2240}, {"solidity": 0.9976241203434696, "top": 845, "right": 1995, "bottom": 3260, "left": 380}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729485f.jpg"} -{"rects": [{"solidity": 0.9990975077081192, "top": 2265, "right": 3170, "bottom": 3880, "left": 745}, {"solidity": 0.9973352305801695, "top": 455, "right": 3160, "bottom": 2065, "left": 740}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705557f.jpg"} -{"rects": [{"solidity": 0.9990993559235226, "top": 470, "right": 5075, "bottom": 3705, "left": 1060}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700206f.jpg"} -{"rects": [{"solidity": 0.9990993630126402, "top": 480, "right": 5080, "bottom": 3760, "left": 1045}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700708f.jpg"} -{"rects": [{"solidity": 0.9990997715790519, "top": 390, "right": 3265, "bottom": 2005, "left": 835}, {"solidity": 0.9954872505920351, "top": 2275, "right": 3250, "bottom": 3885, "left": 830}, {"solidity": 0.9957513947852112, "top": 4125, "right": 3245, "bottom": 5735, "left": 825}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727560f.jpg"} -{"rects": [{"solidity": 0.9990999463429551, "top": 1705, "right": 2365, "bottom": 2915, "left": 560}, {"solidity": 0.9969548842054652, "top": 350, "right": 2365, "bottom": 1515, "left": 605}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715891f.jpg"} -{"rects": [{"solidity": 0.9991012242169781, "top": 770, "right": 3870, "bottom": 3185, "left": 2265}, {"solidity": 0.9992262980637947, "top": 770, "right": 2050, "bottom": 3180, "left": 445}, {"solidity": 0.9970536297915101, "top": 765, "right": 5665, "bottom": 3180, "left": 4060}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718674f.jpg"} -{"rects": [{"solidity": 0.9991022220005487, "top": 595, "right": 2655, "bottom": 2010, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706235f.jpg"} -{"rects": [{"solidity": 0.9991033031035623, "top": 555, "right": 5115, "bottom": 3790, "left": 1045}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701888f.jpg"} -{"rects": [{"solidity": 0.9991034435916593, "top": 770, "right": 2030, "bottom": 3135, "left": 465}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713927f.jpg"} -{"rects": [{"solidity": 0.9991034623581811, "top": 810, "right": 5680, "bottom": 3235, "left": 4055}, {"solidity": 0.9965057341798075, "top": 775, "right": 3845, "bottom": 3200, "left": 2215}, {"solidity": 0.997256832282213, "top": 765, "right": 2035, "bottom": 3190, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704149f.jpg"} -{"rects": [{"solidity": 0.9991038022479468, "top": 980, "right": 3540, "bottom": 5010, "left": 280}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/716601f.jpg"} -{"rects": [{"solidity": 0.9991042102120036, "top": 2205, "right": 3210, "bottom": 3820, "left": 785}, {"solidity": 0.9985897852803204, "top": 4070, "right": 3210, "bottom": 5685, "left": 790}, {"solidity": 0.9958590333883531, "top": 360, "right": 3205, "bottom": 1985, "left": 785}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734167f.jpg"} -{"rects": [{"solidity": 0.9991042203327458, "top": 585, "right": 2860, "bottom": 2010, "left": 1035}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703676f.jpg"} -{"rects": [{"solidity": 0.9991047852128551, "top": 715, "right": 3805, "bottom": 3140, "left": 2195}, {"solidity": 0.9994262746644847, "top": 725, "right": 2005, "bottom": 3135, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704750f.jpg"} -{"rects": [{"solidity": 0.9991053308466794, "top": 460, "right": 3155, "bottom": 2050, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700350f.jpg"} -{"rects": [{"solidity": 0.999106260923343, "top": 440, "right": 5095, "bottom": 3640, "left": 1050}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709048f.jpg"} -{"rects": [{"solidity": 0.9991066854087571, "top": 855, "right": 3890, "bottom": 3255, "left": 2295}, {"solidity": 0.9977174498495816, "top": 845, "right": 2055, "bottom": 3245, "left": 460}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730315f.jpg"} -{"rects": [{"solidity": 0.999106857638323, "top": 385, "right": 2850, "bottom": 1995, "left": 455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720219f.jpg"} -{"rects": [{"solidity": 0.9991085349245669, "top": 400, "right": 5070, "bottom": 3635, "left": 980}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710869f.jpg"} -{"rects": [{"solidity": 0.9991090163669819, "top": 520, "right": 5535, "bottom": 2140, "left": 3130}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707251f.jpg"} -{"rects": [{"solidity": 0.9991091728603528, "top": 415, "right": 2990, "bottom": 1890, "left": 1065}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721043f.jpg"} -{"rects": [{"solidity": 0.9991092378764153, "top": 380, "right": 5100, "bottom": 3600, "left": 1105}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714912f.jpg"} -{"rects": [{"solidity": 0.9991097082271053, "top": 550, "right": 3205, "bottom": 2120, "left": 830}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709713f.jpg"} -{"rects": [{"solidity": 0.9991103271825089, "top": 425, "right": 5315, "bottom": 3650, "left": 1300}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730735f.jpg"} -{"rects": [{"solidity": 0.9991111523004726, "top": 415, "right": 2950, "bottom": 1950, "left": 1005}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722657f.jpg"} -{"rects": [{"solidity": 0.9991114133660111, "top": 4185, "right": 3255, "bottom": 5805, "left": 835}, {"solidity": 0.9965129521212607, "top": 435, "right": 3285, "bottom": 2070, "left": 860}, {"solidity": 0.9969305789063456, "top": 2315, "right": 3275, "bottom": 3935, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704765f.jpg"} -{"rects": [{"solidity": 0.9991118372004071, "top": 820, "right": 5490, "bottom": 3215, "left": 3870}, {"solidity": 0.9965073063464318, "top": 800, "right": 1945, "bottom": 3205, "left": 350}, {"solidity": 0.9955126393990261, "top": 845, "right": 3570, "bottom": 3065, "left": 2200}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718804f.jpg"} -{"rects": [{"solidity": 0.9991129710919553, "top": 615, "right": 3270, "bottom": 2620, "left": 240}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715674f.jpg"} -{"rects": [{"solidity": 0.9991142575336777, "top": 800, "right": 2050, "bottom": 3215, "left": 445}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714847f.jpg"} -{"rects": [{"solidity": 0.9991146130253801, "top": 770, "right": 3860, "bottom": 3200, "left": 2235}, {"solidity": 0.9973337814734978, "top": 800, "right": 2015, "bottom": 3220, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705646f.jpg"} -{"rects": [{"solidity": 0.9991159254696447, "top": 2185, "right": 3205, "bottom": 3810, "left": 780}, {"solidity": 0.9966607009646509, "top": 325, "right": 3200, "bottom": 1955, "left": 780}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/719088f.jpg"} -{"rects": [{"solidity": 0.9991161288414716, "top": 800, "right": 2060, "bottom": 3200, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717295f.jpg"} -{"rects": [{"solidity": 0.9991184413516794, "top": 420, "right": 3150, "bottom": 2020, "left": 760}], "shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/701850f.jpg"} -{"rects": [{"solidity": 0.9991186975277146, "top": 800, "right": 2050, "bottom": 3180, "left": 455}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712567f.jpg"} -{"rects": [{"solidity": 0.9991196034955002, "top": 2420, "right": 2535, "bottom": 3900, "left": 450}, {"solidity": 0.9933044683346044, "top": 620, "right": 2540, "bottom": 2110, "left": 465}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/716224f.jpg"} -{"rects": [{"solidity": 0.9991218483489788, "top": 825, "right": 2010, "bottom": 3255, "left": 395}, {"solidity": 0.9958195819581959, "top": 840, "right": 3860, "bottom": 3260, "left": 2240}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729453f.jpg"} -{"rects": [{"solidity": 0.9991253784420203, "top": 755, "right": 2035, "bottom": 3185, "left": 420}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704155f.jpg"} -{"rects": [{"solidity": 0.9991260325763265, "top": 425, "right": 3180, "bottom": 2040, "left": 775}, {"solidity": 0.9961127655221462, "top": 2295, "right": 3170, "bottom": 3910, "left": 760}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/734587f.jpg"} -{"rects": [{"solidity": 0.9991277723872539, "top": 895, "right": 3550, "bottom": 4945, "left": 265}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718075f.jpg"} -{"rects": [{"solidity": 0.9991278808787882, "top": 2240, "right": 3175, "bottom": 3860, "left": 755}, {"solidity": 0.9961459173612979, "top": 4080, "right": 3175, "bottom": 5715, "left": 750}, {"solidity": 0.9979769160938918, "top": 390, "right": 3170, "bottom": 1995, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734745f.jpg"} -{"rects": [{"solidity": 0.9991279415881761, "top": 760, "right": 2020, "bottom": 3180, "left": 405}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704973f.jpg"} -{"rects": [{"solidity": 0.999128408843298, "top": 285, "right": 2085, "bottom": 1285, "left": 580}], "shape": {"h": 3945, "w": 2570}, "file": "/usr/local/google/home/danvk/milstein/727085f.jpg"} -{"rects": [{"solidity": 0.999129823299543, "top": 2270, "right": 3175, "bottom": 3885, "left": 750}, {"solidity": 0.9966326183398712, "top": 4075, "right": 3180, "bottom": 5695, "left": 750}, {"solidity": 0.995823140959324, "top": 465, "right": 3190, "bottom": 2085, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723063f.jpg"} -{"rects": [{"solidity": 0.9991304236216733, "top": 670, "right": 2040, "bottom": 3080, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705795f.jpg"} -{"rects": [{"solidity": 0.9991314711737185, "top": 1080, "right": 2325, "bottom": 3020, "left": 280}], "shape": {"h": 6045, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465707.jpg"} -{"rects": [{"solidity": 0.9991317165761363, "top": 460, "right": 3065, "bottom": 2040, "left": 700}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/729227f.jpg"} -{"rects": [{"solidity": 0.9991330927398122, "top": 755, "right": 2030, "bottom": 3180, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706991f.jpg"} -{"rects": [{"solidity": 0.9991342107110504, "top": 750, "right": 2195, "bottom": 3130, "left": 615}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709223f.jpg"} -{"rects": [{"solidity": 0.9991346921635559, "top": 1895, "right": 3205, "bottom": 3525, "left": 780}, {"solidity": 0.9955084935538565, "top": 3580, "right": 2810, "bottom": 6010, "left": 1150}, {"solidity": 0.9956085460510522, "top": 150, "right": 3195, "bottom": 1795, "left": 765}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/719073f.jpg"} -{"rects": [{"solidity": 0.9991350915469831, "top": 790, "right": 2065, "bottom": 3200, "left": 460}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704070f.jpg"} -{"rects": [{"solidity": 0.9991351555732381, "top": 1190, "right": 3260, "bottom": 4605, "left": 655}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717942f.jpg"} -{"rects": [{"solidity": 0.9991356625626645, "top": 385, "right": 2745, "bottom": 2810, "left": 1125}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703653f.jpg"} -{"rects": [{"solidity": 0.9991358412997964, "top": 785, "right": 3865, "bottom": 3220, "left": 2240}, {"solidity": 0.9974645449860343, "top": 805, "right": 5760, "bottom": 3240, "left": 4135}, {"solidity": 0.9940391974950713, "top": 845, "right": 1970, "bottom": 3135, "left": 310}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706343f.jpg"} -{"rects": [{"solidity": 0.9991359353092699, "top": 2290, "right": 3140, "bottom": 3890, "left": 730}, {"solidity": 0.9963664838441225, "top": 450, "right": 3130, "bottom": 2050, "left": 725}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700426f.jpg"} -{"rects": [{"solidity": 0.9991367273001736, "top": 2060, "right": 2715, "bottom": 3495, "left": 855}, {"solidity": 0.9970594532867033, "top": 585, "right": 5305, "bottom": 2015, "left": 3450}, {"solidity": 0.9967138671875, "top": 580, "right": 2695, "bottom": 2000, "left": 870}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705218f.jpg"} -{"rects": [{"solidity": 0.9991373130805025, "top": 340, "right": 5035, "bottom": 3600, "left": 1025}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731048f.jpg"} -{"rects": [{"solidity": 0.999137508575909, "top": 2330, "right": 3200, "bottom": 3930, "left": 795}, {"solidity": 0.9952603200848466, "top": 445, "right": 3195, "bottom": 2050, "left": 800}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718366f.jpg"} -{"rects": [{"solidity": 0.9991377057209829, "top": 585, "right": 2965, "bottom": 3660, "left": 980}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724272f.jpg"} -{"rects": [{"solidity": 0.9991396486588034, "top": 1235, "right": 3565, "bottom": 5225, "left": 360}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/733506f.jpg"} -{"rects": [{"solidity": 0.9991406525699352, "top": 415, "right": 5065, "bottom": 3675, "left": 1030}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708193f.jpg"} -{"rects": [{"solidity": 0.9991428237463797, "top": 750, "right": 2055, "bottom": 3155, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722997f.jpg"} -{"rects": [{"solidity": 0.9991430796349454, "top": 815, "right": 3850, "bottom": 3220, "left": 2245}, {"solidity": 0.9968359276988299, "top": 815, "right": 2070, "bottom": 3220, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723545f.jpg"} -{"rects": [{"solidity": 0.9991441733796561, "top": 765, "right": 2125, "bottom": 3190, "left": 495}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705035f.jpg"} -{"rects": [{"solidity": 0.9991455121246579, "top": 1145, "right": 3605, "bottom": 5170, "left": 340}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725758f.jpg"} -{"rects": [{"solidity": 0.9991456986734151, "top": 925, "right": 2075, "bottom": 3340, "left": 460}, {"solidity": 0.9964847280247259, "top": 915, "right": 3905, "bottom": 3335, "left": 2285}, {"solidity": 0.9964630381015502, "top": 915, "right": 5725, "bottom": 3325, "left": 4105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715333f.jpg"} -{"rects": [{"solidity": 0.9991457288668004, "top": 3290, "right": 3230, "bottom": 5300, "left": 420}, {"solidity": 0.9992805224926097, "top": 635, "right": 3210, "bottom": 2635, "left": 400}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/728729f.jpg"} -{"rects": [{"solidity": 0.9991464582760354, "top": 545, "right": 2995, "bottom": 2985, "left": 1365}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710949f.jpg"} -{"rects": [{"solidity": 0.9991468405688371, "top": 1050, "right": 3565, "bottom": 5070, "left": 320}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/732701f.jpg"} -{"rects": [{"solidity": 0.9991468471807495, "top": 1590, "right": 2145, "bottom": 2800, "left": 655}, {"solidity": 0.9951585521765557, "top": 315, "right": 2130, "bottom": 1525, "left": 630}, {"solidity": 0.9971067212550649, "top": 1595, "right": 3835, "bottom": 2800, "left": 2340}, {"solidity": 0.9969682688181876, "top": 315, "right": 3835, "bottom": 1525, "left": 2350}], "shape": {"h": 2990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/716290f.jpg"} -{"rects": [{"solidity": 0.9991490072225284, "top": 425, "right": 5050, "bottom": 3705, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715136f.jpg"} -{"rects": [{"solidity": 0.9991490415604292, "top": 2295, "right": 3145, "bottom": 3925, "left": 715}, {"solidity": 0.997640436932568, "top": 435, "right": 3140, "bottom": 2065, "left": 710}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704611f.jpg"} -{"rects": [{"solidity": 0.9991496116559896, "top": 1130, "right": 3535, "bottom": 5125, "left": 320}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/716624f.jpg"} -{"rects": [{"solidity": 0.9991504315421599, "top": 410, "right": 3120, "bottom": 2025, "left": 700}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729530f.jpg"} -{"rects": [{"solidity": 0.9991508432209258, "top": 1235, "right": 2600, "bottom": 4395, "left": 190}], "shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507655.jpg"} -{"rects": [{"solidity": 0.9991512666012253, "top": 1270, "right": 3595, "bottom": 5280, "left": 370}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/726490f.jpg"} -{"rects": [{"solidity": 0.9991516432786173, "top": 1320, "right": 3625, "bottom": 5335, "left": 405}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708661f.jpg"} -{"rects": [{"solidity": 0.9991521914221336, "top": 560, "right": 3135, "bottom": 2170, "left": 740}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705026f.jpg"} -{"rects": [{"solidity": 0.9991523333580768, "top": 795, "right": 3170, "bottom": 2765, "left": 505}, {"solidity": 0.993412157586116, "top": 3435, "right": 3175, "bottom": 5375, "left": 525}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703561f.jpg"} -{"rects": [{"solidity": 0.9991526761579824, "top": 2275, "right": 3180, "bottom": 3885, "left": 755}, {"solidity": 0.9967883390022311, "top": 420, "right": 3175, "bottom": 2040, "left": 750}, {"solidity": 0.9968913986773142, "top": 4135, "right": 3205, "bottom": 5750, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731650f.jpg"} -{"rects": [{"solidity": 0.9991533336039573, "top": 345, "right": 5020, "bottom": 3600, "left": 1030}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731056f.jpg"} -{"rects": [{"solidity": 0.9991557822495996, "top": 2350, "right": 3110, "bottom": 3965, "left": 685}, {"solidity": 0.9956458496200131, "top": 480, "right": 3125, "bottom": 2105, "left": 695}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726640f.jpg"} -{"rects": [{"solidity": 0.9991561990978574, "top": 330, "right": 3010, "bottom": 3530, "left": 1005}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732983f.jpg"} -{"rects": [{"solidity": 0.999156281830534, "top": 375, "right": 5105, "bottom": 3655, "left": 1100}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732737f.jpg"} -{"rects": [{"solidity": 0.9991574958284569, "top": 770, "right": 2010, "bottom": 3175, "left": 415}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715499f.jpg"} -{"rects": [{"solidity": 0.9991576559893282, "top": 800, "right": 2020, "bottom": 3205, "left": 425}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711997f.jpg"} -{"rects": [{"solidity": 0.999157910432639, "top": 500, "right": 5100, "bottom": 3750, "left": 1060}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709500f.jpg"} -{"rects": [{"solidity": 0.999158942787679, "top": 775, "right": 2000, "bottom": 3135, "left": 435}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714217f.jpg"} -{"rects": [{"solidity": 0.9991619506165649, "top": 825, "right": 2080, "bottom": 3230, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708043f.jpg"} -{"rects": [{"solidity": 0.9991620093726029, "top": 315, "right": 3130, "bottom": 1935, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/706088f.jpg"} -{"rects": [{"solidity": 0.9991625092009487, "top": 770, "right": 1905, "bottom": 3180, "left": 310}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719426f.jpg"} -{"rects": [{"solidity": 0.9991632749031117, "top": 775, "right": 2005, "bottom": 3190, "left": 400}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713566f.jpg"} -{"rects": [{"solidity": 0.9991642723927617, "top": 610, "right": 4915, "bottom": 3760, "left": 950}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702992f.jpg"} -{"rects": [{"solidity": 0.9991646105725331, "top": 2090, "right": 5395, "bottom": 3510, "left": 3570}, {"solidity": 0.9965792193729389, "top": 2125, "right": 2560, "bottom": 3535, "left": 735}, {"solidity": 0.997120716445177, "top": 650, "right": 2550, "bottom": 2060, "left": 735}, {"solidity": 0.9958544168749619, "top": 640, "right": 5370, "bottom": 2025, "left": 3570}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702701f.jpg"} -{"rects": [{"solidity": 0.9991647630971822, "top": 985, "right": 2625, "bottom": 4135, "left": 175}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507753.jpg"} -{"rects": [{"solidity": 0.9991649989030816, "top": 3400, "right": 3255, "bottom": 5400, "left": 450}, {"solidity": 0.9979112283231171, "top": 780, "right": 3250, "bottom": 2780, "left": 440}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728720f.jpg"} -{"rects": [{"solidity": 0.9991659394130661, "top": 460, "right": 3090, "bottom": 2080, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702053f.jpg"} -{"rects": [{"solidity": 0.999166136849403, "top": 400, "right": 3120, "bottom": 2030, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701483f.jpg"} -{"rects": [{"solidity": 0.9991665142578452, "top": 510, "right": 5100, "bottom": 3720, "left": 990}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707836f.jpg"} -{"rects": [{"solidity": 0.9991665207267161, "top": 395, "right": 3195, "bottom": 2000, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725718f.jpg"} -{"rects": [{"solidity": 0.9991665620846889, "top": 785, "right": 2030, "bottom": 3205, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706953f.jpg"} -{"rects": [{"solidity": 0.9991670121230876, "top": 1075, "right": 3530, "bottom": 5075, "left": 305}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721238f.jpg"} -{"rects": [{"solidity": 0.9991674271899067, "top": 280, "right": 2010, "bottom": 1310, "left": 480}], "shape": {"h": 3935, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727213f.jpg"} -{"rects": [{"solidity": 0.9991674595623216, "top": 365, "right": 5280, "bottom": 3630, "left": 1240}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716802f.jpg"} -{"rects": [{"solidity": 0.9991675590407261, "top": 465, "right": 3360, "bottom": 2525, "left": 290}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/716754f.jpg"} -{"rects": [{"solidity": 0.9991683664389657, "top": 790, "right": 1980, "bottom": 3145, "left": 420}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711796f.jpg"} -{"rects": [{"solidity": 0.9991688227684347, "top": 825, "right": 2020, "bottom": 3225, "left": 400}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719008f.jpg"} -{"rects": [{"solidity": 0.9991696509007204, "top": 815, "right": 3925, "bottom": 3235, "left": 2305}, {"solidity": 0.998784426547611, "top": 815, "right": 2070, "bottom": 3235, "left": 450}, {"solidity": 0.9982368706384266, "top": 815, "right": 5740, "bottom": 3230, "left": 4120}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711571f.jpg"} -{"rects": [{"solidity": 0.9991741982841675, "top": 810, "right": 2020, "bottom": 3215, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721115f.jpg"} -{"rects": [{"solidity": 0.9991749365526209, "top": 775, "right": 2050, "bottom": 3165, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720504f.jpg"} -{"rects": [{"solidity": 0.9991749966922037, "top": 470, "right": 3635, "bottom": 2270, "left": 945}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711533f.jpg"} -{"rects": [{"solidity": 0.999175745412844, "top": 715, "right": 2090, "bottom": 3120, "left": 485}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710880f.jpg"} -{"rects": [{"solidity": 0.9991769273222068, "top": 600, "right": 2700, "bottom": 2030, "left": 850}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705007f.jpg"} -{"rects": [{"solidity": 0.9991777173855816, "top": 355, "right": 5270, "bottom": 3620, "left": 1255}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701216f.jpg"} -{"rects": [{"solidity": 0.999179708027326, "top": 2165, "right": 3230, "bottom": 3790, "left": 815}, {"solidity": 0.9977383802034169, "top": 290, "right": 3235, "bottom": 1915, "left": 825}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/714589f.jpg"} -{"rects": [{"solidity": 0.9991798289174383, "top": 845, "right": 2035, "bottom": 3260, "left": 410}, {"solidity": 0.9989356878961025, "top": 855, "right": 3880, "bottom": 3270, "left": 2260}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710444f.jpg"} -{"rects": [{"solidity": 0.9991803331383277, "top": 400, "right": 3200, "bottom": 2020, "left": 785}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732385f.jpg"} -{"rects": [{"solidity": 0.9991805359616169, "top": 2290, "right": 3215, "bottom": 3910, "left": 800}, {"solidity": 0.9979941238114219, "top": 380, "right": 3215, "bottom": 2000, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/700112f.jpg"} -{"rects": [{"solidity": 0.9991805650849188, "top": 590, "right": 3035, "bottom": 2195, "left": 625}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706170f.jpg"} -{"rects": [{"solidity": 0.9991806261075015, "top": 335, "right": 5105, "bottom": 3570, "left": 1000}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700531f.jpg"} -{"rects": [{"solidity": 0.9991809205684923, "top": 3950, "right": 3110, "bottom": 5570, "left": 685}, {"solidity": 0.9997714388727752, "top": 2190, "right": 3130, "bottom": 3810, "left": 720}, {"solidity": 0.9973058474042258, "top": 460, "right": 3135, "bottom": 2080, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730933f.jpg"} -{"rects": [{"solidity": 0.999181290712989, "top": 770, "right": 2035, "bottom": 3175, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719333f.jpg"} -{"rects": [{"solidity": 0.9991825832300835, "top": 435, "right": 3150, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727978f.jpg"} -{"rects": [{"solidity": 0.9991840269734398, "top": 335, "right": 5055, "bottom": 3610, "left": 1005}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730043f.jpg"} -{"rects": [{"solidity": 0.9991858966282552, "top": 560, "right": 2585, "bottom": 2970, "left": 970}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700282f.jpg"} -{"rects": [{"solidity": 0.9991866507439564, "top": 785, "right": 2060, "bottom": 3205, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721634f.jpg"} -{"rects": [{"solidity": 0.9991874211772909, "top": 475, "right": 3525, "bottom": 2280, "left": 810}], "shape": {"h": 6885, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/702183f.jpg"} -{"rects": [{"solidity": 0.9991876641696663, "top": 640, "right": 5295, "bottom": 2050, "left": 3460}, {"solidity": 0.9949252917226735, "top": 2105, "right": 2705, "bottom": 3525, "left": 880}, {"solidity": 0.9962869240598301, "top": 2105, "right": 5270, "bottom": 3510, "left": 3475}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705280f.jpg"} -{"rects": [{"solidity": 0.9991876834907862, "top": 465, "right": 3055, "bottom": 2090, "left": 635}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705659f.jpg"} -{"rects": [{"solidity": 0.9991881607403974, "top": 485, "right": 5065, "bottom": 3770, "left": 1020}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702055f.jpg"} -{"rects": [{"solidity": 0.9991883604881862, "top": 435, "right": 3045, "bottom": 2025, "left": 675}, {"solidity": 1.0, "top": 5185, "right": 3860, "bottom": 6010, "left": 130}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710231f.jpg"} -{"rects": [{"solidity": 0.9991884887286537, "top": 910, "right": 2040, "bottom": 3330, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711766f.jpg"} -{"rects": [{"solidity": 0.9991888416262736, "top": 435, "right": 5305, "bottom": 3625, "left": 1330}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730041f.jpg"} -{"rects": [{"solidity": 0.9991893660140105, "top": 905, "right": 1915, "bottom": 3330, "left": 290}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702447f.jpg"} -{"rects": [{"solidity": 0.9991893831622387, "top": 2285, "right": 3085, "bottom": 3910, "left": 670}, {"solidity": 0.9966018057134759, "top": 4145, "right": 3075, "bottom": 5760, "left": 655}, {"solidity": 0.9970433234344235, "top": 425, "right": 3080, "bottom": 2035, "left": 670}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729931f.jpg"} -{"rects": [{"solidity": 0.9991895597692494, "top": 305, "right": 5060, "bottom": 3570, "left": 1045}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732731f.jpg"} -{"rects": [{"solidity": 0.9991896912242872, "top": 835, "right": 2615, "bottom": 3835, "left": 175}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507909.jpg"} -{"rects": [{"solidity": 0.9991896996584952, "top": 405, "right": 5260, "bottom": 3605, "left": 1270}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721428f.jpg"} -{"rects": [{"solidity": 0.9991905184229621, "top": 730, "right": 2015, "bottom": 3145, "left": 400}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714741f.jpg"} -{"rects": [{"solidity": 0.9991919388599523, "top": 790, "right": 3795, "bottom": 3190, "left": 2180}, {"solidity": 0.9977571488850661, "top": 775, "right": 1950, "bottom": 3170, "left": 330}, {"solidity": 0.9965010155192168, "top": 790, "right": 5665, "bottom": 3190, "left": 4050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709125f.jpg"} -{"rects": [{"solidity": 0.999191993329921, "top": 405, "right": 3085, "bottom": 2015, "left": 660}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729615f.jpg"} -{"rects": [{"solidity": 0.9991922110759026, "top": 750, "right": 2015, "bottom": 3150, "left": 420}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718473f.jpg"} -{"rects": [{"solidity": 0.9991923027416656, "top": 810, "right": 3775, "bottom": 3230, "left": 2160}, {"solidity": 0.996897190341212, "top": 790, "right": 1930, "bottom": 3190, "left": 305}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721730f.jpg"} -{"rects": [{"solidity": 0.9991928661710407, "top": 400, "right": 5075, "bottom": 3595, "left": 1130}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727701f.jpg"} -{"rects": [{"solidity": 0.9991933812628525, "top": 2280, "right": 3170, "bottom": 3900, "left": 735}, {"solidity": 0.9966580561834033, "top": 430, "right": 3160, "bottom": 2050, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706715f.jpg"} -{"rects": [{"solidity": 0.9991934761179317, "top": 450, "right": 3280, "bottom": 2070, "left": 855}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712104f.jpg"} -{"rects": [{"solidity": 0.9991937851168599, "top": 510, "right": 3910, "bottom": 2595, "left": 2450}, {"solidity": 0.9960529246302452, "top": 515, "right": 2230, "bottom": 2590, "left": 755}], "shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/716159f.jpg"} -{"rects": [{"solidity": 0.9991943947850703, "top": 795, "right": 2075, "bottom": 3220, "left": 460}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721987f.jpg"} -{"rects": [{"solidity": 0.9991957232905131, "top": 280, "right": 3215, "bottom": 1905, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703340f.jpg"} -{"rects": [{"solidity": 0.9991970047624799, "top": 470, "right": 2685, "bottom": 2870, "left": 1080}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713672f.jpg"} -{"rects": [{"solidity": 0.9991984935541499, "top": 655, "right": 2685, "bottom": 3825, "left": 225}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507745.jpg"} -{"rects": [{"solidity": 0.9991986247366448, "top": 385, "right": 3125, "bottom": 2000, "left": 715}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/700234f.jpg"} -{"rects": [{"solidity": 0.999200806076933, "top": 395, "right": 5045, "bottom": 3615, "left": 970}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715612f.jpg"} -{"rects": [{"solidity": 0.9992009790436828, "top": 920, "right": 3475, "bottom": 4955, "left": 275}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/711023f.jpg"} -{"rects": [{"solidity": 0.9992044370421874, "top": 445, "right": 3210, "bottom": 2055, "left": 795}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732534f.jpg"} -{"rects": [{"solidity": 0.9992057135888892, "top": 2285, "right": 2990, "bottom": 3885, "left": 605}, {"solidity": 0.9962660187110901, "top": 445, "right": 2990, "bottom": 2000, "left": 620}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733632f.jpg"} -{"rects": [{"solidity": 0.9992065124753872, "top": 710, "right": 2080, "bottom": 3110, "left": 475}, {"solidity": 0.9963444716325055, "top": 720, "right": 3860, "bottom": 3110, "left": 2260}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710179f.jpg"} -{"rects": [{"solidity": 0.9992109364852578, "top": 765, "right": 2035, "bottom": 3170, "left": 425}, {"solidity": 0.9962658481510083, "top": 755, "right": 3890, "bottom": 3165, "left": 2280}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722291f.jpg"} -{"rects": [{"solidity": 0.9992111337367656, "top": 1340, "right": 3600, "bottom": 5355, "left": 335}], "shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/701213f.jpg"} -{"rects": [{"solidity": 0.9992119959126446, "top": 890, "right": 3600, "bottom": 4975, "left": 370}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700514f.jpg"} -{"rects": [{"solidity": 0.9992120699214988, "top": 2300, "right": 3255, "bottom": 3915, "left": 855}, {"solidity": 0.997071424873149, "top": 460, "right": 3265, "bottom": 2085, "left": 865}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734847f.jpg"} -{"rects": [{"solidity": 0.9992143999908251, "top": 2270, "right": 3265, "bottom": 4010, "left": 745}, {"solidity": 0.9941656772627692, "top": 420, "right": 3270, "bottom": 2130, "left": 745}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/716961f.jpg"} -{"rects": [{"solidity": 0.9992158336789714, "top": 2250, "right": 3030, "bottom": 3860, "left": 620}, {"solidity": 0.9974260434936822, "top": 380, "right": 3030, "bottom": 1985, "left": 620}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710486f.jpg"} -{"rects": [{"solidity": 0.9992181262196072, "top": 410, "right": 3195, "bottom": 1995, "left": 800}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718409f.jpg"} -{"rects": [{"solidity": 0.9992190335459118, "top": 810, "right": 5555, "bottom": 3220, "left": 3945}, {"solidity": 0.9957387894243611, "top": 810, "right": 3750, "bottom": 3215, "left": 2140}, {"solidity": 0.9959841877392231, "top": 815, "right": 1945, "bottom": 3215, "left": 355}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722918f.jpg"} -{"rects": [{"solidity": 0.9992190600968752, "top": 250, "right": 3210, "bottom": 1860, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720534f.jpg"} -{"rects": [{"solidity": 0.9992195321323404, "top": 455, "right": 5185, "bottom": 3465, "left": 1350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730503f.jpg"} -{"rects": [{"solidity": 0.9992199763103916, "top": 2295, "right": 3035, "bottom": 3910, "left": 610}, {"solidity": 0.9967752182744049, "top": 390, "right": 3045, "bottom": 2015, "left": 615}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701222f.jpg"} -{"rects": [{"solidity": 0.9992204267441749, "top": 390, "right": 3185, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705562f.jpg"} -{"rects": [{"solidity": 0.9992213822319235, "top": 1020, "right": 3600, "bottom": 5050, "left": 325}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727634f.jpg"} -{"rects": [{"solidity": 0.9992240409646029, "top": 395, "right": 5030, "bottom": 3680, "left": 980}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708843f.jpg"} -{"rects": [{"solidity": 0.9992254091824813, "top": 315, "right": 3175, "bottom": 1935, "left": 790}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706828f.jpg"} -{"rects": [{"solidity": 0.999226086272757, "top": 515, "right": 5070, "bottom": 3490, "left": 995}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711778f.jpg"} -{"rects": [{"solidity": 0.9992269981081796, "top": 830, "right": 2000, "bottom": 3215, "left": 445}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713248f.jpg"} -{"rects": [{"solidity": 0.9992281720486613, "top": 775, "right": 1990, "bottom": 3175, "left": 395}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724150f.jpg"} -{"rects": [{"solidity": 0.9992282152982109, "top": 1050, "right": 3535, "bottom": 5075, "left": 285}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702476f.jpg"} -{"rects": [{"solidity": 0.9992285728918594, "top": 2300, "right": 3235, "bottom": 3920, "left": 810}, {"solidity": 0.9998327678528357, "top": 430, "right": 3230, "bottom": 2045, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709319f.jpg"} -{"rects": [{"solidity": 0.9992310947853366, "top": 795, "right": 3835, "bottom": 3190, "left": 2210}, {"solidity": 0.9989054383981386, "top": 805, "right": 1955, "bottom": 3175, "left": 335}, {"solidity": 0.998367006177993, "top": 825, "right": 5690, "bottom": 3165, "left": 4080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715433f.jpg"} -{"rects": [{"solidity": 0.9992332567659477, "top": 805, "right": 3900, "bottom": 3225, "left": 2280}, {"solidity": 0.9969557570017589, "top": 790, "right": 2040, "bottom": 3210, "left": 420}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732431f.jpg"} -{"rects": [{"solidity": 0.9992344020163614, "top": 980, "right": 2690, "bottom": 3995, "left": 270}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516885.jpg"} -{"rects": [{"solidity": 0.9992353506739884, "top": 440, "right": 3340, "bottom": 2050, "left": 920}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700214f.jpg"} -{"rects": [{"solidity": 0.9992410775531173, "top": 1340, "right": 3575, "bottom": 5320, "left": 335}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723658f.jpg"} -{"rects": [{"solidity": 0.9992411691557113, "top": 455, "right": 5135, "bottom": 3640, "left": 1170}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721516f.jpg"} -{"rects": [{"solidity": 0.999242246674394, "top": 840, "right": 2070, "bottom": 3265, "left": 455}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729953f.jpg"} -{"rects": [{"solidity": 0.9992423147925195, "top": 785, "right": 3855, "bottom": 3210, "left": 2240}, {"solidity": 0.9961511433747445, "top": 790, "right": 2020, "bottom": 3215, "left": 410}, {"solidity": 0.9969631349291507, "top": 785, "right": 5685, "bottom": 3200, "left": 4080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733794f.jpg"} -{"rects": [{"solidity": 0.9992444839153168, "top": 580, "right": 2650, "bottom": 3535, "left": 310}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507502.jpg"} -{"rects": [{"solidity": 0.9992447205299599, "top": 315, "right": 3115, "bottom": 1910, "left": 745}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/714133f.jpg"} -{"rects": [{"solidity": 0.9992448794399793, "top": 905, "right": 3960, "bottom": 3315, "left": 2350}, {"solidity": 0.9959019983841609, "top": 925, "right": 2130, "bottom": 3335, "left": 515}, {"solidity": 0.9974994534324443, "top": 945, "right": 5740, "bottom": 3280, "left": 4160}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710322f.jpg"} -{"rects": [{"solidity": 0.9992464544716808, "top": 740, "right": 2005, "bottom": 3165, "left": 395}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705419f.jpg"} -{"rects": [{"solidity": 0.9992466392282455, "top": 810, "right": 2065, "bottom": 3220, "left": 465}, {"solidity": 0.9960605567312388, "top": 805, "right": 3895, "bottom": 3215, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716877f.jpg"} -{"rects": [{"solidity": 0.9992480801742853, "top": 455, "right": 5080, "bottom": 3680, "left": 1000}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721049f.jpg"} -{"rects": [{"solidity": 0.9992481081102991, "top": 480, "right": 5240, "bottom": 3630, "left": 1310}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733717f.jpg"} -{"rects": [{"solidity": 0.9992486755909087, "top": 410, "right": 3080, "bottom": 2025, "left": 645}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/729764f.jpg"} -{"rects": [{"solidity": 0.999249607879594, "top": 315, "right": 5075, "bottom": 3575, "left": 1040}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700530f.jpg"} -{"rects": [{"solidity": 0.9992497338582943, "top": 655, "right": 3135, "bottom": 2225, "left": 765}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/710192f.jpg"} -{"rects": [{"solidity": 0.999250203539168, "top": 900, "right": 2065, "bottom": 3320, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728449f.jpg"} -{"rects": [{"solidity": 0.9992503434585227, "top": 840, "right": 2025, "bottom": 3260, "left": 410}, {"solidity": 0.9972642373780399, "top": 840, "right": 3870, "bottom": 3265, "left": 2255}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714616f.jpg"} -{"rects": [{"solidity": 0.9992507816647985, "top": 4855, "right": 3820, "bottom": 6010, "left": 130}, {"solidity": 0.9964408944845388, "top": 2260, "right": 3115, "bottom": 3875, "left": 725}, {"solidity": 0.9967257179374, "top": 410, "right": 3095, "bottom": 2005, "left": 685}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710063f.jpg"} -{"rects": [{"solidity": 0.9992510181973647, "top": 365, "right": 3315, "bottom": 1985, "left": 900}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703928f.jpg"} -{"rects": [{"solidity": 0.9992520138089759, "top": 820, "right": 2065, "bottom": 3185, "left": 495}], "shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707811f.jpg"} -{"rects": [{"solidity": 0.9992522776649241, "top": 435, "right": 3170, "bottom": 2050, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706988f.jpg"} -{"rects": [{"solidity": 0.9992541363692627, "top": 540, "right": 3190, "bottom": 2170, "left": 760}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703935f.jpg"} -{"rects": [{"solidity": 0.9992545429364348, "top": 335, "right": 5705, "bottom": 3955, "left": 1130}], "shape": {"h": 4415, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/702231f.jpg"} -{"rects": [{"solidity": 0.999255804404868, "top": 2205, "right": 3210, "bottom": 3825, "left": 790}, {"solidity": 0.9980032451298858, "top": 4090, "right": 3190, "bottom": 5710, "left": 780}, {"solidity": 0.9988482281802329, "top": 325, "right": 3210, "bottom": 1945, "left": 810}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714222f.jpg"} -{"rects": [{"solidity": 0.99925588876962, "top": 265, "right": 3160, "bottom": 1895, "left": 725}, {"solidity": 0.9977362201581772, "top": 2070, "right": 3170, "bottom": 3700, "left": 750}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/710361f.jpg"} -{"rects": [{"solidity": 0.9992559260177869, "top": 2385, "right": 3245, "bottom": 3995, "left": 820}, {"solidity": 0.9964934763848997, "top": 620, "right": 3240, "bottom": 2240, "left": 815}, {"solidity": 0.9971927514907457, "top": 4125, "right": 3245, "bottom": 5735, "left": 820}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733238f.jpg"} -{"rects": [{"solidity": 0.9992576672598845, "top": 825, "right": 5605, "bottom": 3235, "left": 3995}, {"solidity": 0.9980258300782838, "top": 820, "right": 1910, "bottom": 3220, "left": 295}, {"solidity": 0.9978788086137965, "top": 830, "right": 3750, "bottom": 3225, "left": 2135}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712407f.jpg"} -{"rects": [{"solidity": 0.999259187575708, "top": 755, "right": 2055, "bottom": 3140, "left": 475}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714625f.jpg"} -{"rects": [{"solidity": 0.9992594305322382, "top": 430, "right": 3175, "bottom": 2010, "left": 800}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713086f.jpg"} -{"rects": [{"solidity": 0.99925945654504, "top": 720, "right": 2035, "bottom": 3125, "left": 425}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721943f.jpg"} -{"rects": [{"solidity": 0.9992600897585437, "top": 380, "right": 3250, "bottom": 1995, "left": 840}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700270f.jpg"} -{"rects": [{"solidity": 0.9992604949524481, "top": 500, "right": 2945, "bottom": 3450, "left": 965}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714621f.jpg"} -{"rects": [{"solidity": 0.9992629011972689, "top": 455, "right": 5135, "bottom": 3650, "left": 1145}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718966f.jpg"} -{"rects": [{"solidity": 0.9992632485653785, "top": 430, "right": 5240, "bottom": 3600, "left": 1270}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731918f.jpg"} -{"rects": [{"solidity": 0.9992663219340907, "top": 770, "right": 3780, "bottom": 3185, "left": 2155}, {"solidity": 0.999803431885926, "top": 765, "right": 1930, "bottom": 3180, "left": 315}, {"solidity": 0.9980678752492539, "top": 770, "right": 5615, "bottom": 3180, "left": 4010}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709405f.jpg"} -{"rects": [{"solidity": 0.9992663674422528, "top": 590, "right": 4825, "bottom": 3600, "left": 1070}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721319f.jpg"} -{"rects": [{"solidity": 0.9992668768955751, "top": 780, "right": 1980, "bottom": 3165, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722673f.jpg"} -{"rects": [{"solidity": 0.9992669266633434, "top": 790, "right": 2055, "bottom": 3195, "left": 450}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732316f.jpg"} -{"rects": [{"solidity": 0.9992675723343475, "top": 1165, "right": 3600, "bottom": 5265, "left": 375}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/713187f.jpg"} -{"rects": [{"solidity": 0.9992676240338081, "top": 840, "right": 3870, "bottom": 3230, "left": 2275}, {"solidity": 0.9964522679316159, "top": 845, "right": 5710, "bottom": 3235, "left": 4120}, {"solidity": 0.9963259037172619, "top": 845, "right": 2020, "bottom": 3225, "left": 425}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731998f.jpg"} -{"rects": [{"solidity": 0.999269770001352, "top": 1005, "right": 3635, "bottom": 5040, "left": 370}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723852f.jpg"} -{"rects": [{"solidity": 0.9992701586101734, "top": 2060, "right": 2910, "bottom": 3675, "left": 520}, {"solidity": 0.9995295470583623, "top": 345, "right": 2910, "bottom": 1955, "left": 520}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701573f.jpg"} -{"rects": [{"solidity": 0.9992712278851225, "top": 775, "right": 2030, "bottom": 3195, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732562f.jpg"} -{"rects": [{"solidity": 0.99927143411935, "top": 395, "right": 3200, "bottom": 2010, "left": 775}, {"solidity": 0.9966405124099279, "top": 2270, "right": 3215, "bottom": 3900, "left": 790}, {"solidity": 0.9962103786726031, "top": 4155, "right": 3200, "bottom": 5780, "left": 780}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732130f.jpg"} -{"rects": [{"solidity": 0.9992730632790339, "top": 425, "right": 3210, "bottom": 2030, "left": 785}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722647f.jpg"} -{"rects": [{"solidity": 0.9992757452972381, "top": 415, "right": 3290, "bottom": 2015, "left": 880}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703917f.jpg"} -{"rects": [{"solidity": 0.9992795850117113, "top": 775, "right": 2585, "bottom": 3710, "left": 245}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507535.jpg"} -{"rects": [{"solidity": 0.9992795854547334, "top": 2140, "right": 3165, "bottom": 3755, "left": 755}, {"solidity": 0.9977654357075579, "top": 300, "right": 3190, "bottom": 1905, "left": 775}, {"solidity": 0.9989392164519068, "top": 4015, "right": 3160, "bottom": 5625, "left": 760}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711900f.jpg"} -{"rects": [{"solidity": 0.999281008540057, "top": 2165, "right": 3175, "bottom": 3785, "left": 790}, {"solidity": 0.9993692872292101, "top": 4045, "right": 3155, "bottom": 5665, "left": 780}, {"solidity": 0.9970556350690567, "top": 295, "right": 3180, "bottom": 1915, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724653f.jpg"} -{"rects": [{"solidity": 0.9992817827247811, "top": 410, "right": 3100, "bottom": 2020, "left": 675}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/729518f.jpg"} -{"rects": [{"solidity": 0.9992829434203598, "top": 2185, "right": 3235, "bottom": 3800, "left": 825}, {"solidity": 0.9968400080212693, "top": 4000, "right": 3230, "bottom": 5615, "left": 820}, {"solidity": 0.9988570686408208, "top": 375, "right": 3210, "bottom": 1985, "left": 805}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731554f.jpg"} -{"rects": [{"solidity": 0.9992845459843708, "top": 450, "right": 4915, "bottom": 3520, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711455f.jpg"} -{"rects": [{"solidity": 0.9992859006577953, "top": 2175, "right": 2840, "bottom": 3670, "left": 1000}, {"solidity": 0.9963725508791229, "top": 560, "right": 2835, "bottom": 2010, "left": 990}, {"solidity": 0.9968781224751277, "top": 2180, "right": 5055, "bottom": 3620, "left": 3215}, {"solidity": 0.9892024613960322, "top": 585, "right": 5035, "bottom": 1955, "left": 3185}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732956f.jpg"} -{"rects": [{"solidity": 0.9992863209359852, "top": 855, "right": 2025, "bottom": 3265, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706308f.jpg"} -{"rects": [{"solidity": 0.99928910330187, "top": 490, "right": 5015, "bottom": 3300, "left": 1370}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724683f.jpg"} -{"rects": [{"solidity": 0.9992891766438861, "top": 350, "right": 2020, "bottom": 1335, "left": 525}, {"solidity": 0.9957970959452104, "top": 1550, "right": 1850, "bottom": 2440, "left": 725}], "shape": {"h": 3945, "w": 2560}, "file": "/usr/local/google/home/danvk/milstein/727149f.jpg"} -{"rects": [{"solidity": 0.999291451686667, "top": 835, "right": 2085, "bottom": 3245, "left": 465}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724398f.jpg"} -{"rects": [{"solidity": 0.9992921606795258, "top": 2095, "right": 3105, "bottom": 3720, "left": 700}, {"solidity": 0.9988265143284535, "top": 420, "right": 3105, "bottom": 2040, "left": 695}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702313f.jpg"} -{"rects": [{"solidity": 0.9992926822080104, "top": 795, "right": 2090, "bottom": 3195, "left": 490}], "shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704544f.jpg"} -{"rects": [{"solidity": 0.9992934839303157, "top": 535, "right": 5120, "bottom": 3765, "left": 1025}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722531f.jpg"} -{"rects": [{"solidity": 0.9992936365727765, "top": 245, "right": 3145, "bottom": 1855, "left": 735}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720902f.jpg"} -{"rects": [{"solidity": 0.9992936784218758, "top": 830, "right": 2910, "bottom": 4135, "left": 275}], "shape": {"h": 5080, "w": 3220}, "file": "/usr/local/google/home/danvk/milstein/732269f.jpg"} -{"rects": [{"solidity": 0.999298508096614, "top": 740, "right": 4805, "bottom": 3375, "left": 1330}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700592f.jpg"} -{"rects": [{"solidity": 0.9993003204983524, "top": 415, "right": 3150, "bottom": 2030, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701233f.jpg"} -{"rects": [{"solidity": 0.9993014525869104, "top": 375, "right": 3140, "bottom": 1980, "left": 740}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701916f.jpg"} -{"rects": [{"solidity": 0.9993017707868656, "top": 865, "right": 2060, "bottom": 3280, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719050f.jpg"} -{"rects": [{"solidity": 0.9993027855475927, "top": 565, "right": 2640, "bottom": 3600, "left": 640}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716692f.jpg"} -{"rects": [{"solidity": 0.9993027891706464, "top": 785, "right": 3855, "bottom": 3185, "left": 2255}, {"solidity": 0.9961549402152057, "top": 780, "right": 2030, "bottom": 3185, "left": 425}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721622f.jpg"} -{"rects": [{"solidity": 0.9993042380279014, "top": 440, "right": 3180, "bottom": 2060, "left": 770}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715050f.jpg"} -{"rects": [{"solidity": 0.9993045426885221, "top": 440, "right": 3125, "bottom": 2060, "left": 715}, {"solidity": 0.9964938014269263, "top": 2270, "right": 3120, "bottom": 3895, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713840f.jpg"} -{"rects": [{"solidity": 0.9993048905766537, "top": 655, "right": 2650, "bottom": 3695, "left": 635}, {"solidity": 0.9971515701251421, "top": 685, "right": 5150, "bottom": 3705, "left": 3120}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715177f.jpg"} -{"rects": [{"solidity": 0.9993066608610547, "top": 1335, "right": 3585, "bottom": 5325, "left": 380}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723654f.jpg"} -{"rects": [{"solidity": 0.9993078952433351, "top": 380, "right": 4895, "bottom": 3595, "left": 2885}, {"solidity": 0.9991048618288901, "top": 410, "right": 2540, "bottom": 3615, "left": 530}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733098f.jpg"} -{"rects": [{"solidity": 0.9993079452959327, "top": 460, "right": 3280, "bottom": 2090, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706656f.jpg"} -{"rects": [{"solidity": 0.9993080990740794, "top": 1070, "right": 3550, "bottom": 5090, "left": 295}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720963f.jpg"} -{"rects": [{"solidity": 0.9993084084151079, "top": 755, "right": 2015, "bottom": 3190, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725862f.jpg"} -{"rects": [{"solidity": 0.9993090149445605, "top": 415, "right": 3135, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/701648f.jpg"} -{"rects": [{"solidity": 0.9993098959610925, "top": 755, "right": 2015, "bottom": 3165, "left": 420}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720894f.jpg"} -{"rects": [{"solidity": 0.9993108156219481, "top": 430, "right": 3170, "bottom": 2030, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715513f.jpg"} -{"rects": [{"solidity": 0.999310880044825, "top": 530, "right": 3150, "bottom": 2150, "left": 740}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705921f.jpg"} -{"rects": [{"solidity": 0.9993109911481632, "top": 585, "right": 4800, "bottom": 3840, "left": 700}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701752f.jpg"} -{"rects": [{"solidity": 0.9993125461933455, "top": 390, "right": 3035, "bottom": 2010, "left": 630}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702263f.jpg"} -{"rects": [{"solidity": 0.9993131881162571, "top": 330, "right": 5090, "bottom": 3595, "left": 1040}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705668f.jpg"} -{"rects": [{"solidity": 0.999314778144907, "top": 1660, "right": 2355, "bottom": 2875, "left": 570}, {"solidity": 0.998297222711526, "top": 260, "right": 2365, "bottom": 1475, "left": 595}], "shape": {"h": 4590, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/707090f.jpg"} -{"rects": [{"solidity": 0.9993148608963861, "top": 420, "right": 3545, "bottom": 2230, "left": 820}, {"solidity": 0.9983329091371851, "top": 2550, "right": 3550, "bottom": 4365, "left": 830}], "shape": {"h": 6850, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711420f.jpg"} -{"rects": [{"solidity": 0.9993163938944265, "top": 415, "right": 5275, "bottom": 3640, "left": 1310}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723670f.jpg"} -{"rects": [{"solidity": 0.999317248228231, "top": 3595, "right": 3710, "bottom": 5765, "left": 635}, {"solidity": 0.9958540770117852, "top": 765, "right": 3705, "bottom": 2955, "left": 615}], "shape": {"h": 6860, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/710260f.jpg"} -{"rects": [{"solidity": 0.999317423157378, "top": 365, "right": 5080, "bottom": 3615, "left": 1055}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732594f.jpg"} -{"rects": [{"solidity": 0.9993174429826789, "top": 2260, "right": 3140, "bottom": 3890, "left": 710}, {"solidity": 0.9984748299276498, "top": 4120, "right": 3135, "bottom": 5750, "left": 705}, {"solidity": 0.9966891008261299, "top": 430, "right": 3145, "bottom": 2065, "left": 715}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703041f.jpg"} -{"rects": [{"solidity": 0.9993175329002872, "top": 330, "right": 5150, "bottom": 3575, "left": 1050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706057f.jpg"} -{"rects": [{"solidity": 0.999318161323031, "top": 635, "right": 4110, "bottom": 3455, "left": 2085}, {"solidity": 0.9976040365892039, "top": 850, "right": 1905, "bottom": 3225, "left": 340}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732370f.jpg"} -{"rects": [{"solidity": 0.9993188142226449, "top": 815, "right": 3830, "bottom": 3230, "left": 2210}, {"solidity": 0.9980626913092332, "top": 820, "right": 5735, "bottom": 3235, "left": 4120}, {"solidity": 0.996361323483831, "top": 820, "right": 1950, "bottom": 3230, "left": 320}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714612f.jpg"} -{"rects": [{"solidity": 0.9993195637904141, "top": 445, "right": 5070, "bottom": 3695, "left": 1055}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707671f.jpg"} -{"rects": [{"solidity": 0.9993217583612415, "top": 995, "right": 2515, "bottom": 3670, "left": 735}], "shape": {"h": 4420, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708878f.jpg"} -{"rects": [{"solidity": 0.9993232311482864, "top": 515, "right": 5105, "bottom": 3760, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701791f.jpg"} -{"rects": [{"solidity": 0.9993236432861698, "top": 340, "right": 3895, "bottom": 2775, "left": 770}], "shape": {"h": 3000, "w": 4855}, "file": "/usr/local/google/home/danvk/milstein/1508639.jpg"} -{"rects": [{"solidity": 0.9993252339992096, "top": 325, "right": 2895, "bottom": 1945, "left": 480}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719318f.jpg"} -{"rects": [{"solidity": 0.9993272092120585, "top": 410, "right": 3140, "bottom": 2020, "left": 725}, {"solidity": 0.9978821655019656, "top": 2260, "right": 3150, "bottom": 3870, "left": 735}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/728443f.jpg"} -{"rects": [{"solidity": 0.9993279550453028, "top": 360, "right": 5200, "bottom": 3610, "left": 1195}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719108f.jpg"} -{"rects": [{"solidity": 0.9993283713004035, "top": 760, "right": 2695, "bottom": 2155, "left": 895}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728244f.jpg"} -{"rects": [{"solidity": 0.9993288140143634, "top": 2170, "right": 3175, "bottom": 3795, "left": 755}, {"solidity": 0.9988187696536452, "top": 305, "right": 3180, "bottom": 1920, "left": 760}, {"solidity": 0.9977644728607651, "top": 4065, "right": 3150, "bottom": 5685, "left": 740}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723291f.jpg"} -{"rects": [{"solidity": 0.99933171994524, "top": 830, "right": 5685, "bottom": 3245, "left": 4080}, {"solidity": 0.9965867215379489, "top": 835, "right": 3875, "bottom": 3255, "left": 2265}, {"solidity": 0.9971242468653314, "top": 840, "right": 2045, "bottom": 3245, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734472f.jpg"} -{"rects": [{"solidity": 0.9993323285850876, "top": 430, "right": 3135, "bottom": 2040, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/714288f.jpg"} -{"rects": [{"solidity": 0.9993330474965462, "top": 385, "right": 3170, "bottom": 1950, "left": 810}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/723737f.jpg"} -{"rects": [{"solidity": 0.9993335179306214, "top": 360, "right": 2715, "bottom": 2770, "left": 1095}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704978f.jpg"} -{"rects": [{"solidity": 0.9993339261175329, "top": 2255, "right": 3080, "bottom": 3865, "left": 665}, {"solidity": 0.9979163368879441, "top": 405, "right": 3070, "bottom": 2020, "left": 655}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729943f.jpg"} -{"rects": [{"solidity": 0.9993339738412484, "top": 1025, "right": 3555, "bottom": 5040, "left": 290}], "shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/717156f.jpg"} -{"rects": [{"solidity": 0.9993341404358353, "top": 2185, "right": 3980, "bottom": 3650, "left": 2135}, {"solidity": 0.9973446802122379, "top": 2190, "right": 5930, "bottom": 3635, "left": 4065}, {"solidity": 0.9967407884639071, "top": 2205, "right": 2070, "bottom": 3655, "left": 225}, {"solidity": 0.9990765334780415, "top": 595, "right": 2080, "bottom": 2020, "left": 225}, {"solidity": 0.9968497499038091, "top": 605, "right": 4005, "bottom": 2015, "left": 2145}, {"solidity": 0.9948879218568324, "top": 630, "right": 5925, "bottom": 2030, "left": 4075}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732852f.jpg"} -{"rects": [{"solidity": 0.9993345785279691, "top": 815, "right": 2085, "bottom": 3215, "left": 495}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713284f.jpg"} -{"rects": [{"solidity": 0.9993346811129789, "top": 435, "right": 3075, "bottom": 2055, "left": 660}, {"solidity": 0.9965487210915073, "top": 2305, "right": 3085, "bottom": 3935, "left": 675}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719561f.jpg"} -{"rects": [{"solidity": 0.9993348200800787, "top": 770, "right": 3885, "bottom": 3185, "left": 2265}, {"solidity": 0.9967936887984518, "top": 775, "right": 5735, "bottom": 3195, "left": 4105}, {"solidity": 0.9991327029039944, "top": 765, "right": 2025, "bottom": 3180, "left": 410}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722907f.jpg"} -{"rects": [{"solidity": 0.9993365702442948, "top": 395, "right": 5005, "bottom": 3620, "left": 1030}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727310f.jpg"} -{"rects": [{"solidity": 0.9993371781333766, "top": 770, "right": 3955, "bottom": 3175, "left": 2345}, {"solidity": 0.9969248064523508, "top": 775, "right": 2070, "bottom": 3175, "left": 465}, {"solidity": 0.9957469956975422, "top": 780, "right": 5770, "bottom": 3170, "left": 4170}], "shape": {"h": 3740, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719282f.jpg"} -{"rects": [{"solidity": 0.9993378675477956, "top": 545, "right": 3070, "bottom": 2165, "left": 655}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712107f.jpg"} -{"rects": [{"solidity": 0.9993379507027907, "top": 960, "right": 1900, "bottom": 2930, "left": 270}, {"solidity": 0.9957556149252024, "top": 3250, "right": 1865, "bottom": 5215, "left": 290}, {"solidity": 0.9962044597597822, "top": 995, "right": 3555, "bottom": 2905, "left": 1960}, {"solidity": 0.996672589513209, "top": 3275, "right": 3545, "bottom": 5180, "left": 1960}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719580f.jpg"} -{"rects": [{"solidity": 0.9993387636825677, "top": 445, "right": 3160, "bottom": 2055, "left": 750}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700581f.jpg"} -{"rects": [{"solidity": 0.9993416743197027, "top": 420, "right": 3175, "bottom": 2015, "left": 780}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718808f.jpg"} -{"rects": [{"solidity": 0.999341949207661, "top": 1180, "right": 3140, "bottom": 2130, "left": 1405}], "shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508657.jpg"} -{"rects": [{"solidity": 0.9993424319742452, "top": 950, "right": 2730, "bottom": 3960, "left": 295}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517207.jpg"} -{"rects": [{"solidity": 0.9993427157067917, "top": 450, "right": 5100, "bottom": 3705, "left": 1085}], "shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728051f.jpg"} -{"rects": [{"solidity": 0.9993428740681275, "top": 315, "right": 3205, "bottom": 1930, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702520f.jpg"} -{"rects": [{"solidity": 0.9993430522949696, "top": 2050, "right": 3320, "bottom": 3660, "left": 895}, {"solidity": 0.9941828092488937, "top": 410, "right": 3060, "bottom": 1855, "left": 1250}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/704331f.jpg"} -{"rects": [{"solidity": 0.9993435747127424, "top": 445, "right": 5085, "bottom": 3715, "left": 1065}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725394f.jpg"} -{"rects": [{"solidity": 0.9993436155896245, "top": 775, "right": 2025, "bottom": 3165, "left": 430}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714891f.jpg"} -{"rects": [{"solidity": 0.9993449342848693, "top": 505, "right": 5060, "bottom": 3780, "left": 1020}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701762f.jpg"} -{"rects": [{"solidity": 0.9993456547044475, "top": 435, "right": 5055, "bottom": 3630, "left": 1065}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721486f.jpg"} -{"rects": [{"solidity": 0.9993524685914728, "top": 735, "right": 1960, "bottom": 3135, "left": 350}, {"solidity": 0.9962026223400444, "top": 740, "right": 3835, "bottom": 3150, "left": 2225}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710984f.jpg"} -{"rects": [{"solidity": 0.9993527549775074, "top": 780, "right": 3875, "bottom": 3205, "left": 2265}, {"solidity": 0.9978429513841868, "top": 785, "right": 2025, "bottom": 3215, "left": 415}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702459f.jpg"} -{"rects": [{"solidity": 0.9993535102775704, "top": 820, "right": 5415, "bottom": 3220, "left": 3795}, {"solidity": 0.9956918818289033, "top": 810, "right": 3530, "bottom": 3205, "left": 1910}, {"solidity": 0.9955768207332135, "top": 1095, "right": 1665, "bottom": 2900, "left": 275}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724094f.jpg"} -{"rects": [{"solidity": 0.9993538005802999, "top": 800, "right": 3905, "bottom": 3225, "left": 2285}, {"solidity": 0.9972500200787086, "top": 820, "right": 2040, "bottom": 3245, "left": 420}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706618f.jpg"} -{"rects": [{"solidity": 0.9993540923551528, "top": 660, "right": 1855, "bottom": 3075, "left": 235}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721701f.jpg"} -{"rects": [{"solidity": 0.9993548217467544, "top": 595, "right": 4175, "bottom": 3665, "left": 2150}, {"solidity": 0.9969464364849084, "top": 765, "right": 1975, "bottom": 3185, "left": 365}, {"solidity": 0.9971609599093126, "top": 1060, "right": 5725, "bottom": 2880, "left": 4355}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722520f.jpg"} -{"rects": [{"solidity": 0.9993561347481199, "top": 405, "right": 3125, "bottom": 2015, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/729806f.jpg"} -{"rects": [{"solidity": 0.9993562593053543, "top": 445, "right": 3260, "bottom": 2035, "left": 865}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710550f.jpg"} -{"rects": [{"solidity": 0.9993565613014688, "top": 560, "right": 3405, "bottom": 2380, "left": 680}], "shape": {"h": 4410, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711637f.jpg"} -{"rects": [{"solidity": 0.9993582058432589, "top": 795, "right": 3815, "bottom": 3200, "left": 2210}, {"solidity": 0.9993892142420867, "top": 795, "right": 1955, "bottom": 3200, "left": 355}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709419f.jpg"} -{"rects": [{"solidity": 0.9993585900584683, "top": 295, "right": 3195, "bottom": 1920, "left": 795}], "shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/714414f.jpg"} -{"rects": [{"solidity": 0.999359173528041, "top": 420, "right": 3080, "bottom": 2035, "left": 675}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710825f.jpg"} -{"rects": [{"solidity": 0.9993598137640041, "top": 830, "right": 3905, "bottom": 3245, "left": 2295}, {"solidity": 0.9967465803413009, "top": 805, "right": 2055, "bottom": 3220, "left": 445}, {"solidity": 0.9953838796880947, "top": 1070, "right": 5540, "bottom": 2890, "left": 4115}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717194f.jpg"} -{"rects": [{"solidity": 0.9993605218141997, "top": 345, "right": 3470, "bottom": 1970, "left": 1050}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706601f.jpg"} -{"rects": [{"solidity": 0.9993623989257387, "top": 2110, "right": 3295, "bottom": 3720, "left": 870}, {"solidity": 0.995889152667361, "top": 4000, "right": 3285, "bottom": 5610, "left": 860}, {"solidity": 0.99403544818919, "top": 460, "right": 3150, "bottom": 1865, "left": 1330}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726528f.jpg"} -{"rects": [{"solidity": 0.9993626513702996, "top": 1060, "right": 3475, "bottom": 5075, "left": 290}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718960f.jpg"} -{"rects": [{"solidity": 0.9993646717676253, "top": 410, "right": 5095, "bottom": 3645, "left": 1005}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715140f.jpg"} -{"rects": [{"solidity": 0.9993664073031256, "top": 835, "right": 2070, "bottom": 3250, "left": 460}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731308f.jpg"} -{"rects": [{"solidity": 0.9993674023060468, "top": 820, "right": 2050, "bottom": 3230, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723965f.jpg"} -{"rects": [{"solidity": 0.9993680617084484, "top": 820, "right": 2070, "bottom": 3225, "left": 465}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724440f.jpg"} -{"rects": [{"solidity": 0.9993693974021159, "top": 1085, "right": 2600, "bottom": 4225, "left": 185}], "shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508267.jpg"} -{"rects": [{"solidity": 0.9993702629152329, "top": 780, "right": 1925, "bottom": 3195, "left": 305}, {"solidity": 0.9980483454557791, "top": 800, "right": 5655, "bottom": 3205, "left": 4035}, {"solidity": 0.9974215728405672, "top": 790, "right": 3790, "bottom": 3200, "left": 2170}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713737f.jpg"} -{"rects": [{"solidity": 0.999370309613919, "top": 2175, "right": 3170, "bottom": 3800, "left": 775}, {"solidity": 0.9987879579868995, "top": 4055, "right": 3160, "bottom": 5670, "left": 775}, {"solidity": 0.9966518222065276, "top": 305, "right": 3185, "bottom": 1930, "left": 805}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704748f.jpg"} -{"rects": [{"solidity": 0.9993703125253426, "top": 345, "right": 5125, "bottom": 3615, "left": 1105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732733f.jpg"} -{"rects": [{"solidity": 0.9993711578180051, "top": 1205, "right": 3660, "bottom": 5195, "left": 425}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733498f.jpg"} -{"rects": [{"solidity": 0.9993719109363131, "top": 335, "right": 3195, "bottom": 1935, "left": 805}], "shape": {"h": 6140, "w": 4070}, "file": "/usr/local/google/home/danvk/milstein/700859f.jpg"} -{"rects": [{"solidity": 0.999373189884892, "top": 400, "right": 3270, "bottom": 2020, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705059f.jpg"} -{"rects": [{"solidity": 0.9993740522053367, "top": 805, "right": 3840, "bottom": 3225, "left": 2230}, {"solidity": 0.994941908188658, "top": 810, "right": 5660, "bottom": 3225, "left": 4045}, {"solidity": 0.9952263471562856, "top": 815, "right": 2030, "bottom": 3220, "left": 430}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733743f.jpg"} -{"rects": [{"solidity": 0.9993750294910968, "top": 910, "right": 3620, "bottom": 4900, "left": 355}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710083f.jpg"} -{"rects": [{"solidity": 0.9993758462085057, "top": 380, "right": 3350, "bottom": 2000, "left": 925}, {"solidity": 0.9953078216907922, "top": 2165, "right": 3345, "bottom": 3790, "left": 930}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729976f.jpg"} -{"rects": [{"solidity": 0.9993758899569172, "top": 490, "right": 4925, "bottom": 3740, "left": 905}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707586f.jpg"} -{"rects": [{"solidity": 0.9993759750390016, "top": 825, "right": 2060, "bottom": 3245, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702416f.jpg"} -{"rects": [{"solidity": 0.9993765906578576, "top": 2280, "right": 3185, "bottom": 3890, "left": 755}, {"solidity": 0.9974416641426997, "top": 395, "right": 3175, "bottom": 2010, "left": 755}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718767f.jpg"} -{"rects": [{"solidity": 0.9993766542323872, "top": 2240, "right": 3160, "bottom": 3845, "left": 760}, {"solidity": 0.9986626809314034, "top": 430, "right": 3165, "bottom": 2030, "left": 765}, {"solidity": 0.9956121931306968, "top": 4080, "right": 3145, "bottom": 5660, "left": 770}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721638f.jpg"} -{"rects": [{"solidity": 0.9993792835898099, "top": 770, "right": 2015, "bottom": 3185, "left": 405}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728775f.jpg"} -{"rects": [{"solidity": 0.9993793162024606, "top": 755, "right": 2035, "bottom": 3160, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723516f.jpg"} -{"rects": [{"solidity": 0.999380096167092, "top": 805, "right": 2000, "bottom": 3215, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700303f.jpg"} -{"rects": [{"solidity": 0.9993806603911243, "top": 810, "right": 2055, "bottom": 3225, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717347f.jpg"} -{"rects": [{"solidity": 0.9993807900695649, "top": 350, "right": 5075, "bottom": 3595, "left": 1055}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733552f.jpg"} -{"rects": [{"solidity": 0.9993841968921339, "top": 455, "right": 4800, "bottom": 3310, "left": 1175}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732279f.jpg"} -{"rects": [{"solidity": 0.9993848716880787, "top": 3890, "right": 3305, "bottom": 5515, "left": 890}, {"solidity": 0.9971315411622237, "top": 2170, "right": 3330, "bottom": 3795, "left": 915}, {"solidity": 0.9989899283268631, "top": 445, "right": 3360, "bottom": 2065, "left": 955}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706570f.jpg"} -{"rects": [{"solidity": 0.999386165709682, "top": 2265, "right": 3070, "bottom": 3890, "left": 650}, {"solidity": 0.9961625498007968, "top": 395, "right": 3095, "bottom": 2045, "left": 660}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719435f.jpg"} -{"rects": [{"solidity": 0.9993881360754191, "top": 1295, "right": 3555, "bottom": 5275, "left": 320}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724543f.jpg"} -{"rects": [{"solidity": 0.9993889128875207, "top": 495, "right": 5090, "bottom": 3760, "left": 1080}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720612f.jpg"} -{"rects": [{"solidity": 0.9993951055026095, "top": 2320, "right": 3115, "bottom": 3935, "left": 695}, {"solidity": 0.9962623239664711, "top": 415, "right": 3115, "bottom": 2055, "left": 710}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712286f.jpg"} -{"rects": [{"solidity": 0.9993982498031508, "top": 910, "right": 3975, "bottom": 3335, "left": 2355}, {"solidity": 0.9964221421417553, "top": 925, "right": 2095, "bottom": 3335, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724410f.jpg"} -{"rects": [{"solidity": 0.9993987567298253, "top": 2185, "right": 3420, "bottom": 4160, "left": 395}, {"solidity": 0.9973975041044421, "top": 385, "right": 3200, "bottom": 1975, "left": 795}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723395f.jpg"} -{"rects": [{"solidity": 0.9993991297072211, "top": 520, "right": 2550, "bottom": 2930, "left": 935}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713844f.jpg"} -{"rects": [{"solidity": 0.999403632950746, "top": 2255, "right": 3160, "bottom": 3860, "left": 755}, {"solidity": 0.9969695976936181, "top": 410, "right": 3150, "bottom": 2015, "left": 755}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/734573f.jpg"} -{"rects": [{"solidity": 0.9994051833102195, "top": 905, "right": 2000, "bottom": 3320, "left": 390}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702328f.jpg"} -{"rects": [{"solidity": 0.9994054597499591, "top": 820, "right": 5735, "bottom": 3195, "left": 4150}, {"solidity": 0.9996258166299226, "top": 840, "right": 2055, "bottom": 3200, "left": 475}, {"solidity": 0.9975498846903774, "top": 835, "right": 3900, "bottom": 3200, "left": 2345}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712028f.jpg"} -{"rects": [{"solidity": 0.9994063247084463, "top": 300, "right": 5030, "bottom": 3565, "left": 940}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709070f.jpg"} -{"rects": [{"solidity": 0.9994072716554102, "top": 415, "right": 3325, "bottom": 2030, "left": 895}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727928f.jpg"} -{"rects": [{"solidity": 0.9994081309227336, "top": 850, "right": 2015, "bottom": 3265, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729781f.jpg"} -{"rects": [{"solidity": 0.9994081692053944, "top": 895, "right": 1955, "bottom": 3310, "left": 345}, {"solidity": 0.9978589489796907, "top": 885, "right": 3810, "bottom": 3300, "left": 2195}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728447f.jpg"} -{"rects": [{"solidity": 0.9994125122683826, "top": 930, "right": 2595, "bottom": 3925, "left": 190}], "shape": {"h": 4645, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509497.jpg"} -{"rects": [{"solidity": 0.9994130871934342, "top": 600, "right": 3370, "bottom": 2220, "left": 950}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700473f.jpg"} -{"rects": [{"solidity": 0.9994134654065177, "top": 375, "right": 5140, "bottom": 3625, "left": 1140}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719105f.jpg"} -{"rects": [{"solidity": 0.9994138542944835, "top": 780, "right": 3850, "bottom": 3205, "left": 2240}, {"solidity": 0.997154867137026, "top": 810, "right": 2025, "bottom": 3180, "left": 450}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724835f.jpg"} -{"rects": [{"solidity": 0.9994169339052934, "top": 865, "right": 3875, "bottom": 3295, "left": 2260}, {"solidity": 0.9974518332377103, "top": 875, "right": 5715, "bottom": 3310, "left": 4100}, {"solidity": 0.9985452017406082, "top": 865, "right": 2025, "bottom": 3295, "left": 415}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701718f.jpg"} -{"rects": [{"solidity": 0.9994182365173903, "top": 800, "right": 1940, "bottom": 3215, "left": 320}, {"solidity": 0.9970514374644291, "top": 795, "right": 3790, "bottom": 3225, "left": 2175}, {"solidity": 0.9979474548440066, "top": 815, "right": 5660, "bottom": 3220, "left": 4040}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732027f.jpg"} -{"rects": [{"solidity": 0.9994203780818725, "top": 405, "right": 3200, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705449f.jpg"} -{"rects": [{"solidity": 0.9994224520941758, "top": 2280, "right": 3180, "bottom": 3890, "left": 760}, {"solidity": 0.9950662724905535, "top": 460, "right": 3170, "bottom": 2070, "left": 765}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702140f.jpg"} -{"rects": [{"solidity": 0.9994236751693153, "top": 735, "right": 3865, "bottom": 3165, "left": 2240}, {"solidity": 0.9985343410682163, "top": 735, "right": 2030, "bottom": 3150, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710856f.jpg"} -{"rects": [{"solidity": 0.999427227297446, "top": 400, "right": 3140, "bottom": 2015, "left": 720}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700691f.jpg"} -{"rects": [{"solidity": 0.9994290139661871, "top": 755, "right": 2005, "bottom": 3150, "left": 405}], "shape": {"h": 3920, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722642f.jpg"} -{"rects": [{"solidity": 0.9994317733406992, "top": 550, "right": 2990, "bottom": 2185, "left": 555}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707804f.jpg"} -{"rects": [{"solidity": 0.9994321444934148, "top": 425, "right": 3135, "bottom": 2035, "left": 715}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/705849f.jpg"} -{"rects": [{"solidity": 0.9994364165107419, "top": 420, "right": 3325, "bottom": 2040, "left": 915}, {"solidity": 0.9969273526870349, "top": 2280, "right": 3310, "bottom": 3905, "left": 900}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/702486f.jpg"} -{"rects": [{"solidity": 0.9994416274783833, "top": 450, "right": 3155, "bottom": 2060, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734705f.jpg"} -{"rects": [{"solidity": 0.9994447439003007, "top": 2295, "right": 3200, "bottom": 3905, "left": 795}, {"solidity": 0.9944981000633312, "top": 400, "right": 3165, "bottom": 2010, "left": 780}], "shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722009f.jpg"} -{"rects": [{"solidity": 0.9994448166937877, "top": 430, "right": 3285, "bottom": 2055, "left": 860}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706628f.jpg"} -{"rects": [{"solidity": 0.9994458520585154, "top": 385, "right": 3210, "bottom": 2010, "left": 795}, {"solidity": 0.9970196460069339, "top": 2095, "right": 3225, "bottom": 3730, "left": 810}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707676f.jpg"} -{"rects": [{"solidity": 0.9994480286505599, "top": 765, "right": 2000, "bottom": 3170, "left": 390}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721747f.jpg"} -{"rects": [{"solidity": 0.9994511774224576, "top": 560, "right": 2840, "bottom": 1885, "left": 1160}, {"solidity": 0.9957043104210247, "top": 565, "right": 4985, "bottom": 1880, "left": 3335}, {"solidity": 0.9940840461048808, "top": 2215, "right": 2835, "bottom": 3520, "left": 1205}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704110f.jpg"} -{"rects": [{"solidity": 0.9994515521400893, "top": 815, "right": 3895, "bottom": 3215, "left": 2290}, {"solidity": 0.9974305297412922, "top": 805, "right": 2050, "bottom": 3210, "left": 440}, {"solidity": 0.9961078449923984, "top": 810, "right": 5745, "bottom": 3220, "left": 4125}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716856f.jpg"} -{"rects": [{"solidity": 0.9994527633820526, "top": 4020, "right": 3230, "bottom": 5635, "left": 840}, {"solidity": 0.9966554965263588, "top": 290, "right": 3225, "bottom": 1910, "left": 845}, {"solidity": 0.9995659765035462, "top": 2150, "right": 3215, "bottom": 3770, "left": 855}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722824f.jpg"} -{"rects": [{"solidity": 0.9994529378227585, "top": 870, "right": 2070, "bottom": 3240, "left": 460}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702961f.jpg"} -{"rects": [{"solidity": 0.9994555665808201, "top": 620, "right": 4865, "bottom": 3390, "left": 1255}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734427f.jpg"} -{"rects": [{"solidity": 0.9994576798907704, "top": 2080, "right": 2895, "bottom": 3705, "left": 470}, {"solidity": 0.996811197945848, "top": 2075, "right": 5630, "bottom": 3710, "left": 3220}, {"solidity": 0.9972928122864673, "top": 340, "right": 5635, "bottom": 1960, "left": 3240}, {"solidity": 0.997164297024315, "top": 340, "right": 2890, "bottom": 1950, "left": 500}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709403f.jpg"} -{"rects": [{"solidity": 0.9994594260146346, "top": 800, "right": 2110, "bottom": 3205, "left": 505}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709116f.jpg"} -{"rects": [{"solidity": 0.9994594768508092, "top": 470, "right": 3195, "bottom": 2085, "left": 775}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704023f.jpg"} -{"rects": [{"solidity": 0.9994611999846057, "top": 400, "right": 3220, "bottom": 2020, "left": 800}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705020f.jpg"} -{"rects": [{"solidity": 0.9994616674605712, "top": 740, "right": 2175, "bottom": 3140, "left": 570}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704967f.jpg"} -{"rects": [{"solidity": 0.9994644625752898, "top": 1870, "right": 3200, "bottom": 3480, "left": 780}, {"solidity": 0.9953375684021452, "top": 3535, "right": 2805, "bottom": 5960, "left": 1180}, {"solidity": 0.9960751058389299, "top": 170, "right": 3190, "bottom": 1790, "left": 795}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/734833f.jpg"} -{"rects": [{"solidity": 0.9994645633947322, "top": 420, "right": 3195, "bottom": 2040, "left": 775}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717839f.jpg"} -{"rects": [{"solidity": 0.9994645827888863, "top": 725, "right": 3855, "bottom": 3160, "left": 2235}, {"solidity": 0.9973552199859245, "top": 755, "right": 2035, "bottom": 3175, "left": 415}, {"solidity": 0.9962784109200953, "top": 770, "right": 5700, "bottom": 3205, "left": 4085}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717488f.jpg"} -{"rects": [{"solidity": 0.9994654121672191, "top": 745, "right": 2065, "bottom": 3155, "left": 455}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709683f.jpg"} -{"rects": [{"solidity": 0.9994665920762903, "top": 425, "right": 3230, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/706549f.jpg"} -{"rects": [{"solidity": 0.9994680816559526, "top": 895, "right": 2015, "bottom": 3310, "left": 410}, {"solidity": 0.9971846938476611, "top": 905, "right": 3890, "bottom": 3320, "left": 2285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729775f.jpg"} -{"rects": [{"solidity": 0.9994712204426826, "top": 895, "right": 2075, "bottom": 3295, "left": 460}, {"solidity": 0.9955190634907731, "top": 885, "right": 3940, "bottom": 3295, "left": 2330}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719024f.jpg"} -{"rects": [{"solidity": 0.9994732641403686, "top": 500, "right": 2905, "bottom": 3730, "left": 485}, {"solidity": 0.99853086400661, "top": 720, "right": 5315, "bottom": 3455, "left": 3235}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716964f.jpg"} -{"rects": [{"solidity": 0.9994738147425714, "top": 770, "right": 2050, "bottom": 3160, "left": 480}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714509f.jpg"} -{"rects": [{"solidity": 0.9994757595787842, "top": 3405, "right": 3180, "bottom": 5010, "left": 775}, {"solidity": 0.9960420278843843, "top": 845, "right": 3150, "bottom": 2460, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730986f.jpg"} -{"rects": [{"solidity": 0.9994772147307819, "top": 470, "right": 5710, "bottom": 2080, "left": 3320}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701924f.jpg"} -{"rects": [{"solidity": 0.9994773063855736, "top": 375, "right": 3175, "bottom": 1985, "left": 755}, {"solidity": 0.9949134412476611, "top": 2225, "right": 3165, "bottom": 3845, "left": 740}, {"solidity": 0.9949264150264474, "top": 4130, "right": 2870, "bottom": 5485, "left": 1055}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/727323f.jpg"} -{"rects": [{"solidity": 0.9994783772611854, "top": 2060, "right": 2605, "bottom": 3465, "left": 785}, {"solidity": 0.9953847014033964, "top": 650, "right": 2610, "bottom": 2050, "left": 825}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705940f.jpg"} -{"rects": [{"solidity": 0.9994800383471719, "top": 760, "right": 5735, "bottom": 3170, "left": 4130}, {"solidity": 0.9932670593138474, "top": 780, "right": 2025, "bottom": 3210, "left": 405}, {"solidity": 0.9961987571984613, "top": 765, "right": 3860, "bottom": 3175, "left": 2250}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731162f.jpg"} -{"rects": [{"solidity": 0.9994804255992048, "top": 320, "right": 3165, "bottom": 1940, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706626f.jpg"} -{"rects": [{"solidity": 0.9994837907075915, "top": 500, "right": 3425, "bottom": 2120, "left": 1005}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701100f.jpg"} -{"rects": [{"solidity": 0.9994838479454281, "top": 2120, "right": 3240, "bottom": 3750, "left": 820}, {"solidity": 0.9966721647358994, "top": 280, "right": 3200, "bottom": 1915, "left": 790}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707669f.jpg"} -{"rects": [{"solidity": 0.999485318633084, "top": 2190, "right": 3180, "bottom": 3795, "left": 760}, {"solidity": 0.9989355867740166, "top": 405, "right": 3175, "bottom": 2010, "left": 760}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/704639f.jpg"} -{"rects": [{"solidity": 0.9994856494003239, "top": 510, "right": 4060, "bottom": 2550, "left": 1235}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700608f.jpg"} -{"rects": [{"solidity": 0.9994858960928104, "top": 465, "right": 3165, "bottom": 2075, "left": 750}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715302f.jpg"} -{"rects": [{"solidity": 0.9994862302835137, "top": 1260, "right": 3180, "bottom": 5245, "left": 435}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718171f.jpg"} -{"rects": [{"solidity": 0.9994871145649725, "top": 745, "right": 3910, "bottom": 3150, "left": 2300}, {"solidity": 0.9971440801530291, "top": 760, "right": 2050, "bottom": 3145, "left": 465}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713237f.jpg"} -{"rects": [{"solidity": 0.9994872005251066, "top": 805, "right": 2060, "bottom": 3155, "left": 495}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721021f.jpg"} -{"rects": [{"solidity": 0.9994901100592627, "top": 2215, "right": 3200, "bottom": 3835, "left": 780}, {"solidity": 0.9962420675718793, "top": 4060, "right": 3205, "bottom": 5680, "left": 785}, {"solidity": 0.9969992157777735, "top": 380, "right": 3200, "bottom": 1990, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703073f.jpg"} -{"rects": [{"solidity": 0.9994901482442383, "top": 450, "right": 3170, "bottom": 2060, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730438f.jpg"} -{"rects": [{"solidity": 0.9994904136088778, "top": 960, "right": 2035, "bottom": 3365, "left": 425}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700099f.jpg"} -{"rects": [{"solidity": 0.9994905554971281, "top": 1335, "right": 3585, "bottom": 5335, "left": 335}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/701206f.jpg"} -{"rects": [{"solidity": 0.9994946695791087, "top": 2130, "right": 3175, "bottom": 3740, "left": 780}, {"solidity": 0.9953373025700973, "top": 370, "right": 3165, "bottom": 1965, "left": 770}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734261f.jpg"} -{"rects": [{"solidity": 0.9994996861088007, "top": 870, "right": 1990, "bottom": 3305, "left": 370}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702033f.jpg"} -{"rects": [{"solidity": 0.9995008935615269, "top": 855, "right": 2120, "bottom": 3280, "left": 510}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702052f.jpg"} -{"rects": [{"solidity": 0.9995047181263454, "top": 785, "right": 2045, "bottom": 3190, "left": 430}, {"solidity": 0.9978368265661083, "top": 785, "right": 3860, "bottom": 3200, "left": 2255}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712602f.jpg"} -{"rects": [{"solidity": 0.999505534819919, "top": 755, "right": 3875, "bottom": 3180, "left": 2250}, {"solidity": 0.9961595496677419, "top": 765, "right": 2005, "bottom": 3165, "left": 405}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728045f.jpg"} -{"rects": [{"solidity": 0.9995093373109722, "top": 415, "right": 3145, "bottom": 2010, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/702364f.jpg"} -{"rects": [{"solidity": 0.9995105647181561, "top": 445, "right": 3080, "bottom": 2065, "left": 670}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/720213f.jpg"} -{"rects": [{"solidity": 0.9995124424052411, "top": 480, "right": 2870, "bottom": 2095, "left": 460}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702369f.jpg"} -{"rects": [{"solidity": 0.9995124877776355, "top": 1280, "right": 3660, "bottom": 5375, "left": 335}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/723663f.jpg"} -{"rects": [{"solidity": 0.999513551744333, "top": 315, "right": 3205, "bottom": 1935, "left": 780}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702693f.jpg"} -{"rects": [{"solidity": 0.9995148802401019, "top": 2270, "right": 3160, "bottom": 3880, "left": 745}, {"solidity": 0.9963148646688054, "top": 425, "right": 3185, "bottom": 2045, "left": 760}, {"solidity": 0.9976960314789407, "top": 4135, "right": 3170, "bottom": 5745, "left": 755}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733993f.jpg"} -{"rects": [{"solidity": 0.9995165277483335, "top": 460, "right": 5130, "bottom": 3680, "left": 1070}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731264f.jpg"} -{"rects": [{"solidity": 0.9995168216463902, "top": 560, "right": 3395, "bottom": 2180, "left": 970}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701306f.jpg"} -{"rects": [{"solidity": 0.9995201782747027, "top": 765, "right": 2055, "bottom": 3190, "left": 445}, {"solidity": 0.9975098702035972, "top": 770, "right": 3900, "bottom": 3190, "left": 2285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723236f.jpg"} -{"rects": [{"solidity": 0.9995207785900598, "top": 415, "right": 3175, "bottom": 2030, "left": 755}, {"solidity": 0.9959129467300358, "top": 2230, "right": 3165, "bottom": 3855, "left": 745}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718048f.jpg"} -{"rects": [{"solidity": 0.999521252169835, "top": 820, "right": 3865, "bottom": 3225, "left": 2260}, {"solidity": 0.9958533320272962, "top": 820, "right": 2010, "bottom": 3225, "left": 405}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732333f.jpg"} -{"rects": [{"solidity": 0.9995234353868545, "top": 740, "right": 2020, "bottom": 3165, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719470f.jpg"} -{"rects": [{"solidity": 0.9995257942140442, "top": 375, "right": 3110, "bottom": 1985, "left": 690}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/728681f.jpg"} -{"rects": [{"solidity": 0.9995287740325244, "top": 775, "right": 2010, "bottom": 3185, "left": 405}, {"solidity": 0.9961857379767828, "top": 790, "right": 3850, "bottom": 3195, "left": 2235}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732384f.jpg"} -{"rects": [{"solidity": 0.9995291057493946, "top": 440, "right": 3270, "bottom": 2065, "left": 855}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706833f.jpg"} -{"rects": [{"solidity": 0.9995308214234156, "top": 855, "right": 4220, "bottom": 3250, "left": 2620}, {"solidity": 0.9974729905352009, "top": 855, "right": 2500, "bottom": 3250, "left": 895}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704570f.jpg"} -{"rects": [{"solidity": 0.9995315917159572, "top": 425, "right": 3205, "bottom": 2040, "left": 795}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732444f.jpg"} -{"rects": [{"solidity": 0.9995342762881495, "top": 825, "right": 2005, "bottom": 3230, "left": 400}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728747f.jpg"} -{"rects": [{"solidity": 0.9995343407526217, "top": 415, "right": 3215, "bottom": 2025, "left": 800}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/704490f.jpg"} -{"rects": [{"solidity": 0.999534680991424, "top": 475, "right": 2690, "bottom": 3665, "left": 685}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733095f.jpg"} -{"rects": [{"solidity": 0.9995350765867083, "top": 410, "right": 3200, "bottom": 2040, "left": 745}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/700076f.jpg"} -{"rects": [{"solidity": 0.9995355050341644, "top": 2110, "right": 3155, "bottom": 3735, "left": 740}, {"solidity": 0.994350770047796, "top": 340, "right": 3155, "bottom": 1930, "left": 765}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734522f.jpg"} -{"rects": [{"solidity": 0.9995368553766588, "top": 780, "right": 3845, "bottom": 3200, "left": 2230}, {"solidity": 0.9977639411919789, "top": 790, "right": 2030, "bottom": 3200, "left": 425}, {"solidity": 0.9979831658086132, "top": 805, "right": 5695, "bottom": 3205, "left": 4090}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715077f.jpg"} -{"rects": [{"solidity": 0.9995376776441095, "top": 805, "right": 2055, "bottom": 3210, "left": 450}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721207f.jpg"} -{"rects": [{"solidity": 0.9995391778805383, "top": 650, "right": 2015, "bottom": 3075, "left": 395}, {"solidity": 0.9982148533193775, "top": 655, "right": 3845, "bottom": 3075, "left": 2225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705796f.jpg"} -{"rects": [{"solidity": 0.9995411609008414, "top": 500, "right": 5150, "bottom": 3730, "left": 1055}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706484f.jpg"} -{"rects": [{"solidity": 0.9995429569409265, "top": 530, "right": 3825, "bottom": 2345, "left": 1115}], "shape": {"h": 4425, "w": 6865}, "file": "/usr/local/google/home/danvk/milstein/706391f.jpg"} -{"rects": [{"solidity": 0.9995433851277851, "top": 455, "right": 2960, "bottom": 2045, "left": 605}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704773f.jpg"} -{"rects": [{"solidity": 0.9995447324268308, "top": 575, "right": 2995, "bottom": 2200, "left": 565}], "shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707175f.jpg"} -{"rects": [{"solidity": 0.9995474267274033, "top": 735, "right": 2005, "bottom": 3130, "left": 405}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711753f.jpg"} -{"rects": [{"solidity": 0.9995519698820617, "top": 420, "right": 3135, "bottom": 2035, "left": 720}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701262f.jpg"} -{"rects": [{"solidity": 0.9995555956306678, "top": 275, "right": 3200, "bottom": 1905, "left": 805}, {"solidity": 0.9967204673092706, "top": 2160, "right": 3220, "bottom": 3785, "left": 805}, {"solidity": 0.9972939466622645, "top": 4045, "right": 3195, "bottom": 5670, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705791f.jpg"} -{"rects": [{"solidity": 0.9995575749942679, "top": 870, "right": 2040, "bottom": 3280, "left": 425}, {"solidity": 0.9997985292636244, "top": 870, "right": 3860, "bottom": 3280, "left": 2255}, {"solidity": 0.9937591289337405, "top": 975, "right": 5560, "bottom": 3210, "left": 4230}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712771f.jpg"} -{"rects": [{"solidity": 0.9995685715564021, "top": 280, "right": 3200, "bottom": 1905, "left": 780}, {"solidity": 0.998893349804406, "top": 4020, "right": 3200, "bottom": 5635, "left": 780}, {"solidity": 0.999945047307803, "top": 2130, "right": 3185, "bottom": 3760, "left": 800}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705667f.jpg"} -{"rects": [{"solidity": 0.9995690660722154, "top": 385, "right": 3170, "bottom": 1995, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/715669f.jpg"} -{"rects": [{"solidity": 0.9995737577968159, "top": 735, "right": 2015, "bottom": 3135, "left": 405}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720009f.jpg"} -{"rects": [{"solidity": 0.9995740726399752, "top": 390, "right": 3310, "bottom": 2010, "left": 905}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705732f.jpg"} -{"rects": [{"solidity": 0.9995756466529535, "top": 770, "right": 2255, "bottom": 3180, "left": 645}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707514f.jpg"} -{"rects": [{"solidity": 0.9995772816304667, "top": 785, "right": 2030, "bottom": 3205, "left": 420}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703641f.jpg"} -{"rects": [{"solidity": 0.999577748983052, "top": 395, "right": 3015, "bottom": 2010, "left": 600}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706801f.jpg"} -{"rects": [{"solidity": 0.999578549443813, "top": 3975, "right": 3215, "bottom": 5605, "left": 800}, {"solidity": 0.9977489720092343, "top": 2110, "right": 3225, "bottom": 3740, "left": 805}, {"solidity": 0.9976398258487302, "top": 280, "right": 3230, "bottom": 1900, "left": 810}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702656f.jpg"} -{"rects": [{"solidity": 0.9995799262465929, "top": 475, "right": 3525, "bottom": 2095, "left": 1105}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704182f.jpg"} -{"rects": [{"solidity": 0.9995820040088732, "top": 1060, "right": 3555, "bottom": 3075, "left": 350}, {"solidity": 0.9969425213679415, "top": 3580, "right": 3540, "bottom": 5610, "left": 345}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/703382f.jpg"} -{"rects": [{"solidity": 0.9995853257989883, "top": 415, "right": 3160, "bottom": 2010, "left": 765}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/716793f.jpg"} -{"rects": [{"solidity": 0.9995867053689856, "top": 635, "right": 2825, "bottom": 2070, "left": 1000}, {"solidity": 0.9947681388769002, "top": 630, "right": 5055, "bottom": 2080, "left": 3225}, {"solidity": 0.995113351376853, "top": 2265, "right": 2835, "bottom": 3685, "left": 1030}, {"solidity": 0.9958526239364268, "top": 2285, "right": 5045, "bottom": 3695, "left": 3235}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725465f.jpg"} -{"rects": [{"solidity": 0.9995876168148432, "top": 805, "right": 2040, "bottom": 3225, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702913f.jpg"} -{"rects": [{"solidity": 0.9995896255047749, "top": 460, "right": 5250, "bottom": 3735, "left": 1220}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730535f.jpg"} -{"rects": [{"solidity": 0.9995913177731359, "top": 880, "right": 2040, "bottom": 3280, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714530f.jpg"} -{"rects": [{"solidity": 0.9995919862239128, "top": 740, "right": 2030, "bottom": 3155, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720205f.jpg"} -{"rects": [{"solidity": 0.9995951312931378, "top": 505, "right": 3380, "bottom": 2125, "left": 965}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707089f.jpg"} -{"rects": [{"solidity": 0.9995955250950997, "top": 435, "right": 3155, "bottom": 2050, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734030f.jpg"} -{"rects": [{"solidity": 0.9995978113151246, "top": 445, "right": 3190, "bottom": 2050, "left": 775}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713469f.jpg"} -{"rects": [{"solidity": 0.9995990167760949, "top": 820, "right": 2045, "bottom": 3230, "left": 445}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712265f.jpg"} -{"rects": [{"solidity": 0.9995994650920907, "top": 795, "right": 3890, "bottom": 3205, "left": 2275}, {"solidity": 0.9952204239445103, "top": 800, "right": 2070, "bottom": 3220, "left": 460}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700642f.jpg"} -{"rects": [{"solidity": 0.9996030274895261, "top": 460, "right": 3175, "bottom": 2060, "left": 780}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710544f.jpg"} -{"rects": [{"solidity": 0.9996036232731621, "top": 810, "right": 2030, "bottom": 3220, "left": 425}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707083f.jpg"} -{"rects": [{"solidity": 0.9996036553207674, "top": 785, "right": 1965, "bottom": 3205, "left": 340}, {"solidity": 0.9981739798559116, "top": 800, "right": 3850, "bottom": 3210, "left": 2225}, {"solidity": 0.9974608821179078, "top": 815, "right": 5730, "bottom": 3235, "left": 4115}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724287f.jpg"} -{"rects": [{"solidity": 0.999605930742328, "top": 755, "right": 1990, "bottom": 3155, "left": 395}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720679f.jpg"} -{"rects": [{"solidity": 0.9996068058335716, "top": 770, "right": 2040, "bottom": 3180, "left": 435}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721057f.jpg"} -{"rects": [{"solidity": 0.9996075047683305, "top": 760, "right": 2010, "bottom": 3175, "left": 405}, {"solidity": 0.9973302311294396, "top": 770, "right": 5665, "bottom": 3185, "left": 4070}, {"solidity": 0.9958558924234191, "top": 780, "right": 3835, "bottom": 3185, "left": 2230}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721807f.jpg"} -{"rects": [{"solidity": 0.9996076615341077, "top": 420, "right": 3150, "bottom": 2035, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705861f.jpg"} -{"rects": [{"solidity": 0.9996079653724168, "top": 415, "right": 3370, "bottom": 2035, "left": 955}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725321f.jpg"} -{"rects": [{"solidity": 0.9996084136934229, "top": 2275, "right": 3155, "bottom": 3900, "left": 725}, {"solidity": 0.9984622038541016, "top": 450, "right": 3150, "bottom": 2070, "left": 725}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703335f.jpg"} -{"rects": [{"solidity": 0.9996085659387695, "top": 1135, "right": 2705, "bottom": 4145, "left": 255}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508157.jpg"} -{"rects": [{"solidity": 0.9996110394087799, "top": 505, "right": 3650, "bottom": 2330, "left": 925}, {"solidity": 0.9969340866865963, "top": 4650, "right": 3615, "bottom": 6485, "left": 925}, {"solidity": 0.9975316987238575, "top": 2575, "right": 3615, "bottom": 4405, "left": 930}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/706447f.jpg"} -{"rects": [{"solidity": 0.9996115993759911, "top": 790, "right": 2065, "bottom": 3215, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705759f.jpg"} -{"rects": [{"solidity": 0.9996151383345443, "top": 440, "right": 3255, "bottom": 2025, "left": 865}, {"solidity": 0.9956410935327994, "top": 2340, "right": 3235, "bottom": 3945, "left": 855}, {"solidity": 0.9971245645294259, "top": 4190, "right": 3220, "bottom": 5785, "left": 845}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/728004f.jpg"} -{"rects": [{"solidity": 0.9996168139286411, "top": 940, "right": 2680, "bottom": 3945, "left": 260}], "shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516863.jpg"} -{"rects": [{"solidity": 0.9996185177826347, "top": 445, "right": 5070, "bottom": 3620, "left": 1095}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730734f.jpg"} -{"rects": [{"solidity": 0.9996192134036882, "top": 830, "right": 2060, "bottom": 3255, "left": 440}, {"solidity": 0.9970831943599704, "top": 840, "right": 3960, "bottom": 3240, "left": 2350}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703712f.jpg"} -{"rects": [{"solidity": 0.9996194354634105, "top": 785, "right": 2035, "bottom": 3200, "left": 435}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724393f.jpg"} -{"rects": [{"solidity": 0.9996216335809817, "top": 2280, "right": 3150, "bottom": 3900, "left": 730}, {"solidity": 0.9969615654015052, "top": 4125, "right": 3145, "bottom": 5755, "left": 720}, {"solidity": 0.9954572693356015, "top": 400, "right": 3135, "bottom": 2025, "left": 710}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706763f.jpg"} -{"rects": [{"solidity": 0.9996231485122559, "top": 785, "right": 2025, "bottom": 3190, "left": 430}, {"solidity": 0.999054099512728, "top": 790, "right": 3810, "bottom": 3180, "left": 2230}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719475f.jpg"} -{"rects": [{"solidity": 0.9996249503890071, "top": 450, "right": 5125, "bottom": 3715, "left": 1080}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704717f.jpg"} -{"rects": [{"solidity": 0.9996278851144254, "top": 825, "right": 1930, "bottom": 3195, "left": 305}, {"solidity": 0.9965112549663889, "top": 835, "right": 3800, "bottom": 3205, "left": 2175}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704179f.jpg"} -{"rects": [{"solidity": 0.9996303214257919, "top": 415, "right": 3080, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719718f.jpg"} -{"rects": [{"solidity": 0.9996342841944278, "top": 525, "right": 2955, "bottom": 1965, "left": 1115}, {"solidity": 0.9970451970107721, "top": 2175, "right": 5100, "bottom": 3600, "left": 3245}, {"solidity": 0.9984355820838047, "top": 550, "right": 5095, "bottom": 1965, "left": 3245}, {"solidity": 0.9983466801923508, "top": 2200, "right": 2955, "bottom": 3605, "left": 1115}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732851f.jpg"} -{"rects": [{"solidity": 0.9996374361838688, "top": 810, "right": 2105, "bottom": 3215, "left": 505}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709225f.jpg"} -{"rects": [{"solidity": 0.9996382655330107, "top": 390, "right": 5425, "bottom": 1985, "left": 3050}, {"solidity": 0.9976973662382131, "top": 675, "right": 2065, "bottom": 3055, "left": 470}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722405f.jpg"} -{"rects": [{"solidity": 0.9996421740205327, "top": 795, "right": 2010, "bottom": 3210, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704596f.jpg"} -{"rects": [{"solidity": 0.9996438426490406, "top": 540, "right": 3675, "bottom": 2155, "left": 1250}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701197f.jpg"} -{"rects": [{"solidity": 0.9996443110790632, "top": 410, "right": 3115, "bottom": 2020, "left": 700}, {"solidity": 0.9941122794120018, "top": 2280, "right": 3115, "bottom": 3895, "left": 685}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733640f.jpg"} -{"rects": [{"solidity": 0.9996472240742059, "top": 450, "right": 5720, "bottom": 2065, "left": 3315}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705745f.jpg"} -{"rects": [{"solidity": 0.9996485161267787, "top": 670, "right": 2780, "bottom": 3490, "left": 740}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721561f.jpg"} -{"rects": [{"solidity": 0.9996504707212063, "top": 725, "right": 3940, "bottom": 3130, "left": 2340}, {"solidity": 0.9962295920894069, "top": 745, "right": 2065, "bottom": 3130, "left": 455}, {"solidity": 0.9956461750728193, "top": 725, "right": 5770, "bottom": 3095, "left": 4190}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711106f.jpg"} -{"rects": [{"solidity": 0.9996510782650836, "top": 660, "right": 2740, "bottom": 2095, "left": 930}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726146f.jpg"} -{"rects": [{"solidity": 0.999651616818141, "top": 1080, "right": 3955, "bottom": 5610, "left": 325}], "shape": {"h": 6910, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711656f.jpg"} -{"rects": [{"solidity": 0.9996530419309967, "top": 2235, "right": 3235, "bottom": 3860, "left": 805}, {"solidity": 0.9968075655165007, "top": 415, "right": 3220, "bottom": 2015, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726987f.jpg"} -{"rects": [{"solidity": 0.9996540441271565, "top": 430, "right": 3160, "bottom": 2040, "left": 745}, {"solidity": 0.9964847249451448, "top": 2270, "right": 3155, "bottom": 3880, "left": 740}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/719596f.jpg"} -{"rects": [{"solidity": 0.9996542944452436, "top": 2550, "right": 3485, "bottom": 4380, "left": 765}, {"solidity": 0.9974609825819855, "top": 485, "right": 3480, "bottom": 2315, "left": 760}], "shape": {"h": 6870, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711419f.jpg"} -{"rects": [{"solidity": 0.999656252634856, "top": 290, "right": 3150, "bottom": 1905, "left": 750}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/715678f.jpg"} -{"rects": [{"solidity": 0.9996583827135268, "top": 770, "right": 2025, "bottom": 3200, "left": 405}, {"solidity": 0.9979962884701357, "top": 780, "right": 3910, "bottom": 3200, "left": 2290}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705187f.jpg"} -{"rects": [{"solidity": 0.999658744113336, "top": 370, "right": 3115, "bottom": 1975, "left": 705}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733666f.jpg"} -{"rects": [{"solidity": 0.9996594005449592, "top": 815, "right": 2040, "bottom": 3245, "left": 430}, {"solidity": 0.9957261927016522, "top": 805, "right": 3930, "bottom": 3225, "left": 2315}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723024f.jpg"} -{"rects": [{"solidity": 0.9996621362808669, "top": 470, "right": 4990, "bottom": 3670, "left": 1000}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728227f.jpg"} -{"rects": [{"solidity": 0.999662457766257, "top": 440, "right": 3170, "bottom": 2035, "left": 765}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/704115f.jpg"} -{"rects": [{"solidity": 0.999662480738368, "top": 470, "right": 5060, "bottom": 3755, "left": 1000}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703597f.jpg"} -{"rects": [{"solidity": 0.9996629678728137, "top": 4135, "right": 3250, "bottom": 5750, "left": 825}, {"solidity": 0.9967309209784692, "top": 2275, "right": 3220, "bottom": 3895, "left": 795}, {"solidity": 0.9968768478378052, "top": 420, "right": 3215, "bottom": 2035, "left": 810}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/734505f.jpg"} -{"rects": [{"solidity": 0.9996641239124396, "top": 765, "right": 2080, "bottom": 3175, "left": 465}, {"solidity": 0.9962293599956731, "top": 985, "right": 3835, "bottom": 3015, "left": 2225}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723679f.jpg"} -{"rects": [{"solidity": 0.9996668689026773, "top": 1005, "right": 3530, "bottom": 5070, "left": 215}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/714520f.jpg"} -{"rects": [{"solidity": 0.9996686943451207, "top": 405, "right": 5115, "bottom": 3695, "left": 1065}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715060f.jpg"} -{"rects": [{"solidity": 0.9996698241733584, "top": 430, "right": 3105, "bottom": 2050, "left": 685}, {"solidity": 0.9980945491186483, "top": 4125, "right": 3095, "bottom": 5750, "left": 690}, {"solidity": 0.9982980540869352, "top": 2295, "right": 3095, "bottom": 3910, "left": 690}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710291f.jpg"} -{"rects": [{"solidity": 0.9996722741998851, "top": 335, "right": 2735, "bottom": 3515, "left": 735}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732990f.jpg"} -{"rects": [{"solidity": 0.9996749912247631, "top": 440, "right": 3110, "bottom": 2055, "left": 715}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712478f.jpg"} -{"rects": [{"solidity": 0.9996780342056459, "top": 315, "right": 1880, "bottom": 1195, "left": 765}], "shape": {"h": 3930, "w": 2535}, "file": "/usr/local/google/home/danvk/milstein/727061f.jpg"} -{"rects": [{"solidity": 0.9996806575229346, "top": 430, "right": 3210, "bottom": 2040, "left": 790}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/734550f.jpg"} -{"rects": [{"solidity": 0.9996818553675545, "top": 445, "right": 3185, "bottom": 2055, "left": 780}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715218f.jpg"} -{"rects": [{"solidity": 0.9996867147472506, "top": 745, "right": 2115, "bottom": 3145, "left": 510}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708626f.jpg"} -{"rects": [{"solidity": 0.99968835501863, "top": 660, "right": 2800, "bottom": 2120, "left": 920}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726269f.jpg"} -{"rects": [{"solidity": 0.9996886452826517, "top": 785, "right": 2070, "bottom": 3200, "left": 465}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706275f.jpg"} -{"rects": [{"solidity": 0.9996904288334585, "top": 435, "right": 5805, "bottom": 3655, "left": 3790}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704946f.jpg"} -{"rects": [{"solidity": 0.9996911490784195, "top": 1025, "right": 3565, "bottom": 5060, "left": 315}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717084f.jpg"} -{"rects": [{"solidity": 0.999692255861716, "top": 800, "right": 2015, "bottom": 3210, "left": 405}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706992f.jpg"} -{"rects": [{"solidity": 0.9996922897529249, "top": 830, "right": 2025, "bottom": 3240, "left": 415}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713727f.jpg"} -{"rects": [{"solidity": 0.999699224062075, "top": 295, "right": 3150, "bottom": 1915, "left": 725}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707473f.jpg"} -{"rects": [{"solidity": 0.9997070582857437, "top": 835, "right": 3775, "bottom": 3245, "left": 2155}, {"solidity": 0.9973213186756237, "top": 815, "right": 1930, "bottom": 3235, "left": 320}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723954f.jpg"} -{"rects": [{"solidity": 0.9997109000324435, "top": 2265, "right": 3215, "bottom": 3875, "left": 785}, {"solidity": 0.9982075283808006, "top": 420, "right": 3235, "bottom": 2040, "left": 815}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704333f.jpg"} -{"rects": [{"solidity": 0.9997129305642828, "top": 2275, "right": 3030, "bottom": 3900, "left": 605}, {"solidity": 0.9958930075821398, "top": 405, "right": 3030, "bottom": 2000, "left": 620}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701133f.jpg"} -{"rects": [{"solidity": 0.9997149429096734, "top": 395, "right": 5045, "bottom": 3585, "left": 1060}], "shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730737f.jpg"} -{"rects": [{"solidity": 0.9997151799383106, "top": 800, "right": 1955, "bottom": 3205, "left": 340}, {"solidity": 0.997320407349925, "top": 815, "right": 3840, "bottom": 3220, "left": 2225}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722321f.jpg"} -{"rects": [{"solidity": 0.9997159397993479, "top": 895, "right": 2395, "bottom": 3710, "left": 620}], "shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715927f.jpg"} -{"rects": [{"solidity": 0.999717276343098, "top": 435, "right": 3140, "bottom": 2045, "left": 710}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702180f.jpg"} -{"rects": [{"solidity": 0.9997204882139197, "top": 835, "right": 2040, "bottom": 3250, "left": 420}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702106f.jpg"} -{"rects": [{"solidity": 0.999724237612088, "top": 2135, "right": 2925, "bottom": 3770, "left": 500}, {"solidity": 0.9931586241653018, "top": 2115, "right": 5685, "bottom": 3765, "left": 3250}, {"solidity": 0.9975056718163158, "top": 400, "right": 2935, "bottom": 2035, "left": 505}, {"solidity": 0.9965736803365893, "top": 395, "right": 5670, "bottom": 2040, "left": 3265}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705397f.jpg"} -{"rects": [{"solidity": 0.9997295609228412, "top": 410, "right": 3060, "bottom": 2020, "left": 635}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/729439f.jpg"} -{"rects": [{"solidity": 0.9997351194591763, "top": 355, "right": 5280, "bottom": 3570, "left": 1275}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727862f.jpg"} -{"rects": [{"solidity": 0.9997372845733501, "top": 410, "right": 3190, "bottom": 2005, "left": 790}], "shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/732334f.jpg"} -{"rects": [{"solidity": 0.9997376587644368, "top": 315, "right": 3200, "bottom": 1935, "left": 775}, {"solidity": 0.9960111162456357, "top": 2165, "right": 3185, "bottom": 3800, "left": 765}, {"solidity": 0.9958194517693366, "top": 4040, "right": 3165, "bottom": 5670, "left": 745}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711843f.jpg"} -{"rects": [{"solidity": 0.9997378579058779, "top": 840, "right": 1900, "bottom": 3215, "left": 285}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711889f.jpg"} -{"rects": [{"solidity": 0.9997384573200312, "top": 600, "right": 3305, "bottom": 2615, "left": 350}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711844f.jpg"} -{"rects": [{"solidity": 0.9997397607083649, "top": 390, "right": 3190, "bottom": 2010, "left": 775}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730573f.jpg"} -{"rects": [{"solidity": 0.9997429710617545, "top": 850, "right": 3830, "bottom": 3265, "left": 2210}, {"solidity": 0.9965238063199444, "top": 855, "right": 5725, "bottom": 3275, "left": 4095}, {"solidity": 0.9966275900462419, "top": 855, "right": 2000, "bottom": 3280, "left": 380}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729460f.jpg"} -{"rects": [{"solidity": 0.9997435096797217, "top": 390, "right": 2515, "bottom": 1880, "left": 245}], "shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716401f.jpg"} -{"rects": [{"solidity": 0.9997452652781821, "top": 415, "right": 5190, "bottom": 3610, "left": 1200}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730733f.jpg"} -{"rects": [{"solidity": 0.9997455647306456, "top": 845, "right": 1990, "bottom": 3230, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700751f.jpg"} -{"rects": [{"solidity": 0.9997464861048713, "top": 320, "right": 3140, "bottom": 1945, "left": 730}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/706586f.jpg"} -{"rects": [{"solidity": 0.9997473246698186, "top": 480, "right": 5105, "bottom": 3765, "left": 1070}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701025f.jpg"} -{"rects": [{"solidity": 0.9997539636456683, "top": 760, "right": 3905, "bottom": 3155, "left": 2305}, {"solidity": 0.9974480005510744, "top": 750, "right": 2040, "bottom": 3145, "left": 435}, {"solidity": 0.9950481358075095, "top": 745, "right": 5755, "bottom": 3150, "left": 4160}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733356f.jpg"} -{"rects": [{"solidity": 0.9997547975789487, "top": 440, "right": 3230, "bottom": 2050, "left": 810}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/706212f.jpg"} -{"rects": [{"solidity": 0.9997550148461003, "top": 615, "right": 2665, "bottom": 2030, "left": 850}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705878f.jpg"} -{"rects": [{"solidity": 0.9997550662610221, "top": 2235, "right": 3215, "bottom": 3850, "left": 800}, {"solidity": 0.9969709942928511, "top": 405, "right": 3205, "bottom": 2025, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700672f.jpg"} -{"rects": [{"solidity": 0.9997558256466604, "top": 405, "right": 3210, "bottom": 2025, "left": 795}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707451f.jpg"} -{"rects": [{"solidity": 0.9997561108668654, "top": 2240, "right": 3160, "bottom": 3855, "left": 735}, {"solidity": 0.9954862167833288, "top": 400, "right": 3160, "bottom": 2025, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721177f.jpg"} -{"rects": [{"solidity": 0.9997568140697651, "top": 775, "right": 2045, "bottom": 3190, "left": 440}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701716f.jpg"} -{"rects": [{"solidity": 0.9997583281395083, "top": 2100, "right": 3180, "bottom": 3730, "left": 755}, {"solidity": 0.9972632748630844, "top": 225, "right": 3165, "bottom": 1860, "left": 735}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/719066f.jpg"} -{"rects": [{"solidity": 0.9997590531753578, "top": 830, "right": 2060, "bottom": 3245, "left": 440}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720279f.jpg"} -{"rects": [{"solidity": 0.9997610675759014, "top": 930, "right": 3885, "bottom": 3340, "left": 2270}, {"solidity": 0.9972020873729552, "top": 930, "right": 5735, "bottom": 3335, "left": 4125}, {"solidity": 0.9983986057676498, "top": 935, "right": 2010, "bottom": 3320, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709321f.jpg"} -{"rects": [{"solidity": 0.999762461096945, "top": 615, "right": 2700, "bottom": 2030, "left": 865}, {"solidity": 0.9988219723963409, "top": 2085, "right": 2700, "bottom": 3505, "left": 870}, {"solidity": 0.9942469554791706, "top": 2090, "right": 5305, "bottom": 3515, "left": 3470}, {"solidity": 0.9973200687312063, "top": 625, "right": 5305, "bottom": 2040, "left": 3480}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704303f.jpg"} -{"rects": [{"solidity": 0.9997628614715763, "top": 835, "right": 2015, "bottom": 3235, "left": 425}], "shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730310f.jpg"} -{"rects": [{"solidity": 0.9997644933380649, "top": 420, "right": 3100, "bottom": 2030, "left": 680}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/729678f.jpg"} -{"rects": [{"solidity": 0.9997681641011771, "top": 650, "right": 2680, "bottom": 2070, "left": 845}, {"solidity": 0.997847766686007, "top": 2135, "right": 2675, "bottom": 3525, "left": 845}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705866f.jpg"} -{"rects": [{"solidity": 0.9997704709225452, "top": 750, "right": 3825, "bottom": 3165, "left": 2215}, {"solidity": 0.9968587640805657, "top": 760, "right": 2010, "bottom": 3180, "left": 395}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709546f.jpg"} -{"rects": [{"solidity": 0.999772856099223, "top": 500, "right": 2765, "bottom": 3530, "left": 740}, {"solidity": 0.996311430715839, "top": 805, "right": 4645, "bottom": 3230, "left": 3005}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715455f.jpg"} -{"rects": [{"solidity": 0.9997728663876901, "top": 390, "right": 5765, "bottom": 3610, "left": 3740}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702498f.jpg"} -{"rects": [{"solidity": 0.9997750347229014, "top": 620, "right": 2755, "bottom": 2030, "left": 930}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703279f.jpg"} -{"rects": [{"solidity": 0.999775846499683, "top": 440, "right": 3210, "bottom": 2065, "left": 795}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715507f.jpg"} -{"rects": [{"solidity": 0.9997785352514106, "top": 745, "right": 3905, "bottom": 3170, "left": 2290}, {"solidity": 0.9965238360943823, "top": 765, "right": 5750, "bottom": 3200, "left": 4120}, {"solidity": 0.9955387046218636, "top": 735, "right": 2015, "bottom": 3170, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726656f.jpg"} -{"rects": [{"solidity": 0.9997814396382152, "top": 570, "right": 3695, "bottom": 2410, "left": 1165}], "shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508889.jpg"} -{"rects": [{"solidity": 0.9997880035718186, "top": 735, "right": 2030, "bottom": 3150, "left": 410}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711570f.jpg"} -{"rects": [{"solidity": 0.9997900632071236, "top": 435, "right": 3050, "bottom": 2040, "left": 625}, {"solidity": 0.996752409918037, "top": 2260, "right": 3060, "bottom": 3870, "left": 630}, {"solidity": 0.9965123263429159, "top": 4110, "right": 3035, "bottom": 5725, "left": 605}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726609f.jpg"} -{"rects": [{"solidity": 0.9997900916814948, "top": 385, "right": 3090, "bottom": 1990, "left": 665}, {"solidity": 0.9963223325629893, "top": 2235, "right": 3095, "bottom": 3845, "left": 665}, {"solidity": 0.9955718558242664, "top": 4085, "right": 3090, "bottom": 5705, "left": 655}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726616f.jpg"} -{"rects": [{"solidity": 0.9997911760642793, "top": 400, "right": 3165, "bottom": 2020, "left": 750}, {"solidity": 0.9965040264971571, "top": 4115, "right": 3155, "bottom": 5735, "left": 740}, {"solidity": 0.9997373591953463, "top": 2265, "right": 3160, "bottom": 3880, "left": 760}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731665f.jpg"} -{"rects": [{"solidity": 0.9997934238333682, "top": 950, "right": 3540, "bottom": 4990, "left": 280}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/704459f.jpg"} -{"rects": [{"solidity": 0.9997946097906946, "top": 395, "right": 3265, "bottom": 2020, "left": 855}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704370f.jpg"} -{"rects": [{"solidity": 0.9997967505903912, "top": 820, "right": 3885, "bottom": 3240, "left": 2275}, {"solidity": 0.9965226686586194, "top": 815, "right": 5690, "bottom": 3240, "left": 4070}, {"solidity": 0.9955712676275204, "top": 835, "right": 2085, "bottom": 3250, "left": 465}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713478f.jpg"} -{"rects": [{"solidity": 0.9997974981219584, "top": 1600, "right": 3205, "bottom": 3200, "left": 800}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730889f.jpg"} -{"rects": [{"solidity": 0.9997989473923152, "top": 790, "right": 2050, "bottom": 3205, "left": 445}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706596f.jpg"} -{"rects": [{"solidity": 0.999799980643288, "top": 750, "right": 3870, "bottom": 3170, "left": 2260}, {"solidity": 0.997121378087265, "top": 770, "right": 2025, "bottom": 3180, "left": 425}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700383f.jpg"} -{"rects": [{"solidity": 0.9998034280852929, "top": 800, "right": 2050, "bottom": 3215, "left": 435}, {"solidity": 0.9975097416840856, "top": 790, "right": 3875, "bottom": 3210, "left": 2260}, {"solidity": 0.9965694240243493, "top": 765, "right": 5735, "bottom": 3180, "left": 4115}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715374f.jpg"} -{"rects": [{"solidity": 0.9998084138583332, "top": 415, "right": 5045, "bottom": 3575, "left": 1110}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723631f.jpg"} -{"rects": [{"solidity": 0.9998119203579998, "top": 795, "right": 2105, "bottom": 3210, "left": 500}, {"solidity": 0.9969088098918083, "top": 800, "right": 3910, "bottom": 3220, "left": 2300}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723548f.jpg"} -{"rects": [{"solidity": 0.9998172678660734, "top": 810, "right": 3860, "bottom": 3230, "left": 2240}, {"solidity": 0.9971524504423065, "top": 830, "right": 2025, "bottom": 3250, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706868f.jpg"} -{"rects": [{"solidity": 0.9998252636415704, "top": 375, "right": 3520, "bottom": 1990, "left": 1115}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706495f.jpg"} -{"rects": [{"solidity": 0.9998264540075129, "top": 355, "right": 3195, "bottom": 2065, "left": 570}, {"solidity": 0.99689517534044, "top": 2235, "right": 3190, "bottom": 3935, "left": 575}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/726633f.jpg"} -{"rects": [{"solidity": 0.9998283178387484, "top": 870, "right": 3855, "bottom": 3265, "left": 2235}, {"solidity": 0.9972611708575614, "top": 865, "right": 2010, "bottom": 3265, "left": 390}, {"solidity": 0.9966169706064659, "top": 875, "right": 5720, "bottom": 3275, "left": 4105}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713487f.jpg"} -{"rects": [{"solidity": 0.9998299063201035, "top": 2155, "right": 3180, "bottom": 3780, "left": 770}, {"solidity": 0.9953745056565181, "top": 385, "right": 3180, "bottom": 1975, "left": 790}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/719870f.jpg"} -{"rects": [{"solidity": 0.9998303243089794, "top": 830, "right": 2005, "bottom": 3245, "left": 410}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706295f.jpg"} -{"rects": [{"solidity": 0.9998335944975247, "top": 590, "right": 4945, "bottom": 3515, "left": 1235}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706096f.jpg"} -{"rects": [{"solidity": 0.999834456970173, "top": 790, "right": 2005, "bottom": 3210, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707370f.jpg"} -{"rects": [{"solidity": 0.9998351333964783, "top": 845, "right": 2155, "bottom": 3260, "left": 545}], "shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707805f.jpg"} -{"rects": [{"solidity": 0.9998354690101041, "top": 415, "right": 3150, "bottom": 2035, "left": 745}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703110f.jpg"} -{"rects": [{"solidity": 0.99983735896471, "top": 415, "right": 3200, "bottom": 2040, "left": 775}, {"solidity": 0.9960639140797675, "top": 2270, "right": 3220, "bottom": 3915, "left": 785}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730548f.jpg"} -{"rects": [{"solidity": 0.9998380299255909, "top": 790, "right": 2105, "bottom": 3200, "left": 495}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701919f.jpg"} -{"rects": [{"solidity": 0.999841929874931, "top": 840, "right": 3805, "bottom": 3260, "left": 2195}, {"solidity": 0.9982781722733952, "top": 845, "right": 2005, "bottom": 3260, "left": 395}, {"solidity": 0.9968581381053206, "top": 845, "right": 5610, "bottom": 3260, "left": 4005}], "shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726955f.jpg"} -{"rects": [{"solidity": 0.9998437037012917, "top": 340, "right": 3125, "bottom": 1955, "left": 735}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715040f.jpg"} -{"rects": [{"solidity": 0.999847749116459, "top": 780, "right": 2055, "bottom": 3190, "left": 445}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707324f.jpg"} -{"rects": [{"solidity": 0.9998477530619451, "top": 785, "right": 2035, "bottom": 3195, "left": 425}, {"solidity": 0.9971032786354662, "top": 775, "right": 5715, "bottom": 3195, "left": 4105}, {"solidity": 0.9958710548610863, "top": 790, "right": 3875, "bottom": 3200, "left": 2265}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719530f.jpg"} -{"rects": [{"solidity": 0.999848828420257, "top": 805, "right": 2075, "bottom": 3225, "left": 460}, {"solidity": 0.9969263780554992, "top": 1190, "right": 4580, "bottom": 2815, "left": 2170}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723977f.jpg"} -{"rects": [{"solidity": 0.999849942850575, "top": 960, "right": 2245, "bottom": 3390, "left": 625}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721852f.jpg"} -{"rects": [{"solidity": 0.9998502145838896, "top": 760, "right": 2025, "bottom": 3165, "left": 420}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713997f.jpg"} -{"rects": [{"solidity": 0.9998519167128086, "top": 785, "right": 2040, "bottom": 3210, "left": 430}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706528f.jpg"} -{"rects": [{"solidity": 0.999858795137418, "top": 795, "right": 2020, "bottom": 3220, "left": 405}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704451f.jpg"} -{"rects": [{"solidity": 0.9998620140809817, "top": 2240, "right": 3215, "bottom": 3855, "left": 790}, {"solidity": 0.9970174213348881, "top": 4040, "right": 3205, "bottom": 5660, "left": 770}, {"solidity": 0.9989179197006245, "top": 425, "right": 3210, "bottom": 2035, "left": 785}], "shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/720810f.jpg"} -{"rects": [{"solidity": 0.9998625416057104, "top": 820, "right": 2080, "bottom": 3220, "left": 480}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712474f.jpg"} -{"rects": [{"solidity": 0.9998631276467029, "top": 130, "right": 7260, "bottom": 2455, "left": 130}], "shape": {"h": 2585, "w": 7390}, "file": "/usr/local/google/home/danvk/milstein/1113226.jpg"} -{"rects": [{"solidity": 0.9998632612199052, "top": 385, "right": 3240, "bottom": 1990, "left": 835}], "shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/703811f.jpg"} -{"rects": [{"solidity": 0.9998646475518932, "top": 805, "right": 3765, "bottom": 3220, "left": 2150}, {"solidity": 0.9993663233173621, "top": 795, "right": 1905, "bottom": 3210, "left": 295}, {"solidity": 0.9988155602106541, "top": 810, "right": 5625, "bottom": 3220, "left": 4025}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710878f.jpg"} -{"rects": [{"solidity": 0.9998649456888734, "top": 495, "right": 3285, "bottom": 2110, "left": 865}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703206f.jpg"} -{"rects": [{"solidity": 0.9998658915196502, "top": 950, "right": 2355, "bottom": 3315, "left": 770}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711866f.jpg"} -{"rects": [{"solidity": 0.9998664700486514, "top": 535, "right": 1530, "bottom": 2335, "left": 325}], "shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/715931f.jpg"} -{"rects": [{"solidity": 0.9998722967430758, "top": 665, "right": 2805, "bottom": 2065, "left": 975}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706086f.jpg"} -{"rects": [{"solidity": 0.9998752155730964, "top": 780, "right": 3915, "bottom": 3205, "left": 2295}, {"solidity": 0.9988439158268243, "top": 790, "right": 2165, "bottom": 3215, "left": 545}, {"solidity": 0.9958007954014846, "top": 775, "right": 5675, "bottom": 3195, "left": 4050}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733197f.jpg"} -{"rects": [{"solidity": 0.9998757536521887, "top": 785, "right": 2030, "bottom": 3195, "left": 435}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704125f.jpg"} -{"rects": [{"solidity": 0.9998764123145372, "top": 730, "right": 2010, "bottom": 3145, "left": 410}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704826f.jpg"} -{"rects": [{"solidity": 0.9998796851550479, "top": 860, "right": 3745, "bottom": 3295, "left": 2115}, {"solidity": 0.9949280551009274, "top": 1090, "right": 1910, "bottom": 3070, "left": 380}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718013f.jpg"} -{"rects": [{"solidity": 0.9998805233722117, "top": 1310, "right": 2905, "bottom": 2925, "left": 495}, {"solidity": 0.9971357381468485, "top": 1280, "right": 5640, "bottom": 2895, "left": 3230}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719408f.jpg"} -{"rects": [{"solidity": 0.9998835102252136, "top": 845, "right": 2065, "bottom": 3250, "left": 450}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708002f.jpg"} -{"rects": [{"solidity": 0.9998837565992348, "top": 845, "right": 2070, "bottom": 3255, "left": 455}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707993f.jpg"} -{"rects": [{"solidity": 0.9998838225414577, "top": 330, "right": 3255, "bottom": 2155, "left": 530}], "shape": {"h": 4425, "w": 6930}, "file": "/usr/local/google/home/danvk/milstein/706433f.jpg"} -{"rects": [{"solidity": 0.9998838803322313, "top": 2245, "right": 3020, "bottom": 3855, "left": 600}, {"solidity": 0.9997739244455497, "top": 370, "right": 3020, "bottom": 1985, "left": 610}, {"solidity": 0.9966593432081903, "top": 4115, "right": 3010, "bottom": 5735, "left": 595}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731329f.jpg"} -{"rects": [{"solidity": 0.9998848287467448, "top": 885, "right": 3965, "bottom": 3295, "left": 2335}, {"solidity": 0.9965205132723516, "top": 880, "right": 2075, "bottom": 3305, "left": 450}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709503f.jpg"} -{"rects": [{"solidity": 0.9998862813010719, "top": 805, "right": 2040, "bottom": 3215, "left": 435}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709393f.jpg"} -{"rects": [{"solidity": 0.9998887194223883, "top": 290, "right": 3115, "bottom": 1900, "left": 730}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720459f.jpg"} -{"rects": [{"solidity": 0.999890093194506, "top": 395, "right": 3165, "bottom": 2005, "left": 750}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705418f.jpg"} -{"rects": [{"solidity": 0.9998927822993323, "top": 740, "right": 3810, "bottom": 3150, "left": 2205}, {"solidity": 0.9954783754775273, "top": 750, "right": 5655, "bottom": 3165, "left": 4050}, {"solidity": 0.9976494092203819, "top": 745, "right": 1980, "bottom": 3140, "left": 380}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717931f.jpg"} -{"rects": [{"solidity": 0.9998934464738047, "top": 635, "right": 5235, "bottom": 2055, "left": 3405}, {"solidity": 0.9985572360904003, "top": 2130, "right": 5230, "bottom": 3560, "left": 3410}, {"solidity": 0.9965456569713116, "top": 660, "right": 2765, "bottom": 2060, "left": 955}, {"solidity": 0.995367532278757, "top": 2310, "right": 2745, "bottom": 3435, "left": 960}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702608f.jpg"} -{"rects": [{"solidity": 0.9998981585798214, "top": 440, "right": 4325, "bottom": 2870, "left": 2700}, {"solidity": 0.9968024963642843, "top": 455, "right": 2545, "bottom": 2875, "left": 920}], "shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706883f.jpg"} -{"rects": [{"solidity": 0.9999019997809407, "top": 1585, "right": 3975, "bottom": 2795, "left": 2170}, {"solidity": 0.9957315777076906, "top": 285, "right": 3960, "bottom": 1510, "left": 2150}, {"solidity": 0.9966528650432869, "top": 480, "right": 1500, "bottom": 2270, "left": 280}], "shape": {"h": 3030, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/707683f.jpg"} -{"rects": [{"solidity": 0.9999059662775616, "top": 695, "right": 2070, "bottom": 3110, "left": 465}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706329f.jpg"} -{"rects": [{"solidity": 0.999907688250033, "top": 800, "right": 1990, "bottom": 3190, "left": 395}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712255f.jpg"} -{"rects": [{"solidity": 0.9999108751125788, "top": 1095, "right": 3605, "bottom": 5175, "left": 330}], "shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/722414f.jpg"} -{"rects": [{"solidity": 0.9999118099537165, "top": 840, "right": 2010, "bottom": 3245, "left": 410}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715687f.jpg"} -{"rects": [{"solidity": 0.9999128123819334, "top": 360, "right": 3290, "bottom": 1975, "left": 880}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726165f.jpg"} -{"rects": [{"solidity": 0.9999136254286738, "top": 830, "right": 2020, "bottom": 3255, "left": 400}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712703f.jpg"} -{"rects": [{"solidity": 0.9999157881099289, "top": 770, "right": 2045, "bottom": 3180, "left": 435}, {"solidity": 0.9982516576875259, "top": 775, "right": 3860, "bottom": 3175, "left": 2240}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721979f.jpg"} -{"rects": [{"solidity": 0.9999161339019025, "top": 850, "right": 3910, "bottom": 3255, "left": 2290}, {"solidity": 0.9974759782198223, "top": 840, "right": 2040, "bottom": 3250, "left": 420}, {"solidity": 0.9959502000659345, "top": 845, "right": 5760, "bottom": 3260, "left": 4130}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710518f.jpg"} -{"rects": [{"solidity": 0.9999193597811747, "top": 430, "right": 3185, "bottom": 2040, "left": 765}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707274f.jpg"} -{"rects": [{"solidity": 0.9999194455274546, "top": 385, "right": 3285, "bottom": 2000, "left": 870}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700271f.jpg"} -{"rects": [{"solidity": 0.9999225808949004, "top": 845, "right": 3885, "bottom": 3265, "left": 2275}, {"solidity": 0.9979365228948471, "top": 845, "right": 5730, "bottom": 3255, "left": 4120}, {"solidity": 0.9967835402323294, "top": 860, "right": 2025, "bottom": 3250, "left": 440}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729517f.jpg"} -{"rects": [{"solidity": 0.9999255089680725, "top": 640, "right": 2100, "bottom": 3050, "left": 490}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701889f.jpg"} -{"rects": [{"solidity": 0.9999285213006524, "top": 835, "right": 2015, "bottom": 3245, "left": 410}, {"solidity": 0.9984209994029811, "top": 830, "right": 3795, "bottom": 3235, "left": 2190}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706669f.jpg"} -{"rects": [{"solidity": 0.999932118359721, "top": 810, "right": 1965, "bottom": 3210, "left": 345}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711100f.jpg"} -{"rects": [{"solidity": 0.9999324691528737, "top": 2275, "right": 3075, "bottom": 3890, "left": 655}, {"solidity": 0.9969603206412826, "top": 395, "right": 3085, "bottom": 2020, "left": 660}, {"solidity": 0.9987174129673085, "top": 4145, "right": 3065, "bottom": 5760, "left": 640}], "shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733620f.jpg"} -{"rects": [{"solidity": 0.9999389045914807, "top": 815, "right": 2070, "bottom": 3235, "left": 455}], "shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700936f.jpg"} -{"rects": [{"solidity": 0.9999415781684107, "top": 2280, "right": 3170, "bottom": 3890, "left": 765}, {"solidity": 0.995208519943095, "top": 435, "right": 3170, "bottom": 2035, "left": 775}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/702941f.jpg"} -{"rects": [{"solidity": 0.9999417613314654, "top": 1055, "right": 3085, "bottom": 2670, "left": 680}, {"solidity": 0.9967766413510867, "top": 1040, "right": 5490, "bottom": 2665, "left": 3095}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719102f.jpg"} -{"rects": [{"solidity": 0.9999418166772798, "top": 800, "right": 2045, "bottom": 3215, "left": 435}], "shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706103f.jpg"} -{"rects": [{"solidity": 0.9999420610804964, "top": 830, "right": 2035, "bottom": 3255, "left": 425}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703734f.jpg"} -{"rects": [{"solidity": 0.9999445885865527, "top": 295, "right": 3110, "bottom": 1915, "left": 730}], "shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/707922f.jpg"} -{"rects": [{"solidity": 0.9999452250766043, "top": 770, "right": 2090, "bottom": 3185, "left": 475}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721149f.jpg"} -{"rects": [{"solidity": 0.9999453938070153, "top": 2240, "right": 3240, "bottom": 3860, "left": 825}, {"solidity": 0.997687663669552, "top": 4115, "right": 3225, "bottom": 5735, "left": 815}, {"solidity": 0.9976223441422324, "top": 390, "right": 3235, "bottom": 2005, "left": 825}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726785f.jpg"} -{"rects": [{"solidity": 0.999945450053106, "top": 775, "right": 2010, "bottom": 3200, "left": 395}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721580f.jpg"} -{"rects": [{"solidity": 0.9999462464934236, "top": 770, "right": 2020, "bottom": 3145, "left": 445}, {"solidity": 0.9964460696200581, "top": 790, "right": 3840, "bottom": 3145, "left": 2275}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713178f.jpg"} -{"rects": [{"solidity": 0.9999502372026673, "top": 845, "right": 2310, "bottom": 3220, "left": 715}], "shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722467f.jpg"} -{"rects": [{"solidity": 0.9999547972981699, "top": 390, "right": 3490, "bottom": 2005, "left": 1080}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707408f.jpg"} -{"rects": [{"solidity": 0.9999579810203502, "top": 910, "right": 3860, "bottom": 3325, "left": 2250}, {"solidity": 0.9983490069762548, "top": 900, "right": 2030, "bottom": 3315, "left": 420}, {"solidity": 0.9971989911058011, "top": 940, "right": 5695, "bottom": 3305, "left": 4090}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709452f.jpg"} -{"rects": [{"solidity": 0.9999611314631089, "top": 2285, "right": 3030, "bottom": 3895, "left": 620}, {"solidity": 0.9960048034732807, "top": 420, "right": 3025, "bottom": 2015, "left": 625}], "shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730613f.jpg"} -{"rects": [{"solidity": 0.999964481338749, "top": 935, "right": 4375, "bottom": 3655, "left": 2555}, {"solidity": 0.9932038336031245, "top": 940, "right": 2245, "bottom": 3645, "left": 430}], "shape": {"h": 4415, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/709336f.jpg"} -{"rects": [{"solidity": 0.999964593110463, "top": 2300, "right": 3015, "bottom": 3920, "left": 605}, {"solidity": 0.9961718062522883, "top": 420, "right": 3035, "bottom": 2060, "left": 615}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710516f.jpg"} -{"rects": [{"solidity": 0.9999677451609678, "top": 2240, "right": 3125, "bottom": 3850, "left": 705}, {"solidity": 0.9979375885050602, "top": 400, "right": 3100, "bottom": 2015, "left": 700}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720028f.jpg"} -{"rects": [{"solidity": 0.9999677802873354, "top": 820, "right": 3870, "bottom": 3235, "left": 2255}, {"solidity": 0.9976921665631306, "top": 830, "right": 2055, "bottom": 3245, "left": 435}], "shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709570f.jpg"} -{"rects": [{"solidity": 0.9999684053218076, "top": 435, "right": 3110, "bottom": 2065, "left": 670}], "shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700007f.jpg"} -{"rects": [{"solidity": 0.9999706986420448, "top": 785, "right": 2010, "bottom": 3190, "left": 405}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720169f.jpg"} -{"rects": [{"solidity": 0.9999741697178688, "top": 830, "right": 1925, "bottom": 3240, "left": 310}, {"solidity": 0.9965488324087215, "top": 860, "right": 5655, "bottom": 3275, "left": 4030}, {"solidity": 0.9969772565282188, "top": 845, "right": 3770, "bottom": 3250, "left": 2155}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714050f.jpg"} -{"rects": [{"solidity": 0.999974170385055, "top": 715, "right": 2470, "bottom": 3125, "left": 855}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717873f.jpg"} -{"rects": [{"solidity": 0.9999742271362483, "top": 300, "right": 1845, "bottom": 1175, "left": 725}], "shape": {"h": 3935, "w": 2530}, "file": "/usr/local/google/home/danvk/milstein/725467f.jpg"} -{"rects": [{"solidity": 0.9999758181213195, "top": 1305, "right": 3600, "bottom": 5355, "left": 400}], "shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/724194f.jpg"} -{"rects": [{"solidity": 0.9999768012964761, "top": 630, "right": 2170, "bottom": 3015, "left": 580}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719952f.jpg"} -{"rects": [{"solidity": 0.9999772108710656, "top": 755, "right": 2445, "bottom": 3160, "left": 840}], "shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703992f.jpg"} -{"rects": [{"solidity": 0.9999774691407696, "top": 405, "right": 3305, "bottom": 2025, "left": 895}], "shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710612f.jpg"} -{"rects": [{"solidity": 0.9999775629519463, "top": 515, "right": 3490, "bottom": 2135, "left": 1070}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706547f.jpg"} -{"rects": [{"solidity": 0.9999795518794379, "top": 875, "right": 4260, "bottom": 3560, "left": 2430}, {"solidity": 0.9989760652016919, "top": 875, "right": 2160, "bottom": 3560, "left": 345}, {"solidity": 0.9990263630916717, "top": 875, "right": 6385, "bottom": 3540, "left": 4560}], "shape": {"h": 4420, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/710245f.jpg"} -{"rects": [{"solidity": 0.9999806675495152, "top": 870, "right": 2005, "bottom": 3285, "left": 390}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702116f.jpg"} -{"rects": [{"solidity": 0.9999807080158194, "top": 405, "right": 3230, "bottom": 2020, "left": 810}], "shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/704945f.jpg"} -{"rects": [{"solidity": 0.999980808659133, "top": 370, "right": 3270, "bottom": 1990, "left": 845}], "shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706719f.jpg"} -{"rects": [{"solidity": 0.9999835841133615, "top": 785, "right": 3790, "bottom": 3155, "left": 2175}, {"solidity": 0.9968984310487201, "top": 785, "right": 1930, "bottom": 3170, "left": 330}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712191f.jpg"} -{"rects": [{"solidity": 0.9999838061400639, "top": 465, "right": 3160, "bottom": 2075, "left": 750}], "shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/705677f.jpg"} -{"rects": [{"solidity": 0.999983838645032, "top": 775, "right": 2065, "bottom": 3190, "left": 455}], "shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703153f.jpg"} -{"rects": [{"solidity": 0.999983889313137, "top": 745, "right": 1995, "bottom": 3160, "left": 380}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733327f.jpg"} -{"rects": [{"solidity": 0.999983956309823, "top": 2310, "right": 3245, "bottom": 3935, "left": 835}, {"solidity": 0.9983726266128721, "top": 450, "right": 3265, "bottom": 2070, "left": 855}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/706654f.jpg"} -{"rects": [{"solidity": 0.9999840562749719, "top": 790, "right": 3740, "bottom": 3215, "left": 2115}, {"solidity": 0.9984261821989395, "top": 790, "right": 5585, "bottom": 3215, "left": 3960}, {"solidity": 0.9999710911175853, "top": 785, "right": 1895, "bottom": 3215, "left": 285}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706064f.jpg"} -{"rects": [{"solidity": 0.9999868958581084, "top": 435, "right": 3150, "bottom": 2040, "left": 760}], "shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714785f.jpg"} -{"rects": [{"solidity": 0.9999870169072326, "top": 385, "right": 3125, "bottom": 1985, "left": 705}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/702931f.jpg"} -{"rects": [{"solidity": 0.9999871126547287, "top": 590, "right": 3350, "bottom": 2205, "left": 935}], "shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706167f.jpg"} -{"rects": [{"solidity": 0.9999872446539155, "top": 530, "right": 3085, "bottom": 2155, "left": 660}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703263f.jpg"} -{"rects": [{"solidity": 0.9999893612041415, "top": 4430, "right": 3865, "bottom": 6010, "left": 130}, {"solidity": 0.9965607684993935, "top": 2265, "right": 3205, "bottom": 3870, "left": 795}, {"solidity": 0.99632993097637, "top": 420, "right": 3215, "bottom": 2025, "left": 815}], "shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/701125f.jpg"} -{"rects": [{"solidity": 0.99999023319866, "top": 470, "right": 3000, "bottom": 2075, "left": 595}], "shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706320f.jpg"} -{"rects": [{"solidity": 0.9999902632808849, "top": 340, "right": 3175, "bottom": 1960, "left": 785}], "shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707049f.jpg"} -{"rects": [{"solidity": 0.9999903138318481, "top": 745, "right": 2020, "bottom": 3155, "left": 405}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709703f.jpg"} -{"rects": [{"solidity": 0.9999903756202912, "top": 890, "right": 5915, "bottom": 2915, "left": 2695}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703752f.jpg"} -{"rects": [{"solidity": 0.9999903838140358, "top": 830, "right": 2035, "bottom": 3250, "left": 415}], "shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705015f.jpg"} -{"rects": [{"solidity": 0.9999909328578122, "top": 640, "right": 2230, "bottom": 2845, "left": 345}], "shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465657.jpg"} -{"rects": [{"solidity": 0.9999934883327202, "top": 790, "right": 2020, "bottom": 3195, "left": 415}, {"solidity": 0.9967483978915239, "top": 795, "right": 5660, "bottom": 3200, "left": 4055}, {"solidity": 0.9960621373021199, "top": 785, "right": 3860, "bottom": 3190, "left": 2260}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720101f.jpg"} -{"rects": [{"solidity": 0.999996076692809, "top": 915, "right": 3035, "bottom": 3095, "left": 1565}], "shape": {"h": 5990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465673.jpg"} -{"rects": [{"solidity": 0.9999984220832604, "top": 130, "right": 7130, "bottom": 2400, "left": 130}], "shape": {"h": 2530, "w": 7260}, "file": "/usr/local/google/home/danvk/milstein/1113255.jpg"} -{"rects": [{"solidity": 1.0, "top": 130, "right": 3820, "bottom": 2415, "left": 130}], "shape": {"h": 2545, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/727111f.jpg"} -{"rects": [{"solidity": 1.0, "top": 130, "right": 6010, "bottom": 3825, "left": 840}], "shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711867f.jpg"} -{"rects": [{"solidity": 1.0, "top": 130, "right": 6010, "bottom": 3830, "left": 3720}, {"solidity": 0.9805096138492998, "top": 590, "right": 2615, "bottom": 1910, "left": 690}], "shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710235f.jpg"} -{"rects": [{"solidity": 1.0, "top": 130, "right": 6010, "bottom": 3875, "left": 3800}, {"solidity": 0.9966253177192304, "top": 830, "right": 2305, "bottom": 3220, "left": 700}], "shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702509f.jpg"} -{"rects": [{"solidity": 1.0, "top": 130, "right": 7240, "bottom": 2340, "left": 130}], "shape": {"h": 2470, "w": 7370}, "file": "/usr/local/google/home/danvk/milstein/1113266.jpg"} -{"rects": [{"solidity": 1.0, "top": 130, "right": 7325, "bottom": 2410, "left": 130}], "shape": {"h": 2540, "w": 7455}, "file": "/usr/local/google/home/danvk/milstein/1113262.jpg"} -{"rects": [{"solidity": 1.0, "top": 5055, "right": 3870, "bottom": 6010, "left": 130}], "shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/710236f.jpg"} -{"shape": {"h": 1395, "w": 2165}, "file": "/usr/local/google/home/danvk/milstein/105047.jpg"} -{"shape": {"h": 1395, "w": 2190}, "file": "/usr/local/google/home/danvk/milstein/104753.jpg"} -{"shape": {"h": 1430, "w": 2220}, "file": "/usr/local/google/home/danvk/milstein/104439.jpg"} -{"shape": {"h": 1860, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1557747.jpg"} -{"shape": {"h": 2200, "w": 3700}, "file": "/usr/local/google/home/danvk/milstein/1558154.jpg"} -{"shape": {"h": 2215, "w": 2910}, "file": "/usr/local/google/home/danvk/milstein/1558158.jpg"} -{"shape": {"h": 2240, "w": 2845}, "file": "/usr/local/google/home/danvk/milstein/1558135.jpg"} -{"shape": {"h": 2255, "w": 2835}, "file": "/usr/local/google/home/danvk/milstein/718466f.jpg"} -{"shape": {"h": 2355, "w": 3650}, "file": "/usr/local/google/home/danvk/milstein/1557907.jpg"} -{"shape": {"h": 2385, "w": 3235}, "file": "/usr/local/google/home/danvk/milstein/1557923.jpg"} -{"shape": {"h": 2410, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1558493.jpg"} -{"shape": {"h": 2430, "w": 7210}, "file": "/usr/local/google/home/danvk/milstein/1113268.jpg"} -{"shape": {"h": 2510, "w": 3225}, "file": "/usr/local/google/home/danvk/milstein/1558380.jpg"} -{"shape": {"h": 2545, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558536.jpg"} -{"shape": {"h": 2570, "w": 3910}, "file": "/usr/local/google/home/danvk/milstein/1558084.jpg"} -{"shape": {"h": 2610, "w": 7155}, "file": "/usr/local/google/home/danvk/milstein/1113251.jpg"} -{"shape": {"h": 2610, "w": 7205}, "file": "/usr/local/google/home/danvk/milstein/1113240.jpg"} -{"shape": {"h": 2610, "w": 7225}, "file": "/usr/local/google/home/danvk/milstein/1113253.jpg"} -{"shape": {"h": 2610, "w": 7270}, "file": "/usr/local/google/home/danvk/milstein/1113261.jpg"} -{"shape": {"h": 2610, "w": 7360}, "file": "/usr/local/google/home/danvk/milstein/1113264.jpg"} -{"shape": {"h": 2610, "w": 7385}, "file": "/usr/local/google/home/danvk/milstein/1113243.jpg"} -{"shape": {"h": 2610, "w": 7430}, "file": "/usr/local/google/home/danvk/milstein/1113260.jpg"} -{"shape": {"h": 2615, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558446.jpg"} -{"shape": {"h": 2615, "w": 7150}, "file": "/usr/local/google/home/danvk/milstein/1113245.jpg"} -{"shape": {"h": 2615, "w": 7470}, "file": "/usr/local/google/home/danvk/milstein/1113246.jpg"} -{"shape": {"h": 2620, "w": 7390}, "file": "/usr/local/google/home/danvk/milstein/1113232.jpg"} -{"shape": {"h": 2625, "w": 7290}, "file": "/usr/local/google/home/danvk/milstein/1113269.jpg"} -{"shape": {"h": 2625, "w": 7360}, "file": "/usr/local/google/home/danvk/milstein/1113244.jpg"} -{"shape": {"h": 2625, "w": 7455}, "file": "/usr/local/google/home/danvk/milstein/1113252.jpg"} -{"shape": {"h": 2635, "w": 7160}, "file": "/usr/local/google/home/danvk/milstein/1113238.jpg"} -{"shape": {"h": 2635, "w": 7305}, "file": "/usr/local/google/home/danvk/milstein/1113267.jpg"} -{"shape": {"h": 2640, "w": 3075}, "file": "/usr/local/google/home/danvk/milstein/1558394.jpg"} -{"shape": {"h": 2640, "w": 3540}, "file": "/usr/local/google/home/danvk/milstein/1557839.jpg"} -{"shape": {"h": 2640, "w": 3615}, "file": "/usr/local/google/home/danvk/milstein/1558046.jpg"} -{"shape": {"h": 2640, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1557924.jpg"} -{"shape": {"h": 2640, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1558299.jpg"} -{"shape": {"h": 2640, "w": 7040}, "file": "/usr/local/google/home/danvk/milstein/1627897.jpg"} -{"shape": {"h": 2640, "w": 7310}, "file": "/usr/local/google/home/danvk/milstein/1113272.jpg"} -{"shape": {"h": 2645, "w": 7035}, "file": "/usr/local/google/home/danvk/milstein/1627899.jpg"} -{"shape": {"h": 2650, "w": 7000}, "file": "/usr/local/google/home/danvk/milstein/1627859.jpg"} -{"shape": {"h": 2650, "w": 7035}, "file": "/usr/local/google/home/danvk/milstein/1627857.jpg"} -{"shape": {"h": 2650, "w": 7200}, "file": "/usr/local/google/home/danvk/milstein/1113257.jpg"} -{"shape": {"h": 2650, "w": 7210}, "file": "/usr/local/google/home/danvk/milstein/1113231.jpg"} -{"shape": {"h": 2650, "w": 7325}, "file": "/usr/local/google/home/danvk/milstein/1113263.jpg"} -{"shape": {"h": 2650, "w": 7480}, "file": "/usr/local/google/home/danvk/milstein/1113270.jpg"} -{"shape": {"h": 2655, "w": 6990}, "file": "/usr/local/google/home/danvk/milstein/1627837.jpg"} -{"shape": {"h": 2655, "w": 7020}, "file": "/usr/local/google/home/danvk/milstein/1627845.jpg"} -{"shape": {"h": 2655, "w": 7365}, "file": "/usr/local/google/home/danvk/milstein/1113228.jpg"} -{"shape": {"h": 2655, "w": 7425}, "file": "/usr/local/google/home/danvk/milstein/1113230.jpg"} -{"shape": {"h": 2660, "w": 6970}, "file": "/usr/local/google/home/danvk/milstein/1627863.jpg"} -{"shape": {"h": 2660, "w": 6985}, "file": "/usr/local/google/home/danvk/milstein/1627855.jpg"} -{"shape": {"h": 2660, "w": 6990}, "file": "/usr/local/google/home/danvk/milstein/1627839.jpg"} -{"shape": {"h": 2660, "w": 6990}, "file": "/usr/local/google/home/danvk/milstein/1627877.jpg"} -{"shape": {"h": 2660, "w": 6990}, "file": "/usr/local/google/home/danvk/milstein/1627925.jpg"} -{"shape": {"h": 2660, "w": 6995}, "file": "/usr/local/google/home/danvk/milstein/1627841.jpg"} -{"shape": {"h": 2660, "w": 6995}, "file": "/usr/local/google/home/danvk/milstein/1627843.jpg"} -{"shape": {"h": 2660, "w": 6995}, "file": "/usr/local/google/home/danvk/milstein/1627871.jpg"} -{"shape": {"h": 2660, "w": 6995}, "file": "/usr/local/google/home/danvk/milstein/1627875.jpg"} -{"shape": {"h": 2660, "w": 7000}, "file": "/usr/local/google/home/danvk/milstein/1627869.jpg"} -{"shape": {"h": 2660, "w": 7005}, "file": "/usr/local/google/home/danvk/milstein/1627865.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627849.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627867.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627881.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627892.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627916.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627917.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627918.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627919.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627920.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627921.jpg"} -{"shape": {"h": 2660, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627926.jpg"} -{"shape": {"h": 2660, "w": 7015}, "file": "/usr/local/google/home/danvk/milstein/1627883.jpg"} -{"shape": {"h": 2660, "w": 7020}, "file": "/usr/local/google/home/danvk/milstein/1627893.jpg"} -{"shape": {"h": 2660, "w": 7020}, "file": "/usr/local/google/home/danvk/milstein/1627909.jpg"} -{"shape": {"h": 2660, "w": 7025}, "file": "/usr/local/google/home/danvk/milstein/1627861.jpg"} -{"shape": {"h": 2660, "w": 7025}, "file": "/usr/local/google/home/danvk/milstein/1627885.jpg"} -{"shape": {"h": 2660, "w": 7025}, "file": "/usr/local/google/home/danvk/milstein/1627887.jpg"} -{"shape": {"h": 2660, "w": 7025}, "file": "/usr/local/google/home/danvk/milstein/1627888.jpg"} -{"shape": {"h": 2660, "w": 7030}, "file": "/usr/local/google/home/danvk/milstein/1627851.jpg"} -{"shape": {"h": 2660, "w": 7030}, "file": "/usr/local/google/home/danvk/milstein/1627853.jpg"} -{"shape": {"h": 2660, "w": 7030}, "file": "/usr/local/google/home/danvk/milstein/1627889.jpg"} -{"shape": {"h": 2660, "w": 7030}, "file": "/usr/local/google/home/danvk/milstein/1627900.jpg"} -{"shape": {"h": 2660, "w": 7030}, "file": "/usr/local/google/home/danvk/milstein/1627904.jpg"} -{"shape": {"h": 2660, "w": 7035}, "file": "/usr/local/google/home/danvk/milstein/1627907.jpg"} -{"shape": {"h": 2660, "w": 7035}, "file": "/usr/local/google/home/danvk/milstein/1627908.jpg"} -{"shape": {"h": 2660, "w": 7040}, "file": "/usr/local/google/home/danvk/milstein/1627844.jpg"} -{"shape": {"h": 2660, "w": 7040}, "file": "/usr/local/google/home/danvk/milstein/1627847.jpg"} -{"shape": {"h": 2660, "w": 7040}, "file": "/usr/local/google/home/danvk/milstein/1627891.jpg"} -{"shape": {"h": 2660, "w": 7040}, "file": "/usr/local/google/home/danvk/milstein/1627905.jpg"} -{"shape": {"h": 2660, "w": 7040}, "file": "/usr/local/google/home/danvk/milstein/1627906.jpg"} -{"shape": {"h": 2660, "w": 7045}, "file": "/usr/local/google/home/danvk/milstein/1627895.jpg"} -{"shape": {"h": 2660, "w": 7045}, "file": "/usr/local/google/home/danvk/milstein/1627896.jpg"} -{"shape": {"h": 2660, "w": 7045}, "file": "/usr/local/google/home/danvk/milstein/1627903.jpg"} -{"shape": {"h": 2660, "w": 7055}, "file": "/usr/local/google/home/danvk/milstein/1627902.jpg"} -{"shape": {"h": 2660, "w": 7055}, "file": "/usr/local/google/home/danvk/milstein/1627910.jpg"} -{"shape": {"h": 2660, "w": 7075}, "file": "/usr/local/google/home/danvk/milstein/1627850.jpg"} -{"shape": {"h": 2660, "w": 7075}, "file": "/usr/local/google/home/danvk/milstein/1627886.jpg"} -{"shape": {"h": 2660, "w": 7395}, "file": "/usr/local/google/home/danvk/milstein/1113271.jpg"} -{"shape": {"h": 2660, "w": 7515}, "file": "/usr/local/google/home/danvk/milstein/1113258.jpg"} -{"shape": {"h": 2665, "w": 3710}, "file": "/usr/local/google/home/danvk/milstein/1558434.jpg"} -{"shape": {"h": 2665, "w": 3750}, "file": "/usr/local/google/home/danvk/milstein/1558416.jpg"} -{"shape": {"h": 2670, "w": 3345}, "file": "/usr/local/google/home/danvk/milstein/1558082.jpg"} -{"shape": {"h": 2670, "w": 6900}, "file": "/usr/local/google/home/danvk/milstein/1627912.jpg"} -{"shape": {"h": 2670, "w": 7030}, "file": "/usr/local/google/home/danvk/milstein/1627854.jpg"} -{"shape": {"h": 2670, "w": 7070}, "file": "/usr/local/google/home/danvk/milstein/1627846.jpg"} -{"shape": {"h": 2670, "w": 7325}, "file": "/usr/local/google/home/danvk/milstein/1113225.jpg"} -{"shape": {"h": 2670, "w": 7370}, "file": "/usr/local/google/home/danvk/milstein/1113254.jpg"} -{"shape": {"h": 2675, "w": 6990}, "file": "/usr/local/google/home/danvk/milstein/1627858.jpg"} -{"shape": {"h": 2675, "w": 7030}, "file": "/usr/local/google/home/danvk/milstein/1627838.jpg"} -{"shape": {"h": 2675, "w": 7035}, "file": "/usr/local/google/home/danvk/milstein/1627860.jpg"} -{"shape": {"h": 2675, "w": 7040}, "file": "/usr/local/google/home/danvk/milstein/1627873.jpg"} -{"shape": {"h": 2675, "w": 7110}, "file": "/usr/local/google/home/danvk/milstein/1627840.jpg"} -{"shape": {"h": 2675, "w": 7315}, "file": "/usr/local/google/home/danvk/milstein/1113223.jpg"} -{"shape": {"h": 2680, "w": 6985}, "file": "/usr/local/google/home/danvk/milstein/1627848.jpg"} -{"shape": {"h": 2680, "w": 6995}, "file": "/usr/local/google/home/danvk/milstein/1627866.jpg"} -{"shape": {"h": 2680, "w": 7030}, "file": "/usr/local/google/home/danvk/milstein/1627864.jpg"} -{"shape": {"h": 2680, "w": 7035}, "file": "/usr/local/google/home/danvk/milstein/1627868.jpg"} -{"shape": {"h": 2680, "w": 7140}, "file": "/usr/local/google/home/danvk/milstein/1627842.jpg"} -{"shape": {"h": 2680, "w": 7340}, "file": "/usr/local/google/home/danvk/milstein/1113229.jpg"} -{"shape": {"h": 2680, "w": 7410}, "file": "/usr/local/google/home/danvk/milstein/1113234.jpg"} -{"shape": {"h": 2685, "w": 6995}, "file": "/usr/local/google/home/danvk/milstein/1627870.jpg"} -{"shape": {"h": 2685, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627852.jpg"} -{"shape": {"h": 2685, "w": 7010}, "file": "/usr/local/google/home/danvk/milstein/1627862.jpg"} -{"shape": {"h": 2685, "w": 7020}, "file": "/usr/local/google/home/danvk/milstein/1627879.jpg"} -{"shape": {"h": 2685, "w": 7040}, "file": "/usr/local/google/home/danvk/milstein/1627876.jpg"} -{"shape": {"h": 2685, "w": 7050}, "file": "/usr/local/google/home/danvk/milstein/1627894.jpg"} -{"shape": {"h": 2685, "w": 7280}, "file": "/usr/local/google/home/danvk/milstein/1113239.jpg"} -{"shape": {"h": 2690, "w": 7085}, "file": "/usr/local/google/home/danvk/milstein/1627884.jpg"} -{"shape": {"h": 2700, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1558056.jpg"} -{"shape": {"h": 2700, "w": 6990}, "file": "/usr/local/google/home/danvk/milstein/1627872.jpg"} -{"shape": {"h": 2700, "w": 7200}, "file": "/usr/local/google/home/danvk/milstein/1113247.jpg"} -{"shape": {"h": 2700, "w": 7235}, "file": "/usr/local/google/home/danvk/milstein/1113235.jpg"} -{"shape": {"h": 2700, "w": 7245}, "file": "/usr/local/google/home/danvk/milstein/1113249.jpg"} -{"shape": {"h": 2700, "w": 7350}, "file": "/usr/local/google/home/danvk/milstein/1113265.jpg"} -{"shape": {"h": 2700, "w": 7355}, "file": "/usr/local/google/home/danvk/milstein/1113241.jpg"} -{"shape": {"h": 2700, "w": 7420}, "file": "/usr/local/google/home/danvk/milstein/1113250.jpg"} -{"shape": {"h": 2705, "w": 3675}, "file": "/usr/local/google/home/danvk/milstein/1558019.jpg"} -{"shape": {"h": 2705, "w": 3760}, "file": "/usr/local/google/home/danvk/milstein/1558498.jpg"} -{"shape": {"h": 2705, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558393.jpg"} -{"shape": {"h": 2705, "w": 7075}, "file": "/usr/local/google/home/danvk/milstein/1627880.jpg"} -{"shape": {"h": 2710, "w": 3770}, "file": "/usr/local/google/home/danvk/milstein/1557760.jpg"} -{"shape": {"h": 2710, "w": 7025}, "file": "/usr/local/google/home/danvk/milstein/1627874.jpg"} -{"shape": {"h": 2715, "w": 7065}, "file": "/usr/local/google/home/danvk/milstein/1627878.jpg"} -{"shape": {"h": 2715, "w": 7090}, "file": "/usr/local/google/home/danvk/milstein/1627882.jpg"} -{"shape": {"h": 2720, "w": 3760}, "file": "/usr/local/google/home/danvk/milstein/1557898.jpg"} -{"shape": {"h": 2720, "w": 3770}, "file": "/usr/local/google/home/danvk/milstein/1557766.jpg"} -{"shape": {"h": 2720, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1557979.jpg"} -{"shape": {"h": 2720, "w": 3795}, "file": "/usr/local/google/home/danvk/milstein/1557891.jpg"} -{"shape": {"h": 2720, "w": 7280}, "file": "/usr/local/google/home/danvk/milstein/1113237.jpg"} -{"shape": {"h": 2720, "w": 7405}, "file": "/usr/local/google/home/danvk/milstein/1113236.jpg"} -{"shape": {"h": 2720, "w": 7595}, "file": "/usr/local/google/home/danvk/milstein/1113233.jpg"} -{"shape": {"h": 2725, "w": 3745}, "file": "/usr/local/google/home/danvk/milstein/1558412.jpg"} -{"shape": {"h": 2730, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/1558459.jpg"} -{"shape": {"h": 2730, "w": 7365}, "file": "/usr/local/google/home/danvk/milstein/1113224.jpg"} -{"shape": {"h": 2730, "w": 7380}, "file": "/usr/local/google/home/danvk/milstein/1113227.jpg"} -{"shape": {"h": 2740, "w": 3595}, "file": "/usr/local/google/home/danvk/milstein/1558087.jpg"} -{"shape": {"h": 2740, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1557791.jpg"} -{"shape": {"h": 2745, "w": 3620}, "file": "/usr/local/google/home/danvk/milstein/1557886.jpg"} -{"shape": {"h": 2745, "w": 3725}, "file": "/usr/local/google/home/danvk/milstein/1558265.jpg"} -{"shape": {"h": 2745, "w": 3770}, "file": "/usr/local/google/home/danvk/milstein/1558431.jpg"} -{"shape": {"h": 2745, "w": 3785}, "file": "/usr/local/google/home/danvk/milstein/1558470.jpg"} -{"shape": {"h": 2745, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1558338.jpg"} -{"shape": {"h": 2745, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1558010.jpg"} -{"shape": {"h": 2750, "w": 3525}, "file": "/usr/local/google/home/danvk/milstein/1558054.jpg"} -{"shape": {"h": 2750, "w": 3815}, "file": "/usr/local/google/home/danvk/milstein/1558369.jpg"} -{"shape": {"h": 2760, "w": 3610}, "file": "/usr/local/google/home/danvk/milstein/1558333.jpg"} -{"shape": {"h": 2760, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558409.jpg"} -{"shape": {"h": 2760, "w": 7575}, "file": "/usr/local/google/home/danvk/milstein/1113248.jpg"} -{"shape": {"h": 2770, "w": 3815}, "file": "/usr/local/google/home/danvk/milstein/1558508.jpg"} -{"shape": {"h": 2770, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558548.jpg"} -{"shape": {"h": 2775, "w": 3810}, "file": "/usr/local/google/home/danvk/milstein/1558106.jpg"} -{"shape": {"h": 2780, "w": 3245}, "file": "/usr/local/google/home/danvk/milstein/1558387.jpg"} -{"shape": {"h": 2780, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1558337.jpg"} -{"shape": {"h": 2795, "w": 3735}, "file": "/usr/local/google/home/danvk/milstein/1558017.jpg"} -{"shape": {"h": 2795, "w": 3850}, "file": "/usr/local/google/home/danvk/milstein/1558496.jpg"} -{"shape": {"h": 2800, "w": 3630}, "file": "/usr/local/google/home/danvk/milstein/1557804.jpg"} -{"shape": {"h": 2800, "w": 3670}, "file": "/usr/local/google/home/danvk/milstein/1558224.jpg"} -{"shape": {"h": 2800, "w": 3730}, "file": "/usr/local/google/home/danvk/milstein/1558016.jpg"} -{"shape": {"h": 2810, "w": 3745}, "file": "/usr/local/google/home/danvk/milstein/1558250.jpg"} -{"shape": {"h": 2815, "w": 3505}, "file": "/usr/local/google/home/danvk/milstein/1558451.jpg"} -{"shape": {"h": 2815, "w": 3690}, "file": "/usr/local/google/home/danvk/milstein/1557950.jpg"} -{"shape": {"h": 2815, "w": 3690}, "file": "/usr/local/google/home/danvk/milstein/1558195.jpg"} -{"shape": {"h": 2815, "w": 3745}, "file": "/usr/local/google/home/danvk/milstein/1557945.jpg"} -{"shape": {"h": 2815, "w": 3745}, "file": "/usr/local/google/home/danvk/milstein/1558152.jpg"} -{"shape": {"h": 2820, "w": 3635}, "file": "/usr/local/google/home/danvk/milstein/1558267.jpg"} -{"shape": {"h": 2820, "w": 3690}, "file": "/usr/local/google/home/danvk/milstein/1558105.jpg"} -{"shape": {"h": 2820, "w": 3750}, "file": "/usr/local/google/home/danvk/milstein/1557802.jpg"} -{"shape": {"h": 2820, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1558078.jpg"} -{"shape": {"h": 2820, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558467.jpg"} -{"shape": {"h": 2825, "w": 3520}, "file": "/usr/local/google/home/danvk/milstein/1558011.jpg"} -{"shape": {"h": 2825, "w": 3765}, "file": "/usr/local/google/home/danvk/milstein/1557908.jpg"} -{"shape": {"h": 2825, "w": 3770}, "file": "/usr/local/google/home/danvk/milstein/1558423.jpg"} -{"shape": {"h": 2830, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1557911.jpg"} -{"shape": {"h": 2830, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558547.jpg"} -{"shape": {"h": 2830, "w": 3895}, "file": "/usr/local/google/home/danvk/milstein/1558502.jpg"} -{"shape": {"h": 2835, "w": 3740}, "file": "/usr/local/google/home/danvk/milstein/1558166.jpg"} -{"shape": {"h": 2835, "w": 3900}, "file": "/usr/local/google/home/danvk/milstein/1558537.jpg"} -{"shape": {"h": 2840, "w": 3625}, "file": "/usr/local/google/home/danvk/milstein/1558007.jpg"} -{"shape": {"h": 2840, "w": 3665}, "file": "/usr/local/google/home/danvk/milstein/1557818.jpg"} -{"shape": {"h": 2840, "w": 3815}, "file": "/usr/local/google/home/danvk/milstein/1557849.jpg"} -{"shape": {"h": 2850, "w": 3765}, "file": "/usr/local/google/home/danvk/milstein/1558469.jpg"} -{"shape": {"h": 2850, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558468.jpg"} -{"shape": {"h": 2855, "w": 3500}, "file": "/usr/local/google/home/danvk/milstein/1558318.jpg"} -{"shape": {"h": 2855, "w": 3625}, "file": "/usr/local/google/home/danvk/milstein/1558272.jpg"} -{"shape": {"h": 2855, "w": 3770}, "file": "/usr/local/google/home/danvk/milstein/1557756.jpg"} -{"shape": {"h": 2855, "w": 3810}, "file": "/usr/local/google/home/danvk/milstein/1558002.jpg"} -{"shape": {"h": 2855, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557929.jpg"} -{"shape": {"h": 2860, "w": 3650}, "file": "/usr/local/google/home/danvk/milstein/1558053.jpg"} -{"shape": {"h": 2860, "w": 3660}, "file": "/usr/local/google/home/danvk/milstein/1558312.jpg"} -{"shape": {"h": 2860, "w": 3725}, "file": "/usr/local/google/home/danvk/milstein/1558241.jpg"} -{"shape": {"h": 2860, "w": 3740}, "file": "/usr/local/google/home/danvk/milstein/1557892.jpg"} -{"shape": {"h": 2860, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/1557757.jpg"} -{"shape": {"h": 2865, "w": 3605}, "file": "/usr/local/google/home/danvk/milstein/1558003.jpg"} -{"shape": {"h": 2865, "w": 3665}, "file": "/usr/local/google/home/danvk/milstein/1558292.jpg"} -{"shape": {"h": 2865, "w": 3760}, "file": "/usr/local/google/home/danvk/milstein/1557832.jpg"} -{"shape": {"h": 2865, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1557774.jpg"} -{"shape": {"h": 2870, "w": 3655}, "file": "/usr/local/google/home/danvk/milstein/1557755.jpg"} -{"shape": {"h": 2870, "w": 3680}, "file": "/usr/local/google/home/danvk/milstein/1558163.jpg"} -{"shape": {"h": 2870, "w": 3760}, "file": "/usr/local/google/home/danvk/milstein/1558379.jpg"} -{"shape": {"h": 2870, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1558517.jpg"} -{"shape": {"h": 2875, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558125.jpg"} -{"shape": {"h": 2880, "w": 3385}, "file": "/usr/local/google/home/danvk/milstein/1558072.jpg"} -{"shape": {"h": 2880, "w": 3830}, "file": "/usr/local/google/home/danvk/milstein/1558510.jpg"} -{"shape": {"h": 2880, "w": 4445}, "file": "/usr/local/google/home/danvk/milstein/732459f.jpg"} -{"shape": {"h": 2885, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558452.jpg"} -{"shape": {"h": 2885, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1558553.jpg"} -{"shape": {"h": 2885, "w": 3865}, "file": "/usr/local/google/home/danvk/milstein/1558545.jpg"} -{"shape": {"h": 2890, "w": 3510}, "file": "/usr/local/google/home/danvk/milstein/1558540.jpg"} -{"shape": {"h": 2890, "w": 3815}, "file": "/usr/local/google/home/danvk/milstein/1558009.jpg"} -{"shape": {"h": 2895, "w": 3695}, "file": "/usr/local/google/home/danvk/milstein/1558000.jpg"} -{"shape": {"h": 2895, "w": 3760}, "file": "/usr/local/google/home/danvk/milstein/1558230.jpg"} -{"shape": {"h": 2895, "w": 3770}, "file": "/usr/local/google/home/danvk/milstein/1557799.jpg"} -{"shape": {"h": 2895, "w": 3830}, "file": "/usr/local/google/home/danvk/milstein/1558012.jpg"} -{"shape": {"h": 2895, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/1558005.jpg"} -{"shape": {"h": 2895, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/1558368.jpg"} -{"shape": {"h": 2900, "w": 3595}, "file": "/usr/local/google/home/danvk/milstein/1558100.jpg"} -{"shape": {"h": 2900, "w": 3795}, "file": "/usr/local/google/home/danvk/milstein/1558372.jpg"} -{"shape": {"h": 2900, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1557926.jpg"} -{"shape": {"h": 2900, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558464.jpg"} -{"shape": {"h": 2900, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558121.jpg"} -{"shape": {"h": 2900, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558437.jpg"} -{"shape": {"h": 2900, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1558400.jpg"} -{"shape": {"h": 2905, "w": 3650}, "file": "/usr/local/google/home/danvk/milstein/1558552.jpg"} -{"shape": {"h": 2905, "w": 3680}, "file": "/usr/local/google/home/danvk/milstein/1557828.jpg"} -{"shape": {"h": 2905, "w": 3765}, "file": "/usr/local/google/home/danvk/milstein/1558066.jpg"} -{"shape": {"h": 2910, "w": 3595}, "file": "/usr/local/google/home/danvk/milstein/1558278.jpg"} -{"shape": {"h": 2910, "w": 3700}, "file": "/usr/local/google/home/danvk/milstein/1557999.jpg"} -{"shape": {"h": 2915, "w": 3685}, "file": "/usr/local/google/home/danvk/milstein/1557811.jpg"} -{"shape": {"h": 2915, "w": 3785}, "file": "/usr/local/google/home/danvk/milstein/1558004.jpg"} -{"shape": {"h": 2915, "w": 3815}, "file": "/usr/local/google/home/danvk/milstein/1557919.jpg"} -{"shape": {"h": 2915, "w": 3835}, "file": "/usr/local/google/home/danvk/milstein/1557861.jpg"} -{"shape": {"h": 2915, "w": 3865}, "file": "/usr/local/google/home/danvk/milstein/1557767.jpg"} -{"shape": {"h": 2920, "w": 3725}, "file": "/usr/local/google/home/danvk/milstein/1558359.jpg"} -{"shape": {"h": 2920, "w": 3730}, "file": "/usr/local/google/home/danvk/milstein/1558306.jpg"} -{"shape": {"h": 2920, "w": 3770}, "file": "/usr/local/google/home/danvk/milstein/1558124.jpg"} -{"shape": {"h": 2920, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558099.jpg"} -{"shape": {"h": 2925, "w": 3550}, "file": "/usr/local/google/home/danvk/milstein/1558160.jpg"} -{"shape": {"h": 2925, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1558472.jpg"} -{"shape": {"h": 2925, "w": 3850}, "file": "/usr/local/google/home/danvk/milstein/1558525.jpg"} -{"shape": {"h": 2925, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558477.jpg"} -{"shape": {"h": 2930, "w": 3760}, "file": "/usr/local/google/home/danvk/milstein/1558490.jpg"} -{"shape": {"h": 2930, "w": 3830}, "file": "/usr/local/google/home/danvk/milstein/1557930.jpg"} -{"shape": {"h": 2935, "w": 3690}, "file": "/usr/local/google/home/danvk/milstein/1558386.jpg"} -{"shape": {"h": 2935, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1558189.jpg"} -{"shape": {"h": 2935, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/1558457.jpg"} -{"shape": {"h": 2940, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1557847.jpg"} -{"shape": {"h": 2945, "w": 3750}, "file": "/usr/local/google/home/danvk/milstein/1558518.jpg"} -{"shape": {"h": 2945, "w": 3755}, "file": "/usr/local/google/home/danvk/milstein/1558539.jpg"} -{"shape": {"h": 2945, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1558294.jpg"} -{"shape": {"h": 2945, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1558361.jpg"} -{"shape": {"h": 2945, "w": 4560}, "file": "/usr/local/google/home/danvk/milstein/712967f.jpg"} -{"shape": {"h": 2945, "w": 4565}, "file": "/usr/local/google/home/danvk/milstein/715550f.jpg"} -{"shape": {"h": 2950, "w": 3485}, "file": "/usr/local/google/home/danvk/milstein/1557990.jpg"} -{"shape": {"h": 2950, "w": 3740}, "file": "/usr/local/google/home/danvk/milstein/1557749.jpg"} -{"shape": {"h": 2950, "w": 3785}, "file": "/usr/local/google/home/danvk/milstein/1558101.jpg"} -{"shape": {"h": 2950, "w": 3835}, "file": "/usr/local/google/home/danvk/milstein/1558378.jpg"} -{"shape": {"h": 2955, "w": 3295}, "file": "/usr/local/google/home/danvk/milstein/1558141.jpg"} -{"shape": {"h": 2955, "w": 3765}, "file": "/usr/local/google/home/danvk/milstein/1558291.jpg"} -{"shape": {"h": 2955, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1557813.jpg"} -{"shape": {"h": 2955, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1558216.jpg"} -{"shape": {"h": 2955, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1558543.jpg"} -{"shape": {"h": 2960, "w": 2985}, "file": "/usr/local/google/home/danvk/milstein/1558013.jpg"} -{"shape": {"h": 2960, "w": 3640}, "file": "/usr/local/google/home/danvk/milstein/1558030.jpg"} -{"shape": {"h": 2960, "w": 3680}, "file": "/usr/local/google/home/danvk/milstein/1558069.jpg"} -{"shape": {"h": 2960, "w": 3710}, "file": "/usr/local/google/home/danvk/milstein/1558110.jpg"} -{"shape": {"h": 2960, "w": 3730}, "file": "/usr/local/google/home/danvk/milstein/1558218.jpg"} -{"shape": {"h": 2960, "w": 3740}, "file": "/usr/local/google/home/danvk/milstein/1558347.jpg"} -{"shape": {"h": 2960, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1558037.jpg"} -{"shape": {"h": 2960, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1557824.jpg"} -{"shape": {"h": 2960, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558353.jpg"} -{"shape": {"h": 2960, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558441.jpg"} -{"shape": {"h": 2960, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1557921.jpg"} -{"shape": {"h": 2960, "w": 3910}, "file": "/usr/local/google/home/danvk/milstein/1558456.jpg"} -{"shape": {"h": 2960, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/1558551.jpg"} -{"shape": {"h": 2965, "w": 3735}, "file": "/usr/local/google/home/danvk/milstein/1557814.jpg"} -{"shape": {"h": 2965, "w": 3750}, "file": "/usr/local/google/home/danvk/milstein/1558382.jpg"} -{"shape": {"h": 2965, "w": 3775}, "file": "/usr/local/google/home/danvk/milstein/1558242.jpg"} -{"shape": {"h": 2965, "w": 3795}, "file": "/usr/local/google/home/danvk/milstein/1558489.jpg"} -{"shape": {"h": 2965, "w": 3810}, "file": "/usr/local/google/home/danvk/milstein/1558486.jpg"} -{"shape": {"h": 2965, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557912.jpg"} -{"shape": {"h": 2965, "w": 3900}, "file": "/usr/local/google/home/danvk/milstein/1557773.jpg"} -{"shape": {"h": 2965, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508449.jpg"} -{"shape": {"h": 2970, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557788.jpg"} -{"shape": {"h": 2970, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557816.jpg"} -{"shape": {"h": 2975, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/1558480.jpg"} -{"shape": {"h": 2975, "w": 3720}, "file": "/usr/local/google/home/danvk/milstein/1558045.jpg"} -{"shape": {"h": 2975, "w": 3775}, "file": "/usr/local/google/home/danvk/milstein/1558260.jpg"} -{"shape": {"h": 2975, "w": 3785}, "file": "/usr/local/google/home/danvk/milstein/1557848.jpg"} -{"shape": {"h": 2975, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558317.jpg"} -{"shape": {"h": 2975, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558453.jpg"} -{"shape": {"h": 2975, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/1558162.jpg"} -{"shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509001.jpg"} -{"shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509035.jpg"} -{"shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509041.jpg"} -{"shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509053.jpg"} -{"shape": {"h": 2975, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1509065.jpg"} -{"shape": {"h": 2980, "w": 3755}, "file": "/usr/local/google/home/danvk/milstein/1558165.jpg"} -{"shape": {"h": 2980, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1557812.jpg"} -{"shape": {"h": 2980, "w": 3795}, "file": "/usr/local/google/home/danvk/milstein/1557932.jpg"} -{"shape": {"h": 2980, "w": 3810}, "file": "/usr/local/google/home/danvk/milstein/1557805.jpg"} -{"shape": {"h": 2980, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/1558544.jpg"} -{"shape": {"h": 2980, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/1507296.jpg"} -{"shape": {"h": 2985, "w": 3760}, "file": "/usr/local/google/home/danvk/milstein/1558348.jpg"} -{"shape": {"h": 2985, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1558055.jpg"} -{"shape": {"h": 2985, "w": 3810}, "file": "/usr/local/google/home/danvk/milstein/1558530.jpg"} -{"shape": {"h": 2985, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1558397.jpg"} -{"shape": {"h": 2990, "w": 3680}, "file": "/usr/local/google/home/danvk/milstein/1558283.jpg"} -{"shape": {"h": 2990, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1557810.jpg"} -{"shape": {"h": 2990, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558039.jpg"} -{"shape": {"h": 2990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1507316.jpg"} -{"shape": {"h": 2990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1508951.jpg"} -{"shape": {"h": 2990, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/1508965.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507499.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507564.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507569.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507595.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507597.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507598.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507615.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507621.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507622.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507625.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507913.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507925.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507943.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507959.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507965.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507967.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507973.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507975.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507977.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507985.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1507997.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508027.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508029.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508089.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508129.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508165.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508185.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508215.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508523.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508533.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509387.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716341f.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716378f.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716388f.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716483f.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716506f.jpg"} -{"shape": {"h": 2990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/716524f.jpg"} -{"shape": {"h": 2995, "w": 3720}, "file": "/usr/local/google/home/danvk/milstein/1557826.jpg"} -{"shape": {"h": 2995, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1558109.jpg"} -{"shape": {"h": 2995, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558138.jpg"} -{"shape": {"h": 2995, "w": 3815}, "file": "/usr/local/google/home/danvk/milstein/1558376.jpg"} -{"shape": {"h": 2995, "w": 3815}, "file": "/usr/local/google/home/danvk/milstein/1558430.jpg"} -{"shape": {"h": 3000, "w": 3735}, "file": "/usr/local/google/home/danvk/milstein/1558350.jpg"} -{"shape": {"h": 3000, "w": 3765}, "file": "/usr/local/google/home/danvk/milstein/1558065.jpg"} -{"shape": {"h": 3000, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1558413.jpg"} -{"shape": {"h": 3000, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558178.jpg"} -{"shape": {"h": 3000, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1557765.jpg"} -{"shape": {"h": 3000, "w": 3830}, "file": "/usr/local/google/home/danvk/milstein/1557901.jpg"} -{"shape": {"h": 3000, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1557822.jpg"} -{"shape": {"h": 3000, "w": 3865}, "file": "/usr/local/google/home/danvk/milstein/1557844.jpg"} -{"shape": {"h": 3000, "w": 3900}, "file": "/usr/local/google/home/danvk/milstein/1557809.jpg"} -{"shape": {"h": 3000, "w": 3900}, "file": "/usr/local/google/home/danvk/milstein/1557866.jpg"} -{"shape": {"h": 3000, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1509331.jpg"} -{"shape": {"h": 3000, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508457.jpg"} -{"shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507649.jpg"} -{"shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507665.jpg"} -{"shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1507695.jpg"} -{"shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508853.jpg"} -{"shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508907.jpg"} -{"shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508921.jpg"} -{"shape": {"h": 3000, "w": 4865}, "file": "/usr/local/google/home/danvk/milstein/1508929.jpg"} -{"shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508659.jpg"} -{"shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508679.jpg"} -{"shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508683.jpg"} -{"shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508711.jpg"} -{"shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508729.jpg"} -{"shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508747.jpg"} -{"shape": {"h": 3000, "w": 4875}, "file": "/usr/local/google/home/danvk/milstein/1508755.jpg"} -{"shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508539.jpg"} -{"shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508547.jpg"} -{"shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508557.jpg"} -{"shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508559.jpg"} -{"shape": {"h": 3000, "w": 4885}, "file": "/usr/local/google/home/danvk/milstein/1508573.jpg"} -{"shape": {"h": 3005, "w": 3510}, "file": "/usr/local/google/home/danvk/milstein/715917f.jpg"} -{"shape": {"h": 3005, "w": 3715}, "file": "/usr/local/google/home/danvk/milstein/1558127.jpg"} -{"shape": {"h": 3005, "w": 3730}, "file": "/usr/local/google/home/danvk/milstein/1558182.jpg"} -{"shape": {"h": 3005, "w": 3750}, "file": "/usr/local/google/home/danvk/milstein/1558438.jpg"} -{"shape": {"h": 3005, "w": 3765}, "file": "/usr/local/google/home/danvk/milstein/1558113.jpg"} -{"shape": {"h": 3005, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1557783.jpg"} -{"shape": {"h": 3005, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558305.jpg"} -{"shape": {"h": 3005, "w": 3830}, "file": "/usr/local/google/home/danvk/milstein/1558238.jpg"} -{"shape": {"h": 3005, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557854.jpg"} -{"shape": {"h": 3005, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558450.jpg"} -{"shape": {"h": 3005, "w": 3895}, "file": "/usr/local/google/home/danvk/milstein/1557982.jpg"} -{"shape": {"h": 3005, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1558442.jpg"} -{"shape": {"h": 3005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508225.jpg"} -{"shape": {"h": 3005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508229.jpg"} -{"shape": {"h": 3005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/1508247.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509129.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509133.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509163.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509203.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509207.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509213.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509227.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509249.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509253.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509263.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509265.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509299.jpg"} -{"shape": {"h": 3005, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1509323.jpg"} -{"shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508343.jpg"} -{"shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508363.jpg"} -{"shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508383.jpg"} -{"shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1508443.jpg"} -{"shape": {"h": 3005, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/1509105.jpg"} -{"shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508473.jpg"} -{"shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508475.jpg"} -{"shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509485.jpg"} -{"shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509503.jpg"} -{"shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509669.jpg"} -{"shape": {"h": 3005, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509691.jpg"} -{"shape": {"h": 3005, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1508465.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507713.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507715.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507725.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507765.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507805.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507833.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507837.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507841.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507885.jpg"} -{"shape": {"h": 3005, "w": 4900}, "file": "/usr/local/google/home/danvk/milstein/1507903.jpg"} -{"shape": {"h": 3010, "w": 3760}, "file": "/usr/local/google/home/danvk/milstein/1557753.jpg"} -{"shape": {"h": 3010, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1557846.jpg"} -{"shape": {"h": 3010, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558214.jpg"} -{"shape": {"h": 3010, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558433.jpg"} -{"shape": {"h": 3010, "w": 3835}, "file": "/usr/local/google/home/danvk/milstein/1558313.jpg"} -{"shape": {"h": 3010, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/1558174.jpg"} -{"shape": {"h": 3015, "w": 3670}, "file": "/usr/local/google/home/danvk/milstein/1558008.jpg"} -{"shape": {"h": 3015, "w": 3705}, "file": "/usr/local/google/home/danvk/milstein/1557752.jpg"} -{"shape": {"h": 3015, "w": 3775}, "file": "/usr/local/google/home/danvk/milstein/1558167.jpg"} -{"shape": {"h": 3015, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558424.jpg"} -{"shape": {"h": 3015, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558444.jpg"} -{"shape": {"h": 3015, "w": 3895}, "file": "/usr/local/google/home/danvk/milstein/1557882.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508487.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508495.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508497.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508505.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508507.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508515.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508517.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1508519.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509405.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509415.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509417.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509419.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509423.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509425.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509433.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509435.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509443.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509455.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509461.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509463.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509465.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509473.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509479.jpg"} -{"shape": {"h": 3015, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/1509531.jpg"} -{"shape": {"h": 3015, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/1509647.jpg"} -{"shape": {"h": 3015, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/1509655.jpg"} -{"shape": {"h": 3015, "w": 4665}, "file": "/usr/local/google/home/danvk/milstein/1509663.jpg"} -{"shape": {"h": 3020, "w": 3725}, "file": "/usr/local/google/home/danvk/milstein/1557777.jpg"} -{"shape": {"h": 3020, "w": 3735}, "file": "/usr/local/google/home/danvk/milstein/1557776.jpg"} -{"shape": {"h": 3020, "w": 3770}, "file": "/usr/local/google/home/danvk/milstein/1558248.jpg"} -{"shape": {"h": 3020, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/1558249.jpg"} -{"shape": {"h": 3020, "w": 3785}, "file": "/usr/local/google/home/danvk/milstein/1558269.jpg"} -{"shape": {"h": 3020, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1558355.jpg"} -{"shape": {"h": 3020, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1558381.jpg"} -{"shape": {"h": 3020, "w": 3825}, "file": "/usr/local/google/home/danvk/milstein/1557801.jpg"} -{"shape": {"h": 3020, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1557793.jpg"} -{"shape": {"h": 3020, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/1557845.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509763.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509767.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509775.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509785.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509787.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509793.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509805.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509815.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509817.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509819.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509825.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509827.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509829.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509837.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509841.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509845.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509853.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509863.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509867.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509873.jpg"} -{"shape": {"h": 3020, "w": 4650}, "file": "/usr/local/google/home/danvk/milstein/1509877.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509881.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509901.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509907.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509919.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509925.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509931.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509943.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509947.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509953.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509955.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509961.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509997.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1509999.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1510001.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1510007.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517099.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517101.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517111.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517113.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517117.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517123.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517133.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715876f.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715916f.jpg"} -{"shape": {"h": 3020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/715981f.jpg"} -{"shape": {"h": 3025, "w": 3830}, "file": "/usr/local/google/home/danvk/milstein/1557800.jpg"} -{"shape": {"h": 3030, "w": 3455}, "file": "/usr/local/google/home/danvk/milstein/1558251.jpg"} -{"shape": {"h": 3030, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558335.jpg"} -{"shape": {"h": 3030, "w": 3810}, "file": "/usr/local/google/home/danvk/milstein/1558375.jpg"} -{"shape": {"h": 3030, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/715685f.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516941.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516943.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516955.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516973.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516983.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516985.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516987.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1516991.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517001.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517003.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517021.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517025.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517035.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517041.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517043.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517045.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517047.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517049.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517055.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517063.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517077.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517081.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517085.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517089.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517145.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517151.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517153.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517161.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517181.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517187.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517189.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517191.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517267.jpg"} -{"shape": {"h": 3030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517269.jpg"} -{"shape": {"h": 3035, "w": 3690}, "file": "/usr/local/google/home/danvk/milstein/1557751.jpg"} -{"shape": {"h": 3035, "w": 3765}, "file": "/usr/local/google/home/danvk/milstein/1557794.jpg"} -{"shape": {"h": 3035, "w": 3825}, "file": "/usr/local/google/home/danvk/milstein/1557838.jpg"} -{"shape": {"h": 3040, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1558014.jpg"} -{"shape": {"h": 3040, "w": 3395}, "file": "/usr/local/google/home/danvk/milstein/1558052.jpg"} -{"shape": {"h": 3040, "w": 3790}, "file": "/usr/local/google/home/danvk/milstein/1558122.jpg"} -{"shape": {"h": 3040, "w": 3795}, "file": "/usr/local/google/home/danvk/milstein/1558405.jpg"} -{"shape": {"h": 3040, "w": 3810}, "file": "/usr/local/google/home/danvk/milstein/1557806.jpg"} -{"shape": {"h": 3040, "w": 3835}, "file": "/usr/local/google/home/danvk/milstein/1558418.jpg"} -{"shape": {"h": 3040, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558406.jpg"} -{"shape": {"h": 3040, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1558383.jpg"} -{"shape": {"h": 3040, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558483.jpg"} -{"shape": {"h": 3040, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/1557762.jpg"} -{"shape": {"h": 3040, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/715791f.jpg"} -{"shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715815f.jpg"} -{"shape": {"h": 3040, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/715817f.jpg"} -{"shape": {"h": 3040, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/1517015.jpg"} -{"shape": {"h": 3045, "w": 3535}, "file": "/usr/local/google/home/danvk/milstein/1558247.jpg"} -{"shape": {"h": 3045, "w": 3670}, "file": "/usr/local/google/home/danvk/milstein/1558425.jpg"} -{"shape": {"h": 3045, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/1558048.jpg"} -{"shape": {"h": 3045, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/1558460.jpg"} -{"shape": {"h": 3050, "w": 3795}, "file": "/usr/local/google/home/danvk/milstein/1558098.jpg"} -{"shape": {"h": 3050, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1557843.jpg"} -{"shape": {"h": 3050, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558074.jpg"} -{"shape": {"h": 3050, "w": 3900}, "file": "/usr/local/google/home/danvk/milstein/1558471.jpg"} -{"shape": {"h": 3055, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1557763.jpg"} -{"shape": {"h": 3055, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558266.jpg"} -{"shape": {"h": 3060, "w": 3050}, "file": "/usr/local/google/home/danvk/milstein/1558221.jpg"} -{"shape": {"h": 3060, "w": 3250}, "file": "/usr/local/google/home/danvk/milstein/1557953.jpg"} -{"shape": {"h": 3060, "w": 3500}, "file": "/usr/local/google/home/danvk/milstein/1558237.jpg"} -{"shape": {"h": 3060, "w": 3605}, "file": "/usr/local/google/home/danvk/milstein/1557862.jpg"} -{"shape": {"h": 3060, "w": 3630}, "file": "/usr/local/google/home/danvk/milstein/1558297.jpg"} -{"shape": {"h": 3060, "w": 3700}, "file": "/usr/local/google/home/danvk/milstein/1558123.jpg"} -{"shape": {"h": 3060, "w": 3705}, "file": "/usr/local/google/home/danvk/milstein/1558188.jpg"} -{"shape": {"h": 3060, "w": 3735}, "file": "/usr/local/google/home/danvk/milstein/1558281.jpg"} -{"shape": {"h": 3060, "w": 3745}, "file": "/usr/local/google/home/danvk/milstein/1557764.jpg"} -{"shape": {"h": 3060, "w": 3750}, "file": "/usr/local/google/home/danvk/milstein/1558197.jpg"} -{"shape": {"h": 3060, "w": 3750}, "file": "/usr/local/google/home/danvk/milstein/1558542.jpg"} -{"shape": {"h": 3060, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1557779.jpg"} -{"shape": {"h": 3060, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558231.jpg"} -{"shape": {"h": 3060, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558465.jpg"} -{"shape": {"h": 3060, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558488.jpg"} -{"shape": {"h": 3060, "w": 3800}, "file": "/usr/local/google/home/danvk/milstein/1558538.jpg"} -{"shape": {"h": 3060, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1558164.jpg"} -{"shape": {"h": 3060, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1558495.jpg"} -{"shape": {"h": 3060, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1557904.jpg"} -{"shape": {"h": 3060, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558091.jpg"} -{"shape": {"h": 3060, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558473.jpg"} -{"shape": {"h": 3060, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1557796.jpg"} -{"shape": {"h": 3060, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558134.jpg"} -{"shape": {"h": 3060, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558168.jpg"} -{"shape": {"h": 3060, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1558352.jpg"} -{"shape": {"h": 3060, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1558535.jpg"} -{"shape": {"h": 3060, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/1558521.jpg"} -{"shape": {"h": 3060, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1557772.jpg"} -{"shape": {"h": 3060, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1558356.jpg"} -{"shape": {"h": 3060, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1558541.jpg"} -{"shape": {"h": 3060, "w": 3865}, "file": "/usr/local/google/home/danvk/milstein/1558236.jpg"} -{"shape": {"h": 3060, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557745.jpg"} -{"shape": {"h": 3060, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557914.jpg"} -{"shape": {"h": 3060, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557941.jpg"} -{"shape": {"h": 3060, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558133.jpg"} -{"shape": {"h": 3060, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558172.jpg"} -{"shape": {"h": 3060, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558385.jpg"} -{"shape": {"h": 3060, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558401.jpg"} -{"shape": {"h": 3060, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558512.jpg"} -{"shape": {"h": 3060, "w": 3900}, "file": "/usr/local/google/home/danvk/milstein/1558351.jpg"} -{"shape": {"h": 3060, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/1557853.jpg"} -{"shape": {"h": 3060, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/1558509.jpg"} -{"shape": {"h": 3060, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/1558503.jpg"} -{"shape": {"h": 3065, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558445.jpg"} -{"shape": {"h": 3070, "w": 3820}, "file": "/usr/local/google/home/danvk/milstein/1558476.jpg"} -{"shape": {"h": 3070, "w": 3910}, "file": "/usr/local/google/home/danvk/milstein/1558410.jpg"} -{"shape": {"h": 3075, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1558342.jpg"} -{"shape": {"h": 3075, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558550.jpg"} -{"shape": {"h": 3075, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1558398.jpg"} -{"shape": {"h": 3080, "w": 3810}, "file": "/usr/local/google/home/danvk/milstein/1558194.jpg"} -{"shape": {"h": 3080, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558520.jpg"} -{"shape": {"h": 3080, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558173.jpg"} -{"shape": {"h": 3080, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558500.jpg"} -{"shape": {"h": 3085, "w": 3665}, "file": "/usr/local/google/home/danvk/milstein/1558528.jpg"} -{"shape": {"h": 3085, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/1558411.jpg"} -{"shape": {"h": 3085, "w": 3900}, "file": "/usr/local/google/home/danvk/milstein/1558107.jpg"} -{"shape": {"h": 3090, "w": 3760}, "file": "/usr/local/google/home/danvk/milstein/1558270.jpg"} -{"shape": {"h": 3090, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1557821.jpg"} -{"shape": {"h": 3090, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1557933.jpg"} -{"shape": {"h": 3090, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1558507.jpg"} -{"shape": {"h": 3090, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/1558458.jpg"} -{"shape": {"h": 3095, "w": 3725}, "file": "/usr/local/google/home/danvk/milstein/1558191.jpg"} -{"shape": {"h": 3095, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558274.jpg"} -{"shape": {"h": 3100, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1557966.jpg"} -{"shape": {"h": 3100, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1558143.jpg"} -{"shape": {"h": 3100, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558439.jpg"} -{"shape": {"h": 3100, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558504.jpg"} -{"shape": {"h": 3100, "w": 3900}, "file": "/usr/local/google/home/danvk/milstein/1558145.jpg"} -{"shape": {"h": 3100, "w": 3900}, "file": "/usr/local/google/home/danvk/milstein/1558501.jpg"} -{"shape": {"h": 3100, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1558186.jpg"} -{"shape": {"h": 3100, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/1558117.jpg"} -{"shape": {"h": 3105, "w": 3720}, "file": "/usr/local/google/home/danvk/milstein/1558155.jpg"} -{"shape": {"h": 3105, "w": 3755}, "file": "/usr/local/google/home/danvk/milstein/1558462.jpg"} -{"shape": {"h": 3105, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1558524.jpg"} -{"shape": {"h": 3110, "w": 3745}, "file": "/usr/local/google/home/danvk/milstein/1558403.jpg"} -{"shape": {"h": 3110, "w": 3785}, "file": "/usr/local/google/home/danvk/milstein/1558253.jpg"} -{"shape": {"h": 3110, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558516.jpg"} -{"shape": {"h": 3110, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557967.jpg"} -{"shape": {"h": 3110, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558144.jpg"} -{"shape": {"h": 3115, "w": 3890}, "file": "/usr/local/google/home/danvk/milstein/1558454.jpg"} -{"shape": {"h": 3120, "w": 3690}, "file": "/usr/local/google/home/danvk/milstein/1557835.jpg"} -{"shape": {"h": 3120, "w": 3830}, "file": "/usr/local/google/home/danvk/milstein/1558533.jpg"} -{"shape": {"h": 3120, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1557840.jpg"} -{"shape": {"h": 3120, "w": 3860}, "file": "/usr/local/google/home/danvk/milstein/1557841.jpg"} -{"shape": {"h": 3120, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/1557928.jpg"} -{"shape": {"h": 3120, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/1558070.jpg"} -{"shape": {"h": 3120, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/1557895.jpg"} -{"shape": {"h": 3120, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/1558036.jpg"} -{"shape": {"h": 3120, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/1558035.jpg"} -{"shape": {"h": 3125, "w": 3845}, "file": "/usr/local/google/home/danvk/milstein/1558396.jpg"} -{"shape": {"h": 3125, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/1558466.jpg"} -{"shape": {"h": 3125, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558132.jpg"} -{"shape": {"h": 3125, "w": 3915}, "file": "/usr/local/google/home/danvk/milstein/1558513.jpg"} -{"shape": {"h": 3130, "w": 3685}, "file": "/usr/local/google/home/danvk/milstein/1558354.jpg"} -{"shape": {"h": 3130, "w": 3805}, "file": "/usr/local/google/home/danvk/milstein/1557808.jpg"} -{"shape": {"h": 3130, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558475.jpg"} -{"shape": {"h": 3130, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1557797.jpg"} -{"shape": {"h": 3130, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/1558058.jpg"} -{"shape": {"h": 3130, "w": 3920}, "file": "/usr/local/google/home/danvk/milstein/1558499.jpg"} -{"shape": {"h": 3130, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/1558246.jpg"} -{"shape": {"h": 3130, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/1557931.jpg"} -{"shape": {"h": 3135, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558429.jpg"} -{"shape": {"h": 3135, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/1557927.jpg"} -{"shape": {"h": 3140, "w": 3795}, "file": "/usr/local/google/home/danvk/milstein/1557925.jpg"} -{"shape": {"h": 3140, "w": 3870}, "file": "/usr/local/google/home/danvk/milstein/1557842.jpg"} -{"shape": {"h": 3140, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557803.jpg"} -{"shape": {"h": 3140, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1558522.jpg"} -{"shape": {"h": 3140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/1558161.jpg"} -{"shape": {"h": 3140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/1557975.jpg"} -{"shape": {"h": 3140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/1558129.jpg"} -{"shape": {"h": 3140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/1558149.jpg"} -{"shape": {"h": 3145, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1558463.jpg"} -{"shape": {"h": 3145, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/1558307.jpg"} -{"shape": {"h": 3150, "w": 3850}, "file": "/usr/local/google/home/danvk/milstein/1558303.jpg"} -{"shape": {"h": 3150, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/1558196.jpg"} -{"shape": {"h": 3150, "w": 4100}, "file": "/usr/local/google/home/danvk/milstein/732265f.jpg"} -{"shape": {"h": 3155, "w": 2925}, "file": "/usr/local/google/home/danvk/milstein/1558531.jpg"} -{"shape": {"h": 3155, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557852.jpg"} -{"shape": {"h": 3155, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/1557920.jpg"} -{"shape": {"h": 3160, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/1557857.jpg"} -{"shape": {"h": 3160, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/1558414.jpg"} -{"shape": {"h": 3160, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/1558206.jpg"} -{"shape": {"h": 3165, "w": 3840}, "file": "/usr/local/google/home/danvk/milstein/1558523.jpg"} -{"shape": {"h": 3165, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/1557769.jpg"} -{"shape": {"h": 3165, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/1558426.jpg"} -{"shape": {"h": 3170, "w": 3865}, "file": "/usr/local/google/home/danvk/milstein/1557771.jpg"} -{"shape": {"h": 3170, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/1558549.jpg"} -{"shape": {"h": 3175, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/1558364.jpg"} -{"shape": {"h": 3180, "w": 3420}, "file": "/usr/local/google/home/danvk/milstein/1558243.jpg"} -{"shape": {"h": 3180, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/1558519.jpg"} -{"shape": {"h": 3180, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/1558095.jpg"} -{"shape": {"h": 3185, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/1558366.jpg"} -{"shape": {"h": 3185, "w": 4990}, "file": "/usr/local/google/home/danvk/milstein/707410f.jpg"} -{"shape": {"h": 3190, "w": 3830}, "file": "/usr/local/google/home/danvk/milstein/1557770.jpg"} -{"shape": {"h": 3190, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/1558481.jpg"} -{"shape": {"h": 3205, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/1558201.jpg"} -{"shape": {"h": 3220, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/1557758.jpg"} -{"shape": {"h": 3225, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/1558399.jpg"} -{"shape": {"h": 3225, "w": 5080}, "file": "/usr/local/google/home/danvk/milstein/709647f.jpg"} -{"shape": {"h": 3230, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/1558370.jpg"} -{"shape": {"h": 3230, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/1558153.jpg"} -{"shape": {"h": 3230, "w": 5030}, "file": "/usr/local/google/home/danvk/milstein/708095f.jpg"} -{"shape": {"h": 3240, "w": 4340}, "file": "/usr/local/google/home/danvk/milstein/1152564.jpg"} -{"shape": {"h": 3280, "w": 4190}, "file": "/usr/local/google/home/danvk/milstein/1152565.jpg"} -{"shape": {"h": 3280, "w": 4375}, "file": "/usr/local/google/home/danvk/milstein/1152566.jpg"} -{"shape": {"h": 3290, "w": 2910}, "file": "/usr/local/google/home/danvk/milstein/1558047.jpg"} -{"shape": {"h": 3310, "w": 4120}, "file": "/usr/local/google/home/danvk/milstein/719149f.jpg"} -{"shape": {"h": 3360, "w": 2995}, "file": "/usr/local/google/home/danvk/milstein/1557867.jpg"} -{"shape": {"h": 3365, "w": 2890}, "file": "/usr/local/google/home/danvk/milstein/1557952.jpg"} -{"shape": {"h": 3380, "w": 2880}, "file": "/usr/local/google/home/danvk/milstein/1558235.jpg"} -{"shape": {"h": 3410, "w": 2750}, "file": "/usr/local/google/home/danvk/milstein/1558086.jpg"} -{"shape": {"h": 3455, "w": 2860}, "file": "/usr/local/google/home/danvk/milstein/1558435.jpg"} -{"shape": {"h": 3460, "w": 2960}, "file": "/usr/local/google/home/danvk/milstein/1558532.jpg"} -{"shape": {"h": 3475, "w": 2470}, "file": "/usr/local/google/home/danvk/milstein/1558336.jpg"} -{"shape": {"h": 3500, "w": 2660}, "file": "/usr/local/google/home/danvk/milstein/1558228.jpg"} -{"shape": {"h": 3510, "w": 5800}, "file": "/usr/local/google/home/danvk/milstein/1640879.jpg"} -{"shape": {"h": 3530, "w": 2770}, "file": "/usr/local/google/home/danvk/milstein/1558067.jpg"} -{"shape": {"h": 3545, "w": 2765}, "file": "/usr/local/google/home/danvk/milstein/1558171.jpg"} -{"shape": {"h": 3550, "w": 3055}, "file": "/usr/local/google/home/danvk/milstein/1558220.jpg"} -{"shape": {"h": 3560, "w": 2500}, "file": "/usr/local/google/home/danvk/milstein/1558150.jpg"} -{"shape": {"h": 3560, "w": 3090}, "file": "/usr/local/google/home/danvk/milstein/1558204.jpg"} -{"shape": {"h": 3565, "w": 2800}, "file": "/usr/local/google/home/danvk/milstein/1558255.jpg"} -{"shape": {"h": 3575, "w": 2865}, "file": "/usr/local/google/home/danvk/milstein/1558315.jpg"} -{"shape": {"h": 3580, "w": 2265}, "file": "/usr/local/google/home/danvk/milstein/1557981.jpg"} -{"shape": {"h": 3580, "w": 2905}, "file": "/usr/local/google/home/danvk/milstein/1557978.jpg"} -{"shape": {"h": 3585, "w": 2255}, "file": "/usr/local/google/home/danvk/milstein/1557987.jpg"} -{"shape": {"h": 3590, "w": 2680}, "file": "/usr/local/google/home/danvk/milstein/1558314.jpg"} -{"shape": {"h": 3590, "w": 3045}, "file": "/usr/local/google/home/danvk/milstein/1558022.jpg"} -{"shape": {"h": 3600, "w": 2985}, "file": "/usr/local/google/home/danvk/milstein/1558325.jpg"} -{"shape": {"h": 3600, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1558240.jpg"} -{"shape": {"h": 3605, "w": 2940}, "file": "/usr/local/google/home/danvk/milstein/1557992.jpg"} -{"shape": {"h": 3605, "w": 3155}, "file": "/usr/local/google/home/danvk/milstein/1558443.jpg"} -{"shape": {"h": 3610, "w": 2370}, "file": "/usr/local/google/home/danvk/milstein/1558225.jpg"} -{"shape": {"h": 3610, "w": 3060}, "file": "/usr/local/google/home/danvk/milstein/1558390.jpg"} -{"shape": {"h": 3615, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1558461.jpg"} -{"shape": {"h": 3620, "w": 2750}, "file": "/usr/local/google/home/danvk/milstein/1557993.jpg"} -{"shape": {"h": 3620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1557977.jpg"} -{"shape": {"h": 3620, "w": 3080}, "file": "/usr/local/google/home/danvk/milstein/1558111.jpg"} -{"shape": {"h": 3625, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/1558268.jpg"} -{"shape": {"h": 3625, "w": 2985}, "file": "/usr/local/google/home/danvk/milstein/1558179.jpg"} -{"shape": {"h": 3625, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711884f.jpg"} -{"shape": {"h": 3630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1558448.jpg"} -{"shape": {"h": 3635, "w": 2380}, "file": "/usr/local/google/home/danvk/milstein/1557915.jpg"} -{"shape": {"h": 3640, "w": 2950}, "file": "/usr/local/google/home/danvk/milstein/1558043.jpg"} -{"shape": {"h": 3640, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1558301.jpg"} -{"shape": {"h": 3650, "w": 2580}, "file": "/usr/local/google/home/danvk/milstein/1558360.jpg"} -{"shape": {"h": 3650, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732745f.jpg"} -{"shape": {"h": 3660, "w": 2780}, "file": "/usr/local/google/home/danvk/milstein/1557877.jpg"} -{"shape": {"h": 3660, "w": 2880}, "file": "/usr/local/google/home/danvk/milstein/1558183.jpg"} -{"shape": {"h": 3660, "w": 2890}, "file": "/usr/local/google/home/danvk/milstein/1557863.jpg"} -{"shape": {"h": 3660, "w": 2895}, "file": "/usr/local/google/home/danvk/milstein/1558377.jpg"} -{"shape": {"h": 3660, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1558081.jpg"} -{"shape": {"h": 3660, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1557958.jpg"} -{"shape": {"h": 3660, "w": 3080}, "file": "/usr/local/google/home/danvk/milstein/1558319.jpg"} -{"shape": {"h": 3660, "w": 3100}, "file": "/usr/local/google/home/danvk/milstein/1558024.jpg"} -{"shape": {"h": 3665, "w": 2820}, "file": "/usr/local/google/home/danvk/milstein/1557748.jpg"} -{"shape": {"h": 3665, "w": 3070}, "file": "/usr/local/google/home/danvk/milstein/1557971.jpg"} -{"shape": {"h": 3670, "w": 2840}, "file": "/usr/local/google/home/danvk/milstein/1558420.jpg"} -{"shape": {"h": 3670, "w": 2875}, "file": "/usr/local/google/home/danvk/milstein/1557985.jpg"} -{"shape": {"h": 3670, "w": 2880}, "file": "/usr/local/google/home/danvk/milstein/1558023.jpg"} -{"shape": {"h": 3670, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1558310.jpg"} -{"shape": {"h": 3675, "w": 2440}, "file": "/usr/local/google/home/danvk/milstein/1557940.jpg"} -{"shape": {"h": 3680, "w": 2565}, "file": "/usr/local/google/home/danvk/milstein/1558185.jpg"} -{"shape": {"h": 3680, "w": 2875}, "file": "/usr/local/google/home/danvk/milstein/1558006.jpg"} -{"shape": {"h": 3680, "w": 2935}, "file": "/usr/local/google/home/danvk/milstein/1558290.jpg"} -{"shape": {"h": 3680, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1557807.jpg"} -{"shape": {"h": 3685, "w": 2885}, "file": "/usr/local/google/home/danvk/milstein/1557986.jpg"} -{"shape": {"h": 3685, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1557746.jpg"} -{"shape": {"h": 3685, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1557902.jpg"} -{"shape": {"h": 3690, "w": 2620}, "file": "/usr/local/google/home/danvk/milstein/1558252.jpg"} -{"shape": {"h": 3690, "w": 2800}, "file": "/usr/local/google/home/danvk/milstein/1558374.jpg"} -{"shape": {"h": 3690, "w": 2900}, "file": "/usr/local/google/home/danvk/milstein/1557872.jpg"} -{"shape": {"h": 3690, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1558339.jpg"} -{"shape": {"h": 3700, "w": 2970}, "file": "/usr/local/google/home/danvk/milstein/1558077.jpg"} -{"shape": {"h": 3700, "w": 3060}, "file": "/usr/local/google/home/danvk/milstein/1558334.jpg"} -{"shape": {"h": 3710, "w": 2855}, "file": "/usr/local/google/home/danvk/milstein/1558096.jpg"} -{"shape": {"h": 3710, "w": 2925}, "file": "/usr/local/google/home/danvk/milstein/1557954.jpg"} -{"shape": {"h": 3710, "w": 2935}, "file": "/usr/local/google/home/danvk/milstein/1558120.jpg"} -{"shape": {"h": 3710, "w": 2945}, "file": "/usr/local/google/home/danvk/milstein/1557785.jpg"} -{"shape": {"h": 3715, "w": 2660}, "file": "/usr/local/google/home/danvk/milstein/1558341.jpg"} -{"shape": {"h": 3720, "w": 2755}, "file": "/usr/local/google/home/danvk/milstein/1558057.jpg"} -{"shape": {"h": 3720, "w": 2855}, "file": "/usr/local/google/home/danvk/milstein/1558256.jpg"} -{"shape": {"h": 3720, "w": 2895}, "file": "/usr/local/google/home/danvk/milstein/1557750.jpg"} -{"shape": {"h": 3720, "w": 2915}, "file": "/usr/local/google/home/danvk/milstein/1558222.jpg"} -{"shape": {"h": 3720, "w": 2920}, "file": "/usr/local/google/home/danvk/milstein/1558151.jpg"} -{"shape": {"h": 3720, "w": 2950}, "file": "/usr/local/google/home/danvk/milstein/1558419.jpg"} -{"shape": {"h": 3720, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1558311.jpg"} -{"shape": {"h": 3725, "w": 2625}, "file": "/usr/local/google/home/danvk/milstein/1558130.jpg"} -{"shape": {"h": 3725, "w": 2895}, "file": "/usr/local/google/home/danvk/milstein/1558184.jpg"} -{"shape": {"h": 3725, "w": 2940}, "file": "/usr/local/google/home/danvk/milstein/1558323.jpg"} -{"shape": {"h": 3725, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1558258.jpg"} -{"shape": {"h": 3725, "w": 3090}, "file": "/usr/local/google/home/danvk/milstein/1557795.jpg"} -{"shape": {"h": 3725, "w": 3095}, "file": "/usr/local/google/home/danvk/milstein/1558277.jpg"} -{"shape": {"h": 3725, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723399f.jpg"} -{"shape": {"h": 3730, "w": 2690}, "file": "/usr/local/google/home/danvk/milstein/1558180.jpg"} -{"shape": {"h": 3730, "w": 2775}, "file": "/usr/local/google/home/danvk/milstein/1558275.jpg"} -{"shape": {"h": 3730, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1557959.jpg"} -{"shape": {"h": 3735, "w": 2175}, "file": "/usr/local/google/home/danvk/milstein/1558187.jpg"} -{"shape": {"h": 3735, "w": 2405}, "file": "/usr/local/google/home/danvk/milstein/1558080.jpg"} -{"shape": {"h": 3735, "w": 2695}, "file": "/usr/local/google/home/danvk/milstein/1558479.jpg"} -{"shape": {"h": 3735, "w": 2730}, "file": "/usr/local/google/home/danvk/milstein/1558346.jpg"} -{"shape": {"h": 3735, "w": 2850}, "file": "/usr/local/google/home/danvk/milstein/1557937.jpg"} -{"shape": {"h": 3735, "w": 2865}, "file": "/usr/local/google/home/danvk/milstein/1557870.jpg"} -{"shape": {"h": 3735, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1558259.jpg"} -{"shape": {"h": 3735, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1558073.jpg"} -{"shape": {"h": 3740, "w": 2370}, "file": "/usr/local/google/home/danvk/milstein/1558326.jpg"} -{"shape": {"h": 3740, "w": 2565}, "file": "/usr/local/google/home/danvk/milstein/1557789.jpg"} -{"shape": {"h": 3740, "w": 2805}, "file": "/usr/local/google/home/danvk/milstein/1558449.jpg"} -{"shape": {"h": 3740, "w": 2845}, "file": "/usr/local/google/home/danvk/milstein/1558392.jpg"} -{"shape": {"h": 3740, "w": 2920}, "file": "/usr/local/google/home/danvk/milstein/1558215.jpg"} -{"shape": {"h": 3740, "w": 2970}, "file": "/usr/local/google/home/danvk/milstein/1558103.jpg"} -{"shape": {"h": 3740, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1558177.jpg"} -{"shape": {"h": 3740, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/1557984.jpg"} -{"shape": {"h": 3740, "w": 3055}, "file": "/usr/local/google/home/danvk/milstein/1557834.jpg"} -{"shape": {"h": 3740, "w": 3080}, "file": "/usr/local/google/home/danvk/milstein/1558060.jpg"} -{"shape": {"h": 3745, "w": 2875}, "file": "/usr/local/google/home/danvk/milstein/1557998.jpg"} -{"shape": {"h": 3745, "w": 2915}, "file": "/usr/local/google/home/danvk/milstein/1558018.jpg"} -{"shape": {"h": 3745, "w": 2940}, "file": "/usr/local/google/home/danvk/milstein/1558474.jpg"} -{"shape": {"h": 3745, "w": 2960}, "file": "/usr/local/google/home/danvk/milstein/1558324.jpg"} -{"shape": {"h": 3745, "w": 2980}, "file": "/usr/local/google/home/danvk/milstein/1557798.jpg"} -{"shape": {"h": 3745, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1558059.jpg"} -{"shape": {"h": 3745, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1557906.jpg"} -{"shape": {"h": 3750, "w": 2480}, "file": "/usr/local/google/home/danvk/milstein/1557823.jpg"} -{"shape": {"h": 3750, "w": 2620}, "file": "/usr/local/google/home/danvk/milstein/1557939.jpg"} -{"shape": {"h": 3750, "w": 2665}, "file": "/usr/local/google/home/danvk/milstein/1557943.jpg"} -{"shape": {"h": 3750, "w": 2955}, "file": "/usr/local/google/home/danvk/milstein/1557881.jpg"} -{"shape": {"h": 3750, "w": 3095}, "file": "/usr/local/google/home/danvk/milstein/1558140.jpg"} -{"shape": {"h": 3750, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713296f.jpg"} -{"shape": {"h": 3755, "w": 2400}, "file": "/usr/local/google/home/danvk/milstein/1558555.jpg"} -{"shape": {"h": 3755, "w": 2665}, "file": "/usr/local/google/home/danvk/milstein/1558276.jpg"} -{"shape": {"h": 3755, "w": 2670}, "file": "/usr/local/google/home/danvk/milstein/712826f.jpg"} -{"shape": {"h": 3755, "w": 2910}, "file": "/usr/local/google/home/danvk/milstein/1557957.jpg"} -{"shape": {"h": 3755, "w": 2930}, "file": "/usr/local/google/home/danvk/milstein/1557989.jpg"} -{"shape": {"h": 3755, "w": 2985}, "file": "/usr/local/google/home/danvk/milstein/1558391.jpg"} -{"shape": {"h": 3755, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1558304.jpg"} -{"shape": {"h": 3760, "w": 2780}, "file": "/usr/local/google/home/danvk/milstein/1558090.jpg"} -{"shape": {"h": 3760, "w": 2810}, "file": "/usr/local/google/home/danvk/milstein/1557787.jpg"} -{"shape": {"h": 3760, "w": 2935}, "file": "/usr/local/google/home/danvk/milstein/1557885.jpg"} -{"shape": {"h": 3760, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1557956.jpg"} -{"shape": {"h": 3760, "w": 3090}, "file": "/usr/local/google/home/danvk/milstein/1558447.jpg"} -{"shape": {"h": 3760, "w": 3180}, "file": "/usr/local/google/home/danvk/milstein/1557883.jpg"} -{"shape": {"h": 3765, "w": 2745}, "file": "/usr/local/google/home/danvk/milstein/1558136.jpg"} -{"shape": {"h": 3765, "w": 2885}, "file": "/usr/local/google/home/danvk/milstein/1558085.jpg"} -{"shape": {"h": 3765, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1558027.jpg"} -{"shape": {"h": 3765, "w": 3055}, "file": "/usr/local/google/home/danvk/milstein/1557829.jpg"} -{"shape": {"h": 3765, "w": 3075}, "file": "/usr/local/google/home/danvk/milstein/1558264.jpg"} -{"shape": {"h": 3770, "w": 1825}, "file": "/usr/local/google/home/danvk/milstein/1558198.jpg"} -{"shape": {"h": 3770, "w": 2280}, "file": "/usr/local/google/home/danvk/milstein/1558308.jpg"} -{"shape": {"h": 3770, "w": 2855}, "file": "/usr/local/google/home/danvk/milstein/1558208.jpg"} -{"shape": {"h": 3770, "w": 2925}, "file": "/usr/local/google/home/danvk/milstein/1558063.jpg"} -{"shape": {"h": 3775, "w": 2860}, "file": "/usr/local/google/home/danvk/milstein/1557786.jpg"} -{"shape": {"h": 3775, "w": 2980}, "file": "/usr/local/google/home/danvk/milstein/1557850.jpg"} -{"shape": {"h": 3780, "w": 2825}, "file": "/usr/local/google/home/danvk/milstein/1558271.jpg"} -{"shape": {"h": 3780, "w": 2840}, "file": "/usr/local/google/home/danvk/milstein/1557868.jpg"} -{"shape": {"h": 3780, "w": 2980}, "file": "/usr/local/google/home/danvk/milstein/1558487.jpg"} -{"shape": {"h": 3780, "w": 2985}, "file": "/usr/local/google/home/danvk/milstein/1558128.jpg"} -{"shape": {"h": 3780, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1558075.jpg"} -{"shape": {"h": 3780, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1558427.jpg"} -{"shape": {"h": 3780, "w": 3035}, "file": "/usr/local/google/home/danvk/milstein/1558213.jpg"} -{"shape": {"h": 3780, "w": 3080}, "file": "/usr/local/google/home/danvk/milstein/1558108.jpg"} -{"shape": {"h": 3780, "w": 3105}, "file": "/usr/local/google/home/danvk/milstein/1557831.jpg"} -{"shape": {"h": 3780, "w": 5210}, "file": "/usr/local/google/home/danvk/milstein/1997167.jpg"} -{"shape": {"h": 3785, "w": 2800}, "file": "/usr/local/google/home/danvk/milstein/1558112.jpg"} -{"shape": {"h": 3785, "w": 2925}, "file": "/usr/local/google/home/danvk/milstein/1558169.jpg"} -{"shape": {"h": 3785, "w": 2960}, "file": "/usr/local/google/home/danvk/milstein/1557775.jpg"} -{"shape": {"h": 3785, "w": 2985}, "file": "/usr/local/google/home/danvk/milstein/1558181.jpg"} -{"shape": {"h": 3785, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1558031.jpg"} -{"shape": {"h": 3785, "w": 3010}, "file": "/usr/local/google/home/danvk/milstein/1558142.jpg"} -{"shape": {"h": 3785, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1558330.jpg"} -{"shape": {"h": 3785, "w": 3045}, "file": "/usr/local/google/home/danvk/milstein/1557980.jpg"} -{"shape": {"h": 3790, "w": 2335}, "file": "/usr/local/google/home/danvk/milstein/1558556.jpg"} -{"shape": {"h": 3790, "w": 2790}, "file": "/usr/local/google/home/danvk/milstein/1557864.jpg"} -{"shape": {"h": 3790, "w": 2830}, "file": "/usr/local/google/home/danvk/milstein/1558527.jpg"} -{"shape": {"h": 3790, "w": 2845}, "file": "/usr/local/google/home/danvk/milstein/1558327.jpg"} -{"shape": {"h": 3790, "w": 2860}, "file": "/usr/local/google/home/danvk/milstein/1558485.jpg"} -{"shape": {"h": 3790, "w": 2950}, "file": "/usr/local/google/home/danvk/milstein/1557790.jpg"} -{"shape": {"h": 3790, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1558280.jpg"} -{"shape": {"h": 3790, "w": 3035}, "file": "/usr/local/google/home/danvk/milstein/1558263.jpg"} -{"shape": {"h": 3795, "w": 2820}, "file": "/usr/local/google/home/danvk/milstein/1558285.jpg"} -{"shape": {"h": 3795, "w": 2895}, "file": "/usr/local/google/home/danvk/milstein/1557983.jpg"} -{"shape": {"h": 3795, "w": 2950}, "file": "/usr/local/google/home/danvk/milstein/1558526.jpg"} -{"shape": {"h": 3795, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/1558104.jpg"} -{"shape": {"h": 3795, "w": 3010}, "file": "/usr/local/google/home/danvk/milstein/1557962.jpg"} -{"shape": {"h": 3795, "w": 3115}, "file": "/usr/local/google/home/danvk/milstein/1558118.jpg"} -{"shape": {"h": 3800, "w": 2335}, "file": "/usr/local/google/home/danvk/milstein/1558363.jpg"} -{"shape": {"h": 3800, "w": 2645}, "file": "/usr/local/google/home/danvk/milstein/1557888.jpg"} -{"shape": {"h": 3800, "w": 2850}, "file": "/usr/local/google/home/danvk/milstein/1558421.jpg"} -{"shape": {"h": 3800, "w": 2930}, "file": "/usr/local/google/home/danvk/milstein/1557815.jpg"} -{"shape": {"h": 3800, "w": 2935}, "file": "/usr/local/google/home/danvk/milstein/1558210.jpg"} -{"shape": {"h": 3800, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/1557782.jpg"} -{"shape": {"h": 3800, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1557768.jpg"} -{"shape": {"h": 3800, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1558034.jpg"} -{"shape": {"h": 3800, "w": 3055}, "file": "/usr/local/google/home/danvk/milstein/1557876.jpg"} -{"shape": {"h": 3800, "w": 3085}, "file": "/usr/local/google/home/danvk/milstein/1557830.jpg"} -{"shape": {"h": 3800, "w": 3140}, "file": "/usr/local/google/home/danvk/milstein/1557851.jpg"} -{"shape": {"h": 3805, "w": 2830}, "file": "/usr/local/google/home/danvk/milstein/1558309.jpg"} -{"shape": {"h": 3805, "w": 2870}, "file": "/usr/local/google/home/danvk/milstein/1558038.jpg"} -{"shape": {"h": 3805, "w": 2895}, "file": "/usr/local/google/home/danvk/milstein/1557893.jpg"} -{"shape": {"h": 3805, "w": 2900}, "file": "/usr/local/google/home/danvk/milstein/1558211.jpg"} -{"shape": {"h": 3805, "w": 2945}, "file": "/usr/local/google/home/danvk/milstein/1558343.jpg"} -{"shape": {"h": 3805, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1558365.jpg"} -{"shape": {"h": 3805, "w": 3035}, "file": "/usr/local/google/home/danvk/milstein/1558083.jpg"} -{"shape": {"h": 3805, "w": 3035}, "file": "/usr/local/google/home/danvk/milstein/1558357.jpg"} -{"shape": {"h": 3810, "w": 2880}, "file": "/usr/local/google/home/danvk/milstein/1557879.jpg"} -{"shape": {"h": 3810, "w": 2925}, "file": "/usr/local/google/home/danvk/milstein/1558279.jpg"} -{"shape": {"h": 3810, "w": 2970}, "file": "/usr/local/google/home/danvk/milstein/1557969.jpg"} -{"shape": {"h": 3810, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1558384.jpg"} -{"shape": {"h": 3810, "w": 3090}, "file": "/usr/local/google/home/danvk/milstein/1558262.jpg"} -{"shape": {"h": 3810, "w": 3120}, "file": "/usr/local/google/home/danvk/milstein/1558064.jpg"} -{"shape": {"h": 3815, "w": 2855}, "file": "/usr/local/google/home/danvk/milstein/1558404.jpg"} -{"shape": {"h": 3815, "w": 2920}, "file": "/usr/local/google/home/danvk/milstein/1557792.jpg"} -{"shape": {"h": 3815, "w": 2940}, "file": "/usr/local/google/home/danvk/milstein/1557916.jpg"} -{"shape": {"h": 3815, "w": 3070}, "file": "/usr/local/google/home/danvk/milstein/1558436.jpg"} -{"shape": {"h": 3815, "w": 3105}, "file": "/usr/local/google/home/danvk/milstein/1558001.jpg"} -{"shape": {"h": 3820, "w": 2740}, "file": "/usr/local/google/home/danvk/milstein/1557903.jpg"} -{"shape": {"h": 3820, "w": 2760}, "file": "/usr/local/google/home/danvk/milstein/1557855.jpg"} -{"shape": {"h": 3820, "w": 2790}, "file": "/usr/local/google/home/danvk/milstein/1558212.jpg"} -{"shape": {"h": 3820, "w": 2960}, "file": "/usr/local/google/home/danvk/milstein/1558514.jpg"} -{"shape": {"h": 3820, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1558176.jpg"} -{"shape": {"h": 3820, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1557900.jpg"} -{"shape": {"h": 3820, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1558159.jpg"} -{"shape": {"h": 3820, "w": 3050}, "file": "/usr/local/google/home/danvk/milstein/1557820.jpg"} -{"shape": {"h": 3820, "w": 3050}, "file": "/usr/local/google/home/danvk/milstein/1557880.jpg"} -{"shape": {"h": 3820, "w": 3055}, "file": "/usr/local/google/home/danvk/milstein/1557894.jpg"} -{"shape": {"h": 3820, "w": 3085}, "file": "/usr/local/google/home/danvk/milstein/1558041.jpg"} -{"shape": {"h": 3820, "w": 3110}, "file": "/usr/local/google/home/danvk/milstein/1557896.jpg"} -{"shape": {"h": 3825, "w": 2765}, "file": "/usr/local/google/home/danvk/milstein/1558115.jpg"} -{"shape": {"h": 3825, "w": 2825}, "file": "/usr/local/google/home/danvk/milstein/1557856.jpg"} -{"shape": {"h": 3825, "w": 2890}, "file": "/usr/local/google/home/danvk/milstein/1558358.jpg"} -{"shape": {"h": 3825, "w": 2925}, "file": "/usr/local/google/home/danvk/milstein/1557754.jpg"} -{"shape": {"h": 3825, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1558506.jpg"} -{"shape": {"h": 3825, "w": 3050}, "file": "/usr/local/google/home/danvk/milstein/1558534.jpg"} -{"shape": {"h": 3830, "w": 2660}, "file": "/usr/local/google/home/danvk/milstein/1557963.jpg"} -{"shape": {"h": 3830, "w": 2740}, "file": "/usr/local/google/home/danvk/milstein/1557865.jpg"} -{"shape": {"h": 3830, "w": 2910}, "file": "/usr/local/google/home/danvk/milstein/1557917.jpg"} -{"shape": {"h": 3830, "w": 2985}, "file": "/usr/local/google/home/danvk/milstein/1558021.jpg"} -{"shape": {"h": 3830, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1558295.jpg"} -{"shape": {"h": 3830, "w": 3035}, "file": "/usr/local/google/home/danvk/milstein/1558026.jpg"} -{"shape": {"h": 3830, "w": 3080}, "file": "/usr/local/google/home/danvk/milstein/1558320.jpg"} -{"shape": {"h": 3835, "w": 2785}, "file": "/usr/local/google/home/danvk/milstein/1558257.jpg"} -{"shape": {"h": 3835, "w": 2870}, "file": "/usr/local/google/home/danvk/milstein/1557996.jpg"} -{"shape": {"h": 3835, "w": 2885}, "file": "/usr/local/google/home/danvk/milstein/1557997.jpg"} -{"shape": {"h": 3835, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/1558395.jpg"} -{"shape": {"h": 3835, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1558286.jpg"} -{"shape": {"h": 3835, "w": 3065}, "file": "/usr/local/google/home/danvk/milstein/1557960.jpg"} -{"shape": {"h": 3835, "w": 3070}, "file": "/usr/local/google/home/danvk/milstein/1558049.jpg"} -{"shape": {"h": 3835, "w": 3110}, "file": "/usr/local/google/home/danvk/milstein/1558515.jpg"} -{"shape": {"h": 3840, "w": 2585}, "file": "/usr/local/google/home/danvk/milstein/1558097.jpg"} -{"shape": {"h": 3840, "w": 2820}, "file": "/usr/local/google/home/danvk/milstein/1557778.jpg"} -{"shape": {"h": 3840, "w": 2870}, "file": "/usr/local/google/home/danvk/milstein/1558316.jpg"} -{"shape": {"h": 3840, "w": 3010}, "file": "/usr/local/google/home/danvk/milstein/1558293.jpg"} -{"shape": {"h": 3840, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1557836.jpg"} -{"shape": {"h": 3840, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1558062.jpg"} -{"shape": {"h": 3840, "w": 3120}, "file": "/usr/local/google/home/danvk/milstein/1558340.jpg"} -{"shape": {"h": 3845, "w": 2970}, "file": "/usr/local/google/home/danvk/milstein/1558157.jpg"} -{"shape": {"h": 3845, "w": 2970}, "file": "/usr/local/google/home/danvk/milstein/1558432.jpg"} -{"shape": {"h": 3845, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1558478.jpg"} -{"shape": {"h": 3845, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1557994.jpg"} -{"shape": {"h": 3845, "w": 3045}, "file": "/usr/local/google/home/danvk/milstein/1558287.jpg"} -{"shape": {"h": 3850, "w": 2790}, "file": "/usr/local/google/home/danvk/milstein/1558492.jpg"} -{"shape": {"h": 3850, "w": 2805}, "file": "/usr/local/google/home/danvk/milstein/1558217.jpg"} -{"shape": {"h": 3850, "w": 2900}, "file": "/usr/local/google/home/danvk/milstein/1557759.jpg"} -{"shape": {"h": 3850, "w": 2915}, "file": "/usr/local/google/home/danvk/milstein/1557860.jpg"} -{"shape": {"h": 3850, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1558193.jpg"} -{"shape": {"h": 3850, "w": 3050}, "file": "/usr/local/google/home/danvk/milstein/1557875.jpg"} -{"shape": {"h": 3855, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/1558139.jpg"} -{"shape": {"h": 3855, "w": 2720}, "file": "/usr/local/google/home/danvk/milstein/1558345.jpg"} -{"shape": {"h": 3855, "w": 2835}, "file": "/usr/local/google/home/danvk/milstein/1558015.jpg"} -{"shape": {"h": 3855, "w": 2900}, "file": "/usr/local/google/home/danvk/milstein/1558200.jpg"} -{"shape": {"h": 3855, "w": 3035}, "file": "/usr/local/google/home/danvk/milstein/1558068.jpg"} -{"shape": {"h": 3855, "w": 3080}, "file": "/usr/local/google/home/danvk/milstein/1558373.jpg"} -{"shape": {"h": 3855, "w": 3090}, "file": "/usr/local/google/home/danvk/milstein/1557874.jpg"} -{"shape": {"h": 3860, "w": 2810}, "file": "/usr/local/google/home/danvk/milstein/1558209.jpg"} -{"shape": {"h": 3860, "w": 2845}, "file": "/usr/local/google/home/danvk/milstein/1558094.jpg"} -{"shape": {"h": 3860, "w": 2925}, "file": "/usr/local/google/home/danvk/milstein/1558146.jpg"} -{"shape": {"h": 3860, "w": 2950}, "file": "/usr/local/google/home/danvk/milstein/1557871.jpg"} -{"shape": {"h": 3860, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1558254.jpg"} -{"shape": {"h": 3860, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1558284.jpg"} -{"shape": {"h": 3860, "w": 3100}, "file": "/usr/local/google/home/danvk/milstein/1558044.jpg"} -{"shape": {"h": 3865, "w": 2915}, "file": "/usr/local/google/home/danvk/milstein/1557817.jpg"} -{"shape": {"h": 3865, "w": 2925}, "file": "/usr/local/google/home/danvk/milstein/1558557.jpg"} -{"shape": {"h": 3865, "w": 2945}, "file": "/usr/local/google/home/danvk/milstein/1557878.jpg"} -{"shape": {"h": 3865, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/1557988.jpg"} -{"shape": {"h": 3865, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/1558455.jpg"} -{"shape": {"h": 3865, "w": 3160}, "file": "/usr/local/google/home/danvk/milstein/1557946.jpg"} -{"shape": {"h": 3870, "w": 2695}, "file": "/usr/local/google/home/danvk/milstein/1558331.jpg"} -{"shape": {"h": 3870, "w": 2875}, "file": "/usr/local/google/home/danvk/milstein/1557936.jpg"} -{"shape": {"h": 3870, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1558170.jpg"} -{"shape": {"h": 3870, "w": 3090}, "file": "/usr/local/google/home/danvk/milstein/1557905.jpg"} -{"shape": {"h": 3875, "w": 2775}, "file": "/usr/local/google/home/danvk/milstein/1558089.jpg"} -{"shape": {"h": 3875, "w": 2830}, "file": "/usr/local/google/home/danvk/milstein/1558244.jpg"} -{"shape": {"h": 3875, "w": 2995}, "file": "/usr/local/google/home/danvk/milstein/1558491.jpg"} -{"shape": {"h": 3875, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/1558408.jpg"} -{"shape": {"h": 3875, "w": 3045}, "file": "/usr/local/google/home/danvk/milstein/1557961.jpg"} -{"shape": {"h": 3875, "w": 3045}, "file": "/usr/local/google/home/danvk/milstein/1557970.jpg"} -{"shape": {"h": 3875, "w": 3095}, "file": "/usr/local/google/home/danvk/milstein/1558032.jpg"} -{"shape": {"h": 3875, "w": 3110}, "file": "/usr/local/google/home/danvk/milstein/1558137.jpg"} -{"shape": {"h": 3880, "w": 2800}, "file": "/usr/local/google/home/danvk/milstein/1558344.jpg"} -{"shape": {"h": 3880, "w": 2815}, "file": "/usr/local/google/home/danvk/milstein/1557837.jpg"} -{"shape": {"h": 3880, "w": 2955}, "file": "/usr/local/google/home/danvk/milstein/1558114.jpg"} -{"shape": {"h": 3880, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/1557991.jpg"} -{"shape": {"h": 3880, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1557781.jpg"} -{"shape": {"h": 3880, "w": 3120}, "file": "/usr/local/google/home/danvk/milstein/1558322.jpg"} -{"shape": {"h": 3880, "w": 3160}, "file": "/usr/local/google/home/danvk/milstein/1557947.jpg"} -{"shape": {"h": 3880, "w": 6035}, "file": "/usr/local/google/home/danvk/milstein/732910f.jpg"} -{"shape": {"h": 3885, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/1558219.jpg"} -{"shape": {"h": 3890, "w": 2900}, "file": "/usr/local/google/home/danvk/milstein/1558417.jpg"} -{"shape": {"h": 3890, "w": 2920}, "file": "/usr/local/google/home/danvk/milstein/1558402.jpg"} -{"shape": {"h": 3890, "w": 2995}, "file": "/usr/local/google/home/danvk/milstein/1558102.jpg"} -{"shape": {"h": 3890, "w": 3085}, "file": "/usr/local/google/home/danvk/milstein/1558440.jpg"} -{"shape": {"h": 3895, "w": 2690}, "file": "/usr/local/google/home/danvk/milstein/1557918.jpg"} -{"shape": {"h": 3895, "w": 2890}, "file": "/usr/local/google/home/danvk/milstein/1558088.jpg"} -{"shape": {"h": 3895, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/1558207.jpg"} -{"shape": {"h": 3895, "w": 3060}, "file": "/usr/local/google/home/danvk/milstein/1557825.jpg"} -{"shape": {"h": 3895, "w": 3145}, "file": "/usr/local/google/home/danvk/milstein/1558223.jpg"} -{"shape": {"h": 3900, "w": 2770}, "file": "/usr/local/google/home/danvk/milstein/1558226.jpg"} -{"shape": {"h": 3900, "w": 2795}, "file": "/usr/local/google/home/danvk/milstein/1557974.jpg"} -{"shape": {"h": 3900, "w": 2900}, "file": "/usr/local/google/home/danvk/milstein/1558239.jpg"} -{"shape": {"h": 3900, "w": 2900}, "file": "/usr/local/google/home/danvk/milstein/1558362.jpg"} -{"shape": {"h": 3900, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1558415.jpg"} -{"shape": {"h": 3900, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/1558175.jpg"} -{"shape": {"h": 3900, "w": 3085}, "file": "/usr/local/google/home/danvk/milstein/1558025.jpg"} -{"shape": {"h": 3900, "w": 3130}, "file": "/usr/local/google/home/danvk/milstein/1558092.jpg"} -{"shape": {"h": 3900, "w": 3150}, "file": "/usr/local/google/home/danvk/milstein/1558388.jpg"} -{"shape": {"h": 3900, "w": 3160}, "file": "/usr/local/google/home/danvk/milstein/1558371.jpg"} -{"shape": {"h": 3900, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708582f.jpg"} -{"shape": {"h": 3905, "w": 2845}, "file": "/usr/local/google/home/danvk/milstein/1558190.jpg"} -{"shape": {"h": 3905, "w": 3105}, "file": "/usr/local/google/home/danvk/milstein/1558321.jpg"} -{"shape": {"h": 3905, "w": 3140}, "file": "/usr/local/google/home/danvk/milstein/1557859.jpg"} -{"shape": {"h": 3905, "w": 3140}, "file": "/usr/local/google/home/danvk/milstein/1557942.jpg"} -{"shape": {"h": 3910, "w": 2860}, "file": "/usr/local/google/home/danvk/milstein/1558367.jpg"} -{"shape": {"h": 3910, "w": 3125}, "file": "/usr/local/google/home/danvk/milstein/1557899.jpg"} -{"shape": {"h": 3910, "w": 3185}, "file": "/usr/local/google/home/danvk/milstein/1557944.jpg"} -{"shape": {"h": 3915, "w": 3075}, "file": "/usr/local/google/home/danvk/milstein/1558484.jpg"} -{"shape": {"h": 3915, "w": 3135}, "file": "/usr/local/google/home/danvk/milstein/1558245.jpg"} -{"shape": {"h": 3920, "w": 2700}, "file": "/usr/local/google/home/danvk/milstein/1558234.jpg"} -{"shape": {"h": 3920, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1557889.jpg"} -{"shape": {"h": 3920, "w": 3050}, "file": "/usr/local/google/home/danvk/milstein/1558289.jpg"} -{"shape": {"h": 3920, "w": 3100}, "file": "/usr/local/google/home/danvk/milstein/1557887.jpg"} -{"shape": {"h": 3920, "w": 3120}, "file": "/usr/local/google/home/danvk/milstein/1558300.jpg"} -{"shape": {"h": 3920, "w": 3170}, "file": "/usr/local/google/home/danvk/milstein/1558302.jpg"} -{"shape": {"h": 3925, "w": 3175}, "file": "/usr/local/google/home/danvk/milstein/1558428.jpg"} -{"shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730745f.jpg"} -{"shape": {"h": 3925, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732897f.jpg"} -{"shape": {"h": 3930, "w": 2540}, "file": "/usr/local/google/home/danvk/milstein/727169f.jpg"} -{"shape": {"h": 3930, "w": 3130}, "file": "/usr/local/google/home/danvk/milstein/1558020.jpg"} -{"shape": {"h": 3930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729883f.jpg"} -{"shape": {"h": 3935, "w": 2555}, "file": "/usr/local/google/home/danvk/milstein/727160f.jpg"} -{"shape": {"h": 3935, "w": 2675}, "file": "/usr/local/google/home/danvk/milstein/1558042.jpg"} -{"shape": {"h": 3935, "w": 3075}, "file": "/usr/local/google/home/danvk/milstein/1558261.jpg"} -{"shape": {"h": 3935, "w": 3105}, "file": "/usr/local/google/home/danvk/milstein/1558071.jpg"} -{"shape": {"h": 3935, "w": 3110}, "file": "/usr/local/google/home/danvk/milstein/1558051.jpg"} -{"shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707520f.jpg"} -{"shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714542f.jpg"} -{"shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718125f.jpg"} -{"shape": {"h": 3935, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722189f.jpg"} -{"shape": {"h": 3940, "w": 3085}, "file": "/usr/local/google/home/danvk/milstein/1558332.jpg"} -{"shape": {"h": 3940, "w": 3160}, "file": "/usr/local/google/home/danvk/milstein/1558407.jpg"} -{"shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713763f.jpg"} -{"shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717926f.jpg"} -{"shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723203f.jpg"} -{"shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723541f.jpg"} -{"shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730768f.jpg"} -{"shape": {"h": 3940, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732729f.jpg"} -{"shape": {"h": 3945, "w": 2545}, "file": "/usr/local/google/home/danvk/milstein/727091f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708252f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709738f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710154f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712516f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712583f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712774f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713400f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716579f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717552f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717831f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717928f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717929f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718157f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718184f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722221f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722717f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722746f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722760f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723469f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723474f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724475f.jpg"} -{"shape": {"h": 3945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732451f.jpg"} -{"shape": {"h": 3950, "w": 3155}, "file": "/usr/local/google/home/danvk/milstein/1558203.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700661f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701989f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703595f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706351f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706359f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707495f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708220f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708960f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709326f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710920f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711032f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712861f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714338f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714743f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715494f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717490f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717498f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720719f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720939f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721001f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721198f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721229f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721302f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721488f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721739f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722025f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722123f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722200f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722241f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722373f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722776f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723133f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724461f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724481f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730052f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730681f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731055f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731314f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732017f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732149f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732452f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733449f.jpg"} -{"shape": {"h": 3950, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734856f.jpg"} -{"shape": {"h": 3955, "w": 3165}, "file": "/usr/local/google/home/danvk/milstein/1558389.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700015f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701996f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702841f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706357f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709385f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709485f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709729f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710169f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710389f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711911f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712337f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712347f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712481f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712486f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712494f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712836f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713223f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713398f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713796f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713813f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714087f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714463f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717475f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717632f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718271f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718352f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718386f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720616f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720627f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721325f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721341f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722021f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722056f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722134f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722183f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722185f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722187f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722427f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722439f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722705f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722805f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723527f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723708f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724471f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724478f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724879f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728284f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731315f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732445f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732450f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732462f.jpg"} -{"shape": {"h": 3955, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732925f.jpg"} -{"shape": {"h": 3960, "w": 3105}, "file": "/usr/local/google/home/danvk/milstein/1558156.jpg"} -{"shape": {"h": 3960, "w": 3155}, "file": "/usr/local/google/home/danvk/milstein/1557780.jpg"} -{"shape": {"h": 3960, "w": 3190}, "file": "/usr/local/google/home/danvk/milstein/1557935.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700364f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700432f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700605f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700662f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700794f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701183f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708118f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708945f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709164f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709957f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710181f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712246f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712416f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712485f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712488f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713034f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714244f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714450f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714522f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714838f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716950f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717032f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717648f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717654f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717899f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720272f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720391f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720994f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720995f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721268f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721327f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721384f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721430f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721485f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721520f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722081f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722129f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722135f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722137f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722139f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722371f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722426f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723617f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723768f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724482f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726571f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727666f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730441f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731489f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731515f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732090f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733454f.jpg"} -{"shape": {"h": 3960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733884f.jpg"} -{"shape": {"h": 3965, "w": 2580}, "file": "/usr/local/google/home/danvk/milstein/727166f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700313f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700413f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700789f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702341f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702652f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702878f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703146f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704718f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708972f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709031f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709107f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709758f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709824f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709955f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710197f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713088f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713508f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713714f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714008f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715421f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715608f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716833f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717072f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717149f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717214f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717629f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718441f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719317f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720315f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720635f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720980f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721230f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721310f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721324f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721588f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721613f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721662f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722013f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722755f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722777f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723653f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724549f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725984f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726353f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727718f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729541f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730168f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730169f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730522f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730730f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731081f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731191f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731501f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731517f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731519f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731526f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731528f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731529f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731530f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731532f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731855f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732014f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732077f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732769f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732924f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733181f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733297f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733302f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733330f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733871f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733923f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734449f.jpg"} -{"shape": {"h": 3965, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734523f.jpg"} -{"shape": {"h": 3970, "w": 3150}, "file": "/usr/local/google/home/danvk/milstein/1558199.jpg"} -{"shape": {"h": 3970, "w": 3210}, "file": "/usr/local/google/home/danvk/milstein/1558079.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700244f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700607f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700626f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700864f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701087f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701091f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701358f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702402f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702612f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703170f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703223f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703781f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704027f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704721f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705479f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705908f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706108f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706125f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706272f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706771f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706971f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707097f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707099f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707114f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707357f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707358f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707406f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707575f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707649f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707981f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708564f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708754f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708755f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708796f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709036f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709782f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709856f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710041f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710220f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710438f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711831f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712601f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712843f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713219f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714043f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714153f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714243f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714300f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714391f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714513f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714641f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715061f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715521f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715604f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716678f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716927f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716931f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716942f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717069f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717092f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717102f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717130f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717331f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717424f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717760f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719138f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719350f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719407f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719518f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719731f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720167f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721306f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721521f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721585f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721706f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722001f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722044f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722109f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722389f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722694f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722695f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722720f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722931f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723019f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723543f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723692f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723898f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724373f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724977f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725037f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726024f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726323f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726470f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729195f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730063f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730280f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730639f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730682f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730722f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730872f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731076f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731211f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731267f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731272f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731277f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731278f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731283f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731491f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731493f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731500f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731511f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731514f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731520f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731523f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731531f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731533f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731735f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731901f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732012f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732238f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732243f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732368f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732448f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732449f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732820f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733409f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733415f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733509f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733616f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733723f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733773f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733878f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734060f.jpg"} -{"shape": {"h": 3970, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734422f.jpg"} -{"shape": {"h": 3975, "w": 3110}, "file": "/usr/local/google/home/danvk/milstein/1558422.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700166f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701088f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701315f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701370f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701414f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701494f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701625f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701843f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701866f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701998f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702111f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702976f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703083f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703301f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703302f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703575f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703846f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704693f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705164f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705760f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706826f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707098f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708792f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709179f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709732f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709885f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710782f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711092f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712326f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712328f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712840f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712841f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712865f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713110f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713198f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713507f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713767f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713866f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713872f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714229f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714836f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716940f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716941f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717033f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717039f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717144f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717350f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717417f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717420f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717422f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717423f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718028f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718261f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718301f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718306f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718411f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718597f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719179f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719411f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719625f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719732f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720336f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720797f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720823f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720873f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720908f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721190f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721253f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721491f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721608f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721888f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721890f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722188f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722220f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722472f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722488f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722538f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722665f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722933f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723426f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723552f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723587f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723599f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723600f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723829f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723843f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723946f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725437f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726183f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726204f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727339f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727664f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727756f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728870f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730120f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730143f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730279f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730581f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730587f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731118f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731289f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731434f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731499f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731857f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731893f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731906f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731915f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731926f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731929f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731936f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731939f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732011f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732066f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732098f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732228f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732234f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732244f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732246f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732591f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732928f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733384f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733418f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733614f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733744f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733954f.jpg"} -{"shape": {"h": 3975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734421f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701024f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701121f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701279f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701346f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701395f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701949f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702108f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702110f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702113f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702499f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702879f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704780f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705159f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705163f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705324f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705461f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706133f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706947f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708404f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708671f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708674f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708730f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708967f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708986f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708996f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709346f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709876f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710167f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710289f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710411f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710598f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710656f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710793f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712003f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712431f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712859f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713043f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713930f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714800f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714926f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716546f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716744f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717198f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717219f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717249f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717330f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717595f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718212f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718248f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718264f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718299f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718304f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718397f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718410f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718903f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719018f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719124f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719364f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720000f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720168f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720172f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720479f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720505f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720803f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720830f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721085f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721275f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721400f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721511f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721790f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722004f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722051f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722101f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722485f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722831f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722877f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722889f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722896f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723015f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723114f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723194f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723409f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723525f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723949f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724333f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724417f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724579f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724773f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724923f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724926f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725279f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725470f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725725f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725772f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726044f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727354f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727445f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727566f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727705f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727738f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727924f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727957f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729478f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730171f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730284f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730287f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730290f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730780f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730939f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730962f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731284f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731309f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731345f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731382f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731416f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731464f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731466f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731916f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732185f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732756f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733007f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733318f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733474f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733521f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733576f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733754f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733786f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733837f.jpg"} -{"shape": {"h": 3980, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734561f.jpg"} -{"shape": {"h": 3980, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/711130f.jpg"} -{"shape": {"h": 3985, "w": 3145}, "file": "/usr/local/google/home/danvk/milstein/1558093.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700177f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701089f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701116f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701170f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701798f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701841f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702087f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702696f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703743f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704476f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704522f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705011f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706018f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707146f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707588f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707991f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708172f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708447f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708721f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708747f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708913f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709745f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709763f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712904f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712906f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712907f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712908f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712909f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712910f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712911f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712912f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712914f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712915f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712916f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712922f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712923f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715067f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715096f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716658f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716898f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717010f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717257f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717419f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717472f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717849f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719365f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720301f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720610f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720740f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720818f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720821f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721217f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721322f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721426f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721991f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722252f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722428f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723041f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723547f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723597f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723850f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724331f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724748f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725605f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727446f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727532f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727808f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/728078f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730055f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730056f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730147f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730150f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730155f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730492f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730506f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730721f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730847f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731082f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731122f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731129f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732233f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732873f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732875f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732946f.jpg"} -{"shape": {"h": 3985, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733781f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700226f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702727f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704692f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705990f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705991f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708295f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708748f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709160f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709459f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712733f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712856f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712863f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712942f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713185f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714435f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714464f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717166f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718284f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718934f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718943f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718958f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720198f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720817f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720822f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722537f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722794f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723294f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723855f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724114f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/724336f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725193f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725332f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725664f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725671f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726895f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727564f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727630f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730513f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730684f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731907f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731908f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731914f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732067f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732744f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732853f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732943f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732947f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733417f.jpg"} -{"shape": {"h": 3990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/734681f.jpg"} -{"shape": {"h": 3995, "w": 2580}, "file": "/usr/local/google/home/danvk/milstein/731342f.jpg"} -{"shape": {"h": 3995, "w": 3170}, "file": "/usr/local/google/home/danvk/milstein/1558282.jpg"} -{"shape": {"h": 3995, "w": 3180}, "file": "/usr/local/google/home/danvk/milstein/1558050.jpg"} -{"shape": {"h": 3995, "w": 3185}, "file": "/usr/local/google/home/danvk/milstein/1558131.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701162f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701787f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704956f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705322f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705955f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705978f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708753f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709073f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709751f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710150f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712727f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714018f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716552f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716834f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/720199f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/725331f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730289f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730488f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731940f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732068f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732753f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732836f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732838f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732864f.jpg"} -{"shape": {"h": 3995, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732876f.jpg"} -{"shape": {"h": 4000, "w": 3175}, "file": "/usr/local/google/home/danvk/milstein/1558232.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701984f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702666f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705966f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705985f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705986f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705988f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705989f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710342f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710401f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712867f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714245f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729782f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730509f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733034f.jpg"} -{"shape": {"h": 4000, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733407f.jpg"} -{"shape": {"h": 4005, "w": 3210}, "file": "/usr/local/google/home/danvk/milstein/1557910.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702390f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703341f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704752f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705977f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705987f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/706358f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715133f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722921f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726909f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730036f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730119f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730670f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732896f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733057f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733585f.jpg"} -{"shape": {"h": 4005, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733752f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702088f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702374f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703593f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/705271f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710288f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710338f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714196f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/722915f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730849f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730894f.jpg"} -{"shape": {"h": 4010, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733058f.jpg"} -{"shape": {"h": 4015, "w": 3180}, "file": "/usr/local/google/home/danvk/milstein/1558288.jpg"} -{"shape": {"h": 4015, "w": 3200}, "file": "/usr/local/google/home/danvk/milstein/1557965.jpg"} -{"shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702573f.jpg"} -{"shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703682f.jpg"} -{"shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710477f.jpg"} -{"shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/716717f.jpg"} -{"shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719155f.jpg"} -{"shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721239f.jpg"} -{"shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731217f.jpg"} -{"shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732099f.jpg"} -{"shape": {"h": 4015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732150f.jpg"} -{"shape": {"h": 4020, "w": 3210}, "file": "/usr/local/google/home/danvk/milstein/1557827.jpg"} -{"shape": {"h": 4020, "w": 3220}, "file": "/usr/local/google/home/danvk/milstein/1557964.jpg"} -{"shape": {"h": 4020, "w": 3230}, "file": "/usr/local/google/home/danvk/milstein/1558229.jpg"} -{"shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701873f.jpg"} -{"shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701982f.jpg"} -{"shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702367f.jpg"} -{"shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708497f.jpg"} -{"shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710355f.jpg"} -{"shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711883f.jpg"} -{"shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712807f.jpg"} -{"shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714997f.jpg"} -{"shape": {"h": 4020, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723582f.jpg"} -{"shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/716731f.jpg"} -{"shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/717374f.jpg"} -{"shape": {"h": 4020, "w": 6250}, "file": "/usr/local/google/home/danvk/milstein/719085f.jpg"} -{"shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/724572f.jpg"} -{"shape": {"h": 4020, "w": 6260}, "file": "/usr/local/google/home/danvk/milstein/733394f.jpg"} -{"shape": {"h": 4025, "w": 3210}, "file": "/usr/local/google/home/danvk/milstein/1557949.jpg"} -{"shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704520f.jpg"} -{"shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710510f.jpg"} -{"shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712811f.jpg"} -{"shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715066f.jpg"} -{"shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718181f.jpg"} -{"shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727248f.jpg"} -{"shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730028f.jpg"} -{"shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732016f.jpg"} -{"shape": {"h": 4025, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732148f.jpg"} -{"shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701137f.jpg"} -{"shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701173f.jpg"} -{"shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702286f.jpg"} -{"shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708670f.jpg"} -{"shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726945f.jpg"} -{"shape": {"h": 4030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731778f.jpg"} -{"shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701954f.jpg"} -{"shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702307f.jpg"} -{"shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702579f.jpg"} -{"shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709436f.jpg"} -{"shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711602f.jpg"} -{"shape": {"h": 4035, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732909f.jpg"} -{"shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/700934f.jpg"} -{"shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704293f.jpg"} -{"shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731799f.jpg"} -{"shape": {"h": 4040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732809f.jpg"} -{"shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714996f.jpg"} -{"shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730011f.jpg"} -{"shape": {"h": 4045, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731897f.jpg"} -{"shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701161f.jpg"} -{"shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701165f.jpg"} -{"shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/701869f.jpg"} -{"shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703679f.jpg"} -{"shape": {"h": 4050, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723542f.jpg"} -{"shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704292f.jpg"} -{"shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708982f.jpg"} -{"shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/729259f.jpg"} -{"shape": {"h": 4055, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732497f.jpg"} -{"shape": {"h": 4060, "w": 3185}, "file": "/usr/local/google/home/danvk/milstein/1558202.jpg"} -{"shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702622f.jpg"} -{"shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708941f.jpg"} -{"shape": {"h": 4060, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/733492f.jpg"} -{"shape": {"h": 4065, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702830f.jpg"} -{"shape": {"h": 4070, "w": 3280}, "file": "/usr/local/google/home/danvk/milstein/1558147.jpg"} -{"shape": {"h": 4070, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730848f.jpg"} -{"shape": {"h": 4070, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730973f.jpg"} -{"shape": {"h": 4080, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/704558f.jpg"} -{"shape": {"h": 4095, "w": 5175}, "file": "/usr/local/google/home/danvk/milstein/1596978.jpg"} -{"shape": {"h": 4175, "w": 5900}, "file": "/usr/local/google/home/danvk/milstein/708831f.jpg"} -{"shape": {"h": 4200, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/727250f.jpg"} -{"shape": {"h": 4215, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726202f.jpg"} -{"shape": {"h": 4235, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726480f.jpg"} -{"shape": {"h": 4250, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726705f.jpg"} -{"shape": {"h": 4255, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731001f.jpg"} -{"shape": {"h": 4290, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710296f.jpg"} -{"shape": {"h": 4290, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710297f.jpg"} -{"shape": {"h": 4300, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710357f.jpg"} -{"shape": {"h": 4305, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710356f.jpg"} -{"shape": {"h": 4340, "w": 5210}, "file": "/usr/local/google/home/danvk/milstein/1596926.jpg"} -{"shape": {"h": 4340, "w": 5350}, "file": "/usr/local/google/home/danvk/milstein/1596980.jpg"} -{"shape": {"h": 4345, "w": 5160}, "file": "/usr/local/google/home/danvk/milstein/1596936.jpg"} -{"shape": {"h": 4350, "w": 3285}, "file": "/usr/local/google/home/danvk/milstein/1558119.jpg"} -{"shape": {"h": 4355, "w": 5300}, "file": "/usr/local/google/home/danvk/milstein/1596951.jpg"} -{"shape": {"h": 4360, "w": 5245}, "file": "/usr/local/google/home/danvk/milstein/1596979.jpg"} -{"shape": {"h": 4365, "w": 5245}, "file": "/usr/local/google/home/danvk/milstein/1596989.jpg"} -{"shape": {"h": 4370, "w": 5200}, "file": "/usr/local/google/home/danvk/milstein/1596934.jpg"} -{"shape": {"h": 4370, "w": 5230}, "file": "/usr/local/google/home/danvk/milstein/1596983.jpg"} -{"shape": {"h": 4375, "w": 5110}, "file": "/usr/local/google/home/danvk/milstein/1596995.jpg"} -{"shape": {"h": 4380, "w": 5120}, "file": "/usr/local/google/home/danvk/milstein/1596991.jpg"} -{"shape": {"h": 4380, "w": 5240}, "file": "/usr/local/google/home/danvk/milstein/1596916.jpg"} -{"shape": {"h": 4380, "w": 5415}, "file": "/usr/local/google/home/danvk/milstein/1596903.jpg"} -{"shape": {"h": 4385, "w": 5225}, "file": "/usr/local/google/home/danvk/milstein/1596987.jpg"} -{"shape": {"h": 4385, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719148f.jpg"} -{"shape": {"h": 4390, "w": 5215}, "file": "/usr/local/google/home/danvk/milstein/1596938.jpg"} -{"shape": {"h": 4390, "w": 5230}, "file": "/usr/local/google/home/danvk/milstein/1596914.jpg"} -{"shape": {"h": 4390, "w": 5235}, "file": "/usr/local/google/home/danvk/milstein/1596993.jpg"} -{"shape": {"h": 4390, "w": 5290}, "file": "/usr/local/google/home/danvk/milstein/1596977.jpg"} -{"shape": {"h": 4390, "w": 5305}, "file": "/usr/local/google/home/danvk/milstein/1596981.jpg"} -{"shape": {"h": 4395, "w": 5115}, "file": "/usr/local/google/home/danvk/milstein/1596908.jpg"} -{"shape": {"h": 4400, "w": 5185}, "file": "/usr/local/google/home/danvk/milstein/1596918.jpg"} -{"shape": {"h": 4400, "w": 5265}, "file": "/usr/local/google/home/danvk/milstein/1596963.jpg"} -{"shape": {"h": 4400, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596967.jpg"} -{"shape": {"h": 4400, "w": 5335}, "file": "/usr/local/google/home/danvk/milstein/1596952.jpg"} -{"shape": {"h": 4410, "w": 5305}, "file": "/usr/local/google/home/danvk/milstein/1596969.jpg"} -{"shape": {"h": 4410, "w": 5305}, "file": "/usr/local/google/home/danvk/milstein/1596975.jpg"} -{"shape": {"h": 4410, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711671f.jpg"} -{"shape": {"h": 4415, "w": 5250}, "file": "/usr/local/google/home/danvk/milstein/1596920.jpg"} -{"shape": {"h": 4415, "w": 5260}, "file": "/usr/local/google/home/danvk/milstein/1596930.jpg"} -{"shape": {"h": 4415, "w": 5260}, "file": "/usr/local/google/home/danvk/milstein/1596955.jpg"} -{"shape": {"h": 4415, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596931.jpg"} -{"shape": {"h": 4415, "w": 6850}, "file": "/usr/local/google/home/danvk/milstein/711395f.jpg"} -{"shape": {"h": 4415, "w": 6920}, "file": "/usr/local/google/home/danvk/milstein/708379f.jpg"} -{"shape": {"h": 4420, "w": 5240}, "file": "/usr/local/google/home/danvk/milstein/1596922.jpg"} -{"shape": {"h": 4420, "w": 5240}, "file": "/usr/local/google/home/danvk/milstein/1596959.jpg"} -{"shape": {"h": 4420, "w": 5260}, "file": "/usr/local/google/home/danvk/milstein/1596942.jpg"} -{"shape": {"h": 4420, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596932.jpg"} -{"shape": {"h": 4420, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/708861f.jpg"} -{"shape": {"h": 4425, "w": 5140}, "file": "/usr/local/google/home/danvk/milstein/1596965.jpg"} -{"shape": {"h": 4425, "w": 5145}, "file": "/usr/local/google/home/danvk/milstein/1596910.jpg"} -{"shape": {"h": 4425, "w": 5205}, "file": "/usr/local/google/home/danvk/milstein/1596927.jpg"} -{"shape": {"h": 4425, "w": 5215}, "file": "/usr/local/google/home/danvk/milstein/1596940.jpg"} -{"shape": {"h": 4425, "w": 5305}, "file": "/usr/local/google/home/danvk/milstein/1596915.jpg"} -{"shape": {"h": 4425, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712822f.jpg"} -{"shape": {"h": 4425, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/708887f.jpg"} -{"shape": {"h": 4425, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/706378f.jpg"} -{"shape": {"h": 4425, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/702203f.jpg"} -{"shape": {"h": 4425, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/706379f.jpg"} -{"shape": {"h": 4425, "w": 6895}, "file": "/usr/local/google/home/danvk/milstein/706365f.jpg"} -{"shape": {"h": 4425, "w": 6900}, "file": "/usr/local/google/home/danvk/milstein/708814f.jpg"} -{"shape": {"h": 4430, "w": 5240}, "file": "/usr/local/google/home/danvk/milstein/1596953.jpg"} -{"shape": {"h": 4430, "w": 6850}, "file": "/usr/local/google/home/danvk/milstein/708393f.jpg"} -{"shape": {"h": 4430, "w": 6855}, "file": "/usr/local/google/home/danvk/milstein/706384f.jpg"} -{"shape": {"h": 4430, "w": 6860}, "file": "/usr/local/google/home/danvk/milstein/706386f.jpg"} -{"shape": {"h": 4430, "w": 6875}, "file": "/usr/local/google/home/danvk/milstein/711292f.jpg"} -{"shape": {"h": 4435, "w": 6870}, "file": "/usr/local/google/home/danvk/milstein/706385f.jpg"} -{"shape": {"h": 4435, "w": 6885}, "file": "/usr/local/google/home/danvk/milstein/706376f.jpg"} -{"shape": {"h": 4440, "w": 5085}, "file": "/usr/local/google/home/danvk/milstein/1596912.jpg"} -{"shape": {"h": 4440, "w": 5220}, "file": "/usr/local/google/home/danvk/milstein/1596946.jpg"} -{"shape": {"h": 4440, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596949.jpg"} -{"shape": {"h": 4440, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596956.jpg"} -{"shape": {"h": 4440, "w": 5280}, "file": "/usr/local/google/home/danvk/milstein/1596961.jpg"} -{"shape": {"h": 4440, "w": 5670}, "file": "/usr/local/google/home/danvk/milstein/1823509.jpg"} -{"shape": {"h": 4440, "w": 6445}, "file": "/usr/local/google/home/danvk/milstein/711405f.jpg"} -{"shape": {"h": 4445, "w": 5240}, "file": "/usr/local/google/home/danvk/milstein/1596902.jpg"} -{"shape": {"h": 4445, "w": 5265}, "file": "/usr/local/google/home/danvk/milstein/1596973.jpg"} -{"shape": {"h": 4445, "w": 5320}, "file": "/usr/local/google/home/danvk/milstein/1596972.jpg"} -{"shape": {"h": 4450, "w": 5260}, "file": "/usr/local/google/home/danvk/milstein/1596924.jpg"} -{"shape": {"h": 4450, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596964.jpg"} -{"shape": {"h": 4450, "w": 5310}, "file": "/usr/local/google/home/danvk/milstein/1596937.jpg"} -{"shape": {"h": 4455, "w": 5145}, "file": "/usr/local/google/home/danvk/milstein/1596974.jpg"} -{"shape": {"h": 4455, "w": 5340}, "file": "/usr/local/google/home/danvk/milstein/1596947.jpg"} -{"shape": {"h": 4455, "w": 6445}, "file": "/usr/local/google/home/danvk/milstein/711403f.jpg"} -{"shape": {"h": 4460, "w": 5280}, "file": "/usr/local/google/home/danvk/milstein/1596960.jpg"} -{"shape": {"h": 4465, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596958.jpg"} -{"shape": {"h": 4475, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596948.jpg"} -{"shape": {"h": 4475, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596994.jpg"} -{"shape": {"h": 4475, "w": 5305}, "file": "/usr/local/google/home/danvk/milstein/1596988.jpg"} -{"shape": {"h": 4475, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715732f.jpg"} -{"shape": {"h": 4480, "w": 5200}, "file": "/usr/local/google/home/danvk/milstein/1596990.jpg"} -{"shape": {"h": 4480, "w": 5260}, "file": "/usr/local/google/home/danvk/milstein/1596939.jpg"} -{"shape": {"h": 4480, "w": 5305}, "file": "/usr/local/google/home/danvk/milstein/1596913.jpg"} -{"shape": {"h": 4480, "w": 5325}, "file": "/usr/local/google/home/danvk/milstein/1596950.jpg"} -{"shape": {"h": 4480, "w": 5355}, "file": "/usr/local/google/home/danvk/milstein/1596976.jpg"} -{"shape": {"h": 4480, "w": 5360}, "file": "/usr/local/google/home/danvk/milstein/1596945.jpg"} -{"shape": {"h": 4480, "w": 5380}, "file": "/usr/local/google/home/danvk/milstein/1596982.jpg"} -{"shape": {"h": 4480, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709091f.jpg"} -{"shape": {"h": 4485, "w": 5235}, "file": "/usr/local/google/home/danvk/milstein/1596941.jpg"} -{"shape": {"h": 4485, "w": 5290}, "file": "/usr/local/google/home/danvk/milstein/1596943.jpg"} -{"shape": {"h": 4485, "w": 5350}, "file": "/usr/local/google/home/danvk/milstein/1596970.jpg"} -{"shape": {"h": 4485, "w": 5355}, "file": "/usr/local/google/home/danvk/milstein/1596935.jpg"} -{"shape": {"h": 4490, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596909.jpg"} -{"shape": {"h": 4490, "w": 5310}, "file": "/usr/local/google/home/danvk/milstein/1596923.jpg"} -{"shape": {"h": 4490, "w": 5355}, "file": "/usr/local/google/home/danvk/milstein/1596966.jpg"} -{"shape": {"h": 4490, "w": 5780}, "file": "/usr/local/google/home/danvk/milstein/417654.jpg"} -{"shape": {"h": 4495, "w": 5250}, "file": "/usr/local/google/home/danvk/milstein/1596911.jpg"} -{"shape": {"h": 4500, "w": 5295}, "file": "/usr/local/google/home/danvk/milstein/1596984.jpg"} -{"shape": {"h": 4505, "w": 5335}, "file": "/usr/local/google/home/danvk/milstein/1596917.jpg"} -{"shape": {"h": 4505, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/715731f.jpg"} -{"shape": {"h": 4510, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596986.jpg"} -{"shape": {"h": 4510, "w": 5350}, "file": "/usr/local/google/home/danvk/milstein/1596933.jpg"} -{"shape": {"h": 4515, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596907.jpg"} -{"shape": {"h": 4515, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596919.jpg"} -{"shape": {"h": 4515, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596921.jpg"} -{"shape": {"h": 4515, "w": 5270}, "file": "/usr/local/google/home/danvk/milstein/1596929.jpg"} -{"shape": {"h": 4515, "w": 5340}, "file": "/usr/local/google/home/danvk/milstein/1596962.jpg"} -{"shape": {"h": 4515, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712631f.jpg"} -{"shape": {"h": 4520, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709560f.jpg"} -{"shape": {"h": 4520, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712629f.jpg"} -{"shape": {"h": 4525, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717974f.jpg"} -{"shape": {"h": 4525, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723867f.jpg"} -{"shape": {"h": 4535, "w": 5380}, "file": "/usr/local/google/home/danvk/milstein/1596992.jpg"} -{"shape": {"h": 4540, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717975f.jpg"} -{"shape": {"h": 4540, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723869f.jpg"} -{"shape": {"h": 4545, "w": 5315}, "file": "/usr/local/google/home/danvk/milstein/1596901.jpg"} -{"shape": {"h": 4545, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703966f.jpg"} -{"shape": {"h": 4545, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703975f.jpg"} -{"shape": {"h": 4545, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703984f.jpg"} -{"shape": {"h": 4545, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723872f.jpg"} -{"shape": {"h": 4550, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712630f.jpg"} -{"shape": {"h": 4550, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721373f.jpg"} -{"shape": {"h": 4550, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723912f.jpg"} -{"shape": {"h": 4555, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709005f.jpg"} -{"shape": {"h": 4555, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712626f.jpg"} -{"shape": {"h": 4555, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717972f.jpg"} -{"shape": {"h": 4555, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723870f.jpg"} -{"shape": {"h": 4560, "w": 2955}, "file": "/usr/local/google/home/danvk/milstein/712932f.jpg"} -{"shape": {"h": 4560, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/713805f.jpg"} -{"shape": {"h": 4560, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723868f.jpg"} -{"shape": {"h": 4560, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723871f.jpg"} -{"shape": {"h": 4565, "w": 5790}, "file": "/usr/local/google/home/danvk/milstein/417690.jpg"} -{"shape": {"h": 4565, "w": 5805}, "file": "/usr/local/google/home/danvk/milstein/417689.jpg"} -{"shape": {"h": 4565, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703985f.jpg"} -{"shape": {"h": 4570, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703978f.jpg"} -{"shape": {"h": 4570, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712627f.jpg"} -{"shape": {"h": 4570, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723915f.jpg"} -{"shape": {"h": 4575, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/712823f.jpg"} -{"shape": {"h": 4575, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717976f.jpg"} -{"shape": {"h": 4580, "w": 2965}, "file": "/usr/local/google/home/danvk/milstein/725872f.jpg"} -{"shape": {"h": 4580, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726696f.jpg"} -{"shape": {"h": 4585, "w": 5820}, "file": "/usr/local/google/home/danvk/milstein/417688.jpg"} -{"shape": {"h": 4585, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703974f.jpg"} -{"shape": {"h": 4590, "w": 6035}, "file": "/usr/local/google/home/danvk/milstein/464825.jpg"} -{"shape": {"h": 4590, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703987f.jpg"} -{"shape": {"h": 4590, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708645f.jpg"} -{"shape": {"h": 4595, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1507282.jpg"} -{"shape": {"h": 4595, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709533f.jpg"} -{"shape": {"h": 4600, "w": 3410}, "file": "/usr/local/google/home/danvk/milstein/716629f.jpg"} -{"shape": {"h": 4600, "w": 3410}, "file": "/usr/local/google/home/danvk/milstein/716734f.jpg"} -{"shape": {"h": 4600, "w": 5645}, "file": "/usr/local/google/home/danvk/milstein/1823523.jpg"} -{"shape": {"h": 4600, "w": 5745}, "file": "/usr/local/google/home/danvk/milstein/1823512.jpg"} -{"shape": {"h": 4600, "w": 5795}, "file": "/usr/local/google/home/danvk/milstein/417668.jpg"} -{"shape": {"h": 4600, "w": 5985}, "file": "/usr/local/google/home/danvk/milstein/464753.jpg"} -{"shape": {"h": 4600, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709532f.jpg"} -{"shape": {"h": 4600, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/717973f.jpg"} -{"shape": {"h": 4600, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726698f.jpg"} -{"shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509011.jpg"} -{"shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509013.jpg"} -{"shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509027.jpg"} -{"shape": {"h": 4605, "w": 2975}, "file": "/usr/local/google/home/danvk/milstein/1509067.jpg"} -{"shape": {"h": 4605, "w": 2980}, "file": "/usr/local/google/home/danvk/milstein/1507300.jpg"} -{"shape": {"h": 4605, "w": 2980}, "file": "/usr/local/google/home/danvk/milstein/1507306.jpg"} -{"shape": {"h": 4605, "w": 5990}, "file": "/usr/local/google/home/danvk/milstein/464841.jpg"} -{"shape": {"h": 4605, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703971f.jpg"} -{"shape": {"h": 4605, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708981f.jpg"} -{"shape": {"h": 4610, "w": 5795}, "file": "/usr/local/google/home/danvk/milstein/417632.jpg"} -{"shape": {"h": 4610, "w": 5995}, "file": "/usr/local/google/home/danvk/milstein/464770.jpg"} -{"shape": {"h": 4610, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709536f.jpg"} -{"shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508949.jpg"} -{"shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508955.jpg"} -{"shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508961.jpg"} -{"shape": {"h": 4615, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508967.jpg"} -{"shape": {"h": 4615, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711724f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507503.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507550.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507571.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507576.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507594.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507604.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507618.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507624.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507919.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507969.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507971.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507979.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507981.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507983.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1507987.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508003.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508007.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508009.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508031.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508033.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508077.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508141.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508169.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508193.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1508205.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509081.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509085.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509101.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509353.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/1509399.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716375f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716379f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716380f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716382f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716407f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716414f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716416f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716453f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716513f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716522f.jpg"} -{"shape": {"h": 4620, "w": 2990}, "file": "/usr/local/google/home/danvk/milstein/716528f.jpg"} -{"shape": {"h": 4620, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1509337.jpg"} -{"shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508227.jpg"} -{"shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508235.jpg"} -{"shape": {"h": 4620, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508243.jpg"} -{"shape": {"h": 4620, "w": 3120}, "file": "/usr/local/google/home/danvk/milstein/732263f.jpg"} -{"shape": {"h": 4620, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726701f.jpg"} -{"shape": {"h": 4625, "w": 6025}, "file": "/usr/local/google/home/danvk/milstein/464752.jpg"} -{"shape": {"h": 4625, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709531f.jpg"} -{"shape": {"h": 4625, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721303f.jpg"} -{"shape": {"h": 4625, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723831f.jpg"} -{"shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509141.jpg"} -{"shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509149.jpg"} -{"shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509151.jpg"} -{"shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509155.jpg"} -{"shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509169.jpg"} -{"shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509201.jpg"} -{"shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509229.jpg"} -{"shape": {"h": 4630, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509235.jpg"} -{"shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508289.jpg"} -{"shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508303.jpg"} -{"shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508345.jpg"} -{"shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508365.jpg"} -{"shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508431.jpg"} -{"shape": {"h": 4635, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508447.jpg"} -{"shape": {"h": 4635, "w": 6000}, "file": "/usr/local/google/home/danvk/milstein/465521.jpg"} -{"shape": {"h": 4640, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/723866f.jpg"} -{"shape": {"h": 4640, "w": 5790}, "file": "/usr/local/google/home/danvk/milstein/417676.jpg"} -{"shape": {"h": 4645, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508467.jpg"} -{"shape": {"h": 4645, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1509711.jpg"} -{"shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1508479.jpg"} -{"shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1508499.jpg"} -{"shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1508501.jpg"} -{"shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1508503.jpg"} -{"shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509403.jpg"} -{"shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509411.jpg"} -{"shape": {"h": 4645, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509481.jpg"} -{"shape": {"h": 4645, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509543.jpg"} -{"shape": {"h": 4645, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509545.jpg"} -{"shape": {"h": 4645, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715793f.jpg"} -{"shape": {"h": 4645, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709004f.jpg"} -{"shape": {"h": 4645, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709009f.jpg"} -{"shape": {"h": 4650, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508463.jpg"} -{"shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1509799.jpg"} -{"shape": {"h": 4650, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715844f.jpg"} -{"shape": {"h": 4650, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707386f.jpg"} -{"shape": {"h": 4650, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718481f.jpg"} -{"shape": {"h": 4655, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/728572f.jpg"} -{"shape": {"h": 4655, "w": 3040}, "file": "/usr/local/google/home/danvk/milstein/715832f.jpg"} -{"shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1510003.jpg"} -{"shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1517095.jpg"} -{"shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1517097.jpg"} -{"shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1517105.jpg"} -{"shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/1517119.jpg"} -{"shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715857f.jpg"} -{"shape": {"h": 4660, "w": 3020}, "file": "/usr/local/google/home/danvk/milstein/715898f.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516975.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516978.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1516979.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517061.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517079.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517147.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517155.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517159.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517185.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/1517195.jpg"} -{"shape": {"h": 4660, "w": 3030}, "file": "/usr/local/google/home/danvk/milstein/723892f.jpg"} -{"shape": {"h": 4660, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/709530f.jpg"} -{"shape": {"h": 4665, "w": 3015}, "file": "/usr/local/google/home/danvk/milstein/1509649.jpg"} -{"shape": {"h": 4665, "w": 3140}, "file": "/usr/local/google/home/danvk/milstein/732264f.jpg"} -{"shape": {"h": 4665, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707392f.jpg"} -{"shape": {"h": 4670, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707387f.jpg"} -{"shape": {"h": 4670, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707388f.jpg"} -{"shape": {"h": 4670, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707389f.jpg"} -{"shape": {"h": 4670, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707390f.jpg"} -{"shape": {"h": 4670, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707391f.jpg"} -{"shape": {"h": 4670, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718482f.jpg"} -{"shape": {"h": 4675, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707379f.jpg"} -{"shape": {"h": 4675, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707397f.jpg"} -{"shape": {"h": 4675, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718484f.jpg"} -{"shape": {"h": 4680, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707382f.jpg"} -{"shape": {"h": 4710, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718485f.jpg"} -{"shape": {"h": 4715, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730898f.jpg"} -{"shape": {"h": 4725, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/718480f.jpg"} -{"shape": {"h": 4750, "w": 8535}, "file": "/usr/local/google/home/danvk/milstein/2015206.jpg"} -{"shape": {"h": 4780, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708745f.jpg"} -{"shape": {"h": 4805, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/707398f.jpg"} -{"shape": {"h": 4850, "w": 6335}, "file": "/usr/local/google/home/danvk/milstein/1804022.jpg"} -{"shape": {"h": 4850, "w": 6345}, "file": "/usr/local/google/home/danvk/milstein/1804023.jpg"} -{"shape": {"h": 4855, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508621.jpg"} -{"shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507635.jpg"} -{"shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1507697.jpg"} -{"shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508845.jpg"} -{"shape": {"h": 4865, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508855.jpg"} -{"shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508733.jpg"} -{"shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508735.jpg"} -{"shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508749.jpg"} -{"shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508799.jpg"} -{"shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508813.jpg"} -{"shape": {"h": 4875, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508815.jpg"} -{"shape": {"h": 4875, "w": 6280}, "file": "/usr/local/google/home/danvk/milstein/1804029.jpg"} -{"shape": {"h": 4880, "w": 6330}, "file": "/usr/local/google/home/danvk/milstein/1804033.jpg"} -{"shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508541.jpg"} -{"shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508543.jpg"} -{"shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508551.jpg"} -{"shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508553.jpg"} -{"shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508555.jpg"} -{"shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508569.jpg"} -{"shape": {"h": 4885, "w": 3000}, "file": "/usr/local/google/home/danvk/milstein/1508581.jpg"} -{"shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508587.jpg"} -{"shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508591.jpg"} -{"shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508601.jpg"} -{"shape": {"h": 4885, "w": 3025}, "file": "/usr/local/google/home/danvk/milstein/1508607.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507723.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507741.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507763.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507783.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507785.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507793.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507795.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507839.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507845.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507847.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507857.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507859.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507867.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1507869.jpg"} -{"shape": {"h": 4900, "w": 3005}, "file": "/usr/local/google/home/danvk/milstein/1508271.jpg"} -{"shape": {"h": 4900, "w": 6345}, "file": "/usr/local/google/home/danvk/milstein/1804018.jpg"} -{"shape": {"h": 4910, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719146f.jpg"} -{"shape": {"h": 4910, "w": 6280}, "file": "/usr/local/google/home/danvk/milstein/1804030.jpg"} -{"shape": {"h": 4910, "w": 6285}, "file": "/usr/local/google/home/danvk/milstein/1804021.jpg"} -{"shape": {"h": 4920, "w": 6305}, "file": "/usr/local/google/home/danvk/milstein/1804031.jpg"} -{"shape": {"h": 4940, "w": 6350}, "file": "/usr/local/google/home/danvk/milstein/1804019.jpg"} -{"shape": {"h": 4945, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730998f.jpg"} -{"shape": {"h": 4945, "w": 6355}, "file": "/usr/local/google/home/danvk/milstein/1804032.jpg"} -{"shape": {"h": 4950, "w": 6350}, "file": "/usr/local/google/home/danvk/milstein/1804028.jpg"} -{"shape": {"h": 4960, "w": 3830}, "file": "/usr/local/google/home/danvk/milstein/1557995.jpg"} -{"shape": {"h": 4960, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730999f.jpg"} -{"shape": {"h": 4970, "w": 6340}, "file": "/usr/local/google/home/danvk/milstein/1804026.jpg"} -{"shape": {"h": 4975, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719147f.jpg"} -{"shape": {"h": 4980, "w": 6345}, "file": "/usr/local/google/home/danvk/milstein/1804025.jpg"} -{"shape": {"h": 4980, "w": 6350}, "file": "/usr/local/google/home/danvk/milstein/1804020.jpg"} -{"shape": {"h": 4990, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719150f.jpg"} -{"shape": {"h": 4990, "w": 6290}, "file": "/usr/local/google/home/danvk/milstein/1804024.jpg"} -{"shape": {"h": 4995, "w": 3220}, "file": "/usr/local/google/home/danvk/milstein/718998f.jpg"} -{"shape": {"h": 5015, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719151f.jpg"} -{"shape": {"h": 5030, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/719152f.jpg"} -{"shape": {"h": 5040, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/730897f.jpg"} -{"shape": {"h": 5140, "w": 4235}, "file": "/usr/local/google/home/danvk/milstein/707652f.jpg"} -{"shape": {"h": 5140, "w": 4235}, "file": "/usr/local/google/home/danvk/milstein/717167f.jpg"} -{"shape": {"h": 5175, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708612f.jpg"} -{"shape": {"h": 5180, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714412f.jpg"} -{"shape": {"h": 5275, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708614f.jpg"} -{"shape": {"h": 5305, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/703168f.jpg"} -{"shape": {"h": 5310, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708613f.jpg"} -{"shape": {"h": 5310, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723007f.jpg"} -{"shape": {"h": 5325, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/710990f.jpg"} -{"shape": {"h": 5330, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/731000f.jpg"} -{"shape": {"h": 5340, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/702890f.jpg"} -{"shape": {"h": 5340, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723008f.jpg"} -{"shape": {"h": 5350, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723002f.jpg"} -{"shape": {"h": 5350, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723003f.jpg"} -{"shape": {"h": 5350, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723013f.jpg"} -{"shape": {"h": 5350, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723913f.jpg"} -{"shape": {"h": 5350, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726691f.jpg"} -{"shape": {"h": 5355, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/732267f.jpg"} -{"shape": {"h": 5360, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711727f.jpg"} -{"shape": {"h": 5360, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726685f.jpg"} -{"shape": {"h": 5365, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708980f.jpg"} -{"shape": {"h": 5370, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708615f.jpg"} -{"shape": {"h": 5375, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726690f.jpg"} -{"shape": {"h": 5380, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/723911f.jpg"} -{"shape": {"h": 5390, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711726f.jpg"} -{"shape": {"h": 5390, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726687f.jpg"} -{"shape": {"h": 5420, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714036f.jpg"} -{"shape": {"h": 5425, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726693f.jpg"} -{"shape": {"h": 5440, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/711725f.jpg"} -{"shape": {"h": 5450, "w": 4570}, "file": "/usr/local/google/home/danvk/milstein/1823513.jpg"} -{"shape": {"h": 5455, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/726686f.jpg"} -{"shape": {"h": 5470, "w": 4715}, "file": "/usr/local/google/home/danvk/milstein/1689902.jpg"} -{"shape": {"h": 5480, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714218f.jpg"} -{"shape": {"h": 5535, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/714276f.jpg"} -{"shape": {"h": 5635, "w": 4535}, "file": "/usr/local/google/home/danvk/milstein/1823519.jpg"} -{"shape": {"h": 5650, "w": 4595}, "file": "/usr/local/google/home/danvk/milstein/1823501.jpg"} -{"shape": {"h": 5675, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/1823505.jpg"} -{"shape": {"h": 5725, "w": 4610}, "file": "/usr/local/google/home/danvk/milstein/1823508.jpg"} -{"shape": {"h": 5725, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/1823517.jpg"} -{"shape": {"h": 5755, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/1823515.jpg"} -{"shape": {"h": 5765, "w": 4685}, "file": "/usr/local/google/home/danvk/milstein/417618.jpg"} -{"shape": {"h": 5770, "w": 4560}, "file": "/usr/local/google/home/danvk/milstein/417655.jpg"} -{"shape": {"h": 5770, "w": 4590}, "file": "/usr/local/google/home/danvk/milstein/1823518.jpg"} -{"shape": {"h": 5780, "w": 4485}, "file": "/usr/local/google/home/danvk/milstein/417616.jpg"} -{"shape": {"h": 5790, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/417645.jpg"} -{"shape": {"h": 5790, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417617.jpg"} -{"shape": {"h": 5790, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417646.jpg"} -{"shape": {"h": 5790, "w": 4730}, "file": "/usr/local/google/home/danvk/milstein/417624.jpg"} -{"shape": {"h": 5805, "w": 4505}, "file": "/usr/local/google/home/danvk/milstein/417666.jpg"} -{"shape": {"h": 5805, "w": 4520}, "file": "/usr/local/google/home/danvk/milstein/417653.jpg"} -{"shape": {"h": 5805, "w": 4525}, "file": "/usr/local/google/home/danvk/milstein/417614.jpg"} -{"shape": {"h": 5805, "w": 4560}, "file": "/usr/local/google/home/danvk/milstein/417682.jpg"} -{"shape": {"h": 5805, "w": 4575}, "file": "/usr/local/google/home/danvk/milstein/417681.jpg"} -{"shape": {"h": 5805, "w": 4585}, "file": "/usr/local/google/home/danvk/milstein/417661.jpg"} -{"shape": {"h": 5805, "w": 4585}, "file": "/usr/local/google/home/danvk/milstein/417662.jpg"} -{"shape": {"h": 5805, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/417663.jpg"} -{"shape": {"h": 5805, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/417673.jpg"} -{"shape": {"h": 5805, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/417631.jpg"} -{"shape": {"h": 5805, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/417657.jpg"} -{"shape": {"h": 5805, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/417633.jpg"} -{"shape": {"h": 5805, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/417652.jpg"} -{"shape": {"h": 5805, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417626.jpg"} -{"shape": {"h": 5805, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417630.jpg"} -{"shape": {"h": 5805, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417640.jpg"} -{"shape": {"h": 5805, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417641.jpg"} -{"shape": {"h": 5805, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/417671.jpg"} -{"shape": {"h": 5805, "w": 4700}, "file": "/usr/local/google/home/danvk/milstein/417636.jpg"} -{"shape": {"h": 5805, "w": 4720}, "file": "/usr/local/google/home/danvk/milstein/417635.jpg"} -{"shape": {"h": 5805, "w": 4745}, "file": "/usr/local/google/home/danvk/milstein/417623.jpg"} -{"shape": {"h": 5810, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/417621.jpg"} -{"shape": {"h": 5820, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721369f.jpg"} -{"shape": {"h": 5825, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/708639f.jpg"} -{"shape": {"h": 5830, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/464812.jpg"} -{"shape": {"h": 5845, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464811.jpg"} -{"shape": {"h": 5885, "w": 4540}, "file": "/usr/local/google/home/danvk/milstein/464810.jpg"} -{"shape": {"h": 5885, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721370f.jpg"} -{"shape": {"h": 5925, "w": 4520}, "file": "/usr/local/google/home/danvk/milstein/1238853.jpg"} -{"shape": {"h": 5930, "w": 6140}, "file": "/usr/local/google/home/danvk/milstein/721371f.jpg"} -{"shape": {"h": 5940, "w": 4535}, "file": "/usr/local/google/home/danvk/milstein/1238854.jpg"} -{"shape": {"h": 5950, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/464823.jpg"} -{"shape": {"h": 5950, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/1238855.jpg"} -{"shape": {"h": 5970, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/465611.jpg"} -{"shape": {"h": 5970, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/465667.jpg"} -{"shape": {"h": 5970, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465621.jpg"} -{"shape": {"h": 5975, "w": 4610}, "file": "/usr/local/google/home/danvk/milstein/465633.jpg"} -{"shape": {"h": 5985, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465641.jpg"} -{"shape": {"h": 5985, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464768.jpg"} -{"shape": {"h": 5985, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465616.jpg"} -{"shape": {"h": 5990, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465537.jpg"} -{"shape": {"h": 5990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465605.jpg"} -{"shape": {"h": 5990, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465647.jpg"} -{"shape": {"h": 5990, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/464845.jpg"} -{"shape": {"h": 5990, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465628.jpg"} -{"shape": {"h": 5990, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465516.jpg"} -{"shape": {"h": 5990, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464828.jpg"} -{"shape": {"h": 5990, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464829.jpg"} -{"shape": {"h": 5990, "w": 4675}, "file": "/usr/local/google/home/danvk/milstein/464748.jpg"} -{"shape": {"h": 5995, "w": 4600}, "file": "/usr/local/google/home/danvk/milstein/464818.jpg"} -{"shape": {"h": 5995, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/465624.jpg"} -{"shape": {"h": 5995, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/464766.jpg"} -{"shape": {"h": 5995, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465518.jpg"} -{"shape": {"h": 5995, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465658.jpg"} -{"shape": {"h": 5995, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/465645.jpg"} -{"shape": {"h": 5995, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465568.jpg"} -{"shape": {"h": 5995, "w": 4635}, "file": "/usr/local/google/home/danvk/milstein/465512.jpg"} -{"shape": {"h": 5995, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/464831.jpg"} -{"shape": {"h": 5995, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/464832.jpg"} -{"shape": {"h": 5995, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/464848.jpg"} -{"shape": {"h": 6005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/464735.jpg"} -{"shape": {"h": 6005, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465627.jpg"} -{"shape": {"h": 6005, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/464839.jpg"} -{"shape": {"h": 6005, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/465520.jpg"} -{"shape": {"h": 6005, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/464833.jpg"} -{"shape": {"h": 6010, "w": 4615}, "file": "/usr/local/google/home/danvk/milstein/465679.jpg"} -{"shape": {"h": 6010, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/464843.jpg"} -{"shape": {"h": 6010, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465542.jpg"} -{"shape": {"h": 6010, "w": 4640}, "file": "/usr/local/google/home/danvk/milstein/465704.jpg"} -{"shape": {"h": 6010, "w": 4645}, "file": "/usr/local/google/home/danvk/milstein/465523.jpg"} -{"shape": {"h": 6015, "w": 4595}, "file": "/usr/local/google/home/danvk/milstein/464817.jpg"} -{"shape": {"h": 6015, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/464741.jpg"} -{"shape": {"h": 6015, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/465511.jpg"} -{"shape": {"h": 6020, "w": 3850}, "file": "/usr/local/google/home/danvk/milstein/733592f.jpg"} -{"shape": {"h": 6020, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464819.jpg"} -{"shape": {"h": 6025, "w": 4605}, "file": "/usr/local/google/home/danvk/milstein/464751.jpg"} -{"shape": {"h": 6030, "w": 4655}, "file": "/usr/local/google/home/danvk/milstein/464747.jpg"} -{"shape": {"h": 6030, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/464822.jpg"} -{"shape": {"h": 6045, "w": 3855}, "file": "/usr/local/google/home/danvk/milstein/728119f.jpg"} -{"shape": {"h": 6045, "w": 4625}, "file": "/usr/local/google/home/danvk/milstein/465710.jpg"} -{"shape": {"h": 6050, "w": 4630}, "file": "/usr/local/google/home/danvk/milstein/465711.jpg"} -{"shape": {"h": 6055, "w": 3880}, "file": "/usr/local/google/home/danvk/milstein/728136f.jpg"} -{"shape": {"h": 6070, "w": 3905}, "file": "/usr/local/google/home/danvk/milstein/728204f.jpg"} -{"shape": {"h": 6080, "w": 4935}, "file": "/usr/local/google/home/danvk/milstein/1557869.jpg"} -{"shape": {"h": 6085, "w": 4420}, "file": "/usr/local/google/home/danvk/milstein/1997168.jpg"} -{"shape": {"h": 6085, "w": 4660}, "file": "/usr/local/google/home/danvk/milstein/465584.jpg"} -{"shape": {"h": 6140, "w": 3560}, "file": "/usr/local/google/home/danvk/milstein/724054f.jpg"} -{"shape": {"h": 6140, "w": 3780}, "file": "/usr/local/google/home/danvk/milstein/704554f.jpg"} -{"shape": {"h": 6140, "w": 3870}, "file": "/usr/local/google/home/danvk/milstein/724663f.jpg"} -{"shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/722329f.jpg"} -{"shape": {"h": 6140, "w": 3925}, "file": "/usr/local/google/home/danvk/milstein/722810f.jpg"} -{"shape": {"h": 6140, "w": 3930}, "file": "/usr/local/google/home/danvk/milstein/707622f.jpg"} -{"shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/708438f.jpg"} -{"shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/709081f.jpg"} -{"shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/709202f.jpg"} -{"shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/709741f.jpg"} -{"shape": {"h": 6140, "w": 3935}, "file": "/usr/local/google/home/danvk/milstein/724038f.jpg"} -{"shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/707502f.jpg"} -{"shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/708012f.jpg"} -{"shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/711003f.jpg"} -{"shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/721841f.jpg"} -{"shape": {"h": 6140, "w": 3940}, "file": "/usr/local/google/home/danvk/milstein/727849f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/708777f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/712242f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717085f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/717367f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/720341f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/721224f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722089f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722216f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722327f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722334f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/722767f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730356f.jpg"} -{"shape": {"h": 6140, "w": 3945}, "file": "/usr/local/google/home/danvk/milstein/730846f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/707378f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/708907f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/709605f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/710972f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711440f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/711524f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/713217f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/714397f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/715747f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/717450f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718217f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/718639f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/719256f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720930f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/720996f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721347f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721429f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/721829f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722031f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722111f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722193f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722239f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722262f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722273f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722342f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/722372f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723184f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723684f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/723948f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/730706f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/731750f.jpg"} -{"shape": {"h": 6140, "w": 3950}, "file": "/usr/local/google/home/danvk/milstein/732010f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/701779f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707385f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/707992f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/708223f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/709006f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/710467f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711580f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/711960f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/712050f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713862f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713865f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713875f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/713891f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714066f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714104f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714130f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/714337f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/715129f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717365f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717388f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717427f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/717700f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718470f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/718813f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/719234f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720955f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/720981f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722079f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722141f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722148f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722190f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722207f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722330f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722563f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/722773f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/723368f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724216f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724512f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724708f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724815f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724817f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/724818f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730683f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/730693f.jpg"} -{"shape": {"h": 6140, "w": 3955}, "file": "/usr/local/google/home/danvk/milstein/732260f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700216f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/700689f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/703962f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/704026f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707381f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707400f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/707401f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708116f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/708216f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709016f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709086f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709172f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/709902f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/712969f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713452f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/713876f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714129f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714165f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714487f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714722f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/714882f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716642f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/716864f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717118f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717449f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717603f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717684f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/717884f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/718435f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719047f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719230f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/719849f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720177f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720401f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/720538f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/721199f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722003f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722178f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/722265f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/723374f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/724765f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/725268f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/726703f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/730856f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731518f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731902f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/731933f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732024f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/732573f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733296f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733304f.jpg"} -{"shape": {"h": 6140, "w": 3960}, "file": "/usr/local/google/home/danvk/milstein/733525f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700307f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700343f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700445f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700454f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700478f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700609f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/700694f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/703845f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707383f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707399f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/707562f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708460f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708530f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708552f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708696f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/708909f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709118f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709374f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709512f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/709541f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/710140f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/711013f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713244f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713735f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713807f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713918f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713920f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/713923f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/714211f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716618f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716799f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716848f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716978f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/716993f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717028f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717030f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717185f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717248f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717254f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717277f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717333f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717359f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717591f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/717720f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719116f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/719855f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721307f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721647f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721735f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721830f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721831f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721838f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721844f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/721848f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722180f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722352f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722441f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722461f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722543f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/722604f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/723860f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730672f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/730729f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731488f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731498f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731502f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731516f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731525f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731527f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731777f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731845f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/731846f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732572f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732587f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732770f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/732932f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733180f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733293f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733298f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/733301f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734366f.jpg"} -{"shape": {"h": 6140, "w": 3965}, "file": "/usr/local/google/home/danvk/milstein/734464f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700022f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700310f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700477f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/700955f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/703969f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/705167f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707377f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707380f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707394f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707395f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/707396f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708430f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708431f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708433f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708556f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708667f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708719f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/708908f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709046f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709053f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709733f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709737f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/709781f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710191f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/710983f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711921f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/711927f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712184f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/712678f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713022f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713024f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713250f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713260f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713530f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/713632f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715026f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715031f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/715032f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716641f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/716808f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717065f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717131f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717137f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717221f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717268f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717292f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717317f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717334f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717337f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717351f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717361f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/717971f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/718487f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719013f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719169f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719178f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719380f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719704f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719854f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/719993f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720076f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720178f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720189f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720195f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720273f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720290f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720699f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720704f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720732f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720759f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/720943f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721004f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721220f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721578f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721755f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721833f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721836f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721839f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721840f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721842f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721843f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/721851f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722113f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722165f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722167f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722182f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722195f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722264f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722328f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722466f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722475f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722500f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722503f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722539f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722601f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/722684f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723026f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723228f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723780f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723827f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723844f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723964f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/723968f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724362f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724367f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724368f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724500f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/724791f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/726699f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730520f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730666f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730686f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730728f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/730857f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731085f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731494f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731496f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731497f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731503f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731505f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731522f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731840f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/731937f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732236f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732237f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732239f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732240f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732241f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732253f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732309f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732822f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732856f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732933f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/732934f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733319f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733331f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733553f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733611f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733682f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/733712f.jpg"} -{"shape": {"h": 6140, "w": 3970}, "file": "/usr/local/google/home/danvk/milstein/734243f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701856f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/701901f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703338f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703970f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/703977f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/704783f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706214f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/706959f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707376f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/707384f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708426f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708427f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708428f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708429f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708500f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708545f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708565f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708644f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708722f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/708758f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709030f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709045f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709047f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709538f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709742f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709783f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/709784f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/711797f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712013f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712769f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/712898f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713030f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713235f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713531f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713554f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713583f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/713600f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714112f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714114f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714115f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714124f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714330f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714477f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714515f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/714812f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716622f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716727f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/716960f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717076f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717124f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717202f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717203f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717261f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717307f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717308f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717332f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717408f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/717529f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718547f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718609f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718648f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718937f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/718997f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719011f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719015f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719258f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719881f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/719886f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720075f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720084f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720179f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720292f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720715f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720738f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/720920f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721007f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721160f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721380f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721490f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721648f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721834f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721835f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721837f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/721847f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722010f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722055f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722067f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722263f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722361f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722509f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722540f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722590f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722674f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/722837f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723498f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723694f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723724f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723858f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723877f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/723923f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724053f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724249f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724363f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724369f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724370f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724795f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/724801f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725034f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/725877f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/726700f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/727795f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730074f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730673f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730816f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/730852f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731063f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731084f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/731841f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732235f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732840f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/732930f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733313f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733582f.jpg"} -{"shape": {"h": 6140, "w": 3975}, "file": "/usr/local/google/home/danvk/milstein/733766f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701355f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/701543f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702171f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/702298f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703961f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703979f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703981f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/703983f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/705154f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/707450f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708432f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708434f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708463f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708559f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708578f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708638f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708749f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/708969f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/709484f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/710044f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/711001f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712553f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712621f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712798f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/712899f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713228f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713252f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713329f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713485f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713699f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/713909f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/714113f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717134f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717234f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717329f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717396f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717459f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/717621f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718122f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/718277f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719218f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719349f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719851f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/719852f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720190f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720274f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/720802f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721056f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721309f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721318f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721321f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721404f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721451f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/721850f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722421f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/722458f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723075f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723229f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723507f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723751f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723830f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723889f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/723896f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724359f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/724794f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725262f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/725593f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726125f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726144f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/726441f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/730540f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/731938f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732231f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732232f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732250f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732437f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/732813f.jpg"} -{"shape": {"h": 6140, "w": 3980}, "file": "/usr/local/google/home/danvk/milstein/733823f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701333f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701356f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701374f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701544f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/701842f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702065f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/702175f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703327f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703576f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703964f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703965f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703982f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/703986f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/705115f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708407f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708408f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708409f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708642f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708910f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708931f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/708984f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709087f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709101f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709106f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709534f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/709537f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/710988f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712147f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712850f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/712921f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713147f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713232f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/713698f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/716709f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/716992f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717067f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717070f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717116f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717255f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717267f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717271f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717413f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/717763f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718103f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718210f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718287f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/718354f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720542f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720623f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720640f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/720741f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721354f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721494f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721523f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/721849f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722261f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722696f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/722793f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723009f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723028f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723227f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723243f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723524f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723893f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723909f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/723914f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724106f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724110f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724112f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/724566f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/725753f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727636f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/727680f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/728030f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730098f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/730845f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731045f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731083f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/731842f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734485f.jpg"} -{"shape": {"h": 6140, "w": 3985}, "file": "/usr/local/google/home/danvk/milstein/734560f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/702430f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703960f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703963f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/703968f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705194f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705351f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/705439f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708417f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708425f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708640f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708641f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/708643f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/709044f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/710643f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/712732f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713249f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713255f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/713601f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714409f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/714493f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/715239f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/716892f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/716929f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/717068f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718014f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718666f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/718942f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/719064f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/719853f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/721367f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722787f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/722898f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723773f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/723832f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/726697f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727626f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/727669f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/730828f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/731894f.jpg"} -{"shape": {"h": 6140, "w": 3990}, "file": "/usr/local/google/home/danvk/milstein/732963f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/708082f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/709008f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/709535f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/712852f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/712855f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/713148f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/714306f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/715734f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/716569f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/716620f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/716621f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717098f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/717100f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/718902f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721108f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/721745f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723874f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/723917f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/730288f.jpg"} -{"shape": {"h": 6140, "w": 3995}, "file": "/usr/local/google/home/danvk/milstein/730511f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/702820f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/702829f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/703967f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/703973f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/710313f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/710987f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/712803f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/714489f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/717180f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/719354f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/719913f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/723873f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/730853f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/733030f.jpg"} -{"shape": {"h": 6140, "w": 4000}, "file": "/usr/local/google/home/danvk/milstein/733591f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/702324f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/703976f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/708646f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/712622f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/712802f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/714640f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/717244f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/718424f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/720701f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/729363f.jpg"} -{"shape": {"h": 6140, "w": 4005}, "file": "/usr/local/google/home/danvk/milstein/730850f.jpg"} -{"shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/700819f.jpg"} -{"shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/703972f.jpg"} -{"shape": {"h": 6140, "w": 4010}, "file": "/usr/local/google/home/danvk/milstein/714556f.jpg"} -{"shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/702633f.jpg"} -{"shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/702780f.jpg"} -{"shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/714647f.jpg"} -{"shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/716981f.jpg"} -{"shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/721641f.jpg"} -{"shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/721832f.jpg"} -{"shape": {"h": 6140, "w": 4015}, "file": "/usr/local/google/home/danvk/milstein/726970f.jpg"} -{"shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/700807f.jpg"} -{"shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/702469f.jpg"} -{"shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/703804f.jpg"} -{"shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/709090f.jpg"} -{"shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/710388f.jpg"} -{"shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/714648f.jpg"} -{"shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/717574f.jpg"} -{"shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/719850f.jpg"} -{"shape": {"h": 6140, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/720700f.jpg"} -{"shape": {"h": 6140, "w": 4025}, "file": "/usr/local/google/home/danvk/milstein/702634f.jpg"} -{"shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/702027f.jpg"} -{"shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/702505f.jpg"} -{"shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/726778f.jpg"} -{"shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/730504f.jpg"} -{"shape": {"h": 6140, "w": 4030}, "file": "/usr/local/google/home/danvk/milstein/732579f.jpg"} -{"shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/702325f.jpg"} -{"shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/721351f.jpg"} -{"shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/730855f.jpg"} -{"shape": {"h": 6140, "w": 4035}, "file": "/usr/local/google/home/danvk/milstein/732501f.jpg"} -{"shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/702565f.jpg"} -{"shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/702580f.jpg"} -{"shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/703980f.jpg"} -{"shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/709010f.jpg"} -{"shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/731886f.jpg"} -{"shape": {"h": 6140, "w": 4040}, "file": "/usr/local/google/home/danvk/milstein/731898f.jpg"} -{"shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/708647f.jpg"} -{"shape": {"h": 6140, "w": 4045}, "file": "/usr/local/google/home/danvk/milstein/723011f.jpg"} -{"shape": {"h": 6140, "w": 4050}, "file": "/usr/local/google/home/danvk/milstein/712809f.jpg"} -{"shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/702278f.jpg"} -{"shape": {"h": 6140, "w": 4055}, "file": "/usr/local/google/home/danvk/milstein/709089f.jpg"} -{"shape": {"h": 6140, "w": 4075}, "file": "/usr/local/google/home/danvk/milstein/717733f.jpg"} -{"shape": {"h": 6140, "w": 4080}, "file": "/usr/local/google/home/danvk/milstein/702511f.jpg"} -{"shape": {"h": 6140, "w": 4145}, "file": "/usr/local/google/home/danvk/milstein/708718f.jpg"} -{"shape": {"h": 6140, "w": 4145}, "file": "/usr/local/google/home/danvk/milstein/721845f.jpg"} -{"shape": {"h": 6140, "w": 4215}, "file": "/usr/local/google/home/danvk/milstein/721374f.jpg"} -{"shape": {"h": 6140, "w": 4220}, "file": "/usr/local/google/home/danvk/milstein/708911f.jpg"} -{"shape": {"h": 6140, "w": 4220}, "file": "/usr/local/google/home/danvk/milstein/711720f.jpg"} -{"shape": {"h": 6140, "w": 4220}, "file": "/usr/local/google/home/danvk/milstein/723010f.jpg"} -{"shape": {"h": 6140, "w": 4220}, "file": "/usr/local/google/home/danvk/milstein/730642f.jpg"} -{"shape": {"h": 6140, "w": 4235}, "file": "/usr/local/google/home/danvk/milstein/730851f.jpg"} -{"shape": {"h": 6140, "w": 4240}, "file": "/usr/local/google/home/danvk/milstein/708616f.jpg"} -{"shape": {"h": 6140, "w": 4240}, "file": "/usr/local/google/home/danvk/milstein/730854f.jpg"} -{"shape": {"h": 6140, "w": 4240}, "file": "/usr/local/google/home/danvk/milstein/730997f.jpg"} -{"shape": {"h": 6140, "w": 4245}, "file": "/usr/local/google/home/danvk/milstein/708611f.jpg"} -{"shape": {"h": 6140, "w": 4245}, "file": "/usr/local/google/home/danvk/milstein/727719f.jpg"} -{"shape": {"h": 6140, "w": 4245}, "file": "/usr/local/google/home/danvk/milstein/730844f.jpg"} -{"shape": {"h": 6140, "w": 4245}, "file": "/usr/local/google/home/danvk/milstein/732278f.jpg"} -{"shape": {"h": 6140, "w": 4250}, "file": "/usr/local/google/home/danvk/milstein/723910f.jpg"} -{"shape": {"h": 6140, "w": 4250}, "file": "/usr/local/google/home/danvk/milstein/726688f.jpg"} -{"shape": {"h": 6140, "w": 4255}, "file": "/usr/local/google/home/danvk/milstein/708610f.jpg"} -{"shape": {"h": 6140, "w": 4255}, "file": "/usr/local/google/home/danvk/milstein/712174f.jpg"} -{"shape": {"h": 6140, "w": 4260}, "file": "/usr/local/google/home/danvk/milstein/710989f.jpg"} -{"shape": {"h": 6140, "w": 4260}, "file": "/usr/local/google/home/danvk/milstein/723012f.jpg"} -{"shape": {"h": 6140, "w": 4260}, "file": "/usr/local/google/home/danvk/milstein/726692f.jpg"} -{"shape": {"h": 6140, "w": 4260}, "file": "/usr/local/google/home/danvk/milstein/726694f.jpg"} -{"shape": {"h": 6140, "w": 4265}, "file": "/usr/local/google/home/danvk/milstein/711721f.jpg"} -{"shape": {"h": 6140, "w": 4265}, "file": "/usr/local/google/home/danvk/milstein/714033f.jpg"} -{"shape": {"h": 6140, "w": 4270}, "file": "/usr/local/google/home/danvk/milstein/711722f.jpg"} -{"shape": {"h": 6140, "w": 4270}, "file": "/usr/local/google/home/danvk/milstein/731047f.jpg"} -{"shape": {"h": 6140, "w": 4280}, "file": "/usr/local/google/home/danvk/milstein/727005f.jpg"} -{"shape": {"h": 6140, "w": 4280}, "file": "/usr/local/google/home/danvk/milstein/727635f.jpg"} -{"shape": {"h": 6140, "w": 4285}, "file": "/usr/local/google/home/danvk/milstein/714035f.jpg"} -{"shape": {"h": 6140, "w": 4290}, "file": "/usr/local/google/home/danvk/milstein/732268f.jpg"} -{"shape": {"h": 6140, "w": 4300}, "file": "/usr/local/google/home/danvk/milstein/711723f.jpg"} -{"shape": {"h": 6140, "w": 4310}, "file": "/usr/local/google/home/danvk/milstein/709007f.jpg"} -{"shape": {"h": 6140, "w": 4310}, "file": "/usr/local/google/home/danvk/milstein/709540f.jpg"} -{"shape": {"h": 6140, "w": 4385}, "file": "/usr/local/google/home/danvk/milstein/721317f.jpg"} -{"shape": {"h": 6140, "w": 4450}, "file": "/usr/local/google/home/danvk/milstein/712624f.jpg"} -{"shape": {"h": 6140, "w": 4460}, "file": "/usr/local/google/home/danvk/milstein/723664f.jpg"} -{"shape": {"h": 6140, "w": 4515}, "file": "/usr/local/google/home/danvk/milstein/712632f.jpg"} -{"shape": {"h": 6140, "w": 4520}, "file": "/usr/local/google/home/danvk/milstein/712625f.jpg"} -{"shape": {"h": 6140, "w": 4520}, "file": "/usr/local/google/home/danvk/milstein/715730f.jpg"} -{"shape": {"h": 6140, "w": 4535}, "file": "/usr/local/google/home/danvk/milstein/709092f.jpg"} -{"shape": {"h": 6140, "w": 4540}, "file": "/usr/local/google/home/danvk/milstein/723916f.jpg"} -{"shape": {"h": 6140, "w": 4545}, "file": "/usr/local/google/home/danvk/milstein/709088f.jpg"} -{"shape": {"h": 6140, "w": 4555}, "file": "/usr/local/google/home/danvk/milstein/703989f.jpg"} -{"shape": {"h": 6140, "w": 4555}, "file": "/usr/local/google/home/danvk/milstein/703990f.jpg"} -{"shape": {"h": 6140, "w": 4575}, "file": "/usr/local/google/home/danvk/milstein/712623f.jpg"} -{"shape": {"h": 6140, "w": 4575}, "file": "/usr/local/google/home/danvk/milstein/712628f.jpg"} -{"shape": {"h": 6140, "w": 4580}, "file": "/usr/local/google/home/danvk/milstein/730641f.jpg"} -{"shape": {"h": 6140, "w": 4610}, "file": "/usr/local/google/home/danvk/milstein/703988f.jpg"} -{"shape": {"h": 6140, "w": 4620}, "file": "/usr/local/google/home/danvk/milstein/715733f.jpg"} -{"shape": {"h": 6140, "w": 5035}, "file": "/usr/local/google/home/danvk/milstein/719153f.jpg"} -{"shape": {"h": 6140, "w": 5140}, "file": "/usr/local/google/home/danvk/milstein/723456f.jpg"} -{"shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/724064f.jpg"} -{"shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732266f.jpg"} -{"shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732284f.jpg"} -{"shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732285f.jpg"} -{"shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/732571f.jpg"} -{"shape": {"h": 6260, "w": 4020}, "file": "/usr/local/google/home/danvk/milstein/733389f.jpg"} -{"shape": {"h": 6770, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708302f.jpg"} -{"shape": {"h": 6845, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711551f.jpg"} -{"shape": {"h": 6850, "w": 4390}, "file": "/usr/local/google/home/danvk/milstein/711549f.jpg"} -{"shape": {"h": 6850, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711550f.jpg"} -{"shape": {"h": 6850, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711555f.jpg"} -{"shape": {"h": 6850, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711552f.jpg"} -{"shape": {"h": 6850, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708357f.jpg"} -{"shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711289f.jpg"} -{"shape": {"h": 6860, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711667f.jpg"} -{"shape": {"h": 6865, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711640f.jpg"} -{"shape": {"h": 6870, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711409f.jpg"} -{"shape": {"h": 6870, "w": 4400}, "file": "/usr/local/google/home/danvk/milstein/711665f.jpg"} -{"shape": {"h": 6870, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711410f.jpg"} -{"shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708347f.jpg"} -{"shape": {"h": 6870, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708862f.jpg"} -{"shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/706416f.jpg"} -{"shape": {"h": 6875, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/711408f.jpg"} -{"shape": {"h": 6875, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708388f.jpg"} -{"shape": {"h": 6900, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/702199f.jpg"} -{"shape": {"h": 6900, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/708325f.jpg"} -{"shape": {"h": 6910, "w": 4390}, "file": "/usr/local/google/home/danvk/milstein/711295f.jpg"} -{"shape": {"h": 6910, "w": 4425}, "file": "/usr/local/google/home/danvk/milstein/708869f.jpg"} -{"shape": {"h": 6925, "w": 4410}, "file": "/usr/local/google/home/danvk/milstein/708367f.jpg"} -{"shape": {"h": 6925, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/1552837.jpg"} -{"shape": {"h": 6925, "w": 4415}, "file": "/usr/local/google/home/danvk/milstein/711227f.jpg"} -{"shape": {"h": 6940, "w": 2670}, "file": "/usr/local/google/home/danvk/milstein/1627930.jpg"} -{"shape": {"h": 6985, "w": 2680}, "file": "/usr/local/google/home/danvk/milstein/1627913.jpg"} -{"shape": {"h": 6990, "w": 2685}, "file": "/usr/local/google/home/danvk/milstein/1627914.jpg"} -{"shape": {"h": 7005, "w": 2670}, "file": "/usr/local/google/home/danvk/milstein/1627928.jpg"} -{"shape": {"h": 7005, "w": 2680}, "file": "/usr/local/google/home/danvk/milstein/1627929.jpg"} -{"shape": {"h": 7005, "w": 2695}, "file": "/usr/local/google/home/danvk/milstein/1627915.jpg"} diff --git a/nyc/records_to_photos.py b/nyc/records_to_photos.py deleted file mode 100755 index 7a0c30f2..00000000 --- a/nyc/records_to_photos.py +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env python -"""Split single images in images.ndjson into multiple records in photos.ndjson.""" - -import copy -import dataclasses -import json -import os -import sys - -from data.item import json_to_item - -if __name__ == "__main__": - assert len(sys.argv) == 4, "Usage: %s imges.ndjson crops.json photos.ndjson" - _, records_ndjson, crops_json, out_ndjson = sys.argv - - rs = [json_to_item(r) for r in open(records_ndjson)] - expansions = json.load(open(crops_json)) - - skipped = 0 - num_images, num_photos = 0, 0 - - out = [] - for idx, r in enumerate(rs): - digital_id = r.id - image_file = "%s.jpg" % digital_id - expansion = expansions.get(image_file) or {"crops": {}} - # if not expansion: - # # XXX: why skip any images? - # # skipped += 1 - # # sys.stderr.write(f'Skipping {digital_id}\n') - # continue - - num_images += 1 - - crops = expansion["crops"] - if len(crops) == 0: - # r.thumbnail_url = image_file - r.photo_url = image_file - out.append(r) - num_photos += 1 - else: - for photo_file in crops.keys(): - new_r = copy.deepcopy(r) - new_id, _ = os.path.splitext(photo_file) - new_r.id = new_id - new_r.photo_url = photo_file - out.append(new_r) - num_photos += 1 - - if num_photos % 1000 == 0: - sys.stderr.write("Processed %d images -> %d photos\n" % (num_images, num_photos)) - - sys.stderr.write("Skipped %d records\n" % skipped) - with open(out_ndjson, "w") as f: - for r in out: - f.write(json.dumps(dataclasses.asdict(r))) - f.write("\n") - sys.stderr.write("Wrote %d records\n" % len(out)) diff --git a/ocr/__init__.py b/ocr/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/ocr/eval_and_review.py b/ocr/eval_and_review.py deleted file mode 100755 index c21507d5..00000000 --- a/ocr/eval_and_review.py +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/env python -"""Evaluate the differences between two OCR files and output JS for manual review. - -Input is two JSON files mapping back ID -> text (base and experiment). -Outputs some stats and fills in ocr/feedback/review/changes.js -""" - -# - -import dataclasses -import json -import sys - -from data.item import load_items -from ocr.score_utils import score_for_pair - -if __name__ == "__main__": - (base_file, exp_file) = sys.argv[1:] - - base: dict[str, str] = json.load(open(base_file)) - exp: dict[str, str | dict] = json.load(open(exp_file)) - - records = load_items("data/items.ndjson") - id_to_record = {r.id: r for r in records} - front_to_back = {r.id: r.back_id for r in records if r.back_id} - site_data = json.load(open("../oldnyc.github.io/data.json")) - back_to_front = {} - for r in site_data["photos"]: - id = r["photo_id"] - photo_id = id.split("-")[0] - back_id = front_to_back.get(photo_id) - if back_id: - back_to_front[back_id] = id - - scores = [] - changes = [] - for id, exp_item in exp.items(): - base_text = base[id] - if isinstance(base_text, dict): - base_text = base_text["text"] # type: ignore - if isinstance(exp_item, dict): - exp_text = exp_item["text"] - orig_text = exp_item["original"] - else: - exp_text = exp_item - orig_text = None - (score, distance, adjusted_base) = score_for_pair(base_text, exp_text, id) - scores.append(score) - changes.append( - { - "photo_id": back_to_front.get(id, id.replace("b", "f-a")), # should be back ID - "before": adjusted_base, - "after": exp_text, - "metadata": { - "cookie": "eval", - "len_base": len(base_text), - "len_exp": len(exp_text), - "distance": distance, - "score": score, - "back_id": id, - "record": ( - dataclasses.asdict(id_to_record[back_to_front[id].split("-")[0]]) - if id in back_to_front - else None - ), - "raw_text": orig_text, - }, - } - ) - - changes.sort(key=lambda r: r["metadata"]["score"]) - for i, change in enumerate(changes): - # id = change['photo_id'] - back_id = change["metadata"]["back_id"] - score = change["metadata"]["score"] - distance = change["metadata"]["distance"] - len_base = change["metadata"]["len_base"] - len_exp = change["metadata"]["len_exp"] - print("%3d %s\t%.3f\t%4d\t%d\t%d" % (i + 1, back_id, score, distance, len_base, len_exp)) - - mean = sum(scores) / len(scores) - print("Average: %.3f" % mean) - - open("ocr/feedback/review/changes.js", "w").write( - "var changes = %s;" % json.dumps(changes, indent=2) - ) diff --git a/ocr/feedback/README.md b/ocr/feedback/README.md deleted file mode 100644 index 44fd4dcd..00000000 --- a/ocr/feedback/README.md +++ /dev/null @@ -1,27 +0,0 @@ -To update OCR corrections, update user-feedback.csv and run: - - ./extract_user_ocr.py - ./ocr_corrector.py - -I might need to do some de-duping of photo ids. Users could correct the text -from two different photos on the same card. - -I included a cookie! Hooray! - --> but does it work correctly? - (e.g. photo with five identical IPs but different cookies) - It seems to not work; basically every cookie is unique. - -When there are multiple disagreeing interpretations, I could pick the one -that comes from the cookie with the most fixes. Or pick the one with the -most changes. Or pick one randomly. - -After stepping through 100 photos with corrections, I saw absolutely no -spam. Simply accepting corrections is going to work fine. - -Which one to accept? - first de-dupe by IP - if there's agreement between any two, use that. - otherwise, pick the one with the largest diff. - -Next time I do an update, make sure that 700391f-a has a complete -description. diff --git a/ocr/generate_gpt_review.py b/ocr/generate_gpt_review.py deleted file mode 100755 index abefcfb7..00000000 --- a/ocr/generate_gpt_review.py +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env python -"""Generate changes.js to review golden vs. GPT OCR.""" - -import json -import sys - -from data.item import load_items - -if __name__ == "__main__": - gpt_jsonl = sys.argv[1] - gpt_data = [json.loads(line) for line in open(gpt_jsonl)] - site_data = json.load(open("../oldnyc.github.io/data.json")) - id_to_site_data = {r["photo_id"].split("-")[0]: r for r in site_data["photos"]} - records = load_items("data/items.ndjson") - id_to_records = {r.id: r for r in records} - - changes = [] - for r in gpt_data: - photo_id = r["custom_id"] - response = r["response"] - assert response["status_code"] == 200 - choices = response["body"]["choices"] - assert len(choices) == 1 - data_str = choices[0]["message"]["content"] - try: - data = json.loads(data_str) - except Exception: - sys.stderr.write(f"Bad JSON from GPT on: {photo_id}\n") - data_str += '"}' - data = json.loads(data_str) - gpt_text = data["text"] - - site_text = id_to_site_data[photo_id]["text"] - record = id_to_records[photo_id] - changes.append( - { - "before": site_text, - "after": gpt_text, - "metadata": { - "cookie": "blah", - "title": record.title, - "alt_title": record.alt_title, - }, - "photo_id": photo_id, - } - ) - - with open("ocr/feedback/review/changes.js", "w") as out: - out.write("var changes = %s;" % json.dumps(changes, indent=2, sort_keys=True)) diff --git a/oldnyc/README.md b/oldnyc/README.md new file mode 100644 index 00000000..2ae0004c --- /dev/null +++ b/oldnyc/README.md @@ -0,0 +1,16 @@ +# OldNYC directory structure + +All Python code should live under the `oldnyc` directory. There shouldn't be any +data files in this directory (those live in `data`). + +The intention is for the following subdirectories to be mostly independent of one +anther. Code shared across many subdirectories (e.g. `Item`) can live at the top +level. + +- ingest: code used to produce `images.ndjson` +- crop: finding and extracting photos and text from larger images +- geocode: locating items +- ocr: transcribing text from the ocrbacks +- feedback: processing user feedback +- site: generating the OldNYC site in oldnyc.github.io +- analysis: code that is not part of the pipeline, including all notebooks. diff --git a/ocr/feedback/cookie_stats.py b/oldnyc/analysis/cookie_stats.py similarity index 79% rename from ocr/feedback/cookie_stats.py rename to oldnyc/analysis/cookie_stats.py index 4ebb3728..264e172b 100755 --- a/ocr/feedback/cookie_stats.py +++ b/oldnyc/analysis/cookie_stats.py @@ -4,7 +4,7 @@ import sys (cookie,) = sys.argv[1:] -corrections = json.load(open("corrections.json")) +corrections = json.load(open("data/feedback/corrections.json")) for photo_id, data in corrections.items(): for correction in data["corrections"]: diff --git a/nyc/coverage-by-borough.py b/oldnyc/analysis/coverage-by-borough.py similarity index 93% rename from nyc/coverage-by-borough.py rename to oldnyc/analysis/coverage-by-borough.py index b591750e..622a6b34 100755 --- a/nyc/coverage-by-borough.py +++ b/oldnyc/analysis/coverage-by-borough.py @@ -6,7 +6,7 @@ import sys from collections import defaultdict -from nyc.boroughs import PointToBorough +from oldnyc.geocode.boroughs import point_to_borough records = json.load(open(sys.argv[1])) @@ -39,7 +39,7 @@ if "located_str" not in e: continue lat, lon = e["latlon"] - geocode_boro = PointToBorough(lat, lon) + geocode_boro = point_to_borough(lat, lon) if boro == geocode_boro: correct_by_borough[boro] += 1 diff --git a/nyc/detected-photo-stats.py b/oldnyc/analysis/detected-photo-stats.py similarity index 100% rename from nyc/detected-photo-stats.py rename to oldnyc/analysis/detected-photo-stats.py diff --git a/analysis/extreme_dates.py b/oldnyc/analysis/extreme_dates.py similarity index 93% rename from analysis/extreme_dates.py rename to oldnyc/analysis/extreme_dates.py index 205c9f69..7e1c4b9c 100755 --- a/analysis/extreme_dates.py +++ b/oldnyc/analysis/extreme_dates.py @@ -9,7 +9,7 @@ import re -from data.item import load_items +from oldnyc.item import load_items def extract_dates(date_str): diff --git a/feedback/stats.py b/oldnyc/analysis/firebase_stats.py similarity index 97% rename from feedback/stats.py rename to oldnyc/analysis/firebase_stats.py index 1d04b5e9..3665446a 100755 --- a/feedback/stats.py +++ b/oldnyc/analysis/firebase_stats.py @@ -24,7 +24,7 @@ "cut-in-half", ] ) -type_counts = Counter() +type_counts = Counter({t: 0 for t in types}) date_counts = Counter() month_counts = Counter() diff --git a/nyc/missing_images.py b/oldnyc/analysis/missing_images.py similarity index 89% rename from nyc/missing_images.py rename to oldnyc/analysis/missing_images.py index 52366b2f..3d31870b 100755 --- a/nyc/missing_images.py +++ b/oldnyc/analysis/missing_images.py @@ -12,7 +12,7 @@ site_photos = json.load(open("../oldnyc.github.io/data.json"))["photos"] id_to_dims = {} - for photo_id, width, height in csv.reader(open("nyc-image-sizes.txt")): + for photo_id, width, height in csv.reader(open("data/nyc-image-sizes.txt")): id_to_dims[photo_id] = (int(width), int(height)) for photo in site_photos: diff --git a/ocr/user_correction_stats.py b/oldnyc/analysis/user_correction_stats.py similarity index 86% rename from ocr/user_correction_stats.py rename to oldnyc/analysis/user_correction_stats.py index 0fd0a3bc..5b25ac8d 100755 --- a/ocr/user_correction_stats.py +++ b/oldnyc/analysis/user_correction_stats.py @@ -5,7 +5,9 @@ import sys if __name__ == "__main__": - originals = {k.replace("book", ""): v for k, v in json.load(open("ocr/ocr.json")).items()} + originals = { + k.replace("book", ""): v for k, v in json.load(open("data/ocr-ocropus-2015.json")).items() + } feedback = json.load(open("feedback/user-feedback.json"))["feedback"] counts = {back_id: len(v["text"]) for back_id, v in feedback.items() if "text" in v} diff --git a/nyc/calc-score.py b/oldnyc/crop/calc_crop_score.py similarity index 96% rename from nyc/calc-score.py rename to oldnyc/crop/calc_crop_score.py index 4aa9759e..bf6174a3 100755 --- a/nyc/calc-score.py +++ b/oldnyc/crop/calc_crop_score.py @@ -5,6 +5,10 @@ - Declined to detect any photos (SAFE) - Correct # of photos detected - Incorrect # of photos detected + +The golden input presumably came from a localturk template that's +since been deleted: +https://github.com/danvk/oldnyc/tree/geocodes-2017/nyc/testdata """ import csv diff --git a/ocr/crop_morphology.py b/oldnyc/crop/crop_to_text.py similarity index 99% rename from ocr/crop_morphology.py rename to oldnyc/crop/crop_to_text.py index eb7b24d6..e247f1f7 100755 --- a/ocr/crop_morphology.py +++ b/oldnyc/crop/crop_to_text.py @@ -3,7 +3,7 @@ Usage: - ./ocr/crop_morphology.py path/to/image.jpg + poetry run oldnyc/ocr/crop_to_text.py path/to/image.jpg This will place the cropped image in path/to/image.crop.png. diff --git a/nyc/extract-photos.py b/oldnyc/crop/extract_photos.py similarity index 59% rename from nyc/extract-photos.py rename to oldnyc/crop/extract_photos.py index dd6d2a79..d9317869 100755 --- a/nyc/extract-photos.py +++ b/oldnyc/crop/extract_photos.py @@ -9,11 +9,24 @@ import os import subprocess import sys +from typing import NotRequired, TypedDict + +from oldnyc.crop.find_pictures import PhotoCrops, Rect, SizeWH usage = "%s (detected-photos.txt|http://...) output-directory\n" % sys.argv[0] -def ExtractPhotos(d, output_dir): +class RectWithFile(Rect): + file: str + + +class ExtractedPhoto(TypedDict): + file: str + shape: SizeWH + rects: NotRequired[list[RectWithFile]] + + +def ExtractPhotos(d: PhotoCrops, output_dir: str) -> ExtractedPhoto: rects = d["rects"] if "rects" in d else None if not rects: # The algorithm took a pass on this image. @@ -21,8 +34,10 @@ def ExtractPhotos(d, output_dir): output_path = os.path.join(output_dir, os.path.basename(d["file"])) if not os.path.exists(output_path) or not os.path.samefile(d["file"], output_path): subprocess.check_output(["ln", "-sf", d["file"], output_path]) + return ExtractedPhoto(file=d["file"], shape=d["shape"]) else: base, ext = os.path.splitext(os.path.basename(d["file"])) + out_rects: list[RectWithFile] = [] for idx, rect in enumerate(rects): char = chr(ord("a") + idx) output_path = os.path.join(output_dir, "%s-%s%s" % (base, char, ext)) @@ -37,19 +52,21 @@ def ExtractPhotos(d, output_dir): output_path, ] ) - rect["file"] = os.path.basename(output_path) + out_rects.append({**rect, "file": os.path.basename(output_path)}) + return ExtractedPhoto(file=d["file"], shape=d["shape"], rects=out_rects) -if len(sys.argv) < 2: - sys.stderr.write(usage) - sys.exit(1) +if __name__ == "__main__": + if len(sys.argv) < 2: + sys.stderr.write(usage) + sys.exit(1) -output_dir = sys.argv.pop() + output_dir = sys.argv.pop() -for line in fileinput.input(): - d = json.loads(line) - f = str(d["file"]) + for line in fileinput.input(): + d = json.loads(line) + f = str(d["file"]) - ExtractPhotos(d, output_dir) - print(json.dumps(d)) - sys.stdout.flush() + crops = ExtractPhotos(d, output_dir) + print(json.dumps(crops)) + sys.stdout.flush() diff --git a/nyc/find_pictures.py b/oldnyc/crop/find_pictures.py similarity index 93% rename from nyc/find_pictures.py rename to oldnyc/crop/find_pictures.py index 1ff82590..d45c2d99 100755 --- a/nyc/find_pictures.py +++ b/oldnyc/crop/find_pictures.py @@ -4,11 +4,14 @@ The cards have a brown background and contain 1-3 images, each of which are set on smaller, white cards. + +Outputs ndjson with one line for each image. """ import json import subprocess import sys +from typing import NotRequired, TypedDict import cv2 import numpy as np @@ -23,6 +26,25 @@ # ShowImage = True # for debugging +class Rect(TypedDict): + left: int + top: int + right: int + bottom: int + solidity: float + + +class SizeWH(TypedDict): + w: int + h: int + + +class PhotoCrops(TypedDict): + file: str + shape: SizeWH + rects: NotRequired[list[Rect]] + + def LoadAndBinarizeImage(path): orig_im = Image.open(path) w, h = orig_im.size @@ -99,7 +121,7 @@ def ProcessImage(path): count += 1 sys.stderr.write("%3d Processing %s...\n" % (count, path)) - rects = [] + rects: list[Rect] = [] B = LoadAndBinarizeImage(path) # Exclude borders @@ -168,7 +190,7 @@ def ProcessImage(path): } ) - output = { + output: PhotoCrops = { "file": path, "shape": {"w": 5 * B.shape[1] + 160, "h": 5 * B.shape[0] + 160}, } diff --git a/oldnyc/crop/records_to_photos.py b/oldnyc/crop/records_to_photos.py new file mode 100755 index 00000000..a312004c --- /dev/null +++ b/oldnyc/crop/records_to_photos.py @@ -0,0 +1,96 @@ +#!/usr/bin/env python +"""Split single images in images.ndjson into multiple records in photos.ndjson.""" + +import copy +import dataclasses +import json +import os +import sys +from dataclasses import dataclass + +from oldnyc.crop.extract_photos import ExtractedPhoto +from oldnyc.item import load_items + + +@dataclass +class Size: + width: int + height: int + + +@dataclass +class Crop(Size): + top: int + left: int + + +@dataclass +class Photo: + crops: dict[str, Crop] + metadata: Size + + +def load_crops(crops_ndjson: str) -> dict[str, Photo]: + """Index crops.ndjson by input image file.""" + out: dict[str, Photo] = {} + with open(crops_ndjson) as f: + for line in f: + d: ExtractedPhoto = json.loads(line) + crops: dict[str, Crop] = {} + if "rects" in d: + for r in d["rects"]: + crops[os.path.basename(r["file"])] = Crop( + top=r["top"], + left=r["left"], + width=r["right"] - r["left"], + height=r["bottom"] - r["top"], + ) + out[os.path.basename(d["file"])] = Photo( + crops=crops, + metadata=Size(width=d["shape"]["w"], height=d["shape"]["h"]), + ) + return out + + +if __name__ == "__main__": + assert len(sys.argv) == 4, "Usage: %s imges.ndjson crops.ndjson photos.ndjson" + _, records_ndjson, crops_ndjson, out_ndjson = sys.argv + + rs = load_items(records_ndjson) + expansions = load_crops(crops_ndjson) + + skipped = 0 + num_images, num_photos = 0, 0 + + out = [] + for idx, r in enumerate(rs): + digital_id = r.id + image_file = "%s.jpg" % digital_id + expansion = expansions.get(image_file) or Photo(crops={}, metadata=Size(0, 0)) + + num_images += 1 + + crops = expansion.crops + if len(crops) == 0: + # r.thumbnail_url = image_file + r.photo_url = image_file + out.append(r) + num_photos += 1 + else: + for photo_file in crops.keys(): + new_r = copy.deepcopy(r) + new_id, _ = os.path.splitext(photo_file) + new_r.id = new_id + new_r.photo_url = photo_file + out.append(new_r) + num_photos += 1 + + if num_photos % 1000 == 0: + sys.stderr.write("Processed %d images -> %d photos\n" % (num_images, num_photos)) + + sys.stderr.write("Skipped %d records\n" % skipped) + with open(out_ndjson, "w") as f: + for r in out: + f.write(json.dumps(dataclasses.asdict(r))) + f.write("\n") + sys.stderr.write("Wrote %d records\n" % len(out)) diff --git a/analysis/rotations/extract_rotations.py b/oldnyc/feedback/extract_rotations.py similarity index 97% rename from analysis/rotations/extract_rotations.py rename to oldnyc/feedback/extract_rotations.py index 8a22ecad..c0aaacdb 100755 --- a/analysis/rotations/extract_rotations.py +++ b/oldnyc/feedback/extract_rotations.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -"""Pull accurate user-generated rotations out of a CSV database dump. +"""Pull accurate user-generated rotations out of a Firebase database dump. Output is a JSON file mapping photo id --> degrees of rotation. Rotations are only output if they're confirmed by multiple IPs. diff --git a/ocr/feedback/extract_user_ocr.py b/oldnyc/feedback/extract_user_ocr.py similarity index 84% rename from ocr/feedback/extract_user_ocr.py rename to oldnyc/feedback/extract_user_ocr.py index dedc5cd4..3445b225 100755 --- a/ocr/feedback/extract_user_ocr.py +++ b/oldnyc/feedback/extract_user_ocr.py @@ -1,11 +1,11 @@ #!/usr/bin/env python -"""Pull just user-generated OCR out of a CSV database dump. +"""Pull just user-generated OCR out of a Firebase dump. Output is a JSON file mapping photo id --> manual transcription info. -Input: data.json (the published all-site file) - user-feedback.csv -Output: corrections.json +Input: oldnyc.github.io/data.json (the published all-site file) + data/feedback/user-feedback.json +Output: data/feedback/corrections.json """ import json @@ -18,7 +18,7 @@ id_to_text = {} back_to_front = defaultdict(list) -site_data = json.load(open("../../../oldnyc.github.io/data.json")) +site_data = json.load(open("../oldnyc.github.io/data.json")) last_timestamp = site_data["ocr_time"] # e.g. "2015-09-27 15:31:07.691170" for record in site_data["photos"]: photo_id = record["photo_id"] @@ -55,7 +55,7 @@ def unix_time_millis(date_str): id_to_corrections = defaultdict(list) -all_feedback = json.load(open("../../feedback/user-feedback.json"))["feedback"] +all_feedback = json.load(open("data/feedback/user-feedback.json"))["feedback"] for back_id, feedback in all_feedback.items(): if "text" not in feedback: continue @@ -91,4 +91,4 @@ def unix_time_millis(date_str): out[back_id] = {"original": id_to_text[photo_id], "corrections": corrections} -json.dump(out, open("corrections.json", "w"), indent=2) +json.dump(out, open("data/feedback/corrections.json", "w"), indent=2) diff --git a/ocr/feedback/ocr_corrector.py b/oldnyc/feedback/ocr_corrector.py similarity index 95% rename from ocr/feedback/ocr_corrector.py rename to oldnyc/feedback/ocr_corrector.py index 5a4b69a1..0b06a025 100755 --- a/ocr/feedback/ocr_corrector.py +++ b/oldnyc/feedback/ocr_corrector.py @@ -24,7 +24,7 @@ import sys from collections import Counter -data = json.load(open("corrections.json")) +data = json.load(open("data/feedback/corrections.json")) def photo_id_to_backing_id(photo_id): @@ -51,7 +51,7 @@ def clean(text): print(f"Photo ID whitelist {len(whitelist)}: {whitelist}") backing_id_to_photo_id = {} -site_data = json.load(open("../../../oldnyc.github.io/data.json")) +site_data = json.load(open("../oldnyc.github.io/data.json")) for record in site_data["photos"]: photo_id = record["photo_id"] back_id = photo_id_to_backing_id(photo_id) @@ -158,7 +158,7 @@ def clean(text): json.dump( {"fixes": backing_id_to_fix, "last_date": latest_datetime, "last_timestamp": latest_timestamp}, - open("fixes.json", "w"), + open("data/feedback/fixes.json", "w"), indent=2, ) @@ -171,6 +171,6 @@ def clean(text): ) ) -open("review/changes.js", "w").write( +open("data/feedback/review/changes.js", "w").write( "var changes = %s;" % json.dumps(changes, indent=2, sort_keys=True) ) diff --git a/analysis/rotations/template.html b/oldnyc/feedback/rotation-review.html similarity index 100% rename from analysis/rotations/template.html rename to oldnyc/feedback/rotation-review.html diff --git a/nyc/boroughs.py b/oldnyc/geocode/boroughs.py similarity index 55% rename from nyc/boroughs.py rename to oldnyc/geocode/boroughs.py index 82361f13..6c48bdae 100644 --- a/nyc/boroughs.py +++ b/oldnyc/geocode/boroughs.py @@ -1,21 +1,15 @@ """Utility for mapping a lat/lon to a borough.""" import json -import os -import nyc.shape_utils as shape_utils - -boroughs = None +from oldnyc.geocode import shape_utils +BOROUGHS_JSON_FILE = "data/originals/borough-polygons.json" -def _getBoroughJsonPath(): - for path in ["borough-polygons.json", "nyc/borough-polygons.json"]: - if os.path.exists(path): - return path - raise Exception("Couldn't find borough-polygons.json file.") +boroughs = None -def PointToBorough(lat, lon): +def point_to_borough(lat: float, lon: float) -> str | None: """Returns the name of a borough, or None if the point is not in NYC. Possible return values are: @@ -23,7 +17,7 @@ def PointToBorough(lat, lon): """ global boroughs if not boroughs: - boroughs = json.load(open(_getBoroughJsonPath())) + boroughs = json.load(open(BOROUGHS_JSON_FILE)) pt = (lon, lat) for k, v in boroughs.items(): diff --git a/data/calculate_metrics.py b/oldnyc/geocode/calculate_metrics.py similarity index 100% rename from data/calculate_metrics.py rename to oldnyc/geocode/calculate_metrics.py diff --git a/cluster-locations.py b/oldnyc/geocode/cluster.py similarity index 93% rename from cluster-locations.py rename to oldnyc/geocode/cluster.py index 36b4670a..6a542026 100755 --- a/cluster-locations.py +++ b/oldnyc/geocode/cluster.py @@ -1,8 +1,8 @@ #!/usr/bin/env python """ -Reads in locations.txt (produced by generate-geocodes.py with ---output_mode=locations.txt) and clusters very close points. This reduces the -number of unique map markers and makes it easier to find things. +Reads in locations.txt (produced by geocode.py with --output_mode=locations.txt) +and clusters very close points. This reduces the number of unique map markers and +makes it easier to find things. Output is an exhaustive mapping of "old_lat,old_lon\tnew_lat,new_lon" pairs. @@ -16,8 +16,10 @@ import fileinput +# TODO: move to argparse DISTANCE_THRESHOLD = 20 +# TODO: move to argparse output_mode = "map" # 'urls' counts = [] diff --git a/coders/extended_grid.py b/oldnyc/geocode/coders/extended_grid.py similarity index 90% rename from coders/extended_grid.py rename to oldnyc/geocode/coders/extended_grid.py index 22f329e1..ab1fed2a 100755 --- a/coders/extended_grid.py +++ b/oldnyc/geocode/coders/extended_grid.py @@ -7,16 +7,17 @@ 15th Street and Avenue A 20th Street and 4th Avenue -This requires grid/intersections.csv, which is generated by grid/gold.py. +This requires data/intersections.csv, which is generated by +oldnyc/geocode/generate_intersections.py. """ import fileinput import re import sys -from coders.types import Coder, Locatable -from data.item import Item, blank_item -from grid import coder +from oldnyc.geocode import grid +from oldnyc.geocode.geocode_types import Coder, Locatable +from oldnyc.item import Item, blank_item ORDINALS = { "First": 1, @@ -101,7 +102,7 @@ def multisearch(re_dict, txt): class ExtendedGridCoder(Coder): def __init__(self): # This is done here to avoid the milstein registering itself. - from coders.milstein import cross_patterns + from oldnyc.geocode.coders.milstein import cross_patterns self._cross_patterns = cross_patterns @@ -144,7 +145,7 @@ def codeRecord(self, r: Item): # This incorrectly puts it in the middle of Central Park! avenue, street = "7", "130" - latlon = coder.code(avenue, street) + latlon = grid.code(avenue, street) if not latlon: return None @@ -166,9 +167,9 @@ def getLatLonFromGeocode(self, geocode, data, record): return (loc["lat"], loc["lng"]) def finalize(self): - sys.stderr.write(" num_exact: %d\n" % coder.num_exact) - sys.stderr.write("num_extrapolated: %d\n" % coder.num_extrapolated) - sys.stderr.write(" num_unclaimed: %d\n" % coder.num_unclaimed) + sys.stderr.write(" num_exact: %d\n" % grid.num_exact) + sys.stderr.write("num_extrapolated: %d\n" % grid.num_extrapolated) + sys.stderr.write(" num_unclaimed: %d\n" % grid.num_unclaimed) def name(self): return "extended-grid" diff --git a/coders/gpt.py b/oldnyc/geocode/coders/gpt.py similarity index 91% rename from coders/gpt.py rename to oldnyc/geocode/coders/gpt.py index c587014a..97cc74bc 100644 --- a/coders/gpt.py +++ b/oldnyc/geocode/coders/gpt.py @@ -3,8 +3,8 @@ import json import sys -from coders.types import Coder, Locatable -from data.item import Item +from oldnyc.geocode.geocode_types import Coder, Locatable +from oldnyc.item import Item class GptCoder(Coder): @@ -15,7 +15,7 @@ def __init__(self): self.queries = json.load(f) self.num_intersection = 0 self.num_address = 0 - from coders.milstein import MilsteinCoder + from oldnyc.geocode.coders.milstein import MilsteinCoder self.milstein = MilsteinCoder() diff --git a/coders/milstein.py b/oldnyc/geocode/coders/milstein.py similarity index 97% rename from coders/milstein.py rename to oldnyc/geocode/coders/milstein.py index 50f9d810..8328f32c 100755 --- a/coders/milstein.py +++ b/oldnyc/geocode/coders/milstein.py @@ -7,9 +7,9 @@ import re import sys -import nyc.boroughs -from coders.types import Coder, Locatable -from data.item import Item +from oldnyc.geocode.boroughs import point_to_borough +from oldnyc.geocode.geocode_types import Coder, Locatable +from oldnyc.item import Item boros = r"(?:New York|Manhattan|Brooklyn|Bronx|Queens|Staten Island), (?:NY|N\.Y\.)" boros_re = r"(New York|Manhattan|Brooklyn|Bronx|Queens|Staten Island), (?:NY|N\.Y\.)$" @@ -161,7 +161,7 @@ def getLatLonFromGeocode(self, geocode, data, record): return None _, lat, lon = tlatlon - geocode_boro = nyc.boroughs.PointToBorough(lat, lon) + geocode_boro = point_to_borough(lat, lon) record_boro = self._getBoroughFromAddress(data["address"]) if geocode_boro != record_boro: diff --git a/coders/nyc_parks.py b/oldnyc/geocode/coders/nyc_parks.py similarity index 99% rename from coders/nyc_parks.py rename to oldnyc/geocode/coders/nyc_parks.py index 04c493c5..0a92e15a 100755 --- a/coders/nyc_parks.py +++ b/oldnyc/geocode/coders/nyc_parks.py @@ -8,8 +8,8 @@ import sys from collections import defaultdict -from coders.types import Coder, Locatable -from data.item import blank_item +from oldnyc.geocode.geocode_types import Coder, Locatable +from oldnyc.item import blank_item # TODO: move these into a data file, maybe GeoJSON parks = { diff --git a/data/diff_geojson.py b/oldnyc/geocode/diff_geojson.py similarity index 100% rename from data/diff_geojson.py rename to oldnyc/geocode/diff_geojson.py diff --git a/grid/gold.py b/oldnyc/geocode/generate_intersections.py similarity index 97% rename from grid/gold.py rename to oldnyc/geocode/generate_intersections.py index 9d763a11..3076096d 100755 --- a/grid/gold.py +++ b/oldnyc/geocode/generate_intersections.py @@ -14,8 +14,8 @@ from dotenv import load_dotenv -import geocoder -from nyc.boroughs import PointToBorough +from oldnyc.geocode import geocoder +from oldnyc.geocode.boroughs import point_to_borough # See http://stackoverflow.com/a/20007730/388951 @@ -101,7 +101,7 @@ def locate(avenue, street, verbose=False): loc = r["geometry"]["location"] lat_lon = loc["lat"], loc["lng"] - if PointToBorough(*lat_lon) != "Manhattan": + if point_to_borough(*lat_lon) != "Manhattan": if verbose: sys.stderr.write("Discarding non-Manhattan location\n") return None diff --git a/oldnyc/geocode/generate_intersections_test.py b/oldnyc/geocode/generate_intersections_test.py new file mode 100644 index 00000000..2607b69e --- /dev/null +++ b/oldnyc/geocode/generate_intersections_test.py @@ -0,0 +1,30 @@ +from oldnyc.geocode.generate_intersections import make_avenue_str, make_street_str + + +def test_make_street_str(): + assert "East 1st street" == make_street_str(1, 1) + assert "East 2nd street" == make_street_str(2, 1) + assert "East 3rd street" == make_street_str(3, 1) + assert "East 4th street" == make_street_str(4, 1) + assert "East 9th street" == make_street_str(9, 1) + assert "East 11th street" == make_street_str(11, 1) + assert "East 12th street" == make_street_str(12, 1) + assert "East 13th street" == make_street_str(13, 1) + assert "East 21st street" == make_street_str(21, 1) + assert "East 22nd street" == make_street_str(22, 1) + assert "East 100th street" == make_street_str(100, 1) + assert "West 101st street" == make_street_str(101, 8) + assert "West 102nd street" == make_street_str(102, 8) + assert "East 121st street" == make_street_str(121, 1) + + +def test_make_avenue_str(): + assert "Avenue A" == make_avenue_str(0) + assert "Avenue D" == make_avenue_str(-3) + assert "1st Avenue" == make_avenue_str(1) + assert "2nd Avenue" == make_avenue_str(2) + assert "3rd Avenue" == make_avenue_str(3) + + assert "Park Avenue South" == make_avenue_str(4, 17) + assert "Park Avenue South" == make_avenue_str(4, 32) + assert "Park Avenue" == make_avenue_str(4, 59) diff --git a/generate_js.py b/oldnyc/geocode/generate_js.py old mode 100755 new mode 100644 similarity index 98% rename from generate_js.py rename to oldnyc/geocode/generate_js.py index 4d843139..3d82c4d3 --- a/generate_js.py +++ b/oldnyc/geocode/generate_js.py @@ -7,9 +7,9 @@ from json import encoder from typing import Sequence -import record -from coders.types import Locatable, Location -from data.item import Item +from oldnyc.geocode import record +from oldnyc.geocode.geocode_types import Locatable, Location +from oldnyc.item import Item encoder.FLOAT_REPR = lambda o: format(o, ".6f") # type: ignore diff --git a/generate-geocodes.py b/oldnyc/geocode/geocode.py similarity index 94% rename from generate-geocodes.py rename to oldnyc/geocode/geocode.py index 65f2ec32..02f8ee71 100755 --- a/generate-geocodes.py +++ b/oldnyc/geocode/geocode.py @@ -14,20 +14,16 @@ from dotenv import load_dotenv -import coders.extended_grid -import coders.gpt -import coders.milstein -import coders.nyc_parks -import generate_js -import geocoder -from coders.types import Coder, Locatable, Location -from data.item import Item, load_items +from oldnyc.geocode import generate_js, geocoder +from oldnyc.geocode.coders import extended_grid, gpt, milstein, nyc_parks +from oldnyc.geocode.geocode_types import Coder, Locatable, Location +from oldnyc.item import Item, load_items CODERS: dict[str, Callable[[], Coder]] = { - "extended-grid": coders.extended_grid.ExtendedGridCoder, - "milstein": coders.milstein.MilsteinCoder, - "nyc-parks": coders.nyc_parks.NycParkCoder, - "gpt": coders.gpt.GptCoder, + "extended-grid": extended_grid.ExtendedGridCoder, + "milstein": milstein.MilsteinCoder, + "nyc-parks": nyc_parks.NycParkCoder, + "gpt": gpt.GptCoder, } if __name__ == "__main__": diff --git a/coders/types.py b/oldnyc/geocode/geocode_types.py similarity index 95% rename from coders/types.py rename to oldnyc/geocode/geocode_types.py index 5cddf9b6..3a282fbb 100644 --- a/coders/types.py +++ b/oldnyc/geocode/geocode_types.py @@ -2,7 +2,7 @@ from typing import Any, NotRequired, Protocol, TypedDict -from data.item import Item +from oldnyc.item import Item class Location(TypedDict): diff --git a/geocoder.py b/oldnyc/geocode/geocoder.py similarity index 100% rename from geocoder.py rename to oldnyc/geocode/geocoder.py diff --git a/geogpt/extract_gpt_geocodes.py b/oldnyc/geocode/geogpt/extract_gpt_geocodes.py similarity index 100% rename from geogpt/extract_gpt_geocodes.py rename to oldnyc/geocode/geogpt/extract_gpt_geocodes.py diff --git a/geogpt/extract_gpt_geocodes_test.py b/oldnyc/geocode/geogpt/extract_gpt_geocodes_test.py similarity index 100% rename from geogpt/extract_gpt_geocodes_test.py rename to oldnyc/geocode/geogpt/extract_gpt_geocodes_test.py diff --git a/geogpt/generate_batch.py b/oldnyc/geocode/geogpt/generate_batch.py similarity index 98% rename from geogpt/generate_batch.py rename to oldnyc/geocode/geogpt/generate_batch.py index 1696ff1f..507ecfe1 100755 --- a/geogpt/generate_batch.py +++ b/oldnyc/geocode/geogpt/generate_batch.py @@ -5,7 +5,7 @@ import re import sys -from data.item import Item, load_items +from oldnyc.item import Item, load_items # See https://cookbook.openai.com/examples/batch_processing # TODO: Make more of an effort to get GPT the Borough (typically in SOURCE column of CSV) diff --git a/geogpt/review_batch.py b/oldnyc/geocode/geogpt/review_batch.py similarity index 97% rename from geogpt/review_batch.py rename to oldnyc/geocode/geogpt/review_batch.py index 5778a42b..de530a35 100755 --- a/geogpt/review_batch.py +++ b/oldnyc/geocode/geogpt/review_batch.py @@ -4,7 +4,7 @@ import json import sys -from data.item import load_items +from oldnyc.item import load_items def scrub(txt: str) -> str: diff --git a/grid/coder.py b/oldnyc/geocode/grid.py similarity index 98% rename from grid/coder.py rename to oldnyc/geocode/grid.py index 9e18fb36..826a60b8 100755 --- a/grid/coder.py +++ b/oldnyc/geocode/grid.py @@ -9,7 +9,8 @@ by_avenue = defaultdict(lambda: {}) by_street = defaultdict(lambda: {}) -for row in csv.DictReader(open("grid/intersections.csv")): +# TODO: load this lazily +for row in csv.DictReader(open("data/intersections.csv")): if not row["Lat"]: continue # not all intersections exist. avenue = int(row["Avenue"]) diff --git a/oldnyc/geocode/grid_test.py b/oldnyc/geocode/grid_test.py new file mode 100644 index 00000000..6a490ba3 --- /dev/null +++ b/oldnyc/geocode/grid_test.py @@ -0,0 +1,34 @@ +import pytest + +from oldnyc.geocode import grid + + +def assert_close(ll1, ll2): + """Assert that two latitude & longitude tuples are "close".""" + assert ll1[0] == pytest.approx(ll2[0], 1e-6) + assert ll1[1] == pytest.approx(ll2[1], 1e-6) + + +def test_exact(): + # It's really Park Avenue South. + assert_close(grid.code("4", "17"), (40.736518, -73.988962)) + + +def test_interpolate(): + # This is halfway between 26th & 28th. + assert_close(grid.code("9", "27"), (40.749020, -73.9995210)) + + +def test_extrapolate(): + assert_close(grid.code("A", "15"), (40.731083, -73.979847)) + assert_close(grid.code("A", "20"), (40.734071, -73.977654)) + + +def test_may_extrapolate(): + assert grid.may_extrapolate("A", "15") + assert grid.may_extrapolate("2", "8") + assert grid.may_extrapolate("A", "25") + assert not grid.may_extrapolate("4", "8") + assert not grid.may_extrapolate("D", "25") + assert not grid.may_extrapolate("7", "10") + assert not grid.may_extrapolate("B", "93") # 723557f-c diff --git a/record.py b/oldnyc/geocode/record.py similarity index 96% rename from record.py rename to oldnyc/geocode/record.py index 125aefe6..ccd8252b 100644 --- a/record.py +++ b/oldnyc/geocode/record.py @@ -2,7 +2,7 @@ import re from datetime import date -from dates import extract_years +from oldnyc.ingest.dates import extract_years def get_date_range(date_str: str) -> tuple[date, date]: diff --git a/nyc/shape_utils.py b/oldnyc/geocode/shape_utils.py similarity index 100% rename from nyc/shape_utils.py rename to oldnyc/geocode/shape_utils.py diff --git a/data/collect_mods.py b/oldnyc/ingest/collect_mods.py similarity index 100% rename from data/collect_mods.py rename to oldnyc/ingest/collect_mods.py diff --git a/dates.py b/oldnyc/ingest/dates.py similarity index 91% rename from dates.py rename to oldnyc/ingest/dates.py index 2d336505..6eee3903 100644 --- a/dates.py +++ b/oldnyc/ingest/dates.py @@ -1,7 +1,7 @@ # pyright: strict import re -from data.util import clean_date +from .util import clean_date def extract_years(date_str: str) -> list[str]: diff --git a/dates_test.py b/oldnyc/ingest/dates_test.py similarity index 91% rename from dates_test.py rename to oldnyc/ingest/dates_test.py index 2a58af1a..050a018e 100644 --- a/dates_test.py +++ b/oldnyc/ingest/dates_test.py @@ -1,4 +1,4 @@ -from dates import extract_years +from oldnyc.ingest.dates import extract_years def test_extract_dates(): diff --git a/extract-sizes.py b/oldnyc/ingest/extract_sizes.py similarity index 91% rename from extract-sizes.py rename to oldnyc/ingest/extract_sizes.py index 77befad8..081d3bac 100755 --- a/extract-sizes.py +++ b/oldnyc/ingest/extract_sizes.py @@ -2,7 +2,7 @@ """Determine the sizes of a bunch of images. Usage: -./extract-sizes.py '*.jpg' > sizes.txt +./oldnyc/ingest/extract_sizes.py '*.jpg' > sizes.txt Produces a CSV file with three columns: file-basename-no-extension,width,height diff --git a/crawl/generate_details_urls.py b/oldnyc/ingest/generate_details_urls.py similarity index 67% rename from crawl/generate_details_urls.py rename to oldnyc/ingest/generate_details_urls.py index 34f26942..caf2ccf9 100755 --- a/crawl/generate_details_urls.py +++ b/oldnyc/ingest/generate_details_urls.py @@ -1,14 +1,11 @@ #!/usr/bin/env python -import json - -from data.item import Item +from oldnyc.item import load_items DETAILS_URL = "https://api.repo.nypl.org/api/v2/items/item_details/%s" if __name__ == "__main__": - for line in open("data/images.ndjson"): - item = Item(**json.loads(line)) + for item in load_items("data/images.ndjson"): if item.id.endswith("f"): continue url = DETAILS_URL % item.uuid diff --git a/crawl/generate_mods_urls.py b/oldnyc/ingest/generate_mods_urls.py similarity index 66% rename from crawl/generate_mods_urls.py rename to oldnyc/ingest/generate_mods_urls.py index c33fe164..fc5a3bfa 100755 --- a/crawl/generate_mods_urls.py +++ b/oldnyc/ingest/generate_mods_urls.py @@ -1,14 +1,11 @@ #!/usr/bin/env python -import json - -from data.item import Item +from oldnyc.item import load_items MODS_URL = "https://api.repo.nypl.org/api/v2/mods/%s" if __name__ == "__main__": - for line in open("data/images.ndjson"): - item = Item(**json.loads(line)) + for item in load_items("data/images.ndjson"): # if not item.back_id: # continue mods_url = MODS_URL % item.uuid diff --git a/data/ingest.py b/oldnyc/ingest/ingest.py similarity index 94% rename from data/ingest.py rename to oldnyc/ingest/ingest.py index 1933c295..6f00ee88 100755 --- a/data/ingest.py +++ b/oldnyc/ingest/ingest.py @@ -10,8 +10,8 @@ from tqdm import tqdm -from data.item import Item, Subject -from data.util import STATES, clean_creator, clean_date, clean_title, normalize_whitespace +from oldnyc.ingest.util import STATES, clean_creator, clean_date, clean_title, normalize_whitespace +from oldnyc.item import Item, Subject def photo_id_to_backing_id(photo_id: str) -> str | None: @@ -43,10 +43,10 @@ def outside_nyc(geographics: list[str]) -> bool: def run(): - csv2013 = csv.DictReader(open("nyc/milstein.csv", encoding="latin-1")) + csv2013 = csv.DictReader(open("data/originals/milstein.csv", encoding="latin-1")) csv2024 = { row["image_id"].lower(): row - for row in csv.DictReader(open("nyc/Milstein_data_for_DV_2.csv")) + for row in csv.DictReader(open("data/originals/Milstein_data_for_DV_2.csv")) } site_text = { photo["photo_id"].split("-")[0]: photo["text"] @@ -54,7 +54,7 @@ def run(): } gpt_text = { id: r["text"] - for id, r in json.load(open("nyc/gpt-output.json")).items() + for id, r in json.load(open("data/gpt-ocr.json")).items() if r["text"] != "(rotated)" } mods_details = json.load(open("data/mods-details.json")) diff --git a/data/util.py b/oldnyc/ingest/util.py similarity index 100% rename from data/util.py rename to oldnyc/ingest/util.py diff --git a/data/util_test.py b/oldnyc/ingest/util_test.py similarity index 98% rename from data/util_test.py rename to oldnyc/ingest/util_test.py index 9a128c7e..cc7300ce 100644 --- a/data/util_test.py +++ b/oldnyc/ingest/util_test.py @@ -1,4 +1,4 @@ -from data.util import clean_creator, clean_date, clean_title +from oldnyc.ingest.util import clean_creator, clean_date, clean_title def test_clean_title(): diff --git a/data/item.py b/oldnyc/item.py similarity index 100% rename from data/item.py rename to oldnyc/item.py diff --git a/ocr/cleaner.py b/oldnyc/ocr/cleaner.py similarity index 93% rename from ocr/cleaner.py rename to oldnyc/ocr/cleaner.py index 8d3e48b5..87908d86 100755 --- a/ocr/cleaner.py +++ b/oldnyc/ocr/cleaner.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -r"""Clean up a few common warts in the OCR data from Ocropus. +r"""Clean up a few common warts in raw OCR output. These include: - \& --> & @@ -14,7 +14,7 @@ import editdistance -def swap_chars(txt): +def swap_chars(txt: str) -> str: r"""Remove a few common Ocropusisms, like \& and ''""" return re.sub(r"''", '"', re.sub(r"\\&", "&", txt)) @@ -39,7 +39,7 @@ def is_warning(line): return False -def remove_warnings(txt): +def remove_warnings(txt: str) -> str: """Remove lines like "NO REPRODUCTIONS".""" # remove full warning lines txt = "\n".join(line for line in txt.split("\n") if not is_warning(line)) @@ -60,7 +60,7 @@ def remove_warnings(txt): return txt -def merge_lines(txt): +def merge_lines(txt: str) -> str: """Merge sequential lines in a paragraph into a single line. This can't be done reliably from just the OCR'd text -- it would be better @@ -99,12 +99,12 @@ def merge_lines(txt): return txt -def clean(txt): +def clean(txt: str): return merge_lines(remove_warnings(swap_chars(txt))) if __name__ == "__main__": - ocr = json.load(open("ocr/ocr.json")) + ocr = json.load(open("data/ocr-ocropus-2015.json")) for k, txt in ocr.items(): print(k) clean(txt) diff --git a/ocr/cleaner_test.py b/oldnyc/ocr/cleaner_test.py similarity index 99% rename from ocr/cleaner_test.py rename to oldnyc/ocr/cleaner_test.py index f534a44c..73a791dd 100644 --- a/ocr/cleaner_test.py +++ b/oldnyc/ocr/cleaner_test.py @@ -1,4 +1,4 @@ -from ocr import cleaner +from oldnyc.ocr import cleaner samples = [ # 0 diff --git a/ocr/gather_gpt_output.py b/oldnyc/ocr/gather_gpt_output.py similarity index 83% rename from ocr/gather_gpt_output.py rename to oldnyc/ocr/gather_gpt_output.py index de7f4181..f8c4af0d 100755 --- a/ocr/gather_gpt_output.py +++ b/oldnyc/ocr/gather_gpt_output.py @@ -4,7 +4,7 @@ import json import sys -from ocr.cleaner import clean +from oldnyc.ocr.cleaner import clean if __name__ == "__main__": gpt_data = [ @@ -12,6 +12,7 @@ ] mapping = {} + n_altered = 0 for r in gpt_data: back_id = r["custom_id"] response = r["response"] @@ -31,10 +32,14 @@ sys.stderr.write(f"GPT says {back_id} is rotated.\n") if not (back_id in mapping and rotated): # defer to an existing entry if this one is rotated - mapping[back_id] = { + out = { "text": clean(gpt_text) if not rotated else "(rotated)", "original": gpt_text, } + if out["text"] != out["original"]: + n_altered += 1 + mapping[back_id] = out sys.stderr.write(f"Writing {len(mapping)} records.\n") + sys.stderr.write(f"{n_altered} were altered by cleaning.\n") print(json.dumps(mapping, indent=2)) diff --git a/ocr/generate_gpt_batch.py b/oldnyc/ocr/generate_gpt_batch.py similarity index 100% rename from ocr/generate_gpt_batch.py rename to oldnyc/ocr/generate_gpt_batch.py diff --git a/ocr/generate_truth_data.py b/oldnyc/ocr/generate_truth_data.py similarity index 95% rename from ocr/generate_truth_data.py rename to oldnyc/ocr/generate_truth_data.py index ddf19dd7..d25da7a8 100755 --- a/ocr/generate_truth_data.py +++ b/oldnyc/ocr/generate_truth_data.py @@ -7,7 +7,7 @@ import fileinput import json -from data.item import load_items +from oldnyc.item import load_items if __name__ == "__main__": records = load_items("data/items.ndjson") diff --git a/ocr/prep-ocr.sh b/oldnyc/ocr/prep-ocr.sh similarity index 100% rename from ocr/prep-ocr.sh rename to oldnyc/ocr/prep-ocr.sh diff --git a/ocr/rotate_ocrback.py b/oldnyc/ocr/rotate_ocrback.py similarity index 97% rename from ocr/rotate_ocrback.py rename to oldnyc/ocr/rotate_ocrback.py index f306e4a7..2e70c9dd 100755 --- a/ocr/rotate_ocrback.py +++ b/oldnyc/ocr/rotate_ocrback.py @@ -16,7 +16,7 @@ if __name__ == "__main__": (high_path, low_path, out_dir) = sys.argv[1:] failed_ocrbacks = { - line.split(".")[0] for line in open("ocr/ocrbacks.txt") if "original" in line + line.split(".")[0] for line in open("data/ocrbacks.txt") if "original" in line } for ext in ("", ".jpg", ".reconstructed.jpg", ".original.jpg"): diff --git a/ocr/score_utils.py b/oldnyc/ocr/score_utils.py similarity index 100% rename from ocr/score_utils.py rename to oldnyc/ocr/score_utils.py diff --git a/ocr/score_utils_test.py b/oldnyc/ocr/score_utils_test.py similarity index 97% rename from ocr/score_utils_test.py rename to oldnyc/ocr/score_utils_test.py index 0f7d9899..b19e26a2 100644 --- a/ocr/score_utils_test.py +++ b/oldnyc/ocr/score_utils_test.py @@ -1,6 +1,6 @@ import Levenshtein -from ocr.score_utils import ( +from oldnyc.ocr.score_utils import ( contiguous_chunks, normalize_whitespace, try_transpositions, diff --git a/analysis/dates_from_text.py b/oldnyc/site/dates_from_text.py similarity index 100% rename from analysis/dates_from_text.py rename to oldnyc/site/dates_from_text.py diff --git a/analysis/dates_from_text_test.py b/oldnyc/site/dates_from_text_test.py similarity index 99% rename from analysis/dates_from_text_test.py rename to oldnyc/site/dates_from_text_test.py index 2a9bccd8..c5bf3766 100644 --- a/analysis/dates_from_text_test.py +++ b/oldnyc/site/dates_from_text_test.py @@ -1,4 +1,4 @@ -from analysis.dates_from_text import get_dates_from_text +from oldnyc.site.dates_from_text import get_dates_from_text text_701590f = """Pelham Bay Park - Orchard Beach: Shown, in a set of three views, are the newly erected bath houses built by the Works Progress Administration. diff --git a/nyc/generate_popular.py b/oldnyc/site/generate_popular.py similarity index 85% rename from nyc/generate_popular.py rename to oldnyc/site/generate_popular.py index e807ae2f..fc994346 100755 --- a/nyc/generate_popular.py +++ b/oldnyc/site/generate_popular.py @@ -28,7 +28,7 @@ def run(): sys.stderr.write("Loaded %d popular images\n" % len(photos)) - for row in csv.reader(open("nyc-image-sizes.txt")): + for row in csv.reader(open("data/nyc-image-sizes.txt")): photo_id, width, height = row width = int(width) height = int(height) @@ -40,9 +40,7 @@ def run(): for row in photos: assert "height" in row - open("viewer/static/js/popular-photos.js", "w").write( - "var popular_photos = %s;\n" % json.dumps(photos) - ) + open("data/popular-photos.js", "w").write("var popular_photos = %s;\n" % json.dumps(photos)) if __name__ == "__main__": diff --git a/generate_static_site.py b/oldnyc/site/generate_static_site.py similarity index 92% rename from generate_static_site.py rename to oldnyc/site/generate_static_site.py index 5a91fe15..3b139f94 100755 --- a/generate_static_site.py +++ b/oldnyc/site/generate_static_site.py @@ -11,10 +11,10 @@ from collections import OrderedDict, defaultdict from typing import Iterable -from analysis import dates_from_text -from data.item import load_items -from dates import extract_years -from title_cleaner import is_pure_location +from oldnyc.ingest.dates import extract_years +from oldnyc.item import load_items +from oldnyc.site import dates_from_text +from oldnyc.site.title_cleaner import is_pure_location # Make sure the oldnyc.github.io repo is in a clean state. git_status = subprocess.check_output("git -C ../oldnyc.github.io status --porcelain".split(" ")) @@ -32,35 +32,35 @@ # TODO: replace this with JSON # strip leading 'var popular_photos = ' and trailing ';' -popular_photos = json.loads(open("viewer/static/js/popular-photos.js").read()[20:-2]) +popular_photos = json.loads(open("data/popular-photos.js").read()[20:-2]) pop_ids = {x["id"] for x in popular_photos} # TODO: replace this with JSON # strip leading 'var lat_lons = ' and trailing ';' -lat_lon_to_ids = json.loads(open("viewer/static/js/nyc-lat-lons-ny.js").read()[15:-1]) +lat_lon_to_ids = json.loads(open("data/nyc-lat-lons-ny.js").read()[15:-1]) rs = load_items("data/photos.ndjson") id_to_record = {r.id: r for r in rs} id_to_dims = {} -for photo_id, width, height in csv.reader(open("nyc-image-sizes.txt")): +for photo_id, width, height in csv.reader(open("data/nyc-image-sizes.txt")): id_to_dims[photo_id] = (int(width), int(height)) self_hosted_ids = set() -for photo_id, width, height in csv.reader(open("self-hosted-sizes.txt")): +for photo_id, width, height in csv.reader(open("data/self-hosted-sizes.txt")): id_to_dims[photo_id] = (int(width), int(height)) self_hosted_ids.add(photo_id) # rotated images based on user feedback -user_rotations = json.load(open("analysis/rotations/rotations.json")) +user_rotations = json.load(open("data/rotations.json")) id_to_rotation = user_rotations["fixes"] # Load the previous iteration of OCR. Corrections are applied on top of this. old_data = json.load(open("../oldnyc.github.io/data.json")) old_photo_id_to_text = {r["photo_id"]: r["text"] for r in old_data["photos"] if r["text"]} -manual_ocr_fixes = json.load(open("ocr/feedback/fixes.json")) +manual_ocr_fixes = json.load(open("data/feedback/fixes.json")) back_id_to_correction = manual_ocr_fixes["fixes"] print(f"{len(back_id_to_correction)} OCR fixes") @@ -75,11 +75,6 @@ if r.back_id in back_id_to_correction: id_to_text[photo_id] = back_id_to_correction[r.back_id]["text"] -# (This was only helpful on the initial run, when data came straight from -# Ocropus.) -# for k, txt in id_to_text.iteritems(): -# id_to_text[k] = cleaner.clean(txt) - def image_url(photo_id: str, is_thumb: bool) -> str: if photo_id in self_hosted_ids: diff --git a/title_cleaner.py b/oldnyc/site/title_cleaner.py similarity index 100% rename from title_cleaner.py rename to oldnyc/site/title_cleaner.py diff --git a/title_cleaner_test.py b/oldnyc/site/title_cleaner_test.py similarity index 96% rename from title_cleaner_test.py rename to oldnyc/site/title_cleaner_test.py index 7b409d4e..90f18e84 100755 --- a/title_cleaner_test.py +++ b/oldnyc/site/title_cleaner_test.py @@ -1,4 +1,4 @@ -import title_cleaner +from oldnyc.site import title_cleaner TRUTH = [ (True, "Manhattan: 1st Ave. - 34th St. E."), diff --git a/ocr/url_fetcher.py b/oldnyc/url_fetcher.py similarity index 100% rename from ocr/url_fetcher.py rename to oldnyc/url_fetcher.py diff --git a/coders/extended-grid-cases.txt b/test/extended-grid-cases.txt similarity index 100% rename from coders/extended-grid-cases.txt rename to test/extended-grid-cases.txt